@font-face {
    src: url("Swifted DEMO.otf");
    font-family: "Swifted DEMO";
}
@font-face {
    src: url("Avita-OutlineBlack.otf");
    font-family: "Avita-OutlineBlack";
}
/* @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: 5px 17px;
    border-radius: 31px;
    height: 46px;
}

#myBtn:hover {
    background-color: #555;
}
p,
span {
    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; */

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

}

h1 {
    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;
}

.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/view/highgloss/White_Lines.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: #000;
    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: #ffffff75;
    width: 1px;
    height: 100%;
    bottom: 0;
    right: 586px;
    top: 0;
}

.left-and-right::after {
    content: '';
    position: absolute;
    background-color: #ffffff75;
    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: 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-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 20px;
    transition: all .5s ease-in-out;
}

.banerbutton_color:hover {
    background-color: #ffffff;
    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 20px;
    transition: all .5s ease-in-out;

}


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

.corner-shape2 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 25px;
    height: 25px;
    opacity: 0;
    transition: opacity 0.2s ease-in-out 0.1s;
    transform: rotate(270deg);
    display: none;
}

.banerbutton_color:hover .corner-shape {
    opacity: 1;
}
.banerbutton_color:hover .corner-shape2 {
    opacity: 1;
}
.bg_big {
    background: #F6F6F6;
    padding-bottom: 115px;
}

.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;
  
}

.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: 100px;
    align-items: center;
}

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

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

.index_img {
    height: 80vh;
    width: 100%;
    padding-top: 20px;
    object-fit: cover;
    margin-left: 88px;
    object-position: left;
}

.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: 65px;
    letter-spacing: -3.4px;
    
}

.small_font {
    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: 15px;
    border: 1px solid #e3e0e0d1;
    height: 40vh;
    width: 39% !important;
    text-align: start;
    top: -40px;
    margin-left: 193px;
    margin-top: -174px;
    margin-right: 286px;
    animation: myAnim 5s infinite;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); */
}

.mt_txt2 .contain_ {
    padding-right: 20px;
    padding-left: 20px;
}

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

.box_font {
    font-size: 13px;
}
.fs1{
    font-size: 17px;
}
.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-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: 10px;
    margin-top: 0px;
    justify-content: stretch;
    margin: auto;
    width: fit-content;
}

.icon_flex p {
    /* margin-bottom: 20px; */
        line-height: normal;
}

.form-box button {
    display: flex;
    margin: auto;
    width: auto;
    padding: 5px 35px;
    border-radius: 0px;
    border: none;
}

.button_flex {
    background-color: #000000;

    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    fill: #FFFFFF;
    color: #FFFFFF;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #000000;
    border-radius: 0px 0px 0px 0px;
    padding: 8px 16px;
}

.button_flex:hover {
    background-color: #ffffff;

    font-size: 16px;
    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 16px;

}

.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 {
        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/view/carving/BRIHANT_SLATE.png");
    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: "Be Vietnam Pro", Sans-serif;
    font-size: 20px;
    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-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: -250px;
}

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

.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-size: 13px;
    text-transform: uppercase;
    color: #000;
    padding: 0;
}

@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-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;
        text-align: center;
    }

    .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.8), rgba(0, 0, 0, 0.8)), url("../img/view/glossy-best/calcatta_calvin .png") no-repeat center center / cover;
    /* height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    background-size: cover;

}

.overlay2 {

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

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

.form_flex {
    display: flex;
    flex-direction: row;
    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: 10px;
    background: #f9f9f900;
    color: #fff;
}

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

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

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;
    padding: 10px 25px;
}
.black-b{
    width: 100%;
    padding: 10px;
    background: #f9f9f900;
    border: 1px solid #000;
    padding: 8px 25px;
}
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;
    margin-bottom: 15px;
}

.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;
    transition: all .5s ease-in-out;

}

.form_button:hover {
    background-color: #000;
    color: #fff;
    transition: all .5s ease-in-out;
}

.form_button:hover .corner-shape {
    opacity: 1;
    /* background-color: #000000; */
    color: white;
    border: none;
    transition: all .5s ease-in-out;

}

