@import url('https://fonts.googleapis.com/css2?family=Nova+Square&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --clr1: #8a2435;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    cursor: url(../images/character.png), auto;
}
#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #E62739;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transform: translateY(100px);
    transition: 0.3s;
}
#back-to-top:hover {
    background-color: #F270B1;
}
#app {
    width: 100%;
    position: relative;
    height: 100vh;
    font-family: "Montserrat", serif;
}
#webgl-canvas {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}
.filter-invert{
    filter: invert(1);
}
.crsr-pntr{
    cursor: pointer;
}
.site-clr{
    color: var(--clr1);
}
.site-clr2{
    color: #ea526b;
}
.text-clr{
    color: #ccc;
}
.font-exo{
    font-family: "Nova Square", sans-serif;
}
.fs-14{
    font-size: 14px ;
}
.fs-12{
    font-size: 12px !important;
}
.fs-8{
    font-size: 8px;
}
.lh-0{
    line-height: 0 !important;
}
.posRel{
    position: relative;
}
.z2{
    z-index: 2;
}
.custom-ul1 li::before{
    content: '\eae7';
    font-family: 'Material Symbols Outlined';
    line-height: 0;
    color: #fff;
}
.mt-10{
    margin-top: 6em;
}
.siteBtn{
    display: inline-block;
    padding: 14px 30px;
    color: var(--clr1);
    margin-top: 20px;
    border-radius: 30px;
    font-size: 1em;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}
.siteBtn::before{
    content: url(../images/star3.png);
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-100%);
    opacity: 0;
    transition: 0.45s;
}
.siteBtn:hover{
    background: #fff;
}
.siteBtn:hover::before{
    top: -30px;
    opacity: 1;
}
.siteBtn.btnOnBlack{
    background: #fff;
}
.siteBtn.btnOnBlack::before{
    opacity: 1;
    top: -30px;
}
.hdr-sec{
    background: url(../images/bg2.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    padding: 50px 0;
}
.hdr-sec .container{
    position: relative;
    /* min-height: 300px; */
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 50px;
}
.hdr-sec .container .content{
    width: 110%;
    /* margin-left: -100px; */
}
.hdr-sec .container .boxes .box{
    z-index: 2;
    position: relative;
}
header{
    position: absolute;
    top: -40px;
    right: 20px;
    left: 20px;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
}
header .logo{
    color: var(--clr1);
    font-weight: 700;
    text-decoration: none;
    font-size: 2em;
}
header ul{
    display: flex;
}
header ul li{
    list-style: none;
    margin: 0 10px;
}
header ul li a{
    text-decoration: none;
    font-weight: 500;
    color: var(--clr1);
    padding: 8px 15px;
    border-radius: 25px;
}
header ul li a:hover, header ul li a.active{
    background: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.glass-shadow{
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.5);   
}
.black-shadow{
    border-radius: 20px;
    background: linear-gradient(145deg, #000a1b, #000c20);
    box-shadow:  20px 20px 40px #00040c,
                -20px -20px 40px #001230;
}
.imgBox img{
    max-width: 400px;
    animation: animate 5s linear infinite;
}
@keyframes animate{
    0%, 100%{
        transform: translateY(-20px);
    }
    50%{
        transform: translateY(50px);
    }
}
.bg-dark2{
    background: #000B1E;
}
.sec3{
    background: url(../images/bg3.jpeg);
    background-position: center;
    background-size: cover;
}
.sec4{
    background: url(../images/bg5.jpeg);
    background-position: center;
    background-size: cover;
}
.sec6{
    background: #F5B9D9;
    background: url(../images/bg7.jpeg);
    background-position: center;
    background-size: cover;
}
footer{
    background: url(../images/bg2.jpg);
    background-position: center;
    background-size: cover;
}
.newsletter input:not(.form-check-input){
    padding: 12px;
    outline: none;
    color: var(--clr1);
    font-weight: 500;
    background: #ffffff11;
}
.newsletter input::placeholder{
    color: #eee;
}
footer .newsletter button{
    background: #ea526b;
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
footer .newsletter button:hover{
    background: var(--clr1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}
footer .ftr ul {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 20px;
    list-style: none;
    padding-left: 0;
}
footer .ftr ul.links li a{
    text-decoration: none;
    color: #000;
    border-bottom: 2px solid;
}
.social-media li a{
    min-width: 40px;
    min-height: 40px;
    max-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: 0.3s;
}
.social-media li a:hover{
    transform: translateY(-10px);
}
footer .accordion{
    --bs-accordion-border-color: transparent;
}
.loginModal .modal-content{
    background-color: #ffffff4c;
}
.newsletter .create-account input::placeholder{
    color: #444;
}
.newsletter .create-account input{
    color: #111;
    font-weight: 400;
}
.team-single .info .badge{
    margin-top: -28px;
    position: absolute;
    right: 24px;
    padding: 8px 20px;
    background: #F270B1;
    border-radius: 22px;
}
.team-single .info p{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.teamModal .modal-content .modal-body{
    background-color: #ffffff4c;
}
.bdr-endtop-0{
    border-top-right-radius: 0 !important;
}
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.load{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    width:100px;
    height:100px;
}
.load hr{
    border:0;
    margin:0;
    width:40%;
    height:40%;
    position:absolute;
    border-radius:50%;
    animation:spin 2s ease infinite;
    opacity: 1;
} 
.load :first-child{background:#ACD8F1;animation-delay:-1.5s}
.load :nth-child(2){background:#e62739;animation-delay:-1s}
.load :nth-child(3){background:#FDA543;animation-delay:-0.5s}
.load :last-child{background:#ff00ea}
@keyframes spin{
    0%,100%{transform:translate(0)}
    25%{transform:translate(160%)}
    50%{transform:translate(160%, 160%)}
    75%{transform:translate(0, 160%)}
} 
.hamburger {
    cursor: pointer;
    display: none;
}
.hamburger input {
    display: none;
}  
.hamburger svg {
    height: 3em;
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.line {
    fill: none;
    stroke: white;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
                stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.line-top-bottom {
    stroke-dasharray: 12 63;
}  
.hamburger input:checked + svg {
    transform: rotate(-45deg);
}  
.hamburger input:checked + svg .line-top-bottom {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
}
.centerSlick img{
    min-height: 300px;
    border-radius: 30px;
}
.centerSlick .slick-list{}
.slick-slide {
    margin: 0 10px;
    transform: scale(0.8);
    transition: 0.3s;
}
.slick-slide.slick-current.slick-active.slick-center{
    transform: scale(1);
}
@media (max-width:992px) {
    header{
        padding: 20px 20px;
    }
}
@media (max-width:768px) {
    header{
        padding: 10px 20px;
        z-index: 10;
    }
    header .logo{
        font-size: 1.5em;
    }
    header ul{
        display: flex;
        position: absolute;
        right: 0;
        top: -500px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-radius: 20px;
        width: 300px;
        background: #ffffffeb;
        backdrop-filter: blur(30px);
        height: 300px;
        padding-left: 0;
        transition: 0.3s;
    }
    header ul.active{
        top: 90px;
    }
    header ul li{
        margin: 10px 0;
    }
    .hdr-sec .container{
        padding: 50px 20px;
    }
    .imgBox img{
        width: 100%;
    }
    .hdr-sec .container .content{
        width: 100%;
        /* margin-left: 0; */
    }
    footer .newsletter form{
        flex-wrap: wrap;
    }
    footer .newsletter button{
        margin: auto;
    }
    .hamburger{
        display: block;
    }
    .centerSlick img{
        min-height: auto;
        border-radius: 15px;
    }
}