@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Parisienne&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Josefin Sans", serif;
    scroll-behavior: smooth;
}

:root{
    --black-color: #000;
    --white-color: #fff;
    --bej-color: #EED7CA;
    --red-color: #eb1d1d;
    --grey-color: #1C1C1C;
    --light-grey-color: #F9F9F9;
    --bej2-color: #ECEBE6;
    --grey-color2: #444;
    --gold-color: #c59d5f;

}

@font-face {
    font-family: 'Quentin';
    src: url(../font/Quentin.otf);
}

body{
    position: relative;
}

.body_black{
    background-color: var(--grey-color);
}


.body_price{
    min-height: 100vh;
}


/* 
.body_price{
    background: url(../images/price_bg.jpg) center no-repeat;
    background-size: cover;
    position: relative;
    backdrop-filter: blur(5px);
}

.body_price::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: black;
    opacity: 0.8;
}

.body_price2{
    height: 100vh !important;
} */


.price_full{
    width: 100%;
    min-height: 100vh;
    background: url(../images/price_bg.jpg) center no-repeat;
    background-size: cover;
    position: relative;
    backdrop-filter: blur(5px);
    z-index: 2;
}

.price_full::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--black-color);
    opacity: 0.6;
    z-index: 0;
}


/* ------------------------- up ----------------------------- */

.up{
    position: fixed;
    bottom: 3%;
    right: 3%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 30;
    background-color: var(--gold-color);
    color: var(--white-color);
    cursor: pointer;
    transform: scale(0);
    transition: all ease 0.5s;
    opacity: 0.8;
}

.up i{
    color: var(--white-color);
    font-size: 2rem;
}

.up:hover{
    transform: translateY(-5px);
    opacity: 1;
}




/*!--------------------------------------- big_menu ---------------------------------------------- */

.big_menu{
    position: fixed;
    top: 0;
    transform: translateX(-200%);
    width: 100%;
    height: 100vh;
    background-color: var(--grey-color);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease-out 0.7s;
    transition: all ease 0.5s;
}


.big_menu ul{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    list-style: none;
    position: relative;
    z-index: 2;
}

.big_menu ul li a{
    color: var(--white-color);
    text-decoration: none;
    font-size: clamp(1.5625rem, 1.3889rem + 0.9259vw, 2.5rem);
    font-weight: 800;
    letter-spacing: 15px;
    transition: all ease 0.5s;
    opacity: 0.8;
}

.big_menu ul li a.active{
    color: var(--gold-color);
    opacity: 1;
}

.big_menu ul li a:hover{
    opacity: 1;
}


.big_menu_ul_bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    filter: blur(5px);
}

.big_menu_ul_bg .black_bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black-color);
    opacity: 0.3;
    z-index: 2;
}

.big_menu_ul_bg img{
    width: 100%;
    height: 100%;
    transition: all ease 0.7s;
    position: relative;
    opacity: 0;
}

.ul_bg1 .black_bg{
    opacity: 0.1;
}

/*!------------------------------------------ preloader -------------------------------------- */

.pre_loader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--grey-color);
    z-index: 900;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 100px 0;
    transition: opacity 0.5s ease;
}

.pre_loader.hidden{
    opacity: 0;
    visibility: hidden;
}

.pre_loader .text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}

.pre_loader .text h1{
    color: var(--white-color);
    font-size: clamp(4.0625rem, 3.6574rem + 2.1605vw, 6.25rem);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pre_loader h2{
    opacity: 0.8;
    -webkit-text-stroke: 1px var(--gold-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*!----------------------- cursor ----------------------------- */

/* .custom-cursor-dot{
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: var(--grey-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1000;
    transform: translate(-50%, -50%);
}

.custom-cursor-circle{
    position: absolute;
    width: 100px;
    height: 100px;
   border: 1px solid var(--grey-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999;
    transform: translate(-50%, -50%);
}

.main_body .custom-cursor-dot{
    background-color: var(--white-color);
}

.main_body .custom-cursor-circle{
    border: 1px solid rgba(255, 255, 255, 0.3);
} */


/*!------------------------------------------- header ---------------------------------------------- */

.header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    padding: 40px 100px;
}

.header .navbar{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header .navbar section{
    width: 33%;
    display: flex;
}

.header .navbar .section2{
    align-items: center !important;
    justify-content: center !important;
}

.header .navbar .section3{
    align-items: center;
    justify-content: end;
}

.header .navbar .menu{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    cursor: pointer;
    transition: all ease 0.5s;
}

.header .navbar .menu:hover{
    gap: 0.5rem;
    transition: all ease 0.5s;
}

.header .navbar .menu i{
    font-size: 2.5rem;
    color: var(--gold-color);
}

.header .navbar .menu h2{
    color: var(--white-color);
    font-size: clamp(0.9375rem, 0.8796rem + 0.3086vw, 1.25rem);
}

.header .navbar .main_logo{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .navbar .logo{
    width: 60px;
    height: 60px;
    position: relative;
    overflow: hidden;
}

.header .navbar .logo img{
    width: 100%;
    height: 100%;
}

.header .navbar .address{
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 1rem;
}

.header .navbar .address a{
    font-size: clamp(0.6875rem, 0.6296rem + 0.3086vw, 1rem);
    color: var(--white-color);
    text-decoration: none;
    font-weight: 400;
}

.header .navbar .address .first_a{
    text-align: right;
}

.header .navbar .address .first_a:hover{
    opacity: 0.8;
}


.header .navbar .address .second_a:hover{
    opacity: 0.8;
}

.header2{
    position: relative;
    padding: 20px 100px;
}

/*!-------------------------------------------- banner ------------------------------------------------ */

.banner{
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 70px;
    z-index: 2;
    background: url(../images/bottom_img.png) center no-repeat;
    background-size: cover;
}

.banner .banner_bg{
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
}

.banner .banner_bg::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black-color);
    opacity: 0.6;
    z-index: 2;
}

.banner .banner_bg video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(10px);
    display: block;
    position: absolute;
    z-index: 1;
}

.banner .text{
    position: relative;
    color: var(--white-color);
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
    z-index: 4;
}

.banner .text h2{
    opacity: 0.8;
}

.banner .text h1{
    margin-top: 20px;
    font-size: clamp(2.8125rem, 2.5231rem + 1.5432vw, 4.375rem);
    letter-spacing: 24px;
}

.banner .text h1 span{
    color: var(--gold-color);
}

.banner .animated_text{
    animation: fadeInOut 3s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%{
        opacity: 0;
        transform: translateY(20px);
    }

    20%, 80% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.banner .banner_bottom{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 100px 100px;
    z-index: 20;
}

.banner .banner_bottom section{
    position: relative;
    display: flex;
    width: 33%;
}

.banner .banner_bottom .section1{
    align-items: start;
}

.banner .banner_bottom .section2{
    align-items: center;
    justify-content: center;
}

.banner .banner_bottom .section3{
    align-items: center;
    justify-content: end;
}

.banner .wp{
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease 0.5s;
}

.banner .wp:hover h2{
    opacity: 1;
}

.banner .wp a{
    color: var(--white-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.banner .wp img{
    width: 30px;
    height: 30px;
    position: relative;
    overflow: hidden;
}

.banner .wp h2{
   font-size: clamp(0.6875rem, 0.6296rem + 0.3086vw, 1rem);
    opacity: 0.6;
    transition: all ease 0.5s;
}

.banner .wp h2:hover{
    transition: all ease 0.5s;
    transform: scale(1.05);
}

.banner .banner_bottom .booking{
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    color: var(--white-color);
}

.banner .banner_bottom .booking a{
    color: var(--white-color);
    text-decoration: none;
}

.banner .banner_bottom .booking h2{
   font-size: clamp(0.6875rem, 0.6296rem + 0.3086vw, 1rem);
}

.banner .banner_bottom .booking .line{
    width: 100%;
    height: 1px;
    border: 1px solid var(--gold-color);
    position: relative;
}

.banner .banner_bottom .booking .line::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    opacity: 0;
    border: 1px solid var(--white-color);
    transition: all ease 0.5s;
}

.banner .banner_bottom .booking:hover .line::before{
    width: 100%;
    opacity: 1;
}

.banner .banner_bottom .social_media{
    display: flex;
    align-items: center;
    gap: 2rem;
}

.banner .banner_bottom .social_media h2{
   font-size: clamp(0.6875rem, 0.6296rem + 0.3086vw, 1rem);
    color: var(--white-color);
    letter-spacing: 5px;
    opacity: 0.6;
    transition: all ease 0.5s;
}

.banner .banner_bottom .social_media h2:hover{
    opacity: 1;
    transition: all ease 0.5s;
    transform: scale(1.05);
}

.banner .banner_bottom .social_media h2 a{
    color: var(--white-color);
    text-decoration: none;
}



.banner .moving_text{
    position: absolute;
    top: 55%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    z-index: 3;
}

.banner .moving_text h1{
    font-size: clamp(18.75rem, 16.4352rem + 12.3457vw, 31.25rem);
    font-weight: 600;
    color: var(--white-color);
    animation: slideText 50s linear infinite;
    letter-spacing: 85px;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes slideText {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.main_line{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    top: -100%;
    left: 0;
    animation: forwards ease-in-out 2s slideDown 2.5s;
}


.main_line .linee{
    width: 1px;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 100px;
}

.main_line .linee .big_line{
    height: 90%;
    width: 1px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0.1)
    );
}

.main_line .linee .small_line{
    width: 1px;
    height: 10%;
    background: linear-gradient(
        to top,
        rgba(255, 255, 255, 0.5),
        rgba(255, 255, 255, 0.2)
    );
}

@keyframes slideDown {
    0% {
        top: -100%;
    }
    100%{
        top: 0;
    }
}



.main_line2{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    top: -100%;
    left: 0;
    animation: forwards ease-in-out 2s slideDown2;
}


.main_line2 .linee{
    width: 1px;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 100px;
}

.main_line2 .linee .big_line{
    height: 90%;
    width: 1px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0.1)
    );
}

.main_line2 .linee .small_line{
    width: 1px;
    height: 10%;
    background: linear-gradient(
        to top,
        rgba(255, 255, 255, 0.5),
        rgba(255, 255, 255, 0.2)
    );
}

@keyframes slideDown2 {
    0% {
        top: -100%;
    }
    100%{
        top: 0;
    }
}


/*!------------------------------------------ page top ------------------------------------------------------- */

.page_top{
    width: 100%;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px;
}

.page_top .child_page_top{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: center;
    background: url(../images/page_top2.jpg) center no-repeat;
    background-size: cover;
    border-radius: 40px;
    padding-bottom: 5%;
}

.page_top .child_page_top::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black-color);
    opacity: 0.7;
    border-radius: 40px;
}

