/* Hero Section Css Start */
.hero {
    height: 100vh;
    color: #fff;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero .video-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.hero .video-bg::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero .video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    will-change: transform;
}

.hero .slider-hero-banner {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.hero .slider-hero-banner::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero .slider-hero-banner img {
    object-fit: cover;
}

.hero .slider-hero-banner .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    color: #fff;
    border: none;
    font-size: 20px;
    cursor: pointer;
    background: transparent;
    padding: 0;
    transition: all 0.3s ease-in-out;
}

.hero .slider-hero-banner .slick-prev {
    left: 0;
}

.hero .slider-hero-banner .slick-next {
    right: 0;
}

.hero .slider-hero-banner .slick-arrow svg {
    width: 50px;
    height: 50px;
    stroke: rgba(255, 255, 255, 0.5);
}

.hero .slider-hero-banner .slick-arrow:hover svg {
    stroke: #fff;
}

.hero .slider-hero-banner .slick-dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    list-style: none;
    width: 100%;
    padding: 0;
    margin: 0;
    z-index: 2;
}

.hero .slider-hero-banner .slick-dots li:not(:last-child) {
    margin-right: 7px;
}

.hero .slider-hero-banner .slick-dots button {
    font-size: 0;
    padding: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    box-shadow: none;
    border: none;
    background: rgba(255, 255, 255, 0.5);
}

.hero .slider-hero-banner .slick-dots .slick-active button {
    background: #fff;
}

.hero .slider-hero-banner .hero-image-slider {
    max-height: 100vh;
}

.hero .hero-content {
    z-index: 2;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
}

.hero .hero-content .btn {
    font-size: 18px;
    padding-left: 12px;
    padding-right: 12px;
    border-width: 2px;
}

.hero .hero-content .btn img {
    width: 25px;
    height: 25px;
}

.hero .hero-content .col-left {
    width: 70%;
}

.hero .hero-content .col-right {
    width: 30%;
    text-align: right;
}

.hero h1 {
    color: #ffffff;
}

@media (max-width: 1280px) {
    .hero .hero-content .btn {
        font-size: 18px;
    }
}

@media (max-width: 1199px) {

    .hero .hero-content .col-left,
    .hero .hero-content .col-right {
        width: 100%;
    }

    .hero .hero-content .col-right {
        text-align: left;
        margin-top: 20px;
    }
    
    .hero {
        height: 80vh;
    }

    .hero .slider-hero-banner .hero-image-slider {
        max-height: 80vh;
    }

    .hero .slider-hero-banner img {
        height: 80vh !important;
    }

    .hero .slider-hero-banner .slick-dots button {
        width: 10px;
        height: 10px;
    }
    .hero .hero-content .col-right {
        text-align: left;
    }
    .hero .hero-content .col-right .btn img {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 991px) {
    .hero {
        padding-bottom: 50px;
        height: 50vh;
    }

    .hero .slider-hero-banner .hero-image-slider {
        max-height: 50vh;
    }

    .hero .slider-hero-banner img {
        height: 50vh !important;
    }

    .hero .slider-hero-banner .slick-dots button {
        width: 10px;
        height: 10px;
    }
    .hero .hero-content .btn {
        font-size: 14px;
        padding: 5px 12px 5px 7px;
    }
}

@media (max-width: 767px) {
    .hero h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .hero h1 br {
        display: none;
    }
}

/* Intro Section */
.intro .wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
}

.intro .wrapper .col-left {
    width: 30%;
}

.intro .wrapper .col-right {
    width: 70%;
    padding-left: 30px;
}

.intro .wrapper .col-left .btn.whatsapp {
    width: 227px;
    padding: 6px 15px;
}

.intro .wrapper .col-left h2 {
    margin: 0;
}

.intro .wrapper .col-left .buttons-block {
    margin-top: 15px;
}

@media (max-width: 1280px) {
    .intro .wrapper .col-left h2 br {
        display: none;
    }
}

