/*---color---Variable---*/
:root {
    --whiteBg: #fff;
    --whiteColor: #fff;
    --whiteBorder: #fff;

    --blackColor: #333333;
    --blackBg: #333333;
    --blackborder: #333333;

    --brandColor: #ED1C24;
    --brandBg: #ED1C24;
    --brandborder: #ED1C24;

    --greyBg: #F7F4EB;
    --greyBorder: #F7F4EB;
    --greyColor: #F7F4EB;

}

.playfair_display {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

html,
body {
    color: #333333;
    background-color: var(--whiteBg);
    position: relative;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li {
    margin: 0px;
    padding: 0px;
}

p {
    margin-bottom: 5px;
    font-size: 16px;
    line-height: 22px;
    color: #333333;
    line-height: 26px;
}

label {
    display: block;
    font-weight: 500;
    margin-bottom: 0;
}

ul,
li {
    list-style: none;
}

img {
    max-width: 100%;
    height: initial;
    display: inline-block;
    line-height: 0px;
}

a {
    text-decoration: none;
    display: inline-block;
}

a:focus {
    text-decoration: none;
    outline: none;
}

a:hover {
    text-decoration: none;
}

button {
    background: none;
    border: none;
    font-family: "Montserrat", sans-serif;
}

button:focus {
    outline: none;
}

picture {
    display: block;
    line-height: 0px;
}

textarea {
    resize: none;
    display: block;
    padding: 15px;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    height: 34px;
}

input:focus,
button,
input[type="submit"],
input {
    outline: none;
    font-family: "Montserrat", sans-serif;
}

select {
    display: block;
    width: 100%;
    font-family: "Montserrat", sans-serif;
}

input {
    display: block;
    padding: 12px 15px;
    width: 100%;
}

input::placeholder {
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
}

input::-ms-input-placeholder {
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
}

input::-ms-input-placeholder {
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
}

textarea::placeholder {
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
}

select:focus {
    outline: none;
}

textarea:focus {
    outline: none;
}

.w_100 {
    width: 100% !important;
    display: block;
}

.text-center {
    text-align: center;
}

.row {
    display: flex;
    margin: 0px -15px;
    flex-wrap: wrap;
}

.col-sm-2 {
    width: 16.66666667%;
    padding: 0px 15px;
}

.col-sm-3 {
    width: 25%;
    padding: 0px 15px;
}

.col-sm-4 {
    width: 33.33333333%;
    padding: 0px 15px;
}

.col-sm-5 {
    width: 41.66666667%;
    padding: 0px 15px;
}

.col-sm-6 {
    width: 50%;
    padding: 0px 15px;
}

.col-sm-7 {
    width: 58.33333333%;
    padding: 0px 15px;
}

.col-sm-8 {
    width: 66.666667%;
    padding: 0px 15px;
}

.col-sm-9 {
    width: 75%;
    padding: 0px 15px;
}

.col-sm-10 {
    width: 83.33333333%;
    padding: 0px 15px;
}

.col-sm-11 {
    width: 91.66666667%;
    padding: 0px 15px;
}

.col-sm-12 {
    width: 100%;
    padding: 0px 15px;
}

.container {
    max-width: 100%;
    padding: 0px 38px;
}

.overflow_hidden {
    overflow: hidden;
}

.mr_top_box {
    margin-top: 32px;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    appearance: textfield;
    -moz-appearance: textfield;
}

.text_white {
    color: #fff;
}

.banner_title {
    font-size: 48px;
    font-weight: 400;
    line-height: 62px;
    margin-bottom: 24px;
    text-transform: capitalize;
}

.common_btn {
    border: 1px solid var(--blackborder);
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--blackColor);
    display: inline-flex;
    align-items: center;
    padding: 13px 14px;
    cursor: pointer;
    position: relative;
    transition: all 0.6s;
}

.white_common_btn {
    color: var(--whiteColor);
    border: 1px solid var(--whiteBorder);
}

.common_btn span {
    z-index: 1;
}

.close_button_header_colm,
.extranet_mobile {
    display: none;
}

.section_padding {
    padding: 85px 0px;
}

.section_title {
    font-size: 36px;
    line-height: 36px;
    color: var(--blackColor);
    font-weight: 400;
}

.section_title span {
    color: var(--brandColor);
}

.w-100 {
    width: 100%;
    display: block;
}

@media only screen and (min-width: 992px) {
    .common_btn:after {
        content: '';
        position: absolute;
        top: 0px;
        left: 0px;
        width: 0px;
        bottom: 0px;
        background: var(--brandBg);
        transition: all 0.6s;
    }

    .common_btn:hover:after {
        width: 100%;
    }

    .common_btn:hover {
        color: #fff;
        border-color: transparent;
    }
}


.plus_icon_btn {
    font-size: 18px;
    font-weight: 400;
    line-height: 0px;
    display: inline-block;
    margin-right: 5px;
}

.custom_pagination {
    text-align: center;
    margin-top: 40px;
}

.custom_pagination .swiper-pagination-bullet {
    width: 18px;
    height: 18px;
    position: relative;
    background: transparent;
    opacity: 1;
    margin: 0px 1px !important;
}

.custom_pagination .swiper-pagination-bullet:after {
    content: '';
    width: 6px;
    height: 6px;
    background: #000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 30px;
}

.custom_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border: 1px solid var(--blackborder);
}

