@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body{
    min-height: 100vh;
    /* background: url(/169684.jpg); */
    background-size: cover;
    background-position: center;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.3rem 10%;
    /* background:rgba(0, 0, 0, 0.1); */
    /* backdrop-filter: blur(50px); */
    display: flex;                
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}
 
.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(50px);
    z-index: -1;
}

.header::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .4), transparent);
    transition: .5s;
}

.header:hover::after {
    left: 100%;
} 

.logo {
    position: relative;
    font-size: 2rem;
    color: #333;
    text-decoration: none;
    padding: 6px 20px;
    transition: .5s;
}

.logo:hover {
    color: #0ef;
}



.navbar a {
    font-size: 1.15rem;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-left: 2.5rem;
}

#check {
    display: none;
}

.icons {
    position: absolute;
    right: 5%;
    font-size: 2.8rem;
    color: #fff;
    cursor: pointer;
    display: none;
}

/* BREAKPOINTS */
@media (max-width: 992px) {
    .header {
        padding: 1.3rem 5%;
    }
}

@media (max-width: 768px) {
    .icons {
        display: inline-flex;
    }

    #check:checked~.icons #menu-icon {
        display: none;
    }
   

    .icons #close-icon {
        display: none;
    }
    

    #check:checked~.icons #close-icon {
        display: block;
    } 

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 0;
        background: red;
        background: rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(50px);
       box-shadow: 0.5rem 1rem rgba(0, 0, 0, 0.1);
         overflow: hidden;
        transition: .3s ease;
    }

    #check:checked~.navbar {
        height: 17.7rem;
    }

    .navbar a {
        display: block;
        position: relative;
        font-size: 1.1rem;
        margin: 1.5rem 0;
        text-align: center;
        transform: translateY(-50px);
        opacity: 0;
        transition: .3s ease;
    }

    #check:checked~.navbar a {
        transform: translateY(0);
        opacity: 1;
        transition-delay: calc(.15s * var(--i));
    }
}

.navbar a:hover {
    color: #0ef;
}

.navbar a span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-bottom: 2px solid #0ef;
    border-radius: 15px;
    transform: scale(0) translateY(50px);
    opacity: 0;
    transition: .5s;
}

.navbar a:hover span {
    transform: scale(1) translateY(0);
    opacity: 1;
}

#particles-js {
    width: 100%;
    height: 100%;
    /* background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url("/img/169684.jpg"); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
  }
  
.gallery{
    padding-top: 50px;
}

  .image1 {
    width: 100%;
    height: 700px; 
    object-fit: cover; /* Ensures the image covers the entire container */
    object-position: center; /* Positions the image at the center */
}

@media (max-width: 768px) {
    .image1 {
        width: 100vw; /* Make the image cover the entire viewport width */
        height: 100vh; /* Make the image cover the entire viewport height */
        object-fit: cover; /* Ensures the image covers the entire viewport */
        object-position: center; /* Positions the image at the center */
        margin-top: 0; /* Reset margin */
    }
}


.gallery .slider{
    height: 100vh;
    margin-top: -50px;
    position: relative;
}
.gallery .slider .list .item{
    position: absolute;
    inset: 0 0 0 0;
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}
.gallery .slider .list .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery .slider .list .item::after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: linear-gradient(
        to top, #000 40%, transparent
    );
}
.gallery .slider .list .item .content{
    position: absolute;
    left: 10%;
    top: 20%;
    width: 500px;
    max-width: 80%;
    z-index: 1;
}
.gallery .slider .list .item .content p:nth-child(1){
    text-transform: uppercase;
    letter-spacing: 10px;
}
.gallery .slider .list .item .content .slidertext{
    font-size: 50px;
    margin: 0;
    color: aquamarine;
    font-style: italic;
}
.gallery .slider .list .item.active{
    opacity: 1;
    z-index: 10;
}
@keyframes showContent {
    to{
        transform: translateY(0);
        filter: blur(0);
        opacity: 1;
    }
}
.gallery .slider .list .item.active p:nth-child(1),
.gallery .slider .list .item.active h2,
.gallery .slider .list .item.active p:nth-child(3){
    transform: translateY(30px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s .7s ease-in-out 1 forwards;
}
.gallery .slider .list .item.active h2{
    animation-delay: 1s;
}
.gallery .slider .list .item.active p:nth-child(3){
    animation-duration: 1.3s;
}

.gallery .arrows{
    position: absolute;
    top: 30%;
    right: 50px;
    z-index: 100;
}
.gallery .arrows button{
    background-color: #eee5;
    border: none;
    font-family: monospace;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    font-size: x-large;
    color: #eee;
    transition: .5s;
}
.gallery .arrows button:hover{
    background-color: #eee;
    color: black;
}
.gallery .thumbnail{
    position: absolute;
    bottom: 50px;
    z-index: 11;
    display: flex;
    gap: 10px;
    width: 100%;
    height: 250px;
    padding: 0 50px;
    box-sizing: border-box;
    overflow: auto;
    justify-content: center;
}
.gallery .thumbnail::-webkit-scrollbar{
    width: 0;
}
.gallery .thumbnail .item{
    width: 150px;
    height: 220px;
    filter: brightness(.5);
    transition: .5s;
    flex-shrink: 0;
}
.gallery .thumbnail .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.gallery .thumbnail .item.active{
    filter: brightness(1.5);
}
.gallery .thumbnail .item .content{
    position: absolute;
    inset: auto 10px 10px 10px;
}
@media screen and (max-width: 678px) {
    .gallery .thumbnail{
        justify-content: start;
    }
    .gallery .slider .list .item .content h2{
        font-size: 60px;
    }
    .gallery .arrows{
        top: 10%;
    }
}

#preloader{
    background: #000 url(/loader.gif) no-repeat center;
    background-size: 5%;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 100;
}