.form_button:hover .corner-shape2 {
    opacity: 1;
    /* background-color: #000000; */
    color: white;
    border: none;
    transition: all .5s ease-in-out;

}

.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: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.3px;
    color: #A3A3A3;
    text-align: left;
}

.Appointment_button {
    background-color: #000000;
    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-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;
}

.heading_last {

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

.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: 250px;
    /*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;

    margin-top: 20px;
}

.txt_mt {
    /* margin-top: 37px; */
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 22px;
    color: #000;
    font-family: "Be Vietnam Pro", Sans-serif;
}
.bor{
    border: 1px solid #000 !important;
}
/* .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-size: 22px;
    font-weight: 500;
    color: #000;
    margin-top: 20px;
}

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


.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: 40px 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-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;
}


.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 {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}


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-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-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-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;
    padding: 80px 0;
}

.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;
    align-items: center;
    padding-top: 50px;
}

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

.value_txt {
    border-bottom: 1px solid #00000024;
    font-size: 20px;
    font-weight: 500 !important;
    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-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-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: 60vh;
    width: 100%;
    object-fit: cover;
    background-size: cover;
    margin: auto;
    display: flex;
    justify-content: center;
    background-position: center;
    background-position: bottom;
    background-size: cover;
    align-items: center;
}

/* .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; */
    max-width: 50%;
    margin: auto;
    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-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 22px;
    letter-spacing: 0px;
    color: #000000;
}

.banner2_txt4 {

    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; */
    align-items: center;
}

.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: 350px;
    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(#000000, #000000f9, #003872);
    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_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 {
   
    content: "";
    position: absolute;
    height: 100%;
    width: 25%;
    z-index: 1;
    top: 0;
    pointer-events: none;
   
}

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

#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-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: space-between;
    /* 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;
    width: fit-content;
}

.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-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.d_button2 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: auto;
    margin: inherit;
    padding: 15px 0 0px;
    gap: 10px;
    align-items: 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-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_flex a {
    width: fit-content;
    margin: auto;
}
.fixa a {
    width: fit-content;
    margin: auto;
    border: 1px solid #000;
    display: flex;
}

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

.contact_text p {
    text-align: center;
    color: #000000;

    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;
    margin-bottom: 0;
}

.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;

}

::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: center;

}

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: "Swifted DEMO";
    text-align: center;
    font-weight: 700;
}

.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(4, 1fr);
    gap: 25px;
    padding: 100px 0px;
}

.antiek-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(6, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    height: 80vh;
    padding-top: 50px;
}

.antiek-grid a {
    position: relative;
    display: flex;
    align-items: end;
    justify-content: start;
    color: white;
    font-size: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background 0.5s ease;
    padding: 0px 0px 10px 10px;
}

/* Initially, no gradient on the div */
.antiek-grid a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    transition: background 0.5s ease;
}