.common_slider_btn {
    display: inline-flex;
    position: relative;
}

.common_slider_btn:after {
    content: '';
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 50%;
    width: 1px;
    background: #7E7E80;
    transform: translate(-50%, 0px);
}

.back_arrow_common:after,
.next_arrow_common:after {
    content: '';
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: -1px;
    width: 1px;
    background: #7E7E80;
    display: none;
}

.back_arrow_common,
.next_arrow_common {
    position: relative;
    width: 46px;
    cursor: pointer;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #7E7E80;
}

.back_arrow_common:hover,
.next_arrow_common:hover {
    z-index: 2;
}

.back_arrow_common:hover:after,
.next_arrow_common:hover:after {
    display: block;
}

.next_arrow_common:after {
    left: -1px;
}

.back_arrow_common:hover svg path,
.next_arrow_common:hover svg path {
    stroke: var(--brandborder);
}

.back_arrow_common:hover,
.next_arrow_common:hover {
    border-color: var(--brandborder);
}

.swiper-button-disabled {
    pointer-events: none !important;
    opacity: 0.7;
}

.back_arrow_common:hover:after,
.next_arrow_common:hover:after {
    background: var(--brandBg);
}

.back_arrow_common {
    border-right: none;
}

.next_arrow_common {
    border-left: none;
}

@media only screen and (min-width: 1025px) {
    .custom_pagination .swiper-pagination-bullet:hover {
        border: 1px solid var(--blackborder)
    }

    .banner_section .custom_pagination .swiper-pagination-bullet:hover {
        border: 1px solid var(--whiteBorder)
    }

}



/*---header---start---here---*/
header {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    z-index: 888;
    background: transparent;
    transition: all 0.6s;
}

header.fixed {
    position: sticky;
    background: #fff;
    top: -62px;
    box-shadow: 0px 0px 151px rgb(0 0 0 / 19%);
}

/* solid header variant for text-first pages */
header.header_solid {
    background: #fff;
    position: sticky;
    top: 0;
    box-shadow: 0 1px 0 rgb(0 0 0 / 8%);
}

header.header_solid .nav_link,
header.header_solid .header_input_search,
header.header_solid .header_input_search::placeholder,
header.header_solid .top_header_title {
    color: var(--blackColor);
}

header.header_solid .search_submit_btn svg path,
header.header_solid .icon_extranet svg path {
    stroke: var(--blackColor);
}

header.header_solid .header_input_search {
    border-bottom: 1px solid var(--blackColor);
}

header.header_solid .search_toggle_btn .close_svg path {
    fill: var(--blackColor);
    stroke: none;
}

header.header_solid .top_header {
    border-bottom: 1px solid #B9B9B933;
}