@media (max-width: 768px) {
    #preloader{
        background: #000 url(/loader.gif) no-repeat center;
        background-size: 15%;
        height: 100vh;
        width: 100%;
        position: fixed;
        z-index: 100;
    }
}

.about {
    padding: 0px;
    margin-bottom: 50px;
    box-sizing: border-box;
  }


.about .content_about{
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 20px auto;

}

.about .content_about .about_h1{
    font-size: 50px;
    color: #000;
    margin-bottom: 25px;
    position: relative;
}

.about .content_about .about_h1::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    display: block;
    margin: 0 auto;
    background-color: #cd2626;
}


.about .content_about .about_p{
    font-size: 18px;
    color: #666;
    margin-bottom: 35px;
}

.about .about1{
    width: 90%;
    margin: 0 auto;
    padding: 10px 20px;
}
     
.about .about1 .about2{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.about .about1 .about2 .about3{
    flex: 1;
    margin-right: 40px;
    overflow: hidden;
}

.about .about1 .about2 .about3 .img_about{
    max-width: 100%;
    border-radius: 20px;
    height: auto;
    display: block;
    transition: 0.5s ease;
}

.about .about1 .about2 .about3:hover .img_about{
    border-radius: 20px;
    transform: scale(1.2);
}



.about .about1 .about2 .about4{
    flex: 1;

}



.about .about1 .about2 .about3 .about4 .about4_p{
    font-size: 18px; 
line-height: 1.5; 
color: #666;
}


.about .about1 .about2 .about4 .link_about{
    display: inline-block;
    padding: 10px 20px;
    background-color: #c43030;
    color: #fff;
    font-size: 19px;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 15px;
    transition: 0.3s ease;
}


.about .about1 .about2 .about4 .link_about:hover{
    background-color: #3e8e41;
}


@media (max-width: 768px) {
    .about .content_about{
        padding: 0px 20px;
    }
    .about .content_about .about_h1{
        font-size: 36px;
    }
    .about .content_about .about_p{
        font-size: 17px;
        margin-bottom: 0px;
    }
    .about .about1{
        padding: 0px;
    }
    .about .about1 .about2{
        padding: 20px;
        flex-direction: column;
    }
    .about .about1 .about2 .about3{
        margin-right: 0px;
        margin-bottom: 20px;
    }
    .about .about1 .about2 .about3 .about4 .about4_p{
        padding: 0px;
        font-stretch: 16px;
    }
    .about .about1 .about2 .about4 .link_about{
        font-size: 16px;
        
    }
}

.contact{
    position: relative;
    min-height: 100vh;
    padding: 50px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: url(/img/contact_us_background.jpg);
    background-size: cover;
    /* color: white; */
}

.contact .contact_content{
    max-width: 800px;
    text-align: center;
}


.contact .contact_content .contact_h2{
    font-size: 36px;
    font-weight: 500;
    color: #fff;
}

.contact .contact_content .contact_p{
    font-weight: 300;
    color: #fff;
}

.contact .contact_container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.contact .contact_container .contactInfo{
    width: 50%;
    display: flex;
    flex-direction: column;
}


.contact .contact_container .contactInfo .contact_box{
    position: relative;
    padding: 20px 0;
    display: flex;
}

.contact .contact_container .contactInfo .contact_box .contact_icon{
    min-width: 60px;
    height: 60px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 22px;
}


.contact .contact_container .contactInfo .contact_box .contact_text{
    display: flex;
    margin-left: 20px;
    font-size: 16px;
    color: #fff;
    flex-direction: column;
    font-weight: 300;
}


.contact .contact_container .contactInfo .contact_box .contact_text .contact_h3{
    font-weight: 500;
    color: #00bcd4;
}

.contact .contact_container .contact_form{
    width: 40%;
    padding: 40px;
    background: #fff;

}

.contact .contact_container .contact_form h2{
    font-size: 30px;
    color: #333;
    font-weight: 500;
}

.contact .contact_container .contact_form .inputBox{
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.contact .contact_container .contact_form .inputBox input,
.contact .contact_container .contact_form .inputBox textarea
{
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid #333;
    outline: none;
    resize: none;
}

.contact .contact_container .contact_form .inputBox span{
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: #666;
}

.contact .contact_container .contact_form .inputBox input:focus ~ span,
.contact .contact_container .contact_form .inputBox input:valid ~ span,
.contact .contact_container .contact_form .inputBox textarea:focus ~ span,
.contact .contact_container .contact_form .inputBox textarea:valid ~ span{
    color: #e91e63;
    font-size: 12px;
    transform: translateY(-20px);
}
   


.contact .contact_container .contact_form .inputBox input[type="submit"]{
    width: 100px;
    background: #00bcd4;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
}

@media (max-width: 991px)
{
    .contact{
        padding: 50px;
    }

    .contact .contact_container{
        flex-direction: column;
    }

    .contact .contact_container .contactInfo{
        margin-bottom: 40px;
    }
    .contact .contact_container .contactInfo,
    .contact .contact_container .contact_form
    {
        width: 100%;
    }

}