.page_top .child_page_top::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/rectangle_white.png) center no-repeat;
    background-size: cover;
    border-radius: 40px;
    transform: rotate(180deg);
    opacity: 0.1;
}

.page_top h1{
    color: var(--white-color);
    position: relative;
    font-size: clamp(1.875rem, 1.7593rem + 0.6173vw, 2.5rem);
}


/*------------------- same title -------------------- */

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

.same_title h1{
    font-size: clamp(5.9375rem, 5.3009rem + 3.3951vw, 9.375rem);
    letter-spacing: 30px;
    color: var(--light-grey-color);
    font-weight: 700;
    position: relative;
    z-index: 1;
    color: transparent;
    -webkit-text-stroke: 1px white;
    font-size: 600%;
}

.same_title h2{
    font-size: clamp(1.5625rem, 1.2731rem + 1.5432vw, 3.125rem);
    font-weight: 600;
    margin-top: -35px;
    position: relative;
    z-index: 2;
    color: var(--white-color);
    font-size: 300%;
}


/*!-------------------------------- contentt ---------------------------------------- */

.content{
    padding: 100px 250px;
}


.white_content{
    background-color: var(--bej2-color);
    position: relative;
}

.black_content{
    background-color: var(--grey-color);
    position: relative;
}

.content2{
    padding: 50px 250px;
}

.content_services{
    padding: 100px 0 !important;
}

/*!----------------------------------------- home -------------------------------------------------- */

.content_experience{
    background-color: var(--bej2-color);
    position: relative;
    overflow: hidden;
}

.experience{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 100px;
}

.same_title2{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
}

.same_title2 i{
    color: var(--gold-color);
    font-size: 2rem;
}

.same_title2 h1{
    font-size: clamp(1.875rem, 1.7593rem + 0.6173vw, 2.5rem);
}

.same_title2 span{
    color: var(--gold-color);
}


.experience .main_box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
}

.experience .main_box .box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    height: 260px;
    width: 25%;
}

.experience .main_box .box h2{
    font-size: clamp(1.25rem, 1.1921rem + 0.3086vw, 1.5625rem);
    font-weight: 500;
    text-align: center;
}

.experience .main_box .box p{
    text-align: center;
    line-height: 25px;
}

.experience .main_box .box img{
    transition: all ease 0.5s;
    filter: brightness(0);
}

.content_experience .image1{
    position: absolute;
    left: 0;
    top: 30%;
    width: 15%;
    height: 100%;
    overflow: hidden;
}

@keyframes float {
    0% {
        transform: rotate(-30deg) translate(0, 0);
    }
    25% {
        transform: rotate(-30deg) translate(10px, -10px);
    }
    50% {
        transform: rotate(-30deg) translate(-10px, 10px);
    }
    75% {
        transform: rotate(-30deg) translate(10px, 10px);
    }
    100% {
        transform: rotate(-30deg) translate(0, 0);
    }
}

.content_experience .image1 img{
    width: 100%;
    height: 100%;
}

.content_experience .image2{
    position: absolute;
    right: 0;
    top: 0;
    width: 15%;
    height: 100%;
    overflow: hidden;
    animation: float 4s ease-in-out infinite;
}

.content_experience .image2 img{
    width: 100%;
    height: 100%;
}

.experience .main_box .box:hover img{
    transform: scale(1.2);
}

/*------------------------- home location --------------------- */

.home .home_content_location{
    background-color: var(--grey-color);
    position: relative;
    overflow: hidden;
}

/* .home .home_content_location::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: url(../images/bottom_img.png) center no-repeat;
    background-size: cover;
    z-index: 2;
} */

.home .home_location{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 70px;
}

.home .home_location .title{
    color: var(--white-color);
}

