@font-face {
    font-family: "ChangAnunitype-Regular";
    src: url("../fonts/changanunitype-regular-webfont.woff2") format("woff2"),
        url("../fonts/changanunitype-regular-webfont.woff") format("woff"),
        url("../fonts/ChangAnunitype-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "ChangAnunitype-Bold";
    src: url("../fonts/changanunitype-bold-webfont.woff2") format("woff2"),
        url("../fonts/changanunitype-bold-webfont.woff") format("woff"),
        url("../fonts/ChangAnunitype-Bold.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "ChangAnunitype-Light";
    src: url("../fonts/changanunitype-light-webfont.woff2") format("woff2"),
        url("../fonts/changanunitype-light-webfont.woff") format("woff"),
        url("../fonts/ChangAnunitype-Light.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "ChangAnunitype-Regular";
}

header {
    position: relative;

}

a {
    text-decoration: none;
   
}
h2 {
    font-size: 36px;
}

.navbar-toggler {
    border: none
}
.navbar-toggler .fa-bars{
    color: #fff;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}

header .navbar {
    padding: 0px 30px;
    color: #fff;
    background-color: rgba(36, 67, 112, .24);
    transition: .3s;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

header .navbar-brand:focus-visible {
    outline: none;
}
header .navbar .bookdrive-btn {
    font-size: 14px;
    border: 1px solid;
    border-radius: 5px;
    padding: 10px 15px;
    position: relative;
    z-index: 1;
    color: #fff;

}

header .navbar .bookdrive-btn:before {
    position: absolute;
    content: "";
    width: 20%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 40%;
    background-color: #346eaf;
    border-radius: 5px;
    opacity: 0;
    transition: all .5s, opacity .1s;
}

header .navbar .bookdrive-btn:hover:before {
    opacity: 1;
    width: 100%;
    left: 0;
}

header .navbar .bookdrive-btn:hover {
    border-color: #346eaf;
}

header .navbar .bookdrive-btn i {
    font-size: 12px;
}

header .navbar .back-btn {
    font-size: 14px;
    color: #fff;

}

header .navbar .back-btn:hover {
    font-weight: 700;
}

.swiper-pagination-bullet {
    width: 84px;
    height: 3px;
    background-color: #fff;
    opacity: 0.4;
    border-radius: 99999px;
    margin: 0px 5px;
    display: inline-block;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background-color: #fff;
}

.swiper-pagination.swiper-pagination-clickable {
    margin-bottom: 30px;
}

/*-----*/
#hover-image-gallery {
    width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  padding-top: calc(.7rem + .1rem);
  box-sizing: border-box;
  transition: all 0.4s ease-in-out;
}
.gallery-inner {
    width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hover-images-life {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0.2rem 0.9rem 0.5rem;
    flex: 1 1 0%;
    overflow: hidden;
}
.hover-images-life form {
    position: absolute;
    left: -1000px;
    top: 50%;
    background-color: rgba(0, 0, 0, 0.8);
    width: 80%;
    padding: 15px 30px;
    border-radius: 30px;
    height: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    color: #fff;
    transform: translate(-50%,-50%);
}
.hover-images-life form input,
.hover-images-life form select {
    font-size: 16px;
    height: 38px;
    border-radius: 4px;
}
.hover-images-life form .form-check input {
    width: 20px;
    height: 20px;
    margin: 0;
}
.hover-images-life form .fa-xmark {
    margin: 0px 0 10px auto;
    width: 30px;
    min-height: 30px;
    background-color: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.hover-images-life form.active {
    opacity: 1;
    visibility: visible;
    left: 50%;
}

.hover-images-life .life-img {
    width: 15%;
    height: 100%;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 16px;
    transition: 0.7s;
}

.hover-images-life .life-img:first-child {
    width: calc(85% - .4rem);
}

.hover-images-life .life-img .img-box {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 28px;
    overflow: hidden;
}

.hover-images-life .life-img .img-box img.cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hover-images-life .life-img .img-box .hover-content {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    backdrop-filter: blur(0px);
    opacity: 0;
    padding: 32px;
    transition: 0.5s;
    background: rgba(0, 0, 0, 0);
}

.hover-images-life .life-img .img-box .hover-content h3,
.hover-images-life .life-img .img-box .hover-content p {
    color: #fff;
    white-space: nowrap;

}
.hover-images-life form .mb-3:nth-child(2),
    .hover-images-life form .mb-3:nth-child(3) {
        width: 50%;
        float: left;
    }
    .hover-images-life form .mb-3:nth-child(2) {
        padding-right: 10px;
    }
    .hover-images-life form .mb-3:nth-child(3) {
        padding-left: 10px;
    }
.hover-images-life .life-img:hover .img-box .hover-content {
    opacity: 1;
    backdrop-filter: blur(12px);
    background: rgba(0, 0, 0, 0.1);
}

.hover-images-life:has(.life-img:hover) .life-img {
    width: 15%;
}

.hover-images-life .life-img:hover {
    width: calc(85% - .4rem) !important;
}

.hover-images-life .life-img-para {
    color: #000;
    text-align: start;
    margin-top: 16px;
    font-size: 24px;
    max-width: 150px;
    line-height: 32px;
}

.book_testdrive {
    background-color: #f6f6f6;
    margin-top: 30px;
}
.book_testdrive .form-sec {
    justify-content: center;
    flex-direction: column;
    padding: 50px;
}
.book_testdrive p {
    font-size: 18px;
    letter-spacing: 2px;
}
.book_testdrive form a.btn,
.hover-images-life form a.btn {
    border-color: #244370;
    background-color: #244370;
    padding: 12px 30px;
}
.book_testdrive form a.btn:hover,
.hover-images-life form a.btn:hover {
    border-color: #417ace;
  background-color: #417ace;
}
.book_testdrive form input,
.book_testdrive form select {
    font-size: 14px;
    color: #333;
    height: 42px;
}
.book_testdrive form input::placeholder,
.book_testdrive form select::placeholder,
.hover-images-life form input::placeholder,
.hover-images-life form select::placeholder {
    color: #333;
}
.book_testdrive form input:focus,
.book_testdrive form select:focus,
.hover-images-life form input:focus,
.hover-images-life form select:focus {
    box-shadow: none;
}
.hover-images-life form label {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: "ChangAnunitype-Bold";
}
.book_testdrive form .form-check input {
    width: 18px;
    height: 18px;
    margin-top: 0;
    position: relative;
    top: -2px;
}
.book_testdrive img {
    height: 100%;
    object-fit: cover;
}

footer {
    background: #1d1d1d;
    color: #fff;
    padding: 50px 0;
    text-align: center;
    font-size: 14px;
}


@media(max-width:1199px) {
    .book_testdrive p {
        font-size: 16px;
        letter-spacing: 1px;
    }
    .book_testdrive .form-sec {
        padding: 20px;
    }
}

@media(max-width:991px) {
    header .navbar-toggler {
        display: none;
    }
    .hover-images-life .life-img-para {
        max-width: 100%;
        padding-bottom: 50px;
    }
    .hover-images-life form {
        width: 100%;
        height: auto;
        z-index: 9;
        padding: 15px;
    }
    .hover-images-life form {
        display: inline-block;
    }
    .hover-images-life .life-img .img-box .hover-content {
        justify-content: flex-start;
        padding: 20px;
    }
    .hover-images-life .life-img .img-box,
    .gallery-inner {
        position: static;
    }
    .hover-images-life .life-img {
        width: 100%;
        margin-right: 0;
    }
    .hover-images-life {
        flex-direction: column;
        padding: 0;
        gap: 24px;
        height: 100%;
        overflow: visible;
    }

    .hover-images-life .life-img:first-child {
        width: 100% !important;
    }

    .hover-images-life .life-img:hover {
        width: 100% !important;
    }

    .hover-images-life:has(.life-img:hover) .life-img {
        width: 100%;
    }
    #hover-image-gallery {
        height: 100%;
    }
    #hover-image-gallery.padd_100 .gallery-inner {
        padding-bottom: 100px;
    }
}

@media (max-width:767px) {
    header .navbar {
        padding: 10px 0;
    }
    header .navbar .navbar-brand img {
        width: 160px;
    }
    .swiper-pagination-bullet {
        width: 40px;
    }
    .swiper-pagination.swiper-pagination-clickable {
        margin-bottom: 0px;
    }
}