@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&family=PT+Serif:wght@400;700&display=swap");

html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    font-family: "Lato", sans-serif;
}

a {
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease-out;
}

a:hover {
    color: #86e244;
}

input:focus,
textarea:focus,
button:focus {
    border: 0;
    outline: 0;
    box-shadow: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
    line-height: 1.2;
    font-family: "PT Serif", serif;
}

h2 {
    font-size: 48px;
    font-weight: 400;
}

h3 {
    font-size: 30px;
    font-weight: 700;
    font-family: Roboto;
    text-transform: uppercase;
}

h5 {
    font-size: 24px;
    font-weight: 700;
}

p:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0px !important;
}

.container {
    max-width: 1440px;
    width: 95%;
}

ul.lists {
    margin-bottom: 20px;
}

ul.lists li {
    margin: 5px 0;
}

/* --- Scrollbar Code --- */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #86e244;
}

::-webkit-scrollbar-thumb {
    background: #000;
}

::-webkit-scrollbar-thumb:hover {
    background: #575757;
}

/* --- Button Code --- */
.custom-btn {
    width: 100%;
    display: inline-block;
    overflow: hidden;
    position: relative;
    z-index: 1;
    text-align: center;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    line-height: 55px;
    border-radius: 42px;
    padding: 0 55px;
    position: relative;
    font-family: Roboto;
    font-size: 22px;
    font-weight: 500;
    color: #000000;
    text-transform: uppercase;
    max-width: 280px;
    width: 100%;
}

.custom-btn:hover {
    text-decoration: none;
}

.custom-btn2 {
    width: 100%;
    display: block;
    overflow: hidden;
    position: relative;
    z-index: 1;
    text-align: center;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    line-height: 62px;
    border-radius: 0;
    padding: 0 60px;
    position: relative;
    font: normal normal 700 24px/24px Lato;
    color: #000000;
    text-transform: uppercase;
    max-width: 308px;
    width: 100%;
    line-height: 62px;
}

.custom-btn2:hover::before,
.custom-btn:hover::before {
    opacity: 1;
    width: 100%;
    height: 100%;
    background-color: #000;
}

.custom-btn2::before,
.custom-btn::before {
    position: absolute;
    content: "";
    height: 0%;
    width: 0%;
    background-color: #000;
    left: 0;
    top: 0;
    border-radius: 0px;
    transition: 0.5s;
    opacity: 0;
    z-index: -1;
}

.border-btn {
    border: 1px solid #86e244;
    background: #86e244 0% 0% no-repeat padding-box;
}

.border-btn:hover {
    color: #ffffff;
}

.dark-btn {
    color: #ffffff;
    background-color: #000000;
}

.dark-btn:hover {
    color: #ffffff;
}

.light-btn {
    color: #000000;
    background-color: #c19c60;
}

.light-btn:hover {
    color: #ffffff;
}

/* --- Header Code --- */

header .logo-div img {
    transition: all 0.3s ease-in-out;
}

header.fixed-header .logo-div img {
    max-width: 70%;
}

header .row {
    align-items: center;
}

header .nav-menu .navbar-collapse {
    justify-content: flex-end;
}

header .nav-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

header ul.navbar-nav li {
    padding: 20px 22px;
    position: relative;
    list-style: none;
    transition: all 300ms cubic-bezier(0.075, 0.82, 0.165, 1);
    color: #fff;
}

header ul.navbar-nav li.current_page_item a {
    border-bottom: 1px solid #fff;
    font-weight: 900;
}

header ul.navbar-nav li a {
    font: normal normal bold 21px/23px Lato;
    letter-spacing: 0px;
    color: #ffffff;
    text-transform: uppercase;
}

header.fixed-header {
    position: fixed;
    top: 0;
    z-index: 99;
    width: 100%;
}

.h_stripe span {
    display: flex;
}

/* header .logo-div img,
header.fixed-header .logo-div img {
    max-width: 100px;
} */

body.home header.fixed-header .main_header {
    display: none;
}

header ul.navbar-nav li a:after {
    content: "";
    position: absolute;
    right: -1px;
    top: 0px;
    bottom: 0px;
    margin: auto 0;
    width: 1px;
    height: 15px;
    background: #fff;
}

header ul.navbar-nav li:last-child a:after,
header ul.navbar-nav li:hover a:after {
    display: none;
}

.navbar-nav li::before,
.navbar-nav li::after {
    content: "";
    pointer-events: none;
    position: absolute;
    border: 0px solid transparent;
    width: 0%;
    height: 0%;
    bottom: 0%;
    right: 0%;
}

.navbar-nav li::before {
    border-bottom-width: 3px;
    border-left-width: 3px;
}

.navbar-nav li::after {
    border-top-width: 3px;
    border-right-width: 3px;
}

.navbar-nav li:hover {
    color: #fff;
}

.navbar-nav li:hover::before,
.navbar-nav li:hover::after {
    border-color: #fff;
    transition: border-color 0s, width 0.3s, height 0.3s;
    width: 100%;
    height: 100%;
}

.navbar-nav li:hover::before {
    transition-delay: 0s, 0s, 0.3s;
}

.navbar-nav li:hover::after {
    transition-delay: 0s, 0.3s, 0s;
}

header nav.navbar {
    padding: 0;
    background: rgb(110 141 188 / 30%);
}

header ul.navbar-nav ul.sub-menu {
    position: absolute;
    top: 69px;
    left: -80%;
    margin: auto;
    width: 520px;
    min-width: initial;
    padding: 13px;
    background-color: rgb(255 255 255 / 21%);
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
    -o-transition: opacity 0.5s ease, visibility 0.5s ease;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 9;
}