.home .home_location .line{
    width: 100%;
    height: 1px;
}

.home .home_location .main_box{
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6rem;
}

.home .home_location .main_box .main_image{
    width: 40%;
    position: relative;
    height: 450px;
}

.home .home_location .main_box .main_image .image1{
    position: absolute;
    width: 75%;
    height: 360px;
    left: 0;
    bottom: 0;
    overflow: hidden;
}

.home .home_location .main_box .main_image .image1 img{
    width: 100%;
    height: 100%;
}

.home .home_location .main_box .main_image .image2{
    width: 85%;
    position: absolute;
    right: 0;
    top: 0;
    height: 380px;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.5);
}

.home .home_location .main_box .main_image .image2::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black-color);
    opacity: 0.2;
}

.home .home_location .main_box .main_image .image2 img{
    width: 100%;
    height: 100%;
}

.home .home_location .main_box .text{
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 5rem;
    padding-right: 200px;
}

.home .home_location .main_box .text .main{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.home .home_location .main_box .text .main .box{
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.home .home_location .main_box .text .box h2{
    font-weight: 400;
    color: var(--white-color);
    font-size: 20px;
    opacity: 0.8;
}

.home .home_location .main_box .text .box h2:nth-child(1){
    color: var(--gold-color);
}

.home .home_location .main_box .text p{
    color: var(--gold-color);
    opacity: 0.8;
    font-size: 20px;
}

.home .home_location .main_box .text p a{
    color: var(--gold-color);
}

.fast_a{
    width: 200px;
    height: 50px;
    background-color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-color);
    text-decoration: none;
    font-weight: 700;
    transition: all ease 0.5s;
}

.fast_a:hover{
    background-color: transparent;
    color: var(--white-color);
    border: 1px solid var(--white-color);
}

.home .home_content_location .bg_image1{
    position: absolute;
    top: 20%;
    right: -3%;
    width: 200px;
    height: 300px;
    overflow: hidden;
}

.home .home_content_location .bg_image1 img{
    width: 100%;
    height: 100%;
}

.home .home_content_location .bg_image2{
    position: absolute;
    top: 5%;
    right: 10%;
    width: 270px;
    height: 200px;
    overflow: hidden;
    filter: drop-shadow(10px 7px 10px white);
}

.home .home_content_location .bg_image2 img{
    width: 100%;
    height: 100%;
    
}

.home .home_content_location .bg_image3{
    position: absolute;
    top: 65%;
    right: 10%;
    width: 150px;
    height: 300px;
    overflow: hidden;
}

.home .home_content_location .bg_image3 img{
    width: 100%;
    height: 100%;
}

.home .story{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 100px;
}

.home .story .main_box{
    display: flex;
    align-items: start !important;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.home .story .text{
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 66%;
}

.home .story .text .line{
    width: 150px;
    height: 3px;
    background-color: var(--gold-color);
}

.home .story .text p{
    font-size: clamp(1.25rem, 1.1921rem + 0.3086vw, 1.5625rem);
    opacity: 0.7;
    line-height: 50px;
}

.home .story .image{
    width: 35%;
    height: 420px;
    position: relative;
    overflow: hidden;
}

.home .story .image::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black-color);
    opacity: 0.2;
}

.home .story .image img{
    width: 100%;
    height: 100%;
}

.home .story .bg_image1{
    position: absolute;
    top: 50%;
    left: 0;
}

.home .story img{
    width: 100%;
    height: 100%;
}

.home .story .bg_image2{
    position: absolute;
    top: -5%;
    right: 20%;
}

.home .story .bg_image3{
    position: absolute;
    top: 20%;
    right: 0;
}

.home .story .bg_image4{
    position: absolute;
    bottom: -5%;
    left: 50%;
    animation: float 4s ease-in-out infinite;
}

.home .black_content::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 70px;
    z-index: 2;
    background: url(../images/bottom_img.png) center no-repeat;
    background-size: cover;
}

.home .black_content .same_title2{
    color: var(--white-color);
}

.home .brand{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 100px;
    padding-bottom: 4rem;
}

.home .brands{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 0 200px;
}

