:root {
    --techv_lb: #c380fa;
    --techv_db: #8204e9;
    --techv_body: #181818;
    /* --techv_body: #191a1b; */
}

body {
    background-color: var(--techv_body);
    color: rgb(238, 238, 238);
    font-family: "Karla", sans-serif;
    font-size: 1.1rem;
    overflow: hidden;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #696969 #151515;
}

a,
.no-hov:hover {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: var(--techv_lb);
}

.color-db {
    color: #386ebe;
}

.color-lb {
    color: var(--techv_lb);
}

.font-prim {
    font-family: "rezregular", sans-serif;
    letter-spacing: 0.2em;
}

.font-sans {
    font-family: sans-serif !important;
}

.mask {
    -webkit-mask-image: url(/storage/assets/mask.svg);
    mask-image: url(/storage/assets/mask.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;

    background-image: url(/storage/assets/homebg.jpg);
    height: 100vh;
    background-size: cover;
    background-position: center;

    overflow: hidden;

    mask-position: center center;
    -webkit-mask-position: top center;

    mask-size: 155%;
    -webkit-mask-size: 155%;
}

@media (max-width: 991px) {
    .mask {
        background-origin: content-box;
        padding: 25vh 0.5rem;
        height: max-content;
        background-size: cover;
    }
}

.logo-plus {
    position: fixed;
    top: 2rem;
    left: 1rem;
    z-index: 10000 !important;
    padding: 0.5rem;
    background-color: #000;
}

.logo-plus img {
    width: 1.5rem;
}

.contact .map {
    position: relative;
    background-image: url("/storage/assets/maps.png");
    height: 70vh;
    background-size: cover;
    background-position: center;
}

.contact .map a {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.contact {
    position: relative;
}

.contact .label {
    position: absolute;
    bottom: 10rem;
    left: 4rem;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 0.5rem 1rem;
}

@media (max-width: 576px) {
    .contact .label {
        top: 15rem;
        height: max-content;
    }

    .footer {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

@media (max-width: 991px) {
    .contact .map {
        height: 35vh;
    }
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: start;
    align-items: center;
    background-color: var(--techv_body) !important;
    z-index: 100000 !important;
    /* makes sure it stays on top */
}

#status img {
    width: 100%;
}

.logo-img {
    opacity: 0;
    position: absolute;
    top: 40vh;
    margin: auto;
    left: 0;
    right: 0;
    animation: reveal 500ms forwards;
    animation-delay: 1500ms;
    z-index: 10000;
    width: 3rem;
}

@media (max-width: 991px) {
    .logo-img {
        top: 27vh;
        width: 4rem;
    }
}

.custom-place {
    width: max-content;
    z-index: 10000;
    height: max-content;
    font-weight: bold;
    position: absolute;
    font-size: 2.5rem;
    right: 0;
    left: 0;
    top: 50%;
    padding: 0.5rem 1rem;
    margin: auto;
    animation: colorme 2000ms forwards;
}
.title-place {
    width: max-content;
    z-index: 10000;
    height: max-content;
    font-weight: bold;
    position: absolute;
    font-size: 2.5rem;
    right: 0;
    left: 0;
    bottom: -5%;
    padding: 0.5rem 1rem;
    margin: auto;

    color: white;
    background-color: rgba(0, 0, 0, 0.616);
}

@keyframes colorme {
    0% {
        color: black;
    }

    100% {
        color: white;
        background-color: rgba(0, 0, 0, 0.616);
    }
}

.logo p {
    position: absolute;
    bottom: 3rem;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 1000;
    width: max-content;
    max-width: 100vw;
    opacity: 0;
    animation: push 500ms forwards;
    animation-delay: 1500ms;
}

@media (max-width: 576px) {
    .logo-img {
        top: 47vh;
        width: 2rem;
    }

    .logo p {
        margin-top: 0rem;
    }

    .custom-place {
        text-align: center;
    }
}

@keyframes reveal {
    0% {
        opacity: 0;
        transform: scale(0.25);
    }

    100% {
        opacity: 1;
        transform: scale(0.75);
    }
}

@keyframes push {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }

    100% {
        opacity: 1;
        transform: translateY(30px);
    }
}

.products {
    border-radius: 10px;
    padding: 3rem;
    background-color: rgb(31, 31, 31);
}

@media (max-width: 576px) {
    .products {
        padding: 3rem 1rem;
    }
}

.kave-btn {
    position: relative;
    border: solid 1px rgba(167, 167, 167, 0.3);
    background: rgba(3, 3, 3, 0.464);
    color: rgba(255, 255, 255, 0.5);
    font-family: "Roboto", sans-serif;
    /* text-transform: uppercase; */
    font-weight: normal;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    letter-spacing: 1.8px;
    transition: all 0.25s ease;
    outline: none;
}

.kave-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 10%;
    width: 60px;
    height: 1px;
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.25s ease;
}

.kave-btn:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 10%;
    width: 60px;
    height: 1px;
    transform: translateY(1px);
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.25s ease;
}