header ul.navbar-nav ul.sub-menu li {
    padding: 0;
    text-align: center;
}

header ul.navbar-nav ul.sub-menu li a:after {
    display: none;
}

header ul.navbar-nav > li > ul > li.menu-item-has-children > ul.sub-menu {
    top: 0;
    left: 100%;
}

header ul.navbar-nav > li.menu-item-has-children:hover > ul.sub-menu {
    opacity: 1;
    visibility: visible;
}

.fa-solid,
.fas {
    font-family: "Font Awesome 6 Free";
    font-weight: 700;
    font-size: 13px;
    color: #4f83bc;
}

.social_links a {
    display: flex;
    font-size: 30px;
}

.social_links a:hover {
    /* background: #4F83BC; */
    color: #fff;
}

.social_links {
    display: flex;
    justify-content: flex-end;
}

.h_stripe span {
    display: flex;
    align-items: center;
    font: normal normal normal 20px/22px Lato;
    letter-spacing: 0px;
    color: #ffffff;
}

.top_h_details {
    display: flex;
    justify-content: flex-end;
}

.h_stripe {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    flex-direction: row-reverse;
    gap: 40px;
}

.h_stripe span img {
    padding-right: 12px;
}

header .mobile-view {
    display: none;
}

.h_stripe span a {
    color: #fff;
    font-weight: 800;
}

.h_stripe span a:hover {
    border-bottom: 1px solid #fff;
}

.banner_fixed_area {
    position: relative;
}

.h_stripe h6 {
    color: #fff;
    font-family: Lato;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    text-transform: uppercase;
}

.container.main_header {
    position: absolute;
    bottom: 95px;
    left: 0;
    right: 0;
    z-index: 9;
    height: 70px;
}

.top_header {
    position: absolute;
    z-index: 9;
    width: 100%;
    left: 0;
    top: 0;
    padding: 10px 60px;
    transition: all 0.5s ease-in-out;
}

header.fixed-header .logo-div img {
    max-width: 110px;
}

header.fixed-header .h_stripe span a {
    font-size: 15px;
}

header.fixed-header .top_header {
    background: #000;
}

header.fixed-header .h_stripe h6,
header.fixed-header .h_stripe span {
    font-size: 15px;
}

/* --- Footer Code --- */
footer {
    background: #000000;
    position: relative;
    z-index: 1;
    padding: 0;
}

.footer-detail-row {
    padding: 80px 0 70px 0;
}

.footer-detail-row h4 {
    color: #fff;
    font-size: 29px;
    font-family: PT Serif;
    font-weight: 400;
    margin-bottom: 30px;
}

.f_details p,
.fcontact-div p {
    color: #fff;
    font-size: 18px;
    line-height: 28px;
    font-family: "Roboto";
    font-weight: 500;
}

ul.q-link {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.q-link li {
    margin-bottom: 15px;
}

ul.q-link a {
    color: #fff;
}

ul.q-link a:hover {
    color: #86e244;
}

.fcontact-div {
    margin: 0 auto;
    padding: 0 28%;
}

ul.footer-details {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul.footer-details li {
    margin-bottom: 20px;
}

.social-div .social_links {
    justify-content: flex-start;
    margin-top: 20px;
}

.social-div h4 {
    font-weight: 400;
    font-family: "Montserrat";
    margin-bottom: 0;
}

.social-div ul.social-icon-lists {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.social-div li {
    margin-left: 20px;
}

.social-div a {
    color: #fff;
    font-size: 25px;
    margin-left: 0;
    margin-right: 30px;
}

footer a.logo-div {
    display: inline-block;
}

footer a.logo-div + p {
    margin: 30px 0;
    color: #fff;
    padding-right: 13%;
}

footer .newsletter-form {
    margin-bottom: 0px;
    text-align: center;
}

footer .newsletter-form h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

.back-to-top {
    position: absolute;
    z-index: 9;
    bottom: 0px;
    right: -2px;
    background-color: #86e244;
    padding: 10px 12px 5px;
    border-radius: 10px 0 0 10px;
    cursor: pointer;
    box-shadow: 0 0 10px #86e244;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

#btn-back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top i {
    transition: all 0.3s ease-in-out;
    color: #fff;
}

.back-to-top:hover {
    background-color: #fff;
}

.back-to-top:hover i {
    color: #86e244;
}

/* --- Home Page Code --- */
.hero-slider {
    background-color: #000000;
}

.hero-slider .item {
    position: relative;
}

.hero-slider .item img {
    width: 100vw;
    height: 100%;
    object-fit: cover;
    object-position: top;
    max-width: 100%;
}

.hero-slider .item .cover {
    padding: 75px 0;
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 40%;
    left: 0;
    display: flex;
    align-items: flex-end;
    z-index: 9;
}

.hero-slider .item .cover .header-content {
    position: relative;
    padding: 0 13%;
    overflow: hidden;
}

.hero-slider .item .cover .header-content .line {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    border: 9px solid #fff;
    -webkit-clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
    clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
}

.hero-slider .item .cover .header-content h2 {
    font-weight: 300;
    font-size: 35px;
    color: #fff;
}

.hero-slider .item .cover .header-content h1 {
    margin: 5px 0 20px;
    text-align: center;
    font: normal normal normal 90px/90px MADE Bon Voyage;
    letter-spacing: 0px;
    color: #ffffff;
    text-transform: capitalize;
}

.hero-slider .item .cover .header-content h4 {
    font-size: 24px;
    font-weight: 300;
    line-height: 36px;
    color: #fff;
}

.hero-slider .owl-item.active h1 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
}

.hero-slider .owl-item.active h2 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
}

.hero-slider .owl-item.active h4 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: 0.3s;
}