@media (max-width: 1024px) {

    .intro .wrapper .col-right {
        width: 70%;
        padding-left: 30px;
    }
}

@media (max-width: 991px) {
    .intro .wrapper {
        flex-wrap: wrap;
    }

    .home .intro .wrapper {
        gap: 0;
    }

    .corporate.intro .wrapper {
        gap: 0;
    }

    .corporate.intro .wrapper .col-right {
        padding-top: 30px;
        padding-left: 0;
    }

    .intro .wrapper .col-right {
        padding-top: 15px;
        padding-left: 0;
    }

    .intro .wrapper .col-left,
    .intro .wrapper .col-right {
        width: 100%;
    }
}

/* Fleet Section Css Start */
.fleet-section {
    position: relative;
}

.section-title.border-bottom {
    margin-bottom: 70px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.fleet-section .section-title h2,
.fleet-section .section-title h1 {
    text-transform: uppercase;
    margin-bottom: 10px;
}

.fleet-section .section-title p {
    text-transform: uppercase;
    font-size: 20px;
}

.fleet-section .fleet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.fleet-section .fleet-card {
    background-color: #0e2a3a;
    overflow: hidden;
    color: #fff;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.fleet-section .fleet-image-slider {
    max-height: 330px;
    overflow: hidden;
}

.fleet-section .fleet-image-slider img {
    height: 330px;
    object-fit: cover;
}

.fleet-section .fleet-image-slider .slick-dots {
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    list-style: none;
    width: 100%;
    padding: 0;
    margin: 0;
}

.fleet-section .fleet-image-slider .slick-dots li:not(:last-child) {
    margin-right: 7px;
}

.fleet-section .fleet-image-slider .slick-dots button {
    font-size: 0;
    padding: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    box-shadow: none;
    border: none;
    background: rgba(255, 255, 255, 0.5);
}

.fleet-section .fleet-image-slider .slick-dots .slick-active button {
    background: #fff;
}

.fleet-section .fleet-image-slider .image-block {
    position: relative;
}

.fleet-section .fleet-image-slider .image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fleet-section .fleet-content {
    padding: 20px 30px;
    text-align: left;
}

.fleet-section .fleet-content h3 a,
.fleet-section .fleet-content h3 {
    font-size: 21px;
    color: #fff;
    margin-bottom: 0;
    text-transform: uppercase;
    font-family: "Avant Garde CE";
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.fleet-section .fleet-content h3 a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.fleet-section .fleet-content .subtitle {
    font-size: 12px;
    color: #A6A6A6;
    margin-bottom: 15px;
    font-family: "Avant Garde CE";
}

.fleet-section .fleet-content .fleet-details-wrapper {
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    margin: 5px 0 0;
    padding-top: 10px;
}

.fleet-section .fleet-content .label {
    font-size: 14px;
    color: #A6A6A6;
    font-family: "Avant Garde CE";
}

.fleet-section .fleet-content .value {
    font-size: 14px;
    color: #fff;
    padding-left: 10px;
    font-family: "Avant Garde CE";
}

.fleet-section .fleet-content .fleet-details {
    line-height: normal;
}

.fleet-section .fleet-content .buttons-block {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}

.fleet-section .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    color: #fff;
    border: none;
    font-size: 20px;
    cursor: pointer;
    background: transparent;
    padding: 0;
    transition: all 0.3s ease-in-out;
}

.fleet-section .slick-prev {
    left: 0;
}

.fleet-section .slick-next {
    right: 0;
}

.fleet-section .fleet-content .buttons-block .btn {
    background: #fff;
    border-radius: 0;
    color: #17283c;
    line-height: 1.3;
    width: 100%;
    padding-top: 6px;
    padding-bottom: 6px;
}

.fleet-section .fleet-content .buttons-block .btn:hover {
    background: transparent;
    color: #fff;
}

.fleet-section .fleet-content .buttons-block a:not(:last-child) {
    margin-right: 20px;
}

.fleet-section .fleet-content .buttons-block .btn.whatsapp img {
    width: 20px;
    height: 20px;
}

.fleet-section .fleet-content .buttons-block .btn.whatsapp:hover img {
    filter: brightness(0) invert(1);
}

@media (max-width: 1280px) {
    .fleet-section .fleet-content {
        padding: 15px 15px;
    }

    .fleet-section .fleet-content .buttons-block .btn {
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .fleet-section .section-title p {
        font-size: 16px;
    }

    .fleet-section .fleet-content .buttons-block .btn {
        font-size: 14px;
    }

    .fleet-section .fleet-content h3 a {
        font-size: 18px;
    }

    .fleet-section .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

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

@media (max-width: 767px) {
    .fleet-section .fleet-image-slider {
        max-height: 250px;
        overflow: hidden;
    }

    .fleet-section .fleet-grid {
        gap: 15px;
        grid-template-columns: repeat(1, 1fr);
    }

    .fleet-section .fleet-content {
        padding: 20px;
    }

    .fleet-section .fleet-content .buttons-block a:not(:last-child) {
        margin-right: 10px;
    }
}

/* Fleet Section Css Start */

/* Booking Section Start */
.booking {
    background: #11293E;
}

.booking .wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 120px;
    align-items: center;
}

.booking .wrapper .col-left {
    width: 50%;
}

.booking .wrapper .col-right {
    width: calc(50% - 120px);
}

.booking-large .wrapper {
    gap: 80px;
}

.booking-large .wrapper .col-left {
    width: 39%;
}

.booking-large .wrapper .col-right {
    width: calc(61% - 80px);
}

.booking .booking-text h2,
.booking-text p,
.booking-text ul li,
.booking-text em,
.booking-text ol li {
    line-height: 1.3;
}

.booking .booking-text h2,
.booking-text p,
.booking-text ul li,
.booking-text em,
.booking-text ol li {
    color: #fff;
}

.booking-text ul,
.booking-text ol {
    padding-left: 15px;
}

.booking-text ul li:not(:last-child),
.booking-text ol li:not(:last-child) {
    margin-bottom: 10px;
}

.booking .booking-text h2 {
    margin-bottom: 20px;
}

.booking .booking-text .btn {
    border-radius: 0;
    color: #000;
    background: #fff;
    width: 260px;
    font-size: 20px;
    line-height: 1.8;
    padding: 6px 15px 6px;
    margin-top: 10px;
}

.booking .booking-text .btn:hover {
    background-color: #11293E;
    color: #fff;
    border-color: #fff;
}

.booking.bg-white .booking-text .btn {
    background-color: #11293E;
    color: #fff;
}

.booking.bg-white .booking-text .btn:hover {
    background-color: #fff;
    color: #17283c;
    border-color: #17283c;
}

.booking .booking-text .btn.whatsapp img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.booking .booking-text .btn.whatsapp:hover img {
    filter: none;
}

.booking .booking-text .btn.whatsapp:hover,
.booking .booking-text .btn.whatsapp:hover span {
    border-color: #17283c;
    color: #17283c;
}

.booking .image-block {
    position: relative;
    line-height: 0;
}

.booking .image-block img {
    width: 100%;
    object-fit: cover;
    height: 438px;
}

.bg-white.booking {
    background: #fff;
}

.bg-white.booking .booking-text h2,
.bg-white.booking .booking-text p,
.bg-white.booking .booking-text ul li,
.bg-white.booking .booking-text ol li,
.bg-white.booking .booking-text em {
    color: #17283c;
}

@media (max-width: 1460px) {
    .booking .wrapper {
        gap: 50px;
    }

    .booking .wrapper .col-right {
        width: calc(50% - 50px);
    }
}

@media (max-width: 1280px) {
    .booking .wrapper {
        gap: 40px;
    }

    .booking .wrapper .col-right {
        width: calc(50% - 40px);
    }
}

@media (max-width: 1024px) {

    .booking .wrapper {
        flex-direction: column;
    }

    .booking .wrapper .col-left,
    .booking .wrapper .col-right {
        width: 100%;
    }
}

@media (max-width: 991px) {

    .booking .wrapper .col-right .booking-text .btn {
        font-size: 16px;
        line-height: 26px;
        width: 150px;
    }

    .booking .wrapper .col-right .booking-text h2 {
        margin-bottom: 15px;
    }

    .booking .wrapper .col-right .booking-text .btn {
        margin-top: 0;
    }

    .booking .image-block img {
        height: 350px;
    }
}

@media (max-width: 767px) {

    .booking .wrapper {
        gap: 0;
    }

    .booking .wrapper .col-right {
        margin-top: 30px;
    }

    .booking .image-block img {
        height: 250px;
    }
}

/* Booking Section Css End */

/* Corporate Page css Start */
.corporate-packages .package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 32px;
    row-gap: 50px;
    margin-top: 40px;
}

.corporate-packages .package-item {
    text-align: left;
}

.corporate-packages .package-item .image-block {
    margin-bottom: 15px;
}

.corporate-packages .package-item img {
    width: 100%;
    height: auto;
}

.corporate-packages .package-item h3 {
    margin-bottom: 10px;
}

.corporate-packages .package-item .image-block {
    position: relative;
    padding-bottom: 74.5%;
    overflow: hidden;
}

.corporate-packages .package-item .image-block img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.corporate-packages .package-item:hover .image-block img {
    transform: scale(1.05);
}

.corporate-packages .package-item .content {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}

.corporate-packages .package-item .content h4 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.corporate-packages .package-item .content p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 15px;
    color: #000;
    position: relative;
    transition: all 0.3s ease;
}