header.header_solid .header_input_search:-webkit-autofill {
    -webkit-text-fill-color: #000 !important;
    color: #000 !important;
    caret-color: #000;
}

.top_header {
    padding: 18px 0px;
    border-bottom: 1px solid rgb(255 255 255 / 20%);
    transition: all 0.3s;
}

.top_header_row {
    display: flex;
    align-items: center;
}

.top_header_left_colm {
    width: 50%;
}

.top_header_right_colm {
    width: 50%;
}

.top_header_title {
    text-align: right;
    font-size: 14px;
    font-weight: 500;
}

.brand_link {
    display: block;
    width: 119px;
}

.header_wrapper_row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 18px 0px;
    justify-content: space-between;
    position: relative;
}

.header_right_colm {
    width: 150px;
}

.header_left_colm {
    width: 189px;
}

.header_center_colm {
    padding: 0px 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.search_bar_inner {
    position: relative;
}

.search_submit_btn {
    position: absolute;
    top: -2px;
    left: 5px;
    width: 20px;
}

.search_submit_btn svg {
    width: 100%;
    height: initial;
}

.header_input_search {
    background: transparent;
    border: none;
    border-bottom: 1px solid #FFFFFF;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    padding: 0px 15px 8px 35px;
    color: var(--whiteColor);
    font-size: 14px;
}

.header_input_search:-webkit-autofill {
    transition: background-color 9999s ease-in-out 0s;
    -webkit-text-fill-color: #fff !important;
    color: #fff !important;
    appearance: menulist-button !important;
    caret-color: #fff;
}

.fixed .header_input_search:-webkit-autofill {
    -webkit-text-fill-color: #000 !important;
    color: #000 !important;
    caret-color: #000;
}

.header_input_search::placeholder {
    color: var(--whiteColor);
    font-size: 14px;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.nav_item {
    display: inline-block;
    padding: 0px 15px;
}

.nav_box .nav_item:first-child {
    padding-left: 0px;
}

.nav_box .nav_item:last-child {
    padding-right: 0px;
}

.nav_link {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--whiteColor);
    transition: all 0.3s;
}

.list_right,
.list_right .nav_link {
    display: inline-flex;
    align-items: center;
}

.nav_item.active .nav_link {
    font-weight: 600;
}

.icon_extranet {
    line-height: 0px;
    display: inline-block;
    width: 15px;
    margin-right: 5px;
}

.icon_extranet svg {
    width: 100%;
}

.header_right_list {
    text-align: right;
}

.nav_toggle_btn,
.search_toggle_btn {
    display: none;
}

.header_bg_layer {
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    z-index: 888;
    right: 0px;
}


@media only screen and (min-width: 992px) {

    header.fixed .icon_extranet svg path,
    header.fixed .search_submit_btn svg path {
        stroke: var(--blackColor);
    }

    .nav_link:hover {
        color: var(--brandColor) !important;
    }

    .list_right .nav_link:hover svg path {
        stroke: var(--brandborder) !important;
    }

    header.fixed .nav_link,
    header.fixed .header_input_search,
    header.fixed .header_input_search::placeholder {
        color: var(--blackColor);
    }

    header.fixed .header_input_search {
        border-color: var(--blackColor);
    }
}


/*---banner---start---here---*/
.banner_section {
    position: relative;
    overflow: hidden;
}

/* page heading band (for text pages) */
.page_heading_band {
    background: #F7F7F7;
    border-bottom: 1px solid #EDEDED;
}

.page_heading_band .container {
    padding-top: 16px;
    padding-bottom: 16px;
}

.page_heading_title {
    font-size: 14px;
    letter-spacing: .5px;
    color: #7E7E80;
    text-transform: uppercase;
}

.banner_section .custom_pagination {
    bottom: 60px;
    position: absolute;
    left: 0px;
    right: 0px;
    padding: 0px 15px;
    z-index: 5;
}

.banner_section .custom_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border: 1px solid var(--whiteBorder);
}

.banner_section .custom_pagination .swiper-pagination-bullet:after {
    background: #fff;
}

.banner_section .common_btn {
    text-transform: inherit;
}

.banner_box {
    position: relative;
}