.hero-slider .owl-item.active .line {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInLeft;
    animation-delay: 0.3s;
}

.hero-slider .owl-item.active .common_btn {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
    text-align: center;
    margin-top: 45px;
}

.hero-slider .owl-nav .owl-prev {
    position: absolute;
    left: 15px;
    top: 43%;
    opacity: 0;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    background: rgba(0, 0, 0, 0.5) !important;
    width: 40px;
    cursor: pointer;
    height: 40px;
    position: absolute;
    display: block;
    z-index: 1000;
    border-radius: 0;
}

.hero-slider .owl-nav .owl-prev span {
    font-size: 1.6875rem;
    color: #fff;
}

.hero-slider .owl-nav .owl-prev:focus {
    outline: 0;
}

.hero-slider .owl-nav .owl-prev:hover {
    background: #000 !important;
}

.hero-slider .owl-nav .owl-next {
    position: absolute;
    right: 15px;
    top: 43%;
    opacity: 0;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    background: rgba(0, 0, 0, 0.5) !important;
    width: 40px;
    cursor: pointer;
    height: 40px;
    position: absolute;
    display: block;
    z-index: 1000;
    border-radius: 0;
}

.hero-slider .owl-nav .owl-next span {
    font-size: 1.6875rem;
    color: #fff;
}

.hero-slider .owl-nav .owl-next:focus {
    outline: 0;
}

.hero-slider .owl-nav .owl-next:hover {
    background: #000 !important;
}

.hero-slider:hover .owl-prev {
    left: 0px;
    opacity: 1;
}

.hero-slider:hover .owl-next {
    right: 0px;
    opacity: 1;
}

/* Update */

.home .container.main_header {
    bottom: 0;
    top: 75vh;
}

/* --- Inner Page Code --- */
.inner-banner-section {
    padding: 330px 0;
    background-color: #000000;
    position: relative;
    z-index: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.inner-banner-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.2) 43.67%,
        rgba(0, 0, 0, 0.44) 100%
    );
    mix-blend-mode: hard-light;
    z-index: -1;
}

.inner-banner-section h1 {
    color: #ffffff;
    font-size: 55px;
    font-weight: 800;
    text-align: center;
    text-transform: capitalize;
}

button.sub-menu-toggle {
    display: none;
}

.fcontact-div div {
    font-size: 18px;
    line-height: 28px;
    font-family: "Roboto";
    font-weight: 400;
    color: #fff;
}

.fcontact-div .email {
    display: flex;
    flex-direction: column;
}

.fcontact-div strong {
    color: #fff;
    font-weight: 700;
    display: block;
}

.fcontact-div span {
    display: block;
}

.phone_number {
    margin: 30px 0px;
}

.fcontact-div a {
    color: #fff;
}

.f_details {
    padding-right: 10%;
}

.fcontact-div a:hover {
    color: #86e244;
}

.footer_menu_wrp li {
    list-style: none;
    font-size: 16px;
    line-height: 28px;
    font-family: "Roboto";
    font-weight: 400;
    color: #fff;
    margin-bottom: 10px;
}

.footer_menu_wrp li a {
    color: #fff;
}

.footer_menu_wrp li a:hover,
.footer_menu_wrp li.current_page_item a,
.copyright-container p a:hover,
.social-div a:hover {
    color: #86e244;
}

.copyright-container {
    border-top: 1px solid #fff;
    padding: 25px 0px;
}

.copyright-container p {
    font-size: 14px;
    line-height: 28px;
    color: #fff;
    margin: 0;
    font-family: "Inter";
    font-weight: 400;
}

.copyright-container p a {
    color: #fff;
}

.container-fluid.cta_section {
    background: #b9d4fd;
    padding: 70px 0px;
}

.cta_text {
    display: flex;
    align-items: center;
}

.cta_text h4 {
    font: normal normal bold 30px/45px Roboto;
    margin: 0;
}

