:root {
    --secondary-color: #cfa959;
    --primery-color: #193b4a;
    --light-blue: #eff5f8;
    --white: #fff;
    --black: #000;
    --gray-600: #e5e5e5;
    --inter-regular: "Inter";
    --PlayfairDisplay: "Playfair Display";
    --Roboto-Regular: "Roboto";
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--inter-regular);
    font-size: 16px;
    color: var(--primery-color);
    line-height: 24px;
    font-weight: normal;
    background: var(--white);
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.title {
    font-weight: 700;
    font-size: 42px;
    line-height: 50px;
    font-family: var(--PlayfairDisplay);
    color: var(--secondary-color);
    text-align: center;
    text-transform: uppercase;
}

.sub-title {
    font-weight: 700;
    font-size: 42px;
    line-height: 63px;
    font-family: var(--PlayfairDisplay);
    color: var(--primery-color);
}

img {
    max-width: 100%;
    height: auto;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--blue-color);
}

.link {
    font-size: 14px;
    line-height: 22px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-family: var(--inter-regular);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

/*=========== Header ==========*/
.header-section {
    background: var(--white);
    transition: all 0.4s ease-in-out;
}

.header {
    padding: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 0;
    padding-right: 0;
}

.header .nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.header nav ul li {
    padding-left: 54px;
}

.menu-item .link {
    font-family: var(--PlayfairDisplay);
    font-weight: 500;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 2px;
    background: none;
    letter-spacing: 0.15em;
    display: inline-block;
    text-transform: capitalize;
}

.menu-item .link:hover,
.active .link {
    color: var(--secondary-color);
    outline-width: 0;
}

li.menu-item .link:after,
.active .link:after {
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: relative;
    background: var(--secondary-color);
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}

.menu-item .link:hover:after,
.active .link:after {
    width: 100%;
    left: 0;
}

.company-section .company-content a::after,
.our-business-section .image-content a::after,
.featured-storie-section .owl-item .content a::after {
    display: none;
}

.company-section .company-content a,
.our-business-section .image-content a {
    color: #193b4a;
    padding-left: 5px;
    padding-right: 5px;
}

.featured-storie-section .owl-item .content a {
    color: #878583;
    padding-left: 5px;
    padding-right: 5px;
}

.company-section .company-content a:hover,
.our-business-section .image-content a:hover,
.featured-storie-section .owl-item .content a:hover {
    color: #fff;
}

.bar-mobile-icon {
    display: none;
}

.header-section.sticky {
    position: fixed;
    top: 0;
    background: var(--white);
    width: 100%;
    box-shadow: 0 1px 2px rgb(0 0 0 / 20%);
    z-index: 999;
    transition: all 0.4s ease-in-out;
    -webkit-animation: slide-down 0.7s;
    animation: slide-down 0.7s;
}

.header-section.sticky .header {
    padding: 15px 0px;
}

@-webkit-keyframes slide-down {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    to {
        opacity: 0.9;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slide-down {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    to {
        opacity: 0.9;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/* home page css start */

.banner-section {
    padding: 0;
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
}

.banner-section .banner-slider.owl-carousel .owl-stage-outer {
    overflow: hidden;
}

.banner-section .heading {
    /* margin-left: 392px; */
    padding: 82px 0px 82px 33px;
    border-left: 0.6px solid rgba(25, 59, 74, 0.5);
    position: relative;
    max-width: 55%;
    width: 100%;
    margin: 0 auto;
}

.banner-section .heading .sub-title {
    line-height: 45px;
    font-size: 42px;
}

.banner-section .heading .sub-title::before {
    content: "";
    height: 92px;
    width: 6px;
    background-color: var(--secondary-color);
    position: absolute;
    top: 50%;
    left: -4px;
    transform: translateY(-50%);
}

.banner-section .images {
    padding: 0px;
    height: 100%;
    position: relative;
}

.banner-section .img {
    max-width: 80%;
    width: 100%;
    height: auto;
}

.banner-section .images .sub-image {
    position: absolute;
    bottom: 10px;
    right: 0px;
    max-width: 31%;
    width: 100%;
    height: auto;
    max-height: 512px;
}

.banner_logo {
    position: absolute;
    right: -80px;
    top: auto;
    bottom: 30px;
    width: 400px;
    z-index: 2;
}

.banner_logo img {
}

.banner-section .owl-carousel .owl-nav {
    display: none;
}

.banner-section .owl-carousel .owl-dots {
    margin-left: 0px;
    margin-top: 15px;
    display: flex;
    gap: 6px;
}

.company-section {
    margin-left: 128px;
}

.banner-section .owl-carousel .owl-dot {
    width: 7px;
    height: 7px;
    border-radius: 100%;
    background-color: #d9d9d9 !important;
    opacity: 0.2;
}

.banner-section .owl-carousel .owl-dot.active {
    opacity: 1;
}

.our-business-section {
    margin-bottom: 144px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.our-business-section .title {
    margin-bottom: 90px;
}

.our-business-main {
    position: relative;
}

.our-business-main .info {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 16px 0 80px;
    margin-bottom: 75px;
}

.our-business-section::before {
    content: "";
    position: absolute;
    top: -24px;
    left: 17px;
    height: 100%;
    width: 1px;
    background-color: var(--primery-color);
    opacity: 0.5;
    z-index: -1;
}

.link {
    font-size: 14px;
    line-height: 22px;
    color: var(--primery-color);
    text-decoration: none;
    font-weight: 700;
    font-family: var(--inter-regular);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    background: linear-gradient(#cfa958 0 0) var(--p, 0%) / var(--p, 0%)
        no-repeat;
    transition: 0.4s, background-position 0s;
}

.link:hover {
    color: #fff;
    --p: 100%;
}

.image-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    align-items: center;
    margin-bottom: 100px;
    font-size: 14px;
    line-height: 22px;
}

.image-content p {
    font-size: 14px;
    line-height: 22px;
}

.image-content .link {
    margin-top: 5px;
}

.image-content.two {
    margin-bottom: 140px;
}

.image-content .image img {
    width: 100%;
}

.shape {
    position: absolute;
    top: -50px;
    left: -23px;
    gap: 8px;
    z-index: -1;
}

.shape .shape1 {
    width: 80px;
    height: 7px;
    background-color: var(--secondary-color);
}

.shape .shape2 {
    width: 56px;
    height: 7px;
    background-color: var(--secondary-color);
}

.shape .shape3 {
    width: 30px;
    height: 50px;
    background-color: var(--secondary-color);
}

.company-section {
    margin-bottom: 130px;
}

.company-row {
    display: grid;
    overflow: hidden;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.company .company-icon {
    margin-bottom: 50px;
    min-height: 45px;
    max-height: 100px;
    margin-top: 50px;
}

.company .company-icon img {
    width: auto;
}

.company .company-name {
    text-align: center;
    max-width: 150px;
    margin: 0 auto;
    height: 100%;
}

.company .company-name .line {
    display: block;
    width: 101px;
    height: 1px;
    background: var(--primery-color);
    margin: 10px auto;
}

.company .company-name .company-content {
    /* margin-top: auto; */
}

.company .company-name p {
    font-weight: 700;
    font-family: var(--PlayfairDisplay);
    line-height: 22px;
}

.featured-storie-section .title {
    margin-bottom: 40px;
}

.featured-slider {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
}

.owl-carousel {
    display: block;
}

.featured-slider .owl-item {
    position: relative;
}

.featured-slider .image {
    min-height: 352px;
    max-height: 352px;
    position: relative;
}

.featured-slider .image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(
        0deg,
        #000000 0.9%,
        rgba(0, 0, 0, 0.35) 47.62%,
        rgba(217, 217, 217, 0) 79.59%
    );
    width: 100%;
    height: 100%;
}

.featured-slider .content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px 30px;
    z-index: 99;
    color: var(--white);
    font-family: var(--inter-regular);
}

.featured-slider .content p {
    margin-bottom: 15px;
    font-size: 24px;
    line-height: 32px;
    color: #fff;
}

.featured-slider .content .link {
    color: #fff;
    opacity: 0.5;
}

.featured-slider .content .link:hover {
    opacity: 1;
    color: #fff;
}

.featured-slider .owl-dots {
    display: none;
}

.featured-slider .owl-nav {
    position: absolute;
    right: 10px;
    top: -87px;
    display: flex;
    gap: 16px;
}

.featured-slider .owl-prev,
.featured-slider .owl-next {
    min-width: 42px;
    height: 42px;
    border: 1px solid var(--primery-color) !important;
    border-radius: 100%;
    position: relative;

    transition: 0.7s;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    -ms-transition: 0.7s;
    -o-transition: 0.7s;
}

.featured-slider .owl-next:hover,
.featured-slider .owl-prev:hover {
    transition: 0.7s;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    -ms-transition: 0.7s;
    -o-transition: 0.7s;
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.featured-slider .owl-prev span,
.featured-slider .owl-next span {
    display: none;
}

.featured-slider .owl-prev.disabled,
.featured-slider .owl-next.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.featured-slider .owl-prev::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    background-image: url("../images/left-arrow.png");
    background-repeat: no-repeat;
    height: 16px;
    width: 16px;
}

.featured-slider .owl-next::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    background-image: url("../images/right-arrow.png");
    background-repeat: no-repeat;
    height: 16px;
    width: 16px;
}

.chairman-section {
    padding-top: 100px;
    margin-bottom: 100px;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.chairman-section::before {
    content: "";
    position: absolute;
    right: 86px;
    top: 0;
    width: 1px;
    height: calc(100% + 55px);
    background-color: #193b4a;
    opacity: 0.5;
}

.chairman-section .title {
    margin-bottom: 35px;
}

.chairman .image {
    width: fit-content;
}

.chairman.chairman-wrapper {
    display: flex;
    flex-wrap: wrap;
    z-index: 2;
    position: relative;
}

.chairman .image {
    width: 56%;
}

.chairman .image img {
    width: 100%;
    height: auto;
}

.chairman .content {
    width: calc(100% - 58%);
    position: relative !important;
    margin-left: -135px;
    z-index: 3;
    margin-top: 13%;
}

.chairman .content::after {
    content: "";
    position: absolute;
    top: -50px;
    left: -104px;
    background-image: url("../images/bg-icon.png");
    background-repeat: no-repeat;
    width: 294px;
    height: 233px;
    z-index: -1;
}

.chairman .content p {
    font-size: 26px;
    line-height: 38px;
    font-weight: 500;
    margin-bottom: 40px;
}

.chairman .content .name {
    font-size: 20px;
    line-height: 38px;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.chairman .content .name span {
    font-size: 14px;
    line-height: 38px;
    margin-left: 10px;
}

.chairman .content .name::before {
    content: "";
    width: 7px;
    height: 12px;
    background-color: var(--secondary-color);
    margin-right: 21px;
}

.sustainability-section {
    margin-bottom: 60px;
}

.sustainability-section .title {
    margin-bottom: 30px;
}

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

.image-tab .tab .sub-title {
    margin-bottom: 40px;
}

.image-tab .tab .disc {
    display: none;
}

.image-tab .tab .tablist {
    width: fit-content;
    border-bottom: 0.4px solid var(--primery-color);
}

.image-tab .tab .tablist .nav-link {
    padding: 8px 38px;
    font-weight: 500;
    color: var(--primery-color);
}

.image-tab .tab .tablist .nav-link {
    background-color: transparent;
    position: relative;
}

.image-tab .tab .tablist .nav-link.active::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 4px;
    background-color: var(--secondary-color);
}

.image-tab .tab .tab-content {
    padding-top: 25px;
}

/*=========== Benz Option Car Heading ==========*/
.benz-gallary-section {
    overflow: hidden;
}

.mercedes-benz-header {
    background: url(../images/benz-option/mercedes-header.png) no-repeat;
}

.ather-header {
    background: url(../images/benz-option/ather-header.png) no-repeat;
}

.car-wale-header {
    background: url(../images/benz-option/carwale-header.png) no-repeat;
}

.altigreen-header {
    background: url(../images/benz-option/altigreen-header.png) no-repeat;
}

.byd-header {
    background: url(../images/company_banner/byd.png) no-repeat;
}
.citroen-header {
    background: url(../images/company_banner/citrone.png) no-repeat;
}

.renault-header {
    background: url(../images/company_banner/renault.png) no-repeat;
}

.nissan-header {
    background: url(../images/company_banner/nisaan.3.png) no-repeat;
}
.benz-option-car-heading {
    background-size: cover;
    max-height: 201px;
    min-height: 201px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;

    max-width: 1440px;
    margin: 0 auto;
    margin-bottom: 60px;
}

.benz-option-title {
    font-family: var(--PlayfairDisplay);
    font-size: 26px;
    line-height: 35px;
    font-weight: 700;
    margin-bottom: 0;
    letter-spacing: 2px;
    color: var(--black);
}

.benz-option-title h2 {
    text-align: center;
}

.benz-option-description p {
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 60px;
}

.benz-gallary-item {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 90px;
    margin-bottom: 40px;
}

.images-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 38%;
    position: relative;
}

.images-counter-galler {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 5px 15px;
    background: var(--white);
    color: var(--black);
    font-size: 16px;
    line-height: 19px;
    font-weight: 400;
    letter-spacing: 1px;
    border-radius: 22px;
}

.images-group .images-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.images-group .images-box img {
    width: 303px;
    height: 265px;
    object-fit: cover;
}

.images-group .images-box img + img {
    width: 303px;
    height: 363px;
    object-fit: cover;
}

.images-group .images-box.box-2 img {
    width: 295px;
    height: 354px;
    object-fit: cover;
}

.images-group .images-box.box-2 img + img {
    width: 295px;
    height: 277px;
    object-fit: cover;
}

.benz-gallary-contect {
    width: 50%;
}

.benz-gallary-contect .title {
    font-size: 28px;
    font-weight: 700;
    line-height: 36px;
    color: var(--primery-color);
    font-family: var(--PlayfairDisplay);
    text-align: start;
    margin: 0;
}

.benz-gallary-contect .sub-title {
    font-weight: 700;
    font-size: 22px;
    line-height: 33px;
    color: var(--primery-color);
    margin-bottom: 24px;
    font-family: var(--inter-regular);
}

.benz-line {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 7px;
}

.benz-line .contact {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 2px;
    color: var(--primery-color);
    position: relative;
}

.benz-line::after {
    content: "";
    display: block;
    max-width: 400px;
    width: 100%;
    height: 1px;
    background: var(--gray-600);
}

.benz-gallary-contect p,
.phone-no {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
    color: var(--primery-color);
}

.phone-no {
    margin-top: 29px;
    display: block;
}

.phone-no:hover {
    color: var(--secondary-color);
}

.know-more-button {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 35px;
    width: fit-content;
}

.know-more-button .icon {
    height: 56px;
    width: 56px;
    border: 1px solid #000000;
    border-radius: 50%;
    align-items: center;
    text-align: center;
    display: flex;
    justify-content: center;
}

.know-more-button .text {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    font-family: var(--Roboto-Regular);
    color: var(--black);
}

.know-more-button:hover .icon,
.know-more-button:hover .text {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.images-group-mobile.owl-carousel {
    display: none;
}

.images-group-mobile.owl-carousel .owl-stage-outer {
    overflow: inherit;
}

.images-group-mobile.owl-carousel .owl-nav .owl-prev,
.images-group-mobile.owl-carousel .owl-nav .owl-next {
    margin: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--primery-color);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.images-group-mobile.owl-carousel .owl-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 30px;
}

.images-group-mobile.owl-carousel .owl-nav .owl-prev span,
.images-group-mobile.owl-carousel .owl-nav .owl-next span {
    display: none;
}

.images-group-mobile.owl-carousel .owl-nav .owl-prev::before {
    content: "";
    background: url(../images/benz-option/left-arrow.png);
    display: flex;
    width: 15px;
    height: 16px;
}

.images-group-mobile.owl-carousel .owl-nav .owl-next::before {
    content: "";
    background: url(../images/benz-option/right-arrow.png);
    display: flex;
    width: 15px;
    height: 16px;
}

.our-companies {
    max-width: 1440px;
    margin: 0 auto;
    margin-bottom: 36px;
}

.companies-contect {
    position: absolute;
    top: 40px;
    right: 200px;
    display: block;
    z-index: 2;
    color: var(--white);
    max-width: 300px;
}

.companies-contect .title {
    color: var(--white);
    text-align: start;
    margin-bottom: 0;
    padding-left: 20px;
    position: relative;
}

.companies-contect .title::before {
    content: "";
    width: 6px;
    height: 76px;
    display: block;
    background: #fff;
    position: absolute;
    bottom: 10px;
    left: -4px;
}

.our-companies .bg-images-one {
    width: fit-content;
}

.our-companies .bg-images-two {
    position: absolute;
    bottom: -36px;
    right: 0px;
    max-width: 65%;
    width: 100%;
}

.our-companies .bg-images-two img {
    width: 100%;
    min-height: 232px;
    max-height: 232px;
    object-fit: cover;
}

.bg-images-one .images-mobile {
    display: none;
}

.companies-garnet-motors {
    margin-top: 100px;
}

.garnet-motors-inner .images-box .mobile {
    display: none;
}

.garnet-motors-inner {
    max-width: 1070px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.garnet-motors-inner .images-box {
    width: 34%;
}

.garnet-motors-inner .garnet-motors-content {
    width: 59%;
}

.garnet-motors-inner .garnet-motors-content .sub-title {
    margin-bottom: 6px;
}

.garnet-motors-inner .garnet-motors-content p {
    line-height: 28px;
    margin-bottom: 30px;
}

.garnet-motors-inner .garnet-motors-content h4 {
    margin-bottom: 0;
    font-size: 21px;
    font-weight: 700;
}

.garnet-motors-inner .garnet-motors-content .brands-text h5 {
    font-size: 26px;
    line-height: 39px;
    font-weight: 700;
    margin-bottom: 0;
}

.garnet-motors-inner .garnet-motors-content .mobile-content {
    display: none;
}

.brands-logo-information {
    margin-top: 40px;
}

.brands-logo-inner {
    display: flex;

    /* grid-template-columns: repeat(4, 1fr); */
    /* gap: 13px;
    max-width: 1320px; */
    width: 100%;
}

.brands-logo-information {
    max-width: 1280px;
    margin: 0 auto;
    margin-top: 40px;
}
.brands-logo-inner .brands-logo-box {
    width: 100%;
}

.brands-logo-inner .brands-logo-box .logo-box {
    background: #eff5f8;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 128px;
    min-height: 128px;
    width: 100%;
    margin-bottom: 15px;
}

.brands-logo-inner .brands-logo-contect p {
    text-align: center;
    font-family: var(--PlayfairDisplay);
    line-height: 21px;
    font-weight: 700;
}

.brands-know-button {
    padding-top: 12px;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.brands-know-button::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: 140px;
    height: 1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primery-color);
}

.brands-know-button a {
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--primery-color);
    background: linear-gradient(#cfa958 0 0) var(--p, 0%) / var(--p, 0%)
        no-repeat;
    transition: 0.4s, background-position 0s;
    padding-left: 5px;
    padding-right: 5px;
}

.brands-know-button a:hover {
    color: var(--secondary-color);
    color: #fff;
    --p: 100%;
}

.ks-metals-galler {
    margin-top: 70px;
    margin-bottom: 35px;
}

.ks-metals-galler .metals-galler-innner {
    max-width: 1090px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 133px;
}

.ks-metals-galler .metals-galler-innner .images-box img {
    width: 100%;
}

.ks-metals-galler .metals-galler-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%;
}

.ks-metals-galler .metals-galler-box .images-box .mobile {
    display: none;
}

.ks-metals-galler .metals-galler-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 100%;
}

.ks-metals-galler .metals-galler-content:not(:nth-child(even)) {
    padding-right: 30px;
    text-align: center;
}

.ks-metals-galler .metals-galler-content:not(:nth-child(odd)) {
    padding-left: 30px;
    text-align: center;
}

.ks-metals-galler .metals-galler-content .title-content h4 {
    margin-bottom: 15px;
    font-family: var(--PlayfairDisplay);
    font-size: 42px;
    line-height: 56px;
    font-weight: 700;
}

.ks-metals-galler .metals-galler-content p {
    margin-bottom: 32px;
}

.metals-galler-content .brands-know-button {
    margin-top: auto;
}

.news-articles-section {
    background: url(../images/articles/bg1g.png) no-repeat;
    background-size: cover;
    min-height: 296px;
    max-height: 296px;
    max-width: 1440px;
    margin: 0 auto;
}

.news-articles-section .articles-section-title {
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 0;
    color: var(--white);
    padding-top: 50px;
    font-family: var(--PlayfairDisplay);
    z-index: 2;
    position: relative;
    padding-left: 17px;
}

.news-articles-section .articles-section-title::before {
    content: "";
    width: 6px;
    height: 50px;
    position: absolute;
    display: block;
    background: var(--white);
    bottom: 0;
    left: -6px;
}

.news-articles-section .articles-section-title h1 {
    font-size: 42px;
    line-height: 52px;
    font-weight: 700;
    margin-bottom: 0;
}

.news-articles-section .articles-section-one {
    position: absolute;
    bottom: -80px;
    left: 5%;
}

.articles-section-images {
    display: flex;
    justify-content: end;
    padding-right: 60px;

    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    margin-top: -145px;
}

.articles-section-images img {
    width: 62%;
    min-height: 232px;
    max-height: 232px;
    object-fit: cover;
}

.articles-section-one-mobile {
    display: none;
}

/*=============== media =================*/

.delarship-section {
    background: #eff5f8;
    padding-bottom: 30px;
}

.delarship-images {
    max-width: 1440px;
    width: 100%;
    margin-top: 117px;
}

.delarship-images .poster img {
    margin-top: -85px;
    max-width: 75%;
    width: 100%;
}

.delarship-desktop {
    max-width: 75%;
}

.delarship-images .detail {
    margin-left: 170px;
    padding-left: 25px;
    position: relative;
}

.delarship-images .detail h1 {
    font-weight: 700;
    font-size: 42px;
    line-height: 50px;
    font-family: var(--PlayfairDisplay);
    margin-top: 40px;
    margin-bottom: 0;
}

.delarship-images .delarship-desktop .detail::before {
    content: "";
    height: 80px;
    width: 6px;
    background-color: var(--secondary-color);
    display: block;
    position: absolute;
    bottom: 0;
    left: -6px;
}

.delarship-images .date {
    display: flex;
    gap: 8px;
    margin-left: 170px;
    padding-left: 25px;
    margin-top: 33px;
}

.delarship-images .date img {
    width: 21px;
    height: 24px;
}

.delarship-images .date p {
    font-weight: 700;
    font-size: 14px;
    line-height: 21px;
    font-family: var(--inter-regular);
}

.delarship-images .delarship-mobile {
    display: none;
}

.delarship-read {
    max-width: 1380px;
    width: 100%;
    margin: 0 auto;
    padding: 30px 16px;
}

.delarship-read p {
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #525560;
    font-family: var(--Roboto-Regular);
    margin: 0;
}

.delarship-read img {
    max-width: 1090px;
    width: 100%;
    margin: 30px 0px;
}

.delarship-read .delarship-read-desktop {
    padding-bottom: 150px;
}

.delarship-read .delarship-read-desktop .reading {
    margin-top: 20px;
}

.delarship-read .delarship-read-mobile {
    display: none;
}

.latest-news .title h3,
.articles-section .title h3 {
    font-family: var(--PlayfairDisplay);
    margin-bottom: 40px;
    font-size: 42px;
    line-height: 50px;
}

.latest-news .latest-news-inner {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 38px;
}

.latest-news-inner .latest-news-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 38px;
}

.latest-news-inner .latest-news-box .images-box {
    max-width: 313px;
    width: 100%;
}

.latest-news-inner .img-mobile,
.articles-item .img-mobile {
    display: none;
}

.latest-news-inner .latest-news-box .images-box img {
    width: 100%;
}

.latest-news {
    margin-top: 150px;
}

.latest-content h4 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 10px;
    font-weight: 700;
    margin-top: 20px;
}