.corporate-packages .package-item .content p.expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
}

.corporate-packages .package-item .content .read-more-toggle {
    margin-top: -10px;
    color: #17283c;
    cursor: pointer;
    display: none;
    font-size: 16px;
}

@media (max-width: 1280px) {
    .corporate-packages .package-grid {
        column-gap: 15px;
        row-gap: 15px;
    }
}

@media (max-width: 991px) {
    .corporate-packages .package-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 15px;
        row-gap: 15px;
    }
}

@media (max-width: 575px) {
    .corporate-packages .package-grid {
        grid-template-columns: repeat(1, 1fr);
        margin-top: 20px;
    }

    .corporate-packages .package-item .image-block {
        padding-bottom: 60%;
    }

    .corporate-packages .package-item .content {
        gap: 0;
    }

    .corporate-packages .package-item .content h4 {
        margin-bottom: 5px;
    }

    .intro .wrapper .col-left .btn.whatsapp {
        width: 150px;
        padding: 9px 15px;
    }
}


/* Why choose section Start */
.why-choose-section .section-title {
    margin-bottom: 40px;
    color: #fff;
}

.why-choose-section .section-title h2 {
    color: #fff;
}

.why-choose-section .line-list-style ul {
    margin: 0;
    padding: 0;
}

.why-choose-section .line-list-style ul li {
    list-style: none;
    position: relative;
    color: #fff;
    font-size: 18px;
    line-height: 2;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.why-choose-section .line-list-style ul li:last-child {
    margin-bottom: 0;
}

.why-choose-section .line-list-style ul li::before {
    content: "";
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 2px;
    background: #fff;
    top: 15px;
    margin-right: 10px;
}

@media only screen and (min-width: 1400px) {
    .why-choose-section .container {
        max-width: 1100px;
    }
}

@media only screen and (max-width: 991px) {
    .why-choose-section .section-title {
        margin-bottom: 20px;
    }

    .why-choose-section .line-list-style ul li {
        font-size: 14px;
    }

    .why-choose-section .line-list-style ul li::before {
        width: 20px;
        min-width: 20px;
    }
}

/* Corporate Page css End */

/* Gallery Page Css Start */
.gallery .gallery-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    align-items: stretch;
    width: 100%;
    justify-content: space-between;
}

