@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Syne:wght@400..800&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

:root {
    --primary-color: #011425;
    --secondary-color: #fa8912;
    --accent-color: #afeeee;
    --success-color: #FAF8F6;
    --dark-color: #47576d;
    --white-color: #fff;
}


html {
    scroll-behavior: smooth !important;
    scroll-padding-top: 70px;
}

body {
    margin: 0;
    padding: 0;
    letter-spacing: 0.5px;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

::-webkit-scrollbar-track {
    background-color: var(--white-color);
    border-left: 1px solid var(--white-color);
}

::-webkit-scrollbar {
    width: 7px;
    background-color: var(--white-color);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
}

::selection {
    color: var(--white-color);
    background-color: var(--secondary-color);
    filter: invert(1);
}

ul {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "syne", serif;
}

p {
    color: var(--dark-color);
    font-size: 15px;
    line-height: 28px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

a:hover {
    text-decoration: none;
    color: var(--secondary-color);
}

button {
    background: transparent;
    border: 0;
}

.title {
    color: var(--primary-color);
    font-size: 43px;
    font-weight: revert;
    margin-bottom: 20px;
}

.subtitle {
    font-family: "Poppins", sans-serif;
    color: #777777;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.subtitle.light {
    color: #dddddd;
}

.subtitle span {
    text-transform: lowercase;
}



.btn-secondary {
    position: relative;
    overflow: hidden;
    padding: 13px 30px;
    background: var(--secondary-color);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    line-height: 25px;
    color: var(--white-color);
    border: 1px solid var(--secondary-color);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 0px;
    display: inline-flex;
    justify-content: center;
    width: fit-content;
    gap: 15px;
    align-items: center;
    letter-spacing: 2px;
}

.btn-secondary .btn-title {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-secondary:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background-color: #ff8c00d8;
    border-radius: 0;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.btn-secondary:hover:before {
    background-color: var(--primary-color);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}

.banner .btn-secondary:hover:before {
    background-color: var(--white-color);
}

.btn-secondary:hover {
    border: 1px solid var(--primary-color);
    color: var(--white-color);
}

.banner .btn-secondary:hover {
    border-color: var(--white-color);
    color: var(--primary-color);
}


.lpc-animation-style4,
.lpc-animation-style3,
.lpc-animation-style1,
.lpc-animation-style2 {
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: 2s cubic-bezier(.5, .5, 0, 1);
}

.lpc-animation-style4 img,
.lpc-animation-style3 img,
.lpc-animation-style1 img,
.lpc-animation-style2 img {
    transform-origin: 50% 50%;
    transition: 2s cubic-bezier(.5, .5, 0, 1);
}

@media(min-width:991px) {

    .lpc-animation-style4 {
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    .lpc-animation-style4 img {
        transform: scale(1.5) translate(0, -100px);
    }

    .lpc-animation-style3 {
        clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0 100%);
    }

    .lpc-animation-style3 img {
        transform: scale(1.5) translate(0, 100px);
    }

    .lpc-animation-style2 {
        clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
    }

    .lpc-animation-style2 img {
        transform: scale(1.5) translate(100px, 0px);
    }

    .lpc-animation-style1 {
        clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    }

    .lpc-animation-style1 img {
        transform: scale(1.5) translate(-100px, 0px);
    }

    .lpc-animation-style4.active,
    .lpc-animation-style3.active,
    .lpc-animation-style2.active,
    .lpc-animation-style1.active {
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }

    .lpc-animation-style4.active img,
    .lpc-animation-style3.active img,
    .lpc-animation-style2.active img,
    .lpc-animation-style1.active img {
        transform: scale(1) translate(0, 0);
    }
}

.header-top.light {
    background: var(--white-color);

}

.header .inner-container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding: 7px 0;

}

.header .top-left {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header .inner-container .list-style-one li {
    position: relative;
    font-size: 13px;
    line-height: 24px;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 30px;
    gap: 7px;
}

.header .inner-container .list-style-one li:last-child {
    margin-right: 0;
}

.header .list-style-one li a {
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.header .top-left .list-style-one li a {
    display: block;
    color: var(--primary-color);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    font-weight: 500;
}

.header .list-style-one li a:hover,
.social-icon-one li a:hover {
    color: var(--secondary-color);
}

.social-icon-one {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.header .inner-container .social-icon-one li {
    position: relative;
    margin: 0;
    list-style: none;
}

.social-icon-one li a {
    position: relative;
    display: block;
    line-height: 27px;
    text-align: center;
    color: #bdbdbd;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    font-size: 15px;
    padding: 0 20px 0 20px;
    color: var(--primary-color);
}

.header .inner-container .top-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    position: relative;
    width: 307px;
}

.header .inner-container .list-style-one {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: flex;
    padding: 0;
}

header .inner-container .social-icon-one li:before {
    content: "";
    position: absolute;
    top: -15px;
    left: 0;
    width: 1px;
    height: 49px;
    background: #d9d8d8;
    z-index: 1;
}

header .inner-container .social-icon-one li:last-child:after {
    content: "";
    position: absolute;
    top: -15px;
    right: 0;
    width: 1px;
    height: 49px;
    background: #d9d8d8;
    z-index: 1;
}




.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.header-sticky {
    position: fixed !important;
    top: 0;
    z-index: 999999;
    inset-inline-end: 0;
    inset-inline-start: 0;
    width: 100%;
    -webkit-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
    animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
    background: var(--primary-color);
    border-top: 0;
    box-shadow: 0 10px 35px 0 rgba(0, 0, 0, 0.1);
}

.header-sticky.header .navbar-brand img {
    height: 50px;
}

.header-sticky.header .navbar-expand-lg .navbar-nav .nav-link {
    padding: 25px 0;
}

.header-sticky .header-top.light {
    display: none;
}

@keyframes headerSlideDown {
    0% {
        margin-top: -150px;
    }

    100% {
        margin-top: 0;
    }
}

.navbar-expand-lg .navbar-nav {
    gap: 35px;
    padding-left: 0px;
}

.header .navbar {
    padding: 0;
}

.header .navbar-brand {
    padding: 0;
    width: 260px;
    margin: 0;
}

.header .navbar-brand img {
    height: 70px;
}

.header .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--white-color);
    letter-spacing: 0.5px;
    padding: 40px 0;
    transition: all 0.2s linear;
}

.header .navbar-expand-lg .navbar-nav .nav-link:hover,
.header .navbar-expand-lg .nav-link.dropdown-toggle:hover::after {
    color: var(--secondary-color);
}



.dropdown-item {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    color: #1C1C1C;
    letter-spacing: 0.1px;
    padding: 14px 20px;
    border-bottom: 1px solid #0000001c;
}

.navbar-expand-lg .navbar-nav .dropdown-menu li:last-child .dropdown-item {
    border-bottom: none;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: var(--white-color);
    background-color: var(--secondary-color);
}


.header .outer-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    padding: 0;
    top: 0;
    width: 100%;
}

.header .ui-btn {
    position: relative;
    display: block;
    line-height: 30px;
    text-align: center;
    background: none;
    font-size: 22px;
    color: var(--theme-color-dark);
    margin-left: 15px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.header .outer-box .ui-btn {
    width: 35px;
    height: 48px;
    line-height: 48px;
    margin: 0;
    padding: 0;
    color: var(--theme-color-dark);
}

.header .ui-btn:hover {
    color: var(--theme-color1);
}

.header .cart-btn {
    position: relative;
    margin: 0;
    color: var(--white-color);
    margin-right: 18px;
    text-align: center;
    font-size: 20px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;

}


.header .cart-btn:before {
    background: #e5e5e58a;
    content: "";
    position: absolute;
    right: -30px;
    width: 1px;
    height: 80%;
    top: 3px;
}

.header .cart-btn:hover,
.header .call-btn:hover a {
    color: var(--secondary-color);
}

.header .cart-btn .count {
    position: absolute;
    top: -5px;
    right: -8px;
    height: 19px;
    width: 19px;
    line-height: 19px;
    font-size: 12px;
    border-radius: 50%;
    color: var(--white-color);
    background-color: var(--secondary-color);
    text-align: center;
}

.header .call-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 35px;
    text-align: center;
    color: var(--white-color);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.header .call-btn a {
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}


.header .call-btn a {
    color: var(--white-color);
    font-weight: 500;
    font-size: 16px;
}

.header .navbar-expand-lg .dropdown-toggle::after {
    margin-left: 5px;
    border: none;
    border-bottom: 0;
    content: "\f282";
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 600 !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    color: #1C1C1C;
    font-size: 12px;
    vertical-align: -2px;
    -webkit-font-smoothing: antialiased;
}


.banner {
    height: 100vh;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner.short {
    height: 500px;
}

.banner.short .banner_inner h1 {
    margin-bottom: 0px;
    font-size: 60px;
}

.banner.short .banner_inner a.btn-secondary {
    margin-top: 20px;
}

.banner::before {
    content: "";
    position: absolute;
    top: 0%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000b8;
}

.inside-banner::before {
    background: linear-gradient(178deg, #000000b8 20%, #026784ad 80%);
}

.banner #background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
    overflow: hidden;
}

.banner .banner_inner {
    position: relative;
    padding: 0;
    margin: 0 auto;
    text-align: center;
    margin-top: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 150px;
    max-width: 810px;
}

.banner .banner_inner h6 {
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white-color);
    margin-bottom: 20px;
    display: inline-block;
    font-weight: 600;
    font-family: "Open Sans", sans-serif;
}

.banner .banner_inner h1 {
    font-size: 51px;
    font-weight: 700;
    letter-spacing: 0.74px;
    color: var(--white-color);
    margin-bottom: 15px;
}

.banner .banner_inner p {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: var(--white-color);
    max-width: 1200px;
}

.banner .banner_inner .btn-secondary {
    margin-top: 10px;
}

.about {
    position: relative;
    padding: 100px 0;
}

.about.about_bg_shape:before {
    content: '';
    background: url('../img/Group_14.png');
    width: 100%;
    height: 100%;
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    top: 0;
    left: 0;
}

.about .about_img {
    height: 100%;
    width: 100%;
}

.about .about_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 500px;
}

.about .about_cont {
    margin-left: 40px;
}

.about .about_cont .btn-secondary {
    margin-top: 25px;
}

.bt {
  border-top: 1px solid #f5f4f4;
}

.about.about_right .about_cont {
    margin-left: 0;
    margin-right: 0;
}
.about .about_cont ul li p {
    margin: 0;
}
.about.about_right .about_img {
    margin-left: 40px;
}

.small {
    font-size: 13px;
}


.our_services {
    padding: 100px 0;
}

.our_services .sec_img img {
    height: 585px;
    object-fit: cover;
    width: 100%;
    object-position: bottom;
}

.our_services_inner {
    padding: 50px 80px 30px;
    background: var(--white-color);
    position: relative;
    border-radius: 0;
    margin: -160px -30px 0 -30px;
}

.box-wrapper {
    border-radius: 0px;
    overflow: hidden;
    background: var(--success-color);
    height: 100%;

}

.box-wrapper .img {
    position: relative;
    overflow: hidden;
}

.box-wrapper .img:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgb(255, 255, 255)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#00ffffff", GradientType=1);
    content: "";
    opacity: 0.3;
    left: -100%;
    pointer-events: none;
    z-index: 1;
}