.latest-content .date p {
    font-size: 14px;
    line-height: 17px;
    opacity: 0.5;
    font-weight: 700;
    margin-bottom: 12px;
}

.latest-content p {
    line-height: 28px;
    margin-bottom: 0;
}

.lat-read-more-button {
    margin-top: 22px;
}

.lat-read-more-button a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primery-color);
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
}

.lat-read-more-button a span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid var(--primery-color);
}

.lat-read-more-button a:hover span {
    transition: 0.7s;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    -ms-transition: 0.7s;
    -o-transition: 0.7s;
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.lat-read-more-button a:hover {
    color: var(--secondary-color);
}

.articles-section {
    margin-top: 60px;
    margin-bottom: 43px;
}

.articles-section .articles-inner-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}

.articles-inner-section .images-box img {
    width: 100%;
}

.articles-inner-section .section-box-one {
    display: flex;
    flex-direction: column;
    gap: 92px;
    /* margin-top: 82px; */
}

.articles-inner-section .section-box-two {
    display: flex;
    flex-direction: column;
    gap: 52px;
}

.lat-arti-fature-slider {
    margin-bottom: 80px;
}

.contact-grup {
    display: flex;
    max-width: 1280px;
    margin: 0 auto;
}

.contact-form {
    max-width: 90%;
    width: 90%;
    margin: 0 auto;
}