.cta_btn {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.cta_btn a {
    border-radius: 0;
    color: #000;
    padding: 0 48px;
    max-width: 290px;
}

.container-fluid.blogs_wrapper {
    padding: 100px 0px;
    overflow: hidden;
}

.blog_btn .custom-btn2 {
    max-width: 258px;
    margin: auto;
}

.blog_btn.common_btn {
    text-align: center;
    padding-top: 50px;
}

.inner_b_item_img {
    height: 240px;
    background-size: cover;
    background-position: center center;
    background-color: #86e244;
}

.blogs_items:nth-child(2n) .inner_b_item_img {
    height: 240px;
}

.read_more a {
    width: 86px;
    height: 48px;
    background-image: url("../images/normal.png");
    display: block;
}

.read_more a:hover {
    width: 68px;
    background-image: url("../images/Hover-effect.png");
}

.blog_content h5 {
    font: normal normal bold 18px/24px Roboto;
    color: #000;
    margin: 35px 0px 25px;
}

.blog_content h5 a {
    color: #000;
}

.blog_content h5 a:hover {
    color: #86e244;
}

.blog_content p {
    font: normal normal normal 14px/18px Roboto;
    color: #000;
    margin-bottom: 30px;
}

.heading_wrap {
    padding-bottom: 40px;
}

.sub-title {
    text-align: center;
    font: normal normal 400 24px/30px Roboto;
    letter-spacing: 0px;
    color: #000000;
    text-transform: uppercase;
}

.main-title {
    text-align: center;
    font: normal normal 700 30px/45px Roboto;
    letter-spacing: 0px;
    color: #000000;
    text-transform: capitalize;
}

section.testimonials-section {
    background: #f0f6ff;
    padding: 100px 0px;
    overflow: hidden;
}

.testi-item {
    position: relative;
    padding: 30px 15px;
    transition: all 0.5s ease-in-out;
}

.testi-item .tt-content {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    transition: all 0.5s ease-in-out;
    width: 100%;
    background: #ffffff 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 15px #0000001f;
    padding: 30px;
}

.tt_content {
    padding-left: 20px;
}

.testi-item .tt-content > * {
    color: #000;
    width: 100%;
    display: flex;
    align-items: center;
}

.t_content_box {
    display: flex;
    align-items: center;
}

.testimonail_content_box {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
}

.testi-item .tt-comment p {
    color: #000;
    padding-right: 15px;
    padding-bottom: 15px;
    margin: 0;
    text-align: left;
    font: normal normal normal 18px/26px Lato;
    height: 215px;
    overflow-y: scroll;
}

.tt-comment {
    padding-bottom: 15px;
}

h6.tt-name {
    color: #000;
    font-size: 22px;
    font-family: "Futura Md BT";
    font-weight: 500;
    margin: 0;
}

p.tt-profile {
    color: #000;
    font-size: 18px;
    font-family: "Futura Md BT";
    font-weight: 500;
    line-height: 24px;
    margin: 0;
}

.tt-image {
    width: 98px;
    height: 98px;
    border-radius: 100%;
    overflow: hidden;
}

.testimonials_repeater_content {
    margin: -30px -22px;
}

.quote {
    justify-content: center;
    position: absolute;
    top: 28px;
    margin-bottom: 0px;
}

.stats_box_repeater h4 {
    font: normal normal bold 30px/45px Roboto;
    margin-bottom: 55px;
    padding-left: 45px;
}

.stats_icon span {
    width: 120px;
    height: 120px;
    background: #b9d4fd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

.stats-box h3 {
    font: normal normal bold 45px/65px Roboto;
}

.stats_box_repeater p {
    font: normal normal normal 18px/30px Roboto;
    margin: 0;
}

.stats_icon {
    margin-bottom: 15px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.stats-box {
    text-align: center;
}

.stats_box_repeater {
    padding-left: 6%;
}

.quote img {
    width: 90px;
}

.slick-dots {
    position: relative;
    bottom: 0;
    padding: 30px 0px 0;
    margin: 0;
}

.slick-dots li {
    width: 20px;
    height: 20px;
    margin: 0 12px;
}

.slick-dots li button:before {
    font-family: "slick";
    font-size: 20px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: "";
    text-align: center;
    opacity: 1;
    color: #fff;
    background: #fff;
    border-radius: 100%;
    border: 1px solid #000;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    background: #b9d4fd;
    border: 1px solid #b9d4fd;
}

.gallery_images {
    position: relative;
}

.gallery_items {
    position: absolute;
    border: 10px solid #fff;
}

.container-fluid.gallery_wrapper {
    padding: 0;
    background: #b9d4fd;
}

.gallery_items:nth-child(1) {
    top: 40px;
}

.gallery_items:nth-child(2) {
    left: 400px;
    top: 0;
}

.gallery_items:nth-child(3) {
    left: 400px;
    top: 282px;
}

.container-fluid.gallery_wrap {
    background-size: cover;
    background-position: center center;
    padding: 122px 0px;
    height: 935px;
}

.gallery_btn.common_btn {
    text-align: center;
    padding: 50px 0px;
}

.gallery_btn.common_btn a {
    margin: auto;
}

.gallery_wrap .container,
.gallery_wrap .row {
    height: 100%;
}

.gallery_content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    left: -40px;
}

.gallery_content h5 {
    font: normal normal normal 24px / normal Roboto;
    color: #000;
    margin: 0;
}

.gallery_content h4 {
    font: normal normal bold 30px/45px Roboto;
    color: #000;
    margin-bottom: 32px;
}

.gallery_content .custom-btn2 {
    max-width: 258px;
    width: 100%;
}

.container-fluid.about_content_wrapper {
    padding: 120px 0px;
}

.inner_image {
    position: relative;
    padding: 60px 0px;
}

.inner_image img {
    width: 100%;
    z-index: 9;
    position: relative;
}

.inner_image:after {
    content: "";
    position: absolute;
    right: -70px;
    top: 0;
    background: #b9d4fd;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about_content_wrapper .row:nth-child(2n) {
    padding: 120px 0px;
}

.about_content_wrapper .row:nth-child(2n) .about_image {
    order: 1;
}

.about_content_wrapper .row:nth-child(2n) .about_content {
    order: 2;
}

.about_content_wrapper .row:nth-child(2n) .inner_image:after {
    left: -70px;
    right: auto;
}

.inner_content li {
    position: relative;
    list-style: none;
    font: normal normal 400 16px/24px Lato;
    color: #000;
    padding-left: 32px;
    margin: 15px 0px;
}

.inner_content li strong {
    font-weight: 700;
}

.inner_content li:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 8px;
    width: 12px;
    height: 12px;
    background: #dfd7b5;
    border-radius: 100%;
}

.inner_content ul {
    padding: 0;
}

.inner_content .common_btn {
    padding-top: 40px;
}

.inner_content .common_btn a {
    max-width: 231px;
    padding: 0px;
}

.inner_content p {
    font: normal normal normal 16px/24px Lato;
    color: #000;
    padding: 15px 0px;
    margin: 0;
}

.inner_content h3,
.inner_content h4 {
    font: normal normal 700 30px/45px Roboto;
    color: #000000;
    text-transform: uppercase;
    padding-top: 0px;
}

.inner_content h4 {
    margin-top: 20px;
}

.inner_content h5 {
    font: normal normal normal 24px/30px Roboto;
    color: #000000;
    text-transform: capitalize;
}

.about_image {
    padding-left: 30px;
}

.about_content {
    padding-right: 30px;
}

.about_content_wrapper .row:nth-child(2n) .about_image {
    padding-right: 30px;
    padding-left: 12px;
}

.about_content_wrapper .row:nth-child(2n) .about_content {
    padding-left: 30px;
    padding-right: 12px;
}

.container-fluid.location_wrapper {
    background: #f0f6ff;
    padding: 90px 0px;
}

.location_wrapper .row {
    margin-bottom: 30px;
    background: #fff;
}

.location_content {
    display: flex;
    align-items: center;
    padding: 25px 3%;
}

.location_content p {
    padding: 10px 0px;
}

.location_content h4 {
    line-height: 30px;
    margin: 0;
}

.location_content h5 {
    margin-bottom: 25px;
}

.location_btn {
    padding: 50px 0px;
}

.location_btn a.custom-btn2.border-btn {
    max-width: 494px;
    margin: auto;
}

.container-fluid.full_content_wrapper {
    background: transparent;
    padding: 30px 0px;
    position: absolute;
    background-size: cover;
    background-position: center bottom;
    bottom: 0;
}

.container-fluid.full_content_wrapper:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 63%);
}

