@import url("https://fonts.googleapis.com/css2?family=Barlow: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&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
:root {
    --thm-font: "Barlow", sans-serif;
    --thm-primary-color: #0e1f31;
    --thm-primary-color-rgb: 181, 151, 113;

    --thm-body-font-color: #787878;
    --thm-body-font-size: 16px;
    --thm-body-line-height: 26px;
    --thm-body-font-weight: 400;

    --thm-heading-font-color: #111111;
    --thm-white: #ffffff;
    --thm-black: #111111;
    --thm-black-bg: #0e1f31;
    --thm-black-bg-2: #141b37;

    --thm-gray-bg: #EAF5FC;
    --thm-border-color: #e5e5e5;
    --thm-border-radius: 4px;
}

body {
    font-family: var(--thm-font);
    color: var(--thm-body-font-color);
    font-size: var(--thm-body-font-size);
    line-height: var(--thm-body-line-height);
    font-weight: var(--thm-body-font-weight);
}

.body-bg-1 {
    background-color: #ffffff;
    overflow-x: hidden;
}

p {
    font-family: var(--thm-font);
    color: #111;
    font-size: var(--thm-body-font-size);
    line-height: var(--thm-body-line-height);
    font-weight: var(--thm-body-font-weight);
    margin: 0;
}

a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1320px;
    }
}

.row {
    --bs-gutter-x: 30px;
}

section {
    position: relative;
    display: block;
    padding-bottom: 5rem;
    z-index: 1;
}

body.locked {
    overflow: hidden;
}

a,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--thm-heading-font-color);
    font-family: var(--thm-font-2);
    font-weight: 700;
    margin: 0;
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

button {
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

ol,
li {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.7s;
    transition-property: all;
}

/* Form validation styles */
input:focus,
textarea:focus,
select:focus {
    border-color: #43c3ea;
    outline: none;
}

/** Thm Social Link **/
.thm-social-link {
    position: relative;
    display: block;
    padding-top: 30px;
}

.thm-social-link ul {
    position: relative;
    display: block;
}

.thm-social-link ul li {
    position: relative;
    float: left;
    margin-right: 10px;
}

.thm-social-link ul li:last-child {
    margin-right: 0;
}

.thm-social-link ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background-color: var(--thm-black);
    border-radius: 5px;
    color: var(--thm-white);
    font-size: 1rem;;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.thm-social-link ul li a:before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background-color: rgba(var(--thm-primary-color-rgb), 1);
    border-radius: 5px;
    content: "";
    opacity: 0;
    transform: scale(0.5);
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.thm-social-link ul li:hover a:before {
    opacity: 1;
    transform: scale(1);
}

.thm-social-link ul li:hover a {
    color: #ffffff;
}

/** xs sidebar **/
.xs-sidebar-group .xs-overlay {
    position: fixed;
    top: 0;
    left: 0%;
    bottom: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    cursor:  pointer;
    z-index: 99999999;

    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: left right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
}

.xs-sidebar-group.isActive .xs-overlay {
    opacity: 0.95;
    visibility: visible;
    right: 100%;
    background: var(--thm-black);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: left center;
}

.xs-sidebar-widget {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    max-width: 460px;
    width: 100%;
    background-color: #ffffff;
    overflow: hidden;
    overflow-y: auto;

    transition-timing-function: ease-out;
    transition: 0.5s;

    visibility: hidden;
    opacity: 1;
    z-index: 999999999;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
    opacity: 1;
    visibility: visible;
    right: 0;
    transition-timing-function: ease-in;
    transition: 0.5s;
}

.sidebar-widget-container {
    position: relative;
    top: 150px;
    opacity: 0;
    visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all 300ms ease 100ms;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
    top: 0px;
    opacity: 1;
    visibility: visible;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all 900ms ease 500ms;
}

.xs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.8;
    z-index: 0;
    background-color: #000000;
}

.sidebar-textwidget {
    padding: 50px 45px;
}

.xs-sidebar-group .widget-heading {
    position: absolute;
    top: 0;
    right: 0;
    padding: 25px;
}

.xs-sidebar-group .widget-heading a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--thm-black);
    border-radius: 50%;
    color: var(--thm-black);
    font-size: 20px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.xs-sidebar-group .widget-heading a:hover {
    color: var(--thm-primary-color);
    border-color: var(--thm-primary-color);
}

.xs-sidebar-group .content-inner .logo {
    position: relative;
    display: block;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 30px;
}

.xs-sidebar-group .content-inner .logo a {
    position: relative;
    display: inline-block;
}

.xs-sidebar-group .content-inner h3 {
    color: var(--thm-black);
    font-size: 34px;
    line-height: 44px;
    font-weight: 700;
    text-transform: capitalize;
    font-family: var(--thm-font);
    margin-bottom: 22px;
}

.xs-sidebar-group .content-inner h3 span {
    color: var(--thm-base);
    font-size: 25px;
    font-weight: 900;
}

.xs-sidebar-group .content-inner .content-box {
    position: relative;
    display: block;
    padding-top: 33px;
    padding-bottom: 47px;
}

.xs-sidebar-group .content-inner .content-box .inner-text {
    position: relative;
    display: block;
}

.xs-sidebar-group .content-inner .content-box p {
    color: var(--thm-black);
}

.xs-sidebar-group .content-inner .sidebar-contact-info {
    position: relative;
    display: block;
}

.xs-sidebar-group .content-inner .sidebar-contact-info h3 {
    color: var(--thm-black);
    font-size: 25px;
    line-height: 30px;
    font-weight: 700;
    margin: 0 0 27px;
}

.sidebar-contact-info ul {
    position: relative;
    display: block;
}

.sidebar-contact-info ul li {
    position: relative;
    display: block;
    margin-bottom: 23px;
}

.sidebar-contact-info ul li:last-child {
    margin-bottom: 0;
}

.sidebar-contact-info ul li .inner {
    position: relative;
    display: block;
    padding-left: 0;
}

/***
.sidebar-contact-info ul li .inner .icon {
    position: absolute;
    top: 0px;
    left: 0;
}
.sidebar-contact-info ul li .inner .icon span {
    position: relative;
    display: block;
    color: var(--thm-base);
    font-size: 27px;
    line-height: 27px;
    font-weight: 500;
}
.sidebar-contact-info ul li .inner .icon span.map-marker {
    color: var(--thm-base);
    position: relative;
    top: 8px;
    font-size: 32px;
}
**/

.sidebar-contact-info ul li .inner .text {
    position: relative;
    display: block;
}

.sidebar-contact-info ul li .inner .text p {
    color: var(--thm-black);
    line-height: 24px;
}

.sidebar-contact-info ul li .inner .text p a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar-contact-info ul li .inner .text p a:hover {
    color: var(--thm-base);
    text-shadow: -0.45px -0.45px 0 var(--thm-base), 0.45px 0.45px var(--thm-base);
}

.xs-sidebar-group .content-inner .side-content-newsletter-box {
    position: relative;
    display: block;
    padding-top: 49px;
}

.xs-sidebar-group .content-inner .side-content-newsletter-box h3 {
    color: var(--thm-black);
    font-size: 25px;
    line-height: 30px;
    font-weight: 700;
    margin: 0 0 24px;
}

.side-content-newsletter-box .form-group input[type="email"] {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    color: #444444;
    font-size: 1rem;;
    font-weight: 400;
    background-color: rgb(248, 248, 248);
    border: 1px solid #e3dfdf;
    padding-left: 30px;
    padding-right: 20px;
    border-radius: 6px;
    font-family: var(--thm-font);
}

.side-content-newsletter-box .form-group button {
    margin-top: 30px;
}

/*== Section Title Css ======*/
.sec-title {
    position: relative;
    display: block;
}

.sec-title h4{
    margin:1rem 0;
    font-weight: 300;
}

.sec-title h2{
    font-weight: bold;
}

.sec-title.withtext {
    padding-bottom: 52px;
}

.sec-title .sub-title {
    position: relative;
    display: inline-block;
}

.sec-title .sub-title h4 {
    color: var(--thm-primary-color);
    font-size: 16px;
    line-height: 26px;
    font-family: var(--thm-font);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0px;
    z-index: 1;
}

.rotate-me{
    opacity: 0.2;
}

.sec-title h2 {
    color: var(--thm-black);
    font-size: 60px;
    line-height: 1.0em;
    margin-bottom:1rem;
    text-transform: capitalize;
    margin-top: 12px;
}

.sec-title.white h2 {
    color: var(--thm-white);
}

.sec-title .text {
    position: relative;
    display: block;
    padding-top: 13px;
}

/*== Btn One Css ======*/
.btn-box {
    position: relative;
    display: block;
}

.btn-one {
    position: relative;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    padding-top: 10px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 10px;
    background-color: transparent;
    color: var(--thm-white);
    font-size: 1rem;;
    line-height: 40px;
    font-family: var(--thm-font);
    font-weight: 400;
    text-transform: capitalize;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    z-index: 2;
}

.btn-one:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    transform: scaleX(1);
    transition-duration: 800ms;
    background-color: var(--thm-primary-color);
    z-index: -1;
}

.btn-one:hover:after {
    transform: scaleX(0);
    transition-duration: 1500ms;
}

.yacht-tour-style1__form form ul li.btn-box svg{
    position: absolute;
    left: 100%;
    margin-left:.5rem
}

.btn-one:before {
    position: absolute;
    top: 0px;
    left: -10px;
    bottom: 0;
    right: 100%;
    content: "";
    background: var(--thm-black);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    border-radius: 0%;
    transition-duration: 800ms;
    z-index: 1;
}

.btn-one:hover:before {
    right: 0px;
    left: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.btn-one .txt {
    position: relative;
    display: inline-flex;
    align-items: center;
    z-index: 1;
}

.btn-one:hover,
.btn-one:focus {
    color: #ffffff;
    -webkit-box-shadow: 2px 2px 20px 0px rgba(var(--thm-black-rgb), 0.1);
    -moz-box-shadow: 2px 2px 20px 0px rgba(var(--thm-black-rgb), 0.1);
    box-shadow: 2px 2px 20px 0px rgba(var(--thm-black-rgb), 0.1);
}

.btn-one i {
    position: relative;
    display: inline-block;
    font-size: 1rem;;
    font-weight: 400;
    margin-right: 9px;
    top: 0px;
    z-index: 1;
}

/*== Btn Two Css ======*/

.btn-three{
    position: relative;
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--thm-black);
    color: var(--thm-black);
    font-weight: 700;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    padding:.5rem 1rem;
}

.btn-three svg{
    margin-right:.5rem;
}

.btn-two {
    position: relative;
    display: inline-flex;
    align-items: center;
    background-color: var(--thm-black);
    color: var(--thm-white);
    border: 1px solid var(--thm-black);
    font-weight: 700;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    padding:.5rem 1rem;
}

.btn-two span {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: var(--thm-black);
    font-size: 1rem;;
    margin-left: 10px;
    transition: border-color 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
}

.btn-two:hover span {
    color: #ffffff;
}

.btn-two span:after {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background: var(--thm-base);
    border-radius: 50%;
    content: "";
    opacity: 0;
    transform: scale(0.5);
    transform-style: preserve-3d;
    z-index: -1;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.btn-two:hover span:after {
    opacity: 1.0;
    transform: scale(1.0);
}

.btn-two:hover {
    color: var(--thm-base);
    letter-spacing: normal;
}

/*== Owl Dot Style One Css ======*/
.owl-carousel.owl-dot-style1 .owl-dots {
    position: relative;
    text-align: center;
    line-height: 0;
    margin-top: 60px !important;
    display: block;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: rgba(var(--thm-primary-color-rgb), 0.3);
    border: 0px solid;
    margin: 0px 6px;
    padding: 0px;
    border-radius: 50%;
    transition: all 100ms linear;
    transition-delay: 0.1s;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot.active {}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    bottom: -2px;
    right: -2px;
    border-radius: 50%;
    background-color: var(--thm-primary-color);
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
    transform-origin: left right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot.active::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: left right;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot span {
    display: none;
}

/*== Owl Nav Style One Css ======*/
.owl-nav-style-one.owl-theme .owl-stage-outer {
    position: relative;
    display: block;
    padding-top: 0px;
    padding-bottom: 0px;
}

.owl-nav-style-one.owl-theme .owl-nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    width: 130px;
    margin: 0;
    z-index: 10;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] {
    position: relative;
    display: inline-block;
    width: 55px;
    height: 45px;
    background-color: var(--thm-gray-bg);
    border: 0px solid var(--thm-border-color);
    border-radius: 0;
    margin: 0 5px;
    padding: 0;
    transition: all 700ms ease 3s;
    z-index: 1;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover {
    border: 0px solid transparent;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background-color: var(--thm-primary-color);
    border-radius: 0px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(0deg) scale(0);
    -ms-transform: perspective(400px) rotateX(0deg) scale(0);
    transform: perspective(400px) rotateX(0deg) scale(0);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    z-index: -1;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover::before {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(0deg) scale(1.0);
    -ms-transform: perspective(400px) rotateX(0deg) scale(1.0);
    transform: perspective(400px) rotateX(0deg) scale(1.0);
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] span {
    position: relative;
    display: block;
    color: var(--thm-black);
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.owl-nav-style-one.owl-theme .owl-nav .owl-prev {
    transform: rotate(0deg);
}

.owl-nav-style-one.owl-theme .owl-nav .owl-next {
    transform: rotate(0deg);
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] span {
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover span {
    color: var(--thm-white);
}

/*== Scrool To Top Css ======*/
.scroll-to-top {
    position: fixed;
    right: 30px;
    bottom: 50px;
    transform: rotate(180deg);
    z-index: 99999999999;
}

.scroll-to-top .visible {
    visibility: visible !important;
    opacity: 1 !important;
}

.scroll-to-top .scroll-top-inner {
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top .scroll-top-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    -o-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.scroll-to-top .scroll-bar {
    width: 50px;
    height: 4px;
    margin-right: 10px;
    position: relative;
    display: none;
}

.scroll-to-top .scroll-bar:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--thm-primary-color);
    opacity: 1;
}

.scroll-to-top .scroll-bar .bar-inner {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background-color: var(--thm-secondary-color);
}

.scroll-to-top .scroll-bar-text {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--thm-white);
    border-radius: 0px;
    border: 0px solid #2f5154;
    color: var(--thm-black);
    font-size: 22px;
    cursor: pointer;
    transform: rotate(90deg);
    transition: all 500ms ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.scroll-to-top .scroll-bar-text:hover {
    color: var(--thm-white);
    transform: scale(1) rotate(90deg);
    background-color: var(--thm-primary-color);
}

.scroll-to-top.bg2 .scroll-bar-text {
    background: #0a3e56;
}

.styled-pagination li:hover a span::before,
.styled-pagination li.active a span::before {
    color: var(--thm-white);
}

.styled-pagination li:hover a,
.styled-pagination li.active a {
    color: var(--thm-white);
    border-color: var(--thm-primary-color);
    background: var(--thm-primary-color);
}

/*== Accordion Box Style 1 Css ======*/
.accordion-box-style1 {
    position: relative;
    display: block;
}

.accordion-box-style1 .accordion {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.accordion-box-style1 .accordion:last-child {
    margin-bottom: 0;
}

.accordion-box-style1 .accordion .accord-btn {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: row;
    cursor: pointer;
    background-color: transparent;
    border: 1px solid var(--thm-border-color);
    padding-top: 0px;
    padding-left: 0px;
    padding-bottom: 0px;
    padding-right: 30px;
    border-radius: 0px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 3;
}

.accordion-box-style1 .accordion .accord-btn.active {
    -webkit-transition: all 0.9s linear;
    -o-transition: all 0.9s linear;
    transition: all 0.9s linear;
}

.accordion-box-style1 .accordion .accord-btn.active {
    border-left: 1px solid var(--thm-primary-color);
}

.accordion-box-style1 .accordion .accord-btn .left {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 58px;
    background-color: transparent;
    border-right: 1px solid var(--thm-border-color);
    z-index: 1;
}

.accordion-box-style1 .accordion .accord-btn.active .left {
    border-color: var(--thm-primary-color);
}

.accordion-box-style1 .accordion .accord-btn.active .left::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0px;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 60px;
    background-color: var(--thm-primary-color);
    z-index: -1;
}

.accordion-box-style1 .accordion .accord-btn .left h4 {
    color: var(--thm-primary-color);
    font-size: 1rem;;
    line-height: 28px;
}

.accordion-box-style1 .accordion .accord-btn.active .left h4 {
    color: var(--thm-white);
}

.accordion-box-style1 .accordion .accord-btn h3 {
    color: var(--thm-body-font-color);
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    padding-left: 20px;
}

.accordion-box-style1 .accordion .accord-btn.active h3 {
    color: var(--thm-black);
}

.accordion-box-style1 .accordion .accord-btn::after {
    font-family: 'icomoon' !important;
    position: absolute;
    content: "\e90e";
    top: 50%;
    right: 25px;
    color: var(--thm-black);
    font-size: 1rem;;
    transform: translateY(-50%);
    transition: all 500ms ease 0s;
}

.accordion-box-style1 .accordion .accord-btn.active:after {
    color: var(--thm-primary-color);
    content: "\e901";
}

.accordion-box-style1 .accordion .accord-content {
    position: relative;
    background-color: transparent;
    box-shadow: none;
    border: 1px solid var(--thm-border-color);
    border-top: none;
    padding: 34px 30px 38px;
    display: none;
    z-index: 2;
}

.accordion-box-style1 .accordion .accord-content.collapsed {
    display: block;
}

.accordion-box-style1 .accordion .accord-content p {
    margin: 0;
}

/*== Accordion Box Css ======*/
.accordion-box {
    position: relative;
    display: block;
}

.accordion-box li+li {
    margin-top: 20px;
}

.accordion-box .block {
    position: relative;
    display: block;
    overflow: hidden;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .3s;
    transition-property: all;
}

.accordion-box .block .acc-content.current {
    display: block;
}

.accordion-box .block .acc-btn {
    position: relative;
    display: block;
    cursor: pointer;
    border: none;
    padding: 21px 30px 21px;
    transition: all 500ms ease;
}

.accordion-box .block .acc-btn.active {
    background: #F9F9F9;
}

.accordion-box .block .acc-btn h3 {
    color: var(--thm-black);
    font-size: 24px;
    line-height: 28px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    transition: all 500ms ease;
}

.accordion-box .block .acc-btn.active h3 {
    color: var(--thm-primary-color);
}

.accordion-box .block .acc-btn::before {
    font-family: 'icomoon' !important;
    position: absolute;
    content: "\e935";
    top: 50%;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: transparent;
    color: var(--thm-black);
    font-size: 14px;
    font-weight: 700;
    transform: translateY(-50%);
    transition: all 500ms ease 0s;
}

.accordion-box .block .acc-btn.active::before {
    content: "\e936";
    color: var(--thm-white);
    background-color: var(--thm-primary-color);
}

.accordion-box .block .acc-content {
    position: relative;
    display: none;
    border: none;
    background-color: #F9F9F9;
    padding: 4px 30px 43px;
    padding-right: 70px;
}

.accordion-box .block .acc-content p {
    margin: 0;
}

/*== Features Accordion ==*/
#featuresAccordion .block .feat-acc-btn {
    position: relative;
    display: block;
    cursor: pointer;
    margin-bottom:.5rem;
    border: none;
    padding: 21px 0;
    transition: all 500ms ease;
}
#featuresAccordion .block .feat-acc-btn h3 {
    color: var(--thm-black);
    font-size: 24px;
    line-height: 28px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    transition: all 500ms ease;
}
#featuresAccordion .block .feat-acc-btn.active h3 {
    color: var(--thm-primary-color);
}
#featuresAccordion .block .feat-acc-btn::before {
    font-family: 'icomoon' !important;
    position: absolute;
    content: "\e935";
    top: 50%;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: transparent;
    color: var(--thm-black);
    font-size: 14px;
    font-weight: 700;
    transform: translateY(-50%);
    transition: all 500ms ease 0s;
}
#featuresAccordion .block .feat-acc-btn.active::before {
    content: "\e936";
    color: var(--thm-white);
    background-color: var(--thm-primary-color);
}
#featuresAccordion .block .feat-acc-content {
    position: relative;
}

/*== Search Popup Css ======*/
.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    padding-left: 20px;
    padding-right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
    z-index: 9999;
}

.search-popup.active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.search-popup__overlay {
    position: absolute;
    top: 0%;
    left: 0%;
    right: 0%;
    height: 300px;
    background-color: var(--thm-white);
    opacity: 1.0;
    cursor: pointer;
}

.search-popup__close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-black);
    font-size: 24px;
}

.search-popup__content {
    width: 100%;
    max-width: 560px;
    z-index: 10;
    border-bottom:1px solid #222;
}

.search-popup__content form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    background-color: #fff;
    border-radius: 0px;
    overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
    position: relative;
    display: block;
    width: 100%;
    height: 70px;
    background-color: #fff;
    color: var(--thm-black);
    font-size: 16px;
    border: none;
    outline: none;
    padding-left: 10px;
    padding-right: 80px;
}

.search-popup__content .thm-btn {
    position: absolute;
    top: 0;
    right: 0px;
    padding: 0;
    width: 60px;
    height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    border-radius: 0;
    border: 0;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    color: #222;
    font-size: 20px;
    font-weight: 400;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.search-popup__content .thm-btn i {
    background-color: transparent;
    margin-left: 0;
}

.search-popup__content .thm-btn:hover {
    color: #ffffff;
    background-color: var(--thm-primary-color);
}

/* Preloader */
.handle-preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    z-index: 9999999;
}

.handle-preloader .animation-preloader {
    position: absolute;
    z-index: 100;
}

.handle-preloader .animation-preloader .spinner {
    height: 150px;
    width: 150px;
    border-radius: 50%;
    margin: 0 auto 45px auto;
    animation: spinner 1s infinite linear;
}

.handle-preloader .animation-preloader .txt-loading {
    text-align: center;
    user-select: none;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading {
    position: relative;
    display: inline-block;
    font-family: var(--thm-font-3);
    font-weight: 700;
    letter-spacing: 15px;
    font-size: 70px;
    line-height: 70px;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.3);
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
    animation: letters-loading 4s infinite;
    content: attr(data-text-preloader);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
    animation-delay: 0.1s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
    animation-delay: 0.2s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
    animation-delay: 0.3s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
    animation-delay: 0.4s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
    animation-delay: 0.5s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
    animation-delay: 0.6s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
    animation-delay: 0.7s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(9):before {
    animation-delay: 0.8s;
}

.handle-preloader .loader-section {
    background-color: #ffffff;
    height: 100%;
    position: fixed;
    top: 0;
    width: calc(50% + 1px);
}

.preloader .loaded .animation-preloader {
    opacity: 0;
    transition: 0.3s ease-out;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
    color: #ffffff;
}

.handle-preloader .animation-preloader .spinner {
    border: 3px solid #ffffff;
    border-top-color: rgba(255, 255, 255, 0.7);
}

/* AnimaciĆĀ³n del preloader */
@keyframes spinner {
    to {
        transform: rotateZ(360deg);
    }
}

@keyframes letters-loading {

    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }

    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

.loader-wrap .layer-one {
    position: absolute;
    left: 0%;
    top: 0;
    width: 33.3333%;
    height: 100%;
    overflow: hidden;
}

.loader-wrap .layer-two {
    position: absolute;
    left: 33.3333%;
    top: 0;
    width: 33.3333%;
    height: 100%;
    overflow: hidden;
}

.loader-wrap .layer-three {
    position: absolute;
    left: 66.6666%;
    top: 0;
    width: 33.3333%;
    height: 100%;
    overflow: hidden;
}

.loader-wrap .layer .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--thm-black);
}

@media screen and (max-width: 767px) {
    .breadcrumb-style1{
        height: 28vh;
        min-height: 160px;
        margin-bottom: 2rem !important;
    }
    .yacht-list-style1__sidebar{
        margin-right:auto!important
    }
    .handle-preloader .animation-preloader .spinner {
        height: 8em;
        width: 8em;
    }
    .single-yacht-style1 .content-box .top-box .title h3{
        font-size: 1rem!important;
    }
}

@media screen and (max-width: 500px) {
    .handle-preloader .animation-preloader .spinner {
        height: 7em;
        width: 7em;
    }

    .handle-preloader .animation-preloader .txt-loading .letters-loading {
        font-size: 40px;
        letter-spacing: 10px;
    }
}