.contact-form form {
    padding: 0;
    border-radius: 15px;
    margin-bottom: 20px;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-form label {
    font-weight: 700;
    font-size: 12px;
    line-height: 10px;
    color: #193b4a;
    margin-bottom: 8px;
}

.contact-form .feedback-input {
    color: #193b4a;
    font-weight: 400;
    font-size: 16px;
    border-radius: 0;
    margin-right: 0;
    line-height: 25px;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    border-bottom: 0.6px solid #193b4a;
    border-top: none;
    border-right: none;
    border-left: none;
}

.contact-form input:focus {
    outline: none;
}

.contact-form .form-group textarea {
    width: 100%;
    height: 156px;
    line-height: 150%;
    resize: vertical;
    border: 0.6px solid #193b4a;
    border-radius: 4px;
    padding: 10px;
    margin: 0;
}

.contact-form .submit p {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-align: end;
}

.contact-image {
    max-width: 660px;
    width: 100%;
    background: url(../images/contact/background-1.png);
    text-align: center;
    padding-top: 80px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: auto;
    display: flex;
    align-items: end;
    justify-content: center;
}

.contact-image .image-2 {
    display: none;
}

.contact-image img {
    max-width: 360px;
    width: 55%;
}

.contact-form form button {
    border: none;
    background: none;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: end;
    justify-content: end;
}

.contact-bg,
.news-articles-section-bg {
    background: #193b4a;
}

.contact-here {
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../images/contact/bg.png) no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 525px;
    padding: 0 16px;
    overflow: hidden;
    max-width: 1440px;
    margin: 0 auto;
}