.antiek-grid a:hover::after {
    background: linear-gradient(#0000009e, #000000c4);
}

/* Text styling */
.antiek-grid a h2 {
    position: relative;
    margin: 0;
    opacity: 1;
    color: white;
    transition: color 0.5s ease;
    font-size: 20px;
}

.antiek-grid a:hover h2 {
    color: #fff;
    /* Pure white color */
}

.div1 {
    grid-area: 1 / 1 / 3 / 2;
    background:linear-gradient(#0000009e, #0000003d), url('../img/view/carving/brihant-bronze.png');
}

.div2 {
    grid-area: 3 / 1 / 5 / 2;
    background:linear-gradient(#0000009e, #0000003d), url('../img/view/highgloss/absolute-black.jpg');
}

.div3 {
    grid-area: 5 / 1 / 7 / 3;
    background:linear-gradient(#0000009e, #0000003d), url('../img/view/marvello/onyx-flore.jpg');
}

.div4 {
    grid-area: 1 / 2 / 3 / 4;
    background: linear-gradient(#0000007d, #0000003d), url('../img/view/glossy/capsiron-slate.jpg');
}

.div5 {
    grid-area: 3 / 2 / 5 / 4;
    background:linear-gradient(#0000009e, #0000003d), url('../img/view/glossy-best/adanga-grey.jpg');
}

.div6 {
    grid-area: 5 / 3 / 7 / 4;
    background:linear-gradient(#0000009e, #0000003d), url('../img/view/ghr/terralino-blue.jpg');
}

.div7 {
    grid-area: 1 / 4 / 3 / 5;
    background: linear-gradient(#0000009e, #0000003d), url('../img/view/matt/infinity-beige.png');
}

.div8 {
    grid-area: 3 / 4 / 7 / 5;
    background:linear-gradient(#0000009e, #0000003d), url('../img/view/decors/CARVO-CAPRICON-BEAUTY-min.jpg');
}

.div9 {
    grid-area: 1 / 5 / 5 / 6;
    background:linear-gradient(#0000009e, #0000003d), url('../img/view/supergloss/DALTON-ROYAL-DECOR-min.jpg');
}

.div10 {
    grid-area: 5 / 5 / 7 / 6;
    background:linear-gradient(#0000009e, #0000003d), url('../img/view/wood-terrazzo/VINE-WOOD-TAN-min.jpg');
}

.antiek-grid a h2 {
    position: relative;
    margin: 0;
    color: white;
    /* opacity: 0; */
    /* Hide text by default */
    transition: opacity 0.8s ease;
    /* Smooth fade-in */
    text-align: center;
    font-size: 20px;
}

/* On hover: Show text */
.antiek-grid a:hover h2 {
    opacity: 1;
    /* Fade in text */
}

/* Overlay gradient */
.antiek-grid a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    /* No overlay by default */
    transition: background 0.8s ease;
}

/* On hover: Add semi-transparent overlay */
.antiek-grid a:hover::after {
    background: rgba(0, 0, 0, 0.329);
    /* 50% overlay */
}

/* Make sure text is above overlay */
.antiek-grid a h2 {
    position: relative;
    z-index: 1;
}
.overlay2 .detail{
    color: #fff;
}


.utility h2 {
    padding-bottom: 35px;
    font-family: "Swifted DEMO";
    font-size: 56px;
    line-height: 65px;
    text-align: center;
}

.groupofcom {
    padding: 100px 0 60px;
}

.groupofcom h2 {
    font-family: "Swifted DEMO";
    font-size: 56px;
    line-height: 65px;
    text-align: center;
}

.logo-container {
    /* Mimics the rounded container from your image */
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    max-width: 1200px;
    /* Adjust max-width as needed */
    margin: 0 auto;
    /* Centers the main container */
}

.logo-row {
    display: flex;
    justify-content: center;
    /* Centers the logos horizontally within the row */
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
    /* Space between the rows */
    padding-top: 30px;
}

.logo-e {
    height: auto;
    /* Maintain aspect ratio */
    width: 200px;
    /* Max width for each logo, adjust as needed */
    margin: 0 20px;
    /* Horizontal space between logos */

}

/* Specific adjustments for the second row (2 logos) if needed */
.logo-row:last-child {
    margin-bottom: 0;
    /* Remove bottom margin from the last row */
}

/* Optional: Add media query for better mobile responsiveness */
@media (max-width: 768px) {
    .logo-row {
        /* On smaller screens, allow logos to stack vertically */
        flex-wrap: wrap;
    }

    .logo {
        margin: 10px 10px;
        /* Adjust spacing for smaller screens */
        max-width: 45%;
        /* Allow logos to take up almost half the width to stack 2 per row */
    }

    .logo-container {
        padding: 15px;
    }
}

.certification-grid- {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    padding-top: 50px;
    /* background: #e6e7e9; */
    padding: 50px 0;
    /* margin-top: 50px; */
    border-radius: 20px;
    align-items: baseline;
}

.certification-grid- img {
    background-color: #eeeeee;
    padding: 10px;
    text-align: end;
    width: 100%;
    margin: auto;
    height: 56vh;
    object-fit: cover;
}

.certification-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    /* padding-top: 50px; */
    /* background: #e6e7e9; */
    /* padding: 50px; */
    margin-top: 50px;
    border-radius: 20px;
    /* border: 1px solid #c1bfbf; */
}

.certification-grid img {
    background-color: #eeeeee;
    padding: 10px;
    text-align: end;
    width: 100%;
    margin: auto;
}

.gallery_item {
    margin-bottom: 5px;
    overflow: hidden;
}

.export-grid-four {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 25px;
    /* max-width: 1000px; */
    margin: auto;
    /* padding-top: 50px; */
    align-items: center;
    padding: 0;
}

.export-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 700px;
    margin: auto;
    padding-top: 25px;
    align-items: center;
}

.certificatess h2 {
    font-family: "Swifted DEMO";
    font-size: 56px;
    line-height: 65px;
    text-align: center;
}

.member-af h2 {
    font-family: "Swifted DEMO";
    font-size: 56px;
    line-height: 65px;
    text-align: center;
}

.membership {
    padding: 100px 0;
}

.membership p {
    text-align: center;
}

.certificate {
    padding: 100px 0;
}

.certificate p {
    text-align: center;
}

.award p {
    text-align: center;
}

.certification-grid- h3 {
    color: #000;
    text-align: center;
    padding-top: 10px;
    font-weight: 500;
    font-size: 20px;
}

.membership li {
    list-style-type: none;
    margin: auto;
}


/*  */



.spacer-100 {
    width: 100px;
    height: 100px;
}

.spacer-60 {
    width: 60px;
    height: 60px;
}

.spacer-30 {
    width: 30px;
    height: 30px;
}

.spacer-15 {
    width: 15px;
    height: 15px;
}

.marquee {
    position: relative;
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 600px;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    flex: 1;
}

.marquee-horizontal {
    position: relative;
    z-index: 200;
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 60px;
    justify-content: flex-start;
    align-items: center;
    background-color: #000000;
}

.track-horizontal {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee-horizontal 40s linear infinite;
}

.marquee-horizontal-large {
    position: relative;
    z-index: 200;
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 300px;
    justify-content: flex-start;
    align-items: center;
    flex: 0 0 auto;
    margin-top: 24px;
}

.marquee-text {
    margin-right: 8vw;
    flex: 0 0 auto;
    color: #ffffff;
    text-transform: uppercase;
}

.track-horizontal-alt {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.track-horizontal-alt {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee-horizontal-alt 40s linear infinite;
}

.icon-container {
    display: flex;
    width: 210px;
    height: 15vw;
    justify-content: center;
    align-items: center;
    border-radius: 15px;

}

.icon-container-alt {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
    border-radius: 8px;

}

.icons {
    height: 300px;
    width: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.col {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex: 1;
}

.col.small {
    width: 41%;
    flex: 0 0 auto;
}

.header-quaternary {
    max-width: 100%;
    font-size: 14px;
    letter-spacing: 1px;
    color: #000000;
    padding: 2px 4px;
}

.header-secondary {
    max-width: 100%;
    font-size: 40px;
    line-height: 120%;
}

.contain_ {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 1400px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 60px;
    padding-left: 60px;
}

.flex-vertical {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.flex-horizontal {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.flex-horizontal.flex-left {
    justify-content: flex-start;
}

.track-vertical {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex: 1;
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee-vertical 20s linear infinite;
}

.track-vertical-alt {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee-vertical-alt 20s linear infinite;
}

.marquee-cover {
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    z-index: 10;

}

.marquee-cover-horizontal {
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    z-index: 10;
}

@keyframes marquee-vertical {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-50%);
    }
}

@keyframes marquee-vertical-alt {
    from {
        transform: translateY(-50%);
    }

    to {
        transform: translateY(0%);
    }
}

@keyframes marquee-horizontal {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes marquee-horizontal-alt {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0%);
    }
}




/*  */


.testimonial-container {
    width: 100%;
    max-width: 100rem;
    padding: 2rem;
    margin-top: 60px;
}

.testimonial-grid {
    display: grid;
    gap: 5rem;
}

.image-container {
    position: relative;
    width: 80%;
    height: 24rem;
    perspective: 1000px;
}

.testimonial-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.name {
    font-size: 20px;
    font-family: "Be Vietnam Pro", Sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 0.25rem;
}

.designation {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.quote {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.75;
}

.arrow-buttons {
    display: flex;
    gap: 1rem;
    padding-top: 3rem;
}

.arrow-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #141414;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.arrow-button:hover {
    background-color: #22365F;
}

.arrow-button svg {
    width: 30px;
    height: 30px;
    fill: #f1f1f7;
    transition: transform 0.3s;
}

.arrow-button:hover svg {
    fill: #ffffff;
}

/* .prev-button:hover svg {
  transform: rotate(-12deg);
}
.next-button:hover svg {
  transform: rotate(12deg);
} */
@media (min-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr 1fr;
    }

    .arrow-buttons {
        padding-top: 0;
    }
}



.media-gallary {
    padding: 50px 100px;
}

.gallary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
    justify-content: center;
    align-items: center;
}

.gallary .card {
    color: #252a32;
    border-radius: 0px;
    background: transparent;
    /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24); */
    overflow: hidden;
    /* Hides image overflow */
    padding: 10px;
    border: 1px solid #d4d4d4;
}

.gallary .card-image {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 70%;
    background: #ffffff;
    overflow: hidden;
    /* Ensures zoomed image doesn't overflow */
}

.gallary .card-image img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    /* Smooth scaling effect */
    transition: all .5s ease-in-out;

}

.gallary .card-image:hover img {
    transform: scale(1.1);
    /* Zoom effect */
    transition: all .5s ease-in-out;
}


@media only screen and (max-width: 600px) {
    .gallary {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 1rem;
    }
}



.button {
    cursor: pointer;
    position: relative;
    padding: 10px 20px;
    text-decoration: none;
    border: none;
    color: #fff;
    font-size: 18px;
    /* text-transform: uppercase; */
    /* font-family: sans-serif; */
    letter-spacing: 1px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.8);
    border-radius: 30px;
}

.button:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
}

.button::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: 0.5s;
    transition-delay: 0.5s;
}

.button:hover:after {
    left: 100%;
}

.button span {
    position: absolute;
    display: block;
    transition: 0.5s ease;
}

.button span:nth-child(1) {
    top: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
}

.button:hover span:nth-child(1) {
    width: 100%;
    transform: translateX(100%);
}

.button span:nth-child(2) {
    top: 0;
    left: 0;
    width: 1px;
    height: 0;
    background: #fff;
}

.button:hover span:nth-child(2) {
    height: 100%;
    transform: translateY(100%);
}

.button span:nth-child(3) {
    bottom: 0;
    right: 0;
    width: 0;
    height: 1px;
    background: #fff;
}

.button:hover span:nth-child(3) {
    width: 100%;
    transform: translateX(-100%);
}

.button span:nth-child(4) {
    bottom: 0;
    right: 0;
    width: 1px;
    height: 0;
    background: #fff;
}

.button:hover span:nth-child(4) {
    height: 100%;
    transform: translateY(-100%);
}



/* button - 2 */

.button-tra {
    cursor: pointer;
    position: relative;
    padding: 10px 20px;
    text-decoration: none;
    border: none;
    color: #000;
    font-size: 18px;
    /* text-transform: uppercase; */
    /* font-family: sans-serif; */
    letter-spacing: 1px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.8);
    border-radius: 30px;
}

.button-tra:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: rgb(0 0 0 / 12%);
}