.home .brands .image{
    width: 100%;
    height: 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home .brands .image img{
    width: 50%;
    height: 100%;
}

.home .queote{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.home .queote h2{
    width: 55%;
    text-align: center;
    line-height: 50px;
    font-family: "Dancing Script", serif;
    font-size: clamp(1.875rem, 1.7593rem + 0.6173vw, 2.5rem);
    font-weight: 400;
    transition: all ease 0.5s;
}

.home .queote img{
    width: 200px;
    transition: all ease 0.5s;
}

.bg_text{
    position: absolute;
    bottom: 0;
    left: 2%;
    opacity: 0.2;
}

.bg_text_up{
    top: 5%;
    opacity: 0.15;
}

.bg_text_up2{
    top: -7%;
}

.about .bg_text_up{
    top: 2%;
    left: 0;
}

.gallery .bg_text_up{
    top: 12%;
}


.bg_text h1{
    color: var(--gold-color);
    font-size: 15rem;
    font-family: 'Quentin', sans-serif;
    z-index: 0;
    font-weight: 300;
}

.person{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 100px;
    padding: 0 150px;
    z-index: 1;
    position: relative;
}

.person .main_box{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
}

.person .main_box .berber_child{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.person .main_box .berber_child:nth-child(2){
    display: none;
}

.person .main_box .box1{
    width: 50%;
    display: flex;
    align-items: end;
    position: relative;
    gap: 3rem;
}

.person .main_box .box1 .image{
    width: 60%;
    height: 350px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.5);
    border-radius: 7px;
}

/* .person .main_box .box1 .image .more_about{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black-color);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease 0.5s;
}

.person .main_box .box1 .image .more_about a{
    background-color: var(--white-color);
    padding: 1rem;
    border-radius: 5px;
    position: relative;
    color: var(--black-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-weight: 600;
}

.person .main_box .box1 .image:hover .more_about{
    opacity: 0.8;
} */

.person .main_box .box1 .image img{
    width: 100%;
    height: 100%;
}

.person .main_box .box1 h1{
    font-weight: 600;
    color: var(--gold-color);
    font-size: clamp(0.9375rem, 0.8796rem + 0.3086vw, 1.25rem);
    margin-top: 2rem;
}

.person .main_box .box1 h2{
    color: var(--white-color);
    font-weight: 200;
    margin-top: 0.5rem;
}

.person .main_box .box2{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 5rem;
    position: relative;
    justify-content: start;
}

.person .main_box .box2 .main_child{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--white-color);
}

.person .box2 .main_child .child{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.person .box2 .main_child .child i{
    color: var(--gold-color);
    font-size: 1.7rem;
}

.person .box2 .main_child .child h3{
    font-weight: 400;
    text-transform: uppercase;
}

.person .box2 p{
    color: var(--gold-color);
    opacity: 1;
    font-size: 20px;
}

.person .box2 p a{
    color: var(--white-color);
}

.person .social{
    position: absolute;
    bottom: 0;
    right: 0;
    color: var(--white-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.person .social a{
    color: var(--white-color);
}

.person .social i{
    font-size: 1.5rem;
    transition: all ease 0.5s;
    opacity: 0.7;
}

.person .social i:hover{
    transition: all ease 0.5s;
    opacity: 1;
    transform: translateY(-6px);
}

.person_bg{
    position: absolute;
    left: 0;
    top: 10%;
}

.person_bg2{
    position: absolute;
    right: 0;
    top: 10%;
}

/*!--------------------------------------- person about ------------------------------------------ */

.person_about{
    display: flex;
    flex-direction: column;
    border: 1px solid red;
    gap: 100px;
    position: relative;
}

.person_about .box1 {
    border: 1px solid blue;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.person_about .box1 .lines{
    display: flex;
    gap: 0.5rem;
    align-items: center;
    color: var(--white-color);
}

.person_about .box1 .lines .line{
    width: 50px;
    height: 1px;
    background-color: var(--gold-color);
}

.person_about .box1 .lines h2{
    font-size: clamp(0.625rem, 0.5556rem + 0.3704vw, 1rem);
    color: var(--gold-color);
}

.person_about .box1 h1{
    color: var(--white-color);
}

.person_about .box2{
    border: 1px solid green;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white-color);
}


/*!---------------------------------------------- aboutt --------------------------------------------------- */

.about .main_box1{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
}

.about .main_box1 .text{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 60%;
}

.about .main_box1 .text .small_title{
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about .main_box1 .text .small_title .line{
    width: 50px;
    height: 2px;
    background-color: var(--gold-color);
}

.about .main_box1 .text .small_title h3{
    color: var(--gold-color);
}

.about .main_box1 .text h2{
    color: var(--white-color);
    font-size: clamp(2.1875rem, 2.0139rem + 0.9259vw, 3.125rem);
}

.about .main_box1 .text p{
    color: var(--white-color);
    line-height: 30px;
}

.about .main_box1 .image{
    width: 40%;
    height: 600px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.about .main_box1 .image img{
    width: 100%;
    height: 100%;
    transition: all ease 0.5s;
}

.about .main_box1 .image:hover img{
    transform: scale(1.1);
}

.about .same_title2 h1{
    color: var(--white-color);
}

.about .sss{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 100px;
}

.about .sss .main_box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

.about .sss .main_box .box{
    width: 70%;
    border: 1px solid var(--grey-color2);
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--white-color);
    cursor: pointer !important;
    overflow: hidden;
    height: 70px;
    transition: all ease 0.5s;
    border-radius: 5px;
}

.about .sss .main_box .box:hover{
    border: 1px solid var(--white-color);
}

.about .sss .main_box .box .first{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about .sss .main_box .box .first .circle{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--gold-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about .sss .main_box .circle .line{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 2px;
    background-color: var(--gold-color);
}

.about .sss .main_box .circle .line:nth-child(2){
    position: absolute;
    top: 50%;
    left: 21%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 2px;
    background-color: var(--gold-color);
    transform: rotate(90deg);
    transition: all ease 0.5s;
}

.about .sss .main_box .box h2{
    color: var(--white-color);
}

.about .sss .main_box .box p{
    line-height: 25px;
    font-weight: 300;
    opacity: 0.8;
}

.about .services{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 100px;
}

.about .services .main_box{
   display: grid;
   grid-template-columns: 1fr 1fr 1fr;
   gap: 0;
   width: 100%;
}

.about .services .main_box .box{
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    height: 450px;
    position: relative;
    overflow: hidden;
    transition: all ease 0.5s;
}

.about .services .main_box .box::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/rectangle_black.png) center center no-repeat;
    background-size: cover;
    z-index: 0;
    opacity: 0.8;
    transition: all ease 0.5s;
}

.about .services .main_box .box:hover::before{
    opacity: 0;
}

.about .services .main_box .box:hover img{
    transform: scale(1.1);
}

.about .services .main_box .box .image{
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    z-index: -1;
    transition: all ease 0.5s;
}


.about .services .main_box .box .image img{
    width: 100%;
    height: 100%;
    transition: all ease 0.5s;
}

.about .services .main_box .box h2{
    color: var(--white-color);
    text-align: center;
    position: relative;
    z-index: 2;
}



/*!----------------------------------------------- gallery -------------------------------------- */

.gallery .gallery_btns{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    flex-direction: column;
}

.gallery .gallery_btns .main_btns{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.gallery .gallery_btns .main_btns button{
    width: 200px;
    height: 60px;
    border-radius: 30px;
    border: 0;
    background-color: var(--grey-color);
    color: var(--white-color);
    font-weight: 600;
    transition: all ease 0.5s;
    font-size: 18px;
    cursor: pointer;
    border: 2px solid var(--gold-color);
}

.gallery .gallery_btns .main_btns button:hover{
    background-color: var(--gold-color) !important;
}

.gallery .main_image{
    margin-top: -150px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    position: relative;
}

.gallery .main_image .image{
    position: relative;
    width: 100%;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.gallery .main_image .image::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black-color);
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
}

.gallery .main_image .image::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black-color);
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

.gallery .main_image .image img{
    width: 100%;
    height: 100%;
    transition: all ease 0.5s;
}

.gallery .main_image .image:hover::before{
    opacity: 0;
}

.gallery .main_image .image i{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: var(--white-color);
    z-index: 2;
    transition: all ease 1s;
}

.gallery .main_image .image .bi-search{
    left: -100%;
}

.gallery .main_image .image:hover .bi-image{
    transform: scale(0.01);
}

.gallery .main_image .image:hover .bi-search{
    left: 50%;
}

.gallery .main_video{
    margin-top: -150px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    position: relative;
}

.gallery .main_video .image{
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.gallery .main_video .image::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black-color);
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
}

.gallery .main_video .image::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black-color);
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

.gallery .main_video .image img{
    width: 100%;
    height: 100%;
    transition: all ease 0.5s;
}

.gallery .main_video .image:hover::before{
    opacity: 0;
}

.gallery .main_video .image i{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: var(--white-color);
    z-index: 2;
    transition: all ease 1s;
}

.gallery .main_video .image .bi-play-circle{
    left: -100%;
}

.gallery .main_video .image:hover .bi-file-earmark-play{
    transform: scale(0.01);
}

.gallery .main_video .image:hover .bi-play-circle{
    left: 50%;
}

.gallery .gallery_btns .main_btns button.active{
    background-color: var(--gold-color);
    color: var(--white-color);
}

.gallery .videos{
    display: none;
}


/*!------------------------------------------------- price ------------------------------------ */

.price{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 7rem;
    padding-left: 100px;
    padding-right: 100px;
    position: relative;
}

.price .big_image{
    width: 50%;
    height: 500px;
    position: relative;
}

.price .big_image .image1{
    width: 70%;
    height: 320px;
    position: relative;
    overflow: hidden;
    padding: 0.3rem;
    background-color: var(--white-color);
}

.price .big_image .image1::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black-color);
    opacity: 0.2;
    pointer-events: none;
}

.price .big_image .image1 img{
    width: 100%;
    height: 100%;
}

.price .big_image .image2{
    width: 70%;
    height: 300px;
    position: relative;
    margin-top: -150px;
    margin-left: 30%;
    overflow: hidden;
    padding: 0.3rem;
    background-color: var(--white-color);
}

.price .big_image .image2 img{
    width: 100%;
    height: 100%;
}