.contact-here .blank {
    width: 50%;
    position: relative;
}

.contact-here .blank .line-icon-section {
    position: absolute;
    bottom: -262px;
    left: 0;
}

.contact-here .index {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 50px;
    max-width: 480px;
}

.contact-here .index h1 {
    color: var(--white);
    font-weight: 700;
    font-size: 56px;
    line-height: 55px;
    font-family: var(--PlayfairDisplay);
    margin-bottom: 18px;
}

.contact-here .index p,
.contact-here .index a {
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    font-family: var(--Roboto-Regular);
    color: var(--white);
    margin: 0;
    display: block;
}

.contact-here .index a:hover {
    color: var(--white);
}

footer {
    background: var(--black);
}

.footer-detail {
    padding: 45px;
    display: flex;
    gap: 10px;
    padding-left: 0;
    padding-right: 0;
}

.footer-detail .footer-img {
    width: 40%;
}

.footer-detail .footer-img p {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    font-family: var(--inter-regular);
    color: var(--white);
    margin-top: 85px;
    margin-bottom: 0;
}

.footer-detail .footer-info {
    /* width: 50%; */
    display: flex;
    gap: 40px;
}

.footer-detail .footer-info h6 {
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 15px;
}

.footer-home {
    width: 120px;
}

.footer-Businesses {
    width: 100%;
}

.footer-home ul,
.footer-Businesses ul {
    display: flex;
    flex-direction: column;
    gap: 19px;
}

.footer-home ul:first-child {
    margin-bottom: 19px;
}

.footer-home ul li,
.footer-Businesses ul li {
    opacity: 0.78;
}

.footer-info ul {
    padding: 0;
    margin-bottom: 0;
}

.footer-info ul li,
.footer-info ul li a,
.footer-detail a {
    list-style: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: var(--white);
}

.footer-info ul li a:hover,
.footer-detail a:hover {
    color: var(--secondary-color);
}

.footer-info ul li p {
    margin-bottom: 0;
}

.copy-right {
    display: none;
    margin-top: 20px;
}

.copy-right p {
    text-align: center;
    color: var(--white);
}

.our-companies-map-slider {
    max-width: 1440px;
    margin: 0 auto;
    margin-top: 70px;
    margin-bottom: 40px;
    overflow: hidden;
}

.our-companies-map-slider h2 {
    font-size: 42px;
    text-align: center;
    font-family: var(--PlayfairDisplay);
    line-height: 50px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 50px;
}

.map-section {
    position: relative;
}

.map-section.owl-carousel .owl-stage-outer {
    overflow: inherit;
}

.map-section.owl-carousel .owl-nav.disabled {
    display: flex;
    margin-top: 0;
}

.map-section .owl-nav,
.stories-one-slider .owl-nav {
    position: absolute;
    right: 10px;
    top: -97px;
    display: flex;
    gap: 16px;
}