@-webkit-keyframes pulse10 {
    0% {
        -webkit-box-shadow: 0 0 0 0 #ee212b;
        box-shadow: 0 0 0 0 #ee212b;
    }

    40% {
        -webkit-box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
        box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
    }

    70% {
        -webkit-box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
        box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
        box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
    }
}

@keyframes pulse10 {
    0% {
        -webkit-box-shadow: 0 0 0 0 #ee212b;
        box-shadow: 0 0 0 0 #ee212b;
    }

    40% {
        -webkit-box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
        box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
    }

    70% {
        -webkit-box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
        box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
        box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
    }
}

/*================================
    Yacht Tour Style1 Css
================================*/
.yacht-tour-style1 {
    background-color: var(--thm-black-bg);
    padding: 60px 0px 50px;
    z-index: 5;
}

.yacht-tour-style1__pattern {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0.05;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    z-index: -1;
}

.yacht-tour-style1__inner {
    position: relative;
    display: block;
    z-index: 9;
}

.yacht-tour-style1__tab {
    position: relative;
    display: block;
}

.yacht-tour-style1__tab-btn {
    position: relative;
    display: block;
    padding-bottom: 20px;
}

.yacht-tour-style1__tab-btn ul {
    position: relative;
    display: block;
}

.yacht-tour-style1__tab-btn ul li {
    position: relative;
    display: block;
    float: left;
    cursor: pointer;
    overflow: hidden;
    background-color: var(--thm-black-bg);
    border: 1px solid rgb(255, 255, 255, 0.2);
    padding: 9px 20px 9px;
    z-index: 1;
}

.yacht-tour-style1__tab-btn ul li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background-color: rgb(255, 255, 255, 0.2);
    transform: translateY(30px);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: -1;
}

.yacht-tour-style1__tab-btn ul li:hover::before,
.yacht-tour-style1__tab-btn ul li.active-btn-item::before {
    opacity: 1;
    transform: translateY(0px);
}

.yacht-tour-style1__tab-btn ul li+li {
    margin-left: 10px;
}

.yacht-tour-style1__tab-btn ul li h4 {
    color: var(--thm-white);
    font-size: 1rem;;
    line-height: 30px;
    font-family: var(--thm-font);
    font-weight: 400;
}

.yacht-tour-style1__tab .tabs-content-box {
    position: relative;
    display: block;
}

.yacht-tour-style1__tab .tab-content-box-item {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: auto;
    visibility: hidden;
}

.yacht-tour-style1__tab .tab-content-box-item.tab-content-box-item-active {
    position: relative;
    visibility: visible;
    z-index: 5;
}

.yacht-tour-style1__tab .tab-content-box-item .yacht-tour-style1-tab-content-box-item {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.7s ease, transform 0.7s ease, visibility 0.7s ease;
}

.yacht-tour-style1__tab .tab-content-box-item.tab-content-box-item-active .yacht-tour-style1-tab-content-box-item {
    opacity: 1.0;
    transform: translateY(0px);
}

.single-yacht-tour-style1 {
    position: relative;
    display: block;
}

.yacht-tour-style1__form {
    position: relative;
    display: block;
}

.yacht-tour-style1__form form {
    position: relative;
    display: block;
}

.yacht-tour-style1__form form ul {
    position: relative;
    display: flex;
}

.yacht-tour-style1__form form ul li {
    position: relative;
    display: block;
    width: 270px;
}

.yacht-tour-style1__form form ul li.form-group {
    position: relative;
    display: block;
    float: left;
    margin-bottom: 10px;
}

.yacht-tour-style1__form form ul li+li {
    margin-left: 10px;
}

.yacht-tour-style1__form form input[type="text"] {
    position: relative;
    display: block;
    width: 100%;
    height: 64px;
    border-radius: 5px;
    border: 1px solid rgb(255, 255, 255, 0.2);
    background-color: var(--thm-black-bg);
    font-size: 12px;
    color: var(--thm-white);
    font-family: var(--thm-font);
    padding-left: 58px;
    padding-right: 20px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 500ms ease;
}

.yacht-tour-style1__form svg{
    width:24px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 5%;
}

.yacht-tour-style1__form form input[type="text"]:focus {
    border-color: var(--thm-primary-color);
}

.yacht-tour-style1__form form .nice-select {
    position: relative;
    display: none;
    border-radius: 5px;
    background-color: var(--thm-black-bg);
    border: 1px solid rgb(255, 255, 255, 0.2);
    width: 100%;
    height: 64px;
    color: var(--thm-white);
    font-size: 12px;
    line-height: 62px;
    font-family: var(--thm-font);
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding-left: 58px;
    padding-right: 20px;
    transition: all 300ms ease;
}

.yacht-tour-style1__form form .nice-select:focus {
    border-color: var(--thm-primary-color);
}

.yacht-tour-style1__form form .nice-select::after {
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    right: 20px;
    margin-top: 0px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    z-index: 10;
}

.yacht-tour-style1__form form .nice-select .list {
    display: block;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    padding: 0px 0 0px;
    margin-top: 10px;
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transform: scale(1.0) translateY(30px);
    -ms-transform: scale(1.0) translateY(30px);
    transform: scale(1.0) translateY(30px);
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    height: auto;
    width: 100%;
    right: 0 !important;
    left: auto !important;
    z-index: 100;
}

.yacht-tour-style1__form form .nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    height: auto;
}

.yacht-tour-style1__form form .nice-select .option {
    color: var(--thm-black);
    padding-left: 20px;
    padding-right: 20px;
    font-size: 12px;
    line-height: 40px;
    min-height: 40px;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
    margin-left: 0;
}

.yacht-tour-style1__form form .nice-select .option+.option {
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.yacht-tour-style1__form form .nice-select .option:hover,
.yacht-tour-style1__form form .nice-select .option.focus,
.yacht-tour-style1__form form .nice-select .option.selected.focus {
    color: var(--thm-black) !important;
    background-color: var(--thm-primary-color);
}

.yacht-tour-style1__form form ul li.btn-box {
    width: 200px;
}

.yacht-tour-style1__form form ul li.btn-box .btn-one:after{
    background-color: var(--thm-black-bg);
    border: 1px solid rgb(255, 255, 255, 0.2);
}

.yacht-tour-style1__form form ul li.btn-box button.btn-one {
    width: 100%;
    padding:.45rem;
    color:#fff;
    justify-content: center;
}

/*================================
    Destinations Style1 Css
================================*/
.destinations-style1 {
    background-color: var(--thm-gray-bg);
    padding: 120px 0px 120px;
}

.destinations-style1__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: left center;
    z-index: -2;
}

.destinations-style1__shape {
    position: absolute;
    right: 0;
    bottom: 120px;
    z-index: -1;
}

.destinations-style1 .row {
    --bs-gutter-x: 17px;
}

.single-destinations-style1 {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.single-destinations-style1 .img-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.single-destinations-style1 .img-box::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    background: rgb(25, 29, 56);
    background: linear-gradient(0deg, rgba(25, 29, 56, 1) 0%, rgba(25, 29, 56, 0.14049369747899154) 50%);
    z-index: 1;
}

.single-destinations-style1 .img-box img {
    width: 100%;
    transform: scale(1.0);
}

.single-destinations-style1:hover .img-box img {
    transform: scale(1.10) rotate(0deg);
}

.single-destinations-style1 .img-box .overlay-btn {
    position: absolute;
    top: 0;
    left: 0px;
    bottom: 0px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    background: -webkit-linear-gradient(-90deg, rgba(17, 24, 70, 0.90), rgba(181, 151, 113, .90) 100%);
    -webkit-transition: all 0.5s cubic-bezier(0.4, 0.28, 0.31, 1.28) 0.2s;
    transition: all 0.5s cubic-bezier(0.4, 0.28, 0.31, 1.28) 0.2s;
    z-index: 2;
}

.single-destinations-style1:hover .img-box .overlay-btn {
    opacity: 1;
    transform: translateY(0px);
    visibility: visible;
}

.single-destinations-style1 .img-box .overlay-btn a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-black);
    font-size: 30px;
    width: 55px;
    height: 55px;
    border-radius: 0px;
    opacity: 0;
    transform: translateY(50px);
    background-color: var(--thm-white);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
}

.single-destinations-style1:hover .img-box .overlay-btn a {
    opacity: 1;
    transform: translateY(0px);
}

.single-destinations-style1 .img-box .overlay-btn a:hover {
    color: var(--thm-white);
    background-color: var(--thm-primary-color);
}

.destinations-style1__btn {
    position: relative;
    display: block;
    line-height: 0;
    padding-top: 40px;
}

/*================================
       Yacht Style1 Css
================================*/
.yacht-style1 {
    background-color: #f9f9f9;
    padding: 120px 0px 90px;
}

.yacht-style1__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 530px;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    z-index: -1;
}

.yacht-style1__bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background:linear-gradient(0deg, rgb(13 15 18 / 90%) 70%, rgb(0 1 8 / 80%) 100%);
    z-index: 1;
}

.yacht-style1 .sec-title h2 {
    margin-bottom:2rem;
    color: var(--thm-white);
    font-weight: 500;
    width:fit-content;
}

.single-yacht-style1 {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.single-yacht-style1 .img-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.single-yacht-style1:hover .img-box::before {
    opacity: 1;
}

.owl-carousel{
}

.single-yacht-style1 .img-box img {
    width: 100%;
    transform: scale(1.07);
    transition: all 1500ms ease;
    height: 300px;
    object-fit: cover;
}

.single-yacht-style1:hover .img-box img {
    transform: scale(1.1) rotate(0deg);
}

.single-yacht-style1 .content-box {
    position: relative;
    display: block;
}

.main-header-style1 .main-menu .main-menu__list>li+li{
    margin-left:0!important
}

.project-style2-carousel.owl-carousel .owl-stage{
    display: flex;
    align-items: center;
}

.yacht-list-style1__right{
    line-height: 1.25;
}

.breadcrumb-item.active a{
    color:#4b4b4b!important;
}
.yacht-details-style3__yacht-info-single :first-child p{
    font-weight: 600;
    color:#222;
}

.yacht-details-style3__yacht-info-single :first-child p::after{
    content:":";
}

.single-yacht-style1 .content-box .top-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--thm-primary-color);
    padding: 1rem;
}

.bread-name{
    position: absolute;
    color: transparent;
    font-size: 5rem;
    line-height: 1.2;
    top:70%;
    color:#fff;
    font-weight: 300;
    transform: translateY(-70%);
    text-align: center;
    left: 0;
    z-index: 4;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb{
    margin-bottom:0
}

.breadcrumb-style1{
    position: relative;
    z-index: 5;
    height: 40vh;
    background:var(--thm-black-bg);
    background-image:url(../../images/footer-bg.png);
    margin-bottom: 5rem;
}

.about-img{
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-img img, .feature-img img {
    position: absolute;
    width: 60%;
    height: 80%;
    object-fit: cover;
}

.about-img img:last-child, .feature-img img:last-child {
    margin: 20% 0 0 40%;
}

.about-img img {
    border-radius: 10px;
}

.breadcrumb-menu{
    display: flex;
    align-items: center;
    position: absolute;
    bottom: -5%;
    z-index: 4;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
    padding: .5rem 2rem;
    border-radius: 5px;
    left:0;
    right:0;
    width:fit-content;
    box-shadow: 0px 4px 13px 11px #00000026;
}

.mobilfilterField2{
    display:none;
}

.p-relative{
    position:relative;
}

.team-style1__big-title {
    position: absolute;
    left: 32px;
    color: transparent;
    -webkit-text-stroke: 1px rgb(0, 0, 0, 0.20);
    font-size: 5rem;
    line-height: 1.2;
    
    font-weight: 700;
    height: 80%;
    text-align: center;
    writing-mode: sideways-rl;
    transform: rotate(180deg);
}

.shape2{
    width: 120px;
    position: absolute;
    right:0;
}

.single-yacht-style1 .content-box .top-box .title {
    position: relative;
    display: block;
}

.single-yacht-style1 .content-box .top-box .title h3 {
    color: var(--thm-white);
    font-size: 1.15rem;
    line-height: 34px;
    text-transform: capitalize;
}

.single-yacht-style1 .content-box .top-box .title h3 a {
    color: var(--thm-white);
}

.single-yacht-style1 .content-box .top-box .title h3 a:hover {
    color: var(--thm-black);
}

.single-yacht-style1 .content-box .top-box .value {
    position: relative;
    display: block;
}

.single-yacht-style1 .content-box .top-box .value h3 {
    color: var(--thm-white);
    font-size: 24px;
    line-height: 34px;
    text-transform: capitalize;
}

.single-yacht-style1 .content-box .list-item {
    position: relative;
    display: block;
    background-color: var(--thm-white);
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.04);
    padding: 1.5rem 2rem;
    border-radius: 0 0 10px 10px;
}

.single-yacht-style1 .content-box .list-item li {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ebebeb;
    justify-content: space-between;
}

.single-yacht-style1 .content-box .list-item li+li {
    margin-top: 15px;
}

.single-yacht-style1 .content-box .list-item li .left {
    position: relative;
    display: block;
}

.single-yacht-style1 .content-box .list-item li .left h4 {
    font-size: 1rem;;
    line-height: 28px;
}

.single-yacht-style1 .content-box .list-item li .right {
    position: relative;
    display: block;
    text-align: right;
}

.single-yacht-style1 .content-box .list-item li .right p {
    margin: 0;
}

.yacht-style1-carousel.owl-nav-style-one.owl-theme .owl-nav {
    position: absolute;
    top: -80px;
    right: -5px;
}

.yacht-style1-carousel.owl-carousel .owl-stage-outer {
    overflow: hidden;
}

.yacht-style1-carousel.owl-carousel .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

.yacht-style1-carousel.owl-carousel .owl-item.active {
    opacity: 1;
    visibility: visible;
}

/*================================
       Choose Style1 Css
================================*/
.choose-style1 {
    background-color: #f9f9f9;
    padding: 0px 0px 90px;
}

.choose-style1__shape1 {
    position: absolute;
    left: 0;
    bottom: 35px;
}

.choose-style1__shape2 {
    position: absolute;
    right: 0;
    bottom: 35px;
}

.single-choose-style1 {
    position: relative;
    display: block;
    background-color: var(--thm-white);
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.02);
    padding: 30px 30px 33px;
    margin-bottom: 30px;
}

.single-choose-style1 .icon-box {
    position: relative;
    display: block;
    color: var(--thm-primary-color);
    font-size: 50px;
    line-height: 0;
    padding-top: 20px;
    padding-left: 20px;
}

.single-choose-style1 .icon-box .cercle {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0px;
    width: 60px;
    height: 60px;
    opacity: 0.1;
    border-radius: 50%;
    background-color: var(--thm-primary-color);
}

.single-choose-style1 .title {
    position: relative;
    display: block;
    padding-top: 34px;
}

.single-choose-style1 .title h3 {
    font-size: 28px;
    line-height: 38px;
}

.single-choose-style1 .title h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-choose-style1 .title h3 a:hover {
    color: var(--thm-primary-color);
}

.single-choose-style1 .text {
    position: relative;
    display: block;
    padding-top: 7px;
}

.single-choose-style1 .text p {
    margin: 0;
}

/*
================================
    Video Style1 Css
================================
*/
.video-style1 {
    padding: 120px 0px 220px;
    background-color: var(--thm-white);
    z-index: 15;
}

.float-bob-x{
    max-width:none;
}

.video-style1__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    z-index: -1;
}

.video-style1__bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(14, 31, 49, 0.9) 70%, rgba(0, 7, 54, 0.592) 100%);
}

.video-style1__content {
    position: relative;
    display: block;
}

.video-style1__content .video-popup {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-primary-color);
    font-size: 25px;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    background-color: var(--thm-white);
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
    z-index: 5;
}

.video-style1__content .video-popup:hover {
    color: var(--thm-white);
    background-color: var(--thm-primary-color);
}

.video-style1__content .video-popup::after,
.video-style1__content .video-popup::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    z-index: -1;
}

.video-style1__content .video-popup::after {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.video-style1__content .title {
    position: relative;
    display: block;
    padding-top: 42px;
}

.video-style1__content .title h2 {
    color: var(--thm-white);
    font-size: 48px;
    line-height: 1.2em;
    text-transform: uppercase;
}

.video-style1__content .title h2 span {
    color: var(--thm-primary-color);
}

/*
================================
    Activities Style1 Css
================================
*/
.activities-style1 {
    background-color: var(--thm-white);
    padding: 120px 0px 120px;
}

.activities-style1 .shape1 {
    position: absolute;
    top: -300px;
    left: 0;
    opacity: 0.05;
    z-index: -1;
}

.activities-style1__big-title {
    position: absolute;
    top: -95px;
    right: -31px;
    color: transparent;
    -webkit-text-stroke: 1px rgb(0, 0, 0, 0.10);
    font-size: 180px;
    line-height: 1.0em;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
}

.single-activities-style1 {
    position: relative;
    display: block;
}

.single-activities-style1 .img-box {
    position: relative;
    display: block;
}

.single-activities-style1 .img-box .inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.single-activities-style1 .img-box .inner::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    right: 0;
    height: 55px;
    background-color: var(--thm-white);
    clip-path: polygon(25% 0, 100% 100%, 100% 100%, 0 100%, 0 40%);
    z-index: 2;
}

.single-activities-style1 .img-box .inner::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background: rgb(181, 151, 113);
    background: linear-gradient(180deg, rgba(181, 151, 113, 0) 0%, rgba(181, 151, 113, 0.5298494397759104) 31%, rgba(181, 151, 113, 1) 80%);
    -webkit-transition: all 0.5s cubic-bezier(0.4, 0.28, 0.31, 1.28) 0.2s;
    transition: all 0.5s cubic-bezier(0.4, 0.28, 0.31, 1.28) 0.2s;
    z-index: 1;
}

.single-activities-style1:hover .img-box .inner::after {
    opacity: 1;
}

.single-activities-style1 .img-box .inner img {
    width: 100%;
    transform: scale(1.0);
    transition: all 1500ms ease;
}

.single-activities-style1:hover .img-box .inner img {
    transform: scale(1.07) rotate(0deg);
}

.single-activities-style1 .content-box {
    position: relative;
    display: block;
    background-color: var(--thm-white);
    box-shadow: 0px 2px 26px rgba(0, 0, 0, 0.06);
    padding: 0px 40px 39px;
}

.single-activities-style1 .content-box .icon {
    position: absolute;
    top: -55px;
    right: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 50%;
    background-color: var(--thm-primary-color);
    box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.30);
    color: var(--thm-white);
    font-size: 40px;
    line-height: 0;
    z-index: 5;
}

.single-activities-style1 .content-box .icon-1 {
    font-size: 30px;
}

.single-activities-style1 .content-box .title {
    position: relative;
    display: block;
    padding-bottom: 21px;
}

.single-activities-style1 .content-box .title h3 {
    font-size: 28px;
    line-height: 36px;
}

.single-activities-style1 .content-box .title h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-activities-style1 .content-box .title h3 a:hover {
    color: var(--thm-primary-color);
}

.single-activities-style1 .content-box .btn-box {
    position: relative;
    display: block;
    padding-top: 0;
}

.single-activities-style1 .content-box .btn-box a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-primary-color);
    font-size: 1rem;;
    line-height: 28px;
    font-family: var(--thm-font);
    font-weight: 500;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-activities-style1 .content-box .btn-box a:hover {
    color: var(--thm-black);
}

.single-activities-style1 .content-box .btn-box a i {
    font-size: 26px;
    margin-right: 10px;
}

.activities-style1-carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.activities-style1-carousel.owl-carousel .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

.activities-style1-carousel.owl-carousel .owl-item.active {
    opacity: 1;
    visibility: visible;
}

.activities-style1-carousel.owl-carousel.owl-dot-style1 .owl-dots {
    margin-top: 60px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yacht-size-style1 .row {
    --bs-gutter-x: 0px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
}

.single-yacht-size-style1 .img {
    position: relative;
    display: block;
}

.single-yacht-size-style1 .img img {
    width: auto;
}

.single-yacht-size-style1 .title {
    position: relative;
    display: block;
    text-align: center;
    padding-top: 20px;
}

.single-yacht-size-style1 .title h3 {
    font-size: 28px;
    line-height: 38px;
}

.single-yacht-size-style1 .title h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-yacht-size-style1 .title h3 a:hover {
    color: var(--thm-primary-color);
    letter-spacing: 0.1em;
}

.process-style1 .sec-title h2 {
    color: var(--thm-white);
}

.process-style1 .row {
    --bs-gutter-x: 0px;
}

.single-process-style1 .count-box {
    position: absolute;
    top: -25px;
    right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: var(--thm-primary-color);
    box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.single-process-style1 .count-box::before {
    content: "";
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px dashed var(--thm-primary-color);
    z-index: -1;
}

.single-process-style1 .count-box span {
    color: var(--thm-white);
    font-size: 22px;
    line-height: 22px;
    font-family: var(--thm-font);
    font-weight: 400;
}

.single-process-style1 .count-box p {
    color: var(--thm-white);
    line-height: 22px;
}

.single-process-style1 .content-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 290px;
    height: 290px;
    border-radius: 50%;
    background-color: var(--thm-white);
}

.single-process-style1 .content-box .text {
    position: relative;
    display: block;
}

.single-process-style1 .content-box .text h3 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 17px;
}

.single-process-style1 .content-box .text p {
    font-size: 1rem;;
}

.project-style1 .container {
    max-width: 100%;
    padding: 0px;
}

.single-project-style1 .img-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.single-project-style1 .img-box::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 30px;
    bottom: 30px;
    right: 30px;
    background-color: var(--thm-primary-color);
    opacity: 0;
    transform: perspective(400px) scaleX(0);
    transform-origin: center;
    transition: all 500ms ease;
    z-index: 1;
}

.single-project-style1:hover .img-box::before {
    opacity: .8;
    transform: perspective(400px) scaleX(1.0);
}

.single-project-style1 .img-box img {
    width: 100%;
    transform: scale(1.0);
}

.single-project-style1:hover .img-box img {
    transform: scale(1.05) rotate(0deg);
}

.single-project-style1 .img-box .overlay-icon {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: perspective(400px) scale(0) translateY(-40px);
    transition: all 400ms ease;
    z-index: 5;
}

.single-project-style1:hover .img-box .overlay-icon {
    opacity: 1;
    transform: perspective(400px) scale(1.0) translateY(0px);
    transition-delay: 400ms;
}

.single-project-style1 .img-box .overlay-icon a {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
    font-size: 40px;
}