.button-tra::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: 0.5s;
    transition-delay: 0.5s;
}

.button-tra:hover:after {
    left: 100%;
}

.button-tra span {
    position: absolute;
    display: block;
    transition: 0.5s ease;
}

.button-tra span:nth-child(1) {
    top: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #000;
}

.button-tra:hover span:nth-child(1) {
    width: 100%;
    transform: translateX(100%);
}

.button-tra span:nth-child(2) {
    top: 0;
    left: 0;
    width: 1px;
    height: 0;
    background: #000;
}

.button-tra:hover span:nth-child(2) {
    height: 100%;
    transform: translateY(100%);
}

.button-tra span:nth-child(3) {
    bottom: 0;
    right: 0;
    width: 0;
    height: 1px;
    background: #000;
}

.button-tra:hover span:nth-child(3) {
    width: 100%;
    transform: translateX(-100%);
}

.button-tra span:nth-child(4) {
    bottom: 0;
    right: 0;
    width: 1px;
    height: 0;
    background: #ccc;
}

.button-tra:hover span:nth-child(4) {
    height: 100%;
    transform: translateY(-100%);
}



/*  */
section.times_line {
    padding-top: 50px;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: #000 !important;
}

.sec-bg-cover {
    background-size: cover;
    background-position: center;
    border-radius: 0;
    height: 25vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 85px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffff;
}