.box-wrapper:hover .img:before {
    left: 100%;
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
}

.box-wrapper .img img {
    height: 100%;
    aspect-ratio: 3/2;
    width: 100%;
    object-fit: cover;
    transition: all 0.3s linear;
}

.box-wrapper:hover .img img {
    transform: scale(1.05);
}

.box-wrapper .cont {
    padding: 20px 27px;
    padding-bottom: 30px;
}

.box-wrapper .cont h4 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.text_link {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s linear;
    width: fit-content;
}

.text_link:hover {
    gap: 12px;
    letter-spacing: 0.5px;
}

.text_link i {
    position: relative;
    top: 1px;
}

.px-65 {
    padding: 0 65px;
}




.about_us {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.about_us::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: calc(50% - 340px);
    height: 100%;
    background: var(--accent-color);
    z-index: -2;
}

.about_us::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: calc(50% - 340px);
    height: 100%;
    background: url(../img/pattern-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 7%;
    z-index: -1;
    filter: brightness(0);
}

.about_us .about_us_cont {
    position: relative;
    padding-right: 20px;
    min-height: 400px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about_us.about_bg .about_us_cont::before {
    content: "";
    position: absolute;
    top: -100px;
    left: 0;
    width: 70%;
    height: calc(100% + 300px);
    background: url(../img/icon-big-boat.png);
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 20%;
    z-index: -1;
}

.about_us .about_us_cont .title {
    font-size: 40px;
}

.about_us .about_us_cont ul {
    margin: 0;
    margin-top: 30px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about_us .about_us_cont ul li {
    list-style: none;
    display: flex;
    gap: 10px;
}

.about_us .about_us_cont ul.list-style {
    padding-left: 20px;
}

.about_us .about_us_cont ul.list-style li {
    list-style: disc;
    display: list-item;
}

.about_us .about_us_cont ul.list-style li::marker {
    color: var(--dark-color);
}

.about_us .about_us_cont ul li img {
    width: 24px;
}

.about_us .about_us_cont ul li span {
    font-size: 16px;
    color: var(--dark-color);
}

.about_us .about_us_cont .btn-secondary {
    margin-top: 25px;
}

.about_us .about_us_img {
    position: relative;
    max-height: 500px;
    width: 86%;
    margin-left: auto;
    display: flex;
    object-fit: cover;
}

.about_us.adjust .about_us_img {
    max-height: max-content;
    margin-left: auto;
    display: flex;
    position: absolute;
    right: 0;
    width: calc(50% - 55px);
    top: 100px;
    bottom: 100px;
    object-fit: cover;
     max-height: auto;
}


.about_us .about_us_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}




.testimonial {
    position: relative;
    padding: 100px 0;
    margin: 100px 0;
    background: url(../img/bg-testimonial.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.testimonial_slider {
    padding-bottom: 80px;
}

.testimonial .testi_inner {
    text-align: center;
    border: 1px solid var(--white-color);
    border-radius: 15px;
    padding: 20px 30px;
    height: calc(100% - 30px);
    margin-top: 30px;
    background: var(--white-color);
}

.testimonial .testi_inner .stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial .testi_inner .stars i {
    font-size: 13px;
    color: var(--secondary-color);
}

.testimonial .testi_inner .text {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial .testi_inner .text p {
    font-style: italic;
    text-align: center;
    line-height: 25px;
    margin-bottom: 0;
    font-size: 14px;
}

.testimonial .testi_inner .client_img img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.testimonial .testi_inner .info h6 {
    font-size: 16px;
    color: var(--primary-color);
    margin: 30px 0 0;
    font-weight: 600;
}

.testimonial .testi_inner .info p {
    font-size: 15px;
    margin: 0;
}

.testimonial.white .testi_inner .text p,
.testimonial.white .testi_inner .info p {
    color: var(--dark-color);
}


.testimonial_slider .splide__pagination {
    bottom: 0;
    background: #E4DED0;
    width: fit-content;
    margin: 0 auto;
    padding: 8px 10px;
    border-radius: 50px;
    position: relative;
    margin-top: 40px;
    gap: 6px;
}

.testimonial_slider .splide__pagination li {
    display: flex;
}

.testimonial_slider .splide__pagination__page {
    background: var(--dark-color);
    border: 0;
    border-radius: 20px;
    display: inline-block;
    height: 8px;
    margin: 0;
    opacity: 1;
    padding: 0;
    position: relative;
    transition: all .2s linear;
    width: 8px;
}

.splide__pagination__page:focus-visible {
    outline: none;
    outline-offset: 0;
}

.testimonial_slider .splide__pagination__page.is-active {
    background: var(--white-color);
    transform: scale(1);
    z-index: 1;
    background: var(--primary-color);
    width: 25px;
    opacity: 1;
}

.splide__arrows {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;

}


.splide__arrow {
    -ms-flex-align: center;
    align-items: center;
    background: #ffffff14;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    height: 3em;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 1 !important;
    padding: 0;
    position: relative;
    top: 0;
    transform: unset;
    width: 3em;
    z-index: 1;
    border: 1px solid #dfdfdf3d;
}

.splide__arrow--prev {
    left: 0;
}

.splide__arrow--next {
    right: 0;
}

.splide__arrow svg {
    fill: #dfdfdf;
}



.blog {
    padding: 100px 0;
}

.blog .blog-block {
    margin-top: 20px;
}

.blog-block .inner-box {
    position: relative;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    border: 1px solid #00000021;
    height: 100%;
    background: #fff;
}

.blog-block .inner-box:hover {
    -webkit-box-shadow: 0 0 49px rgba(0, 0, 0, 0.12);
    box-shadow: 0 0 49px rgba(0, 0, 0, 0.12);
    z-index: 1;
}

.blog-block .image-box {
    position: relative;
}

.blog-block .image-box .image {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.blog-block .image-box .image img {
    position: relative;
    width: 100%;
    display: block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    object-fit: cover;
    aspect-ratio: 4 / 2.7;
}

.blog-block .image-box .image img:first-child {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1;
    -webkit-transform: translateX(50%) scaleX(2);
    transform: translateX(50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.blog-block .inner-box:hover .image-box .image img:first-child {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translateX(0) scaleX(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.blog-block .inner-box:hover .image-box .image img:nth-child(2) {
    -webkit-transform: translateX(-50%) scaleX(2);
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.blog-block .image-box .date {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 72px;
    display: block;
    z-index: 3;
}

.blog-block .image-box .date strong {
    position: relative;
    display: block;
    width: 72px;
    font-size: 27px;
    font-weight: 600;
    padding: 9px 0 10px;
    line-height: 1;
    color: var(--white-color);
    background-color: var(--secondary-color);
    text-align: center;
}

.blog-block .image-box .date strong span {
    display: block;
    font-size: 14px;
    margin-top: 4px;
    text-transform: uppercase;
    font-weight: 400;
}

.blog-block .content-box {
    margin-left: 0px;
    margin-right: 0px;
    position: relative;
    padding: 15px 27px 30px;
    top: 0px;
    background-color: var(--white-color);
    z-index: 1;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.blog-block .content-box h4 {
    margin-bottom: 15px;
    margin-top: 10px;
    font-weight: 600;
    line-height: 30px;
    font-size: 20px;
    min-height: 60px;
}



.main-footer {
    position: relative;
    background-color: var(--primary-color);
    padding: 0;
    background-image: url(../img/img1.jpg);
    background-size: cover;
    background-position: center;
}

.main-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    opacity: 92%;
}

.main-footer .footer-top {
    position: relative;
    padding: 70px 0 63px;
}

.main-footer .footer-widget {
    position: relative;
}

.main-footer .widget-title {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 1.2em;
    color: var(--white-color);
    font-weight: 700;
    margin-bottom: 40px;
}

.main-footer .widget-title:before {
    bottom: -13px;
    content: "";
    height: 2px;
    position: absolute;
    left: 0;
    width: 43px;
    background: #c4edfa;
    border-radius: 20px;
}

.main-footer .logo-footer img {
    max-width: 140px;
}

.main-footer .user-links {
    position: relative;
    padding: 0;
}

.main-footer .user-links li {
    list-style: none;
    position: relative;
    font-size: 14px;
    line-height: 30px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    margin-bottom: 9px;
    padding-left: 14px;
}

.main-footer .user-links li i {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 9px;
    color: #d5d5d5;
}

.main-footer .user-links li a {
    position: relative;
    display: inline-block;
    color: #d5d5d5;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-footer .user-links li a:hover {
    color: var(--white-color);
}

.main-footer .user-links li a:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--white-color);
    content: "";
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-footer .user-links li a:hover:before {
    width: 100%;
}

.main-footer .contact-info li {
    padding-left: 24px;
    margin-bottom: 18px;
}

.main-footer .contact-info li i {
    font-size: 14px;
}

.main-footer .hours {
    background: #ffffff14;
    padding: 6px 20px;
    text-align: center;
    display: flex;
    gap: 5px;
    justify-content: start;
    align-items: center;
    width: fit-content;
    margin: 0;
    color: #d5d5d5;
    font-size: 14px;
}

.footer-bottom {
    position: relative;
    padding-bottom: 50px;
    width: 100%;
}

.footer-bottom .inner-container {
    background-color: #ffffff17;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 25px 41px 25px 50px;
    backdrop-filter: blur(8px);
}

.footer-bottom .copyright-text {
    position: relative;
    font-size: 13px;
    line-height: 35px;
    color: #c4c5c7;
    font-weight: 400;
    margin-bottom: 0px;
}

.footer-bottom .copyright-text a {
    color: inherit;
}

.footer-bottom .copyright-text a:hover {
    color: var(--secondary-color);
}

.footer-bottom .social-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer-bottom .social-icon li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 10px;
}

.footer-bottom .social-icon li:first-child {
    margin-left: 0;
}

.footer-bottom .social-icon li a {
    position: relative;
    display: block;
    height: 36px;
    width: 36px;
    line-height: 36px;
    border-radius: 50%;
    text-align: center;
    font-size: 14px;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.footer-bottom .social-icon li a i {
    position: relative;
}

.footer-bottom .social-icon li a::before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    background-color: var(--secondary-color);
    content: "";
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    border-radius: 50px;
}

.footer-bottom .social-icon li a:hover {
    color: #fff;
}

.footer-bottom .social-icon li a:hover:before {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.faq {
    padding: 100px 0;
}

.faq .heading {
    position: sticky;
    top: 150px;
}

.faq .accordion-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.faq .accordion:first-child {
    margin-top: 0;
}

.faq .accordion {
    margin-top: 20px;
}

.faq .menu-button {
    width: 100%;
    padding: 10px 20px;
    margin-top: 2px;
    font-size: 17px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    letter-spacing: 0.5px;
    font-weight: 500;
    background-color: var(--success-color);
    color: var(--primary-color);
    border-bottom: 1px solid #00000000;
    cursor: pointer;
    text-align: start;
}

.faq .menu-button.open {
    border-bottom: 1px solid #0000002b;
}

.faq .icon {
    font-size: 27px;
    transition: 0.4s;
}

.faq .menu-button.open .icon {
    transform: rotate(45deg);
}

.faq .content {
    padding: 0 20px;
    background-color: #ffffff;
    transition: 0.4s;
    height: 0;
    overflow: hidden;
    background: #faf8f6;
}

.faq .content h5 {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 600;
    margin-top: 30px;
}

.faq .content p,
.faq .content li {
    margin: 0;
    padding: 20px 0;

}

.faq .content a {
    font-size: 16px;
    line-height: 24px;
    color: var(--primary-color);
}

.faq .content ul {
    margin: 0;
    padding-left: 20px;
}

.faq .content li {
    padding: 0px 0;
    line-height: 26px;
}

.gallery {
    padding: 100px 0;
}

.gallery_slider {
    margin-top: 20px;
}

#primary_slider .splide__slide img {
    vertical-align: bottom;
    object-fit: cover;
    width: 100%;
    aspect-ratio: 3/2.8;
}

#thumbnail_slider {
    margin-top: 20px;
}

#thumbnail_slider .splide__slide {
    border: 2px solid transparent;
    padding: 0px;
    overflow: hidden;
    border-radius: 0px;
}

#thumbnail_slider .splide__slide.is-active {
    border: 2px solid var(--secondary-color);
}

.gallery_slider .splide__arrows {
    width: calc(100% - 20px);
    justify-content: space-between;
    bottom: inherit;
    top: 50%;
    transform: translate(-50%, -50%);
}

.gallery_slider .splide__arrow {
    background: #00000094;
    border: 1px solid #ffffff82;
}


.pagination {
    position: relative;
}

.pagination ul {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
    gap: 10px;
    margin-top: 50px;
}

.pagination ul li {
    list-style: none;
}

.pagination ul li a {
    text-decoration: none;
    color: var(--primary-color);
    width: 30px;
    height: 30px;
    border-radius: 0%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination ul li.active a {
    background: var(--accent-color);
}

.pagination ul li.prev a {
    background: var(--white-color);
    margin-right: 10px;
    border: 1px solid var(--primary-color);
}

.pagination ul li.prev a img,
.pagination ul li.next a img {
    filter: brightness(0);
}

.pagination ul li.next a {
    background: var(--white-color);
    margin-left: 10px;
    border: 1px solid var(--primary-color);
}


.contact {
    padding: 100px 0;
}

.contact .info-box {
    padding: 60px 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    background: var(--primary-color);
    width: fit-content;
}

.contact .info-box:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/map.png);
    background-size: cover;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.contact .info-box h4 {
    color: #fff;
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact .info-box .more-info {
    margin-bottom: 0px;
    padding: 25px 0 17px;
    border-bottom: 1px solid #ffffff2e;
}

.contact .info-box .more-info h6 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 19px;
}

.contact .info-box .more-info p,
.contact .info-box .more-info a {
    color: #e3e3e3;
    margin-bottom: 8px;
    font-size: 15px;
    display: block;
}

.contact .info-box .more-info a:hover {
    text-decoration: underline;
}

.contact .social-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    padding-top: 20px;
}

.contact .social-icon li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 10px;
}

.contact .social-icon li:first-child {
    margin-left: 0;
}

.contact .social-icon li a {
    position: relative;
    display: block;
    height: 36px;
    width: 36px;
    line-height: 36px;
    border-radius: 50%;
    text-align: center;
    font-size: 14px;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.contact .social-icon li a i {
    position: relative;
}

.contact .social-icon li a::before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    background-color: var(--secondary-color);
    content: "";
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    border-radius: 50px;
}

.contact .social-icon li a:hover {
    color: #fff;
}

.contact .social-icon li a:hover:before {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.contact form {
    margin-top: 30px;
}

.contact input,
.contact textarea {
    border: 0;
    border-bottom: 1px solid #00000033;
    border-radius: 0;
    padding: 15px 0;
    font-size: 15px;
    font-weight: 500;
    background: transparent;
    margin-bottom: 20px;
}

.contact input:focus,
.contact textarea:focus {
    border: 0;
    border-bottom: 1px solid #00000073;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.contact .row {
    --bs-gutter-x: 3.5rem;
}


.about_list .about_list_item {
    border-bottom: 1px dashed #d7d7d7;
    padding: 20px 0;
    display: flex;
    align-items: start;
    gap: 20px;
}

.about_list .about_list_item:last-child {
    border-bottom: none
}

.about_list .about_list_item img {
    max-width: 55px;
    flex: 1;
    height: auto;
    object-fit: contain;
}

.about_list .about_list_item h6 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.about_list .about_list_item p {
    margin-bottom: 0;
}

.single-post .header {
    background: var(--primary-color);
}

.single_blog {
    position: relative;
    padding-top: 220px;
    padding-bottom: 100px;
}


.single_blog .single_blog_inner {
    max-width: 1025px;
    margin: 0 auto;
}

.single_blog .breadcrumb {
    justify-content: center;
    margin-bottom: 14px;
}

.breadcrumb-item a {
    color: var(--primary-color);
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: underline;
}

.breadcrumb-item a,
.breadcrumb-item {
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0.0256em;
}

.breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: var(--bs-breadcrumb-item-padding-x);
    color: #3C3F4C;
    content: var(--bs-breadcrumb-divider, ">");
    font-size: 20px;
}

.single_blog .single_blog_heading h2 {
    text-align: center;
    margin-bottom: 14px;
}

.single_blog .publish_detail {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.single_blog .publish_detail p {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0.0256em;
    margin: 0;
}

.single_blog .publish_detail p.name {
    position: relative;
}

.single_blog .publish_detail p.name::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--primary-color);
    top: 50%;
    transform: translateY(-50%);
    right: -16px;
}

.single_blog .blog_img img {
    height: 500px;
    width: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 16px 16px 0 0;
    margin-top: 50px;
}

.single_blog .cont .blog_img img {
    object-position: center;
    margin: 0;
    margin-bottom: 30px;
}

.single_blog .cont {
    max-width: 700px;
    margin: 0 auto;
    margin-top: 50px;
}

.single_blog .quote {
    padding: 15px 30px;
    border: 1px solid #F4EDE5;
    background: var(--success-color);
    border-radius: 0 0 16px 16px;
    margin-bottom: 30px;
    text-align: center;
}

.single_blog .cont p {
    margin-bottom: 30px;
}

.single_blog .cont ul {
    margin-bottom: 30px;
}

.single_blog .cont ul li {
    color: var(--dark-color);
    font-size: 15px;
    line-height: 28px;
}


.single_blog .quote p {
    margin: 0;
}

.single_blog .cont h3 {
    font-size: 25px;
    font-weight: 700;
    line-height: 38px;
    margin-bottom: 10px;
}

.single_blog .share {
    margin-top: 20px;
    display: inline-block;
}

.single_blog .share h6 {
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    margin-bottom: 16px;
}

.single_blog .share ul {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0;
    padding: 0;
}

.single_blog .share ul li {
    list-style: none;
}

.single_blog .share ul li a {
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    background: var(--accent-color);
    text-decoration: none;
}

.single_blog .share ul li img {
    height: 17px;
}

.single_blog .share ul li i {
    color: var(--primary-color);
    font-size: 15px;
}


/* -----------------------------------Boat Cruises Page Css ---------------------------------------- */

.inside-banner {
    height: auto;
    padding: 120px 0 !important;
}


.private-charter {
    padding: 100px 0px;
    position: relative;
}

.cruise-about h3 {
    font-size: 30px;
}

.cruise-experience {
    padding: 100px 0;
}

.cruise-card {
    height: 100%;
    object-fit: contain;
    width: 100%;
    border: 0;
    transition: 0.3s ease;
}

.cruise-card:hover {
    transform: translateY(-8px);
}

.most-popular {
    position: relative;
}

.most-popular img {
    border-radius: 10px 10px 0px 0px;
    aspect-ratio: 3/2.5;
    width: 100%;
    object-fit: cover;
}


.most-popular span {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 12px;
    font-weight: bold;
    margin: 10px;
    background-color: var(--primary-color);
    color: var(--success-color);
    padding: 5px 18px;
    border-radius: 15px;
}

.cruise-card-body {
    padding: 20px;
    background-color: #faf8f6;
}

.cruise-card-body h5 {
    margin-bottom: 10px;
    font-size: 18px;
}

.cruise-card-body p {
    margin-bottom: 10px;
}


.private-charter-img {
    aspect-ratio: 3/2;
    width: 100%;
}

.private-charter-img img {
    height: 100%;
    width: 100%;
}

.private-charter-right-text {
    padding-left: 45px;
}

.private-charter-left-text {
    padding-right: 45px;
}

.cruise-experience-inner {
    margin-bottom: 30px;
}

/* --------------- wine board section start ------------------ */

.experience-section {
    position: relative;
    padding: 100px 0;
}

.experience-section .about_img {
    width: 100%;
}

.experience-section .about_img img {
    width: 100%;
}

.gallery-section {
    position: relative;
    padding: 60px 0;
}

.gallery-img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.gallery-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.gallery-main {
    display: flex;
    gap: 25px;
    align-items: center;
}

.gallery-main-bottom {
    width: 48%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    height: 100%;
}

.cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 28px;
}

.booking-section {
    position: relative;
    padding: 100px 0;
    background: #afeeee;
}

.card {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card .card-img {
    margin-bottom: 20px;
}

.card .card-img img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3/1.5;
}

.card-icon {
    width: 58px;
    height: 58px;
    background: #d6f4f4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 5px;
}

.card-icon img {
    width: 48px;
}

.card-tag {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: #d6f4f4;
    color: #1f6b6b;
    padding: 4px 10px;
    border-radius: 40px;
    margin-bottom: 16px;
    display: inline-block !IMPORTANT;
    width: fit-content;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--aqua-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--aqua-deep);
    padding-bottom: 2px;
    transition: gap 0.2s ease, color 0.2s ease;
}