.single-fleet-style1 .img-box {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-fleet-style1 .img-box img {
    width: auto !important;
    -webkit-transition: all 0.90s ease;
    -o-transition: all 0.90s ease;
    transition: all 0.90s ease;
}

.single-fleet-style1:hover .img-box img {
    transform: scale(1.02) translateX(10px);
}

.fleet-style1-carousel.owl-nav-style-one.owl-theme .owl-nav {
    display: none;
}

.fleet-style1-carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.fleet-style1-carousel.owl-carousel .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

.fleet-style1-carousel.owl-carousel .owl-item.active {
    opacity: 1;
    visibility: visible;
}

.single-fleet-route-box .img-box {
    position: relative;
    display: block;
    width: 96px;
    height: 96px;
    background-color: var(--thm-white);
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
    padding: 6px;
    border-radius: 50%;
}

.single-fleet-route-box .overlay {
    position: absolute;
    left: 0;
    top: 90px;
    right: 0;
    text-align: center;
    background-color: var(--thm-black-bg);
    border-radius: 4px;
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}

.single-fleet-route-box:hover .overlay {
    opacity: 1;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    visibility: visible;
}

.single-fleet-route-box .overlay p {
    color: var(--thm-white);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.single-fleet-route-box .overlay p a {
    color: var(--thm-white);
}

.single-fleet-route-box .shape1 {
    position: relative;
    display: block;
}

.single-fleet-route-box .shape1 img {
    width: auto;
}

.single-fleet-route-box .shape1.one {
    position: absolute;
    top: -56px;
    right: -255px;
    opacity: .2;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.single-fleet-route-box:hover .shape1.one {
    opacity: 0;
}

.single-fleet-route-box .shape1.two {
    position: absolute;
    top: 30px;
    left: -197px;
    opacity: .2;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: -1;
}

.single-fleet-route-box:hover .shape1.two {
    opacity: 0;
}

.single-fleet-route-box .shape1.three {
    position: absolute;
    top: 10px;
    right: -255px;
    opacity: .2;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: -1;
}

.single-fleet-route-box:hover .shape1.three {
    opacity: 0;
}

.single-fleet-route-box .shape1.four {
    position: absolute;
    top: -70px;
    left: -40px;
    opacity: .2;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: -1;
}

.single-fleet-route-box:hover .shape1.four {
    opacity: 0;
}

.single-pricing-style1:hover::before,
.single-pricing-style1.active::before {
    opacity: 1;
    transform: perspective(400px) scaleX(1.0);
    transition: border-color 0.5s ease;
    transition: all 0.5s ease;
}

.single-pricing-style1__top .title {
    position: relative;
    display: block;
}

.single-pricing-style1__top .title h3 {
    color: var(--thm-white);
    font-size: 24px;
    line-height: 34px;
    text-transform: uppercase;
}

.single-pricing-style1__btn .btn-one {
    display: block;
    width: 100%;
    text-align: center;
    color: var(--thm-primary-color);
}

.single-pricing-style1__btn .btn-one:hover {
    color: var(--thm-white);
}

.single-pricing-style1__btn .btn-one::after {
    background-color: transparent;
    border: 1px solid var(--thm-primary-color);
}

.single-pricing-style1__btn .btn-one::before {
    background-color: var(--thm-primary-color);
}

@keyframes slide {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 1920px 0;
    }
}

@-webkit-keyframes slide {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 1920px 0;
    }
}

.cta-style1__btn .btn-one {
    line-height: 30px;
}

.cta-style1__btn .btn-one i {
    margin-left: 10px;
    margin-right: 0px;
}

.sidebar-search-box-three form.search-form {
    position: relative;
    display: block;
    width: 100%;
}

.sidebar-search-box-three .search-form input[type="text"] {
    position: relative;
    display: block;
    width: 100%;
    height: 70px;
    border-radius: 0;
    background-color: #f4f4f4;
    border: 1px solid #f4f4f4;
    color: #6a6a6a;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--thm-font);
    padding-left: 30px;
    padding-right: 80px;
    transition: all 500ms ease 0s;
}

.sidebar-search-box-three .search-form input[type="text"]:focus {
    border-color: var(--thm-primary-color);
}

.sidebar-search-box-three .search-form input::-webkit-input-placeholder {
    color: #6a6a6a;
}

.sidebar-search-box-three .search-form input:-moz-placeholder {
    color: #6a6a6a;
}

.sidebar-search-box-three .search-form input::-moz-placeholder {
    color: #6a6a6a;
}

.sidebar-search-box-three .search-form input:-ms-input-placeholder {
    color: #6a6a6a;
}

.sidebar-search-box-three .search-form button {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 70px;
    height: 70px;
    background-color: #f4f4f4;
    border-radius: 0;
    color: #6a6a6a;
    font-size: 1rem;;
    transition: all 500ms ease 0s;
}

.sidebar-search-box-three .search-form button i {
    position: relative;
    top: 0px;
}

.sidebar-search-box-three .search-form input[type="text"]:focus+button,
.sidebar-search-box-three .search-form button:hover {
    color: var(--thm-white);
    background-color: var(--thm-primary-color);
}

.yacht-list-style1-sidebar__form form ul li.form-group {
    position: relative;
    display: block;
}

.yacht-list-style1-sidebar__form form .nice-select {
    position: relative;
    display: block;
    border-radius: 0;
    border: 1px solid #f4f4f4;
    background-color: #f4f4f4;
    width: 100%;
    height: 60px;
    color: #6a6a6a;
    font-size: 16px;
    line-height: 60px;
    font-family: var(--thm-font);
    font-weight: 400;
    padding-left: 25px;
    padding-right: 25px;
    transition: all 300ms ease;
}

.yacht-list-style1-sidebar__form form .nice-select:focus {
    border-color: var(--thm-primary-color);
}

.yacht-list-style1-sidebar__form form .nice-select::after {
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #6a6a6a;
    border-right: 2px solid #6a6a6a;
    right: 20px;
    margin-top: 0px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    z-index: 10;
}

.yacht-list-style1-sidebar__form form .nice-select .list {
    display: block;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    padding: 0px 0 0px;
    margin-top: 10px;
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transform: scale(1.0) translateY(30px);
    -ms-transform: scale(1.0) translateY(30px);
    transform: scale(1.0) translateY(30px);
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    height: auto;
    width: 100%;
    right: 0 !important;
    left: auto !important;
    z-index: 100;
}

.yacht-list-style1-sidebar__form form .nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    height: auto;
}

.yacht-list-style1-sidebar__form form .nice-select .option {
    color: var(--thm-black);
    padding-left: 20px;
    padding-right: 20px;
    font-size: 12px;
    line-height: 40px;
    min-height: 40px;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
    margin-left: 0;
}

.yacht-list-style1-sidebar__form form .nice-select .option+.option {
    border-top: 1px solid rgba(0, 0, 0, 0.10);
    margin-top: 0;
}

.yacht-list-style1-sidebar__form form .nice-select .option:hover,
.yacht-list-style1-sidebar__form form .nice-select .option.focus,
.yacht-list-style1-sidebar__form form .nice-select .option.selected.focus {
    color: var(--thm-black) !important;
    background-color: var(--thm-primary-color);
}

.yacht-list-style1-sidebar__form form ul li.btn-box {
    position: relative;
    display: block;
    line-height: 0;
}

.yacht-list-style1-sidebar__form form ul li.btn-box button.btn-one {
    width: 100%;
    justify-content: center;
}

.sidebar-price-range .price-ranger {
    position: relative;
    display: block;
}

.sidebar-price-range .price-ranger .ui-widget-content {
    position: relative;
    display: block;
    background: #ddd0c0;
    border: none;
    height: 4px;
    border-radius: 0px;
}

.sidebar-price-range .price-ranger .ui-widget-header {
    border: 0px solid #e0dfdf;
    background: var(--thm-primary-color);
    margin-left: 0px;
    border-radius: 0 !important;
}

.sidebar-price-range .price-ranger .ui-slider-handle {
    position: absolute;
    top: -8px;
    width: 20px !important;
    height: 20px;
    border: 4px solid var(--thm-white);
    box-shadow: 3px 4px 18px rgba(0, 0, 0, 0.1);
    background: var(--thm-primary-color);
    border-radius: 50%;
    margin-left: 0px;
    outline: medium none;
    cursor: pointer;
    z-index: 2;
}

.sidebar-price-range .price-ranger span+span.ui-slider-handle.ui-state-default.ui-corner-all {
    margin-left: 0px;
}

.sidebar-price-range .price-ranger .ranger-min-max-block {
    position: relative;
    display: block;
    overflow: hidden;
    margin-top: 11px;
}

.sidebar-price-range .price-ranger .ranger-min-max-block .left {
    position: relative;
    display: block;
}

.sidebar-price-range .price-ranger .ranger-min-max-block span {
    position: relative;
    float: left;
    color: var(--thm-black);
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    font-family: var(--thm-font);
}

.sidebar-price-range .price-ranger .ranger-min-max-block input[type="text"] {
    position: relative;
    float: left;
    color: var(--thm-black);
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    font-family: var(--thm-font);
    text-align: center;
    border: none;
    width: 40px;
    padding: 0;
    background-color: transparent;
}


.sidebar-price-range .price-ranger .ranger-min-max-block span.hipen {
    color: var(--thm-body-font-color);
}

.sidebar-price-range .price-ranger .ranger-min-max-block input {
    display: inline-block;
}

.sidebar-price-range .price-ranger .ranger-min-max-block .right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 18px 0px 0px;
}

.sidebar-price-range .price-ranger .ranger-min-max-block input[type="submit"] {
    position: relative;
    display: inline-block;
    padding: 0px 0px 0px;
    text-align: center;
    border: none;
    border-bottom: 1px solid var(--thm-black);
    border-radius: 0px;
    background-color: transparent;
    color: var(--thm-black);
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    cursor: pointer;
    font-family: var(--thm-font);
}

.sidebar-price-range .price-ranger .ranger-min-max-block input[type="submit"]:hover {}

.sidebar-price-range .price-ranger .ranger-min-max-block .right .btn-box {
    position: relative;
    display: block;
}

.sidebar-price-range .price-ranger .ranger-min-max-block .right .btn-box .btn-one span {
    color: var(--thm-white);
}

.yacht-list-style1__content .top-box {
    position: relative;
    display: block;
    border-bottom: 1px solid var(--thm-border-color);
    padding-bottom: 1rem;
}

.yacht-list-style1__content .top-box .title-box {
    position: relative;
    text-align: center;
    justify-content: space-between;
}

.yacht-list-style1__content .top-box .title-box .text {
    position: relative;
    display: block;
}

.yacht-list-style1__content .top-box .title-box .text h3 {
    font-size: 24px;
    line-height: 34px;
    font-family: var(--thm-font);
    font-weight: 500;
}

.yacht-list-style1__content .top-box .title-box .text h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    font-weight: 600;
    transition-delay: 0.1s;
}

.yacht-list-style1__content .top-box .title-box .text h3 a:hover {
    color: var(--thm-primary-color);
}

.yacht-list-style1__content .top-box .title-box .rating {
    position: relative;
    display: inline-flex;
    align-items: center;
    border-radius: 12px;
    background-color: transparent;
    border: 1px solid var(--thm-border-color);
    padding: 0px 10px 0px;
}

.yacht-list-style1__content .top-box .title-box .rating .icon {
    position: relative;
    display: block;
    color: #FFBA07;
    font-size: 16px;
    line-height: 0;
    margin-right: 5px;
}

.alt-marka{
    font-size: .875rem;
    color:#222;
    text-align: center;
}

.yacht-list-style1__content .top-box .title-box .rating p {
    color: var(--thm-black);
    font-size: 14px;
}

.yacht-list-style1__content .top-box .value-box {
    position: relative;
    display: block;
    margin-top:1rem;
    text-align: center;
}

.yacht-list-style1__content .top-box .value-box h3 {
    color: var(--thm-primary-color);
    font-size: 1rem;
    line-height: 30px;
    font-family: var(--thm-font);
    font-weight: bold;
}

.yacht-list-style1__content .top-box .value-box h3 span {
    color: var(--thm-black);
    font-size: 14px;
}


.yacht-list-style1__content .bottom-box .list-item ul {
    position: relative;
    align-items: center;
}

.yacht-list-style1__content .bottom-box .list-item ul+ul {
    margin-top: 16px;
}

.yacht-list-style1__content .bottom-box .list-item ul li {
    position: relative;
    display: block;
    margin-bottom:.5rem
}

.yacht-list-style1__content .bottom-box .list-item ul li p {
    margin: 0;
}

.yacht-list-style1__content .bottom-box .list-item ul li p span {
    color: var(--thm-black);
    font-size: 1rem;;
    font-weight: 600;
}

.yacht-list-style1__content .bottom-box .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    margin: auto;
    display: flex;
    justify-content: center;
}

.yacht-list-style1__content .bottom-box .btn-box .btn-one {
    color: var(--thm-primary-color);
    line-height: 30px;
    padding-left: 35px;
    padding-right: 35px;
}

.yacht-list-style1__content .bottom-box .btn-box .btn-one:hover {
    color: var(--thm-white);
}

.yacht-list-style1__content .bottom-box .btn-box .btn-one::after {
    background-color: transparent;
    border: 1px solid var(--thm-primary-color);
}

.yacht-list-style1__content .bottom-box .btn-box .btn-one::before {
    background-color: var(--thm-black);
}

.yacht-details-style1__left-top .location-rating .left {
    position: relative;
    display: flex;
    align-items: center;
}

.yacht-details-style1__left-top .location-rating .left .icon {
    position: relative;
    display: block;
    color: var(--thm-primary-color);
    font-size: 1rem;;
    line-height: 0;
    margin-right: 9px;
}

.yacht-details-style1__left-top .location-rating .left h6 {
    color: var(--thm-primary-color);
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.yacht-details-style1__left-top .location-rating .right {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 30px;
}

.yacht-details-style1__left-top .location-rating .right .icon {
    color: #FFC107;
    font-size: 15px;
    line-height: 0;
    margin-right: 7px;
}

.yacht-details-style1__left-top .location-rating .right p {
    color: var(--thm-black);
    font-size: 14px;
    line-height: 20px;
}

.yacht-details-style1__left .text-box2 ul li .icon {
    position: relative;
    display: block;
    color: var(--thm-primary-color);
    font-size: 16px;
    line-height: 0;
    margin-right: 8px;
}

.yacht-details-style1__left .text-box3 ul li .icon {
    position: relative;
    display: block;
    color: var(--thm-primary-color);
    font-size: 16px;
    line-height: 0;
    margin-right: 8px;
}

.yacht-details-style1__left-form form .rating-box {
    position: relative;
    display: block;
    padding-bottom: 23px;
}

.yacht-details-style1__left-form form .rating-box ul {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.yacht-details-style1__left-form form .rating-box ul li {
    position: relative;
    display: flex;
    align-items: center;
}

.yacht-details-style1__left-form form .rating-box ul li .text {
    position: relative;
    display: block;
}

.yacht-details-style1__left-form form .rating-box ul li .text p {
    color: var(--thm-black);
    font-weight: 500;
}

.yacht-details-style1__left-form form .rating-box ul li .icon {
    position: relative;
    display: flex;
    align-items: center;
    line-height: 0;
    margin-left: 45px;
}

.yacht-details-style1__left-form form .rating-box ul li .icon i {
    position: relative;
    display: block;
    color: #CACACA;
    font-size: 15px;
    line-height: 15px;
    margin-left: 0;
}

.yacht-details-style1__left-form form .rating-box ul li .icon i.icon {
    color: #FFC844;
}

.yacht-details-style1__left-form form .rating-box ul li .icon i+i {
    margin-left: 8px;
}

.yacht-details-style1__left-form form .form-group {
    position: relative;
    display: block;
    padding-bottom: 30px;
}

.yacht-details-style1__left-form form .input-box {
    position: relative;
    display: block;
}

.yacht-details-style1__right .row {
    --bs-gutter-x: 6px;
}

.yacht-details-style1__right-img li .img-box {
    position: relative;
    display: block;
}

.yacht-details-style1__right-img li .img-box img {
    width: 100%;
}

.book-this-yacht-style1__form form .form-group {
    position: relative;
    display: block;
}

.book-this-yacht-style1__form form .form-group.icon1::before {
    content: "\e917";
    font-family: 'icomoon';
    position: absolute;
    top: 50%;
    left: 20px;
    color: var(--thm-primary-color);
    font-size: 20px;
    line-height: 20px;
    transform: translateY(-50%) rotate(0deg);
    z-index: 1;
}

.book-this-yacht-style1__top li .text {
    position: relative;
    display: block;
}

.book-this-yacht-style1__top li .text p {
    margin: 0;
}

.book-this-yacht-style1__middle .title {
    position: relative;
    display: block;
}

.book-this-yacht-style1__middle .title p {
    color: var(--thm-black);
    font-weight: 500;
}

.book-this-yacht-style1__middle ul li .text {
    position: relative;
    display: block;
}

.book-this-yacht-style1__middle ul li .text p {
    margin: 0;
}

.book-this-yacht-style1__btn .btn-one {
    width: 100%;
    justify-content: center;
}

.tour-details-style1__top .row {
    --bs-gutter-x: 10px;
}

.tour-details-style1__video .inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.tour-details-style1__video .inner img {
    width: 100%;
}

.tour-details-style1__video .overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-details-style1__video .video-popup {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-white);
    font-size: 25px;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    background-color: var(--thm-primary-color);
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
    z-index: 5;
}

.tour-details-style1__video .video-popup:hover {
    color: var(--thm-white);
    background-color: var(--thm-black);
}

.tour-details-style1__video .video-popup::after,
.tour-details-style1__video .video-popup::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    z-index: -1;
}

.tour-details-style1__video .video-popup::after {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.tour-details-info-box ul li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-primary-color);
    font-size: 22px;
    width: 50px;
    height: 50px;
    background-color: #F9F9F9;
}

.tour-details-info-box ul li .text {
    position: relative;
    display: block;
    padding-left: 10px;
}

.tour-details-info-box ul li .text p {
    font-size: 14px;
    line-height: 14px;
}

.tour-details-info-box ul li .text h3 {
    color: var(--thm-black);
    font-size: 16px;
    line-height: 24px;
    font-family: var(--thm-font);
    font-weight: 500;
    margin-top: 5px;
}

.tour-details-text-box2 .inner-content .row {
    --bs-gutter-x: 0px;
}

.tour-details-text-box2 .inner-content .left-text ul li .icon {
    position: relative;
    display: block;
    color: var(--thm-primary-color);
    font-size: 16px;
    line-height: 0;
    margin-right: 8px;
}

.tour-details-text-box2 .inner-content .left-text.color ul li .icon {
    color: #FF1D26;
    font-size: 10px;
    margin-top: 1px;
}

.tour-details-text-box3 .text {
    position: relative;
    display: block;
}

.tour-details-text-box3 .text p {
    position: relative;
    flex: 1;
    margin-top: 0;
}

.tour-details-text-box3 ul li .icon {
    position: relative;
    display: block;
    color: var(--thm-primary-color);
    font-size: 16px;
    line-height: 0;
    margin-right: 8px;
}

.total-review-box .title {
    position: relative;
    display: block;
    padding-bottom: 30px;
}

.total-review-box .title h3 {
    font-size: 28px;
    line-height: 30px;
}

.total-review-box__inner .left-box .icon {
    position: relative;
    display: block;
    color: #FFC844;
    font-size: 20px;
    line-height: 0;
}

.total-review-box__inner .left-box .text {
    position: relative;
    display: block;
    padding-top: 9px;
}

.total-review-box__inner .left-box .text p {
    color: var(--thm-black);
    line-height: 30px;
}

.total-review-box__inner .left-box .text span {
    font-size: 20px;
}

.total-review-box__inner .right-box .progress-levels .left {
    position: relative;
    display: block;
    max-width: 110px;
    width: 100%;
}

.total-review-box__inner .right-box .progress-levels .left p {
    margin: 0;
}

.total-review-box__inner .right-box .progress-box .inner.count-box.counted {
    position: relative;
    display: block;
    max-width: 300px;
    width: 100%;
}

.total-review-box__inner .right-box .progress-levels .right {
    position: relative;
    display: block;
    max-width: 80px;
    width: 100%;
    text-align: right;
}

.total-review-box__inner .right-box .progress-levels .right p {
    margin: 0;
}

.single-add-review__content-top .text {
    position: relative;
    display: block;
    padding-top: 14px;
}

.single-add-review__content-top .text p {
    margin: 0;
}

.single-add-review__content-bottom ul li .text {
    position: relative;
    display: block;
}

.single-add-review__content-bottom ul li .text p {
    color: var(--thm-black);
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
}

.tour-plan-style1__top .yacht-tour-style1__tab-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 40px;
}

.tour-plan-style1__top .yacht-tour-style1__tab-btn ul li {
    background-color: transparent;
    border: 1px solid var(--thm-primary-color);
    padding: 9px 35px 9px;
}

.tour-plan-style1__top .yacht-tour-style1__tab-btn ul li:hover::before,
.tour-plan-style1__top .yacht-tour-style1__tab-btn ul li.active-btn-item::before {
    background: var(--thm-primary-color);
}

.tour-plan-style1__top .yacht-tour-style1__tab-btn ul li h4 {
    color: var(--thm-primary-color);
    text-transform: capitalize;
}

.tour-plan-style1__top .yacht-tour-style1__tab-btn ul li:hover h4,
.tour-plan-style1__top .yacht-tour-style1__tab-btn ul li.active-btn-item h4 {
    color: var(--thm-white) !important;
}

.tour-plan__sidebar-single .title {
    position: relative;
    display: block;
    margin-top: -8px;
    padding-bottom: 20px;
}

.tour-plan__sidebar-single .title h3 {
    font-size: 28px;
    line-height: 38px;
}

.recommended-sidebar-content .img-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.recommended-sidebar-content .img-box::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(181, 151, 113);
    background: linear-gradient(180deg, rgba(181, 151, 113, 0) 0%,
            rgba(181, 151, 113, 0.5298494397759104) 51%, rgba(181, 151, 113, 1) 80%);
    opacity: 0;
    z-index: 1;
    -webkit-transition: all 0.5s cubic-bezier(0.4, 0.28, 0.31, 1.28) 0.2s;
    transition: all 0.5s cubic-bezier(0.4, 0.28, 0.31, 1.28) 0.2s;
}

.recommended-sidebar-content:hover .img-box::before {
    opacity: 1;
}

.recommended-sidebar-content .img-box img {
    width: 100%;
    transform: scale(1.0);
    transition: all 1500ms ease;
}

.recommended-sidebar-content:hover .img-box img {
    transform: scale(1.07) rotate(0deg);
}

.recommended-sidebar-content .content-box {
    position: relative;
    display: block;
    background-color: var(--thm-white);
    box-shadow: 0px 14px 24px rgba(0, 0, 0, 0.07);
    padding: 22px 30px 20px;
}

.recommended-sidebar-content .content-box .title1 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.recommended-sidebar-content .content-box .title1 h3 {
    font-size: 20px;
    line-height: 30px;
}

.recommended-sidebar-content .content-box .title1 h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.recommended-sidebar-content .content-box .title1 h3 a:hover {
    color: var(--thm-primary-color);
}

.recommended-sidebar-content .content-box .time {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 1px;
}

.recommended-sidebar-content .content-box .time .icon {
    position: relative;
    display: block;
    color: var(--thm-primary-color);
    font-size: 16px;
    line-height: 0;
    margin-right: 10px;
}

.recommended-sidebar-content .content-box .time p {
    margin: 0;
}

.top-attraction-sidebar-content .img-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.top-attraction-sidebar-content .img-box::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(181, 151, 113);
    background: linear-gradient(180deg, rgba(181, 151, 113, 0) 0%,
            rgba(181, 151, 113, 0.5298494397759104) 51%, rgba(181, 151, 113, 1) 80%);
    opacity: 0;
    z-index: 1;
    -webkit-transition: all 0.5s cubic-bezier(0.4, 0.28, 0.31, 1.28) 0.2s;
    transition: all 0.5s cubic-bezier(0.4, 0.28, 0.31, 1.28) 0.2s;
}

.top-attraction-sidebar-content:hover .img-box::before {
    opacity: 1;
}

.top-attraction-sidebar-content .img-box img {
    width: 100%;
    transform: scale(1.0);
    transition: all 1500ms ease;
}

.top-attraction-sidebar-content:hover .img-box img {
    transform: scale(1.07) rotate(0deg);
}

.top-attraction-sidebar-content .content-box {
    position: relative;
    display: block;
    background-color: var(--thm-white);
    box-shadow: 0px 14px 24px rgba(0, 0, 0, 0.07);
    padding: 22px 30px 20px;
}

.top-attraction-sidebar-content .content-box .title1 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-attraction-sidebar-content .content-box .title1 h3 {
    font-size: 20px;
    line-height: 30px;
}

.top-attraction-sidebar-content .content-box .title1 h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.top-attraction-sidebar-content .content-box .title1 h3 a:hover {
    color: var(--thm-primary-color);
}

.top-attraction-sidebar-content .content-box .time {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 1px;
}

.top-attraction-sidebar-content .content-box .time .icon {
    position: relative;
    display: block;
    color: var(--thm-primary-color);
    font-size: 16px;
    line-height: 0;
    margin-right: 10px;
}

.top-attraction-sidebar-content .content-box .time p {
    margin: 0;
}

.tour-plan__sidebar-offer .title {
    position: relative;
    display: block;
    padding-bottom: 25px;
}

.tour-plan__sidebar-offer .title h3 {
    font-size: 28px;
    line-height: 38px;
}

.tour-plan__sidebar-offer-single .img {
    position: relative;
    display: block;
    margin-right: 21px;
    z-index: 1;
}