.sec-bg-cover h2 {
    text-align: center;
    font-family: "Swifted DEMO";
    font-size: 40px;
}

.contact-sec {
    padding: 100px 0;
}



/* css-for export */
.cou-we-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 50px;
}

.cou-we-grid .we-team {
    position: relative;
    z-index: 1;
}

.cou-we-grid .figcaption {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    padding: 0 33px;
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
    z-index: 99;
}

.we-team img {
    width: 120px;
}

.cou-we-head h2 {
    font-family: "Swifted DEMO";
    font-size: 56px;
    line-height: 65px;
    text-align: center;
}

.cou-we-head p {
    text-align: center;
}



.semless-head h2 {
    font-family: "Swifted DEMO";
    font-size: 56px;
    line-height: 65px;
    text-align: left;
}

.grid-seam {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 80px;
    margin-bottom: 80px;
}

.raw-mat {
    border: 1px solid lightgrey;
    padding: 20px;
}

.raw-mat img {
    max-width: 100px;
    margin-bottom: 20px;
}

.raw-matt-head h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 2px solid lightgrey;
    padding-bottom: 10px;
}

.bggg {
    background-color: #fff;
    padding: 80px 0 0;
}

.pddd {
    padding: 80px 0;
}

.two-star-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    align-items: center;
}