.banner_box::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 25%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.banner_box picture {
    position: relative;
}

.banner_box picture:after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 2;
    background: rgb(0 0 0 / 21%);
}

.banner_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    text-align: center;
    width: 575px;
}

.banner_description {
    font-size: 16px;
    line-height: 26px;
}

.banner_description p {
    color: #fff;
}

.banner_btn_box {
    margin-top: 44px;
}

/*---breadcrumb---*/
.breadcrumb_bar {
    background: #fff;
    border-bottom: 1px solid #EDEDED;
}

.breadcrumb_bar .container {
    padding-top: 14px;
    padding-bottom: 14px;
}

.breadcrumb_list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.breadcrumb_item {
    position: relative;
    color: #7E7E80;
    font-size: 14px;
    font-weight: 500;
}

.breadcrumb_item a {
    color: #7E7E80;
}

.breadcrumb_item.current a {
    color: #333333;
    font-weight: 700;
}

.breadcrumb_item:not(:last-child) {
    padding-right: 16px;
}

.breadcrumb_item:not(:last-child):after {
    content: '';
    position: absolute;
    right: 0;
    top: 4px;
    width: 7px;
    height: 10px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='7' height='10' viewBox='0 0 7 10' fill='none'><path d='M1.53857 1.04895L5.42238 4.93276L1.53857 8.81657' stroke='%23626265' stroke-width='1.26224' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}


@media screen and (max-width:767px) {

    .breadcrumb_item {
        font-size: 12px;
    }
}




/*---footer---start---here---*/
footer {
    background: #333333;
}

.footer_box {
    padding: 65px 0px;
}

.footer_row {
    display: flex;
    flex-wrap: wrap;
    margin: 0px -10px;
}

.footer_colm {
    width: 18%;
    padding: 0px 10px;
}

/* .footer_colm:nth-of-type(2){width: 18%;} */
.footer_colm:first-child {
    width: 46%;
}

.footer_logo_link {
    width: 190px;
    display: block;
}

.footer_logo_link img {
    width: 100%;
    height: initial;
}

.footer_desc {
    color: rgb(255 255 255 / 70%);
    font-size: 14px;
    line-height: 22px;
    margin-top: 25px;
    padding-right: 40%;
}

.footer_title {
    font-size: 18px;
    font-weight: 600;
    color: var(--whiteColor);
    line-height: 26px;
}

.footer_contact_list {
    display: inline-block;
    padding: 4px 16px;
}

.footer_contact_list:first-child {
    padding-left: 0px;
}

.contact-separator {
    color: #fff;
}

.footer_contact_list:last-child {
    padding-right: 0px;
}

.footer_contact_list a {
    color: #fff;
    font-size: 16px;
    transition: all 0.3s;
}

.footer_contact_box ul {
    margin-top: 15px;
}

.footer_contact_box {
    margin-top: 82px;
}

.footer_inner_link_box {
    margin-top: 25px;
}

.footer_inner_link_box ul li {
    display: block;
    list-style: none;
    margin-top: 10px;
}

.footer_inner_link_box ul li a {
    color: rgb(255 255 255 / 70%);
    font-size: 16px;
    line-height: 24px;
    transition: all 0.3s;
    text-transform: capitalize;
}

.footer_bottom_box {
    padding: 21px 0px;
    border-top: 1px solid rgb(255 255 255 / 20%);
}

.footer_bottom_left_link li {
    display: inline-block;
    padding: 0px 3px;
}

.footer_bottom_left_link li:last-child {
    padding-right: 0px;
}

.footer_bottom_left_link li:first-child {
    padding-left: 0px;
    border-right: 1px solid #DEDEDE;
    padding-right: 7px;
}

.footer_bottom_left_link li a {
    font-size: 14px;
    color: #DEDEDE;
    transition: all 0.3s;
}

.footer_bootom_left_colm,
.footer_bootom_right_colm {
    width: 300px;
}

.footer_bootom_center_colm {
    width: calc(100% - 600px);
    padding: 0px 15px;
    text-align: center;
    color: #fff;
    font-size: 14px;
}