.tour-plan__sidebar-offer-single .img .inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.tour-plan__sidebar-offer-single .img .inner::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(181, 151, 113);
    background: linear-gradient(180deg, rgba(181, 151, 113, 0) 0%,
            rgba(181, 151, 113, 0.5298494397759104) 51%, rgba(181, 151, 113, 1) 80%);
    opacity: 0;
    z-index: 1;
    -webkit-transition: all 0.5s cubic-bezier(0.4, 0.28, 0.31, 1.28) 0.2s;
    transition: all 0.5s cubic-bezier(0.4, 0.28, 0.31, 1.28) 0.2s;
}

.tour-plan__sidebar-offer-single:hover .img .inner::before {
    opacity: 1;
}

.tour-plan__sidebar-offer-single .img .inner img {
    width: 100%;
    transform: scale(1.0);
    transition: all 1500ms ease;
}

.tour-plan__sidebar-offer-single:hover .img .inner img {
    transform: scale(1.07) rotate(0deg);
}

.tour-plan__sidebar-offer-single .img .offer {
    position: absolute;
    top: 0;
    right: -12px;
    background-color: var(--thm-primary-color);
    padding: 0px 11px 0px;
    z-index: 3;
}

.tour-plan__sidebar-offer-single .img .offer::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -12px;
    width: 12px;
    height: 12px;
    background-color: #7e6547;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
}

.tour-plan__sidebar-offer-single .img .offer p {
    color: var(--thm-white);
    font-size: 14px;
    line-height: 26px;
}

.tour-plan__sidebar-offer-single .content .time .icon {
    position: relative;
    display: block;
    color: var(--thm-primary-color);
    font-size: 16px;
    line-height: 0;
    margin-right: 10px;
}

.tour-plan-style1__tab {
    position: relative;
    display: block;
}

.tour-plan-style1__tab-btn ul li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    border: 1px solid #f5f5f5;
    background-color: #f5f5f5;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.tour-plan-style1__tab-btn ul li:hover .icon,
.tour-plan-style1__tab-btn ul li.active-btn-item .icon {
    background-color: var(--thm-white);
    border-color: var(--thm-primary-color);
}

.tour-plan-style1__tab-btn ul li .icon img {
    width: auto;
}

.tour-plan-style1__tab .tabs-content-box {
    position: relative;
    display: block;
}

.tour-plan-style1__tab .tab-content-box-item {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: auto;
    visibility: hidden;
}

.tour-plan-style1__tab .tab-content-box-item.tab-content-box-item-active {
    position: relative;
    visibility: visible;
    z-index: 5;
}

.tour-plan-style1__tab .tab-content-box-item .yacht-tour-style1-tab-content-box-item {
    opacity: 0;
}

.tour-plan-style1__tab .tab-content-box-item.tab-content-box-item-active .tour-plan-style1-tab-content-box-item {
    opacity: 1.0;
}

.single-tour-plan-style1 .img-box {
    position: relative;
    display: block;
}

.single-tour-plan-style1 .img-box .inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.single-tour-plan-style1 .img-box .inner::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(181, 151, 113);
    background: linear-gradient(180deg, rgba(181, 151, 113, 0) 0%,
            rgba(181, 151, 113, 0.5298494397759104) 51%, rgba(181, 151, 113, 1) 80%);
    opacity: 0;
    z-index: 1;
    -webkit-transition: all 0.5s cubic-bezier(0.4, 0.28, 0.31, 1.28) 0.2s;
    transition: all 0.5s cubic-bezier(0.4, 0.28, 0.31, 1.28) 0.2s;
}

.single-tour-plan-style1:hover .img-box .inner::before {
    opacity: 1;
}

.single-tour-plan-style1 .img-box .inner img {
    width: 100%;
    transform: scale(1.0);
    transition: all 1500ms ease;
}

.single-tour-plan-style1:hover .img-box .inner img {
    transform: scale(1.07) rotate(0deg);
}

.single-tour-plan-style1 .img-box .overlay-content {
    position: absolute;
    display: flex;
    align-items: center;
    left: 0;
    bottom: 0px;
    right: 0;
    max-width: 650px;
    width: 100%;
    margin: 0 auto auto;
    background-color: var(--thm-white);
    padding: 21px 30px 26px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 3;
}

.single-tour-plan-style1:hover .img-box .overlay-content,
.single-tour-plan-style1.active .img-box .overlay-content {
    box-shadow: 0px 14px 24px rgba(0, 0, 0, 0.04);
}

.single-tour-plan-style1 .img-box .overlay-content .left-box {
    position: relative;
    display: block;
    padding-right: 80px;
}

.single-tour-plan-style1 .img-box .overlay-content .left-box h3 {
    font-size: 24px;
    line-height: 34px;
}

.single-tour-plan-style1 .img-box .overlay-content .left-box h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-tour-plan-style1 .img-box .overlay-content .left-box h3 a:hover {
    color: var(--thm-primary-color);
}

.single-tour-plan-style1 .img-box .overlay-content .left-box p {
    color: var(--thm-black);
}

.single-tour-plan-style1 .img-box .overlay-content .left-box .bottom {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 16px;
}

.single-tour-plan-style1 .img-box .overlay-content .left-box .bottom .icon {
    position: relative;
    display: block;
    color: var(--thm-primary-color);
    font-size: 25px;
    line-height: 0;
    margin-right: 10px;
}

.single-tour-plan-style1 .img-box .overlay-content .left-box .bottom h3 {
    font-size: 24px;
    line-height: 34px;
}

.single-tour-plan-style1 .img-box .overlay-content .right-box {
    position: relative;
    display: block;
    border-left: 1px solid var(--thm-border-color);
    padding-left: 30px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.single-tour-plan-style1:hover .img-box .overlay-content .right-box,
.single-tour-plan-style1.active .img-box .overlay-content .right-box {
    border-color: var(--thm-primary-color);
}

.single-tour-plan-style1 .img-box .overlay-content .right-box .rating {
    position: relative;
    display: flex;
    align-items: center;
}

.single-tour-plan-style1 .img-box .overlay-content .right-box .rating i {
    position: relative;
    display: block;
    color: var(--thm-primary-color);
    font-size: 14px;
}

.single-tour-plan-style1 .img-box .overlay-content .right-box .rating i+i {
    margin-left: 5px;
}

.single-tour-plan-style1 .img-box .overlay-content .right-box .reviews-box {
    position: relative;
    display: block;
    padding-top: 7px;
}

.single-tour-plan-style1 .img-box .overlay-content .right-box .reviews-box p {
    margin: 0;
}

.single-tour-plan-style1 .img-box .overlay-content .right-box .reviews-box p span {
    color: var(--thm-black);
    font-size: 24px;
    line-height: 26px;
    font-family: var(--thm-font-2);
    font-weight: 700;
}

.single-tour-plan-style1 .img-box .overlay-content .right-box .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    padding-top: 9px;
}

.single-tour-plan-style1 .img-box .overlay-content .right-box .btn-box a {
    position: relative;
    display: inline-block;
    background-color: transparent;
    border: 1px solid var(--thm-primary-color);
    padding: 0px 20px 0px;
    color: var(--thm-primary-color);
    font-size: 16px;
    line-height: 38px;
    font-family: var(--thm-font);
    font-weight: 400;
    letter-spacing: -0.01em;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.single-tour-plan-style1 .img-box .overlay-content .right-box .btn-box a:hover {
    color: var(--thm-white);
    border-color: var(--thm-primary-color);
    background-color: var(--thm-primary-color);
}

.single-list-tour-plan-style1 .row {
    --bs-gutter-x: 0px;
}

.single-list-tour-plan-style1 .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    margin-right: -24.2px;
    z-index: 1;
}

.single-list-tour-plan-style1 .img-box::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(181, 151, 113);
    background: linear-gradient(180deg, rgba(181, 151, 113, 0) 0%,
            rgba(181, 151, 113, 0.5298494397759104) 51%, rgba(181, 151, 113, 1) 80%);
    opacity: 0;
    z-index: 1;
    -webkit-transition: all 0.5s cubic-bezier(0.4, 0.28, 0.31, 1.28) 0.2s;
    transition: all 0.5s cubic-bezier(0.4, 0.28, 0.31, 1.28) 0.2s;
}

.single-list-tour-plan-style1:hover .img-box::before {
    opacity: 1;
}

.single-list-tour-plan-style1 .img-box img {
    width: 100%;
    transform: scale(1.0);
    transition: all 1500ms ease;
}

.single-list-tour-plan-style1:hover .img-box img {
    transform: scale(1.07) rotate(0deg);
}

.single-list-tour-plan-style1 .content-box {
    position: relative;
    display: block;
    background-color: var(--thm-white);
    box-shadow: 0px 14px 24px rgba(0, 0, 0, 0.07);
    padding: 62px 30px 70px;
    margin-left: 25px;
    margin-right: -1px;
}

.single-list-tour-plan-style1 .content-box .top-box {
    position: relative;
    display: block;
    padding-bottom: 14px;
}

.single-list-tour-plan-style1 .content-box .top-box h3 {
    font-size: 25px;
    line-height: 34px;
    margin-bottom: 9px;
}

.single-list-tour-plan-style1 .content-box .top-box h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-list-tour-plan-style1 .content-box .top-box h3 a:hover {
    color: var(--thm-primary-color);
}

.single-list-tour-plan-style1 .content-box .top-box p {
    color: var(--thm-black);
}

.single-list-tour-plan-style1 .content-box .top-box .bottom {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 26px;
}

.single-list-tour-plan-style1 .content-box .top-box .bottom .icon {
    position: relative;
    display: block;
    color: var(--thm-primary-color);
    font-size: 25px;
    line-height: 0;
    margin-right: 10px;
}

.single-list-tour-plan-style1 .content-box .top-box .bottom h3 {
    font-size: 24px;
    line-height: 34px;
    margin: 0;
}

.single-list-tour-plan-style1 .content-box .bottom-box {
    position: relative;
    display: block;
    border-top: 1px solid #6a6a6a;
    padding-top: 26px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.single-list-tour-plan-style1:hover .content-box .bottom-box,
.single-list-tour-plan-style1.active .content-box .bottom-box {
    border-color: var(--thm-border-color);
}

.single-list-tour-plan-style1 .content-box .bottom-box .rating {
    position: relative;
    display: flex;
    align-items: center;
}

.single-list-tour-plan-style1 .content-box .bottom-box .rating i {
    position: relative;
    display: block;
    color: var(--thm-primary-color);
    font-size: 1rem;;
}

.single-list-tour-plan-style1 .content-box .bottom-box .rating i+i {
    margin-left: 5px;
}

.single-list-tour-plan-style1 .content-box .bottom-box .reviews-box {
    position: relative;
    display: block;
    padding-top: 14px;
}

.single-list-tour-plan-style1 .content-box .bottom-box .reviews-box p {
    margin: 0;
}

.single-list-tour-plan-style1 .content-box .bottom-box .reviews-box p span {
    color: var(--thm-black);
    font-size: 24px;
    line-height: 26px;
    font-family: var(--thm-font-2);
    font-weight: 700;
}

.single-list-tour-plan-style1 .content-box .bottom-box .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    padding-top: 29px;
}

.single-list-tour-plan-style1 .content-box .bottom-box .btn-box a {
    position: relative;
    display: inline-block;
    background-color: transparent;
    border: 1px solid var(--thm-primary-color);
    padding: 0px 30px 0px;
    color: var(--thm-primary-color);
    font-size: 1rem;;
    line-height: 58px;
    font-family: var(--thm-font);
    font-weight: 400;
    letter-spacing: -0.01em;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.single-list-tour-plan-style1 .content-box .bottom-box .btn-box a:hover {
    color: var(--thm-white);
    border-color: var(--thm-primary-color);
    background-color: var(--thm-primary-color);
}

.faq-form-style1 .container {
    max-width: 880px;
}

.faq-form-style1 form .form-group {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.faq-form-style1 form .input-box {
    position: relative;
    display: block;
}

.faq-form-style1 form .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    padding-top: 10px;
    text-align: center;
}

.fact-counter-style1--style1 .fact-counter-style1__inner {
    background-color: var(--thm-primary-color);
    padding: 18.91px 0px 19.8px;
    box-shadow: none;
}

.fact-counter-style1--style1 .single-fact-counter-style1 .odometer-counting h2 {
    color: rgb(255, 255, 255, .15);
}

.fact-counter-style1--style1 .single-fact-counter-style1 .title h3 {
    color: var(--thm-white);
}

.fact-counter-style1--style1 .fact-counter-style1 ul li::before {
    background-color: rgb(255, 255, 255, .10);
}

.coming-soon-page-style1__content .inner {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
}

.coming-soon-page-style1__content .big-title {
    position: relative;
    display: inline-block;
    color: transparent;
    font-size: 80px;
    line-height: 1.1em;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    -webkit-background-clip: text;
    -webkit-text-stroke: 1px var(--thm-white);
    word-spacing: 15px;
}

.coming-soon-page-style1__content .inner .text {
    position: relative;
    display: block;
    padding-bottom: 60px;
}

.coming-soon-page-style1__content .inner .text p {
    color: #ffffff;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
}

.error-page__content .big-title {
    position: relative;
    display: block;
    color: var(--thm-black);
    font-size: 263px;
    line-height: 1.0em;
    font-weight: 900;
    font-family: var(--thm-font-2);
}

.error-page__content .title {
    position: relative;
    display: block;
    padding-bottom: 32px;
}

.error-page__content .title h2 {
    font-size: 36px;
    line-height: 36px;
    font-family: var(--thm-font);
    font-weight: 500;
}

.error-page__content .text {
    position: relative;
    display: block;
}

.error-page__content .text p {
    margin: 0;
}

.error-page__content .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    padding-top: 43px;
}

.faq-page-one__tab {
    position: relative;
    display: block;
}

.faq-page-one__content .tabs-button-box {
    position: relative;
    display: block;
}

.faq-page-one__content .tabs-button-box li {
    position: relative;
    display: block;
}

.faq-page-one__content .tabs-button-box li+li {
    margin-top: 15px;
}

.faq-page-one__content .tabs-button-box li .title {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.faq-page-one__content .tabs-button-box li .title p {
    color: #a9a7a6;
    font-size: 16px;
    line-height: 26px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.faq-page-one__content .tabs-button-box li:hover .title p,
.faq-page-one__content .tabs-button-box li.active-btn-item .title p {
    color: var(--thm-black);
}

.faq-page-one__content .tabs-button-box li .title .icon {
    position: relative;
    display: block;
    opacity: 0;
    color: var(--thm-primary-color);
    font-size: 14px;
    line-height: 0;
    margin-left: 10px;
    transform: translateX(-20px);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.faq-page-one__content .tabs-button-box li:hover .title .icon,
.faq-page-one__content .tabs-button-box li.active-btn-item .title .icon {
    opacity: 1;
    transform: translateX(0px);
}

.faq-page-one__content .question-box .icon {
    position: relative;
    display: block;
    color: var(--thm-primary-color);
    font-size: 35px;
    line-height: 0px;
    top: 8px;
}

.faq-page-one__content .question-box .title {
    position: relative;
    display: block;
    padding-left: 15px;
    flex: 1;
}

.faq-page-one__content .question-box .title h5 {
    font-size: 1rem;;
    line-height: 28px;
    text-transform: uppercase;
}

.faq-page-one__content .question-box .title p {
    margin: 0;
}

.faq-page-one__content .question-box .title p a {
    color: var(--thm-body-font-color);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.faq-page-one__content .question-box .title p a:hover {
    color: var(--thm-primary-color);
}

.faq-page-one__tab .tabs-content-box {
    position: relative;
    display: block;
    margin-left: 0px;
}

.faq-page-one__tab .tab-content-box-item {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: auto;
    visibility: hidden;
}

.faq-page-one__tab .tab-content-box-item.tab-content-box-item-active {
    position: relative;
    visibility: visible;
    z-index: 5;
}

.faq-page-one__tab .tab-content-box-item .faq-page-one__content-tab-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.faq-page-one__tab .tab-content-box-item.tab-content-box-item-active .faq-page-one__content-tab-item {
    opacity: 1;
    transform: translateY(0px);
}

.project-page-one .row {
    --bs-gutter-x: 0px;
}

.project-page-one .img-box .overlay-icon {
    flex-direction: column;
    transform: perspective(400px) scale(1.0) translateY(-40px);
}

.single-project-style1 .overlay-content {
    position: relative;
    display: block;
    margin-top: 30px;
    opacity: 0;
    transform: scale(0);
    text-align: center;
    padding: 0px 10px 0px;
    transition: all 900ms ease;
    z-index: 5;
}

.single-project-style1:hover .overlay-content {
    opacity: 1;
    transform: scale(1);
}

.single-project-style1 .overlay-content h2 {
    font-size: 32px;
    line-height: 40px;
}

.single-project-style1 .overlay-content h2 a {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-project-style1 .overlay-content h2 a:hover {
    color: var(--thm-black);
}

.single-project-style1 .overlay-content .btn-box {
    position: relative;
    display: block;
    padding-top: 23px;
}

.single-project-style1 .overlay-content .btn-box a {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
    font-size: 1rem;;
    line-height: 28px;
    font-family: var(--thm-font);
    font-weight: 400;
    letter-spacing: -0.01em;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-project-style1 .overlay-content .btn-box a:hover {
    color: var(--thm-black);
}

.single-project-style1 .overlay-content .btn-box a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    right: 0;
    height: 1px;
    background-color: var(--thm-white);
}

.project-page-two .row {
    --bs-gutter-x: 10px;
}

.project-page-two .img-box .overlay-icon {
    flex-direction: column;
    transform: perspective(400px) scale(1.0) translateY(-40px);
}

/* Cursor */
.cursor {
    position: fixed;
    background-color: var(--thm-primary-color);
    width: 6px;
    height: 6px;
    border-radius: 100%;
    z-index: 1;
    -webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
    transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
    transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
    transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    z-index: 10000;
    -webkit-transform: scale(1);
    transform: scale(1);
    display: none;
}

.cursor::before {
    content: "";
    position: absolute;
    top: -7px;
    left: -7px;
    bottom: -7px;
    right: -7px;
    border: 1px solid var(--thm-primary-color);
    border-radius: 50%;
}

.cursor.active {
    opacity: 1;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.cursor.menu-active {
    opacity: 1;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.cursor.hovered {
    opacity: 1;
}

.cursor-follower {
    position: fixed;
    background-color: var(--thm-primary-color);
    opacity: 0.30;
    width: 33px;
    height: 33px;
    border-radius: 100%;
    z-index: 1;
    -webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
    transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
    transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background;
    transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    z-index: 10000;
    -webkit-transform: translate(2px, 2px);
    transform: translate(2px, 2px);
    display: none;
}

.cursor-follower.active {
    opacity: 0.10;
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
}

.cursor-follower.menu-active {
    opacity: 1;
    -webkit-transform: scale(3);
    transform: scale(3);
}

.cursor-follower.hovered {
    opacity: 1;
}

/* Cursor End */

#ui-datepicker-div.ui-widget-content {
    background: var(--thm-white) none repeat scroll 0 0;
    border: 1px solid var(--thm-border-color);
    color: var(--thm-black);
    font-family: var(--thm-font-2);
    font-size: 14px;
    border-radius: 0px;
    width: 270px;
    padding: 5px;
    z-index: 999 !important;
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-header {
    background: var(--thm-black) none repeat scroll 0 0;
    border: 2px solid var(--thm-primary-color);
    border-radius: 0;
    color: var(--thm-white);
    font-weight: 700;
    padding: 5px 0;
    position: relative;
}

.ui-datepicker td a {
    color: #000000 !important;
    text-align: center;
    background-image: none !important;
    background: #f5f5f5 !important;
    border: 1px solid #f9f9f9 !important;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    border: 1px solid #333333 !important;
    background: #333333 !important;
    color: #ffffff !important;
}

.ui-datepicker .ui-datepicker-prev {
    left: 5px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    border-radius: 30%;
    height: 20px;
    position: absolute;
    top: 7px;
    width: 20px;
    transition: all 500ms ease;
    cursor: pointer;
}

.ui-datepicker .ui-datepicker-next {
    right: 5px;
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
    top: 7px;
    background: #fff;
    border: none;
}

.ui-datepicker table {
    border-collapse: collapse;
    font-size: 13px;
    margin: 0 0 0.4em;
    width: 100%;
}

.ui-datepicker th {
    border: medium none;
    font-weight: 600;
    padding: 2px 3px;
    text-align: center;
}

.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-state-default:active {
    background: #43c3ea;
    color: #fff;
    border-color: #43c3ea;
}

.bottom-parallax .footer-style1 {
    position: fixed;
    left: 0px;
    bottom: 0px;
    right: 0px;
    height: 860px;
}

/*** 
===========================
    Footer style1 Css
===========================
***/
.footer-style1 {
    position: relative;
    display: block;
    background: #000;
    background-image:url(../../images/footer-bg.png);
    overflow: hidden;
    z-index: 10;
    background-position: bottom;
}

/*==== Footer Main ====*/
.footer-main {
    position: relative;
    display: block;
    padding: 100px 0px 80px;
}

.single-footer-widget {
    position: relative;
    display: block;
}

.single-footer-widget-contact {
    position: relative;
    display: block;
}

.footer-logo-style1 {
    position: relative;
    display: block;
}

.footer-logo-style1 a {
    position: relative;
    display: inline-block;
}

.footer-logo-style1 a img {
    width: 220px;
    filter: invert(1);
}

.single-footer-widget-contact .list-item {
    position: relative;
    display: block;
    padding-top: 46px;
}

.single-footer-widget-contact .list-item li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-footer-widget-contact .list-item li+li {
    margin-top: 11px;
}

.single-footer-widget-contact .list-item li .icon {
    position: relative;
    display: block;
    color: #a3a3a3;
    font-size: 20px;
    line-height: 0;
    margin-right: 10px;
}

.single-footer-widget-contact .list-item li p {
    color: #a3a3a3;
    font-size: 1rem;;
    line-height: 28px;
}

.single-footer-widget-contact .list-item li p a {
    color: #a3a3a3;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-footer-widget-contact .list-item li p a:hover {
    color: var(--thm-primary-color);
}

.single-footer-widget .title {
    position: relative;
    display: block;
    margin-top: -5px;
}

.single-footer-widget .title h3 {
    color: var(--thm-white);
    font-size: 28px;
    line-height: 32px;
}

.single-footer-widget.ml80 {
    margin-left: 80px;
}

.single-footer-widget.ml50 {
    margin-left: 50px;
}

.single-footer-widget.ml30 {
    margin-left: 30px;
}

.footer-widget-links {
    position: relative;
    display: block;
    padding-top: 26px;
}

.footer-widget-links ul {
    position: relative;
    display: block;
}

.footer-widget-links ul li {
    position: relative;
    display: block;
}

.footer-widget-links ul li+li {
    margin-top: 10px;
}

.footer-widget-links ul li a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #999999;
    font-size: 1rem;
    line-height: 28px;
    font-family: var(--thm-font);
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.footer-widget-links ul li a:hover {
    color: #ccc;
    margin-left: 5px;
}

.footer-widget-subscribe {
    position: relative;
    display: block;
    padding-top: 34px;
}

.footer-widget-subscribe form {
    position: relative;
    display: block;
}

.footer-widget-subscribe form .form-group {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.footer-widget-subscribe form .form-group .input-box {
    position: relative;
    display: block;
}

.footer-widget-subscribe form .form-group input[type="text"],
.footer-widget-subscribe form .form-group input[type="email"] {
    position: relative;
    display: block;
    background: transparent;
    border: 1px solid rgb(255, 255, 255, .1);
    width: 100%;
    height: 60px;
    color: #999999;
    font-size: 1rem;;
    font-family: var(--thm-font);
    font-weight: 400;
    font-style: normal;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 0px;
    transition: all 500ms ease;
}

.footer-widget-subscribe form input[type="text"]::-webkit-input-placeholder {
    color: #999999;
}

.footer-widget-subscribe form input[type="text"]:-moz-placeholder {
    color: #999999;
}

.footer-widget-subscribe form input[type="text"]::-moz-placeholder {
    color: #999999;
}

.footer-widget-subscribe form input[type="text"]:-ms-input-placeholder {
    color: #999999;
}

.footer-widget-subscribe form input[type="email"]::-webkit-input-placeholder {
    color: #999999;
}

.footer-widget-subscribe form input[type="email"]:-moz-placeholder {
    color: #999999;
}

.footer-widget-subscribe form input[type="email"]::-moz-placeholder {
    color: #999999;
}

.footer-widget-subscribe form input[type="email"]:-ms-input-placeholder {
    color: #999999;
}

.footer-widget-subscribe form button {
    position: relative;
    display: block;
    padding-top: 10px;
}

.footer-widget-subscribe form button.btn-one {
    width: 100%;
    text-align: center;
}

/*==== Footer Bottom ====*/
.footer-bottom {
    position: relative;
    display: block;
}

.footer-bottom .bottom-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgb(255, 255, 255, 0.1);
    padding: 25px 0px 26px;
}

.copyright-text {
    position: relative;
    display: block;
}

.copyright-text p {
    color: #a3a3a3;
    font-size: 1rem;;
    line-height: 28px;
}

.copyright-text p a {
    color: var(--thm-primary-color);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.copyright-text p a:hover {
    color: var(--thm-white);
}

.footer-social-links-style1 {
    position: relative;
    display: block;
}

.footer-social-links-style1 ul {
    position: relative;
    display: flex;
    align-items: center;
}

.footer-social-links-style1 ul li {
    position: relative;
    display: block;
    line-height: 0;
}

.footer-social-links-style1 ul li+li {
    margin-left: 20px;
}

.footer-social-links-style1 ul li a {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 2rem;
    line-height: 0;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-social-links-style1 ul li a:hover {
    color: var(--thm-white);
}

/*** 
=============================
    Blog Style1 Css
=============================
***/
.blog-style1 {
    background-color: var(--thm-white);
    padding: 120px 0px 90px;
    z-index: 2;
}

.blog-style1__shape1 {
    position: absolute;
    top: 135px;
    left: 0;
}

.blog-style1__shape2 {
    position: absolute;
    top: 127px;
    right: 0;
}

.single-blog-style1 {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.single-blog-style1 .img-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.single-blog-style1 .img-box img {
    width: 100%;
    transform: scale(1.0);
}

.single-blog-style1:hover .img-box img {
    transform: scale(1.10) rotate(0deg);
}

.single-blog-style1 .img-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 56.58%, rgba(0, 0, 0, 0.47) 77.11%, #000000 100%);
    z-index: 1;
}

.single-blog-style1 .img-box::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background: rgb(181, 151, 113);
    background: linear-gradient(180deg, rgba(181, 151, 113, 0) 0%, rgba(181, 151, 113, 0.5298494397759104) 31%, rgba(181, 151, 113, 1) 80%);
    -webkit-transition: all 0.5s cubic-bezier(0.4, 0.28, 0.31, 1.28) 0.2s;
    transition: all 0.5s cubic-bezier(0.4, 0.28, 0.31, 1.28) 0.2s;
    z-index: 1;
}

.single-blog-style1:hover .img-box::after {
    opacity: 1;
}

.single-blog-style1 .img-box .overlay-content {
    position: absolute;
    left: 30px;
    bottom: 23px;
    right: 30px;
    z-index: 5;
}

.single-blog-style1 .img-box .overlay-content .date-box {
    position: relative;
    display: flex;
    align-items: center;
}

.single-blog-style1 .img-box .overlay-content .date-box .icon {
    position: relative;
    display: block;
    color: var(--thm-white);
    font-size: 16px;
    line-height: 0;
    margin-right: 7px;
}

.single-blog-style1 .img-box .overlay-content .date-box p {
    color: var(--thm-white);
}

.single-blog-style1 .img-box .overlay-content .title {
    position: relative;
    display: block;
    padding-top: 9px;
}

.single-blog-style1 .img-box .overlay-content .title h3 {
    font-size: 28px;
    line-height: 32px;
}

.single-blog-style1 .img-box .overlay-content .title h3 a {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-blog-style1 .img-box .overlay-content .title h3 a:hover {
    color: var(--thm-black);
}

.single-blog-style1-right {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.single-blog-style1-right li {
    position: relative;
    display: flex;
    align-items: center;
}

.single-blog-style1-right li+li {
    margin-top: 25px;
}

.single-blog-style1-right li .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    width: 110px;
}

.single-blog-style1-right li .img-box::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0;
    opacity: 0;
    background: rgb(181, 151, 113);
    background: linear-gradient(180deg, rgba(181, 151, 113, 0) 0%, rgba(181, 151, 113, 0.5298494397759104) 21%,
            rgba(181, 151, 113, 1) 80%);
    -webkit-transition: all 0.5s cubic-bezier(0.4, 0.28, 0.31, 1.28) 0.2s;
    transition: all 0.5s cubic-bezier(0.4, 0.28, 0.31, 1.28) 0.2s;
    z-index: 1;
}

.single-blog-style1-right li:hover .img-box::before {
    height: 100%;
    opacity: 1;
}

.single-blog-style1-right li .img-box img {
    width: 100%;
    transform: scale(1.0);
    transition: all 1500ms ease;
}

.single-blog-style1-right li:hover .img-box img {
    transform: scale(1.07) rotate(0deg);
}

.single-blog-style1-right li .content-box {
    position: relative;
    display: block;
    margin-left: 20px;
    flex: 1;
}

.single-blog-style1-right li .content-box .date {
    position: relative;
    display: flex;
    align-items: center;
}

.single-blog-style1-right li .content-box .date .icon {
    position: relative;
    display: block;
    color: var(--thm-primary-color);
    font-size: 16px;
    line-height: 0;
    margin-right: 7px;
}

.single-blog-style1-right li .content-box .date p {
    margin: 0;
}

.single-blog-style1-right li .content-box .title {
    position: relative;
    display: block;
    padding-top: 3px;
}

.single-blog-style1-right li .content-box .title h3 {
    font-size: 24px;
    line-height: 28px;
}

.single-blog-style1-right li .content-box .title h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-blog-style1-right li .content-box .title h3 a:hover {
    color: var(--thm-primary-color);
}

.blog-page-two .single-blog-style1 .img-box .overlay-content .title h3 {
    font-size: 36px;
    line-height: 40px;
}

.blog-page-two .single-blog-style1 .img-box .overlay-content {
    left: 40px;
    bottom: 36px;
}

.blog-details__text1 .date-box {
    position: relative;
    display: flex;
    align-items: center;
}

.blog-details__text1 .date-box .icon {
    position: relative;
    display: block;
    color: var(--thm-black);
    font-size: 14px;
    line-height: 0;
    margin-right: 7px;
}

.blog-details__text1 .date-box p {
    color: var(--thm-black);
    line-height: 24px;
}

.blog-details__text1 .title {
    position: relative;
    display: block;
    padding-top: 11px;
}

.blog-details__text1 .title h2 {
    font-size: 48px;
    line-height: 1.0em;
}

.blog-details__text1 .text {
    position: relative;
    display: block;
    padding-top: 13px;
}

.blog-details__text1 .text p {
    margin: 0;
}

.blog-details__text1 .text p+p {
    margin-top: 25px;
}

.blog-details__quote .title {
    position: relative;
    display: block;
    padding-bottom: 14px;
}

.blog-details__quote .title h3 {
    font-size: 25px;
    line-height: 35px;
}

.blog-details__quote .text {
    position: relative;
    display: block;
}

.blog-details__quote .text p {
    font-size: 1rem;;
}

.blog-details__quote .icon {
    position: absolute;
    top: 25px;
    right: 32px;
    color: rgb(181, 151, 113, .1);
    font-size: 45px;
    line-height: 0;
}

.blog-details__img2 .img-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.blog-details__img2 .img-box img {
    width: 100%;
}

.blog-details__text3 .title {
    position: relative;
    display: block;
    padding-bottom: 16px;
}

.blog-details__text3 .title h2 {
    font-size: 32px;
    line-height: 1.0em;
}

.blog-details__text3 .title h2 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-details__text3 .title h2 a:hover {
    color: var(--thm-primary-color);
}

.blog-details__text3 .text {
    position: relative;
    display: block;
}

.blog-details__text3 .text p {
    margin: 0;
}

.blog-details__text3 .text p+p {
    margin-top: 25px;
}

.blog-details__tag .blog-post .text {
    position: relative;
    display: block;
}

.blog-details__tag .blog-post .text p {
    color: #111111;
    font-weight: 500;
}

.blog-details__tag .blog-social .text {
    position: relative;
    display: block;
}

.blog-details__tag .blog-social .text p {
    color: #111111;
    font-weight: 500;
}

.comment-box .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    width: 120px;
}

.comment-box .img-box img {
    width: 100%;
}

.comment-box .content-box {
    position: relative;
    display: block;
    flex: 1;
    margin-left: 30px;
}

.comment-box .content-box .athor {
    position: relative;
    display: block;
}

.comment-box .content-box .athor h3 {
    color: #111111;
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
}

.comment-box .content-box .athor p {
    margin: 0;
}

.comment-box .content-box .text {
    position: relative;
    display: block;
    padding-top: 15px;
}

.comment-box .content-box .text p {
    font-size: 15px;
}

#add-comment-form {
    position: relative;
    display: block;
}

#add-comment-form .form-group {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

#add-comment-form .input-box {
    position: relative;
    display: block;
}

#add-comment-form input[type="text"],
#add-comment-form input[type="email"],
#add-comment-form textarea {
    position: relative;
    display: block;
    border-radius: 0px;
    border: 1px solid var(--thm-border-color);
    background: transparent;
    width: 100%;
    height: 60px;
    color: var(--thm-body-font-color);
    font-size: 16px;
    font-family: var(--thm-font);
    font-weight: 400;
    font-style: normal;
    text-transform: capitalize;
    padding: 0 25px 0;
    transition: all 500ms ease;
}

#add-comment-form textarea {
    height: 170px;
    padding: 13px 25px 10px;
}

#add-comment-form .btn-box {
    position: relative;
    display: block;
}

.sidebar-search-box form.search-form {
    position: relative;
    display: block;
    width: 100%;
}

.single-sidebar__blog-post li .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    width: 90px;
    height: 90px;
}

.single-sidebar__blog-post li .img-box::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    bottom: 5px;
    right: 5px;
    background-color: var(--thm-primary-color);
    opacity: 0;
    transform: perspective(400px) scaleX(0);
    transform-origin: center;
    transition: all 500ms ease;
    z-index: 1;
}