.map-section .owl-prev,
.stories-one-slider .owl-prev,
.map-section .owl-next,
.stories-one-slider .owl-next {
    min-width: 42px;
    height: 42px;
    border: 1px solid var(--primery-color) !important;
    border-radius: 100% !important;
    position: relative;
}

.map-section .owl-prev.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.map-section .owl-prev span,
.map-section .owl-next span,
.stories-one-slider .owl-prev span,
.stories-one-slider .owl-next span {
    display: none;
}

.map-section .owl-prev::after,
.stories-one-slider .owl-prev::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    background-image: url(../images/left-arrow.png);
    background-repeat: no-repeat;
    height: 16px;
    width: 16px;
}

.map-section .owl-next::after,
.stories-one-slider .owl-next::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    background-image: url(../images/right-arrow.png);
    background-repeat: no-repeat;
    height: 16px;
    width: 16px;
}

.map-sectopn-box {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-location-block {
    min-height: 183px;
}

.map-sectopn-box h3 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    color: #1d2130;
    margin-bottom: 0;
}

.map-sectopn-box h4 {
    font-size: 18px;
}

.map-sectopn-box p {
    color: #525560;
    margin-bottom: 0;
}

.map-sectopn-box a {
    font-weight: 700;
    color: #525560;
    margin-top: 30px;
    display: block;
    margin-bottom: 11px;
}

.map-sectopn-box a:hover {
    color: var(--secondary-color);
}

.map-sectopn-box .map {
    margin-top: auto;
}

.map-sectopn-box .map iframe {
    width: 100%;
}

.aboutus-banner-section {
    margin-top: 32px;
    margin-bottom: 45px;
}

.aboutus-banner-section .banner-img img {
    width: 75%;
    padding-left: 0;
    padding-right: 0;
}

.aboutus-banner-section .banner-img .image2 {
    display: none;
}

.know-aboutus-section {
    margin-bottom: 70px;
}

.know-aboutus-section h1 {
    font-weight: 700;
    font-size: 42px;
    line-height: 50px;
    font-family: var(--PlayfairDisplay);
    color: var(--primery-color);
    margin-bottom: 16px;
    position: relative;
}

.know-aboutus-section h1::before {
    content: "";
    position: absolute;
    left: -33px;
    width: 6px;
    height: 44px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--secondary-color);
}

.know-aboutus-section p {
    margin-bottom: 30px;
}

.know-aboutus-section .know-content {
    max-width: 825px;
    margin-left: 28%;
}

.know-aboutus-section .know-content .mobile-text {
    display: none;
}

.our-journey-section {
    background-color: var(--light-blue);
    padding: 45px 0;
    margin-bottom: 66px;
    overflow: hidden;
}

.our-journey-section h2 {
    font-weight: 700;
    font-size: 42px;
    line-height: 50px;
    font-family: var(--PlayfairDisplay);
    color: var(--secondary-color);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 62px;
}

.our-journey-wrapper {
    display: grid;
    grid-template-columns: 42% 53.7%;
    padding-left: 95px;
    max-width: 1440px;
    margin: 0 auto;
    gap: 50px;
    position: relative;
}

.our-journey-slider {
    max-height: 516px;
    overflow: hidden;
    position: relative;
}

.our-journey-slider::before {
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    background: linear-gradient(
        0deg,
        rgba(239, 245, 248, 0) 0%,
        rgba(239, 245, 248, 0) 15.55%,
        #eff5f8 100%
    );
    width: 100%;
    height: 144px;
}

.our-journey-slider::after {
    content: "";
    bottom: 0;
    left: 0;
    position: absolute;
    background: linear-gradient(
        180deg,
        rgba(239, 245, 248, 0) 0%,
        rgba(239, 245, 248, 0) 15.55%,
        #eff5f8 100%
    );
    width: 100%;
    height: 217px;
}

.swiper-pagination {
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.swiper-pagination-bullet {
    height: 8px;
    width: 8px;
    background: yellow;
}

.our-journey-wrapper .our-journey-slider .year {
    font-weight: 700;
    font-size: 41px;
    line-height: 50px;
    font-family: var(--inter-regular);
    letter-spacing: 0.055em;
    color: var(--primery-color);
    margin-bottom: 10px;
}

.our-journey-wrapper.journey-slider-main .slide-button {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    border: 1px solid var(--primery-color);
    position: absolute;
}

.our-journey-wrapper .our-journey-slider .swiper-slide-next .year {
    color: var(--secondary-color);
    font-weight: 900;
}

.our-journey-wrapper.journey-slider-main .slide-button.swiper-button-disabled {
    opacity: 0.5;
}

.our-journey-wrapper.journey-slider-main .swiper-button-next {
    top: 0;
    left: 0;
}

.our-journey-wrapper.journey-slider-main .swiper-button-prev {
    bottom: 0;
    left: 0;
}

.our-journey-wrapper .image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: fit-content;
    z-index: 3;
}

.our-journey-wrapper .image .main-image {
    width: auto;
    mix-blend-mode: luminosity;
    margin-top: 40px;
}

.our-journey-wrapper .image .shape-image {
    position: absolute;
    top: 99%;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    margin-top: -6px;
}

.team-section {
    margin-bottom: 140px;
}

.team-section .team-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    gap: 65px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.team-section .team-wrapper .member-image img {
    width: auto;
}

.team-section .team-wrapper .member-image {
    margin-right: 67px;
}

.team-section h4 {
    font-weight: 700;
    font-size: 42px;
    line-height: 50px;
    font-family: var(--PlayfairDisplay);
    color: var(--secondary-color);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.team-section .member-detail {
    position: relative;
    z-index: 99;
    width: fit-content;
    margin-left: auto;
    margin-top: -90px;
}

.team-section .member-detail::before {
    position: absolute;
    content: "";
    top: -23px;
    left: -81px;
    background-image: url(../images/aboutus/member-icon-shap.png);
    background-repeat: no-repeat;
    width: 241px;
    height: 146px;
    z-index: -1;
    background-size: contain;
}

.team-section .member-detail h5 {
    font-weight: 500;
    font-size: 24px;
    line-height: 38px;
    position: relative;
    margin-bottom: 0;
}

.team-section .member-detail h5::before {
    content: "";
    position: absolute;
    left: -21px;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 12px;
    background-color: var(--secondary-color);
}

.team-section .member-detail p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 0;
    position: relative;
}

.tab-section {
    margin-bottom: 63px;
}

.tab-section .tab-wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

.tab-section .image-tab {
    gap: 113px;
    grid-template-columns: 31.5% 58.5%;
}

