@font-face {
  font-family: 'samarkan';
  src: url('/assets/font/samarkannormal.woff2') format('woff2');
}
:root{
    --primaryColor:#62CBF8;
    --secondaryColor:#1963AE;
    --shadowColor:#106433;
    --primaryColorhover:#b8262b;
    --main-gradient:linear-gradient(
        color-mix(in srgb, var(--primaryColor) 80%, #00000000),
        color-mix(in srgb, var(--backgroundColor) 80%, #00000000),
        color-mix(in srgb, var(--secondaryColor) 80%, #00000000)
        );
   
    --textColor:#000000;
    --backgroundColor:#F0F0F0;
    --radius:10px;
    --styleFont2:"samarkan",serif;
    --styleFont:"Noto Sans", serif;

}
html{
    overflow-x: hidden;
}
body{
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: var(--textColor);
     caret-color:var(--primaryColor);
     accent-color:var(--primaryColor);
     background-color: var(--backgroundColor);
     overflow-x: hidden;
}

/*---------- typography ------------*/

.huge-heading{
    font-size: 8rem;
    font-weight: bold;
}
.big-heading{
    font-size: 4rem;
    font-weight: bold;
}
.heading{
    font-size: 3rem;
}
.small-text{
    font-size: 0.75rem;
}
.styleFont2{
    font-family: var(--styleFont2);
}
.styleFont2-white{
    font-family: var(--styleFont2);
    color:#fff;
}
.styleFont2-color{
    font-family: var(--styleFont2);
     color: var(--primaryColor);
}
.styleFont{
    font-family: var(--styleFont);
}
.styleFont-color{
    font-family: var(--styleFont);
    color: var(--secondaryColor);
}
.styleFont-white{
    font-family: var(--styleFont);
    color:#fff;
}
.text-theme{
    color: var(--primaryColor);
}
.text-theme-secondary{
    color: var(--secondaryColor);
}
/*---------- cards ------------*/
.big-card{
    width: 100%;
    height: 350px;
    border-radius: var(--radius);
    background:linear-gradient(180deg, rgba(255,255,255,0) 0%, var(--secondaryColor) 100%), var(--url);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0px 0px, 0px 0px;
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 15px;
    text-decoration: none;
    & .big-card-heading{
        opacity: 1;
        font-family: var(--styleFont);
        font-size: 2rem;
        color:#fff;
        transition: all .3s ease;
    }
    & .big-card-text{
        opacity: 1;
        font-size: 0.75rem;
        color:#fff;
        transition: all .3s ease;
    }
    &:hover{
        /* background:linear-gradient(180deg, rgba(255,255,255,0) 0%, var(--secondaryColor) 100%), var(--url); */
        background-size: cover;
        background-repeat: no-repeat;
        background-position: 0px 0px, 0px 0px;
        text-decoration: none;
       
    }
}

.small-card{
    width: 100%;
    height: 170px;
    border-radius: var(--radius);
    background:linear-gradient(180deg, rgba(255,255,255,0) 0%, #000 100%), var(--url);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: end;
    transition: all .3s ease;
    &:hover{
        box-shadow: 0px 0px 100px var(--shadowColor);
    }
    & .small-card-detail{
        padding: 8px;
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;

        & .small-card-text,& .small-card-link{
            color:#fff;
        }
        & .small-card-text{
           align-content: center;
           font-size: 0.75rem;
        }
        & .small-card-link{
            height: 40px;
            width: 40px;
            display: grid;
            place-items: center;
            text-decoration: none;
            font-size: 2rem;
            background: var(--primaryColor);
            border-radius: var(--radius);
        }
    }

}

.mid-card{
    width: 100%;
    height: 265px;
    border-radius: var(--radius);
    background:linear-gradient(180deg, rgba(255,255,255,0) 0%, #000 100%), var(--url);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: end;
    transition: all .3s ease;
    &:hover{
        box-shadow: 0px 0px 100px var(--shadowColor);
    }
    & .mid-card-detail{
        padding: 8px;
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;

        & .mid-card-text,& .mid-card-link{
            color:#fff;
        }
        & .mid-card-text{
            font-family: var(--styleFont);
           align-content: center;
           font-size: 1.5rem;
           text-transform: lowercase;
           &::first-letter{
            text-transform: uppercase;
           }
        }
        & .mid-card-link{
            height: 40px;
            width: 40px;
            display: grid;
            place-items: center;
            text-decoration: none;
            font-size: 2rem;
            background: var(--primaryColor);
            border-radius: var(--radius);
        }
    }

}

.verticle-card{
    width: 100%;
    max-width: 360px;
    aspect-ratio: 254 / 396;
    border-radius: var(--radius);
    background:linear-gradient(180deg, rgba(255,255,255,0) 0%, #000 100%), var(--url);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: end;
    transition: all .3s ease;
    text-decoration: none;
    & .verticle-card-detail{
        padding: 8px;
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;

        & .verticle-card-text{
            font-family: var(--styleFont);
           align-content: center;
           font-size: 1.5rem;
            color:#fff;
            
             text-transform: lowercase;
           &::first-letter{
            text-transform: uppercase;
           }
        }
    }

}

/*------------button------------*/
.btn-theme{
    color: #fff;
    background-color: var(--primaryColor);
    &:hover{
        color: #fff;
        background-color: var(--primaryColorHover);
    }
}
.btn-theme-outline{
    background-color: var(--backgroundColor);
    color: var(--primaryColor);
    border: 1px solid transparent;
    &:hover{
        background-color: var(--backgroundColor);
        color: var(--primaryColorHover);
    border: 1px solid var(--primaryColorHover);
    }
}
/*------------background------------*/
.hero-bg {
     background: var(--main-gradient); 
    overflow: hidden;
   
}

.banner-bg{
    background: radial-gradient(51% 17% at 50% 100%,var(--backgroundColor) 99%,transparent 100%), radial-gradient(circle at 50% 0%,transparent,var(--primaryColor)), var(--url,var(--primaryColor));
    
    @media (width < 992px) {
        background:radial-gradient(100% 17% at 50% 110%,var(--backgroundColor) 99%,transparent 100%), radial-gradient(circle at 50% 0%,transparent,var(--primaryColor)), var(--url,var(--primaryColor))
    }
}

    .footer-bg {
        background: radial-gradient(51% 17% at 50% 0%, var(--backgroundColor) 99%, transparent 100%), radial-gradient(circle at 50% 0%, transparent, #002c80), var(--url, #0040805e);
    
}
.bg-theme{
    background-color: var(--backgroundColor);
}
#bg-fader1{
background-size: cover;
background-position: center;
}

/*----------- display ----------------*/
.hide {
    display: none;
}

.hide-on-desktop {
    @media (width > 992px) {
        display: none;
    }
}

.hide-on-mobile {
    @media (width < 992px) {
        display: none;
    }
}

.hide-on-sm-mobile {
    @media (width < 376px) {
        display: none;
    }
}
/*---------size and centering------------------------------------------*/

.vh100 {
    min-height: 100svh;
    height: auto;
}

.vh50 {
    min-height: 50svh;
    height: auto;
}

.vh40 {
    min-height: 40svh;
    height: auto;
}

.grid-center {
    display: grid;
    place-items: center;
}

.vertical-center {
    align-content: center;
}

.center {
    text-align: center;
    align-content: center;
}

.grid-center {
    display: grid;
    place-items: center;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.square {
    height: 60px;
    aspect-ratio: 1/1;
}
.negetive-z-index{
    z-index: -1;
}
/*--------- nav -----------*/
.nav-transit{
    
   /* animation: nav-transit linear both;
    animation-timeline: scroll();
    animation-range: entry 0% cover 100%;
    @media (width < 992px) {
        animation: none;
        background-color: var(--textColor);
    }*/
}
@keyframes nav-transit {
    0%{
        background: linear-gradient(180deg, var(--textColor) 0%, rgba(255,255,255,0) 100%);
        background-repeat: no-repeat;
        background-position: 0px -50px;
    }
    20%{
        background: linear-gradient(180deg, var(--textColor) 0%, rgba(255,255,255,0) 150%);
        background-repeat: no-repeat;
        background-position: 0px 0px;
    }
    100%{
        background: linear-gradient(180deg, var(--textColor) 0%, rgba(255,255,255,0) 150%);
        background-repeat: no-repeat;
        background-position: 0px 0px;
    }
    
}

/*------------- footer ------------------*/


.footer-grid-container {
    padding-top: 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas:
        "footer-left footer-center-top footer-right"
        "footer-left footer-center-bottom footer-right";

    @media (width < 992px) {
        display: flex;
        flex-direction: column;
    }
}

.footer-left {
    grid-area: footer-left;
    color: #fff;
}

.footer-right {
    grid-area: footer-right;
    color: #fff;
}

.footer-center-bottom {
    display: grid;
    place-items: center;
    grid-area: footer-center-bottom;
    color: #fff;
}

.footer-center-top {
    border-radius: 0 0 20px 20px;
    display: grid;
    place-items: center;
    grid-area: footer-center-top;
    color: #fff;
}

.social-link {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;

    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    border-radius: 50%;

    background: var(--_bg);

    &:hover {
        border: 1px solid #fff;
        color: #fff;
    }
}