.footer_bottom_row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.social_link {
    text-align: right;
}

.social_link li {
    display: inline-block;
    margin-right: 16px;
}

.social_link li:last-child {
    margin-right: 0px;
}

.social_link li a {
    display: block;
    width: 27px;
}

.social_link li a svg {
    width: 100%;
    height: initial;
}

.social_link li a:hover svg path {
    transition: all 0.3s;
}

.footer_sticky_btn {
    position: fixed;
    bottom: 68px;
    right: 38px;
    z-index: 887;
}

.footer_sticky_btn a {
    width: 201px;
    background: var(--brandBg);
    color: #fff;
    text-transform: uppercase;
    padding: 16px 0px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer_sticky_btn a span {
    width: 16px;
    margin-right: 6px;
    position: relative;
    bottom: -3px;
}

.footer_sticky_btn a span svg {
    width: 100%;
    height: initial;
}

.footer_dropdowen_icon,
.mobile_footer_link,
.footer_contact_box_mobile,
.mobile_text {
    display: none;
}

.innovations_pagination {
    display: none;
}



@media only screen and (min-width: 992px) {

    .footer_contact_list a:hover,
    .footer_inner_link_box ul li a:hover,
    .footer_bottom_left_link li a:hover {
        color: var(--brandColor);
    }

    .social_link li a:hover svg path {
        fill: var(--brandborder);
    }
}


/*---about---section---start---here---*/
.about_row {
    display: flex;
    flex-wrap: wrap;
}

.about_left_colm {
    width: 318px;
}

.about_right_colm {
    width: calc(100% - 318px);
    display: flex;
    flex-wrap: wrap;
}

.about_right_image_colm {
    width: 344px;
}

.about_content_wrapper {
    width: calc(100% - 344px);
    padding-right: 20px;
}

.about_text p {
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
    margin-bottom: 20px;
}

.about_text2 p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    margin-bottom: 20px;
    position: relative;
    padding-left: 35px;
    color: #000;
}

.about_text2 p:after {
    content: '';
    position: absolute;
    left: 0px;
    width: 24px;
    height: 1px;
    background: #474749;
    top: 12px;
}

.about_count_row {
    display: flex;
    flex-wrap: wrap;
    margin: 0px -10px;
}

.about_count_colm {
    width: 20%;
    padding: 0px 10px;
}

.about_count_title {
    font-size: 36px;
    font-weight: 400;
    color: #000;
    margin-bottom: 20px;
}

.about_count_dec {
    font-size: 16px;
    line-height: 22px;
    text-transform: capitalize;
    color: #4D4D4D;
}

.about_btn_box {
    margin-top: 50px;
}

.about_image_box img {
    width: 100%;
    height: initial;
    display: block;
}


/*---precision_trust---start---here---*/
.precision_trust {
    background: #F7F4EB;
}

.precision_trust .section_title {
    text-align: center;
}

/* .precision_trust_wrapper {
    margin-right: -38px;
} */

.precision_trust_slider {
    overflow: hidden;
}

.precision_trust_slider .swiper-slide {
    overflow: hidden;
}

.precion_card {
    overflow: hidden;
    height: 520px;
}

.mr_top_common {
    margin-top: 40px;
}

.precion_card_img img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: height 0.5s ease;
}

.precion_card_img {
    transition: all 0.5s;
    position: relative;
}

.precion_card_img:after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 22.18%, rgba(0, 0, 0, 0.8) 100%);
}

.precision_dec {
    display: none;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    color: #000;
}

.precion_content {
    position: absolute;
    bottom: 20px;
    left: 0px;
    right: 0px;
    padding-left: 20px;
    padding-right: 20px;
}

.precision_title {
    position: relative;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding-right: 35px;
    padding-bottom: 20px;
    transition: all 0.5s;
}

.precision_title:after {
    content: '';
    position: absolute;
    bottom: 0px;
    height: 1px;
    width: 86px;
    background: #fff;
    left: 0px;
}

