@font-face {
    /* font-family: "ignis-et-glacies-sharp";
    src: url("ignis-et-glacies-sharp.bold.ttf");
    src: url("ignis-et-glacies-sharp.regular.ttf"); */
    src: url("Swifted DEMO.otf");
    font-family: "Swifted DEMO";
}

@font-face {
    src: url("Avita-OutlineBlack.otf");
    font-family: "Avita-OutlineBlack";
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 18px;
    right: 24px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #000000;
    color: white;
    cursor: pointer;
    padding: 12px;
    border-radius: 31px;
    height: 46px;
}

#myBtn:hover {
    background-color: #555;

}

p,
span {
    /* font-family: Poppins; */
    font-family: "Be Vietnam Pro", sans-serif !important;
    font-size: 17px;
    letter-spacing: 0px;
    font-weight: 300 !important;
    color: #000000;
    line-height: 26px;
}

button {
    font-family: 'Be Vietnam Pro';
    font-weight: 300 !important;

}

/* body {
    font-family: "ignis-et-glacies-sharp";
} */

a {
    font-family: "Be Vietnam Pro", Sans-serif;
    font-weight: 300 !important;

}

h1 {
    /* font-family: "ignis-et-glacies-sharp"; */
    font-family: "Swifted DEMO";
    color: black;
}

html {
    scroll-behavior: smooth;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* white_box */
@keyframes myAnim {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(-2px, -2px);
    }

    60% {
        transform: translate(2px, 2px);
    }

    80% {
        transform: translate(2px, -2px);
    }

    100% {
        transform: translate(0);
    }
}

/* text aenimation start */

/* animation */

:root {
    --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --animation-duration: 1s;
}

