/* ------------ start section css---------- */

.front-img-foton {
    display: block;
    width: 100% !important;
    height: auto !important;
    /* width: 100%; */
    height: auto;
    z-index: 0;
}

.con-center {
    display: grid;
    place-items: center;
}

/* ---------------start video css --------- */

.responsive-video {
    width: 72% !important;
    position: relative;
    padding-bottom: 40.25%;
    height: 0;
    overflow: hidden;
}

.responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 991px) {
    .responsive-video {
        width: 100% !important;
        padding-bottom: 56.25%;
    }
}

/* @media (max-width: 767px) {
    .responsive-video {
        width: 90% !important;
        padding-bottom: 50.25%;
    }
} */

/* 
@media (max-width: 400px) {
    .responsive-video {
        width: 85% !important;
        padding-bottom: 48.25%;
    }
} */

.container-video {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 56.25%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.responsive-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    border: none;
}

@media (max-width: 700px) {
    .responsive-iframe {
        width: 90%;
        height: 90%;
    }
}

.under-line.active-home::before {
    width: 100%;
    left: 0;
}

/* 
@media (max-width: 500px) {
    .responsive-iframe {
        width: 100%;
        height: 100%;
    }
} */

/* -------------end section css------------ */

/* ----------------start model unit css--------- */

h2,
h1 {
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 700 !important;
}

/* :root {
    --white-color: #fff;
    --bg-color: #fff;
    --gray-color: #ccc;
}

body {
    font-family: "Work Sans", sans-serif;
    color: #4d4d4d;
    font-size: 16px;
} */

.py-10 {
    margin-top: 6rem !important;
}

.wrapper {
    width: 100%;
}

h2 {
    font-weight: 700 !important;
}

h5 {
    color: #fff !important;
    font-size: 14px !important;
    padding: 20px 140px 0 140px !important;
    line-height: 1.5 !important;
}

.tabs-list-cat {
    justify-content: center !important;
}

@media (max-width: 1200px) {
    h5 {
        font-size: 18px !important;
        padding: 0 !important;
    }
}

@media (max-width: 992px) {
    h5 {
        font-size: 16px !important;
        padding: 0 !important;
    }
}

@media (max-width: 768px) {
    h5 {
        font-size: 15px !important;
        padding: 0 !important;
    }
}

@media (max-width: 576px) {
    h5 {
        font-size: 15px !important;
        padding: 0 1rem 0 1rem !important;
        line-height: 1.5 !important;
    }
    .container_show {
        padding: 0 !important;
    }
}

@media (max-width: 700px) {
    .tabs-list-cat {
        display: flex !important;
        place-items: center !important;
    }
}

@media (max-width: 767px) {
    .front-gap {
        gap: 20px;
    }
}

a:link {
    text-decoration: none;
}

.row-details {
    margin-top: 50px;
    align-items: center;
}

.card-container {
    display: flex;
    transition: transform 0.5s ease;
    width: calc(25rem * 3);
}

.card {
    margin: auto;
    width: 100%;
}

.next,
.prev {
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 2rem;
    margin: 0 10px;
}

.img {
    height: 150%;
    width: 25.375rem;
    object-fit: cover;
}

.btn-title {
    margin-top: 7px;
}

.btn-conteiner {
    display: flex;
    justify-content: center;
    --color-text: #ffffff;
    --color-background: #002c5fff;
    --color-outline: #39bda7;
    --color-shadow: #00000080;
}

.btn-content {
    display: flex;
    align-items: center;
    padding: 5px 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 19px;
    color: var(--color-text);
    background: var(--color-background);
    transition: 1s;
    box-shadow: 0 0 0.2em 0 var(--color-background);
}

.btn-content:focus,
.btn-content:hover {
    transition: 0.5s;
    background-color: #39bda7;
    -webkit-animation: btn-content 1s;
    animation: btn-content 1s;
    outline: 0.1em solid transparent;
    outline-offset: 0.2em;
    box-shadow: 0 0 0.4em 0 var(--color-background);
}