.gallery .gallery-left {
    width: 70%;
}

.gallery .gallery-right {
    width: 30%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    margin-left: 0;
}

.gallery-right .thumb {
    height: 100%;
    max-height: 266px;
}

.gallery-right .thumb:not(:last-child) {
    margin-bottom: 10px;
}

.gallery-left .gallery-slider img,
.gallery-right .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-left .gallery-slider .slick-slide {
    max-height: 543px;
}

.gallery .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    border: none;
    font-size: 20px;
    cursor: pointer;
    background: transparent;
    padding: 0;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.gallery .slick-prev {
    left: 0;
}

.gallery .slick-next {
    right: 0;
}

.gallery .slick-prev,
.gallery .slick-next {
    top: 50%;
    transform: translateY(-50%);
}

.gallery .slick-prev {
    left: 10px;
}

.gallery .slick-next {
    right: 10px;
}

.gallery .slick-arrow svg {
    width: 50px;
    height: 50px;
    stroke-width: 1.5;
}

.gallery .gallery-slider .slick-dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    width: 100%;
    padding: 0;
    margin: 0;
    z-index: 1;
}

.gallery .gallery-slider .slick-dots li:not(:last-child) {
    margin-right: 10px;
}

.gallery .gallery-slider .slick-dots button {
    font-size: 0;
    padding: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    box-shadow: none;
    border: none;
    background: rgba(255, 255, 255, 0.5);
}