.single-sidebar__blog-post li:hover .img-box::before {
    opacity: .8;
    transform: perspective(400px) scaleX(1.0);
}

.single-sidebar__blog-post li .img-box img {
    width: 100%;
    transform: scale(1.0);
}

.single-sidebar__blog-post li:hover .img-box img {
    transform: scale(1.05) rotate(0deg);
}

.single-sidebar__blog-post li .img-box .overlay-icon {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: perspective(400px) scale(0) translateY(-40px);
    transition: all 400ms ease;
    z-index: 5;
}

.single-sidebar__blog-post li:hover .img-box .overlay-icon {
    opacity: 1;
    transform: perspective(400px) scale(1.0) translateY(0px);
    transition-delay: 400ms;
}

.single-sidebar__blog-post li .img-box .overlay-icon a {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
    font-size: 16px;
    line-height: 0;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-sidebar__blog-post li .img-box .overlay-icon a:hover {
    color: var(--thm-white);
}

.single-sidebar__blog-post li .content-box {
    position: relative;
    display: block;
    flex: 1;
    margin-left: 20px;
}

.single-sidebar__blog-post li .content-box .title {
    position: relative;
    display: block;
}

.single-sidebar__blog-post li .content-box .title h3 {
    font-size: 1rem;;
    line-height: 22px;
    font-weight: 700;
}

.single-sidebar__blog-post li .content-box .title h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-sidebar__blog-post li .content-box .title h3 a:hover {
    color: var(--thm-primary-color);
}

.single-sidebar__blog-post li .content-box .date {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 8px;
}

.single-sidebar__blog-post li .content-box .date .icon {
    position: relative;
    display: block;
    color: var(--thm-primary-color);
    font-size: 14px;
    line-height: 0;
    margin-right: 7px;
}

.single-sidebar__blog-post li .content-box .date p {
    font-size: 15px;
    line-height: 25px;
}

.single-sidebar__gallery li .img-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.single-sidebar__gallery li .img-box::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    bottom: 5px;
    right: 5px;
    background-color: var(--thm-primary-color);
    opacity: 0;
    transform: perspective(400px) scaleX(0);
    transform-origin: center;
    transition: all 500ms ease;
    z-index: 1;
}

.single-sidebar__gallery li:hover .img-box::before {
    opacity: .9;
    transform: perspective(400px) scaleX(1.0);
}

.single-sidebar__gallery li .img-box img {
    width: 100%;
    transform: scale(1.0);
}

.single-sidebar__gallery li:hover .img-box img {
    transform: scale(1.05) rotate(0deg);
}

.single-sidebar__gallery li .img-box .overlay-icon {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: perspective(400px) scale(0) translateY(-40px);
    transition: all 400ms ease;
    z-index: 5;
}

.single-sidebar__gallery li:hover .img-box .overlay-icon {
    opacity: 1;
    transform: perspective(400px) scale(1.0) translateY(0px);
    transition-delay: 400ms;
}

.single-sidebar__gallery li .img-box .overlay-icon a {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
    font-size: 16px;
}
/*** 
=======================
   About Style1 Css
=======================
***/
.about-style1 {
   background-color: var(--thm-white);
   padding: 0px 0px 130px;
}

.about-style1__big-title {
   position: absolute;
   top: -365px;
   left: -20%;
   color: transparent;
   -webkit-text-stroke: 1px rgb(0, 0, 0, 0.08);
   font-size: 200px;
   line-height: 1.0em;
   font-family: var(--thm-font-2);
   font-weight: 700;
   text-transform: uppercase;
   writing-mode: vertical-lr;
   transform: rotate(180deg);
}

.about-style1__content {
   position: relative;
   display: block;
}

.about-style1__content .sec-title {
   padding-bottom: 21px;
}

.about-style1__content .text {
   position: relative;
   display: block;
   font-size:1rem;
}

.about-style1__content .text p {
   margin: 0;
}

.about-style1__content .btn-box {
   position: relative;
   display: block;
   line-height: 0;
   padding-top: 33px;
}

.about-style1__img {
   position: relative;
   display: block;
}

.about-style1__img .img-box {
   position: relative;
   display: block;
   bottom: -60px;
}

.about-style1__img .img-box img {
   max-width: none;
   float: left;
}

.odometer-inside{
    display:flex;
    justify-content: center;
    align-items: center;
}

.about-style1__rotated-text {
   position: absolute;
   top: -80px;
   left: 270px;
   width: 160px;
   height: 160px;
   border-radius: 50%;
   background-color: var(--thm-white);
   box-shadow: 0px 0px 25px 0px rgba(25, 26, 28, 0.09);
   margin-left: 0px;
   z-index: 11;
}

.about-style1-rotated-text {
   position: absolute;
   top: 10px;
   left: 10px;
   bottom: 10px;
   right: 10px;
   width: 140px;
   height: 140px !important;
   color: var(--thm-black);
   font-size: 16px;
   font-weight: 600;
   text-transform: uppercase;
   font-family: var(--thm-font);
   word-spacing: 2px;
   letter-spacing: 0.08em;
   transform: rotate(0deg);
}

.about-style1__rotated-text .overlay-text {
   position: absolute;
   top: 40px;
   left: 40px;
   bottom: 40px;
   right: 40px;
   background-color: var(--thm-primary-color);
   display: flex;
   align-items: center;
   justify-content: center;
   text-align: center;
   border-radius: 50%;
   color: var(--thm-white);
   font-size: 40px;
}

/*--------------------------------------------------------------
  # Mobile Nav
  --------------------------------------------------------------*/
.mobile-nav__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
    transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    visibility: hidden;
}

.mobile-nav__wrapper.expanded {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    visibility: visible;
    -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
    transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper .container {
    padding-left: 0;
    padding-right: 0;
}

.mobile-nav__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-black);
    opacity: 0.7;
    cursor: pointer;
}

.mobile-nav__content {
    position: relative;
    width: 300px;
    background-color: var(--thm-white);
    height: 100%;
    overflow-y: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    z-index: 10;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__close {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 20px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.mobile-nav__close:hover {
    background-color: var(--thm-primary-color);
}

.mobile-nav__close i:before {
    position: relative;
    display: inline-block;
    transform: rotate(0deg);
}

.mobile-nav__content .logo-box {
    margin-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.mobile-nav-search-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.mobile-nav-search-box form.search-form {
    position: relative;
    display: block;
    width: 100%;
}

.mobile-nav-search-box .search-form input[type="text"] {
    position: relative;
    display: block;
    width: 100%;
    height: 52px;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    color: #909090;
    font-size: 16px;
    font-weight: 500;
    padding-left: 20px;
    padding-right: 60px;
    border-radius: 0px;
    font-family: var(--thm-font);
    transition: all 500ms ease 0s;
}

.mobile-nav-search-box .search-form button {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 50px;
    height: 52px;
    color: #ffffff;
    font-size: 15px;
    background: rgba(var(--thm-primary-color-rgb), 0.80);
    text-align: center;
    border: 0px solid #e7e7e8;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    transition: all 500ms ease 0s;
}

.mobile-nav-search-box .search-form button i {
    position: relative;
    top: 0px;
}

.mobile-nav-search-box .search-form input[type="text"]:focus {
    color: var(--thm-black);
}

.mobile-nav-search-box .search-form input[type="text"]:focus+button,
.mobile-nav-search-box .search-form button:hover {
    color: #ffffff;
    background-color: var(--thm-primary-color);
}

.mobile-nav-search-box .search-form input::-webkit-input-placeholder {
    color: rgba(var(--thm-black-rgb), .70);
}

.mobile-nav-search-box .search-form input:-moz-placeholder {
    color: rgba(var(--thm-black-rgb), .70);
}

.mobile-nav-search-box .search-form input::-moz-placeholder {
    color: rgba(var(--thm-black-rgb), .70);
}

.mobile-nav-search-box .search-form input:-ms-input-placeholder {
    color: rgba(var(--thm-black-rgb), .70);
}

.mobile-nav__container {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-left: 20px;
}

.mobile-nav__content .main-menu__list>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li>ul>li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    line-height: 30px;
    color: #ffffff;
    font-size: 16px;
    font-family: var(--thm-font);
    font-weight: 500;
    height: 46px;
    transition: 500ms;
}

.mobile-nav__content .main-menu__list>li>ul>li>a {
    font-size: 15px;
    font-weight: 400;
}

.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a {
    font-size: 14px;
    font-weight: 400;
}

.mobile-nav__content .main-menu__list>li>a.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a.expanded {
    color: var(--thm-primary-color);
}

.mobile-nav__content .main-menu__list>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button {
    width: 30px;
    height: 30px;
    background: rgba(var(--thm-primary-color-rgb), 0.3);
    border: none;
    outline: none;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition: -webkit-transform 500ms ease;
    transition: -webkit-transform 500ms ease;
    transition: transform 500ms ease;
    transition: transform 500ms ease, -webkit-transform 500ms ease;
    padding: 0;
}

.mobile-nav__content .main-menu__list>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button.expanded {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    color: var(--thm-primary-color);
}

/* 
////////////////////////////
Mobile Nav Megamenu Css 
///////////////////////////
*/
.mobile-nav__wrapper .megamenu-content-box__inner {
    padding: 0px 0px;
    background-color: transparent;
    box-shadow: none;
}

.mobile-nav__wrapper .megamenu-content-box__inner::before {
    display: none;
}

.mobile-nav__wrapper .megamenu-box__inner {
    padding: 0px 0px;
    background-color: transparent;
    box-shadow: none;
}

.mobile-nav__wrapper .megamenu-content-box .row ul {
    margin-left: 0px;
}

.mobile-nav__wrapper .megamenu-content-box .row ul li {
    padding: 0 0px;
}

.mobile-nav__wrapper .megamenu-content-box .row ul li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 0px;
}

.mobile-nav__wrapper .megamenu-content-box .row ul li a {
    position: relative;
    display: block;
    height: 46px;
    font-size: 14px;
    font-weight: 400;
    line-height: 46px;
    color: var(--thm-white);
    padding: 0 0px;
    border-top: 0px solid var(--thm-border-color);
    font-family: var(--thm-font);
}

.mobile-nav__wrapper .megamenu-box .row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 0px;
}

.mobile-nav__wrapper .megamenu-box__inner .row [class*=col-] {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}

.mobile-nav__contact {
    position: relative;
    display: block;
    margin-top: 20px;
    margin-bottom: 10px;
}

.mobile-nav__contact li {
    position: relative;
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
}

.mobile-nav__contact li+li {
    margin-top: 15px;
}

.mobile-nav__contact li a {
    color: #ffffff;
    -webkit-transition: 500ms;
    transition: 500ms;
}

.mobile-nav__contact li a:hover {
    color: var(--thm-primary-color);
}

.mobile-nav__contact li>i {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 0%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 12px;
    margin-right: 10px;
}

.mobile-nav__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.mobile-nav__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.mobile-nav__social a {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 16px;
    line-height: 40px;
    text-align: center;
    transition: 500ms;
}

.mobile-nav__social a+a {
    margin-left: 10px;
}

.mobile-nav__social a:hover {
    color: var(--thm-primary-color);
    background-color: #ffffff;
}

/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>ul {
    display: none !important;
}

/*--------------------------------------------------------------
# Main Header Css
--------------------------------------------------------------*/
.main-header {
    position: relative;
    display: block;
    width: 100%;
    background: transparent;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 99;
}

.main-menu {
    position: relative;
    display: block;
}

.main-menu__wrapper {
    position: relative;
    display: block;
}

.main-menu__wrapper-inner {
    display: flex;
    align-items: center;
}

.main-menu-box {
    display: block;
    float: right;
    margin-left: auto;
}

.main-menu .main-menu__list,
.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: none;
}

.to-top{
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
}

.to-top a{
    color: #fff;
    flex-direction: column-reverse;
    display: block;
    position: relative;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.text-right{
    text-align: right;
}

@media only screen and (min-width: 1200px) and (max-width: 1350px) {
    .header-contact-info-style1 {
        display: block!important;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .header-contact-info-style1{
        margin:0 1rem!important;
    }
}

@media (max-width: 767px) {
    .main-header-style1 .main-menu-style1__left .main-menu-box {
        margin-left: 20px!important;
    }
    .main-header-style1__content-right {
        display: flex!important; 
    }
}


@media (max-width: 1200px) {
    .main-menu-style1__left .main-menu-box{
        margin-left:20px;
    }
}


@media (min-width: 1200px) {
    .main-menu .main-menu__list, .main-menu .main-menu__list>li>ul, .main-menu .main-menu__list>li>ul>li>ul, .stricky-header .main-menu__list, .stricky-header .main-menu__list>li>ul, .stricky-header .main-menu__list>li>ul>li>ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: none!important;
    }
}

@media (max-width:992px){
    .mobile-nav__content .main-menu__list>li>a>button{
        background:#111!important;
    }
    .mobile-nav__topbar-list li a{
        color:#111!important;
    }
    .mobile-nav__content .main-menu__list>li>a{
        color:#111;
    }
    .logo-box img{
        position:relative;
        margin:auto;
        width:200px;
        margin-top:1rem;
    }
    .nav-link{
        padding:0!important
    }
    .mobile-nav__topbar-list li a{
        font-size:1rem!important;
        letter-spacing: 0!important;
    }
    .desktop #desktopDropdownLang{
        display: none!important;
    }
    .desktop-menu__topbar-list{
        display:none!important;
    }
    .yacht-details-style3__img--main{
        height: 300px!important;
    }
    .gal-first{
        height: 300px!important;
    }
    .gal-two{
        height: 145px!important;
    }
    .img-bottom-bar.is-sticky{
        padding:1rem 0!important;
    }
    .right-info{
        justify-content: center!important;
        margin-top:.5rem;
    }
    .img-bottom-ul{
        gap:1.5rem!important;
    }
    .breadcrumb{
        font-size:.875rem;
    }
    .logo-box-style1 a{
        width:200px!important;
    }
    .to-top{
        bottom:85%;
    }
    .bread-name{
        font-size: 1.8rem!important;
        transform: translateY(-50%);
        padding: 0 1rem;
        word-break: break-word;
    }
    .yacht-details-style3__img .overlay-content{
        width: 100%;
    }
    .stricky-header--style1.main-menu .yacht-list-style1__sidebar{
        margin:0!important;
    }
    .yacht-list-style1__sidebar{
        padding:0!important;
        margin-bottom: 0!important;;
    }
    .mobilFilterBtn{
        width:100% !important;
        gap:.5rem;
        font-weight: 600;
        display:flex !important;
        align-items:center;
        justify-content:center;
        position:sticky;
        margin:.5rem 0;
        color:var(--thm-black-bg);
        top:0;
        z-index:30;
        cursor:pointer;
    }
    .mobilfilterField2{
        display:block;
        position:static !important;
        left:auto !important;
        top:auto !important;
        width:100% !important;
        height:auto !important;
        max-height:0;
        overflow:hidden;
        transition:max-height .35s ease, margin-bottom .35s ease;
        border-radius:8px;
        margin-bottom:0;
        z-index:20;
        color:#222;
    }
    .mobilfilterField2.is-open{
        max-height:1400px;
        margin-bottom:16px;
    }
    .mobilfilterField2 .filterField2{
        padding-top:.5rem;
        padding-bottom:1rem;
    }
    .mobilCloseBtn{
        font-size:2.2rem;
        line-height:1;
        color:#222;
        text-decoration:none;
    }
    .float-bob-x{
        display: none;
    }
    .sec-title{
        padding-bottom: 0!important;
    }
    .about-style1__img{
        padding-bottom: 2rem;
    }
    .btn-one{
        width: 100%;
        justify-content: center;
    }
    .breadcrumb-menu{
        bottom: -18px;
        padding: .4rem 1rem;
        font-size: .82rem;
        white-space: normal;
        text-align: center;
    }
    .breadcrumb-style1{
        margin-bottom: 2rem !important;
    }
    .catalog-page__header{
        padding: 0 0 8px;
    }
    .catalog-mobile-toggle{
        margin-bottom: 8px;
    }
}
@media (min-width: 1200px) {

    .main-menu .main-menu__list,
    .main-menu .main-menu__list>li>ul,
    .main-menu .main-menu__list>li>ul>li>ul,
    .stricky-header .main-menu__list,
    .stricky-header .main-menu__list>li>ul,
    .stricky-header .main-menu__list>li>ul>li>ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
    position: relative;
    padding-top: 1rem;
    padding-bottom: 1rem;
}