.full_content_wrapper p {
    text-align: center;
    font: normal normal normal 21px/38px Lato;
    letter-spacing: 0px;
    color: #ffffff;
    text-transform: uppercase;
    position: relative;
    z-index: 9;
}

.container-fluid.Enquiry_wrapper {
    background: #f6f6f6;
    padding: 80px 0px 60px;
}

.form_field input {
    width: 100%;
    height: 62px;
    background: #fff;
    outline: none;
    border: none;
    padding: 0px 20px;
    font: normal normal normal 14px/17px Roboto;
    letter-spacing: 0px;
    color: #282828;
}

::-webkit-input-placeholder {
    /* Edge */
    color: #282828;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #282828;
}

::placeholder {
    color: #282828;
}

.form_submit_field input {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    outline: none;
    transition: 0.4s;
    z-index: 99;
    position: relative;
    font: normal normal bold 24px/29px Roboto;
    letter-spacing: 0px;
    color: #000000;
}

.form_submit_field input:hover {
    color: #fff;
}

.form_submit_field p {
    display: inline-block;
    position: relative;
    border: 2px solid #86e244;
    border-radius: 0px;
    width: 100%;
    max-width: 148px;
    height: 55px;
    background: #86e244;
    margin-top: 20px;
}

.form_submit_field p:hover::before {
    opacity: 1;
    width: 100%;
    height: 100%;
    background-color: #000;
}

.form_submit_field p::before {
    position: absolute;
    content: "";
    height: 0%;
    width: 0%;
    background-color: #000;
    left: 0;
    top: 0;
    border-radius: 0px;
    transition: 0.5s;
    opacity: 0;
}

.Enquiry_form .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.form_field {
    width: 25%;
}

.form_submit_field {
    text-align: right;
    position: relative;
}

.Enquiry_wrapper h4 {
    font: normal normal bold 45px/54px Roboto;
    letter-spacing: 0px;
    color: #000000;
    margin-bottom: 30px;
}

i.fa.fa-caret-down {
    position: absolute;
    color: rgb(255 255 255 / 21%);
    bottom: -19px;
    right: 0px;
    left: 0px;
    text-align: center;
    font-size: 30px;
}

input.wpcf7-not-valid,
select.wpcf7-not-valid,
textarea.wpcf7-not-valid {
    border: 1px solid #f00 !important;
    box-shadow: 0px 0px 2px #f00;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    border: none !important;
    padding: 0px !important;
    margin: 0 !important;
    text-align: right;
}

.wpcf7-not-valid-tip {
    display: none;
}

.default_wrapper {
    padding: 50px 0px;
}

.default_wrapper a.custom-btn2.border-btn {
    padding: 0;
    margin: 30px auto 0;
}

.social-div h5 {
    font: normal normal bold 24px/24px Lato;
    letter-spacing: 0px;
    color: #ffffff;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.social-div {
    padding-top: 35px;
}

.inner_content h3 {
    padding-right: 24%;
}

.h_stripe span {
    margin-left: 60px;
}

.h_stripe span:first-child {
    margin-left: 0px;
}

.page-id-6 .inner_content p {
    padding-right: 34px;
}

.a_img {
    position: absolute;
    padding: 18px 0px;
    right: -15px;
    top: 45px;
}

.a_img:after {
    content: "";
    position: absolute;
    left: -18px;
    top: 0;
    background: #b9d4fd;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.page-id-6 .inner_content h5 {
    font-weight: 700;
    padding: 20px 0px 10px;
}

.page-id-6 .inner_image {
    position: relative;
    padding: 32px 0px;
}

.page-id-6 .inner_image:after {
    content: "";
    position: absolute;
    right: -34px;
    top: 0;
    background: #b9d4fd;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.inner_content .row {
    position: relative;
    margin-top: 40px;
}