.price .text{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price .text .title{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price .text .title h2:nth-child(1){
    color: var(--gold-color);
    font-size: clamp(1.875rem, 1.7593rem + 0.6173vw, 2.5rem);
}

.price .text .title h2:nth-child(2){
    font-size: clamp(2.5rem, 2.2685rem + 1.2346vw, 3.75rem);
    color: var(--white-color);
}

.price ul{
    width: 100%;
    position: relative;
    color: var(--white-color);
    list-style-type: none;
    display: flex;
    flex-direction: column;
}

.price ul li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--grey-color2);
    padding: 1.5rem 0.5rem;
}

.image_price{
    position: absolute;
    top: -2%;
    left: 25%;
    overflow: hidden;
    animation: float5 5s ease-in-out infinite;
}

.image_price img{
    width: 50%;
    height: 100%;
}

.image_price2{
    position: absolute;
    top: 20%;
    right: 3%;
    overflow: hidden;
    animation: float5 3s ease-in-out infinite;
}

.image_price2 img{
    width: 200px;
    height: 400px;
}

.image_price3{
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    height: 100%;
}

.image_price3 img{
    width: 100%;
    height: 100%;
}

@keyframes float5 {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px); /* Yukarı çıkış mesafesi */
    }
    100% {
      transform: translateY(0);
    }
  }





/*! -----------------------------------------------------  contact  ------------------------------------------------- */

.contact .contact_box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.contact .contact_box .box{
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0.5rem;
    padding-bottom: 1rem;
    height: 250px;
}

.contact .contact_box .box h1{
    color: var(--white-color);
    font-size: clamp(1.375rem, 1.2824rem + 0.4938vw, 1.875rem);
    font-weight: 400;
    margin-top: 40px;
}

.contact .contact_box .box a{
    color: var(--white-color);
    text-decoration: none;
    text-align: center;
    margin-top: 0.8rem;
}

.contact .map{
    width: 100%;
    height: 600px;
    margin-bottom: 170px;
    position: relative;
}

.contact .map::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black-color);
    opacity: 0.6;
    transition: all ease .0.5s;
}

.contact .map:hover::before{
    display: none;
}

.contact .cont_social{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 170px;
}

.contact .cont_social .box{
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 20px;
}

.contact .cont_social .box i{
    color: var(--white-color);
    font-size: 40px;
    font-weight: 500;
    transition: all ease 0.5s;
}

.contact .cont_social .box::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 2px solid var(--white-color);
    transition: all ease 0.5s;
}

.contact .cont_social .box:hover::before{
    transform: scale(0);
}

.contact .cont_social .box:hover i{
    transform: scale(1.4);
}

.contact .person .same_title2 h1{
    color: var(--white-color);
}






/*! ---------------------------------------- foooter -------------------------------------------- */

.footer{
    position: relative;
    margin-top: 50px;
}

.footer .content{
    padding-bottom: 0;
}

.footer .footer1{
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    position: relative;
}

.footer .footer1 .box{
    width: 100%;
    position: relative;
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 385px;
}

.footer .footer1 .box:nth-child(1){
    border-top: 1px solid rgba(112, 112, 112, 0.2);
    border-right: 1px solid rgba(112, 112, 112, 0.2);
    padding-left: 0;
    width: 70%;
}

.footer .footer1 .box:nth-child(2){
    border-top: 1px solid rgba(112, 112, 112, 0.2);
    border-right: 1px solid rgba(112, 112, 112, 0.2);
}

.footer .footer1 .box:nth-child(3){
    border-top: 1px solid rgba(112, 112, 112, 0.2);
    margin: 0;
    padding-right: 0;
}

.footer .footer1 .box .logo{
    width: 70px;
    height: 70px;
    position: relative;
    overflow: hidden;
}

.footer .footer1 .box .logo img{
    width: 100%;
    height: 100%;
}

.footer .footer1 .box p{
    font-size: clamp(0.625rem, 0.5787rem + 0.2469vw, 0.875rem);
    opacity: 0.6;
    line-height: 25px;
}

.footer .footer1 .form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer .footer1 .form h2{
    font-size: clamp(0.8125rem, 0.7546rem + 0.3086vw, 1.125rem);
    font-weight: 600;
}