.gallery .gallery-slider .slick-dots .slick-active button {
    background: #fff;
}

@media (max-width: 991px) {

    .gallery .gallery-left,
    .gallery .gallery-right {
        width: 100%;
        max-width: 100%;
    }

    .gallery .gallery-right {
        flex-direction: row;
        padding-top: 10px;
    }

    .gallery-right .thumb:not(:last-child) {
        margin-bottom: 0;
        padding-right: 10px;
    }

    .gallery .slick-arrow svg {
        width: 30px;
        height: 30px;
    }

    .gallery .gallery-slider .slick-dots button {
        width: 8px;
        height: 8px;
    }

    .gallery .gallery-slider .slick-dots {
        bottom: 5px;
    }

    .gallery .slick-prev {
        left: 0;
    }

    .gallery .slick-next {
        right: 0;
    }
}

/* Fleet About intro section start */
.yacht-details .yacht-details-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.yacht-details .yacht-details-wrapper .col-left {
    width: 48%;
}

.yacht-details .yacht-details-wrapper .col-right {
    width: calc(52% - 50px);
}

.yacht-details .col-left .section-title h1 {
    margin-bottom: 0;
}

.yacht-details .col-left .section-title p {
    color: #17283c;
    margin-bottom: 15px;
    margin-top: -10px;
    font-size: 21px;
}

.yacht-details .yacht-info {
    list-style: none;
    padding: 0;
    margin: 0 0 70px;
}

.yacht-details .col-left .inner-wrapper {
    max-width: 80%;
}

.yacht-details .yacht-info li {
    font-size: 18px;
    line-height: 1.4;
}

.yacht-details .yacht-info .label {
    font-weight: 300;
    font-size: 21px;
    color: #a7a7a7;
    display: inline-block;
}

.yacht-details .yacht-info .value {
    font-weight: 400;
    color: #17283c;
}

.yacht-details .cta-buttons .wrapper {
    display: flex;
    gap: 25px;
    margin-bottom: 22px;
}

.yacht-details .btn.whatsapp img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.yacht-details .btn.whatsapp:hover img {
    filter: none;
}

.yacht-details .brochure-btn .btn {
    width: 100%;
    justify-content: center;
}