.two-star-grid img {
    width: 50%;
    margin: auto;
    background-color: #eeeeee;
    padding: 10px;
    display: flex;
}

.two-star {
    padding: 40px 0;
    background-color: #f6f6f6;
}

.star-cert-text h2 {
    font-family: "Swifted DEMO";
    font-size: 56px;
    line-height: 65px;
    text-align: left;
}

body {
    margin: 0;
    background-color: transparent;
}

#scroll-container {
    height: 600vh;
}

#image-frame {
    /* Make the image stick to the top of the viewport */
    position: sticky;
    top: 200px;
    /* Center the image horizontally */
    display: block;
    margin-left: auto;
    margin-right: auto;
    /* Set the size of your animation frame */
    width: 100vw;
    /* max-width: 800px; */
    height: auto;
    object-fit: contain;
}

.export-sec {
    padding: 120px 0 100px;
    background-color: #F6F6F6;
}

.export-head h2 {
    font-family: "Swifted DEMO";
    font-size: 56px;
    line-height: 65px;
    text-align: center;
}

.truck-img {
    width: 50%;
    display: flex;
    margin: auto;
    padding-bottom: 50px;
    padding-top: 50px;
}

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

.hub-content h2 {
    font-family: "Swifted DEMO";
    font-size: 56px;
    line-height: 65px;
    text-align: left;
}