.footer .footer1 .form form{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .footer1 .form form input{
    width: 75%;
    height: 45px;
    border-bottom-left-radius: 30px;
    border-top-left-radius: 30px;
    border: none;
    background-color: var(--grey2-color);
    padding: 1rem;
    outline: none;
}

.footer .footer1 .form form button{
    width: 25%;
    height: 45px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    border: none;
    background-color: var(--green-color);
    color: var(--white-color);
}

.footer .footer1 .box h2{
    font-size: clamp(0.8125rem, 0.7546rem + 0.3086vw, 1.125rem);
    font-weight: 600;
}

.footer .footer1 .box .address{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer .footer1 .box .address a{
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--black-color);
}

.footer .footer1 .box .address a i{
    color: var(--orange-color);
    font-size: 1.2rem;
}

.footer .footer1 .box .social_media{
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
    margin-left: 1.5rem;
}

.footer .footer1 .box .social_media i{
    color: var(--black-color);
    font-size: 1.2rem;
}

.footer .footer1 .box .child_menu{
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.footer .footer1 .box .menu_prod{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer .footer1 .box .child_menu .menu_prod h3{
    font-size: clamp(0.8125rem, 0.7546rem + 0.3086vw, 1.125rem);
    font-weight: 600;
}

.footer .footer1 .box .menu_prod ul{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer1 .box .menu_prod ul a{
    color: var(--black-color);
    text-decoration: none;
}

/* .footer .footer1 .box .footer_menu{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
}

.footer .footer1 .box .footer_menu a{
    color: var(--black-color);
    text-decoration: none;
} */

.footer .footer2{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    background-color: var(--light-grey-color);
    padding: 60px 280px;
}

.footer .footer2 p{
    font-size: clamp(0.5625rem, 0.5046rem + 0.3086vw, 0.875rem);
}

.footer .footer2 .box{
    display: flex;
    align-items: center;
    justify-content: end;
    width: 100%;
}

.footer .footer2 .box .child{
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer .footer2 .box .child1{
    display: none;
}

.footer .footer2 .box .child a{
    color: var(--black-color);
    text-decoration: none;
    font-size: clamp(0.5625rem, 0.5046rem + 0.3086vw, 0.875rem);
}

.footer .footer2 .box .child .logo{
    width: 80px;
    height: 80px;
    position: relative;
    overflow: hidden;
}

.footer .footer2 .box .child .logo img{
    width: 100%;
    height: 100%;
}

.footer .footer2 .box .child .support_a{
    color: var(--white-color);
}

.footer .footer2 .box .child .support{
    background-color: var(--gold-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 35px;
    gap: 1rem;
}

.footer .footer2 .box .child .support .icon{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--light-orange-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .footer2 .box .child .support .icon i{
    font-size: 1.2rem;
}

.footer .footer2 .box .child .support p{
    margin: 0;
}

.footer .footer2 .box .child .support p:nth-child(1){
    opacity: 0.7;
}

.footer .footer2 .box .child .support p:nth-child(2){
    font-size: clamp(1.1875rem, 1.1296rem + 0.3086vw, 1.5rem);
}

.footer .footer2 .line{
    width: 100%;
    height: 1px;
    border: 1px solid rgba(112, 112, 112, 0.1);
}

.footer .footer2 .box .software{
    color: var(--black-color);
    text-decoration: none;
    font-weight: 900;
}
.footer .footer2 .box2{
    justify-content: space-between;
}

.footer_black .footer1{
    background-color: var(--grey-color);
    color: var(--white-color);
}

.footer_black .footer2{
    background-color: var(--grey-color);
    color: var(--white-color);
}

.footer_black .footer1 .box .address a{
    color: var(--white-color);
}

.footer_black .footer1 .box .menu_prod ul a{
    color: var(--white-color);
}

.footer_black .footer2 .box .software{
    color: var(--white-color);
}

.footer_black .footer1 .box:nth-child(1){
    border-top: 1px solid var(--white-color);
    border-right: 1px solid var(--white-color);
}


.footer_black .footer1 .box:nth-child(2){
    border-top: 1px solid var(--white-color);
    border-right: 1px solid var(--white-color);
}


.footer_black .footer1 .box:nth-child(3){
    border-top: 1px solid var(--white-color);
}

.footer_black .social_media i{
    color: var(--white-color) !important;
}



/*--------------------------------------- media query -------------------------------------- */

@media(max-width:1680px){
    .content2{
        padding: 50px 200px;
    }

    .contact_experience{
        padding: 100px 140px !important;
    }

    .person{
        gap: 50px;
    }

    .person .main_box .box1 .image{
        height: 360px;
        width: 75%;
    }

    .content{
        padding: 100px 200px;
    }

    .footer{
        margin-top: 0;
    }

    .footer .footer2{
        padding: 50px 200px;
    }



    .content_price{
        padding-left: 0;
    }





    .about .sss .main_box .box{
        width: 90%;
    }

    .about .sss .main_box .box p{
        width: 80%;
    }

    .about .services .main_box .box{
        height: 400px;
    }

    .about .main_box1 .image{
        height: 550px;
    }



    .home .brands{
        padding: 0 75px;
    }

    .banner .text h1{
        font-size: 300%;
    }

    .banner .moving_text h1{
        font-size: 2000%;
    }

    .contact .person .same_title2 h1{
        text-align: center;
    }

    .gallery .main_image .image{
        height: 475px;
    }


}


@media(max-width:1500px){


    .person{
        padding: 0 100px;
    }

    .gallery .main_image .image{
        height: 450px;
    }

    .home .story .image{
        width: 42%;
        height: 350px;
    }

    .bg_text h1{
        font-size: 10rem;
    }

    .person{
        padding: 0 0;
    }

    .gallery .bg_text_up{
        top: 15%;
    }

}


@media(max-width:1440px){

    .header{
        padding: 40px 80px;
    }

    .page_top .child_page_top{
        padding-bottom: 8%;
    }

    .content2{
        padding: 50px 150px;
    }

    .contact_experience{
        padding: 100px 80px;
    }

    .artist_content{
        padding: 50px 70px;
    }

    .content_price{
        padding-left: 0;
    }

    .price .big_image .image1{
        width: 50%;
        height: 200px;
    }

    .price .text .title h2:nth-child(1){
        font-size: 150%;
    }

    .price .text .title h2:nth-child(2){
        font-size: 200%;
    }

    .price ul li{
        padding: 1.2rem 0.5rem;
    }

    .image_price2 img{
        width: 150px;
        height: 310px;
    }

    .same_title h1{
        font-size: 450%;
    }

    .same_title h2{
        font-size: 250%;
    }

    .content{
        padding: 100px 150px;
    }

    .gallery .gallery_btns .main_btns button{
        width: 170px;
        font-size: 14px;
    }

    .footer .footer2 .box .child .support p:nth-child(2){
        font-size: 150%;
    }

    .footer .footer2 .box .child .support{
        gap: 0.2rem;
        padding: 0.2rem 0.5rem;
    }

    .footer .footer2 .box .child .logo{
        width: 60px;
        height: 60px;
    }

    .footer .footer2{
        padding: 50px 150px;
    }

    .footer{
        margin-top: -50px;
    }

    .about .main_box1{
        gap: 3rem;
    }
    .about .main_box1 .image{
        height: 500px;
    }

    .same_title2 h1{
        text-align: center;
    }

    .person{
        padding: 0 100px;
    }

    .about .services .main_box .box{
        height: 350px;
    }

    .home .home_location .main_box .text{
        padding-right: 150px;
    }

    .home .home_location .main_box .main_image .image2{
        height: 350px;
    }

    .home .home_content_location .bg_image1{
        top: 28%;
        width: 150px;
        height: 225px;
    }

    .home .home_content_location .bg_image3{
        width: 125px;
        height: 225px;
    }

    .home .story .image{
        height: 350px;
    }

    .home .story .bg_image1{
        width: 15%;
    }

    .footer .footer2{
        padding: 25px 100px;
    }

    .content{
        overflow-x: hidden;
    }

    .person{
        padding: 0 0;
    }

}

@media(max-width:1200px){

    .bg_text_up2{
        top: 0;
    }

    .person .main_box .box1 .image{
        height: 300px;
    }

    .gallery .bg_text{
        bottom: auto;
    }

    .person .social{
        display: none;
    }

    header{
        padding: 30px 60px;
    }

    .header .navbar .address a{
        font-size: 100%;
    }

    .banner .text{
        gap: 1.5rem;
    }

    .content{
        padding: 100px 100px;
    }

    .experience .main_box{
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .experience .main_box .box{
        width: 100%;
    }

    .experience .main_box .box p{
        width: 80%;
    }

    .experience{
        gap: 80px;
    }

    .content_experience .image1{
        height: 55%;
    }

    .content_experience .image2{
        height: 35%;
    }

    .home .home_content_location .bg_image1{
        display: none;
    }

    .home .home_location{
        gap: 55px;
    }

    .home .home_location .main_box .main_image .image2{
        height: 300px;
    }

    .home .home_location .main_box .main_image .image1{
        width: 85%;
        height: 300px;
    }

    .home .home_location .main_box .main_image .image1{
        bottom: 15%;
    }

    .home .home_location{
        overflow: hidden;
    }

    .home .home_location .main_box .text{
        padding-right: 20px;
    }

    .home .home_content_location .bg_image3{
        display: none;
    }

    .home .story{
        gap: 80px;
    }

    .home .story .main_box{
        align-items: center !important;
    }

    .home .story .text{
        width: 60%;
    }

    .home .story .image{
        width: 40%;
    }

    .home .brands{
        padding: 0 40px;
    }

    .home .queote{
        gap: 2rem;
    }

    .person{
        padding: 0 40px;
    }

    .footer .footer1 .box p{
        font-size: 100%;
    }

    .footer .footer2{
        gap: 30px;
    }

    .content2{
        padding: 50px 100px;
    }

    .gallery .main_image{
        grid-template-columns: 1fr 1fr;
    }

    .gallery .main_video{
        grid-template-columns: 1fr 1fr;
    }

    .about .main_box1 .image{
        height: 400px;
    }

    .about .services .main_box .box{
        height: 300px;
    }

    .price{
        padding-right: 0;
        padding-left: 0;
    }

    .image_price2{
        bottom: 3%;
        left: 5%;
        top: auto;
    }

    .price .big_image .image2{
        height: 250px;
    }

    .home .story .bg_image4{
        display: none;
    }

}

@media(max-width:992px){

    .person .main_box{
        gap: 3rem !important;
    }

    .person .main_box .box1{
        align-items: start;
    }

    .person .main_box{
        align-items: start;
    }

    .bg_text h1{
        font-size: 7rem;
    }

    .home .home_location .main_box .main_image{
        width: 33%;
    }

    .header{
        padding: 30px 45px;
    }

    .content{
        padding: 100px 80px;
    }

    .footer_black .footer1 .box:nth-child(1){
        display: none !important;
    }

    .footer .footer1 .box:nth-child(1){
        display: none;
    }

    .footer .footer2{
        padding: 25px 80px;
    }

    .about .main_box1{
        flex-direction: column;
    }

    .about .main_box1 .text{
        width: 100%;
    }

    .about .main_box1 .image{
        display: none;
    }

    .person{
        padding: 0;
    }

    .person .main_box{
        gap: 6rem;
    }

    .person .main_box .box1 .image{
        height: 325px;
    }

    .line{
        width: 100%;
        overflow: hidden;
    }

    .about .sss .main_box .box .first h2{
        font-size: 100%;
    }

    .about .services .main_box .box{
        height: 230px;
    }

    .about .services .main_box .box h2{
        font-size: 125%;
    }

    .footer .footer1 .box{
        height: 280px;
        padding: 30px;
    }

    .page_top .child_page_top{
        padding-bottom: 13%;
    }

    .contact .contact_box{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .contact .contact_box .box{
        width: 100%;
    }

    .contact_experience{
        padding: 70px 80px !important;
    }

    .experience .main_box{
        row-gap: 3rem;
    }

    .contact .contact_box .box{
        padding: 0;
    }

    .banner .text h1{
        font-size: 200%;
    }

    .banner .banner_bottom{
        padding: 100px 20px;
    }

    .banner .text{
        gap: 1rem;
    }

    .home .home_content_location .bg_image2{
        right: 2%;
    }

    .home .home_content_location{
        padding: 100px 25px;
    }

    .home .home_location .main_box{
        gap: 2rem;
    }

    .home .home_location .main_box{
        align-items: start;
        justify-content: space-between;
    }

    .home .home_location .main_box .main_image{
        width: 30%;
    }

    .home .home_location .main_box .main_image .image2{
        height: 240px;
    }

    .home .home_location .main_box .main_image .image1{
        height: 225px;
        bottom: 30%;
    }

    .home .story .main_box{
        flex-direction: column;
    }

    .home .story .text{
        width: 100%;
    }

    .home .story .text{
        gap: 1rem;
    }

    .home .story .image{
        width: 70%;
        height: 400px;
    }

    .home .brands{
        padding: 0;
    }

    .home .brands .image img{
        width: 70%;
    }

    .home .queote h2{
        width: 65%;
    }

    .price .big_image{
        display: none;
    }

    .price .text{
        width: 75%;
    }

    .price{
        justify-content: right;
    }

    .price .text .title{
        align-items: end;
    }

    .person .main_box .box1 .image{
        height: 275px;
    }

    .person .main_box .box1 h1{
        text-align: center;
    }

    .about .bg_text_up{
        top: 8%;
    }

    .person .main_box .berber_child{
        width: 75% !important;
    }

    .person .main_box .box1 .image{
        height: 325px;
    }
}

@media(max-width:768px){

    .gallery .content{
        padding: 80px 30px;
    }

    .gallery .main_image{
        grid-template-columns: 1fr 1fr !important;
    }

    .gallery .main_video{
        grid-template-columns: 1fr 1fr !important;
    }

    .price .text{
        width: 100%;
    }

    .image_price2 img{
        width: 70px;
        height: 140px;
    }

    .gallery .main_image .image{
        height: 475px;
    }

    .gallery .main_video .image{
        height: 500px;
    }

    .header{
        padding: 25px 40px;
    }

    .page_top{
        height: 350px;
    }

    .gallery .main_image{
        grid-template-columns: 1fr;
    }

    .gallery .main_video{
        grid-template-columns: 1fr;
    }

    footer .content{
        padding: 80px 30px;
    }

    .content{
        padding: 80px 60px;
    }

    .gallery .gallery_btns .main_btns{
        padding-bottom: 40px;
    }

    .person .main_box{
        flex-direction: column;
    }

    .person .main_box .box2{
        width: 100%;
    }

    .person .main_box .box1{
        width: 100%;
    }

    .another_content{
        overflow: hidden;
    }

    .person_bg2{
        top: 70%;
        right: -80px;
    }

    .about .sss .main_box .box{
        width: 100%;
    }

    .about .sss .main_box .box p{
        width: 90%;
    }

    .about .services .main_box .box{
        height: 250px;
    }

    .about .services .main_box .box h2{
        font-size: 100%;
    }

    .about .services .main_box{
        grid-template-columns: 1fr 1fr;
    }

    .footer .footer2{
        padding: 40px 25px;
    }

    .content2{
        padding: 50px 60px;
    }

    .header .navbar .address .first_a{
        display: none;
    }

    .banner .text h1{
        letter-spacing: 15px;
    }

    .banner .banner_bottom .social_media{
        flex-direction: column;
    }

    .banner .banner_bottom{
        padding: 100px 50px;
    }

   /*  .banner{
        height: 85vh;
    }
 */
    .home .home_location .main_box{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .home .home_location .main_box .main_image{
        width: 70%;
    }

    .home .home_location .main_box .main_image .image2{
        height: 300px;
    }

    .home .home_location .main_box .main_image .image1{
        height: 270px;
        bottom: 10%;
    }

    .home .home_location .main_box .text{
        width: 90%;
    }

    .home .story .image{
        height: 350px;
    }

    .home .queote h2{
        width: 80%;
    }

    .person .main_box{
        margin-bottom: 2rem;
    }

    .header .navbar .section3{
        display: none;
    }

    .story_content{
        overflow: hidden;
    }

    .header{
        padding: 25px;
    }

    .header .navbar .section2{
        justify-content: end !important;
    }

    .image_price3 img{
        width: 70%;
    }

    .big_menu ul{
        margin-top: -7rem;
    }

    .person .main_box .box2 .main_child{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .person .main_box .box1{
        align-items: center;
        justify-content: center;
    }

    .person .main_box .berber_child{
        width: 65%;
    }

    .about .bg_text_up{
        top: 2%;
    }

}

@media(max-width:500px){

    .home .home_content_location .bg_image2{
        width: 175px;
        height: 130px;
    }

    .content2{
        padding: 50px 35px;
    }

    .about .main_box1 .text{
        gap: 1rem;
    }

    .about .main_box1 .text h2{
        font-size: 150%;
    }

    .person .main_box .box1{
        width: 100%;
    }

    .person .main_box .box1{
        align-items: start;
    }

    .person .main_box .box1 .image{
        height: 240px;
    }

    .gallery .main_image{
        margin-top: -80px;
    }


    .gallery .main_video{
        margin-top: -80px;
    }

    .gallery .bg_text{
        display: none;
    }

    .bg_text h1{
        font-size: 5rem;
    }

    .person .main_box .berber_child{
        width: 100%;
    }

    .person .box2 .main_child .child h3{
        font-size: 0.8rem;
    }

    .about .sss .main_box .box{
        padding: 1rem;
    }

    .about .services .main_box{
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 1rem 3rem;
    }

    .about .services .main_box .box{
        border-radius: 15px;
    }

    .footer1 .box:nth-child(3){
        display: none;
    }

    .footer .footer1 .box:nth-child(2){
        border-right: none;
    }

    .footer .footer1 .box{
        height: 240px;
    }

    .page_top{
        height: 300px;
    }

    .same_title h1{
        font-size: 300%;
    }

    .same_title h2{
        font-size: 200%;
        margin-top: -20px;
    }

    .header .navbar .menu{
        gap: 0.5rem;
    }

    .gallery .main_image{
        grid-template-columns: 1fr 1fr;
    }

    .contact .contact_box{
        grid-template-columns: 1fr 1fr;
    }

    .experience .main_box{
        grid-template-columns: 1fr;
    }

    .banner .text h1{
        font-size: 150%;
        letter-spacing: 5px;
    }

    .banner .text{
        gap: 0.5rem;
    }

    .banner .text h2{
        font-size: 100%;
    }

    .banner .banner_bottom .section3{
        display: none;
    }

    .home .queote h2{
        width: 100%;
    }

    .home .brands{
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .home .brands .image img{
        width: 100%;
    }

    .home .story .image{
        width: 100%;
        height: 320px;
    }

    .home .home_location .main_box .text .main{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .home .home_location .main_box .main_image .image2{
        height: 260px;
    }

    .home .home_location .main_box .main_image .image1{
        height: 230px;
        bottom: 18%;
    }

    .home .home_location .main_box{
        gap: 1rem;
    }

    .home .home_location .main_box .text .box h2:nth-child(1){
        text-align: center;
    }

    .home .home_location .main_box .text .main{
        gap: 3rem;
    }

    .home .home_location .main_box .text .main .box{
        width: 100%;
        align-items: center;
    }

    .home .home_location .main_box .text p{
        text-align: center;
    }

    .fast_a{
        width: 100%;
    }

    .banner .banner_bottom section{
        width: 100%;
    }

    .banner .banner_bottom .section2{
        justify-content: end;
    }

    .big_menu ul li a{
        letter-spacing: 10px;
    }

    .artist_content{
        overflow: hidden;
    }

    .header .navbar .logo{
        width: 40px;
        height: 40px;
    }

    .header .navbar .menu i{
        font-size: 2rem;
    }

    .header .navbar .menu h2{
        font-size: 80%;
    }

    .page_top{
        padding: 10px 10px;
    }

    .header{
        padding-top: 5px;
    }

    .banner .banner_bottom{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }

    .banner .banner_bottom .section1{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .banner .banner_bottom .section1 .wp{
        width: 100%;
    }

    .banner .banner_bottom .section2{
        justify-content: center;
    }

    .banner .text{
        text-align: center;
    }

    .content{
        padding: 50px 30px;
    }

    .footer .footer2 .box{
        justify-content: space-between;
        gap: 1rem;
    }

    .footer .footer2 .box .child{
        justify-content: space-between;
        width: 100%;
    }

    .footer .footer1 .box{
        padding-left: 0;
    }

    .home .brands{
        grid-template-columns: 1fr;
    }

    .home .brands .image{
        width: 50%;
        height: 75px;
    }

    .home .brands{
        justify-items: center;
    }

    .home .home_content_location .bg_image2{
        z-index: 0;
    }

    .home .home_location{
        position: relative;
        z-index: 1;
    }

    .about .sss .main_box .box .first h2{
        width: 75%;
    }

    .about .services{
        gap: 50px;
    }


    .about .sss{
        gap: 50px;
    }

    .price{
        margin-top: -30px;
    }

    .image_price2{
        display: none;
    }

    .image_price3{
        display: none;
    }

   /*  html, body {
        height: 100%;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
      }

      .body_price2 {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
      }
      
      @supports (height: 100dvh) {
        .body_price2 {
          min-height: 100dvh;
        }
      } */

      .image_price2,
.image_price3 {
  display: none;
}


.page_top{
    height: 230px;
}

.experience .main_box .box p{
    width: 100%;
}

.contact_experience{
    padding: 70px 30px !important;
}

.gallery .main_image{
    gap: 35px;
}

.gallery .main_image .image{
    height: 285px;
}

.gallery .main_video{
    gap: 35px;
}

.gallery .main_video .image{
    height: 330px !important;
}

.banner{
    height: 95vh;
}

.gallery .main_image .image i{
    font-size: 1.1rem;
}

.gallery .main_video .image i{
    font-size: 1.1rem;
}

.person .main_box .box1 h2{
    font-size: 1rem;
}

.content_gallery2{
    padding-bottom: 0 !important;
}


}

@media(max-width:480px){

    .person .main_box .box1{
        width: 100% !important;
    }

    .experience .main_box{
        row-gap: 1rem;
    }

    .experience{
        gap: 40px;
    }

    .home .home_content_location .bg_image2{
        top: 1%;
        right: 0%;
        display: flex;
        align-items: start;
        justify-content: end;
    }

    .home .home_content_location .bg_image2 img{
        width: 50%;
        height: 50%;
    }

    .home .home_content_location .bg_image2{
        display: none;
    }

    .home .home_content_location{
        padding: 50px 25px;
        padding-bottom: 100px;
    }

    .home .home_location{
        gap: 40px;
    }

    .home .home_location .main_box .main_image{
        width: 90%;
    }

    .home .home_location .main_box .main_image .image2{
        height: 240px;
    }

    .home .home_location .main_box .main_image .image1{
        bottom: 4%;
    }

    .home .home_location .main_box .main_image{
        height: 330px;
    }

    .home .home_location .main_box{
        gap: 3rem;
    }

    .home .home_location .main_box .text{
        width: 100%;
        padding-right: 0;
    }

    .home .story .image{
        height: 280px;
    }

    .home .brand{
        gap: 40px;
    }

    .footer .footer1 .box .address{
        gap: 1.5rem;
    }

    .footer .footer2 .box .child .logo{
        width: 50px;
        height: 50px;
    }

    .footer .footer2 .box .child{
        gap: 15px;
    }

    .footer .footer2 .box .child .support_a{
        width: 70%;
    }

    .same_title h1{
        font-size: 200%;
        letter-spacing: 20px;
    }

    .same_title h2{
        font-size: 140%;
        margin-top: -14px;
    }

    .gallery .gallery_btns{
        gap: 40px;
    }

    .gallery .gallery_btns .main_btns{
        padding-bottom: 80px;
        flex-direction: column;
        gap: 1.5rem;
    }

    .gallery .gallery_btns .main_btns{
        width: 75% !important;
    }

    .gallery .gallery_btns .main_btns button{
        width: 100%;
        height: 50px;
    }

    .contact .cont_social .box{
        width: 60px;
        height: 60px;
    }

    .contact .cont_social{
        margin-bottom: 100px;
    }


}

@media(max-width: 450px){

    .gallery .main_image .image{
        height: 225px;
    }

    .gallery .main_video .image{
        height: 250px !important;
    }

    .person .main_box .box1 .image{
        height: 200px !important;
    }


}