.yacht-details .cta-buttons .btn {
    border-radius: 0;
    width: 100%;
    padding: 6px 15px;
    height: 43px;
}

.yacht-details .cta-buttons .btn:hover {
    border-color: #17283c;
}

@media (max-width: 1200px) {
    .yacht-details .col-left {
        max-width: 90%;
    }

    .yacht-details .col-left .section-title p {
        margin-top: 0;
        font-size: 16px;
    }

    .yacht-details .yacht-info li,
    .yacht-details .yacht-info .label {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .yacht-details .yacht-details-wrapper {
        gap: 30px;
    }

    .yacht-details .cta-buttons .wrapper {
        margin-bottom: 10px;
        gap: 10px;
    }

    .yacht-details .yacht-info {
        margin: 0 0 30px;
    }

    .yacht-details .col-left .inner-wrapper {
        max-width: 100%;
    }

    .yacht-details .yacht-details-wrapper .col-left,
    .yacht-details .yacht-details-wrapper .col-right {
        width: 100%;
        max-width: 100%;
    }

    .yacht-details .yacht-info li,
    .yacht-details .yacht-info .label {
        font-size: 14px;
    }
}

/* FAQS Css Start */
.faqs .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    border: none;
    font-size: 20px;
    cursor: pointer;
    background: transparent;
    padding: 0;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.faqs .slick-prev {
    left: 0;
}

.faqs .slick-next {
    right: 0;
}

.faqs .slick-prev,
.faqs .slick-next {
    top: 50%;
    transform: translateY(-50%);
}

.faqs .slick-prev {
    left: 10px;
}

.faqs .slick-next {
    right: 10px;
}

.faqs .slick-arrow svg {
    width: 50px;
    height: 50px;
    stroke-width: 1.5;
}

.faqs .slick-dots li {
    line-height: 0;
}

.faqs .slick-dots li:not(:last-child) {
    margin-right: 10px;
}

.faqs .slick-dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    width: 100%;
    padding: 0;
    margin: 0;
    z-index: 1;
}

.faqs .slick-dots button {
    font-size: 0;
    padding: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    box-shadow: none;
    border: none;
    background: rgba(255, 255, 255, 0.5);
}

.faqs .slick-dots .slick-active button {
    background: #fff;
}

.faqs-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.faqs .col-left {
    width: 45%;
}

.faqs .col-right {
    width: 55%;
    padding-left: 70px;
}

.faqs .faq-col-full {
    width: 100%;
}

.faqs .addons-title {
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 24px;
    color: #000;
}

.faqs .faq-col-full .addons-title {
    text-transform: none;
    font-size: 35px;
    color: #17283c;
}

.faqs .accordion-item {
    border-top: 2px solid #dcdcdc;
    padding: 20px 0;
}

.faqs .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-transform: uppercase;
}

.faqs .accordion-header h4 {
    position: relative;
    top: 2px;
    color: #000;
}

.faqs .accordion-icon {
    font-size: 40px;
    font-weight: 300;
    line-height: 0;
}

.faqs .accordion-content {
    display: none;
    margin-top: 15px;
}

.faqs .accordion-content p {
    font-size: 18px;
    line-height: 1.6;
}

.faqs .addons-slider {
    flex: 1 1 60%;
}

.faqs-slider .slick-slide img {
    max-height: 360px;
    object-fit: cover;
}