.page-id-6 .about_content_wrapper .row:nth-child(2n) .inner_image:after,
.about_content3_wrapper .inner_image:after {
    left: -34px;
    right: auto;
}

.a_content h5 {
    padding: 0;
}

.container-fluid.abt_content_wrapper {
    padding: 120px 0px 100px;
    background-size: cover;
    background-position: center center;
    background-color: #f0f6ff;
}

.abt_inner_content2 h3 {
    color: #000;
    font-family: Roboto;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 45px;
    /* 150% */
    text-transform: uppercase;
    margin-bottom: 20px;
}

.abt_inner_content2 h5 {
    color: #000;
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.abt_inner_content2 p {
    color: #000;
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 144.444% */
    padding-bottom: 10px;
}

.abt_inner_content2 .common_btn a {
    font-family: Lato;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    padding: 0 40px;
    max-width: max-content;
    display: inline-block;
}

.abt_inner_content2 .common_btn {
    padding-top: 15px;
}

.item_box img {
    max-height: 569px;
    min-height: 569px;
    object-fit: cover;
    width: 100%;
}

.item_box {
    margin: 0px 14px;
    position: relative;
}

.item_Box_content {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url("../images/a_shadow.png");
    background-repeat: no-repeat;
    background-position: left bottom;
    display: flex;
    align-items: flex-end;
    padding: 26px;
}

.item_in_content h3 {
    color: #fff;
    font-family: Roboto;
    font-style: normal;
    line-height: 45px;
    /* 150% */
    text-transform: uppercase;
    margin: 0;
}

.item_in_content h5 {
    color: #fff;
    font-family: Roboto;
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
    text-transform: capitalize;
    margin: 0;
}

.about_content3_wrapper {
    padding: 90px 0px;
}

.about_content3_wrapper .about_content {
    padding-right: 12px;
    padding-left: 55px;
}

.about_content3_wrapper .inner_content li {
    position: relative;
    list-style: none;
    color: #000;
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    padding-left: 25px;
    margin: 12px 0px;
}

.about_content3_wrapper .inner_content p {
    color: #000;
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    padding: 10px 0px;
    padding-right: 0;
}

.about_content3_wrapper .inner_content h6 {
    color: #000;
    font-family: Lato;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px;
    margin-bottom: 20px;
}

.about_content3_wrapper .inner_content li:before {
    background: #000;
    width: 8px;
    height: 8px;
}

.about_content3_wrapper .inner_content .common_btn {
    padding-top: 15px;
}

.container-fluid.booking_posts_wrp {
    padding: 90px 0px 80px;
}

h3.heading {
    color: #000;
    font-family: Roboto;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 45px;
    text-transform: uppercase;
}

.booking_posts_wrp h3.heading {
    margin-bottom: 25px;
}

.book_items {
    padding: 22px 22px;
    transition: 0.4s;
}

.container-fluid.booking_posts_wrp .row {
    margin: 0px -22px;
}

.booking_item_img img {
    max-height: 450px;
    min-height: 450px;
    width: 100%;
    object-fit: cover;
}

.inn_booking_content h5 {
    color: #000;
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    min-height: 52px;
}

.inn_booking_content p {
    color: #000;
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin: 10px 0px 20px;
    min-height: 102px;
}

.inn_booking_content {
    padding: 28px 0px 15px;
}

.booking_in_item {
    transition: 0.4s;
    overflow: hidden;
}

.book_items:hover .inn_booking_content h5 a {
    color: #86e244;
}

.booking_item_img img {
    transition: 0.4s;
}

.booking_item_img a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    clip-path: polygon(0 0, 100% 0%, 100% 101%);
    transform: scale(0);
    transform-origin: top right;
    background: linear-gradient(
        -86deg,
        rgb(134 226 68 / 80%) 0%,
        rgb(0 0 0 / 60%) 100%
    );
    pointer-events: none;
    transition: 0.5s;
    opacity: 0.5;
    height: 100%;
    z-index: 9;
}

.booking_item_img:hover a:before {
    opacity: 1;
    transform: scale(1);
}

.booking_item_img {
    position: relative;
}

.common_btns {
    width: 100%;
    display: block;
    overflow: hidden;
    position: relative;
    z-index: 1;
    text-align: center;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    border-radius: 0;
    padding: 0 22px;
    position: relative;
    max-width: 230px;
    width: 100%;
    line-height: 62px;
    background: #86e244;
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
}

.common_btns a {
    color: #000;
}

.common_btns:hover a {
    color: #fff;
}

.common_btns:hover::before {
    opacity: 1;
    width: 100%;
    height: 100%;
    background-color: #000;
}

.common_btns::before {
    position: absolute;
    content: "";
    height: 0%;
    width: 0%;
    background-color: #000;
    left: 0;
    top: 0;
    border-radius: 0px;
    transition: 0.5s;
    opacity: 0;
    z-index: -1;
}

.container-fluid.booking_content_wrapper {
    background-size: cover;
    background-color: #f0f6ff;
    padding: 90px 0px;
}

.booking_content_wrapper li {
    position: relative;
    list-style: none;
    color: #000;
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
    padding-left: 30px;
    margin: 6px 0px;
}

.booking_content_wrapper li strong {
    font-weight: 700;
}

.booking_content_wrapper li:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 8px;
    width: 12px;
    height: 12px;
    background: #dfd7b5;
    border-radius: 100%;
}

.booking_content_wrapper ul {
    padding: 12px 12px 40px;
}

.booking_content_wrapper p {
    color: #000;
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
}