.precision_title:before {
    content: '';
    position: absolute;
    bottom: -0.1px;
    height: 1.5px;
    width: 31px;
    background: var(--brandBg);
    left: 0px;
    z-index: 1;
}

.precion_count {
    font-size: 16px;
    font-weight: 400px;
    color: #fff;
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 1;
}

.precion_content_inner {
    padding: 20px;
    transition: all 0.5s;
}

.precion_content_inner::-webkit-scrollbar {
    width: 3px;
}

.precion_content_inner::-webkit-scrollbar-track {
    background: #ccc;
}

.precion_content_inner::-webkit-scrollbar-thumb {
    background: var(--brandBg);
    border-radius: 30px;
}

.precision_trust_wrapper .custom_pagination {
    display: none;
}

.precision_trust .container {
    position: relative;
}

.precision_trust .common_slider_btn {
    position: absolute;
    right: 38px;
    top: 0px;
    z-index: 4;
    display: none;
}


@media only screen and (min-width: 992px) {
    .precion_card:hover .precion_card_img img {
        height: 360px;
    }

    .precion_card:hover .precion_content_inner {
        background: #fff;
        padding: 20px;
        height: 240px;
        overflow: auto;
    }

    .precion_card:hover .precision_title:after {
        background: #F0F0F0;
    }

    .precion_card:hover .precion_content {
        position: relative;
        bottom: initial;
        top: -70px;
    }

    .precion_card:hover .precision_dec {
        display: block;
        margin-top: 22px;
    }

    .precion_card:hover .precision_title,
    .precion_card:hover .precion_count {
        color: #000;
    }

    .precion_card:hover .precion_card_img:after {
        display: none;
    }
}


/*---innovations_section---start---here---*/
.innovations_section {
    background: #fff;
}

.innovations_section .section_title {
    text-align: center;
}

.innovations_slider {
    overflow: hidden;
    position: relative;
}

.innovations_section .container {
    padding-left: 111px;
    padding-right: 111px;
}

.btn_arrow_innovation {
    position: absolute;
    top: 0px;
    bottom: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(270deg, #000000 -31.9%, rgba(0, 0, 0, 0) 134.97%);
    z-index: 2;
    width: 13.3%;
    left: 0px;
    pointer-events: none;
}

.innovation_arrow_right_box {
    right: 0px;
    left: auto;
}

.innovation_arrow_right_box:after {
    content: '';
    position: absolute;
    top: 0px;
    right: 100%;
    bottom: 0px;
    background: #fff;
    width: 5px;
    pointer-events: none;
}

.innovation_arrow_right_box:before {
    content: '';
    position: absolute;
    top: 4px;
    right: 100%;
    bottom: 0px;
    background: #fff;
    width: 5px;
    background: #ccc;
    z-index: 2;
    pointer-events: none;
}

.innovation_arrow_left_box:after {
    content: '';
    position: absolute;
    top: 0px;
    left: 100%;
    bottom: 0px;
    background: #fff;
    width: 5px;
    pointer-events: none;
}

.innovation_arrow_left_box:before {
    content: '';
    position: absolute;
    top: 4px;
    left: 100%;
    bottom: 0px;
    background: #fff;
    width: 5px;
    background: #ccc;
    z-index: 2;
    pointer-events: none;
}

.innovation_card_wrapper img {
    display: block;
    width: 100%;
}

.prev_btn_innovation,
.next_btn_innovation {
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    cursor: pointer;
    pointer-events: initial;
    transition: all 0.3s;
}

.prev_btn_innovation:hover,
.next_btn_innovation:hover {
    color: var(--brandBg);
    font-weight: 600;
}

.prev_btn_innovation:hover svg path,
.next_btn_innovation:hover svg path {
    stroke: var(--brandborder);
}

.prev_btn_innovation svg {
    margin-right: 10px;
}

.next_btn_innovation svg {
    margin-left: 10px;
}

.innvation_content {
    position: absolute;
    bottom: 35px;
    width: 40%;
    transform: translate(-50%, 0px);
    left: 50%;
    text-align: center;
    color: #fff;
    z-index: 5;
}

.innovation_title_inner {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    padding-bottom: 16px;
    margin-bottom: 15px;
    position: relative;
}

.innovation_title_inner:after {
    content: '';
    position: absolute;
    bottom: 0px;
    height: 1px;
    width: 86px;
    background: #fff;
    left: 50%;
    transform: translate(-50%, 0px);
}

.innovation_title_inner:before {
    content: '';
    position: absolute;
    bottom: -0.1px;
    height: 1.5px;
    width: 31px;
    background: var(--brandBg);
    left: 50%;
    z-index: 1;
    transform: translate(-50%, 0px);
}

.innovation_desc_inner {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.innovation_card_wrapper:after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 41.14%, rgba(0, 0, 0, 0.5) 88.23%);
}