.btn-content .icon-arrow {
    transition: 0.5s;
    margin-right: 0;
    transform: scale(0.6);
}

.btn-content:hover .icon-arrow {
    transition: 0.5s;
    margin-right: 25px;
}

.icon-arrow {
    width: 20px;
    margin-left: 15px;
    position: relative;
    top: 6%;
}

#arrow-icon-one {
    transition: 0.4s;
    transform: translateX(-60%);
}

#arrow-icon-two {
    transition: 0.5s;
    transform: translateX(-30%);
}

.btn-content:hover #arrow-icon-three {
    animation: color_anim 1s infinite 0.2s;
}

.btn-content:hover #arrow-icon-one {
    transform: translateX(0);
    animation: color_anim 1s infinite 0.6s;
}

.btn-content:hover #arrow-icon-two {
    transform: translateX(0);
    animation: color_anim 1s infinite 0.4s;
}

@keyframes color_anim {
    0% {
        fill: #fff;
    }
    50% {
        fill: var(--color-background);
    }
    100% {
        fill: #fff;
    }
}

@-webkit-keyframes btn-content {
    0% {
        outline: 0.2em solid var(--color-background);
        outline-offset: 0;
    }
}

@keyframes btn-content {
    0% {
        outline: 0.2em solid var(--color-background);
        outline-offset: 0;
    }
}

.card-img-top {
    object-fit: cover;
    height: 200px;
    width: 100%;
}

.fade {
    animation: fade 4s;
}

@keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.container-line {
    background-color: #f6f3f2 !important;
}

.name {
    margin-top: -1.5rem !important;
}

/* @media (min-width: 1900px) {
    .h1,
    h1 {
        font-size: 4.5rem !important;
    }
} */

/* @media (min-width: 1900px) {
    .h4,
    h4 {
        font-size: 2.5rem !important;
    }
} */