.booking_content_wrapper h3 {
    color: #000;
    font-family: Roboto;
    font-style: normal;
    line-height: 45px;
    text-transform: uppercase;
}

section.testimonials-section .slick-dots li button:before {
    border: 1px solid transparent;
}

.container-fluid.blog_main_wrapper {
    padding: 80px 0px;
}

.container-fluid.blog_full_content {
    background: #f0f6ff;
    padding: 80px 0px;
}

.blog_full_content p strong {
    color: #000;
    font-family: Lato;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    display: block;
    padding: 10px 0px;
}

.blog_full_content p,
.blog_main_wrapper p {
    color: #000;
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    padding: 10px 0px;
    margin: 0;
}

.blog_main_wrapper h5 {
    color: #000;
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
}

img.img-fluid.full_image {
    margin-bottom: 30px;
}

.container-fluid.related_blogs_wrapper {
    padding: 80px 0px;
}

.blogs_slider {
    margin: 0px -20px;
}

.container-fluid.google_map_wrapper {
    background: #f0f6ff;
    padding: 80px 0px;
}

.container-fluid.contect_form_wrapper {
    padding: 80px 0px;
}

.contect_form_wrapper .Enquiry_form {
    background: #fff;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
    padding: 50px;
}

.google_map {
    height: 550px;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
}

.google_map iframe {
    height: 100%;
}