/*---history---start---here---*/
.history_section {
    background: #F7F4EB;
    position: relative;
}

.history_section::before {
    content: "HISTORY";
    display: block;
    position: absolute;
    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 294px;
    font-weight: 700;
    color: #1818183D;
    line-height: 1;
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    opacity: 10%;
}

.history_section .section_title {
    text-align: center;
}

.history_slider,
.history_nav_slider {
    overflow: hidden;
}

.history_row {
    display: flex;
    align-items: center;
}

.history_image_colm {
    width: 292px;
}

.history_content {
    width: calc(100% - 292px);
    padding-left: 46px;
}

.history_card {
    width: 60%;
    margin: 0px auto;
}

.history_title {
    font-size: 60px;
    font-weight: 400;
    margin-bottom: 25px;
}

.history_content_inner_box {
    margin-top: -20px;
}

.history_wrapper {
    margin-top: 70px;
}

.history_nav_wrapper {
    margin-top: 70px;
}

.history_year_title {
    color: #ADADAD;
    font-size: 16px;
    font-weight: 300;
    color: #ADADAD;
    pointer-events: initial;
    padding-bottom: 45px;
    display: inline-block;
    position: relative;
    cursor: pointer;
}

.history_year_title:after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 30px;
    border: 1px solid rgb(237 28 36 / 10%);
    bottom: 8px;
    left: 50%;
    transform: translate(-50%, 0px);
    z-index: 4;
    background: var(--brandBg);
}

.history_nav_wrapper {
    position: relative;
}

.history_nav_slider .swiper-slide {
    pointer-events: none;
}

/* .history_nav_wrapper:after{content: '';position: absolute;bottom: 20px;left: 20px;right: 0px;height: 2px;background: rgb(237 28 36 / 10%);} */

.history_nav_slider .swiper-slide.swiper-slide-thumb-active .history_year_title:after {
    background: var(--brandBg);
    border-color: var(--brandBg);
}

.history_nav_slider .swiper-slide.swiper-slide-thumb-active~.swiper-slide .history_year_title:after {
    background: #F7F4EB;
}

.history_nav_slider .swiper-slide.swiper-slide-thumb-active .history_year_title:before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 30px;
    border: 1px solid var(--brandborder);
    bottom: 4px;
    left: 50%;
    transform: translate(-50%, 0px);
    z-index: 1;
    background: #F7F4EB;
}

.history_nav_slider .swiper-slide:after {
    content: '';
    position: absolute;
    bottom: 14px;
    left: 10px;
    right: -14px;
    height: 2px;
    background: var(--brandborder);
}

.history_nav_slider .swiper-slide:last-child:after {
    display: none;
}

.history_nav_slider .swiper-slide:first-child:after {
    left: 20px;
}

.history_nav_slider .swiper-slide.swiper-slide-thumb-active~.swiper-slide:after,
.history_nav_slider .swiper-slide.swiper-slide-thumb-active:after {
    background: rgb(237 28 36 / 10%);
    ;
}

.history_nav_slider .swiper-slide.swiper-slide-thumb-active .history_year_title {
    font-weight: 700;
    color: var(--brandBg);
}


/*---ai---words---start---here---*/

.ai_words_section {
    position: relative;
}

.ai_words_section:after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) 12.08%, rgba(0, 0, 0, 0.4) 94.62%);
    z-index: 1;
}

