.banner{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 75vh;
    width: 100%;
    background-color: var(--dark);
    user-select: none;
    position: relative;
}

.banner video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    position: relative;
    border-bottom-left-radius: var(--main-radius);
    border-bottom-right-radius: var(--main-radius);
}

/*
.banner::before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--dark);
    bottom: 0;
    z-index: -1;
}*/

.video-overlay{
    opacity: 0.8;
    position: absolute;
    z-index: 99;
    transition: all 0.2s ease;
}

.sound-toggle{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 50px;
    height: 50px;
    bottom: 0;
    /*right: 0;
    margin-right: 50px;*/
    margin-bottom: 30px;
    cursor: pointer;
    z-index: 1;
    transition: all 0.2s ease;
    opacity: 0.8;
}

.sound-toggle:hover{
    scale: 1.1;
    opacity: 1;
}

.sound-toggle img{
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}

.sound-toggle .off{
    opacity: 1;
    visibility: visible;
}

.heading{
    font-family: sans-serif;
    font-size: 50px;
    text-transform: uppercase;
    color: var(--primary-clr);
    text-align: center;
}

.sub-heading{
    color: white;
    font-family: sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    text-align: center;
}

.banderole{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(--dark);
    padding: 80px;
    width: 100%;
}

.description{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-family: sans-serif;
    text-align: center;
    color: white;
    font-size: 20px;
    width: 100%;
    /*padding-inline: 50px;*/
}

.description p{
    background-color: #202020;
    width: 100%;
    padding: 50px;
    transition: all 0.2s ease;
    /*border-radius: 20px;*/
}
/*
.description p:hover{
    border: 2px solid var(--primary-clr);
}

.description{
    padding-inline: 50px;
}

.description p{
    border: 2px solid #353535;
    border-radius: 20px;
}
*/
/*MINI GALERY*/

.mini-galery-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.mini-galery{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    max-width: 1920px;
    padding-inline: 50px;
}

.galery-item{
    position: relative;
    border-radius: var(--main-radius);
    overflow: hidden;
}

.galery-item img{
    display: block;
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
    transition: all 0.2s ease;
}

.item-overlay{
    display: flex;
    justify-content: center;
    width: 100%;
    height: 30%;
    position: absolute;
/*  top: 0;
    left: 0;
    right: 0;*/
    bottom: 0;
    visibility: hidden;
    opacity: 0;
    /*transition: all 0.5s ease-in-out;
    transform: rotateY(90deg);*/
    transform: translateY(30%);
    transition: all 0.2s ease;
}

.galery-item:hover .item-overlay{
    visibility: visible;
    opacity: 1;
    /*transform: rotateY(0deg);*/
    transform: translateY(0%);
    transition-delay: 0s;
}

.galery-item:hover img{
    filter: grayscale(0%);
    scale: 1.03;
}

.text-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-clr);
    width: 100%;
    font-family: sans-serif;
    overflow: hidden;
    user-select: none;
}

.text-wrapper h4{
    color: white;
    text-transform: uppercase;
    font-size: 20px;
    white-space: nowrap;
}

.text-wrapper p{
    color: white;
    font-size: 20px;
    white-space: nowrap;
}

.galery-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 2px solid white;
    border-radius: 25px;
    height: 50px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    user-select: none;
}

.galery-btn::before{
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color:  white;
    z-index: -1;
    transform: translateY(60px);
    transition: all 0.2s ease;
}

.galery-btn a{
    color: white;
    font-size: 18px;
    font-weight: 600;
    padding: 30px;
    transition: all 0.2s ease;
}

.galery-btn:hover::before{
    transform: translateY(0px);
}

.galery-btn:hover a{
    color: var(--dark);
}

/*SERVICES*/
.services-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding-inline: 50px;
    font-family: sans-serif;
    font-weight: 600;
    color: white;
    user-select: none;
}

.services-wrapper{
    /*background-color: var(--secondary-clr);
    border: 2px solid #353535;
    border-radius: var(--main-radius);*/
    overflow: hidden;
}

.service-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-bottom:  2px solid #353535;
    min-height: 150px;
    transition: all 0.2s ease;
    scroll-margin-top: 120px;
}

.first{
    border-top: 2px solid #353535;
}

.service-number{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: auto;
    height: 100%;
}

.service-number span{
    font-size: 20px;
    padding: 20px;
}

.middle-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: auto;
}

.service-name{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
}

.service-name h4{
    font-size: 18px;
}

.service-name h5{
    font-size: 40px;
    transition: all 0.2s ease;
}

.service-description{
    display: flex;
    width: 100%;
}

.service-link{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: auto;
    height: 100%;
    padding: 20px;
}

.service-link button{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-color: #101010;
    transition: all 0.2s ease;
    cursor: pointer;
}

.line6{
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: white;
    transform: rotate(-45deg);
}

.line7{
    position: absolute;
    width: 10px;
    height: 2px;
    background-color: white;
    top: 22px;
    right: 22px; 
}

.line8{
    position: absolute;
    width: 2px;
    height: 10px;
    background-color: white;
    top: 22px;
    right: 22px; 
}

.service-item:hover{
    border-bottom: 2px solid var(--primary-clr);
}

.service-item.first:hover{
    border-top: 2px solid var(--primary-clr);
}

.service-item:hover h5{
    color: var(--primary-clr)!important;
}

.service-item:hover button{
    background-color: var(--primary-clr);
}

.service-item button:hover{
    outline: 2px solid white;
}

/*SERVICE DETAILS*/

.service-details{
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    background-color: var(--dark);
    width: 100%;
    height: 100%;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    font-family: sans-serif;
    user-select: none;
}