.kave-btn:hover {
    box-shadow: 1px 1px 8px rgba(101, 9, 248, 0.376);
    color: var(--techv_lb);
    text-shadow: 0 0 8px rgba(101, 9, 248, 0.376);
}

.kave-btn:hover.kave-btn:before {
    left: 0;
    background: rgba(144, 9, 248, 0.521);
    width: 20px;
}

.kave-btn:hover.kave-btn:after {
    right: 0;
    background: rgba(144, 9, 248, 0.521);
    width: 20px;
}

.kave-btn:hover .kave-line:before {
    bottom: 0;
    background: rgba(144, 9, 248, 0.521);
}

.kave-btn:hover .kave-line:after {
    top: 0;
    background: rgba(144, 9, 248, 0.521);
}

.kave-line:before {
    content: "";
    position: absolute;
    bottom: 30%;
    right: 0;
    width: 1px;
    height: 20px;
    transform: translateX(1px);
    background: rgb(255, 255, 255);
    transition: all 0.25s ease;
}

.kave-line:after {
    content: "";
    position: absolute;
    top: 30%;
    left: 0;
    width: 1px;
    height: 20px;
    transform: translateX(-1px);
    background: rgb(255, 255, 255);
    transition: all 0.25s ease;
}

.kave-btn a {
    padding: 0.25rem 10rem;
}

@media (max-width: 576px) {
    .kave-btn {
        width: 100%;
    }

    .kave-line:before {
        height: 10px;
    }

    .kave-line:after {
        height: 10px;
    }

    .kave-btn a {
        padding: 1rem;
        text-align: center;
    }

    .kave-btn {
        box-shadow: 1px 1px 8px rgba(101, 9, 248, 0.376);
        color: var(--techv_lb);
        background: rgba(0, 0, 0, 0.685);
        text-shadow: 0 0 8px rgba(101, 9, 248, 0.376);
    }
}

.text-vert {
    position: sticky;
    top: 2rem;
    writing-mode: vertical-rl;
    text-orientation: upright;
}

@media (max-width: 576px) {
    .text-vert {
        position: static !important;
        background-color: var(--techv_body);
        writing-mode: horizontal-tb;
        text-orientation: sideways;
        margin-top: 5rem;
        margin-bottom: 2rem;
        color: white !important;
    }
}

.domain-card img {
    padding: 0.5rem;
    position: relative;
    border-radius: 0px 50px 50px 50px;
    background-color: #ebebeb;
}

.domain-card {
    position: relative;
}

.domain-card::before {
    content: "";
    position: absolute;
    top: -0.25rem;
    border-radius: 50px 50px 50px 0px;
    height: 110%;
    width: 50%;
    right: 30%;
    background-color: #6c0197e3;
}

.domain-card a {
    position: absolute;
    right: 2rem;
    padding: 0.5rem 1rem;
    background-color: rgb(12, 12, 12);
    bottom: -1rem;
    border-radius: 3px;
}

.section {
    margin-top: 10vh;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 576px) {
    .section {
        min-height: max-content;
        margin-top: 6vh;
    }
}
@media (max-width: 991px) {
    .section {
        min-height: 60vh;
        margin-top: 6vh;
    }
}

#mob-ul {
    position: fixed;
    bottom: 5rem;
    right: 1rem;
    padding: 1rem;
    gap: 1rem;
}

#mob-btn {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
}

#mob-nav button:focus,
#mob-nav button:hover {
    box-shadow: none;
}

#mob-nav .kave-btn:hover,
#mob-nav .kave-btn.active {
    color: var(--techv_lb);
    background-color: rgba(0, 0, 0, 0.452);
}

#mob-nav .card {
    background-color: rgba(0, 0, 0, 0.75);
    border-radius: 10px;
    padding: 3rem 2rem;
}

#mob-nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    z-index: -100;
}

#mob-nav ul li {
    padding: 0.1rem;
}

#mob-nav ul li a {
    width: 100%;
    display: inline-block;
}

#mob-ul {
    transition: all 300ms;
    transform: translateY(900px);
}

#mob-ul.active {
    z-index: 1000 !important;
    transform: translateY(0px);
}

#mob-btn {
    width: 3rem;
    height: 3rem;
}

.awards .card {
    border-radius: 10px;
    background-color: rgb(7, 7, 7);
}

.awards video {
    width: 100%;
}

@media (max-width: 576px) {
    .w-100-smonly {
        width: 100%;
    }
}