.ai_words_wrapper {
    position: absolute;
    top: 23%;
    left: 0px;
    bottom: 0px;
    z-index: 4;
    width: 100%;
}

.ai_words_wrapper .section_title,
.ai_words_wrapper .title_desc p,
.ai_words_wrapper .section_title span {
    color: #fff;
}

.ai_words_wrapper .section_title,
.contact_section_title_colm .section_title {
    margin-bottom: 24px;
}

.btn_box_ai {
    margin-top: 40px;
}

.ai_words_wrapper .title_wrapper {
    width: 370px;
}


/*---contact---section---start---here---*/
.contact_section {
    padding: 38px 0px;
}

.contact_bg:after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: #000;
    opacity: 0.4;
    z-index: 1;
}

.contact_section_wrapper {
    position: relative;
}

.contact_section_row {
    width: 100%;
    z-index: 5;
    padding: 40px;
    z-index: 2;
    display: flex;
    position: relative;
}

.contact_section_title_colm {
    width: 360px;
}

.contact_section_title_colm .section_title,
.contact_section_title_colm .title_desc p,
.contact_section_title_colm .section_title span {
    color: #fff;
}

.contact_section_right_colm {
    width: calc(100% - 360px);
    padding-left: 10%;
}

.contact_form {
    display: flex;
    flex-wrap: wrap;
    margin: 0px -16px;
}

.form_item {
    width: 50%;
    padding: 0px 16px;
    margin-bottom: 30px;
    position: relative;
}

.form_item input,
.form_item select,
.form_item textarea {
    display: block;
    background: transparent;
    border: none;
    border-bottom: 1px solid #D7D7D7;
    padding: 0px;
    padding-bottom: 12px;
}

.form_item input,
.form_item input::placeholder,
.form_item select,
.form_item textare,
.form_item textarea::placeholder {
    font-size: 15px;
    color: #fff;
}

.form_item input:focus,
.form_item select:focus,
.form_item textarea:focus {
    border-color: #ffa6a9;
}

.form_item textarea {
    color: #fff;
    font-size: 15px;
}

.form_item select option {
    color: #333333;
}

.contact_section .contact_section_right_colm .wpcf7 form .wpcf7-response-output {
    color: #fff;
    max-width: 230px;
    position: absolute;
    bottom: 3px;
    margin: 0;
    right: 0;
    padding: 2px;
    width: max-content;
    font-size: 13px;
}

.contact_section .contact_section_right_colm form.wpcf7-form,
.contact_section .contact_section_right_colm .wpcf7-form-control-wrap {
    position: relative;
}

.contact_section .contact_section_right_colm .form_item input:-webkit-autofill,
.contact_section .contact_section_right_colm .form_item select:-webkit-autofill,
.contact_section .contact_section_right_colm .form_item textarea:-webkit-autofill {
    -webkit-text-fill-color: #fff !important;
    caret-color: #fff;
}

.contact_section .contact_section_right_colm .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
    position: absolute;
    bottom: -17px;
    line-height: 1.4;
    padding: 0 5px;
    font-weight: 500;
    font-size: 12px;
    background-color: #ffffff5e;
}



.contact_sectio_form_box {
    background: linear-gradient(148.05deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 50px;
    border: 2px solid rgb(255 255 255 / 17%);
}

.form_item.message,
.form_item.btn_submit_contact {
    width: 100%;
}

.btn_submit_contact {
    margin-top: 10px;
    margin-bottom: 0px;
}

.btn_submit_contact .common_btn {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .5px;
}

.btn_submit_contact .plus_icon_btn {
    font-size: 25px;
}

.error_msg {
    position: absolute;
    top: 103%;
    font-size: 13px;
    color: #ff0404;
    font-weight: 500;
    display: none;
}

.contact_bg {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    display: block;
}

.contact_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form_item input:-webkit-autofill,
.form_item select:-webkit-autofill,
.form_item textarea:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
    -webkit-text-fill-color: #fff !important;
    transition: background-color 5000s ease-in-out 0s;
    caret-color: #fff;
}

.banner_btn_box.loader_wrapper {
    margin: 11px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}