.sem {
    padding: 100px 0;
}


.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    height: 100px;
    position: relative;
    margin-top: 80px;
}

.marquee {
    display: flex;
    width: fit-content;
    animation: scroll 20s linear infinite;
}

.marquee img {
    height: 100px;
    width: auto;
    flex-shrink: 0;
    margin-right: 30px;
    /* spacing between images */
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

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

/* Duplicate images for seamless scroll */
.marquee-content {
    display: flex;
}


.tab-buttons {
    margin-bottom: 20px;
    text-align: left;
}

.tab-buttons button {
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    font-size: 20px;
    border: none;
    background-color: transparent;
    /* border-radius: 5px; */
    color: #212121;
}

.tab-buttons button.active {
    background-color: transparent;
    color: #212121;
    border-bottom: 2px solid lightgrey;
    font-weight: 700 !important;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}


/* Date badge on top-right of image */
.card-date {
    position: absolute;
    top: 8px;
    right: 8px;
    background: white;
    color: #333;
    padding: 10px 8px;
    font-size: 12px;
    border-radius: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    z-index: 2;
    display: flex;
    align-items: center;
}
.card-date i{
    padding-right: 5px;
}

/* Title below the image */
.card-title {
    background: white;
    padding-top: 15px;
    font-weight: 500;
    text-align: center;
    font-size: 20px;
    color: #222;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-top: 1px solid #eee;
    font-family: "Be Vietnam Pro", Sans-serif;
}

.bg_downn {
    padding: 50px 0;
    border-top: 1px solid black;
    /* border-bottom: 2px solid black; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    display: grid;
    grid-template-columns: repeat(2,1fr);
}


.world-exp {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: auto;
}

.world-exp img {
    width: 80%;
    margin: auto;
    display: flex;
    padding-top: 80px;
}
.world-exp img {
  width: 100%;
  height: auto;
  display: block;
}
.location-pin {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: white; /* background behind the image */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.2s;
  z-index: 2;
}

.location-pin img {
  width: 22px; /* size of the pin icon */
  height: 22px;
  object-fit: contain;
}

.location-pin:hover {
  transform: scale(1.1);
}




.tooltip.active {
  display: block;
}


.tooltip {
    position: absolute;
    background: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    white-space: nowrap;
    font-size: 13px;
    /* display: none; */
    z-index: 999;
    opacity: 1 !important;
}

.explore_button {
    background-color: #000000;

    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; */
    transition: all 0.3s ease-in-out;
}
.explore_button:hover {
    background-color: #ffffff;

    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;
}

.black-button{
    background-color: #000;
    padding: 6px 15px;
    border: 1px solid #000;
    font-size: 16px;
    color: #fff;
    transition: all .5s ease-in-out;
}
.black-button:hover{
    background-color: transparent;
    padding: 6px 15px;
    border: 1px solid #000;
    font-size: 16px;
    color: #000;
    transition: all .5s ease-in-out;

}


.grid-container {
  display: grid;
  grid-template-columns: 20% 20% 20% 20% 20%; /* Define the column widths */
  gap: 25px; /* Adjust the gap between items */
}

.grid-item {
  background-color: #f2f2f2;
  padding: 20px;
  text-align: center;
  border: 1px solid #ddd;
}


.footer-sec{
    background-color: #f9f9f9;
    padding:80px 150px 10px 
}

.sec-align{
    padding-left: 150px !important;
    padding-right: 150px !important;
}

.card-tl{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.form-head {
    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;
    margin-bottom: 15px;
    font-family: "Swifted DEMO";
    text-align: center;
}

.ovelp{
    padding-top: 50px;
}

 .ts-carousel-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    overflow: hidden;
}

.ts-carousel { 
    position: relative; 
    width: 100%; 
    overflow: hidden; 
    max-width: 885px; 
    z-index: 999; 
}

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

.ts-testimonial {
    flex: 0 0 50%;
    box-sizing: border-box;
    padding: 42px;
    background: #fff;
    border-radius: 8px;
    text-align: left;
    border: 1px solid #0000000f;
    margin: 0 1px;
    
}
.ts-testimonial h3{
    font-family: "Be Vietnam Pro", Sans-serif;
    font-size: 20px;
}
.ts-stars i,
.ts-stars {
    font-size: 14px;
    color: gold;
}

/* Navigation buttons */
.ts-prev,
.ts-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 1;
    display: none;
}
.big_slider{
    text-align: left;
}
.ts-prev { left: 10px; }
.ts-next { right: 10px; }