.card-link svg {
    width: 14px;
    height: 14px;
}

.card.featured {
    background: #1f6b6b;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
}

.card.featured {
    color: white;
}

.card.featured h2,
.card.featured p {
    color: white !important;
}

.card.featured .card-icon svg {
    width: 36px;
    height: 36px;
    stroke: #b2e8e8;
}

.bottom-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    padding: 24px 32px;
    backdrop-filter: blur(6px);
    gap: 20px;
}

.bottom-strip a {
    flex: 0 0 20%;
}


.two_columns {
    padding: 100px 0;
}

.two_columns .column1,
.two_columns .column2 {
    position: relative;
    padding: 30px;
    background: #afeeee;
    height: 100%;
}

.two_columns .column1 h3,
.two_columns .column2 h3 {
    color: var(--primary-color);
    font-size: 25px;
    font-weight: revert;
    margin-bottom: 20px;
}


.two_columns .column1 ul li {
    color: var(--dark-color);
    font-size: 15px;
    line-height: 28px;
}




.inquiry {
    text-align: center;
    padding: 100px 0;
}

.inquiry .inquiry_inner {
    max-width: 1000px;
    margin: 0 auto;
    background: url(../img/map1.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.inquiry .inquiry_inner h2 {
    font-size: 30px;
    margin-bottom: 50px;
}

.inquiry .inquiry_inner form input,
.inquiry .inquiry_inner form textarea,
.inquiry .inquiry_inner form select {
    border: 0;
    border-bottom: 1px solid #00000059;
    padding: 10px 0;
    margin-bottom: 20px;
    font-size: 16px;
    color: #515151;
    background: transparent;
    font-family: "inter", sans-serif;
    border-radius: 0;
    width: 100%;
    min-height: 45px;
}

.inquiry .inquiry_inner form input:focus,
.inquiry .inquiry_inner form input:focus-visible,
.inquiry .inquiry_inner form textarea:focus,
.inquiry .inquiry_inner form textarea:focus-visible,
.inquiry .inquiry_inner form select:focus,
.inquiry .inquiry_inner form select:focus-visible {
    box-shadow: none;
    outline: none;
}

.inquiry .inquiry_inner form .btn-secondary {
    margin-top: 20px;
}


.cta {
    position: relative;
    background: url(../img/kelowna-wine-boat-tour-experience.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000085;
}

.cta_inner {
    padding: 100px 0;
    text-align: center;
    position: relative;
    z-index: 9;
    max-width: 540px;
    margin: 0 auto;
}

.cta_inner h2 {
    color: #fff;
    margin-bottom: 30px;
}

.cta_inner .btn-secondary:hover:before {
    background-color: var(--white-color);
}
.cta_inner .btn-secondary:hover {
    border-color: var(--white-color);
    color: var(--primary-color);
}