.image-tab .tab-content-list {
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.image-tab .image img {
    width: 88%;
}

.tab-section .tab-wrapper .image img {
    width: 100%;
}

/* about us css end */

/* artical css start */

.artical-banner-section {
    padding-left: 0px;
    padding-right: 0;
    position: relative;
    z-index: 99;
    max-width: 1440px;
    margin: 0 auto;
    margin-top: 30px;
}

.artical-banner-section img {
    width: 75%;
    min-height: 168px;
}

.artical-banner-section h1 {
    font-weight: 700;
    font-size: 42px;
    line-height: 63px;
    position: absolute;
    left: 5%;
    width: max-content;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-family: var(--PlayfairDisplay);
}

.artical-section {
    position: relative;
    margin-top: -83px;
    margin-bottom: 87px;
}

.artical-section .artical-top {
    padding: 107px 0 25px 0;
    background-color: var(--light-blue);
    margin-bottom: 30px;
}

.artical-section .artical-slider-main {
    overflow: hidden;
}

.artical-section .artical-slider img {
    mix-blend-mode: luminosity;
    width: 100%;
    height: auto;
}

.artical-section .artical-slider .swiper-wrapper {
    display: inline-flex;
}

.artical-section .slide-button {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    border: 1px solid var(--primery-color);
    transform: rotate(90deg);
}

.artical-section .artical-slider .swiper-slide-next .year {
    color: var(--secondary-color);
    font-weight: 900;
}

.artical-section .slide-button.swiper-button-disabled {
    opacity: 0.5;
}

.artical-section .swiper-pagination {
    position: relative;
    display: flex;
    gap: 30px;
    flex-direction: row;
    justify-content: center;
    flex-wrap: nowrap;
    height: 50px;
    padding-bottom: 20px;
    margin: 0 auto;
}

.artical-section .artical-top .container {
    position: relative;
}

.next_page {
    position: absolute;
    right: 0;
}

.next_page_img {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    border: 1px solid var(--primery-color);
    transform: rotate(90deg);
    transition: 0.7s;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    -ms-transition: 0.7s;
    -o-transition: 0.7s;
}

.next_page a span {
    color: #000;
    float: left;
    position: absolute;
    top: 14px;
    width: 94px;
    right: 70px;
}

.next_page a:hover .next_page_img {
    transition: 0.7s;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    -ms-transition: 0.7s;
    -o-transition: 0.7s;
    -webkit-transform: rotate(450deg);
    -moz-transform: rotate(450deg);
    -o-transform: rotate(450deg);
    -ms-transform: rotate(450deg);
    transform: rotate(450deg);
}

.prev_page_img {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    border: 1px solid var(--primery-color);
    transform: rotate(90deg);
    transition: 0.7s;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    -ms-transition: 0.7s;
    -o-transition: 0.7s;
}

.prev_page a:hover .prev_page_img {
    transition: 0.7s;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    -ms-transition: 0.7s;
    -o-transition: 0.7s;
    -webkit-transform: rotate(450deg);
    -moz-transform: rotate(450deg);
    -o-transform: rotate(450deg);
    -ms-transform: rotate(450deg);
    transform: rotate(450deg);
}

.prev_page a span {
    color: #000;
    float: left;
    position: absolute;
    top: 14px;
    width: 94px;
    left: 70px;
}

.prev_page {
    position: absolute;
    height: 50px;
    width: fit-content;
}

.artical-section .swiper-pagination .swiper-pagination-bullet {
    background: none;
    opacity: 0.5;
    cursor: pointer;
    font-weight: 700;
}

.artical-section .swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

.cardekho .modal-dialog {
    max-width: 1200px;
}

.cardekho .modal-dialog .modal-header {
    border: unset;
    background-color: transparent;
}

.cardekho .modal-dialog .modal-body img {
    width: 100%;
}

/* artical css end */

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.contact-form form button img,
.know-more-button .icon img,
.our-journey-wrapper.journey-slider-main .swiper-button-next,
.our-journey-wrapper.journey-slider-main .swiper-button-prev {
    transition: 0.7s;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    -ms-transition: 0.7s;
    -o-transition: 0.7s;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover,
.contact-form form button:hover img,
.know-more-button:hover .icon img,
.our-journey-wrapper.journey-slider-main .swiper-button-next:hover,
.our-journey-wrapper.journey-slider-main .swiper-button-prev:hover {
    transition: 0.7s;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    -ms-transition: 0.7s;
    -o-transition: 0.7s;
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.artical-section .slide-button {
    transition: 0.7s;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    -ms-transition: 0.7s;
    -o-transition: 0.7s;
}

.artical-section .slide-button:hover {
    transition: 0.7s;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    -ms-transition: 0.7s;
    -o-transition: 0.7s;
    -webkit-transform: rotate(450deg);
    -moz-transform: rotate(450deg);
    -o-transform: rotate(450deg);
    -ms-transform: rotate(450deg);
    transform: rotate(450deg);
}

.images-galler-section .owl-nav {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.images-galler-section .owl-prev span,
.images-galler-section .owl-next span {
    display: none;
}

.images-galler-section .owl-prev::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    background-image: url(../images/left-arrow.png);
    background-repeat: no-repeat;
    height: 16px;
    width: 16px;
}

.images-galler-section .owl-next::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    background-image: url(../images/right-arrow.png);
    background-repeat: no-repeat;
    height: 16px;
    width: 16px;
}

.images-galler-section .owl-prev,
.images-galler-section .owl-next {
    min-width: 42px;
    height: 42px;
    border: 1px solid var(--primery-color) !important;
    border-radius: 100% !important;
    position: relative;
}

.images-galler-section .owl-nav:hover {
    background: var(--white);
}

.images-galler-section .owl-nav [class*="owl-"]:hover {
    background: var(--white);
}

/* custom animation */
@keyframes bounce-y {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-20px);
    }
}

.box-animate-y {
    animation: 1s cubic-bezier(0.2, 0.65, 0.6, 1) infinite alternate bounce-y;
}

.reveal {
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: 1s;
}

.reveal.active {
    transform: translateY(0);
    opacity: 1;
}

.swiper-slide {
    height: auto !important;
}

.carbenz .modal-dialog {
    max-width: 939px;
}

.carbenz .modal-body {
    padding: 30px;
    padding-bottom: 60px;
}

.carbenz .modal-dialog .btn-close {
    border: 1px solid var(--black);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: block;
    margin-left: auto;
    opacity: 1 !important;
}

.carbenz .modal-dialog .btn-close:hover {
    border: 1px solid var(--secondary-color);
    transition: 0.7s;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    -ms-transition: 0.7s;
    -o-transition: 0.7s;
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.carbenz .images-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 60px;
}

.carbenz .images-box p {
    max-width: 613px;
    width: 100%;
    color: #193b4a;
    font-size: 22px;
    line-height: 32px;
    text-align: center;
}

#media_view_all .lat-read-more-button {
    width: max-content;
    float: right;
}

.delarship-images.artical_page {
    max-width: 100%;
    background-color: #eff5f8;
    padding-top: 117px;
    margin-top: -80px;
    position: relative;
    z-index: 1;
    padding-bottom: 20px;
}

.delarship-images.artical_page .detail,
.delarship-images.artical_page .date {
    margin-left: 50px;
}

.delarship-images.artical_page .delarship-desktop .detail::before {
    content: "";
    height: 80px;
    width: 6px;
    background-color: var(--secondary-color);
    display: block;
    position: absolute;
    bottom: 0;
    left: -6px;
}

/* ========================================================= */
.career-section {
    background: url(../images/career/career-bg.png) no-repeat;
    background-position: center center;
    object-fit: cover;
    min-height: 446px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 91px;
    padding-left: 90px !important;
    margin-bottom: 80px !important;
}

.career-section h1 {
    max-width: 711px;
    width: 100%;
    font-size: 42px;
    line-height: 55px;
    color: var(--white);
    font-family: var(--PlayfairDisplay);
    font-weight: 700;
}

.view-open-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    width: fit-content;
}

.view-open-button:hover {
    color: var(--white);
}

.view-open-button:hover img,
.form-button:hover img,
#apply-position .btn-close:hover {
    transition: 0.7s;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    -ms-transition: 0.7s;
    -o-transition: 0.7s;
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.success-environment {
    margin-bottom: 100px;
}

.success-environment h2 {
    text-align: center;
    font-size: 42px;
    line-height: 50px;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: var(--PlayfairDisplay);
    margin-bottom: 50px;
    text-transform: uppercase;
}