.card-title {
    background: transparent;
    padding-top: 0;
    font-weight: 500;
    text-align: center;
    font-size: 18px;
    color: #222;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-top: none;
    margin: 0;
}
.card-tl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
}
.card-dates {
    background: transparent;
    color: black;
    border: 1px solid black;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
  font-family: "Be Vietnam Pro", sans-serif;

}

.w-90{
    width: 90%;
}

.question {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 20px 80px 20px 20px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 15px;
}

.question::after {
  content: "\002B";
  font-size: 20px;
  position: absolute;
  right: 20px;
  transition: 0.2s;
  font-weight: 400;
}

.question.active::after {
  transform: rotate(45deg);
}

.answercont {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.answer {
  padding: 0 20px 20px;
  line-height: 1.5rem;
  font-size: 17px;
  font-family: "Be Vietnam Pro", sans-serif !important;
}

.question.active + .answercont {
}

@media screen and (max-width: 790px) {
  
  .wrapper {
    width: 80%;
  }
}

.faq-width{
    max-width: 75%;
    margin: auto;
}

.contct-grid-new{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
}
table{
  font-family: "Be Vietnam Pro", sans-serif !important;

}

.grid-footer a{
    line-height: 30px;
}

form#contactForm {
    background: #fff;
    padding: 50px 25px;
    border-radius: 20px;
}

input::placeholder {
  color: #000;
  font-size: 17px;
  opacity: 0.8;
}
input::placeholder {
  color: #000;
  font-size: 17px;
  opacity: 1;}
textarea::placeholder {
  color: #000;
  font-size: 17px;
  opacity: 0.8;
}
    .input_wrapper {
        position: relative;
        display: inline-block;
        width: 100%;
    }

    .input_wrapper i {
        position: absolute;
        top: 50%;
        left: 15px;
        transform: translateY(-50%);
        color: #999;
    }

    .input_wrapper input,
    .input_wrapper textarea {
        width: 100%;
        padding: 10px 10px 10px 40px; /* Add left padding for icon space */
        border: 1px solid #ccc;
        border-radius: 4px;
    }

     .input_wrappers {
        position: relative;
        display: inline-block;
        width: 100%;
    }

    .input_wrappers i {
        position: absolute;
        top: 15%;
        left: 15px;
        transform: translateY(-50%);
        color: #999;
    }

    .input_wrappers input,
    .input_wrappers textarea {
        width: 100%;
        padding: 10px 10px 10px 40px; /* Add left padding for icon space */
        border: 1px solid #ccc;
        border-radius: 4px;
        background-color: transparent;
    }
 
    .input_width {
        width: 100%;
        box-sizing: border-box;
    }
    .text_area{
        padding-top: 25px;
    }

      .input_wrapper input,
    .input_wrapper select {
        padding: 10px 10px 10px 40px; /* space for icon */
        border: 1px solid #ccc;
        border-radius: 4px;
        box-sizing: border-box;
        background-color: transparent;

    }

    .phone_group {
        display: flex;
        gap: 10px;
    }

    .country_code {
        flex: 0 0 100px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .phone_input {
        flex: 1;
    }
    .catalogue_grid h5{
  font-family: "Be Vietnam Pro", sans-serif !important;

    }