.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
    position: relative;
    display: inline-block;
    color: #222;
    font-size: 1.15rem;
    line-height: 20px;
    font-weight: 500;
    font-family: var(--thm-font);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a,
.stricky-header .main-menu__list>li.current>a,
.stricky-header .main-menu__list>li:hover>a {
    color: #222;
}


.main-menu .main-menu__list>li.dropdown>a,
.stricky-header .main-menu__list>li.dropdown>a {
    padding-right: 18px;
}

.main-menu .main-menu__list>li.dropdown>a:after {
    position: absolute;
    right: -2px;
    font-family: 'icomoon' !important;
    content: "\e90e" !important;
    color: var(--thm-white);
    font-size: 16px;
    font-weight: 400;
    transform: rotate(0deg);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.main-menu .main-menu__list>li.current.dropdown>a:after,
.main-menu .main-menu__list>li:hover.dropdown>a:after,
.stricky-header .main-menu__list>li.current.dropdown>a:after,
.stricky-header .main-menu__list>li:hover.dropdown>a:after {
    color: #fff;
}

.main-menu .main-menu__list>li.dropdown>a::before {
    position: absolute;
    right: -5px;
    font-family: 'icomoon' !important;
    content: "\e904" !important;
    color: #a5b1ad;
    font-size: 10px;
    font-weight: 400;
    transform: rotate(0deg);
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    z-index: 1;
    display: none;
}

.main-menu .main-menu__list>li.current.dropdown>a:before,
.main-menu .main-menu__list>li:hover.dropdown>a:before,
.stricky-header .main-menu__list>li.current.dropdown>a:before,
.stricky-header .main-menu__list>li:hover.dropdown>a:before {
    color: var(--thm-primary-color);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: left center;
}

.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 270px;
    padding: 8px 0px 8px;
    background-color: var(--thm-white);
    -ms-flex-direction: column;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: scale(1, 0);
    transform-origin: 0 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    box-shadow: none;
    z-index: 99;
}
.main-menu .main-menu__list>li>ul:before,
.main-menu .main-menu__list>li>ul>li>ul:before,
.stricky-header .main-menu__list>li>ul:before,
.stricky-header .main-menu__list>li>ul>li>ul:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--thm-white);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
    z-index: -1;
}

.main-menu .main-menu__list>li:hover>ul,
.main-menu .main-menu__list>li>ul>li:hover>ul,
.stricky-header .main-menu__list>li:hover>ul,
.stricky-header .main-menu__list>li>ul>li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.main-menu .main-menu__list>li>ul>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul>li>ul {
    display: none;
}

.main-menu .main-menu__list>li>ul>li,
.main-menu .main-menu__list>li>ul>li>ul>li,
.stricky-header .main-menu__list>li>ul>li,
.stricky-header .main-menu__list>li>ul>li>ul>li {
    position: relative;
    width: 100%;
    padding: 0 30px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
}

.main-menu .main-menu__list>li>ul>li+li,
.main-menu .main-menu__list>li>ul>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li>ul>li+li {
    border-top: 0px solid #ffffff;
}

.main-menu .main-menu__list>li>ul>li>a,
.main-menu .main-menu__list>li>ul>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>ul>li>a {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 30px;
    color: var(--thm-black);
    letter-spacing: 0;
    font-weight: 600;
    font-style: normal;
    padding: 10px 0px;
    border-top: 1px solid var(--thm-border-color);
    -webkit-transition: 500ms;
    transition: 500ms;
    font-family: var(--thm-font);
    text-transform: uppercase;
    z-index: 1;
}

.main-menu .main-menu__list>li>ul>li:first-child>a,
.main-menu .main-menu__list>li>ul>li>ul>li:first-child>a,
.stricky-header .main-menu__list>li>ul>li:first-child>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:first-child>a {
    border-top: none;
}

.main-menu .main-menu__list>li>ul>li>a:after,
.main-menu .main-menu__list>li>ul>li>ul>li>a:after {
    font-family: 'icomoon' !important;
    content: "\e931";
    position: absolute;
    top: 0;
    left: 0px;
    bottom: 0;
    display: flex;
    align-items: center;
    color: var(--thm-primary-color);
    font-size: 16px;
    font-weight: 700;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    z-index: 2;
}

.main-menu .main-menu__list>li>ul>li:hover>a:after,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a:after {
    color: var(--thm-primary-color);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: left center;
}

.main-menu .main-menu__list>li>ul>li:last-child>a,
.main-menu .main-menu__list>li>ul>li>ul>li:last-child>a,
.stricky-header .main-menu__list>li>ul>li:last-child>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:last-child>a {
    border-bottom: none;
}

.main-menu .main-menu__list>li>ul>li:hover>a,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a {
    color: var(--thm-primary-color);
    padding-left: 25px;
}

.main-menu .main-menu__list>li>ul>li.dropdown:before {
    font-family: 'icomoon' !important;
    content: "\e913" !important;
    position: absolute;
    top: 0px;
    right: 30px;
    bottom: 0px;
    display: block;
    color: var(--thm-black);
    font-size: 1rem;;
    line-height: 52px;
    opacity: 1;
    font-weight: 100;
    z-index: 5;
    transition: all 500ms ease;
}

.main-menu .main-menu__list>li>ul>li.dropdown:hover::before {
    color: var(--thm-primary-color);
    transform: rotate(90deg);
}

.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
    top: 0;
    left: 100%;
    border-left: 10px solid transparent;
    background-color: transparent;
    min-width: 270px;
}

.main-menu .main-menu__list>li>ul>li>ul:before,
.stricky-header .main-menu__list>li>ul>li>ul:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--thm-white);
}

.main-menu .main-menu__list li ul.right-align {
    left: auto;
    right: 0;
}

.main-menu .main-menu__list li ul li>ul.right-align,
.stricky-header .main-menu__list li ul li>ul.right-align {
    top: 0;
    left: auto;
    right: 100%;
    border-left: 0px solid transparent;
    border-right: 10px solid transparent;
}

/*-------------------------------------
  # Mega Menu Css
  --------------------------------------*/
.main-menu__wrapper .main-menu__list>.megamenu {
    position: static;
}

.main-menu__wrapper .main-menu__list>.megamenu>ul {
    top: 100% !important;
    left: 150px !important;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
    border-top: none;
    max-width: 570px;
    width: 100%;
}

.main-menu__wrapper .main-menu__list>.megamenu>ul>li {
    padding: 0 !important;
}

.megamenu-content-box>.container {
    max-width: 1290px !important;
    padding: 0 !important;
}

.megamenu-content-box .row {
    --bs-gutter-x: 0px;
    --bs-gutter-y: 0px;
}

.megamenu-content-box .row ul li {
    position: relative;
    width: 100%;
    padding: 0 30px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
}

.megamenu-content-box .row ul li a {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: var(--thm-body-font-color);
    letter-spacing: 0;
    font-weight: 400;
    font-style: normal;
    padding: 11px 0px;
    border-top: 1px solid var(--thm-border-color);
    -webkit-transition: 500ms;
    transition: 500ms;
    font-family: var(--thm-font);
    text-transform: capitalize;
    z-index: 1;
}

.megamenu-content-box .row ul li:first-child a {
    border-top: none;
}

.megamenu-content-box .row ul li.current>a,
.megamenu-content-box .row ul li:hover>a {
    color: var(--thm-primary-color);
}

.mobile-nav__wrapper .megamenu-content-box .row [class*=col-] {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}

.megamenu-box .container {
    max-width: 900px !important;
}

.megamenu-box .row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 0px;
}