.contect_form_wrapper h3,
.contact_form h3 {
    color: #000;
    font-family: Roboto;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.contact_form h5 {
    color: #000;
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 15px;
}

.form_field.new {
    width: 50%;
    margin-bottom: 25px;
}

.form_field.textarea {
    width: 100%;
}

.form_field.new input {
    background: #f0f6ff;
    height: 70px;
    color: #000;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.form_field.textarea textarea {
    background: #f0f6ff;
    height: 144px;
    color: #000;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    width: 100%;
    border: none;
    padding: 15px 20px;
    resize: none;
}

.wpcf7-form-control-wrap {
    position: relative;
    float: left;
    width: 100%;
}

.contect_form_wrapper .form_submit_field {
    text-align: center;
}

.contact_form_img .inner_image {
    position: relative;
    padding: 30px 0px;
}

.contact_form_img .inner_image:after {
    right: -30px;
}

.container-fluid.contact_details_wrapper {
    padding: 90px 0px 30px;
}

.inner_details_content {
    display: flex;
    align-items: center;
}

.inner_details_contact p {
    color: #000;
    font-family: Lato;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
}

.details_repeater {
    background: #f0f6ff;
    padding: 40px;
    margin-bottom: 60px;
}

.inner_details_contact {
    padding-left: 20px;
}

.details_box:nth-child(2) {
    padding: 25px 0px;
}

.inner_details_contact p {
    color: #000;
    font-family: Lato;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
}

.office_hrs {
    background: #f0f6ff;
    padding: 40px;
}

.office_hrs h6 {
    color: #000;
    font-family: Lato;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    margin-bottom: 12px;
}

.office_hrs p {
    color: #000;
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.contact_form {
    padding-right: 70px;
}

.container-fluid.testimonail_wrapper {
    padding: 80px 0px;
    background-size: cover;
}

.testimonail_wrapper .tt-comment p {
    height: auto;
    overflow-y: hidden;
}

.testimonail_wrapper .tt-image {
    height: 68px;
    width: 68px;
    border-radius: 100%;
    overflow: hidden;
}

.testimonail_wrapper h6.tt-name {
    color: #000;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 127.273% */
}

.testimonail_wrapper .tt-comment p {
    color: #000;
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.testimonail_wrapper .tt-comment p strong {
    font-weight: 700;
}

.testimonail_wrapper .testi-item .tt-content {
    background: rgb(255 255 255 / 70%) 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 2px #00000000;
    height: 100%;
}

.testimonail_wrapper .testi-item {
    padding: 30px 15px 70px;
}

.testimonail_wrapper .quote img {
    width: auto;
    margin-top: -98px;
}

.testimonail_wrapper .common_btns {
    margin: auto;
}

.section.testimonail_content_wrapper {
    padding: 80px 0px;
}

.testimonial_box_content {
    display: flex;
    align-items: center;
}

.inn_testimonial_content h3 {
    color: #000;
    font-family: Roboto;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    text-transform: uppercase;
}

.inn_testimonial_content p {
    color: #000;
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin: 20px 0px;
}

.inn_testimonial_content {
    padding-right: 50px;
}

.container-fluid.gallery_items_wrapper {
    padding: 80px 0px;
}

.common_content p {
    color: #000;
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin: 10px 0px;
}

.robo-gallery-wrap {
    padding-top: 30px;
}

h3.image_heading {
    background: #f0f6ff;
    color: #000;
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    text-transform: uppercase;
    text-align: center;
    padding: 25px;
    margin-bottom: 45px;
}

.destination_top_content img.img-fluid.full_image {
    margin-bottom: 0;
}

.destination_top_content ul {
    padding-left: 21px;
    margin-bottom: 0;
}

.destination_top_content li {
    color: #000;
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
    padding: 0;
    list-style: disc;
    margin: 6px 0px;
}

.destination_top_content h5 {
    color: #000;
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    text-transform: none;
    margin-top: 1rem;
}

.destination_top_content li:before {
    display: none;
}

.container-fluid.about_content_wrapper.destination_top_content,
.related_booking {
    background: #f0f6ff;
}

.destination_top_content .inner_content h3 {
    margin: 15px 0 0;
    padding: 0;
}

.destination_top_content .inner_image:after {
    content: "";
    position: absolute;
    right: 0px;
    top: 0;
    background: #b9d4fd;
    width: 70%;
    height: 100%;
    z-index: 1;
}

.about_content_wrapper.destination_top_content
    .row:nth-child(2n)
    .inner_image:after {
    left: -28px;
    right: auto;
}

.destination_top_content .inner_image {
    position: relative;
    padding: 30px;
    padding-left: 0;
}

.destination_top_content .row:nth-child(2n) .inner_image {
    padding-right: 0;
}

.container-fluid.about_content_wrapper.destination_top_content.sec {
    background: #fff;
    padding-top: 80px;
}

.container-fluid.destination_full_width_content {
    padding-top: 0px;
}

.about_content_wrapper .row:last-child {
    padding-bottom: 0 !important;
}

.destination_full_width_content p strong {
    font-size: 24px;
    font-weight: 400;
    line-height: 40px;
}

.destination_full_width_content h3 {
    margin-top: 2rem;
}

.destination_full_width_content h5 {
    margin: 0;
}

.container-fluid.about_content_wrapper.destination_top_content.new {
    background: #fff;
}

.destination_top_content.new .inner_content h3:first-child {
    margin: 0 0 15px;
}

span.special_tour_booking {
    display: block;
    background: #fff;
    padding: 30px;
    position: relative;
}

.destination_top_content .special_tour_content_box img.img-fluid.full_image {
    margin-bottom: 0px;
}

span.special_tour_booking h3 {
    margin: 0;
}

.special_tour_content_box .common_btn {
    position: absolute;
    right: 30px;
    top: 40px;
}

.container-fluid.special_top_items {
    background: #f0f6ff;
    padding: 80px 0px;
}

.container-fluid.special_top.destination_top_content {
    padding: 80px 0px 50px;
}

.special_top span.special_tour_booking h3:first-child {
    font-weight: 300;
    margin-bottom: 12px;
}

.special_top span.special_tour_booking h3 {
    color: #000;
    font-family: Roboto;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    text-transform: uppercase;
}

.special_top span.special_tour_booking {
    padding: 30px 0px;
}

.special_top .common_btn {
    right: 0px;
}

.st_item h5 {
    color: #000;
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 45px;
    text-transform: uppercase;
    margin-top: 2rem;
}

.st_item h5:first-child {
    margin-top: 0;
}

.st_item.one {
    width: 30%;
}

.st_item.two {
    width: 36%;
}

.st_item.three {
    display: flex;
    justify-content: flex-end;
}

.hero-slider .item:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(112, 151, 173, 0.42) 43.67%,
        rgb(0 0 0 / 25%) 100%
    );
    mix-blend-mode: hard-light;
}

.mfp-wrap {
    background: rgb(0 0 0 / 80%);
}

img.mfp-img {
    padding: 0 !important;
    border: 5px solid #86e244;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    padding: 40px 0;
}

.wpcf7-spinner::before {
    opacity: 1 !important;
}

span.stars {
    color: #e5cb41;
}

span.stars i {
    padding-right: 8px;
}

span.t-date {
    color: #adadad;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    padding-left: 15px;
}

.testimoanil-rating-date {
    margin-bottom: 15px;
    margin-top: 20px;
}

b,
strong {
    font-weight: 700;
}

.about_content_wrapper .tour_new_cs .row:nth-child(2n) .about_image {
    order: 2;
    padding-right: 12px;
    padding-left: 30px;
}

.about_content_wrapper .tour_new_cs .row:nth-child(2n) .about_content {
    order: 1;
    padding-left: 12px;
    padding-right: 30px;
}

.tour_new_cs .inner_image:after {
    left: -28px;
    right: auto;
}

.about_content_wrapper .tour_new_cs .row:nth-child(2n) .inner_image:after {
    left: auto;
    right: -28px;
}

.blog_full_content p a,
.blog_main_wrapper p a {
    text-decoration: underline !important;
}

.contact_form h3 {
    margin-bottom: 70px;
}

.contect_form_wrapper .form_submit_field p {
    max-width: 230px;
    height: 62px;
}

.contect_form_wrapper .form_submit_field input {
    text-transform: uppercase;
}

.contect_form_wrapper .wpcf7 form.invalid .wpcf7-response-output,
.contect_form_wrapper .wpcf7 form.unaccepted .wpcf7-response-output,
.contect_form_wrapper .wpcf7 form.payment-required .wpcf7-response-output {
    text-align: center;
}

.about-carousel {
    margin: 0px -20px;
}

.testimonials-slider .testi-item {
    padding: 30px 15px;
}

.testimonials-slider .quote {
    justify-content: center;
    position: relative;
    margin-top: -43px;
    margin-bottom: 30px;
    top: 0;
}

/* WooCommerce */

.single .woocommerce div.product div.images.woocommerce-product-gallery {
    float: none;
    width: 100%;
}

/* Addon CSS */

.product__list_wrap {
    margin: 1rem 0;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.product__list_wrap ul.tour__list li a {
    color: #000;
    font-size: 20px;
    font-weight: 600;
}

.product__list_wrap ul.tour__list li a:hover {
    color: #86e244;
}

.product__list_wrap ul.tour__list {
    list-style: none;
}

.product__list_wrap ul.tour__list li {
    margin: 13px 0;
}

a.product__list_link.custom-btn2.border-btn {
    max-width: max-content;
    padding: 11px 25px;
    margin-left: 2rem;
    line-height: 30px;
    font-size: 18px;
}