.success-environment-section {
    max-width: 1150px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 100px;
    row-gap: 70px;
    text-align: center;
    margin-bottom: 100px;
}

.environment-box .box-icon {
    position: relative;
    width: 90px;
    height: 60px;
    margin: 0 auto;
    margin-bottom: 25px;
}

.environment-box .box-icon .icon {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.environment-box h3 {
    font-size: 26px;
    line-height: 31px;
    font-weight: 500;
    margin-bottom: 17px;
}

.environment-box p {
    font-size: 14px;
    line-height: 17px;
}

.welcome-in-style {
    max-width: 1100px;
    padding: 0 16px;
    margin: 0 auto;
    margin-bottom: 70px;
}

.welcome-in-style h3,
.group-values h3,
.side-of-work h3,
.stories h3,
.stories-one h3,
.numbers-section h4 {
    text-align: center;
    font-size: 42px;
    line-height: 50px;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: var(--PlayfairDisplay);
    margin-bottom: 50px;
    text-transform: uppercase;
}

.welcome-in-style video {
    width: 100%;
}

.side-of-work,
.stories {
    margin-bottom: 88px !important;
}

.side-of-work {
    overflow: hidden;
}

.side-of-work-slider .owl-stage-outer {
    overflow: inherit;
}

.side-of-work-slider .item {
    height: 226px;
}

.side-of-work-slider .item img {
    height: 100%;
}

.group-values {
    margin-bottom: 100px !important;
}

.group-values-section {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
    gap: 90px;
}

.group-values-section .images-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto;
    margin-bottom: 16px;
}

.group-values-section .values-box h6 {
    font-size: 18px;
    line-height: 25px;
    font-weight: 600;
    margin-bottom: 0;
}

.group-values-section .values-box p {
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 0;
}

.stories-slider .stories-box {
    position: relative;
}

.stories-slider .stories-box video {
    width: 100%;
}

.stories-slider .stories-box .stories-detail {
    position: absolute;
    bottom: 80px;
    left: 50px;
}

.stories-slider .stories-box .stories-detail p {
    margin-bottom: 0;
    font-size: 22px;
    line-height: 33px;
    color: var(--white);
}

.stories-slider .stories-box .video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
}

.stories-slider.owl-carousel .owl-nav.disabled {
    display: flex;
    margin-top: 0;
}

.stories-slider .owl-nav {
    position: absolute;
    right: 10px;
    top: -97px;
    display: flex;
    gap: 16px;
}

.stories-slider .owl-prev,
.stories-slider .owl-next {
    min-width: 42px;
    height: 42px;
    border: 1px solid var(--primery-color) !important;
    border-radius: 100% !important;
    position: relative;
}

.stories-slider .owl-prev.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.stories-slider .owl-prev span,
.stories-slider .owl-next span {
    display: none;
}

.stories-slider .owl-prev::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    background-image: url(../images/left-arrow.png);
    background-repeat: no-repeat;
    height: 16px;
    width: 16px;
}

.stories-slider .owl-next::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    background-image: url(../images/right-arrow.png);
    background-repeat: no-repeat;
    height: 16px;
    width: 16px;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
    background: var(--white);
}

.opportunities-now {
    margin-bottom: 96px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
}

.opportunities-now h4 {
    font-size: 42px;
    line-height: 50px;
    color: var(--primery-color);
    font-family: var(--PlayfairDisplay);
    text-align: center;
}

.opportunities-now .view-open-button {
    color: var(--primery-color);
    margin: 0 auto;
    font-weight: 500;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label {
    font-size: 12px;
    line-height: 19px;
    color: var(--primery-color);
    opacity: 0.6;
    font-weight: 600;
}
.form-group input,
.form-group select {
    font-size: 16px;
    line-height: 25px;
    color: var(--primery-color);
    padding-bottom: 4px;
    border: none;
    border-bottom: 1px solid var(--primery-color);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
}

.numbers-section {
    margin-bottom: 90px;
}

.numbers-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    gap: 90px;
    grid-template-columns: repeat(3, 1fr);
    padding-top: 30px !important;
}

.numbers-section .numbers-box {
    position: relative;
}

.numbers-section .numbers-box .box-info {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 230px;
    width: 100%;
    text-align: center;
}

.numbers-section .numbers-box .box-info h6 {
    font-size: 82px;
    font-weight: 800;
    margin-bottom: 2px;
}

.numbers-section .numbers-box .box-info p {
    font-size: 30px;
    line-height: 33px;
    font-weight: 500;
    text-transform: uppercase;
}

.numbers-section .numbers-box .box-image img {
    width: 100%;
}

.view-open-page {
    min-height: 365px;
}

.open-positions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.open-positions-form {
    margin-bottom: 32px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-size: 12px;
    line-height: 18px;
    color: var(--primery-color);
    opacity: 0.6;
    font-weight: 700;
}

.input-group select,
.input-group input {
    padding-bottom: 4px;
    border: unset;
    font-size: 16px;
    line-height: 25px;
    color: var(--primery-color);
    border-bottom: 1px solid var(--primery-color);
}

.input-group select:focus,
.input-group input:focus {
    outline: none;
}

.countries-input-container {
    position: relative;
}

.input-arrow {
    position: absolute;
    right: 0.5em;
    top: calc(50% - 0.5rem);
    transition: transform 0.3s ease;
}

.choose-company-input:focus ~ .input-arrow,
.choose-company-input:focus ~ .input-arrow {
    transform: rotate(180deg);
}

.choose-company-list,
.locations-list-container {
    box-shadow: 0 8px 15px 0 rgba(33, 33, 33, 0.2);
    opacity: 0;
    position: relative;
    visibility: visible;
    transform-origin: center top;
    transition: all 0.3s ease;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    z-index: 888888;
    padding: 5px;
    pointer-events: none;
}

.choose-company-list.visible,
.locations-list-container.visible {
    opacity: 1;
    transform: scaleY(1);
    visibility: visible;
    pointer-events: unset;
}

.open-positions-form h2 {
    font-weight: 700;
    font-size: 42px;
    line-height: 50px;
    font-family: var(--PlayfairDisplay);
    color: var(--secondary-color);
    text-transform: uppercase;
    margin-bottom: 62px;
}

.open-positions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.open-positions .input-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.open-positions .input-group .select-label {
    font-size: 12px;
    font-weight: 700;
    line-height: 160%;
    color: #193b4a;
    opacity: 0.6;
}

.open-positions input {
    border-radius: 0;
    padding-left: 0;
}

.open-positions input:focus {
    box-shadow: none;
    border-top: none;
    border-left: none;
    border-right: none;
    border-color: #000;
}

.choose-company-list {
    padding: 10px 0px;
}

.choose-company-list ul {
    list-style: none;
    padding: 0px;
    margin: 0;
}

.choose-company-list ul li {
    transition: all 0.3s ease-in-out;
    padding: 0px 22px;
}

.choose-company-list ul li:hover {
    background-color: #d6a84810;
}

.search-job-main h2 {
    font-weight: 700;
    font-size: 34px;
    line-height: 40px;
    color: #193b4a;
    margin-bottom: 10px;
}

.search-job {
    position: relative;
    margin-bottom: 20px;
}

.search-job .search-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-job input {
    border-radius: 0;
    border: 0;
    padding-left: 30px;
    border-bottom: 1px solid var(--primery-color);
    max-width: 410px;
}

.search-job input:focus {
    box-shadow: none;
    border-top: none;
    border-left: none;
    border-right: none;
    border-color: #000;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-item {
    padding: 23px 45px;
    background-color: #193b4a03;
    border: unset;
}