/*-------------------------------------
    Stricky Header Css
--------------------------------------*/
.stricky-header {
    position: fixed;
    z-index: 991;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
    visibility: hidden;
    -webkit-transform: translateY(-120%);
    transform: translateY(-120%);
    -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
    transition: visibility 500ms ease, -webkit-transform 500ms ease;
    transition: transform 500ms ease, visibility 500ms ease;
    transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.stricky-header2 {
    position: fixed;
    z-index: 991;
    top: var(--stricky-header2-top, 0px);
    left:0;
    right: 0;
    background-color: #fff;
    width: var(--stricky-header2-width, 100%);
    max-width: var(--stricky-header2-width, 100%);
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: top 200ms ease;
    transition: top 200ms ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

@media (max-width: 1199px) {
}

.stricky-header.stricky-fixed {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
}

  .mobile-nav__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    margin-right: 0px;
  }
  
  @media (min-width: 1200px) {
    .mobile-nav__buttons {
      display: none;
    }
  }
  
  .mobile-nav__buttons a {
    font-size: 20px;
    color: var(--thm-base);
    cursor: pointer;
  }
  
  .mobile-nav__buttons a+a {
    margin-left: 10px;
  }
  
  .mobile-nav__buttons a:hover {
    color: var(--thm-base);
  }

.main-menu .mobile-nav__toggler {
    position: relative;
    display: inline-block;
    color: #222;
    font-size: 30px;
    line-height: 28px;
    cursor: pointer;
    -webkit-transition: 500ms;
    transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
    color: #000000;
}

@media (min-width: 1200px) {
    .main-menu .mobile-nav__toggler {
        display: none;
    }
}

.stricky-header.main-menu {
    background-color: #ffffff;
}

.stricky-header .main-menu-box {
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.stricky-header .main-menu__wrapper {
    background-color: #ffffff;
}

.stricky-header .main-menu__wrapper-inner {
    background-color: #ffffff;
    justify-content: space-between;
}

.stricky-header .main-menu__wrapper .main-menu__list>.megamenu>ul {
    left: auto !important;
    right: 0;
}

/*----------------------------------------
    Main Header Style1
  ---------------------------------------*/
.main-header-style1 {
    position: absolute;
}

.dropdownLang:hover .dropdown-menu{
    display: block;
}



.dropdown-menu{
    min-width: auto!important;
    left:20%;
}

.main-header-style1__content {
    position: fixed;
    top:0;
    width:100%;
    display: block;
}

.main-header-style1__content .container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.main-header-style1__content-inner {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #fff;
    justify-content: space-between;
    gap: 30px;
}

.main-header-style1__content-left,
.main-header-style1__content-right {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1 1 0;
    min-width: 0;
}

.main-header-style1__content-left {
    justify-content: flex-start;
}

.main-header-style1__content-center {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.logo-box-style1 {
    position: relative;
    display: block;
}

.logo{
    width:200px;
}
.logo-en{
    width:150px;
}

.logo-box-style1 a {
    position: relative;
    display: flex;
    padding:.5rem 0;
    align-items: center;
    justify-content: center;
}

/** Main Menu Style1 Css**/
.main-menu-style1 {
    position: relative;
    display: block;
    z-index: 10;
}

.main-menu-style1 .main-menu__wrapper {
    position: relative;
}

.main-menu-style1 .main-menu__wrapper-inner {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.detay-btn a:hover{
    color:#fff!important;
}

.main-menu-style1__left {
    position: static;
    align-items: center;
    display: flex;
}

.main-menu-style1__left .main-menu-box {
    position: static;
    display: flex;
    align-items: center;
    float: left;
}

.desktop-menu__list > li{
    border-right: 1px solid #ebebeb;
    display: block;
}

.desktop-menu__list > li:last-child{
    border: 0;
}

#desktopDropdownLang{
    padding: 0;
    color: #111;
    font-size: .875rem;
    display: flex;
    align-items: center;
    top: 1px;
    position: relative;
}

.dropdownLang .dropdown-item{
    font-size: .875rem;
}

.main-header-style1__content-right {
    justify-content: flex-end;
    right: 1%;
}

.main-header-style1__content-right > * {
    margin: 0;
    flex: 0 0 auto;
}

.wishlist-link {
    position: relative;
    color: #111;
    text-decoration: none;
}

.wishlist-count {
    position: absolute;
    top: -4px;
    right: -11px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #222;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.wishlist-count:not(.has-items) {
    opacity: 0.9;
}

.header-icon-button {
    border: 0;
    background: transparent;
}

.yacht-list-style1__img {
    position: relative;
    overflow: hidden;
}

.banner-slider video{
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.wishlist-card-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #111;
    font-size: 18px;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.wishlist-card-btn.is-active {
    background: #111;
    color: #fff;
}

.wishlist-card-btn.is-active svg.wish{
    fill:#fff;
}

.empty-state-box {
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    background: #fff;
    color: #777;
    font-size: 18px;
    text-align: center;
}

.desktop-menu {
    position: relative;
    border-right: 1px solid #ebebeb;
}

.desktop-menu__list .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 0;
    background-color: var(--thm-black);
    transition: width 0.3s ease;
}

.desktop-menu__list .nav-link:hover::after {
    width: 100%;
}

.desktop-menu__topbar-list li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 0;
    background-color: var(--thm-black);
    transition: width 0.3s ease;
}

.desktop-menu__topbar-list li a:hover::after {
    width: 100%;
}

.desktop-menu__toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 999px;
    color: var(--thm-black);
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

svg.wish{
    width: 1.25rem;
    height: 1.5rem;
}
svg.search{
    width: 1.75rem;
    height: 1.75rem;
    position: relative;
}

.desktop-menu__list .dropdown-item:hover{
    color:#222;
}

.desktop-menu__toggle i {
    font-size: 16px;
}

.desktop-menu__panel {
    position: absolute;
    top: calc(100% + 11px);
    width: 100vw;
    border-top:1px solid #ebebeb;
    min-width: 100vw;
    padding:3rem 7rem;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 50;
}

.bottom-bar{
    background:#fff;
    width:100%;
    gap:.25rem;
    text-align:center;
    border-top:1px solid #ebebeb;
    padding:.25rem 0;
    display: flex;
    justify-content: center;
    font-size: .8rem;
}

.bottom-bar .bi-telephone-outbound{
    font-size:.75rem;
}

.bottom-bar i{
    margin-right:.25rem;
    color:#111;
    font-size: .875rem;
}
.bottom-bar a:last-child{
    border:none;
}
.bottom-bar a{
    padding-right: .5rem;
    border-right: 1px solid #e5e5e5;
    margin-right: .5rem;
    font-size: .75rem;
}

.desktop-menu.is-open .desktop-menu__topbar-list li a{
    color: #fff;
}

.desktop-menu.is-open .desktop-menu__panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.desktop-menu__topbar-list {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left:1rem;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
}

.desktop-menu__topbar-list li a {
    color: #111;
    font-size: .8rem;
    
    position:relative;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


.desktop-menu__list {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.desktop-menu__list > li {
    min-width: 0;
    position:relative;
}

.desktop-menu__list > li:nth-child(4n) {
    padding-right: 0;
    border-right: 0;
}

.desktop-menu__list ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-header-style1__content-inner.desktop-menu-open {
    background-color: #fff !important;
}

.desktop-menu.is-open .desktop-menu__toggle{
    color: #111;
}

.main-header-style1__content-inner.desktop-menu-open .main-header-style1__content-center .logo {
    display: block;
}

.desktop-menu__list > li > a,
.desktop-menu__list > li > .dropdown > .btn,
.desktop-menu__list > li > .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    width: fit-content;
    letter-spacing: 1px;
    margin-bottom:.75rem;
    padding: 0;
    position: relative;
    color: var(--thm-black);
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.4;
    text-transform: uppercase;
}

.desktop-menu__list .dropdown-item,
.desktop-menu__list li ul li a {
    display: block;
    
    width: fit-content;
    padding: 0;
    color: #777;
    font-size: .875rem;
    line-height: 1.6;
    background: transparent;
}

.desktop-menu__list .dropdown-menu,
.desktop-menu__list > li > ul {
    position: static;
    display: block;
    float: none;
    width: 100%;
    min-width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none !important;
}

.desktop-menu__list .dropdown-menu.show {
    display: block;
}

.desktop-menu__list .dropdown-menu li a,
.desktop-menu__list li ul li a {
    border-radius: 0;
}

.desktop-menu__list li ul {
    margin-top: 8px;
}

.menu-source-list {
    position: relative;
    width: 100%;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

@media (max-width: 1199px) {
    .desktop-menu {
        display: none;
    }
}

@media (min-width: 1200px) {
    .main-menu-box > .mobile-nav__toggler {
        display: none;
    }
}

.login-signup-box {
    position: relative;
    display: block;
    margin-right: 40px;
}

.login-signup-box ul {
    position: relative;
    display: flex;
    align-items: center;
}

.login-signup-box ul li {
    position: relative;
    display: block;
}

.login-signup-box ul li::before {
    content: "";
    position: absolute;
    top: 9px;
    right: -8px;
    bottom: 0;
    width: 1px;
    height: 12px;
    background-color: var(--thm-white);
    transform: rotate(30deg);
}

.login-signup-box ul li:last-child:before {
    display: none;
}

.login-signup-box ul li+li {
    margin-left: 15px;
}

.login-signup-box ul li a {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
    font-size: 14px;
    line-height: 30px;
    font-family: var(--thm-font);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.login-signup-box ul li a:hover {
    color: var(--thm-primary-color);
}

.header-contact-info-style1 {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 2rem;
}

.header-contact-info-style1 p {
    color: var(--thm-white);
    font-size: 14px;
    line-height: 30px;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.header-contact-info-style1 a {
    color: var(--thm-white);
    font-size: 14px;
    line-height: 30px;
    font-family: var(--thm-font);
    font-weight: 400;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin-left: 7px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.header-contact-info-style1 a:hover {
    color: var(--thm-primary-color);
}

.header-button-style1 {
    position: relative;
    display: block;
    line-height: 0;
}

.header-button-style1 .btn-one {
    line-height: 30px;
}

.header-button-style1 .btn-one::before {
    background-color: var(--thm-primary-color);
}

.header-button-style1 .btn-one::after {
    background-color: transparent;
    border: 1px solid var(--thm-white);
}

.header-button-style1 .btn-one i {
    margin-right: 0px;
    margin-left: 10px;
}

.stricky-header--style1.main-menu {
    background-color: var(--thm-black-bg);
    z-index: 999999;
}

.stricky-header--style1 .main-menu__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    background-color: var(--thm-black-bg);
}

.stricky-header--style1 .main-menu__wrapper-inner {
    background-color: var(--thm-black-bg);
}

.stricky-header--style1 .main-menu__list>li {
    position: relative;
    padding-top: 32px;
    padding-bottom: 32px;
}

.sticky-logo-box-style1 {
    position: relative;
    display: none;
}

.sticky-logo-box-style1 a {
    position: relative;
    display: inline-block;
}

.stricky-header .main-menu__wrapper-inner .sticky-logo-box-style1 {
    display: block;
}

.language-switcher-style1 .text {
    position: relative;
    display: block;
    margin-right: 5px;
    color: #898ba2;
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    font-family: var(--thm-font);
    text-transform: capitalize;
}

.language-switcher-style1 .select-box {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.language-switcher-style1 .nice-select {
    position: relative;
    display: block;
    background-color: transparent;
    border-radius: 0;
    border: none;
    width: 100%;
    height: 26px;
    color: var(--thm-white);
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    outline: none;
    padding-left: 0px;
    padding-right: 25px;
    transition: all 0.2s ease-in-out;
    font-family: var(--thm-font);
}

.language-switcher-style1 .nice-select:after {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    content: "\e90e" !important;
    font-family: 'icomoon' !important;
    color: #898ba2;
    font-size: 16px;
    top: 0;
    right: 0;
    bottom: 0;
    margin: 0px;
    font-weight: 400;
    border: none !important;
    transform: rotate(0deg) !important;
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    height: 100%;
    width: 20px;
}

.language-switcher-style1 .nice-select .list {
    background-color: #ffffff;
    border-radius: 0px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    padding: 0px 0 0px;
    margin-top: 10px;
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transform: scale(1.0) translateY(30px);
    -ms-transform: scale(1.0) translateY(30px);
    transform: scale(1.0) translateY(30px);
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    height: 0;
    width: 120px;
    right: 0 !important;
    left: auto !important;
}

.language-switcher-style1 .nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    height: auto;
}

.language-switcher-style1 .nice-select .option {
    color: var(--thm-black);
    padding-left: 20px;
    padding-right: 20px;
    font-size: 15px;
    line-height: 40px;
    min-height: 40px;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.language-switcher-style1 .nice-select .option+.option {
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.language-switcher-style1 .nice-select .option:hover,
.language-switcher-style1 .nice-select .option.focus,
.language-switcher-style1 .nice-select .option.selected.focus {
    color: var(--thm-black) !important;
    background-color: var(--thm-primary-color);
}
/*-----------------------------------------------
# Main Slider Slider
------------------------------------------------*/
.main-slider-style1 {
    position: relative;
    display: block;
    padding: 0;
    z-index: 10;
}

.main-slider-style1 .swiper-slide {
    position: relative;
}

.partner-style1__single img{
    height:80px;
    object-fit: contain;
    padding: .5rem;
}

.banner-slider-control-wrap{
    position: absolute;
    bottom: 10%;
    text-align: center;
    width:100%;
}

.main-slider-style1 .container {
    position: relative;
    padding-top: 300px;
    padding-bottom: 195px;
    height: 100vh;
    z-index: 30;
}

.main-slider-style1 .image-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    transition: transform 7000ms ease, opacity 1500ms ease-in;
    transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    z-index: 1;
}

.main-slider-style1 .image-layer:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.07) 37.08%, rgba(1, 0, 31, 0.7) 100%),
        linear-gradient(180deg, rgba(0, 10, 44, 0.9) 0%, rgba(2, 7, 44, 0.45) 31.45%, rgba(6, 0, 42, 0) 69.88%);
}

.main-slider-style1 .image-layer:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    bottom: 0;
    width: 100%;

}

.main-slider-style1 .swiper-slide-active .image-layer {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
}

.bottom-nav{
    position: absolute;
    bottom: 0;
    z-index: 3;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

.bottom-nav ul{
    display: flex;
    justify-content: center;
}
.bottom-nav ul li{
    margin:2rem;
    text-align: center;
    width:100px;
}

.b-icon-text{
    color: #fff;
    font-weight: bold;
    margin-top:.5rem;
    
}

.main-slider-style1 .content-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.main-slider-style1 .big-title {
    position: relative;
    display: block;
    margin: 0px 0 0px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(-120px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-120px);
    transform: perspective(400px) rotateY(0deg) translateY(-120px);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    z-index: 10;
}

.main-slider-style1 .swiper-slide-active .big-title {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.main-slider-style1 .big-title h2 {
    color: #ffffff;
    font-size: 100px;
    font-weight: 100;
    text-transform: uppercase;
}

.main-slider-style1 .text {
    position: relative;
    display: block;
    max-width: 645px;
    margin: 22px 0px 40px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(0deg) translateX(200px);
    -ms-transform: perspective(400px) rotateX(0deg) translateX(200px);
    transform: perspective(400px) rotateX(0deg) translateX(200px);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    z-index: 10;
}

.main-slider-style1 .swiper-slide-active .text {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(0deg) translateX(0px);
    -ms-transform: perspective(400px) rotateX(0deg) translateX(0px);
    transform: perspective(400px) rotateX(0deg) translateX(0px);
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.main-slider-style1 .text p {
    color: var(--thm-white);
    font-weight:100;
    font-size: 1rem;;
    line-height: 32px;
}

.main-slider-style1 .btn-box {
    position: relative;
    display: block;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    z-index: 10;
}

.main-slider-style1 .swiper-slide-active .btn-box {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.main-slider__nav .swiper-button-next,
.main-slider__nav .swiper-button-prev {
    position: relative;
    left: 0;
    right: 0;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: var(--thm-black);
    background-color: var(--thm-white);
    border: 1px solid var(--thm-white);
    border-radius: 4px;
    margin: 20px 0;
    text-align: center;
    transition: all 500ms ease;
    z-index: 100;
}

.main-slider__nav .swiper-button-next:hover,
.main-slider__nav .swiper-button-prev:hover {
    color: #ffffff;
    background-color: var(--thm-primary-color);
    border-color: var(--thm-primary-color);
}

.main-slider__nav .swiper-button-next::after,
.main-slider__nav .swiper-button-prev::after {
    display: none;
}
****/

/*****
#main-slider-pagination {
    position: absolute;
    top: 0;
    right: 50px;
    bottom: 0px;
    left: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    margin: 0;
    z-index: 100;
    width: auto;
}

#main-slider-pagination .swiper-pagination-bullet {
    position: relative;
    display: inline-block;
    width: 15px;
    height: 15px;
    transition: all 100ms linear;
    transition-delay: 0.1s;
    margin: 0;
    background: transparent;
    border-radius: 0;
}

#main-slider-pagination .swiper-pagination-bullet:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0;
    right: 0;
    background-color: var(--thm-white);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    transform: scale(1.0);
    transition: all 100ms linear;
    transition-delay: 0.1s;
}

#main-slider-pagination .swiper-pagination-bullet+.swiper-pagination-bullet {
    margin-top: 20px;
}

#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: transparent;
}

#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    transform: scale(1);
    background-color: var(--thm-primary-color);
}
****/

.banner-slider-control-wrap {
    position: absolute;
    left: 50px;
    bottom: 50px;
    z-index: 100;
}

.banner-slider-control-wrap .swiper-counter {
    position: relative;
    display: inline-flex;
    align-items: baseline;
    justify-content: space-between;
    width: 110px;
    z-index: 9;
}

.banner-slider-control-wrap .swiper-counter div {
    position: relative;
    display: inline-block;
    color: transparent;
    -webkit-text-stroke: 1px var(--thm-white);
    font-size: 80px;
    line-height: 80px;
    font-weight: 700;
    font-family: var(--thm-font-2);
}

.banner-slider-control-wrap .swiper-counter div#current {
    margin-right: 1rem;
}

.banner-slider-control-wrap .swiper-counter div#total {
    position: relative;
    right: 0px;
    color: var(--thm-white);
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    -webkit-text-stroke: 0px var(--thm-white);
    font-family: var(--thm-font-2);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.banner-slider-control-wrap .swiper-counter div#total:before {
    content: '/';
    position: absolute;
    left: -15px;
    width: 0px;
    height: 0px;
    top: 0px;
}

.banner-slider-nav {
    position: absolute;
    top: 0;
    right: 50px;
    bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 999999;
}

.banner-slider-control {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.30);
    color: rgba(255, 255, 255, 0.90);
    font-size: 24px;
    line-height: 60px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s ease;
    transition: all 0.2s ease;
    margin: 10px 0;
    z-index: 1;
}

.banner-slider-control:before {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 0;
    width: 100%;
    border-radius: 50%;
    content: '';
    background: var(--thm-primary-color);
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
    z-index: -1;
}

.banner-slider-control:hover:before {
    height: 100%;
}

.banner-slider-control i {
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.banner-slider-control.banner-slider-button-next {
    position: relative;
    margin-top: 0px;
}

@keyframes scale5 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

@keyframes scale5 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

@keyframes scale5 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.banner-style1 .slider-bg-slide {
    width: 100%;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
/*** 
========================
    Partner Style1 Css
========================
***/
.partner-style1 {
    background-color: var(--thm-white);
    padding: 20px 0px 5rem;
}

.select2-dropdown{
    background-color: var(--thm-black-bg);
    border:1px solid rgb(255, 255, 255, 0.2);
}

.select2-container .select2-selection--single .select2-selection__rendered{
    padding-right: 0;
}

.select2-container--default .select2-selection--single .select2-selection__clear{
    position:absolute;
    right:10%;
    font-weight:100;
}

.select2-container--default .select2-selection--single .select2-selection__rendered{
    color:#fff;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b{
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    color:#fff;
    height: 8px;
    border-left: none;
    border-top: none;
    border-right: 1px solid;
    border-bottom: 1px solid;
    transform: translate(-50%, -50%) rotate(45deg);
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{
    border-left: 1px solid;
    border-top: 1px solid;
    border-right: none;
    border-bottom: none;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder{
    font-style: normal;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b:after{
    
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    right: 20px;
    margin-top: 0px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    z-index: 10;
}

.select2-container--default .select2-selection--single{
    -webkit-user-select: none;
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding-left: 0.5rem;
    width:100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
    height: 3.5rem;
    border-radius: 5px;
    background-color: var(--thm-black-bg);
    border: 1px solid rgb(255, 255, 255, 0.2);
    overflow: hidden;
}

.partner-style1__title {
    position: relative;
    display: block;
}

.partner-style1__title h2 {
    font-size: 48px;
    line-height: 1.1em;
}

.partner-style1__inner-box {
    position: relative;
    display: block;
    overflow: hidden;
    padding-top: 52px;
}

.partner-style1__single {
    position: relative;
    display: block;
}

.partner-style1__single a {
    position: relative;
    display: block;
    border-radius:5px;
    background: transparent;
    border: 1px solid var(--thm-border-color);
    transition: all 500ms ease;
}

.partner-style1__single:hover a {
    border: 1px solid var(--thm-primary-color);
}

.partner-style1__single a::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background: var(--thm-primary-color);
    transform: perspective(400px) scaleX(0);
    transform-origin: center;
    transition: all 500ms ease;
    z-index: -1;
}

.partner-style1__single:hover a::before {
    transform: perspective(400px) scaleX(1.0);
}

.partner-style1__single a img {
    width: auto;
}

.partner-style1__single a .overlay-img {
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: all 500ms ease;
}

.partner-style1__single:hover a .overlay-img {
    opacity: 1;
}

.partner-style1__single a .overlay-img img {
    width: auto;
}
/*================================
    Fact Counter Style1 Css
================================*/
.fact-counter-style1 {
    margin-top: -105px;
    z-index: 20;
}

.fact-counter-style1 .row {
    --bs-gutter-x: 0px;
    display: flex;
    flex-wrap: wrap;
}

.fact-counter-style1__inner {
    position: relative;
    display: block;
    background-color: var(--thm-white);
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
    padding: 23.91px 0px 24.8px;
}

.fact-counter-style1 ul li {
    position: relative;
    display: block;
    flex: 0 0 25%;
    max-width: 25%;
}

@media (max-width: 991px) {
    .fact-counter-style1 ul li {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 575px) {
    .fact-counter-style1 ul li {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.fact-counter-style1 ul li::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    bottom: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background-color: #E9E9E9;
}

.fact-counter-style1 ul li:last-child:before {
    display: none;
}

.single-fact-counter-style1 {
    position: relative;
    display: block;
    text-align: center;
}

.single-fact-counter-style1 .odometer-counting {
    position: relative;
    display: block;
}

.single-fact-counter-style1 .odometer-counting h2 {
    color: #F2F2F2;
    font-size: 144px;
    line-height: 1.0em;
    font-family: var(--thm-font-2);
    font-weight: 700;
    width: 150px;
}

.single-fact-counter-style1 .title {
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 0;
    bottom: 0;
    right: 0;
    transform: translateY(-50%);
}

.single-fact-counter-style1 .title h3 {
    font-size: 28px;
    line-height: 28px;
}
/*** 
=============================================
   Testimonial Style1 Css
=============================================
***/
.testimonial-style1 {
    background-color: var(--thm-gray-bg);
    padding: 125px 0px 120px;
}

.testimonial-style1__bg {
    position: absolute;
    top: 0px;
    left: 0;
    bottom: 0px;
    overflow: hidden;
    width: calc((100% - 0px) / 2);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    z-index: 11;
}

.testimonial-style1__bg2 {
    position: absolute;
    top: 0px;
    right: 0;
    bottom: 0px;
    overflow: hidden;
    width: calc((100% + 0px) / 2);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    opacity: 0.1;
    z-index: -1;
}

.testimonial-style1__content {
    position: relative;
    display: block;
    margin-left: 820px;
    margin-right: -150px;
}

.testimonial-style1__inner {
    position: relative;
    display: block;
}

.testimonial-style1__content .sec-title {
    padding-left: 15px;
    padding-bottom: 39px;
}

.single-testimonial-style1 {
    position: relative;
    display: block;
    padding-left: 15px;
    padding-bottom: 15px;
    padding-right: 15px;
    z-index: 1;
}

.single-testimonial-style1::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 0;
    bottom: 0;
    right: 27px;
    opacity: 0.5;
    background-color: var(--thm-white);
    z-index: -1;
}

.single-testimonial-style1-inner {
    position: relative;
    display: block;
    background: var(--thm-white);
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
    padding: 30px 40px 40px;
}

.single-testimonial-style1-inner .icon {
    position: relative;
    display: inline-block;
}

.single-testimonial-style1-inner .icon img {
    width: auto;
}

.single-testimonial-style1-inner .rating-box {
    position: absolute;
    top: 30px;
    right: -12px;
    display: flex;
    align-items: center;
    background-color: var(--thm-primary-color);
    padding: 8px 15px 8px;
}

.single-testimonial-style1-inner .rating-box::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -13px;
    width: 12px;
    height: 13px;
    background-color: #7d6646;
    clip-path: polygon(0 0, 0 100%, 100% 0);
}

.single-testimonial-style1-inner .rating-box li {
    position: relative;
    display: block;
    color: var(--thm-white);
    font-size: 14px;
    line-height: 0;
}

.single-testimonial-style1-inner .rating-box li+li {
    margin-left: 5px;
}

.single-testimonial-style1-inner .text {
    position: relative;
    display: block;
    padding-top: 14px;
}

.single-testimonial-style1-inner .text p {
    font-size: 1rem;;
    line-height: 26px;
}

.single-testimonial-style1-inner .author-box {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 23px;
}

.single-testimonial-style1-inner .author-box .img {
    position: relative;
    display: block;
}

.single-testimonial-style1-inner .author-box .img img {
    width: auto;
}

.single-testimonial-style1-inner .author-box .title {
    position: relative;
    display: block;
    margin-left: 15px;
    flex: 1;
}

.single-testimonial-style1-inner .author-box .title h3 {
    font-size: 24px;
    line-height: 34px;
}

.single-testimonial-style1-inner .author-box .title p {
    margin: 0;
}

.testimonial-style1-carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.testimonial-style1-carousel.owl-carousel .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

.testimonial-style1-carousel.owl-carousel .owl-item.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-style1-carousel.owl-nav-style-one.owl-theme .owl-nav {
    position: absolute;
    right: -140px;
    bottom: -120px;
}

.testimonial-style1-carousel.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] {
    background-color: var(--thm-white);
}

.testimonial-page-one .row {
    --bs-gutter-x: 40px;
}

.testimonial-page-one .single-testimonial-style1 {
    padding-left: 0px;
    padding-bottom: 0px;
    padding-right: 0px;
    margin-bottom: 30px;
}

.service-style1 .sec-title h2 {
    color: var(--thm-white);
}

.single-service-style1 .img-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.single-service-style1 .img-box::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    background: rgb(25, 26, 28);
    background: linear-gradient(0deg, rgba(25, 26, 28, 1) 0%, rgba(25, 26, 28, 0.5018382352941176) 53%, rgba(25, 26, 28, 0.20211834733893552) 100%);
    opacity: 0;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
}

.single-service-style1:hover .img-box::before {
    opacity: 1;
}

.single-service-style1 .img-box img {
    width: 100%;
}

.single-service-style1:hover .img-box img {
    -webkit-transform: scale(1.06) translateY(8px);
    transform: scale(1.06) translateY(8px);
}

.single-service-style1 .img-box .overlay-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 70px;
    opacity: 1;
    transform: translateY(0%);
    background-color: #212325;
    border-left: 1px solid #373a3c;
    color: var(--thm-primary-color);
    font-size: 40px;
    line-height: 40px;
    -webkit-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
    z-index: 5;
}

.single-service-style1:hover .img-box .overlay-icon {
    opacity: 0;
    transform: translateY(100%);
}

.single-service-style1 .img-box .overlay-icon2 {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    bottom: 0px;
    right: 0;
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateY(70px);
    transform-origin: bottom;
    -webkit-transition: all 0.9s ease;
    -o-transition: all 0.9 ease;
    transition: all 0.9s ease;
    z-index: 5;
}

.single-service-style1:hover .img-box .overlay-icon2 {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition: all .4s ease-in-out .1s;
}

.single-service-style1 .img-box .overlay-icon2 span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: var(--thm-white);
    color: var(--thm-primary-color);
    font-size: 40px;
    line-height: 40px;
}

.single-service-style1 .content-box {
    position: relative;
    display: block;
    background-color: #2c2e30;
    margin-left: -30px;
    padding: 22px 30px 22px;
    padding-right: 20px;
}

.single-service-style1 .content-box::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    bottom: 0;
    transform: translateY(-50%);
    width: 4px;
    height: 47px;
    background-color: var(--thm-primary-color);
}

.single-service-style1 .content-box h3 {
    font-size: 20px;
    line-height: 30px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.single-service-style1 .content-box h3 a {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style1 .content-box h3 a:hover {
    color: var(--thm-primary-color);
}

.single-service-style1 .content-box p {
    color: #aeb0b4;
    font-size: 17px;
}

.single-service-style1 .btn-box {
    position: relative;
    display: block;
    line-height: 0;
}

.single-service-style1 .btn-box .btn-one {
    width: 100%;
    padding-top: 7px;
    padding-bottom: 7px;
    padding-left: 30px;
    padding-right: 30px;
}

.single-service-style1 .btn-box .btn-one::before {
    background-color: var(--thm-primary-color);
}

.single-service-style1 .btn-box .btn-one::after {
    background-color: transparent;
    border: 1px solid #373a3c;
    border-top: 0;
}

.intro-style1 .advertisement-title .text {
    position: relative;
    display: block;
    padding-top: 9px;
}

.intro-style1 .advertisement-title .text p {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aeb0b4;
    font-size: 17px;
}

.intro-style1 .advertisement-title .text p a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-white);
    font-size: 16px;
    line-height: 26px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    margin-left: 10px;
}

.intro-style1 .advertisement-title .text p a:hover {
    color: var(--thm-primary-color);
}

.intro-style1 .advertisement-title .text p a i {
    margin-right: 9px;
    font-size: 1rem;;
}

.all-service-page ul li:hover a::before,
.all-service-page ul li.active a::before {
    opacity: 0;
    transform: translateY(-70px);
}

.all-service-page ul li:hover a::after,
.all-service-page ul li.active a::after {
    opacity: 1;
    transform: translateY(0px);
}

.all-service-page ul li:hover a h4,
.all-service-page ul li.active a h4 {
    color: var(--thm-white);
}

.all-service-page ul li a .icon {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #e7e7e7;
    color: var(--thm-black);
    font-size: 20px;
    opacity: 1;
    transform: translateY(0px);
    -webkit-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
}

.all-service-page ul li:hover a .icon,
.all-service-page ul li.active a .icon {
    opacity: 0;
    transform: translateY(40px);
}

.all-service-page ul li a .icon2 {
    position: absolute;
    top: 5px;
    right: 5px;
    bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background-color: var(--thm-white);
    color: var(--thm-primary-color);
    font-size: 25px;
    opacity: 0;
    transform: translateX(70px);
    -webkit-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
}

.all-service-page ul li:hover a .icon2,
.all-service-page ul li.active a .icon2 {
    color: var(--thm-white);
    background-color: var(--thm-primary-color);
    opacity: 1;
    transform: translateX(0px);
}

.single-sidebar-style1 .download-box ul li .inner {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--thm-gray-bg);
    padding: 40px 25px 21px;
}

.single-sidebar-style1 .download-box ul li .icon {
    position: relative;
    display: block;
    color: var(--thm-primary-color);
    font-size: 40px;
}

.single-sidebar-style1 .download-box ul li .title {
    position: relative;
    display: block;
    padding-top: 11px;
}

.single-sidebar-style1 .download-box ul li .title h3 {
    font-size: 16px;
    line-height: 26px;
    text-transform: uppercase;
}

.single-sidebar-style1 .download-box ul li .title h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-sidebar-style1 .download-box ul li .title h3 a:hover {
    color: var(--thm-primary-color);
}

.single-sidebar-style1 .download-box ul li .btn-box {
    position: relative;
    display: block;
    padding-top: 12px;
}

.single-sidebar-style1 .download-box ul li .btn-box a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-black);
    font-size: 16px;
    line-height: 26px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-sidebar-style1 .download-box ul li .btn-box a:hover {
    color: var(--thm-primary-color);
}

.single-sidebar-style1 .download-box ul li .btn-box a span {
    font-size: 20px;
    margin-right: 10px;
}

.sidebar-banner-style1-content .title {
    position: relative;
    display: block;
    padding-bottom: 15px;
}

.sidebar-banner-style1-content .title h3 {
    color: var(--thm-white);
    font-size: 24px;
    line-height: 34px;
    text-transform: uppercase;
}

.sidebar-banner-style1-content .title h2 {
    color: var(--thm-white);
    font-size: 56px;
    line-height: 1.0em;
    text-transform: uppercase;
    margin: 1px 0px 5px;
}

.sidebar-banner-style1-content .text {
    position: relative;
    display: block;
}

.sidebar-banner-style1-content .text p {
    color: #aeb0b4;
}

.sidebar-banner-style1-content .btn-box {
    position: relative;
    display: block;
    padding-top: 27px;
}

.sidebar-banner-style1-content .btn-box a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-white);
    font-size: 16px;
    line-height: 26px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar-banner-style1-content .btn-box a:hover {
    color: var(--thm-primary-color);
}

.sidebar-banner-style1-content .btn-box a span {
    font-size: 20px;
    margin-right: 10px;
}

.sidebar-banner-style1-content .phone-box .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--thm-black-bg);
    color: var(--thm-primary-color);
    font-size: 25px;
}

.service-details-content__top .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    margin-top: 43px;
}

.service-details-content__top .img-box img {
    width: 100%;
}

.premier-services-style1 .main-content .text {
    position: relative;
    display: block;
    padding-top: 16px;
}

.premier-services-style1 .main-content .text p {
    margin: 0;
}

.premier-services-style1 .main-content ul li .icon {
    position: relative;
    display: block;
    color: var(--thm-primary-color);
    font-size: 1rem;;
    line-height: 0;
    transform: rotate(180deg);
    margin-right: 15px;
}

.premier-services-style1 .overlay-btn {
    position: absolute;
    left: 40px;
    bottom: 40px;
    opacity: 0;
    transform: translateY(-70px);
    z-index: 5;
}

.premier-services-style1:hover .overlay-btn {
    opacity: 1;
    transform: translateY(0px);
    -webkit-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
}

.premier-services-style1 .overlay-btn a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--thm-white);
    color: var(--thm-black);
    font-size: 20px;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.premier-services-style1 .overlay-btn a:hover {
    color: var(--thm-white);
    background-color: var(--thm-primary-color);
}

.single-safty-rules .content-box {
    position: relative;
    display: block;
    background-color: var(--thm-white);
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.12);
    padding: 22px 70px 23px;
    padding-right: 50px;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.single-safty-rules:hover .content-box {
    background-color: var(--thm-black-bg);
}

.single-safty-rules .content-box h3 {
    font-size: 20px;
    line-height: 30px;
    text-transform: uppercase;
    margin-bottom: 11px;
    -webkit-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
}

.single-safty-rules:hover .content-box h3 {
    color: var(--thm-white);
}

.single-safty-rules .content-box p {
    margin: 0;
    -webkit-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
}

.single-safty-rules:hover .content-box p {
    color: #aeb0b4;
}

.service-details-facility-amenities__inner .text {
    position: relative;
    display: block;
}

.service-details-facility-amenities .text p {
    margin: 0;
}

.service-details-facility-amenities__inner ul li .icon {
    position: relative;
    display: block;
    color: var(--thm-primary-color);
    font-size: 20px;
    line-height: 0;
    margin-right: 11px;
}

.services-overview__left .sec-title {
    padding-bottom: 31px;
}

.services-overview__left .text {
    position: relative;
    display: block;
}

.services-overview__left .text p {
    margin: 0;
}

.services-overview__left .download-box .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: transparent;
    border: 1px solid #e3e3e3;
    color: var(--thm-primary-color);
    font-size: 25px;
    line-height: 0;
}

.services-overview__left .download-box .content .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    padding-top: 10px;
}

.services-overview__left .download-box .content .btn-box h5 {
    position: relative;
    display: flex;
    align-items: center;
    color: #a9a7a6;
    font-size: 16px;
    line-height: 25px;
    text-transform: uppercase;
}

.services-overview__left .download-box .content .btn-box h5 a {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    margin-right: 5px;
}

.services-overview__left .download-box .content .btn-box h5 a i {
    margin-right: 10px;
    font-size: 20px;
}

.services-overview__left .download-box .content .btn-box h5 a:hover {
    color: var(--thm-primary-color);
}

.services-overview__right .big-title {
    position: absolute;
    top: 15px;
    left: -11px;
    writing-mode: vertical-lr;
    transform: rotate(-180deg);
    color: var(--thm-gray-bg);
    font-size: 56px;
    line-height: 1.0em;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
}

.services-overview__right .title {
    position: relative;
    display: block;
}

.services-overview__right .title h3 {
    font-size: 30px;
    line-height: 40px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.services-overview__right .list-item {
    position: relative;
    display: block;
    padding-top: 32px;
}

.services-overview__right .list-item li {
    position: relative;
    display: block;
    padding-left: 55px;
}

.services-overview__right .list-item li+li {
    margin-top: 25px;
}

.services-overview__right .list-item li .icon {
    position: absolute;
    top: 8px;
    left: 0;
    color: var(--thm-primary-color);
    font-size: 30px;
    line-height: 0;
}

.services-overview__right .list-item li .text {
    position: relative;
    display: block;
}

.services-overview__right .list-item li .text h3 {
    font-size: 20px;
    line-height: 30px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.services-overview__right .list-item li .text p {
    margin: 0;
}

.single-contact-style1 .icon-box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--thm-primary-color);
    margin: 0 auto;
    color: var(--thm-white);
    font-size: 45px;
    line-height: 0;
    z-index: 1;
}

.single-contact-style1 .content-box {
    position: relative;
    display: block;
    text-align: center;
    background-color: var(--thm-white);
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.07);
    padding: 75px 75px 43px;
}

.single-contact-style1 .content-box h3 {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 9px;
}

.single-contact-style1 .content-box h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-contact-style1 .content-box h3 a:hover {
    color: var(--thm-primary-color);
}

.single-contact-style1 .content-box p {
    margin: 0;
}