@media (max-width: 1200px) {
    .faqs .faq-col-full .addons-title {
        font-size: 24px;
    }

    .faqs .accordion-header h4 {
        font-size: 18px;
    }

    .faqs-wrapper .col-right {
        padding-left: 30px;
    }

    .faqs .accordion-content p {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .faqs-wrapper .col-right {
        padding-left: 0;
        padding-top: 30px;
    }

    .faqs .col-left,
    .faqs .col-right {
        width: 100%;
    }

    .faqs .accordion-item {
        padding: 10px 0;
    }

    .faqs .accordion-header h4 {
        font-size: 16px;
    }

    .faqs .accordion-icon {
        font-size: 25px;
    }

    .faqs .accordion-content p {
        font-size: 14px;
    }

    .faqs-slider .slick-slide img {
        max-height: 300px;
    }

    .faqs .slick-arrow svg {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 575px) {
    .faqs .slick-dots button {
        width: 8px;
        height: 8px;
    }

    .faqs .accordion-content {
        margin-top: 10px;
    }
}

/* FAQS Css End */

/* Map section Start */
.location-section h2 {
    text-transform: uppercase;
}

.location-section iframe {
    filter: grayscale(100%) contrast(1.2) brightness(0.9);
}

@media (max-width: 991px) {
    .location-section iframe {
        max-height: 250px;
    }
}

/* Map section End */

/* Contact us css start */
.contact-section .contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-section .col-left {
    width: 45%;
}

.contact-section .col-right {
    width: 50%;
}

.contact-section .contact-info h2 {
    margin-bottom: 15px;
}

.contact-section .contact-info p {
    margin-bottom: 30px;
}

.contact-section .contact-line {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-section .contact-line img {
    width: 25px;
    height: 25px;
    margin-right: 15px;
}

.contact-section .contact-line a {
    font-size: 16px;
    color: #17283c;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.contact-section .contact-line:hover a {
    padding-left: 10px;
}

.contact-section .contact-form {
    flex: 1.2;
    min-width: 300px;
}

.contact-section .contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-section input[type="text"],
.contact-section input[type="email"],
.contact-section input[type="phone"],
.contact-section input[type="tel"],
.contact-section textarea {
    border: none;
    border-bottom: 1px solid #999;
    padding: 10px 0;
    font-size: 12px;
    border-radius: 0;
    width: 100%;
    background: transparent;
    outline: none;
    box-shadow: none;
    outline: none;
    font-family: "Aktiv Grotesk Ex Light";
}

.contact-section input::placeholder,
.contact-section textarea::placeholder {
    color: #575757;
}

.contact-section input.iti__search-input {
    padding: 10px;
    border-radius: 0;
}

.contact-section .form-control-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-section .form-control-grid .form-control-wrap {
    width: calc(50% - 20px);
}

.contact-section textarea {
    resize: vertical;
}

.contact-section .wpcf7-form .wpcf7-submit {
    font-family: 'Aktiv Grotesk';
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    padding: 10px 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    height: 47px;
    -webkit-appearance: none;
    appearance: none;
}

.contact-section .wpcf7-form .wpcf7-submit:hover {
    border-color: #17283c;
}

.contact-section .contact-form .buttons-block {
    margin-top: 15px;
    position: relative;
}

.contact-section .contact-form .buttons-block span.wpcf7-spinner {
    position: absolute;
    top: 10px;
    right: 0;
    left: auto;
    background-color: #a6a6a6;
}

@media (max-width: 1280px) {
    .contact-section .contact-line a {
        font-size: 18px;
    }

    .contact-section .contact-line img {
        width: 25px;
        height: 25px;
        margin-right: 15px;
    }
}

@media (max-width: 991px) {

    .contact-section .col-left,
    .contact-section .col-right,
    .contact-section .form-control-grid .form-control-wrap,
    .contact-section .form-control-grid .form-control-wrap .iti {
        width: 100%;
    }

    .contact-section .contact-wrapper {
        gap: 20px;
    }

    .contact-section .contact-info h2 {
        margin-bottom: 10px;
    }

    .contact-section .contact-info p {
        margin-bottom: 15px;
    }

    .contact-section .contact-line a {
        font-size: 16px;
    }

    .contact-section .form-control-grid {
        gap: 15px;
    }

    .contact-section .iti__selected-country-primary {
        padding-left: 0;
    }

    .contact-section .contact-line img {
        width: 20px;
        height: 20px;
    }
}

/* Contact us css End */