@-webkit-keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@-webkit-keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-9%);

    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-9%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@-webkit-keyframes slideInleft {
    0% {
        opacity: 0;
        transform: translateX(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInleft {
    0% {
        opacity: 0;
        transform: translateX(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@-webkit-keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.75);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.75);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@-webkit-keyframes zoomReverseIn {
    0% {
        opacity: 0;
        transform: scale(1.25);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes zoomReverseIn {
    0% {
        opacity: 0;
        transform: scale(1.25);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@-webkit-keyframes flipInY {
    0% {
        opacity: 0;
        transform: perspective(90vw) rotateY(67.5deg);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes flipInY {
    0% {
        opacity: 0;
        transform: perspective(90vw) rotateY(67.5deg);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

[data-animation] {
    /* opacity: 0; */
    -webkit-animation-timing-function: var(--animation-timing-function);
    animation-timing-function: var(--animation-timing-function);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: var(--animation-duration);
    animation-duration: var(--animation-duration);
    will-change: transform, opacity;
}

.animations-disabled,
.animations-disabled [data-animation] {
    -webkit-animation: none !important;
    animation: none !important;
    opacity: 1 !important;
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

.slideInLeft {
    -webkit-animation-name: slideInleft;
    animation-name: slideInleft;
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

.zoomReverseIn {
    -webkit-animation-name: zoomReverseIn;
    animation-name: zoomReverseIn;
}

.flipInY {
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
}

.flipOutY {
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
    animation-direction: reverse;
}

/* text aenimation end */





.banner_txt2 {
    text-shadow: 2px 2px 2px rgb(16 15 15 / 69%);
    margin: 60px 0px;

    width: var(--container-widget-width, 50%);
    max-width: 50%;
    --container-widget-width: 50%;
    --container-widget-flex-grow: 0;
    text-align: center;
    color: #FFFFFF;
    animation: slideDown 2s ease-out forwards;
}

.mt-30 {
    margin-top: 10%;
}

.main_banner {
    background:linear-gradient(#0000009e, #000000c4), url(../img/banner_img.jpg);
    height: 100vh;
    width: 100%;
    object-fit: cover;
    background-size: cover;
    margin: auto;
    display: flex;
    justify-content: center;
}

.logo {
    /* height: 66px; */
    width: 150px;

}

.bg-tra {
    background-color: transparent;
    position: absolute;
    width: 100%;
    /* font-family: poppins; */
    padding: 5px 150px;
    border-bottom: 1px solid white;
}

.flexxx {
    display: flex;
    gap: 25px;
    text-align: center;
    align-items: center;
    /* flex-direction: column; */
}

.flexxx p {
    margin-bottom: 0;
    /* border-left: 1px solid #fff;
    border-right: 1px solid #fff; */
    padding: 0px 25px;
    margin-right: 30px;
}

.left-and-right::before {
    content: '';
    position: absolute;
    background-color: white;
    width: 1px;
    height: 100%;
    bottom: 0;
    right: 586px;
    top: 0;
}

.left-and-right::after {
    content: '';
    position: absolute;
    background-color: white;
    width: 1px;
    height: 100%;
    bottom: 0;
    right: 350px;
    top: 0;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    height: 85px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: #fff;
}

.nav-link {

    color: #fff;

}

.daimond {
    height: 411px;
}

.flexxx a {
    text-decoration: none;
    color: #fff;
}

.navbar-brand {
    color: #fff;
}

.contact-btn {
    padding: 8px 20px;
    border: 1px solid #fff;
}

.contact-btn:hover {
    padding: 8px 20px;
    border: 1px solid #fff;
    background-color: white;
    color: #000000;
}

.navbar-expand-lg .navbar-nav {
    flex-direction: row;
    padding-right: 40px;
}

.css-o44is {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.css-1wlxt4 {
    display: flex;
    flex-direction: row;
    -webkit-box-align: center;
    align-items: center;
    margin-bottom: 24px;
}

.css-1i1v0i {
    flex: 0 0 48px;
    height: 48px;
    background-color: rgb(60, 116, 167);
    border-radius: 50%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    font-size: 16px;
    color: rgb(255, 255, 255);
}

.css-17qajeg {
    flex: 1 1 0%;
    border-top: 1px dashed rgb(60, 116, 167);
}

.letter_space {
   
    transition: 0.4s;
    color: #ffffff;
    /* font-size: 20px; */
    padding: 4px 20px;
    margin: 0 5px;
    position: relative;
}

.letter_space:hover::after {
    transform: scaleX(1);
    transform-origin: left;
    color: white;
}

.letter_space::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: #ffffff;
    height: 1px;
    color: white;
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s;
}

.nav-link:focus,
.nav-link:hover {
    color: white;
}


.baner_txt {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    text-align: center;
    /* position: absolute; */
    height: auto;
    margin: auto;
}

.baner_heading {

    /* font-size: 68px;
    font-weight: 300;
    line-height: 80px;
    letter-spacing: -5px;
    color: #F9A431;
    padding-top: 10%;
    text-align: center;
    text-shadow: 2px 2px 2px rgb(16 15 15 / 69%); */

    /* font-family: "Swifted", Sans-serif; */

    /* font-family: "Swifted", Sans-serif; */
    font-size: 56px;
    font-weight: 400;
    line-height: 65px;
    letter-spacing: 0.5px;
    color: #FFFFFF;
    /* width: 875px; */
    animation: slideDown 2s ease-out forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.baner_button {
    display: flex;
    gap: 30px;
    margin-top: 10px;
    animation: slideDown 2s ease-out forwards;
}

.banerbutton_color {
    background-color: transparent;
    /* font-family: "Montserrat", Sans-serif; */
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    fill: #FFFFFF;
    color: #FFFFFF;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #fff;
    border-radius: 0px 0px 0px 0px;
    padding: 8px;
    transition: all .5s ease-in-out;
}

.banerbutton_color:hover {
    background-color: #ffffff;
    /* font-family: "Montserrat", Sans-serif; */
    /* font-size: 13px; */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    fill: #FFFFFF;
    color: #000000;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #000000;
    border-radius: 0px 0px 0px 0px;
    padding: 8px;
    transition: all .5s ease-in-out;

}

/* .banerbutton_color {
    background-color: #ffffff85;
    color: #E3E3E5;
    border: none;
    padding: 15px;
    width: fit-content;
    position: relative;
} */

/* button hover black */
.corner-shape {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 25px;
    height: 25px;
    /* transform: rotate(90deg); */
    opacity: 0;
    transition: opacity 0.2s ease-in-out 0.1s;

}

.corner-shape2 {
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    opacity: 0;
    transition: opacity 0.2s ease-in-out 0.1s;
}

.banerbutton_color:hover .corner-shape {
    opacity: 1;
}

.banerbutton_color:hover .corner-shape2 {
    opacity: 1;
}

.bg_big {
    background: #F6F6F6;
    padding-bottom: 115px;
    /*margin-top: 50px;*/
}

.fotter_con {

    padding: 80px 0px 80px 50px;
}

.fotter_about {
    padding: 0px 0px 0 50px;
}

.fotter_contact {
    padding: 0px 0px 30px 0px;
}

.fotter_padding_new {
    padding: 0px 0px 30px 0px;
    align-items: baseline;
}

.fotter_border {
    border-right: 1px solid black;
}

.logo_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    /* border-left: 1px solid black;
    border-right: 1px solid black; */

}

.logo_width {
    width: 200px;
    padding: 10px;

}

.logo_icon::before {
    content: '';
    position: absolute;
    background-color: black;
    width: 1px;
    height: 100%;
    bottom: 0;
    right: 20px;
    top: 0;
}

.logo_icon::after {
    content: '';
    position: absolute;
    background-color: black;
    width: 1px;
    height: 100%;
    bottom: 0;
    right: 50px;
    top: 0;
}

.bg_grid {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.heading_txt {
    font-size: 62px;
    font-weight: 400;
    line-height: 58px;
    letter-spacing: -4px;
    color: #000000;
}


.get_question {
    font-size: 12px;
    color: #E3E3E5;
    letter-spacing: 0px;
}

.grid_img {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 160px;
}

.grid_img2 {
    position: relative;
    right: 126px;
}

.grid_img3 {
    position: relative;
    right: 126px;
}

.index_img {
    height: 85vh;
    width: 653px;
    /* padding: 20px; */
    padding-top: 20px;
    object-fit: cover;
    /* animation: myAnim 5s infinite; */
    margin-left: 88px;
}

.grid_color {
    background-color: #F9F9F9;
    height: 80vh;
    width: 654px;
    position: absolute;
    top: 0;
    z-index: -10;
    left: -182px;
}

.grid_txt {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    /* margin-left: 0px; */
    text-align: start;
    width: 700px;
}

.our_story {
    font-size: 56px;
    font-weight: 400;
    line-height: 56px;
    letter-spacing: -3.4px;
    /* color: rgb(0, 0, 0); */
    /* animation: myAnim 5s infinite; */
}

.small_font {
    /* font-family: "Montserrat", Sans-serif; */
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 8.5px;
    color: #000000;
}

.grid_img_font p {
    width: var(--container-widget-width, 100%);
    --container-widget-width: 85%;
    --container-widget-flex-grow: 0;
    text-align: left;
    color: #000000;
    /*letter-spacing: -0.8px;*/
    margin-top: 22px;


}

.big {

    font-size: 110px;
    font-weight: 400;
    line-height: 115px;
    letter-spacing: -5px;
    /* color: #22365F; */
    margin-left: 0px;
}

.bg_position {
    z-index: -99;
    position: relative;
    margin-top: 55px;
}

.baner_img2 {
    height: 62vh;
    width: 100%;
    object-fit: cover;
}

.white_box {
    /* left: 317px; */
    /* position: relative; */
    background-color: transparent;
    color: #000000;
    padding: 20px;
    border: 1px solid white;
    height: 40vh;
    width: 39%;
    text-align: start;
    top: 332px;
    /* margin-left: 193px; */
    margin-top: -174px;
    margin-right: 286px;
    animation: myAnim 5s infinite;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); */
}

.white_border {
    /* border: 2px solid black; */
    padding: 22px;
    background-color: #ffffff;
    position: relative;
    z-index: 999;
}

.box_font {
    font-size: 13px;
    /* font-size: 12px;
    margin: auto; */
    /* margin-top: 15px; */
}

.elementor-30 .elementor-element.elementor-element-9763783 {
    width: var(--container-widget-width, 100%);
    max-width: 100%;
    --container-widget-width: 100%;
    --container-widget-flex-grow: 0;
    text-align: left;
    color: #000000;
    font-family: "Montserrat", Sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: 0px;
}

.box_font1 {
    font-size: 10px;
    text-align: center;
}

.icon_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 20px;
    text-align: center;
}

.icon_flex {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-top: 0px;
    justify-content: stretch;
    margin: auto;
    width: fit-content;
}

.icon_flex p {
    margin-bottom: 0;
}

.icon_flex button {
    padding: 5px 10px;
}

/* .button_flex {
    text-align: center;
    background-color: black;
    color: white;
    font-size: 14px;
    width: 250px;
    padding: 6px;
    margin-left: 1px;
    border: none;
    font-size: 12px
} */
.button_flex {
    background-color: #000000;
    font-family: "Montserrat", Sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    fill: #FFFFFF;
    color: #FFFFFF;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #000000;
    border-radius: 0px 0px 0px 0px;
}

.button_flex:hover {
    background-color: #ffffff;
    font-family: "Montserrat", Sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    fill: #FFFFFF;
    color: #000000;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #000000;
    border-radius: 0px 0px 0px 0px;
}

.bg_black {
    background-color: #000000;
    height: 120px;
    width: 100%;
    /* position: absolute; */
    margin-top: 110px;
    padding: 40px;
}

.bg_icon {
    display: flex;
    justify-content: space-around;
    align-items: center;
    /* gap: 160px; */
}

.icon {
    height: 37px;
    width: 137px;
    object-fit: fill;
}

.bg_our {
    text-align: center;
    font-size: 56px;
    font-weight: 500;
    line-height: 65px;
    letter-spacing: 0.5px;
    color: #000;
}


marquee {
    position: relative;
    color: #E9E9E9;
    font-family: "Swifted DEMO";
    font-size: 200px;
    font-weight: 400;
    line-height: 200px;
    letter-spacing: -6px;
    padding-right: calc(75px/2);
    padding-left: calc(75px/2);
    margin-top: 30px;
}

.dream_slider {
    position: relative;
    color: #E9E9E9;
    font-family: "Swifted DEMO";
    font-size: 200px;
    font-weight: 400;
    line-height: 200px;
    letter-spacing: -6px;
    padding-right: calc(75px/2);
    padding-left: calc(75px/2);
    margin-top: 20px;
}

.bg_margin {
    margin: -92px 0px 0px 0px;
}

.bg_big p {
    color: #000;
}

.constant-simple-slider {

    margin: 0 auto;
    margin-bottom: 0px !important;

    img {
        /* max-width: 100%; */
        width: 100%;
        max-height: 100%;
        margin: auto;
        object-fit: cover;
        padding: 20px 20px 0;
        margin-top: 35px;
    }

    .slick-list {
        margin: 50;
    }

    .slick-prev {
        left: 0;
    }

    .slick-next {
        right: 0;
    }

    .slick-prev:before,
    .slick-next:before {
        color: #222;
    }

}

.position {
    position: relative;
}

.icon_collection {
    width: 124px !important;
    padding: 0 !important;
    margin-top: 0 !important;
}

.learn {
    text-decoration: none;
    color: #22365F;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-align: center;
}

.bg_button {
    background-color: #ffffff;
    width: 250px;
    text-align: left;
    bottom: 0;
    position: absolute;
    padding: 8px;
    margin-left: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.bg_our2 {
    text-align: center;
    font-size: 56px;
    font-weight: 500;
    line-height: 65px;
    letter-spacing: 0.5px;
    color: #000;
    
}

.text_center {
    text-align: center;
    padding: 15px 0px;
}

.bg_black2 {
    background-image: linear-gradient(0deg, rgb(16 16 16 / 70%), rgb(16 16 16 / 82%)), url(../img/44.jpg);
    background-size: cover;
    background-attachment: fixed;

}

.bg_black3 {
    background-image: linear-gradient(0deg, rgb(16 16 16 / 65%), rgba(16 16 16 / 65%)), url("../img/44.jpg");
    background-size: cover;
    background-attachment: fixed;
}

.step1 {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 10.5px;
    color: white;
    text-align: center;
    padding-top: 110px;
}

.step4 {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 10.5px;
    color: white;
    text-align: center;
    padding-top: 210px;
}

.heading_baner {
    font-size: 56px;
    font-weight: 400;
    line-height: 65px;
    letter-spacing: 0.5px;
    /* color: #000000; */
}

.swiper,
.swiper2 {
    /* width: 100vw; */
    height: auto;
    overflow: hidden;
}

.swiper2 {
    margin-top: 15px;
}

.swiper-wrapper {
    transition-timing-function: linear;
}


.swiper-slide img {
    aspect-ratio: 180 / 200;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.swiper-slide {
    margin-left: 15px;
    margin-top: 15px;
}

.Appointment_button {
    background-color: transparent;
    color: #000000;
    padding: 15px;
    margin-top: 65px;
    /* margin-bottom: 80px; */
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border: 2px solid #000000;
}

/* .Appointment_button:hover {
    background-color: #22365F;
    color: white;
    padding: 15px;
    margin-top: 65px;
    position: relative;
} */

/* .Appointment_button:hover .corner-shape {

    opacity: 1;
}

.Appointment_button:hover .corner-shape2 {

    opacity: 1;
} */
.new_img img {
    width: 100%;
    /* height: 55vh; */
    object-fit: none;
}

.new_bg {
    background-color: #000000;
    /* height: 13vh; */
    width: 355px;
    position: absolute;
    bottom: 160px;
    text-align: left;
    padding: 24px;
}

.new_bg h3 {

    color: #FFFFFF;
    font-family: "Be Vietnam Pro", sans-serif !important;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -1.6px;
    margin-top: 0px;

}

.new_bg a {
    font-size: 13px;
    font-weight: 500;
    font-family: "Be Vietnam Pro", sans-serif !important;
    text-transform: uppercase;
    text-decoration: none;
    color: #B9B9B9;
}

.new_bg span {
    margin-left: 10px;
}

.box_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
    padding-bottom: 82px;
    align-items: baseline;
}

.border_box {
    /* border: 1px solid white; */
    padding: 20px 20px 0px 0px;
}

.box_icon {
    color: #f0f2f5;
    text-align: start;
    display: flex;
    flex-direction: column;
    text-align: start;
    margin: 23px 0 23px;
    width: 50px;
}

/* .box_txt {
    font-family: "Swifted", Sans-serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: -1px;
    color: white;
    text-align: start;
    line-height: 32px;
} */

.box_txt {
    font-family: "Swifted DEMO";
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: white;
    text-align: start;
}

.box_icon {
    filter: invert(1);
}

.box_txt2 {
    text-align: left;
}












.background-section {
    position: relative;
    /* background-image: url('../img/img3.jpg'); */
    /* Replace with the actual image path */
    background-size: cover;
    background-position: center;
    /* padding: 60px 0; */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
}

.content-wrapper {
    position: relative;
    z-index: 2;
}

.free {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}

.txtr_ {
    /*margin-left: 226px;*/
    z-index: 999;
    position: relative;
}

.txtr {
    z-index: -999;
    position: relative;
    margin-left: -268px;
}

.text-container {
    /*max-width: 500px;*/
    margin: 0 auto;
}

/* .text-content {
    overflow: hidden;
    text-overflow: ellipsis;
} */
.text-content {
    color: #000000;
}

.read-more-link {
    color: #0067ff;
    cursor: pointer;
    font-size: 14px;
    display: none;
    /* Hide the "Read more" link initially */
}

.text-container.open .text-content {
    white-space: normal;
    /* Allows text to wrap */
    overflow: visible;
    /* Makes the entire text visible */
}

.text-container.open .read-more-link {
    display: inline;
    /* Show the "Read more" link when text is expanded */
}

.testimonial.fa-solid {
    color: #f6bb06;
    padding-left: 5px;
}

.big_slider {
    font-family: "Montserrat", Sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.3px;
    color: #A3A3A3;
}

@media only screen and (max-width: 767px) {
    .free {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        align-items: center;
    }

    .txtr_ {
        margin-left: -26px;
        z-index: 999;
        position: relative;
    }

    .carousel-header {
        font-size: 36px;
    }

    .testimonial {
        min-width: 310px;
        max-width: 310px;
        margin: 15px 10px;
        padding: 14px;
    }

    .carousel {
        max-width: 325px;
        z-index: 999;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .free {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        align-items: center;
    }

    .testimonial {
        min-width: 350px;
        max-width: 350px;
        margin: 25px 9px;
    }

    .carousel {
        max-width: 728px;
        z-index: 999;
    }

    .carousel-container {
        max-width: 830px;

    }
}

.carousel-container {
    max-width: 1035px;
    margin: 0 auto;
    padding: 40px 0px;
    text-align: center;
}

.carousel-container p {
    text-align: left;
    color: #000;
    /*text-transform:uppercase;*/
}

.carousel-header {
    font-size: 56px;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: left;
    text-transform: capitalize;
    letter-spacing: -2px;
}

.carousel {
    display: flex;
    overflow: hidden;
    position: relative;
    position: relative;
    max-width: 885px;
    z-index: 999;

}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial {
    min-width: 418px;
    max-width: 432px;
    margin: 25px 10px;
    background: #fff;
    border-radius: 8px;
    padding: 42px;
    text-align: left;
    border: 1px solid #0000000f;
}

/* .testimonial h3 {
    margin: 0;
    font-size: 1.2em;
    font-weight: bold;
    font-family: "Swifted DEMO";
} */
.testimonial h3 {
    color: #000;
    padding-bottom: 0px;
    font-family: "Swifted DEMO";
    font-size: 28px;
    font-weight: 400;
    font-style: normal;
    line-height: 30px;
    letter-spacing: -1.6px;
}

/* .testimonial p {
    font-size: 14px;
    margin: 10px 0 20px;
    color: #0f0e0e;
    line-height: 16px;
} */

/* .testimonial em {
    font-style: italic;
    color: #333;
} */

.testimonial em {
    color: #000;
    padding-bottom: 23px;
    font-family: "Montserrat", Sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    font-style: italic;
    line-height: 15px;
    letter-spacing: 0.3px;
}

.read-more-link {
    color: #0067ff;
    cursor: pointer;
    font-size: 14px;
    display: none;
    /* Hide the "Read more" link initially */
}

.text-container.open .text-content {
    white-space: normal;
    /* Allows text to wrap */
    overflow: visible;
    /* Makes the entire text visible */
}

.text-container.open .read-more-link {
    display: inline;
    /* Show the "Read more" link when text is expanded */
}

.testimonial.fa-solid {
    color: #f6bb06;
    padding-left: 5px;
}

@media only screen and (max-width: 767px) {
    .free {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        align-items: center;
    }

    .txtr_ {
        margin-left: -26px;
        z-index: 999;
        position: relative;
    }

    .carousel-header {
        font-size: 36px;
    }

    .testimonial {
        min-width: 310px;
        max-width: 310px;
        margin: 15px 10px;
        padding: 14px;
    }

    .carousel {
        max-width: 325px;
        z-index: 999;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .free {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        align-items: center;
    }

    .testimonial {
        min-width: 402px;
        max-width: 402px;
        margin: 47px 25px;
    }

    .carousel {
        max-width: 688px;
        z-index: 999;
    }

    .carousel-container {
        max-width: 830px;

    }
}

.stars {
    color: #F9A431 !important;
    font-size: 1.2em;
}

.controls {
    margin-top: 20px;
}

.control-button {
    background-color: #22365F;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.2em;
    width: 40px;
    height: 40px;
    margin: 0 10px;
    cursor: pointer;
}

.control-button:hover {
    background-color: #555;
}

.img_grids {
    height: 843px;
    width: 100%;
    object-fit: cover;
}

.bg_img2 {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(https://new.antiek.in/assets/img/view_slider/ESTROMOS_SKY_BROWN.jpg) no-repeat center center / cover;
    /* height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
}

.overlay2 {

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.form-box {
    background: white;
    background: #00000059;
    padding: 37px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    max-width: 577px;
    /*height: 740px;*/
    line-height: 30px;
    font-family: Montserrat;
}

.form_flex {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 10px;
}

.input-group {
    /*display: flex;*/
    /*justify-content: space-between;*/
    margin-bottom: 0px;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #f9f9f900;
}

.checkbox-group {
    margin: 10px 0;
}

.checkbox-group label {
    display: block;
    font-size: 14px;
    margin: 2px 0;
}

/* 
input,
textarea,
button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
} */

button {
    background: #22365F;
    color: white;
    cursor: pointer;
}

.text-box {
    color: white;
    max-width: auto;
}

.text-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
}

.text-box p {
    margin-bottom: 10px;
    color: #ffffff;
}

.text-box .contact {
    margin-top: 10px;
    padding: 20px 0 20px;
}

.box_gap {
    display: flex;
    gap: 20px;
}

.detail {
    width: 100%;
    padding: 10px;
    background: #f9f9f900;
    border: 1px solid transparent;
    border-radius: 5px;
}

textarea {
    border: 1px solid #fff;
}

.form_txt {
    font-size: 56px;
    font-weight: 500;
    line-height: 65px;
    letter-spacing: 0.5px;
    text-shadow: 0px 0px 25px rgba(0, 0, 0, 0.67);
    color: #FFFFFF;
}

.get_button {
    width: 195px;
    padding: 8px;
    background-color: #ffffff;
    margin-top: 10px;
    position: relative;
    color: #22365F;
    border: none;

}

.get_button:hover {
    opacity: 1;
    background-color: #000000;
    color: white;

    border: none;
}

.get_button:hover .corner-shape {
    opacity: 1;
    /* background-color: #000000; */
    color: white;

    border: none;
}

.get_button:hover .corner-shape2 {
    opacity: 1;
    /* background-color: #000000; */
    color: white;

    border: none;
}

.form_button {
    background-color: #fff;
    color: #000;
    position: relative;
}

.form_button:hover {
    background-color: #000;
    color: #fff;
}

.form_button:hover .corner-shape {
    opacity: 1;
    /* background-color: #000000; */
    color: white;
    border: none;
}

.form_button:hover .corner-shape2 {
    opacity: 1;
    /* background-color: #000000; */
    color: white;
    border: none;
}





/* .bg_up {
    background-color: #f9f9f9;

    padding-bottom: 80px;
} */

.bg_up {
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 120px 0px 80px 0px;
    background-color: #f9f9f9;
    border-top: 1px solid black;
    display: none;
}

/* .step3 {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 10.5px;
    color: #888686;
    text-align: center;
    padding-top: 80px;
} */

.step3 {
    font-family: "Montserrat", Sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.3px;
    color: #A3A3A3;
}

/* .Appointment_button {
    background-color: black;
    color: white;
    padding: 7px;
    margin-top: 43px;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border: 1px solid white;
    font-size: 13px;
} */
.Appointment_button {
    background-color: #000000;
    font-family: "Montserrat", Sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    fill: #FFFFFF;
    color: #FFFFFF;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #000000;
    border-radius: 0px 0px 0px 0px;
    padding: 10px 30px 10px 30px;
    margin-top: 16px;
    border: 1px solid white;
    border: 1px solid transparent;
    margin-top: 48px;
}

.Appointment_button:hover {
    background-color: #ffffff;
    font-family: "Montserrat", Sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    fill: #FFFFFF;
    color: #000000;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #000000;
    border-radius: 0px 0px 0px 0px;
    padding: 10px 30px 10px 30px;
    margin-top: 48px;
}

/* .Appointment_button:hover {
    background-color: transparent;
    color: black;
    padding: 8px;
    margin-top: 14px;
    position: relative;
} */


.heading_last {

    font-size: 56px;
    font-weight: 400;
    line-height: 58px;
    letter-spacing: -2.8px;
    color: #000000;
}

.company_grid {
    /* display: grid; */
    grid-template-columns: repeat(3, 1fr);
    /* text-align: center; */
    /* display: flow; */
    gap: 10px;
    margin-top: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 21px;
}

.company_height {
    height: 45px;
}

.padding_company {
    /* transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s; */
    padding: 50px 0px 50px 0px;
}

.our_company {

    font-size: 56px;
    font-weight: 400;
    line-height: 58px;
    letter-spacing: -2.8px;
    color: #000000;

}

/* fotter css */
.fotter_bg {
    background-color: #f9f9f9;
    padding: 0px;
    border-top: 1px solid black;
}

.fotter_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

}

.company_icon {
    /* height: 79px; */
    /* margin-top: 54px; */
    width: 150px;
    /*filter: invert(1);*/
}

.detail_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* gap: 52px; */
    border-right: 1px solid black;
    padding: 80px 0px 30px 0px
}

.padding_txt {
    padding: 0 0 0 36px;

}

.fotter1 {
    padding: 80px 0px 30px 0px;
}

/* .fotter_txt {
    text-align: left;
    color: #000000;
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 0px;
    margin-top: 17px;
} */
.fotter_txt {
    text-align: left;

    margin-top: 20px;
}

.txt_mt {
    margin-top: 37px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 18px;
    font-family: 'Montserrat';
    color: #000;
}

/* .txt_deco {
    text-decoration: none;
    line-height: 5px;
} */

.address_fotter a {
    cursor: pointer;
}

a.txt_deco {
    color: #000;
    font-weight: 300;
    /*letter-spacing: -0.3px;*/
    text-decoration: none;

}

.txt_mt-40 {
    margin-top: 80px;
    margin-bottom: 30px;
    padding: 0 0 0 50px;
}


.mt-25 {
    font-family: "Montserrat", Sans-serif;
    font-size: 18px;
    font-weight: 500;
    /*letter-spacing: -0.6px;*/
    color: #000;
}

.icon_grid5 {
    display: flex;
    gap: 10px;
    /* margin-top: 10px; */
    /*height: 34px;*/
}

.icon_height {
    /*height: 32px;*/
    /* width: 100%; */
}

.fotter_add {
    margin-top: 0px;
    /* line-height: 4px; */
}

.logo_icon_grid {
    display: flex;
    gap: 20px;
    /* padding-bottom: 34px; */
    padding: 14px 0 45px 0;
    text-align: center;
    align-items: center;
}

.address_fotter {
    color: #000;
}

.address_main {
    margin: 10px 0px 0px 0px;
}

.icon3 {
    height: 30px;
}

.border_top {
    border-top: 1px solid #eeeded;
    padding: 12px 0 0 0;
}

.fotter_logo {
    border-right: 1px solid black;
    height: 71px;
    padding: 10px 0;
}

.display {
    display: flex;
    justify-content: center;
    padding: 0px 15px;
}

.new_bg a {
    padding: 0px;
}

.footer_text {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0 0;
    color: #000;
}

.fotter_email {
    text-decoration: none;
    /*margin-top: -13px;*/
    /*margin-bottom: 30px;*/
    color: #000;



}

.contact-mail {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0px 0 10px;
}


/* slider css home page */
/* .slider_flex {
    display: flex;
}

.no_font h4 {
    font-family: "Avita-OutlineBlack";

    font-weight: 100;
    color: #0000001c;
    font-size: 122px;
    top: 0;
    bottom: 0;
    line-height: 1;
    letter-spacing: 12px;
}

.slider_font {
    margin-left: 25px;
    margin-top: 20px;
    letter-spacing: 0px;
    line-height: 17px;
}

.slider_heading {
    position: absolute;
    top: 82px;
    left: 25px;
    font-size: 42px;
    letter-spacing: -2px;
}

.slider_step {
    position: absolute;
    top: 52px;
    left: 30px;
}

.slider_mt {
    margin-top: 60px;
    margin-bottom: 44px;
} */
.slider-container {
    position: relative;
    max-width: 1320px;
    margin: auto;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
}

.slide {
    display: none;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    height: auto;
    padding-top: 25px;
}

.slide img {
    width: 36%;
    height: auto;
    margin-top: 0px;
    border-radius: 10px;
}

.text_slider {
    padding-left: 30px;
    width: 60%;
    margin-top: 0px;
}

.no_font {
    position: relative;
    /* display: flex; */
    align-items: center;
    justify-content: flex-start;
}

.no_font h4 {
    position: absolute;
    font-family: "Avita-OutlineBlack";
    font-weight: 100;
    color: #00000024;
    font-size: 122px;
    line-height: 1;
    letter-spacing: 12px;
    z-index: 0;
    margin: 0;
}

.slider_step {
    position: relative;
    font-size: 14px;
    z-index: 2;
    color: black;
    top: 47px;
    left: 28px;
}

.slider_heading {
    position: relative;
    font-size: 42px;
    letter-spacing: 0.5px;
    z-index: 2;
    color: #000;
    margin-top: 80px;
    margin-left: 0px;
}


.slider_font {
    
    text-align: left;
    /*letter-spacing: -0.4px;*/
}

/* Navigation Buttons */
.nav-buttons {
    text-align: center;
    margin-top: 20px;
    margin-bottom: -60px;
}

.nav-buttons button {
    background: #000;
    color: white;
    border: none;
    /* padding: 10px 15px; */
    margin: 8px;
    cursor: pointer;
    border-radius: 42px;
    font-size: 16px;
    /* margin-bottom: 31px; */
}

.nav-buttons button:hover {
    background: black;
}

/* Active Dot */
.active {
    /* background: red !important; */
}

.big_mt {
    margin-top: 218px;
}

.line5::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin-right: auto;
    margin-left: auto;
    pointer-events: none;
    z-index: var(--ep-grid-line-z-index, 0);
    min-height: 100vh;
    width: calc(100% - (2 * 0px));
    max-width: var(--ep-grid-line-max-width, 100%);
    background-size: calc(100% + var(--ep-grid-line-width, 1px)) 100%;
    background-image: repeating-linear-gradient(var(--ep-grid-line-direction, 90deg), var(--ep-grid-line-column-color, transparent), var(--ep-grid-line-column-color, transparent) calc((100% / var(--ep-grid-line-columns, 6)) - var(--ep-grid-line-width, 1px)), var(--ep-grid-line-color, #2f2e2e09) calc((100% / var(--ep-grid-line-columns, 6)) - var(--ep-grid-line-width, 1px)), var(--ep-grid-line-color, #2f2e2e09) calc(100% / var(--ep-grid-line-columns, 6)));
}



.line5:not(.logged-in) {
    position: relative;
    padding-top: 1px;
}



/* slider css home page end */

/* Brightness-zoom Container */
.img-hover-zoom--brightness img {
    transition: transform 2s, filter 1.5s ease-in-out;
    transform-origin: center center;
    filter: brightness(50%);
}

/* The Transformation */
.new_img {
    width: 100%;
    /* height: 55vh; */
    object-fit: none;
    overflow: hidden;
}

.new_img img {
    width: 100%;
    /* transition: all .2s ease-in-out; */
    transition: transform 0.8s ease-out;
    /* Smoother and slower transition */
    will-change: transform;
    /* Optimizes for better animation performance */
}

.new_img img:hover {
    transform: scale(2.1);
    transform: translateX(-15px);
}

.grid3_img {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 45px 20px;
}

.icon_bg {
    padding: 8px 15px;
    background-color: #fff;
    border-radius: 50%;
    font-size: 18px;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;

}

section {
    /* height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        position: relative; */
    will-change: transform;
}

.content {
    transition: transform 0.3s ease-out;
}


/* about css */
.main_banner_about {
    /*background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url("../img/banner-about-us.jpg");*/
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("https://antiek.in/assets/img/drone.jpg");
    height: 100vh;
    width: 100%;
    object-fit: cover;
    background-size: cover;
    margin: auto;
    display: flex;
    margin: auto;
}

/* .overlay3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.45;
} */

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

.about_font {
    font-size: 96px;
    font-weight: 400;
    line-height: 74px;
    letter-spacing: -5px;
    text-shadow: 0px 0px 28px rgba(0, 0, 0, 0.75);
    color: #FFFFFF;
}

.about_width h5 {
    color: #fff;
    font-family: "Be Vietnam Pro", sans-serif !important;
    font-size: 30px;
    padding: 40px 0 0px;
}

.about_banner_txt {
    width: var(--container-widget-width, 95%);
    max-width: 95%;
    --container-widget-width: 95%;
    --container-widget-flex-grow: 0;
    color: #FFFFFF;
    font-family: "Montserrat", Sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: 0px;
}

.flex_banner {
    display: flex;
}

.logo_height {
    height: 50px;
    width: 100%;
}


.grid_color2 {
    background-color: #F9F9F9;
    height: 80vh;
    width: 654px;
    position: absolute;
    top: 0;
    z-index: -10;
    left: 370px;
}

.grid_txt2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: -55px;
    text-align: start;
    width: 629px;
}


.index_img2 {
    height: 85vh;
    width: 653px;
    /* padding: 20px; */
    padding-top: 20px;
    object-fit: cover;
    /* animation: myAnim 5s infinite; */
    margin-left: 129px;
}



.our_story2 {

    font-size: 56px;
    font-weight: 400;
    line-height: 58px;
    letter-spacing: -4.4px;
    color: #000000;
}


.grid_img_font2 p {
    text-align: left;
    color: #000000;
    margin-top: 20px;
}

.about_button {
    background-color: #000000;
    font-family: "Montserrat", Sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    fill: #FFFFFF;
    color: #FFFFFF;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #000000;
    border-radius: 0px 0px 0px 0px;
    padding: 8px;
    margin-top: 30px;
}

.about_button:hover {
    background-color: transparent;
    font-family: "Montserrat", Sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    fill: #FFFFFF;
    color: #000000;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #000000;
    border-radius: 0px 0px 0px 0px;
    padding: 8px;
    margin-top: 30px;
}

.routin {
    display: flex;
    font-size: 180px;
    /* font-weight: 400; */
    /* line-height: 200px; */
    letter-spacing: -8px;
    padding-right: calc(71px/2);
    padding-left: calc(71px/2);
    color: transparent !important;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #ffffff;
    text-shadow: none;
    padding-top: 86px;
    margin-top: 10%;
}

.bg_img {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../img/collection/ARLEN GOLD.jpg");
    height: 35vh;
    width: 100%;
    object-fit: cover;
    opacity: 0.8;
    background-attachment: fixed !important;
    background-size: cover;
    background-position: center;
}

.value_txt span {
    font-size: 30px;
    font-weight: 700;
    font-family: "poppins" !important;
}

.padding_top {
    padding: 120px 0px 120px 0px;
}

.value_bg {
    background-color: #F6F6F6;
}

.value {
    font-size: 56px;
    font-weight: 400;
    line-height: 65px;
    letter-spacing: 0.5px;
    color: #000000;
    border-bottom: 1px solid black;
}

.value2 {
    font-size: 35px;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: -2px;
    color: #000000;
    margin-top: 14px;
}


.value_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding-bottom: 30px;
}

.value_colunm {
    display: flex;
    flex-direction: column;
}

.value_txt {
    border-bottom: 1px solid black;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 20px;
    color: #000000;
    padding-bottom: 13px;
}

.value_text {
    text-align: left;
    color: #000000;
    
    margin-bottom: 40px;
}

.margin_top2 {
    margin-top: 35px;
}

.value_last {
    text-align: center;
    color: #000000;
    
}

.main_padding {
    padding: 15px 82px;
}

.value_button {
    background-color: #000000;
    font-family: "Montserrat", Sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    fill: #FFFFFF;
    color: #FFFFFF;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #000000;
    border-radius: 0px 0px 0px 0px;
    padding: 8px;
}

.value_button:hover {
    background-color: transparent;
    font-family: "Montserrat", Sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    fill: #FFFFFF;
    color: #000000;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #000000;
    border-radius: 0px 0px 0px 0px;
    padding: 8px;
}

.button_center {
    display: flex;
    justify-content: center;
    margin-top: 35px;
}

.about_banner2 {
    background-image: linear-gradient(rgb(0 0 0 / 60%), rgb(0 0 0 / 60%)), url(../img/collection/ZURICALACATTA.jpg);
    height: 70vh;
    width: 100%;
    object-fit: cover;
    background-size: cover;
    margin: auto;
    display: flex;
    justify-content: center;
    background-position: center;
    background-position: bottom;
    background-size: cover;
}

/* .overlay4 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.45;
} */
.banner_txt3 {
    font-size: 56px;
    font-weight: 400;
    line-height: 65px;
    letter-spacing: 0.5px;
    color: #FFFFFF;
    margin: auto;
}

.banner_padding {
    padding: 120px 0px 0px 0px;
}

.about_text4 {
    width: var(--container-widget-width, 90%);
    max-width: 100%;
    --container-widget-width: 90%;
    --container-widget-flex-grow: 0;
    text-align: center;
    color: #FFFFFF;
    
    margin: auto;
}

.banner_about2 {
    background-image: url("../img/marble-texture-1.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    /* opacity: 0.5; */
    z-index: 2;
    /* height: 24vh; */
    width: 100%;
    border-radius: 20px;
    padding: 35px 50px 35px 50px;
}

.padding_about {
    padding: 20px 240px;
}

.banner2_txt {
    font-size: 38px;
    font-weight: 500;
    line-height: 38px;
    letter-spacing: -2px;
    color: #000000;
    /* padding: 30px 0px; */
}

.banner2_txt3 {
    font-family: "Montserrat", Sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 22px;
    letter-spacing: 0px;
    color: #000000;
}

.banner2_txt4 {
    font-family: "Montserrat", Sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0px;
    color: #000000;
}

.banner2_txt5 {
    text-align: left;
    margin: 0px 0px 0px 0px;
}

.banner2_txt6 a {
    text-align: left;
    color: #3A3A3A;
    
    margin-bottom: 5px;
}
.banner2_txt6{
    margin-bottom: 5px;
}
.grid2_img {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* gap: 50px; */
}

.our_story2 {
    font-size: 56px;
    font-weight: 400;
    line-height: 65px;
    letter-spacing: 0.5px;
    color: #000000;

}

.padding_bottom {
    /* padding-bottom: 8px;
    line-height: 26px; */


    width: var(--container-widget-width, 100%);
    max-width: 100%;
    --container-widget-width: 100%;
    --container-widget-flex-grow: 0;
    text-align: left;
    color: #000000;
    

}

.about_mt {
    margin-top: 0px;
}

.about_mt2 {
    margin-top: 90px;
}

.index_grid2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* gap: 10px; */
    margin-left: 60px;
}

.left2 img {
    object-fit: cover;
    /* margin-left: 185px; */
    width: 280px;
    height: 280px;
    /* gap: 10px; */
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);*/
}

.left2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.right2 img {
    object-fit: cover;
    height: 573px;
    width: 100%;
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);*/
}

/* index_round aenimation */
.container2 {
    position: relative;
    width: 140px;
    height: 140px;
    left: 143%;
    top: -372px;
}

.circle {
    width: 100%;
    height: 100%;
    background: radial-gradient(#22365F, #22365ff9, #f6950d);
    border-radius: 50%;
    box-shadow: 4px 6px 14px -6px rgba(0, 0, 0, 0.5);
    position: absolute;
    animation: rotate 12s linear infinite;
}

.image {
    width: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.text-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    animation: rotateText 30s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateText {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

















.dp-wrap {
    margin: 0 auto;
    position: relative;
    perspective: 1000px;
    height: 100%;
}

.dp-slider {
    height: 100%;
    width: 100%;
    position: absolute;
    transform-style: preserve-3d;
}

.dp-slider div {
    transform-style: preserve-3d;
}

.dp_item {
    display: block;
    position: absolute;
    text-align: center;
    color: #FFF;
    border-radius: 10px;
    transition: transform 1.2s;
}

.dp-img img {
    border-left: 1px solid #fff;
}

#dp-slider .dp_item:first-child {
    z-index: 10 !important;
    transform: rotateY(0deg) translateX(0px) !important;
}

.dp_item[data-position="2"] {
    z-index: 9;
    transform: rotateY(0deg) translateX(10%) scale(0.9);
}

.dp_item[data-position="3"] {
    z-index: 8;
    transform: rotateY(0deg) translateX(20%) scale(0.8);
}

.dp_item[data-position="4"] {
    z-index: 7;
    transform: rotateY(0deg) translateX(30%) scale(0.7);
}

#dp-next,
#dp-prev {
    position: absolute;
    top: 105%;
    right: 82%;
    height: 28px;
    width: 28px;
    z-index: 10;
    cursor: pointer;
    margin-top: 20px;
}

#dp-next {
    transform: rotate(180deg);
    margin-top: 20px;
}

#dp-prev {
    left: 16px;
    transform: rotate(0deg);
    margin-top: 20px;
}

/* #dp-dots {
			position: absolute;
			bottom: 25px;
			z-index: 12;
			left: 38%;
			cursor: default;
		} */

/* #dp-dots li {
    display: inline-block;
    width: 13px;
    height: 13px;
    background: #ffff;
    border-radius: 50%;
} */

/* #dp-dots li:hover {
			cursor: pointer;
			background: #FA8C8C;
			transition: background .3s;
		}

		#dp-dots li.active {
			background: #FA8C8C;
		} */

.dp_item {
    width: 85%;
}

.dp-content,
.dp-img {
    text-align: left;
}

.dp_item {
    display: flex;
    /* align-items: center; */
    /* background: #fff; */
    border-radius: 10px;
    overflow: hidden;
    /* border-top: 5px solid #FA8C8C; */
    /* margin-left: -100px; */
}

.dp-content {
    padding-left: 0px;
    padding-right: 0;
    display: inline-block;
    /* width: 100%; */
}

.dp-content h2 {
    color: #41414B;
    font-family: Circular Std Bold;
    font-size: 48px;
    max-width: 460px;
    margin-top: 8px;
    margin-bottom: 0px;
}

.dp-content p {
    color: #74747F;
    max-width: 490px;
    margin-top: 15px;
    font-size: 24px;
}

.dp-content .site-btn {
    margin-top: 15px;
    font-size: 13px;
    padding: 19px 40px;
}

.dp-img:before {
    /* background: -webkit-linear-gradient(-90deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
			background: -o-linear-gradient(-90deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
			background: -moz-linear-gradient(-90deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
			background: linear-gradient(-90deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0)); */
    content: "";
    position: absolute;
    height: 100%;
    width: 25%;
    z-index: 1;
    top: 0;
    pointer-events: none;
    /* background: -webkit-linear-gradient(-90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.75));
			background: -o-linear-gradient(-90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.75));
			background: -moz-linear-gradient(-90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.75));
			background: linear-gradient(-90deg, rgba(255, 255, 255, 0), rgb(255, 255, 255)); */
}

.dp-img img {
    object-fit: cover;
    object-position: right;
}

#dp-slider,
.dp-img img {
    height: 62vh;
    width: 100%;
    margin-top: 30px;
    object-fit: cover;
    border-radius: 50px;
}

#dp-slider .dp_item:hover:not(:first-child) {
    cursor: pointer;
}

.site-btn {
    color: #fff;
    font-size: 18px;

    background: #000000;
    padding: 14px 43px;
    display: inline-block;
    border-radius: 2px;
    position: relative;
    top: -12px;
    text-decoration: none;
}

.site-btn:hover {
    text-decoration: none;
    color: #fff;
}



/* download page css */
.main_banner_download {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/collection/MORANAWHITE.jpg");
    height: 100vh;
    width: 100%;
    object-fit: cover;
    background-size: cover;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main_text_d {
    top: 0%;
    text-align: center;
    display: flex;
    flex-direction: column;

}

.text_light_d {
    color: #ffffff;
    font-size: 96px;
    font-weight: 400;
    line-height: 74px;
    letter-spacing: -5px;
    text-shadow: 0px 0px 28px rgba(0, 0, 0, 0.75);
    color: #FFFFFF;
}

.banner_txt_d {
    width: var(--container-widget-width, 95%);
    max-width: 95%;
    --container-widget-width: 95%;
    --container-widget-flex-grow: 0;
    text-align: center;
    color: #FFFFFF;
    font-family: "Montserrat", Sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: 0px;
}

.main_d_padding {}

.d_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 100px 0px;
}

.image_flex {
    display: flex;
    flex-direction: column;
    /*border: 1px solid #ccc;*/
    padding: 20px;
    /* justify-content: center; */
    /* align-items: anchor-center; */
    background: #fff;
    /* border-radius: 0 30px 0 30px; */
    transition: 0.4s all ease-in-out;
}

.image_flex:hover {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
}

.image_height {
    height: auto;
    width: 100%;
    /* border: 1px solid grey; */
    /* border-radius: 0 30px 0 30px; */
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.pattern_height {
    /*height: 53px;*/
    width: 100%;
    margin-top: 10px;
}


.cat-btn {
    background: #fff;
    color: #000;
    font-weight: 600;
    padding: 5px 30px;
    border-radius: 30px;
    margin: 15px 0 0;
    transition: all 0.5s ease-in-out;
    border: 1px solid #ccc;
}

.cat-btn:hover {
    background: #000;
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.5s ease-in-out;
    border: 1px solid transparent;
}

.d_button {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: auto;
    border: 0;
    outline: none;
    box-shadow: none;
    height: 3.333vw;
    background-color: #ffffff;
    padding: 0 1.667vw;
    cursor: pointer;
    color: #000000;
    border-radius: 40px;
    text-decoration: none;
    margin: 20px 20px;

    font-family: "Montserrat", Sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.d_button2 {
    display: flex;
    justify-content: center;
}



/* blog page css */

.blog_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 60px 0;
    gap: 30px;

}

.blog_flex {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.229);
}

.blog_height {
    height: 323px;
    width: auto;
}

.blog_font {
    width: var(--container-widget-width, 100%);
    max-width: 100%;
    --container-widget-width: 100%;
    --container-widget-flex-grow: 0;
    text-align: left;
    color: #1A1A1A;
    font-family: "Montserrat", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: -0.4px;
    padding: 30px 16px;
}

.blog_button {
    width: 100%;
    text-align: end;
    background-color: #000000;
}

.contact_img {
    background-image: linear-gradient(0deg, rgb(16 16 16 / 65%), rgba(16 16 16 / 65%)), url("../img/marble2.jpg");
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 80px 80px 80px;
    height: 100%;
}

.contact_visit h1 {

    font-size: 56px;
    font-weight: 400;
    line-height: 65px;
    letter-spacing: 0.5px;
    color: #FFFFFF;
}

.contact_visit {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    text-align: center;
    gap: 15px;

}

.contact_txt {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: #FFFFFF;

}

.contact_txt2 {
    margin: -10px 0px 0px 0px;
    text-align: left;
    color: #FFFFFF;

    font-size: 16px;
    font-weight: 500;

}

.contact_get {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 5.2px;
    color: #FFFFFF;
    text-decoration: none;
    color: #000;
    text-decoration: none;
    background: #fff;
    padding: 10px;
}

a {
    text-decoration: none;
}

.contact_flex {
    /* display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center; */
    display: flex;
    flex-direction: column;
    margin: auto;
    padding-bottom: 50px;
}

.contact_text {
    font-size: 56px;
    font-weight: 400;
    line-height: 65px;
    letter-spacing: 0.5px;
    color: #000000;
    margin-top: 70px;
    text-align: center;
}

.contact_text p {
    text-align: center;
    color: #000000;
    font-family: "Montserrat", Sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
}

.contact_icon {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.icon_flex {
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.icon_bg2 {
    background-color: #f9f9f9;
    border-radius: 50px;
    height: 60px;
    width: 60px;
    padding: 15px 0;
    text-align: center;
}

.icon_txt {
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1.5px;
    display: flex;
    justify-content: center;
    align-items: end;
}

.follow {
    display: flex;
    text-align: center;
    margin: auto;
    margin-top: 18px;
    margin-bottom: 18px;
    align-items: baseline;
}

.follow2 {
    text-align: end;
    padding: 0px 20px;
    border-right: 1px solid black;
}

.padding_contect {
    padding: 0px 20px;
}

.contact_grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    gap: 20px;
}

.input_width {
    padding: 15px 0;
    background-color: transparent;
    border-bottom: 1px solid #fff;
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    font-family: "Be Vietnam Pro", sans-serif !important;
}

.contect_center {
    margin: auto;
    /* margin: 30px 0; */
    margin-top: 20px;
    margin-bottom: 20px;
}

.contact_icon_grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-bottom: 24px;
}

.contact_colunm {
    display: flex;
    flex-direction: column;
}

.contact_img2 {
    max-width: 25%;
    margin: auto;
}

label {
    font-size: 12px;
    margin: auto;
    margin-top: 10px;
    font-family: 'Montserrat';
}

::placeholder {
    color: #b6b6b6;
}

.form_button2 {
    background-color: #000000;
    color: white;
    /* position: relative; */
    max-width: max-content;
    padding: 12px 30px;
    border-radius: 30px;

    margin: auto;
}

.icon_flex2 {
    display: flex;
    gap: 12px;
    justify-content: stretch;
    align-items: baseline;

}

hr {
    margin: 0rem 0;
    color: inherit;
    border: 0;
    border-top: 1px solid #bcb6b6;
    opacity: .25;
    background: transparent;
    /* color: tan; */
}

.mx-wid {
    max-width: 900px;
    margin: auto;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.timeline_part h2 {
    font-size: 55px;
    font-family: "Be Vietnam Pro", sans-serif !important;
    text-align: center;
}

.timeline_part h6 {
    font-size: 20px;
    font-family: "Be Vietnam Pro", sans-serif !important;
    text-align: center;
    text-transform: uppercase;
}

.timeline_part {
    background: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 1px 4px 0px;
    padding: 50px;
    position: relative;
    top: -52px;
    border-radius: 15px;
    color: #fff;
}

.contact-data {
    padding: 150px 0 50px;
    text-align: center;
}

.contact-data h2 {
    font-size: 64px;
    font-family: Swifted DEMO;
}

.swif-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

/* Hover to display the dropdown menu */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    /* Show the dropdown on hover */
}

.catalogue_grid{
        display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 100px 0px;
}