.single-contact-style1 .content-box p a {
    color: var(--thm-body-font-color);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-contact-style1 .content-box p a:hover {
    color: var(--thm-primary-color);
}

.contact-form form .form-group {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.contact-form form .input-box {
    position: relative;
    display: block;
}

.contact-form form .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    margin: 20px 0px 0px;
}

.contact-form form button.btn-one::before {
    background-color: #212325;
}

.single-team-style1 .img-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.single-team-style1 .img-box::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    bottom: 20px;
    right: 20px;
    background-color: var(--thm-primary-color);
    opacity: 0;
    transform: perspective(400px) scaleX(0);
    transform-origin: center;
    transition: all 500ms ease;
    z-index: 1;
}

.single-team-style1:hover .img-box::before {
    opacity: .8;
    transform: perspective(400px) scaleX(1.0);
}

.single-team-style1 .img-box img {
    width: 100%;
    transform: scale(1.0);
}

.single-team-style1:hover .img-box img {
    transform: scale(1.05) rotate(0deg);
}

.single-team-style1 .img-box .social-icon {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    transform: perspective(400px) scaleX(0) translateY(0px);
    transition: all 400ms ease;
    z-index: 3;
}

.single-team-style1:hover .img-box .social-icon {
    opacity: 1;
    transform: perspective(400px) scaleX(1.0) translateY(0px);
    transition-delay: 400ms;
}

.single-team-style1 .img-box .social-icon ul {
    position: relative;
    display: block;
    align-items: center;
}

.single-team-style1 .img-box .social-icon ul li {
    position: relative;
    display: block;
}

.single-team-style1 .img-box .social-icon ul li+li {
    margin-top: 10px;
}

.single-team-style1 .img-box .social-icon ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background-color: var(--thm-white);
    color: var(--thm-black);
    font-size: 1rem;;
    line-height: 0;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.single-team-style1 .img-box .social-icon ul li a:hover {
    color: var(--thm-white);
    background-color: var(--thm-black);
}

.team-details__content .title-box1 .text {
    position: relative;
    display: block;
    padding-top: 7px;
}

.team-details__content .title-box1 .text p {
    margin: 0;
}

.team-details__content .title-box1 .text p+p {
    margin-top: 25px;
}

.team-details__content .single-contact-box .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--thm-primary-color);
    color: var(--thm-white);
    font-size: 20px;
    line-height: 0;
}

.team-details__content .single-contact-box .title {
    position: relative;
    display: block;
    padding-top: 12px;
}

.team-details__content .single-contact-box .title h3 {
    font-size: 20px;
    line-height: 30px;
}

.team-details__content .single-contact-box .title h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.team-details__content .single-contact-box .title h3 a:hover {
    color: var(--thm-primary-color);
}

.team-details__content .title-box2 .text {
    position: relative;
    display: block;
    padding-top: 15px;
}

.team-details__content .title-box2 .text p {
    margin: 0;
}

.team-details__content .title-box3 .text {
    position: relative;
    display: block;
    padding-top: 15px;
}

.team-details__content .title-box3 .text p {
    margin: 0;
}

.progress-box .count-text {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    font-family: var(--thm-font);
    float: none;
}

.contact__form form .form-group {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.contact__form form .input-box {
    position: relative;
    display: block;
}

.contact__form form .btn-box {
    position: relative;
    display: block;
}

.team-details__img .inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.team-details__img .inner img {
    width: 100%;
}

.breadcrumb-style1 .title {
    position: relative;
    display: block;
    margin-bottom: 14px;
    z-index: 1;
}

.breadcrumb-style1 .title h2 {
    color: var(--thm-white);
    font-size: 80px;
    line-height: 1.1em;
    font-weight: 700;
    text-transform: capitalize;
}

.breadcrumb-menu ul li a:hover,
.breadcrumb-menu ul li.active {
    color: var(--thm-primary-color)
}
.btn-one svg{
    margin-left:.5rem;
    width:32px;
}
.single-yacht-list-style1{
    padding: 2rem;
    margin-bottom:1rem;
}
.single-yacht-list-style1 img{
    max-height: 300px;
    height:300px;
    width:100%;
    margin-bottom:1rem;
    object-fit: cover;
    transition: 1s all ease-in-out;
}
.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu){
    display:none!important;
}
.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){
    width: 100%!important;
}
.yacht-list-style1__sidebar{
    background:#fff;
    padding:2rem;
    border-radius:7px;
    margin-bottom:2rem;
    border:1px solid #ebebeb;
    box-shadow: 8px 16px 10px 5px #0000000a;
}
.yacht-list-style1__sidebar .select2-container--default .select2-selection--single{
    background:transparent;
    border:1px solid #ebebeb;
    justify-content:left;
    padding-left: 1.5rem;
}
.yacht-list-style1__sidebar .select2-container--default .select2-selection--single .select2-selection__placeholder{
    color: #000;
    font-weight: 600;
}
.yacht-list-style1__sidebar .select2-container--default .select2-selection--single .select2-selection__arrow b{
    color:#000;
}
.yacht-list-style1__sidebar .select2-container--default .select2-selection--single .select2-selection__arrow{
    right:5%;
}
.yacht-list-style1__sidebar .btn-one{
    justify-content: center;
}
.yacht-list-style1__sidebar .select2-container--default .select2-selection--single .select2-selection__rendered{
    font-weight: 600;
    color:#000
}

.yacht-details-style3__img--thumb{
    height: auto;
}

.yacht-details-style3__gallery{
    grid-template-columns: 65% 35%;
    gap:.5rem;
    display: grid;  
    margin-top:7rem;
}
.single-yacht-list-style1 img:hover{
    transform:scale(1.02);
}

.gal-first{
    height: 700px;
}

.overlayy{
    position: relative;
}

.overlayy2{
    position: relative;
}

.yacht-details-style3__img--main{
    height: 700px;
}

.sold-badge {
    background: #c0392b;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-align:center;
    z-index: 3;
    margin-top:2.5rem;
    letter-spacing: 4px;
    padding: 10px 28px;
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
    text-transform: uppercase;
    border-radius: 2px;
}

.sold-badge2 {
    position: absolute;
    background: #c0392b;
    color: #fff;
    font-size: 1rem;
    transform: rotate(-30deg);
    font-weight: 700;
    text-align: center;
    z-index: 3;
    top: 10%;
    left:2%;
    letter-spacing: 4px;
    padding: .5rem 1rem;
    border-radius: 10px;
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
    border-radius: 5px;
}

.overlayy:before{
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    bottom: 0;
    pointer-events: none;
    right: 0;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.07) 37.08%, rgba(1, 0, 31, 0.5) 100%), linear-gradient(180deg, rgba(0, 10, 44, 0.4) 0%, rgba(2, 7, 44, 0.45) 31.45%, rgba(6, 0, 42, 0) 69.88%);
}

.overlayy2:before{
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    bottom: 0;
    pointer-events: none;
    right: 0;
    max-height: 345px;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.07) 37.08%, rgba(1, 0, 31, 0.7) 100%), linear-gradient(180deg, rgba(0, 10, 44, 0.9) 0%, rgba(2, 7, 44, 0.45) 31.45%, rgba(6, 0, 42, 0) 69.88%);
}
.gal-two{
    height: 345px;
}

.right-info{
    display: flex;
    justify-content: end;
    gap: 1.5rem;
}

.img-bottom-ul{
    display: flex;
    gap: 2.5rem;
    font-weight: bold;
    color: #222;
    font-size: .875rem;
}

.img-bottom-bar{
    position: relative;
    padding:1.5rem 0;
    border-bottom:1px solid #ebebeb;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
}

.img-bottom-bar {
    width: 100%;
    background: #fff;
    z-index: 99;
}

.img-bottom-bar.is-sticky {
    position: fixed;
    top: 90px;
    background: rgb(229 229 229 / 23%);
    backdrop-filter: blur(10px);
    left: 0;
    border-bottom: none;
}

.img-bottom-bar-placeholder {
    height: 0;
}

.img-bottom-bar-placeholder.is-active {
    display: block;
}

#gal-two{
    margin-bottom: 10px;
}

.yacht-details-style3__img{
    position: relative;
}
.yacht-details-style3__img img{
    width: 100%;
    object-fit: cover;
    object-position: bottom;
}
.overlay-content{
    position: absolute;
    display: flex;
    font-family: PT Serif!important;
    align-items: center;
    left: 0px;
    bottom: 0px;
    background-color: var(--thm-white);
    box-shadow: 0px 14px 34px rgba(0, 0, 0, 0.05);
    padding: 27px 30px 28px;
    z-index: 5;
    width: 50%;
    justify-content: space-between;
}
.overlay-content p{
    font-family: PT Serif!important;
}
.icon{
    margin-right: .75rem;
    font-size: 1.5rem;
    color:tan;
    position: relative;
    top:2px;
}
.overlay-content .right{
    display: flex;
    align-items: center;
}
.yacht-details-style3__yacht-info{
    margin-top:3rem;
}
.inner-title h2{
    margin-bottom:1rem;
}
.yacht-details-style3__yacht-info-single{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--thm-border-color);
    padding: 15px 15px 15px;
    margin-bottom: 30px;
}

















.catalog-page__header {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 0 0 24px;
}

.catalog-page__eyebrow {
    margin-bottom: 8px;
    color: #8a96a3;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.catalog-page__title {
    color: #0e1f31;
    font-weight:500;
    font-size: 2.5rem;
    line-height: 1.05;
    margin-bottom: 10px;
}

.nice-select{
    display:none!important;
}

.catalog-page__subtext {
    color: #607081;
    max-width: 640px;
}

.catalog-page__summary {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size:1.5rem;
    margin-bottom: 1rem;
    font-weight: 200;
    color: #0e1f31;
    white-space: nowrap;
}

.catalog-page__summary p {
    font-size: 1.5rem;
    color: #0e1f31;
    font-weight: 200;
}

.catalog-page__summary-sep {
    color: #adb8c3;
}

.catalog-filter-form__group{
    border-bottom:1px solid #ebebeb;
    padding-bottom: 1rem;
}

.catalog-layout {
    display: grid;
    grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.catalog-sidebar {
    position: sticky;
    top: 24px;
    padding: 0 28px;
}

.catalog-sidebar__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 22px;
}

.catalog-sidebar__head h3 {
    font-size: 1.35rem;
    color: #0e1f31;
}

.catalog-sidebar__badge {
    min-width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border-radius: 999px;
    background: #0e1f31;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
}

.catalog-filter-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.catalog-filter-form__group label {
    display: flex;
    margin-bottom: 8px;
    color: #0e1f31;
    font-size: 0.86rem;
    font-weight: 700;
}

.catalog-search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: #fff;
}

.catalog-search-box i {
    color: #607081;
    font-size: 1rem;
    padding-left: 6px;
}

.catalog-search-box input {
    border: 0;
    padding: 0;
    height: 38px;
    flex: 1 1 auto;
}

.catalog-search-box__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 88px;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 6px;
    background: #0e1f31;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
}

.catalog-filter-form__group input {
    width: 100%;
    height: 46px;
    padding: 0 18px;
    border-radius:5px;
    font-size: .875rem;
    border: 1px solid #d8e1e8;
    background: #fff;
    color: #0e1f31;
}

.catalog-filter-form__group input::placeholder {
    color: #9da8b4;
}

.catalog-filter-form__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 8px;
}

.catalog-filter-form__reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 1px solid #d8e1e8;
    color: #0e1f31;
    font-weight: 600;
    background: #fff;
}

.catalog-filter-form__reset:hover {
    background: #0e1f31;
    border-color: #0e1f31;
    color: #fff;
}

.catalog-active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.catalog-active-filters span {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: #eef5f9;
    color: #0e1f31;
    font-size: 0.875rem;
    font-weight: 500;
}

.catalog-card {
    padding: 0;
    margin-bottom: 0;
}

.catalog-card .yacht-list-style1__content {
    display: flex;
    flex-direction: column;
}

.catalog-card .top-box {
    align-items: start;
    gap: 16px;
}

.catalog-card .value-box {
    padding: 8px 12px;
    background: #f2f2f4;
}

.catalog-card .value-box h3 {
    color: #0e1f31;
    font-size: 1rem;
}

.value-box{
    padding: 8px 12px;
    background: #f2f2f4;
}

.catalog-card .bottom-box {
    margin-top: auto;
}

.catalog-card .btn-box .btn-one {
    width: 100%;
    justify-content: center;
}

.catalog-empty-state {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    border: 1px dashed #ccd8e2;
    border-radius: 24px;
    background: #f8fbfd;
    color: #0e1f31;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    padding: 32px;
}

.catalog-mobile-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 18px;
    border: 1px solid #d8e1e8;
    border-radius: 14px;
    background: #fff;
    color: #0e1f31;
    font-weight: 700;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .catalog-mobile-toggle {
        width: 100%;
        justify-content: center;
        margin-bottom: 12px;
    }
}

.catalog-mobile-filter {
    display: none;
    position: fixed !important;
    inset: 0 !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    overflow: hidden !important;
    z-index: 999999;
    background: rgba(14, 31, 49, 0.7);
    padding: 20px;
    margin-bottom: 0 !important;
    border-radius: 0 !important;
}

.catalog-mobile-filter.is-open {
    display: flex !important;
    position: fixed !important;
    inset: 0 !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    overflow: hidden !important;
}

.catalog-mobile-filter__panel {
    width: min(100%, 420px);
    height: 100%;
    margin-left: auto;
    background: #fff;
    padding: 24px;
    overflow-y: auto;
}

.catalog-mobile-filter__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}

.catalog-mobile-filter__head h3 {
    color: #0e1f31;
    font-size: 1.25rem;
}

.catalog-mobile-filter .mobilCloseBtn {
    color: #0e1f31;
    font-size: 2rem;
    line-height: 1;
}

.catalog-sidebar .select2-container,
.catalog-mobile-filter .select2-container {
    width: 100% !important;
}

.catalog-sidebar .select2-container--default .select2-selection--single,
.catalog-mobile-filter .select2-container--default .select2-selection--single {
    height: 46px;
    border: 1px solid #d8e1e8;
    background: #fff;
    padding-left: 18px;
}

.catalog-filter-form .btn-one{
    padding: 0;
    justify-content: center;
    min-height: 46px;
}

.catalog-sidebar .select2-container--default .select2-selection--single .select2-selection__rendered,
.catalog-mobile-filter .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 56px;
    color: #0e1f31;
    font-weight: 600;
    padding-left: 0;
}

.catalog-sidebar .select2-container--default .select2-selection--single .select2-selection__placeholder,
.catalog-mobile-filter .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #9da8b4;
}

.catalog-sidebar .select2-container--default .select2-selection--single .select2-selection__arrow,
.catalog-mobile-filter .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 56px;
    right: 10px;
}

@media (max-width: 1199px) {
}
.catalog-layout__sidebar{
    position: sticky;
    top: 120px;
    align-self: flex-start;  
}

@media (max-width: 991px) {
    .breadcrumb-style1 .inner-content{
        padding:0!important;
    }
    .catalog-page__header {
        flex-direction: column;
        align-items: start;
    }

    .catalog-layout {
        grid-template-columns: 100%;
        gap: 0;
    }

    .catalog-layout__sidebar {
        display: none;
    }
}

@media (max-width: 767px) {
    .logo{
        width:150px;
    }
    .catalog-page__title {
        font-size: 2rem;
    }

    .catalog-sidebar,
    .catalog-mobile-filter__panel {
        padding: 20px;
    }

    .catalog-card {
        padding: 14px;
    }
}
.catalog-range-inputs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.catalog-filter-accordion {
    width: 100%;
}

.catalog-filter-accordion[open] {
    padding-bottom: 2px;
}

.catalog-filter-accordion__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #0e1f31;
    font-size: 0.86rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.catalog-filter-accordion__summary::-webkit-details-marker {
    display: none;
}

.catalog-filter-accordion__summary i {
    font-size: 0.85rem;
    transition: transform 0.2s ease;
}

.catalog-filter-accordion[open] .catalog-filter-accordion__summary i {
    transform: rotate(180deg);
}

.catalog-filter-accordion .catalog-check-list,
.catalog-filter-accordion select {
    margin-top: 14px;
}

.catalog-check-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 220px;
    padding-right: 4px;
    overflow-y: auto;
}

.alt-bilgi{
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.alt-bilgi-icerik{
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #ebebeb;
    padding:0 2rem;
    gap: .25rem;
}

.alt-bilgi-icerik p{
    font-weight: 600;
    color:#222;
}

.alt-bilgi-icerik p:first-child{
    font-weight: 300;
    color:#222;
    font-size: .875rem;
}

.alt-bilgi-icerik:last-child{
    border:none;
}

.catalog-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid #d8e1e8;
    border-radius: 5px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.catalog-check-item input {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #0e1f31;
    flex: 0 0 auto;
}

.catalog-check-item span {
    color: #0e1f31;
    font-size: .875rem;
    font-weight: 600;
    line-height: 1.4;
}

.catalog-check-item:has(input:checked) {
    border-color: #0e1f31;
    background: #eef5f9;
    box-shadow: 0 10px 24px rgba(14, 31, 49, 0.08);
}

.catalog-range-slider {
    width: 100%;
    height: auto !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    accent-color: #0e1f31;
}

.catalog-slider-value {
    display: inline-block;
    margin-left: 6px;
    color: #607081;
    font-weight: 600;
}

.catalog-slider-output {
    margin-top: 8px;
    color: #0e1f31;
    font-size: 0.86rem;
    font-weight: 600;
}

@media (max-width: 767px) {
    .catalog-search-box {
        flex-wrap: wrap;
    }

    .catalog-search-box i {
        padding-left: 2px;
    }

    .catalog-search-box__button {
        width: 100%;
    }

    .catalog-range-inputs {
        grid-template-columns: 1fr;
    }

    .catalog-check-list {
        max-height: none;
    }
}
.catalog-page__header-tools {
    gap: 16px;
    width:100%;
    flex-wrap: wrap;
}

.catalog-sort-form {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 14px;
    background: #fff;
}

.catalog-sort-form label {
    margin: 0;
    color: #0e1f31;
    font-size: 0.86rem;
    font-weight: 700;
    white-space: nowrap;
}

.catalog-sort-form select {
    height: 46px;
    width:100%;
    padding: 0 14px;
    background: #fff;
    color: #0e1f31;
    font-weight: 600;
}

@media (max-width: 991px) {
    .catalog-page__header-tools {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 767px) {
    .catalog-page__header-tools,
    .catalog-sort-form {
        width: 100%;
    }

    .catalog-sort-form {
        flex-direction: column;
        align-items: stretch;
    }

    .catalog-sort-form select {
        min-width: 0;
        width: 100%;
    }
}
.catalog-sort-form {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.catalog-sort-form label {
    margin: 0;
    color: #0e1f31;
    font-size: 0.86rem;
    font-weight: 700;
}

.catalog-sort-form select {
    height: 46px;
    font-size:.875rem;
    padding: 0 14px;
    border:none;
    border-bottom:1px solid #ebebeb;
    background: #fff;
    color: #0e1f31;
    font-weight: 600;
}

@media (max-width: 767px) {
    .catalog-page__header-tools {
        width: 100%;
        justify-content: flex-start;
    }

    .catalog-sort-form {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .catalog-sort-form select {
        min-width: 0;
        width: 100%;
    }
}

.catalog-filter-form__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.catalog-filter-form__topline label {
    margin-bottom: 0;
}

.catalog-filter-form__clear {
    color: #607081;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.catalog-filter-tools {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    margin-bottom: 14px;
}

.catalog-filter-tools__search {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    flex: 1 1 auto;
    padding: 0 12px;
    border: 1px solid #d8e1e8;
    border-radius: 8px;
    background: #fff;
}

.catalog-filter-tools__search--solo {
    margin-bottom: 14px;
}

.catalog-filter-tools__search i {
    color: #607081;
    font-size: 0.95rem;
}

.catalog-filter-tools__search input {
    width: 100%;
    height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #0e1f31;
}

.catalog-filter-accordion select {
    width: 100%;
    height: 46px;
    padding: 0 16px;
    border: 1px solid #d8e1e8;
    border-radius: 8px;
    background: #fff;
    color: #0e1f31;
}

.catalog-range-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.catalog-range-slider--year {
    margin-top: 6px;
}

.catalog-slider-scale {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    color: #607081;
    font-size: 0.75rem;
    font-weight: 600;
}

.catalog-check-item[hidden] {
    display: none;
}

@media (max-width: 767px) {
    .catalog-filter-tools {
        flex-direction: column;
        align-items: stretch;
    }

    .catalog-filter-form__clear {
        align-self: flex-end;
    }
}
.catalog-active-filters__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 20px;
    padding: 8px;
    border-radius: 999px;
    background: #eef5f9;
    color: #0e1f31;
    font-size: 0.85rem;
    font-weight: 600;
}

.catalog-active-filters__item strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #0e1f31;
    color: #fff;
    font-size: 0.85rem;
    line-height: 1;
}
.all-img{
    position: absolute;
    bottom: 10%;
    font-size:.875rem;
    right: 5%;
    color: #fff;
    border: 1px solid #111;
    padding: .5rem 1rem;
    background: #111;
}
.all-img a{
    color: #fff;
}
.yat-info{
    margin-top:5rem;
}
.yat-detail{
    border-right:1px solid #ebebeb;
    color:#111;
}
.yat-detail-right .btn-two{
    width: 100%;
    margin:1rem 0;
    justify-content:center;
}
.yat-price{
    color: #111;
    font-size:1.25rem;
    display: block;
    margin-top:1rem;
}
.teknik-ozellikler{
    position:relative;
}
.teknik-ozellikler ul{
    display:flex;
    margin:1rem 0;
    gap:4.5rem;
}
.teknik-ozellikler p{
    margin-bottom:.5rem;
}
.teknik-ozellikler li{
    display:flex;
    color:#111;    
    font-weight: bold;
    flex-direction: column;
    text-align: center;
}
.teknik-ozellikler span{
    border-radius: 50%;
    border:1px solid #222;
    width:60px;
    height:60px;
    position: relative;
    font-size: .875rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
#enqry-form .form-control{
    border:none;
    background: transparent;
    padding:0;
    border-bottom: 1px solid #222;
    color:#111;
    border-radius: 0;
}
#enqry-form label{
    color:#111;
}
#enqry-form .form-control:focus{
    box-shadow: none;
}
.inner-content .image-layer:before{
    content: "";
    position: absolute;
    z-index:3;
    top: 0px;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.07) 37.08%, rgba(1, 0, 31, 0.7) 100%), linear-gradient(180deg, rgba(0, 10, 44, 0.9) 0%, rgba(2, 7, 44, 0.45) 31.45%, rgba(6, 0, 42, 0) 69.88%);
}
.inner-content video{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    object-fit: cover;
}
.yat-detail-right{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.scroll-top-inner{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #111;
    right: 3%;
    position: fixed;
    z-index: 3000000001;
    bottom: 10%;
    display:flex;
    cursor: pointer;
    align-items: center;
    justify-content: center; 
}
.scroll-top-inner span{
    font-size: 1.5rem;
    color:#fff;
    rotate: -90deg;
}
.mobile-topbar-source-list {
    display: none;
}

.mobile-nav__topbar-links {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-nav__topbar-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav__topbar-list li + li {
    margin-top: 10px;
}

.mobile-nav__topbar-list li a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.hak-btn-one{
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-top: 1rem;
    border-bottom: 3px solid #8ff7da;
    width: fit-content;
}
.hak-btn-one svg{
    fill: black;
}
.yacht-list-style1__content{
    margin-top:1rem;
}
.bottom-box{
    margin-top:1rem;
}
.footer-title{
    color:#fff;
    font-size: 1.25rem;
}
.footer-menu-grid {
    row-gap: 1rem;
}
.footer-menu-grid__item {
    display: flex;
}
.footer-menu-link {
    color: #939393;
    display: inline-block;
    font-size: 1.25rem;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-menu-link:hover {
    color: #8ff7da;
}

.footer-menu-card {
    width: 100%;
}
.footer-submenu-list {
    list-style: none;
    margin: 0.65rem 0 0;
    padding: 0;
}
.footer-submenu-list li + li {
    margin-top: 0.35rem;
}
.footer-submenu-link {
    color: rgba(255, 255, 255, 0.75);
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-submenu-link:hover {
    color: #8ff7da;
}
.foot-img{
	border: 1px solid #c9c9c969;
	width:100%;
	display:block;
    border-radius: 5px;
}
.foot-img img{
    padding: 1rem;
	width:100%;
	height:70px;
	display:block;
}