.carousel-indicators .active {
    opacity: 1;
}

.carousel-indicators {
    top: 0;
    left: 90%;
    margin: 0;
    height: max-content;
    width: max-content;
}

.carousel-indicators [data-bs-target] {
    width: 20px;
    height: 3px;
}

.carousel-indicators [data-bs-target].active {
    opacity: 1;
    background-color: var(--techv_db);
}

@media (max-width: 576px) {
    .carousel-indicators {
        left: 75%;
        top: -5%;
    }
}

.partners .card {
    padding: 0.5rem;
    border-radius: 10px;
    background-color: rgb(7, 7, 7);
}

.partners .card img {
    transition: all 300ms;
    height: 25vh;
    object-fit: contain;
    filter: grayscale(100);
}

.partners .card img:hover {
    filter: grayscale(0);
}

.partners .card span {
    position: absolute;
    right: 1rem;
    padding: 0.25rem 1rem;
    background-color: rgb(12, 12, 12);
    bottom: -1rem;
    border-radius: 3px;
}

@media (max-width: 576px) {
    .partners .card img {
        height: 30vh;
        filter: grayscale(50%);
    }
}
@media (max-width: 991px) {
    .partners .card img {
        height: 20vh;
        filter: grayscale(50%);
    }
}

.w-sm-50 {
    width: 50%;
}

.domain-card {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 576px) {
    .w-sm-50 {
        width: 100%;
    }

    .domain-card {
        align-items: center;
        justify-content: center;
    }

    .domain-card::before {
        content: "";
        position: absolute;
        top: 0.5rem;
        border-radius: 50px 50px 50px 0px;
        height: 105%;
        width: 98%;
        right: 10%;
        background-color: #6c0197e3;
    }

    .domain-card span {
        position: relative;
        right: 0rem;
        font-size: 0.9rem;
        padding: 0.5rem;
        background-color: rgb(12, 12, 12);
        bottom: 0rem;
        border-radius: 3px;
    }
}

.border-10 {
    border-radius: 10px;
}

img {
    object-fit: cover;
}

/* gallery */
.gallery {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.gallery .g-item {
    aspect-ratio: 1;
    transform: rotate(45deg);
    overflow: hidden;
}

.gallery .g-item .g-inner {
    transform: scale(2) rotate(-45deg);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    background-size: 100%;
    transition: all 300ms;
    transform-origin: center;
    background-position: center;
}

.gallery .g-inner i {
    font-size: 0.5rem;
}
@media (max-width: 991px) and (min-width: 576px) {
    .gallery {
        margin-top: 10rem;
        transform: rotate(90deg) scale(1.25);
    }
    .gallery .g-item .g-inner {
        transform: rotate(-135deg) scale(2);
    }
}
@media (min-width: 991px) {
    .gallery .g-item .g-inner {
        filter: grayscale(1);
    }
    .gallery .g-item:hover .g-inner {
        filter: grayscale(0);
    }
}

.gallery .g-item:hover .g-inner {
    background-size: 125%;
}

.br-5 {
    border-radius: 5%;
}

/* blogs */

.blogs-tv img {
    height: 40vh;
}

@media (max-width: 991px) {
    .blogs-tv img {
        height: 20vh;
    }
}

@media (max-width: 456px) {
    .w-sm-100 {
        width: 100%;
    }
}

.blogview {
    background-size: cover;
    background-image: url("https://source.unsplash.com/random/?ocean");
    background-attachment: fixed;
}

.blogview .card {
    backdrop-filter: blur(12px);
    background-color: rgba(0, 0, 0, 0.664);
}

.blogview .card a {
    color: rgb(240, 240, 240);
}

.read-more {
    font-size: 0.85rem;
}

.read-more:hover {
    color: var(--techv_lb) !important;
}
@media (max-width: 991px){

    .mask {
        display: none;
    }
    .sm-only {
        height: 95vh;
        background-size: cover;
        background-position: bottom;
        background-image: url("/storage/assets/md.svg");
    }
    .custom-place {
        top: 20%;
        padding: 0.5rem 1rem;
        animation: colorme 2000ms forwards;
        font-size: 2.5rem !important;
    }
}

@media (max-width: 456px) {
    .sm-only {
        height: 95vh;
        background-size: cover;
        background-position: bottom;
        background-image: url("/storage/assets/sm.svg");
    }
    .custom-place {
        font-size: 1.5rem;
    }
}

/*  */
.grad-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 20%;
    background: linear-gradient(rgba(0, 0, 0, 0), var(--techv_body));
}

.domain-desc .card {
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.685);
}

.domain-desc .card img {
    width: 40%;
}
@media (max-width: 576px) {
    .img-sm {
        min-height: 30vh;
    }
}