.accordion-item .accordion-button {
    background-color: unset;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.accordion-flush .accordion-item .accordion-button .heading {
    max-width: 904px;
    width: 100%;
}

.accordion-item .accordion-button:focus {
    box-shadow: none;
    border: unset;
}

.accordion-item .accordion-button::after {
    display: none;
}

.accordion-item h3 {
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    color: #000000;
}

.accordion-item p {
    font-size: 14px;
    line-height: 26px;
    color: #1d2130;
}

.accordion-item .accordion-button .form-button {
    display: flex;
    gap: 12px;
    min-width: fit-content;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
}

.accordion-item .accordion-button .form-button img {
    transform: rotate(90deg);
    transition: all 0.2s ease-in-out;
}

.accordion-item .accordion-button.collapsed .form-button img {
    transform: rotate(0deg);
    transition: all 0.2s ease-in-out;
}

.accordion-item .form-button {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    width: fit-content;
}

.drop-your {
    margin-bottom: 40px;
    margin-top: 50px;
}

.drop-your h6 {
    font-size: 28px;
    line-height: 33px;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: var(--PlayfairDisplay);
    margin-bottom: 18px;
}

.drop-your .form-button,
.submit-button .form-button {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    width: fit-content;
    background-color: transparent;
    border: 0;
}

.drop-your p {
    font-size: 12px;
    line-height: 19px;
    font-weight: 700;
    margin-top: 30px;
}

.drop-your p a {
    font-size: 18px;
    line-height: 28px;
    color: var(--secondary-color);
    text-decoration: underline;
}
#apply-position .modal-dialog,
#apply-success .modal-dialog {
    max-width: 940px;
    width: 100%;
}
#apply-position .modal-content,
#apply-success .modal-content {
    padding: 60px 50px;
}
.apply-position-form h6 {
    margin-bottom: 42px;
    font-size: 42px;
    font-weight: 50px;
    font-weight: 700;
    font-family: var(--secondary-color);
    color: var(--secondary-color);
}
.apply-position-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}
#apply-position .btn-close,
#apply-success .btn-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid var(--primery-color);
    opacity: 1;
}
.uplode-submit-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 35px;
}
.uplode-submit-button .uplode-button {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}
.uplode-submit-button .uplode-button .file-two {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
    cursor: pointer;
}
.uplode-submit-button .uplode-button span {
    font-size: 12px;
    line-height: 19px;
    font-weight: 700;
    color: var(--primery-color);
    opacity: 0.6;
}
.succeed-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
}
.succeed-item h5 {
    font-size: 42px;
    line-height: 50px;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: var(--PlayfairDisplay);
    margin-top: 30px;
    margin-bottom: 0;
}
.succeed-item p {
    font-size: 22px;
    line-height: 32px;
    color: var(--primery-color);
}
.stories-one-slider {
    margin-bottom: 50px;
}
.stories-one-box {
    background: #f6f7f8;
    padding: 25px;
    min-height: 270px;
}
.stories-one-box .stories-one-info {
    display: flex;
    gap: 20px;
    margin-bottom: 6px;
}
.stories-one-box .stories-one-info p {
    font-size: 14px;
    line-height: 20px;
}
.stories-one-box .stories-one-info .images-box {
    max-width: 48px;
    width: 100%;
    height: 48px;
}
.stories-one-box .stories-one-info .images-box img {
    height: 100%;
}
.stories-one-box .stories-one-detail h6 {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 0;
    font-weight: 700;
}
.stories-one-box .stories-one-detail p {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 0;
}
.stories-one {
    overflow: hidden;
}
.stories-one .stories-one-slider .owl-stage-outer {
    overflow: inherit;
}
.stories-one a {
    color: var(--secondary-color);
}
.side-of-work.container.reveal .owl-carousel.owl-drag .owl-item {
    width: auto !important;
    display: block;
}
.stories-one-box .stories-one-info .images-box img {
    height: 48px;
    width: 48px;
    border-radius: 100%;
}
.welcome-in-style iframe {
    border: 0;
    max-width: 100%;
}

.stories-one-box .stories-one-info .images-box img {
    height: 48px;
    width: 48px;
    border-radius: 100%;
    object-fit: contain;
    max-width: 48px;
}

.stories-one-box .stories-one-info .images-box img {
    height: 48px;
    width: 48px;
    border-radius: 100%;
    object-fit: contain;
    max-width: 48px;
}

.stories-one-box {
    min-height: 265px;
}

@media (max-width: 1024px) {
    .stories-one-box {
        background: #f6f7f8;
        padding: 25px;
        min-height: 515px;
    }
    #apply-position .btn-close,
    #apply-success .btn-close {
        width: 30px;
        height: 30px;
        top: 10px;
        right: 10px;
    }
    .career-section {
        padding-left: 16px !important;
        margin-bottom: 60px !important;
    }

    .success-environment-section {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 60px;
    }

    .success-environment,
    .group-values {
        margin-bottom: 60px !important;
    }

    .numbers-section {
        margin-bottom: 60px;
    }

    .success-environment h2 {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 40px;
    }

    .numbers-inner {
        grid-template-columns: repeat(1, 1fr);
        gap: 50px;
    }

    .numbers-section .numbers-box {
        max-width: 325px;
        width: 100%;
        max-height: 200px;
        height: 100%;
        margin: 0 auto;
    }
    .open-positions {
        grid-template-columns: repeat(1, 1fr);
    }
    .search-job input {
        max-width: 100%;
    }
    .apply-position-list {
        grid-template-columns: 1fr;
    }
    #apply-position .modal-dialog,
    #apply-success .modal-dialog {
        max-width: unset;
        width: unset;
    }
    #apply-position .modal-content,
    #apply-success .modal-content {
        padding: 30px;
    }
    .succeed-item p {
        font-size: 18px;
        line-height: 22px;
        text-align: center;
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .career-section {
        gap: 30px;
    }

    .stories-slider .owl-nav {
        top: unset;
        bottom: 0px;
    }

    .stories h3 {
        margin-bottom: 10px;
    }

    .stories-slider {
        padding-bottom: 66px;
    }

    .opportunities-now {
        margin-bottom: 50px !important;
    }
    .accordion-item {
        padding: 15px;
    }
    .stories-one .stories-one-slider {
        padding-bottom: 66px;
        margin-bottom: 20px;
    }
    .stories-one .stories-one-slider .owl-nav {
        top: unset;
        bottom: 0;
    }
}

@media (max-width: 640px) {
    .success-environment-section,
    .group-values-section {
        grid-template-columns: repeat(1, 1fr);
        gap: 50px;
    }

    .career-section h1,
    .success-environment h2,
    .welcome-in-style h3,
    .group-values h3,
    .side-of-work h3,
    .stories h3,
    .numbers-section h4,
    .open-positions-form h2,
    .search-job-main h2,
    .succeed-item h5 {
        line-height: 30px;
        font-size: 25px;
    }
    .succeed-item h5 {
        text-align: center;
    }
    .open-positions-form h2 {
        margin-bottom: 30px;
    }

    .environment-box h3 {
        font-size: 20px;
        line-height: 25px;
    }

    .side-of-work,
    .stories {
        margin-bottom: 50px !important;
    }

    .opportunities-now h4 {
        line-height: 35px;
        font-size: 30px;
    }
    .accordion-item .accordion-button {
        flex-direction: column;
        align-items: start;
    }
    #apply-position .modal-content,
    #apply-success .modal-content {
        padding: 15px;
    }
}

.footer-headings {
    margin-top: 40px;
}