.service-details > div {
    opacity: 0;
    transition: opacity 400ms ease;
}

.service-details span{
    color: white;
    text-transform: uppercase;
    font-size: 60px;
    font-weight: 900;
}

.service-details button{
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50px;
    right: 50px;
    width: 60px;
    height: 60px;
    background-color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease;
    opacity: 0;
    visibility: hidden;
}

.service-details button::before{
    content: '';
    position: absolute;
    background-color: var(--dark);
    width: 0%;
    height: 0%;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.service-details button:hover{
    background-color: var(--dark);
    transition-delay: 0.4s;
}

.service-details button:hover .line9{
    background-color: white;
}

.service-details button:hover .line10{
    background-color: white;
}

.service-details button:hover::before{
    width: 100%;
    height: 100%;
}

.line9, .line10{
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: #101010;
    transition: all 0.4s ease;
}

.line9{
    transform: rotate(45deg);
}

.line10{
    transform: rotate(-45deg);
}

/*TEAM SECTION*/

/*BOOKING SECTION*/

.booking{
    min-height: unset!important;
}

/*CONTACT FORM*/
#contact{
    padding-inline: 50px;
    min-height: auto!important;
}
.contact-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color: #101010;
    border-radius: 20px;
    font-family: sans-serif;
    height: 630px;
    overflow: hidden;
}

.contact-wrapper .contact-left{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 50px;
}

.contact-wrapper .contact-left form{
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    opacity: 1;
    visibility: visible;
}

.contact-left form input, textarea{
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #353535;
    font-size: 18px;
    color: white;
    transition: all 0.2s ease;
}

.contact-left form input{
    height: 50px;
}

.contact-left textarea{
    height: 250px;
    margin-bottom: 40px;
    padding-top: 12px;
    font-family: sans-serif;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-bottom: 2px solid var(--primary-clr)!important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill {
    -webkit-text-fill-color: #ffffff;
    -webkit-box-shadow: 0 0 0px 1000px #252525 inset;
    box-shadow: 0 0 0px 1000px #252525 inset;
    transition: background-color 5000s ease-in-out 0s;
}

input:focus::placeholder,
textarea:focus::placeholder {
    color: var(--primary-clr);
}

.contact-left button{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding-inline: 30px;
    background-color: transparent;
    border: 2px solid white;
    border-radius: 25px;
    cursor: pointer;
    z-index: 1;
    transition: all 0.2s ease;
    user-select: none;
    overflow: hidden;
}

.contact-left button::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: -1;
    transition: all 0.2s ease;
    transform: translateY(60px);
}

.contact-left button:hover span{
    color: black;
}

.contact-left button:hover::before{
    transform: translateY(0);
}

.contact-left button span{
    font-weight: 600;
    font-size: 18px;
    color: white;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.contact-wrapper .contact-right{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
    padding: 50px;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.contact-right img{
    position: absolute;
    object-fit: cover;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: all 0.2s ease;
}

.confirmation{
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    visibility: hidden;
    opacity: 0;
}

.confirmation h2{
    color: var(--primary-clr);
    text-transform: uppercase;
    margin-bottom: 50px;
    white-space: none;
    font-size: 30px;
    text-align: center;
}

.confirmation p{
    color: white;
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
}

.contact-wrapper .contact-left form,
.confirmation{
    transition: all 0.2s ease;
}

@media screen and (max-width: 1535px) {}
@media screen and (max-width: 1279px) {
    .video-overlay{
        scale: 0.6;
    }
    .mini-galery{
        grid-template-columns: repeat(4, 1fr);
    }
    .mini-galery > :nth-child(9) {
        grid-column: 2;
     }

    .mini-galery > :nth-child(10) {
        grid-column: 3;
    }    
}
@media screen and (max-width: 1023px) {
    .video-overlay{
        scale: 0.4;
    }
    .mini-galery{
        grid-template-columns: repeat(3, 1fr);
    }
    .mini-galery > :nth-child(9) {
        grid-column: unset;
     }

    .mini-galery > :nth-child(10) {
        grid-column: 2;
    }      
    .middle-wrapper{
        flex-direction: column;
    } 
    .service-name{
        align-items: center;
        margin: 20px;
    }
    .service-name h5{
        color: var(--primary-clr)!important;
    }
    .service-description{
        text-align: center;
        margin-bottom: 20px;
    }       
}
@media screen and (max-width: 767px) {
    .video-overlay{
        scale: 0.3;
    }
    .mini-galery{
        grid-template-columns: repeat(2, 1fr);
    }
    .mini-galery > :nth-child(9) {
        grid-column: unset;
     }

    .mini-galery > :nth-child(10) {
        grid-column: unset;
    }
    .service-item{
        flex-direction: column;
    }      
    .contact-wrapper{
        flex-direction: column;
    }
}
@media screen and (max-width: 479px) {
    .scrolltotop{
        display: none;
    }
    .heading{
        font-size: 40px;
        white-space: wrap;
    }
    .sub-heading{
        font-size: 18px;
    }
    .mini-galery{
    grid-template-columns: repeat(1, 1fr);
    padding-inline: unset;
    }
    .description p{
        padding: 20px;
    }
    #contact{
        padding-inline: 0px;
        min-height: auto;
        padding-bottom: 100px;
    }
    .contact-left{
        padding-left: 20px!important;
        padding-right: 20px!important;
    }
    .contact-right{
        display: none!important;
    }
}
@media screen and (max-width: 345px) {
    .heading{
        white-space: unset!important;
    }
    .services-container{
        overflow: hidden;
    }
    .service-description {
        width: 320px;
    }  
}