.card-text {
    /* font-family: HyundaiSansRegular !important; */
    font-size: 16px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: 30rem 30rem;
    border-radius: 20px;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.active1 {
    opacity: 1;
}

@media (max-width: 768px) {
    .slide {
        background-size: 80% auto;
    }
    #show,
    .card-content,
    .card-content-promo {
        background-size: 100% auto;
    }
}

@media only screen and (max-width: 600px) {
    .container_show {
        padding: 0 !important;
    }
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: #373636;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 5px;
    z-index: 1;
}

.body-swip {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-swiper {
    position: relative;
    padding: 15px;
    padding: 0 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.cardshow {
    position: relative;
    border-radius: 20px;
    margin: 20px 0px;
}

.container-swipper {
    margin: 0 !important;
    padding: 0 17px !important;
}

/* @media (max-width: 400px) {
    .container-swipper {
        height: 30vh !important;
    }
} */

.cardshow::before {
    content: "";
    position: absolute;
    height: 40%;
    width: 100%;
    border-radius: 20px 20px 0 0;
}

.cardshow .card-content,
.cardshow .card-content-promo {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 100;
    /* box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease; */
    cursor: pointer;
}

.card-content:hover {
    transform: scale(1.13);
}

.show {
    background-repeat: no-repeat;
    background-attachment: cover;
    background-size: 100% 100%;
    /* height: 15rem; */
    object-fit: cover;
}

@media (max-width: 768px) {
    .show {
        height: auto;
    }
}

@media (max-width: 350px) {
    .show {
        height: 15.7rem;
    }
    .slide-swiper {
        padding: 0 13px;
    }
}

.swiper-pagination {
    position: absolute;
}

.swiper-button-next,
.swiper-button-prev {
    opacity: 0.7;
    color: #fff;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 1;
    color: #fff;
}

@media (max-width: 768px) {
    /* section {
    padding: 15px;
  } */
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
    .icon {
        width: 20px !important;
        height: 20px !important;
    }
}

.swiper-button-next,
.swiper-button-prev {
    opacity: 0.7;
    color: #000000;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 1;
    color: #000000;
}

@media (max-width: 768px) {
    /* section {
    padding: 15px;
  } */
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

.book {
    color: #ffff;
}

.icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
}

@keyframes shine {
    0% {
        left: -100px;
    }
    60% {
        left: 100%;
    }
    to {
        left: 100%;
    }
}

.icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
}

@keyframes shine {
    0% {
        left: -100px;
    }
    60% {
        left: 100%;
    }
    to {
        left: 100%;
    }
}

.model-unit {
    width: 100%;
    height: auto;
}

.model-unit-plate {
    width: 50%;
    height: auto;
}

@media (max-width: 768px) {
    .model-unit {
        width: 100%;
        height: auto;
    }
    .model-unit-plate {
        width: 70%;
        height: auto;
    }
}

/* @font-face {
    font-family: aerobus-font;
    src: url(font/aerobus-font/AerobusPersonalUse-2OmV8.ttf);
} */

/* @font-face {
    font-family: nextra-font;
    src: url(font/nextra-font/Nextra-j9vBy.otf);
} */

/* .model-title {
  font-family: nextra-font !important;
  font-size: 1.5rem;
} */

/* .model-title {
    font-family: "Arial", sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
} */

/* .model-scnd-title {
  font-family: nextra-font !important;
  font-size: 1.5rem;
} */

.model-scnd-title {
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.model-scnd-title-H {
    font-family: "Arial", sans-serif;
    font-size: 1rem;
}

.model-scnd-title-G {
    font-family: nextra-font !important;
    font-size: 1.5rem;
}

.link-model-unit {
    text-decoration: none !important;
    color: #000;
}

.pc-5 {
    padding-top: 50px;
}

.nav-tabs {
    font-size: 14px;
    font-weight: 500;
}

.nav-tabs .nav-link {
    border: none !important;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link:hover {
    color: #fff !important;
    background-color: #26272b;
    border-bottom: 3px solid #26272b !important;
    border-radius: 0 !important;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    font-weight: 700 !important;
    color: #26272b !important;
    border-bottom: 3px solid #26272b !important;
}

.nav-tabs .nav-link {
    color: #6b6b6b !important;
}

/* Responsive Typography and Spacing for Smaller Screens */

.dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.dropdown-content {
    margin-top: 0.2rem;
    display: none;
    position: absolute;
    background-color: #002c5f;
    min-width: 178px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 5;
    font-size: 12px !important;
}

.dropdown-content a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    /* background-color: #ddd; */
    color: #0693e3;
}

.dropdown:hover .dropdown-content {
    display: block;
}

@media (max-width: 700px) {
    .pc-5 {
        padding-bottom: 0px !important;
    }
    .btn-content-btm {
        margin-top: 0px !important;
    }
}

@media (max-width: 500px) {
    .pc-5 {
        padding-top: 20px !important;
    }
}

/* ------------------start btn see all vehicles---------------- */

.button-slv {
    /* font-family: sans-serif; */
    color: white;
    background-color: #222;
    font-weight: 600;
    /* border-radius: 0.5rem; */
    font-size: 1rem;
    line-height: 1.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    cursor: pointer;
    text-align: center;
    display: inline-flex;
    align-items: center;
    border: none;
}

.button-slv:hover {
    background-color: #333;
}

.btn-content-btm {
    display: grid;
    justify-content: center;
    /* margin-top: 30px; */
}

@media (max-width: 700px) {
    .button-slv {
        font-size: 0.75rem;
        font-weight: 500;
    }
}

@media (max-width: 500px) {
    .button-slv {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}

@media (max-width: 400px) {
    .button-slv {
        font-size: 0.6rem;
        font-weight: 500;
        padding-top: 0.3rem;
        padding-bottom: 0.3rem;
    }
}

/* -------------------------service offer---------------- */

.image-container-front {
    position: relative;
    display: inline-block;
    max-width: 600px;
}

@media (max-width: 500px) {
    .image-container-front {
        max-width: 355px;
    }
    .col-md-6 {
        padding: 10px 0px;
    }
}

@media (max-width: 350px) {
    .image-container-front {
        max-width: 310px;
    }
    .text-overlay-text {
        font-size: 15px !important;
    }
    .button-front {
        font-size: 0.6rem !important;
    }
    .col-md-6 {
        padding: 10px 0px;
    }
}

.image-container-front img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.text-overlay-text {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    padding: 10px;
    text-align: center;
    width: 100%;
}

@media (max-width: 500px) {
    .text-overlay-text {
        font-size: 20px;
    }
    .cos-mtop {
        margin-top: 15px !important;
    }
}

@media (max-width: 990px) {
    .res-btn {
        font-size: 0.7rem !important;
    }
    .cos-mtop {
        margin-top: 5px !important;
    }
    .front-text-pms {
        font-size: 20px;
        font-weight: 400;
    }
}

@media (max-width: 768px) {
    .front-text-pms {
        font-size: 24px;
    }
}

@media (max-width: 375px) {
    .front-text-pms {
        font-size: 19px;
    }
}

.button-front {
    color: white;
    background-color: #222;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 2rem;
    padding-left: 4rem;
    padding-right: 4rem;
    cursor: pointer;
    text-align: center;
    display: inline-flex;
    align-items: center;
    border: none;
}

.button-front:hover {
    background-color: #333;
}

.btn-content-front {
    display: grid;
    justify-content: center;
    margin-top: 15px;
}

/* ----------------------------start section after sales----------------------- */

.section-after-sales,
.section-promo-card {
    padding: 30px 0px;
    background-color: #efefef;
}

.container-after-sales {
    margin: 0px 70px !important;
}

@media (max-width: 768px) {
    .container-after-sales {
        margin: 0px 30px !important;
    }
}

.container_showroom {
    padding: 50px 0px;
}

.display-after-sales {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

figure.snip1208 {
    /* font-family: "Raleway", Arial, sans-serif; */
    color: #fff;
    position: relative;
    overflow: hidden;
    margin: 20px;
    min-width: 220px;
    max-width: 100%;
    width: 100%;
    background-color: #ffffff;
    color: #000000;
    text-align: left;
    font-size: 16px;
    height: auto;
}

figure.snip1208:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

figcaption {
    /* font-family: "Raleway", Arial, sans-serif; */
    font-family: sans-serif;
}

figcaption h3 {
    /* font-family: "Raleway", Arial, sans-serif; */
    font-family: inter, sans-serif !important;
}

figure.snip1208 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    font-weight: 600;
}

figure.snip1208 img {
    max-width: 100%;
    vertical-align: top;
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

figure.snip1208 figcaption {
    padding: 25px;
    position: relative;
}

figure.snip1208 i {
    line-height: 60px;
    font-size: 30px;
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.btn-read-more {
    /* position: absolute; */
    bottom: 0;
    /* padding: 15px; */
    width: 100%;
    text-align: -webkit-center;
}

figure.snip1208 h3,
figure.snip1208 p {
    margin: 0;
    padding: 0;
}

figure.snip1208 h3 {
    margin-bottom: 10px;
    display: inline-block;
    font-weight: 600;
    color: #333333;
    text-transform: uppercase;
    font-size: 17px !important;
}

figure.snip1208 p {
    font-size: 0.9em;
    margin: 20px 0px;
    line-height: 1.6em;
    color: #666666;
    font-weight: 500;
    font-family: sans-serif;
}

figure.snip1208 a {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    /* position: absolute; */
    z-index: 1;
}

.after-sales-card:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.04);
}

.btn-see-more {
    width: 140px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    border: none;
    position: relative;
    background-color: transparent;
    transition: 0.2s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0.6;
    font-family: Arial;
    font-size: 0.9rem;
}

.btn-see-more::after {
    content: "";
    border-bottom: 3px solid #26272b;
    width: 0;
    height: 100%;
    position: absolute;
    margin-top: -5px;
    top: 0;
    left: 5px;
    visibility: hidden;
    opacity: 1;
    transition: 0.2s linear;
}

.btn-see-more .icon {
    transform: translateX(0%);
    transition: 0.2s linear;
    animation: attention 1.2s linear infinite;
}

.btn-see-more:hover::after {
    visibility: visible;
    opacity: 0.7;
    width: 90%;
}

.btn-see-more:hover {
    letter-spacing: 2px;
    opacity: 1;
}

.btn-see-more:hover > .icon {
    transform: translateX(30%);
    animation: none;
}

@keyframes attention {
    0% {
        transform: translateX(0%);
    }
    50% {
        transform: translateX(30%);
    }
}

@media (max-width: 700px) {
    .display-after-sales {
        display: grid;
        grid-template-columns: none !important;
    }
}

/* ---------------------------start news card css--------------------------- */

.snip1369 {
    font-family: "Raleway", Arial, sans-serif;
    position: relative;
    overflow: hidden;
    margin: 10px;
    min-width: 230px;
    max-width: 315px;
    width: 100%;
    background: #26272b;
    text-align: left;
    color: #ffffff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    font-size: 16px;
}

.snip1369 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.snip1369 > img,
.snip1369 .image img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    max-width: 100%;
}

.snip1369 > img {
    vertical-align: top;
    position: relative;
    -webkit-filter: blur(5px);
    filter: blur(5px);
    opacity: 0.6;
}

.snip1369 figcaption,
.snip1369 .image {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.snip1369 .image {
    position: absolute;
    top: 0;
    bottom: 25%;
    right: 0;
    left: 0;
    overflow: hidden;
    box-shadow:
        0px 1px 5px rgba(0, 0, 0, 0.1),
        0px 1px 0 rgba(255, 255, 255, 0.2);
}

.snip1369 .image img {
    position: absolute;
    top: 0;
}

.snip1369 figcaption {
    position: absolute;
    top: 75%;
    bottom: 46px;
    left: 20px;
    right: 20px;
    border-bottom: 2px solid #ffffff;
    padding-top: 20px;
    z-index: 1;
}

.snip1369 h3,
.snip1369 p {
    margin: 0;
}

.snip1369 h3 {
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.snip1369 p {
    font-size: 0.9em;
    letter-spacing: 1px;
    font-weight: 400;
    opacity: 0;
}

.snip1369 .read-more {
    font-family: intern, sans-serif;
    display: block;
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
    line-height: 48px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 20px;
    color: #ffffff;
    right: 0;
    bottom: 0;
    font-weight: 500;
    position: absolute;
}

.snip1369 a {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    z-index: 1;
}

.snip1369:hover .read-more,
.snip1369.hover .read-more,
.snip1369:hover figcaption,
.snip1369.hover figcaption {
    opacity: 1;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
}

.snip1369:hover figcaption,
.snip1369.hover figcaption,
.snip1369:hover .image,
.snip1369.hover .image {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.snip1369:hover figcaption,
.snip1369.hover figcaption {
    top: 50%;
}

.snip1369:hover .image,
.snip1369.hover .image {
    bottom: 50%;
}

.snip1369:hover p,
.snip1369.hover p {
    opacity: 1;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.services-section {
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    margin: 20px auto;
    max-width: 1200px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.service-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px 0 rgba(31, 38, 135, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.service-icon {
    font-size: 3rem;
    color: #1e1e1e;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1);
}

.service-item h3 {
    color: #1e1e1e;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.promo-img {
    aspect-ratio: 11 / 9;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.date {
    color: #666;
    font-size: 0.8rem;
    font-weight: 400;
}

.promo-img:hover {
    transform: scale(1.05);
}

.card-sha {
    width: 95%;
}

.card-sha {
    padding: 15px;
    gap: 15px;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0px;
    /*box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);*/
    transition: all 0.3s ease;
}

.text-promo {
    display: inline-block;
    text-align: left;
    line-height: 1.5;
    width: 95%;
    font-size: 0.9rem;
    color: #1e1e1e;
    font-weight: 600;
}

.custom-pt-2 {
    padding-bottom: 2.5rem;
}

/* .card-content-promo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px 0 rgba(31, 38, 135, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
} */

.btn-see-all a {
    color: #1e1e1e;
    font-size: 1rem;
    font-weight: 700;
    font-family: sans-serif;
}

.btn-see-all i {
    margin-left: 5px;
}

.btn-see-all:hover {
    color: #585656;
    text-decoration: underline;
}

/* .cos-swiper {
  max-width: 1500px !important;
} */

.swiper-pagination-promo {
    position: absolute;
    display: none;
}

.swiper-button-next-promo,
.swiper-button-prev-promo {
    opacity: 0.7;
    color: #fff;
    transition: all 0.3s ease;
}

.swiper-button-next-promo:hover,
.swiper-button-prev-promo:hover {
    opacity: 1;
    color: #fff;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        padding: 0 10px;
    }
    .service-item {
        padding: 15px;
    }
    .service-icon {
        font-size: 2.5rem;
    }
    .service-item h3 {
        font-size: 1rem;
    }
    .service-item p {
        font-size: 0.8rem;
    }
}

/* -------------------------------start section-get-qoute css-------------- */

.section-get-qoute {
    background: url(../img/foton-bg.webp);
    /*background-repeat: no-repeat !important;*/
    object-fit: cover;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* -------------------------------start find us css----------------------- */

.ratio {
    border-radius: 8px;
    overflow: hidden;
}

.row {
    width: 100%;
}

.btn-contact-us {
    margin-top: 15px;
}

.cos-container {
    max-width: 99%;
}

.front-text-align {
    display: grid;
    justify-content: center;
    padding: 50px 20px;
    gap: 20px;
}

.btn-contact-us {
    display: flex;
    justify-content: center;
}

.front-text-find-us {
    line-height: 3.5;
}

.front-text-find-us h2 {
    margin-bottom: 15px;
}

.front-text-find-us span {
    display: block;
    margin-bottom: 10px;
    font-size: 1rem;
}

.btn-primary {
    border: 2px solid #1e1e1e !important;
    border-radius: 0px !important;
    background-color: #fff !important;
    color: #1e1e1e !important;
    padding: 6px 40px !important;
}

.btn-primary:hover {
    background-color: #1e1e1e !important;
    color: #fff !important;
}

.btn {
    font-weight: 500 !important;
}

.modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-contents {
    background-repeat: no-repeat;
    background-size: 100% 100%;
    border: none !important;
    margin: 4% auto;
    width: 80%;
    height: 80%;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
}

.apply-now {
    width: 100%;
    height: 120%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(images/Ads-Cover-website-new.png);
}

.ads {
    width: 100%;
    padding-top: 56.25%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.creta {
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.promo {
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.close3,
.close2,
.close0,
.close1,
.close {
    position: absolute;
    line-height: 37px;
    top: 10px;
    right: 10px;
    font-size: 40px;
    cursor: pointer;
    background: transparent;
    border: none;
    transition: 0.3s;
    font-weight: 500;
    color: #fff;
    padding: 2.5px;
    background-color: rgba(255, 0, 0, 0.326);
}

.close3:hover,
.close:hover,
.close2:hover,
.close1:hover,
.close0:hover {
    background-color: #ff0000;
    padding: 5px;
}

/* #closeModal0 {
    display: inline-block;
    border-radius: 50%;
    padding: 1px 15px;
} */

.applyNowBtns {
    margin: 24% auto;
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    padding-block: 0.5rem;
    padding-inline: 1.25rem;
    background-color: rgba(0, 0, 0, 0.781);
    /* border-radius: 9999px; */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffff;
    gap: 10px;
    font-weight: bold;
    border: 3px solid #ffffff4d;
    outline: none;
    overflow: hidden;
    font-size: 15px;
}

.icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
}

.applyNowBtns:hover {
    transform: scale(1.05);
    border-color: #fff9;
}

.applyNowBtns:hover .icon {
    transform: translate(4px);
}

.applyNowBtns:hover::before {
    animation: shine 1.5s ease-out infinite;
}

.applyNowBtns::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 30%,
        rgba(255, 255, 255, 0.8),
        rgba(255, 255, 255, 0) 70%
    );
    top: 0;
    left: -100px;
    opacity: 0.6;
}

@keyframes shine {
    0% {
        left: -100px;
    }
    60% {
        left: 100%;
    }
    to {
        left: 100%;
    }
}

.applyNowBtn {
    bottom: 20px;
    left: 20px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    z-index: 100;
    position: fixed;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    padding-block: 0.5rem;
    padding-inline: 1.25rem;
    background-color: rgb(0 0 0 / 50%);
    border-radius: 9999px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffff;
    gap: 10px;
    font-weight: bold;
    border: 3px solid #ffffff4d;
    outline: none;
    overflow: hidden;
}

.icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
}

.applyNowBtn:hover {
    transform: scale(1.05);
    border-color: #fff9;
}

.applyNowBtn:hover .icon {
    transform: translate(4px);
}

.applyNowBtn:hover::before {
    animation: shine 1.5s ease-out infinite;
}

.applyNowBtn::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 30%,
        rgba(255, 255, 255, 0.8),
        rgba(255, 255, 255, 0) 70%
    );
    top: 0;
    left: -100px;
    opacity: 0.6;
}

@keyframes shine {
    0% {
        left: -100px;
    }
    60% {
        left: 100%;
    }
    to {
        left: 100%;
    }
}

.tags {
    text-decoration: none;
    vertical-align: middle;
    text-align: center;
    line-height: 3;
}

.title-descript {
    color: white !important;
    margin: 0px;
}

.sidebar {
    height: auto;
    width: 0px;
    position: fixed;
    text-align: center;
    top: 35vh;
    z-index: 100;
    padding: 10px;
}

.title-descript .fab {
    left: 30px;
    position: relative;
    vertical-align: middle;
    text-align: center;
    font-size: 24px;
}

.fa-tiktok {
    left: 35px !important;
}

.fa-youtube {
    left: 27px !important;
}

.social {
    margin-left: -200px;
    width: 230px;
    padding: 0;
    display: inline-table;
    height: 0px;
    background-color: rgba(128, 128, 128, 0.73);
    -moz-transition-property: margin-left;
    -moz-transition-duration: 0.2s;
    -moz-transition-delay: 0.2s;
    -ms-transition-property: margin-left;
    -ms-transition-duration: 0.2s;
    -ms-transition-delay: 0.2s;
    -o-transition-property: margin-left;
    -o-transition-duration: 0.2s;
    -o-transition-delay: 0.2s;
    -webkit-transition-property: margin-left;
    -webkit-transition-duration: 0.2s;
    -webkit-transition-delay: 0.2s;
    box-shadow: 0px 0px 6px 0px #3e3d3d;
    cursor: pointer;
}

.social:hover {
    margin-left: -30px;
    width: 230px;
}

.facebook {
    background-color: #3b5998;
}

.tiktok {
    background-color: #000000;
}

.youtube {
    background-color: #c0230e;
}

.linkedin p i {
    left: 20px;
}

.youtube p i {
    left: 30px;
}

.linkedin:hover {
    background-color: #0976b4;
}

.find-us-section {
    height: 100vh;
    background-color: #e1e1e1;
}

@media (max-width: 768px) {
    .row-find-us {
        display: grid;
    }
    .col-md-6 {
        padding: 0px !important;
    }
    .find-us-section {
        height: auto;
    }
    .mt-4,
    .py-3 {
        padding: 0px !important;
        margin: 0px !important;
    }
    .modal-contents {
        width: 100% !important;
        height: 45% !important;
        margin: 50% auto !important;
    }
    .ads {
        height: 125% !important;
    }
    .creta {
        height: 130% !important;
    }
    .promo {
        height: 130% !important;
    }
    .apply-now {
        padding-top: 50% !important;
    }
    .applyNowBtns {
        padding-block: 0.1rem !important;
        /* font-size: 11px !important; */
        margin: auto !important;
    }
    .icon {
        width: 20px !important;
        height: 20px !important;
    }
    .modal {
        z-index: 2000 !important;
    }
    .box {
        font-size: 1em !important;
    }
    .explore-label {
        font-size: 0.8em !important;
    }
}

@media (max-width: 900px) {
    .row-find-us {
        display: block;
    }
}

@media (max-width: 980px) {
    .display-after-sales {
        display: grid;
        gap: 10px;
        grid-template-columns: auto auto;
        place-items: center;
    }
    .front-text-align {
        padding: 50px 40px !important;
    }
    figure.snip1208 {
        max-width: 80%;
    }
}

/* -------------------START YT  CSS---------------- */

.title-ms {
    background-color: #1e1e1e;
    font-size: 20px;
    font-weight: 600;
    line-height: 24.2px;
    color: #ffffff;
    border-radius: 3px;
    padding: 5px 13px;
}

.social-icon i {
    width: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
}

.social-icon a {
    color: #fff;
    font-size: 16px;
    margin-right: 15px;
}

.social-icon {
    margin-bottom: 20px;
}

.text-description p {
    font-size: 22px;
}

.Preventive h3 {
    color: #000000;
    font-size: 44px !important;
}

.Preventive p {
    font-size: 18px;
}

/* .inquire {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: #183153;
    box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    cursor: pointer;
    border: none;
}

.inquire:after {
    content: " ";
    width: 0%;
    height: 100%;
    background: rgba(0, 170, 210, 1);
    position: absolute;
    transition: all 0.4s ease-in-out;
    right: 0;
}

.inquire:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.inquire,
.inq {
    text-align: center;
    text-decoration: none;
    width: auto;
    padding: 10px 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    z-index: 20;
    transition: all 0.3s ease-in-out;
} */

.inquire {
    background-color: var(--primary-dark);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    margin-top: auto;
}

.inquire:hover {
    background-color: #2a2a2a;
    transform: translateX(2px);
    color: white;
    text-decoration: none;
}

.link {
    color: #fff !important;
}

.inquire:hover .inq {
    color: #ffffff;
    animation: scaleUp 0.3s ease-in-out;
}

@media (max-width: 1399px) {
    iframe {
        width: 566px !important;
        height: 320px !important;
    }
}

@media (max-width: 991px) {
    iframe {
        width: 769px !important;
        height: 380px !important;
    }
}

@media (max-width: 767px) {
    iframe {
        width: 769px !important;
        height: 280px !important;
    }
}

@media (max-width: 480px) {
    iframe {
        width: 769px !important;
        height: 240px !important;
    }
}




@media (max-width: 768px) {
    .Preventive {
        font-size: 35px;
    }
    .text-description p {
        font-size: 18px;
    }
}

@media (max-width: 404px) {
    .title-ms {
        font-size: 1rem;
    }
}

.PMS p {
    color: #4d4d4d;
    font-size: 16px;
    line-height: 28px;
    font-style: normal;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1600px !important;
    }
}

/* --------------------award carousel css---------------- */

.container-achievements {
    width: 99%;
}

.branch-container {
    /* padding: 0px 10px; */
    background-color: #343536;
}

.owl-theme .owl-nav.disabled + .owl-dots {
    display: none !important;
}

/* .btn-tunlandv9 {
  margin-top: -5rem;
  font-size: 20px;
  padding: 15px 30px;
  font-weight: bold;
  border: none;
  background-color: transparent;
}

.btn-tunlandv7 {
  margin-top: -5rem;
  font-size: 20px;
  padding: 15px 30px;
  font-weight: bold;
  border: none;
  background-color: transparent;
} */

.overlay-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s;
    z-index: 2;
    pointer-events: auto;
    /* Allow clicking the link */
}

.overlay-img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.63));
}

.explore-label {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    padding: 12px 36px;
    border-radius: 30px;
    z-index: 3;
    pointer-events: none;
    letter-spacing: 2px;
    transition: opacity 0.3s;
    text-transform: uppercase;
}

a:hover .explore-label,
a:focus .explore-label {
    display: block;
    opacity: 1;
}
