/*********************
BREAKPOINTS
*********************/

:root {
    --main-text-color: black;
    --body-text-size: 20px;
}

@font-face {
    font-family: 'Pacifico';
    font-style: normal;
    font-weight: 400;
    src: local('Pacifico Regular'), local('Pacifico-Regular'), url(https://fonts.gstatic.com/s/pacifico/v12/FwZY7-Qmy14u9lezJ-6H6MmBp0u-.woff2) format('woff2');
    font-display: swap;
}


/******BASE******
*****************/

@keyframes fade-in {
    from {
        transform: scale(0.8);
        opacity: 0.8;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes reveal {
    from {
        opacity: 0.8;
        clip-path: inset(45% 20% 45% 20%);
    }
    to {
        opacity: 1;
        clip-path: inset(0% 0% 0% 0%);
    }
}

.img {
    view-timeline-name: --revealing-image;
    view-timeline-axis: block;
    animation: linear reveal both;
    animation-timeline: --revealing-image;
    animation-range: entry 25% cover 50%;
}

.become-a-partner__link {
    display: none!important;
}

.availability-frame .become-a-partner {
    display: none !important;
}


/* Base instagram styles */

.btn-instagram {
    font-size: 1.2em;
    font-family: sans-serif;
    color: #333;
    text-shadow: 1px 1px #fff;
    text-decoration: none !important;
    display: inline-block;
    padding: 0.5em 1.75em 0.5em 1em;
    border-radius: 0.25em;
    background: #f8f8f8;
    border: 1px solid #ccc;
    border-right: 0.25em solid #00558D;
    /* blue stripe */
    position: relative;
    margin: 0 0 1px;
}

.btn-instagram:before,
.btn-instagram:after {
    content: '';
    display: block;
    position: absolute;
}


/* Add Stripes */

.btn-instagram:before {
    width: 0.25em;
    height: 100%;
    background: #FBB03B;
    /* yellow stripe */
    border-left: 0.25em solid #D4145A;
    /* red stripe */
    border-right: 0.25em solid #00A99D;
    /* green stripe */
    top: 0;
    right: 0;
}


/* Add Hightlights */

.btn-instagram:after {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 0.25em;
    padding-left: 0.25em;
    box-shadow: inset 1px 1px 0px rgba(255, 255, 255, 0.5), inset -1px -1px 0 rgba(0, 0, 0, 0.1);
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.2) 49%, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.35)), color-stop(49%, rgba(255, 255, 255, 0.2)), color-stop(50%, rgba(255, 255, 255, 0)), color-stop(100%, rgba(0, 0, 0, 0.1)));
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.2) 49%, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.1) 100%);
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.2) 49%, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.1) 100%);
    background: -ms-linear-gradient(top, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.2) 49%, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.1) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.2) 49%, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#59ffffff', endColorstr='#1a000000', GradientType=0);
}


/* Animate - Fade */

.btn-instagram,
.btn-instagram:before {
    -webkit-transition-property: background, border;
    -moz-transition-property: background, border;
    -moz-transition: 0.1s ease-in;
    -o-transition-property: background, border;
    -o-transition: 0.1s ease-in;
    transition-property: background, border;
    transition: 0.1s ease-in;
}


/* Hover / Focus */

.btn-instagram:hover,
.btn-instagram:focus {
    background: #fff;
}

.btn-instagram:hover {
    border-right: 0.25em solid #09c;
}

.btn-instagram:hover:before {
    background: #fc6;
    /* yellow stripe */
    border-left: 0.25em solid #f06;
    /* red stripe */
    border-right: 0.25em solid #0cc;
    /* green stripe */
}

.btn-instagram:hover:after {
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 49%, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.05) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.25)), color-stop(49%, rgba(255, 255, 255, 0.1)), color-stop(50%, rgba(255, 255, 255, 0)), color-stop(100%, rgba(0, 0, 0, 0.05)));
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 49%, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.05) 100%);
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 49%, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.05) 100%);
    background: -ms-linear-gradient(top, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 49%, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.05) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 49%, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.05) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#40ffffff', endColorstr='#0d000000', GradientType=0);
}


/* Active */

.btn-instagram:active {
    margin: 1px 0 0;
}


/* END INSTAGRAM STYLES */


/*# Banners Styles */

.mybannercard {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    max-width: 300px;
    margin: auto;
    text-align: center;
    font-family: Arial, sans-serif;
}

.price {
    color: white;
    font-size: 24px;
}

.titlebanner {
    font-size: var(--body-text-size);
}

.mybannercard button {
    border: none;
    outline: 0;
    padding: 12px;
    color: white;
    background-color: #000;
    text-align: center;
    cursor: pointer;
    width: 100%;
    font-size: 24px;
}

.mybannercard button a {
    color: white;
}

.alinkbanner {
    color: white;
}

.mybannercard button:hover {
    opacity: 0.8;
}

* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

*:active,
*:focus,
*:hover,
*:visited:active,
*:visited:hover {
    outline: none !important;
}

body {
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

body.admin-bar {
    margin-top: 32px;
}

body.admin-bar .header {
    top: 32px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #333333;
    text-wrap: balance;
}

h1 {
    font-size: 50px;
    line-height: 56px;
    font-weight: 600;
}

.main-content h2 {
    font-size: 32px;
    line-height: 38px;
    font-weight: 700;
    margin: 0 0 50px;
    position: relative;
    text-transform: capitalize;
    z-index: 2;
}

.content h2 {
    font-size: 32px;
    line-height: 38px;
    font-weight: 700;
}

.main-content h3 {
    font-size: 26px;
    line-height: 30px;
    font-weight: 700;
}

.content h3 {
    font-size: 26px;
    line-height: 30px;
    font-weight: 700;
}

h4 {
    font-size: 22px;
    line-height: 26px;
    font-weight: 700;
}

h5 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
}

h6 {
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
}

ul {
    list-style: none;
}

a {
    cursor: pointer;
    text-decoration: none;
    overflow-wrap: break-word;
}

p {
    color: #333333;
    font-size: var(--body-text-size);
    line-height: 30px;
    font-weight: 300;
    padding: 5px 0;
}

blockquote {
    background: 5%/80px url(../img/quote.png) no-repeat;
    padding: 25px 85px;
}

@media (max-width: 768px) {
    blockquote {
        padding: 25px 15px;
    }
}

blockquote p {
    font-size: var(--body-text-size);
    line-height: 30px;
    font-weight: 300;
    position: relative;
    padding: 0;
}

blockquote p:first-letter {
    font-family: "Dancing Script", cursive;
    font-size: 50px;
    line-height: 34px;
}

table {
    border-spacing: 0;
    border-collapse: collapse;
    width: 100%;
}

form input {
    background: #f6f6f6;
    border: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    height: 40px;
    line-height: 40px;
    padding: 0 30px;
    text-transform: uppercase;
}

input[type='number'] {
    -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

textarea {
    background: #f6f6f6;
    border: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    padding: 15px 30px;
    text-transform: uppercase;
}

select {
    background: #f6f6f6 95%/15px no-repeat url("../../../img/chevron-down.png");
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    height: 40px;
    line-height: 40px;
    padding: 0 30px;
    position: relative;
    text-transform: uppercase;
}

@media (max-width: 460px) {
    select {
        padding: 0 10px;
    }
}

a.btn,
input.btn {
    background: #ffe500;
    border: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: #333333;
    cursor: pointer;
    display: inline-block;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    height: auto;
    text-align: center;
    text-transform: uppercase;
    padding: 15px 30px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

a.btn:hover,
input.btn:hover {
    background: #333333;
    color: #ffe500;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

a.alt {
    background: #333333;
    color: #ffffff;
}

a.alt:hover {
    background: #000000;
    color: #ffffff;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.main-content .btn-wrap {
    margin-top: 40px;
    text-align: center;
}

.clear {
    clear: both;
}

.about .container {
    display: table;
}

.about .container .left-side {
    display: table-cell;
    padding: 0 15px;
    vertical-align: middle;
    width: 50%;
}

@media (max-width: 1024px) {
    .about .container .left-side {
        display: block;
        width: 100%;
    }
}

.about .container .left-side img {
    width: 100%;
}

.about .container .right-side {
    display: table-cell;
    padding: 0 15px;
    vertical-align: middle;
    width: 50%;
}

@media (max-width: 1024px) {
    .about .container .right-side {
        display: block;
        margin-top: 25px;
        width: 100%;
    }
}

.about .container .right-side h1 {
    font-size: 32px;
    line-height: 38px;
    font-weight: 700;
    margin-bottom: 30px;
}

.main-banner {
    background: rgba(0, 0, 0, 0.2) center/cover no-repeat url("../img/main-banner.jpg");
    background-blend-mode: darken;
    padding: 215px 0 125px;
    position: relative;
    text-align: center;
}

@media (max-width: 768px) {
    .main-banner {
        padding: 180px 0 125px;
    }
}

.main-banner .main-headline h1 {
    color: #ffffff;
    font-family: "Dancing Script", cursive;
    font-size: 126px;
    line-height: 136px;
}

@media (max-width: 768px) {
    .main-banner .main-headline h1 {
        font-size: 80px;
        line-height: 90px;
    }
}

@media (max-width: 460px) {
    .main-banner .main-headline h1 {
        font-size: 50px;
        line-height: 56px;
    }
}

.main-banner .main-headline span {
    color: #ffffff;
    display: block;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    margin: 60px auto 0;
    text-transform: uppercase;
    width: 515px;
}

@media (max-width: 768px) {
    .main-banner .main-headline span {
        width: 100%;
    }
}

@media (max-width: 460px) {
    .main-banner .main-headline span {
        font-size: 16px;
        line-height: 22px;
        margin: 25px auto 0;
    }
}

.main-banner .banner-arrow {
    background: #ffe500;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    bottom: -25px;
    height: 50px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    text-align: center;
    width: 50px;
}

.main-banner .banner-arrow .icon {
    color: #333333;
    font-size: 32px;
    line-height: 60px;
}

.main-content .news .headline {
    text-align: center;
}

.main-content .news .headline h2 {
    display: inline-block;
}

@media (max-width: 1024px) {
    .main-content .news .four-col-grid .grid-item {
        width: 50%;
    }
}

@media (max-width: 460px) {
    .main-content .news .four-col-grid .grid-item {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .main-content .news .four-col-grid .grid-item .post {
        margin-bottom: 25px;
    }
}

.main-content .news .four-col-grid .grid-item .post .img-wrap {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    height: 160px;
    overflow: hidden;
    width: 100%;
}

@media (max-width: 560px) {
    .main-content .news .four-col-grid .grid-item .post .img-wrap {
        height: 100px;
    }
}

@media (max-width: 460px) {
    .main-content .news .four-col-grid .grid-item .post .img-wrap {
        height: 160px;
    }
}

.main-content .news .four-col-grid .grid-item .post .img-wrap img {
    height: 100%;
}

@media (max-width: 1024px) {
    .main-content .news .four-col-grid .grid-item .post .img-wrap img {
        height: auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .main-content .news .four-col-grid .grid-item .post .img-wrap img {
        height: 100%;
        width: auto;
    }
}

@media (max-width: 460px) {
    .main-content .news .four-col-grid .grid-item .post .img-wrap img {
        height: auto;
        width: 100%;
    }
}

@media (max-width: 380px) {
    .main-content .news .four-col-grid .grid-item .post .img-wrap img {
        height: 100%;
        width: auto;
    }
}

.main-content .news .four-col-grid .grid-item .post .description .tags a {
    color: #ffe500;
    display: inline-block;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    margin-right: 15px;
    text-transform: uppercase;
}

.main-content .news .four-col-grid .grid-item .post .description .tags a:hover {
    text-decoration: underline;
}

.main-content .news .four-col-grid .grid-item .post .description .tags a:before {
    content: '#';
    display: inline-block;
}

.main-content .news .four-col-grid .grid-item .post .description h3 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
}

.main-content .news .four-col-grid .grid-item .post .description h3 a {
    color: inherit;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.main-content .news .four-col-grid .grid-item .post .description h3 a:hover {
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.main-content .news .four-col-grid .grid-item .post .description .views {
    margin: 10px 0 0;
}

.main-content .news .four-col-grid .grid-item .post .description .views p {
    color: #333333;
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
}

.main-content .news .four-col-grid .grid-item .post .description .views p:before {
    content: '\e037';
    display: inline-block;
    font-family: "dripicons-v2", sans-serif;
    font-size: 16px;
    margin-right: 5px;
    vertical-align: middle;
}

.content .related {
    margin-top: 25px;
}

.content .related:after {
    content: '';
    clear: both;
    display: table;
}

@media (max-width: 1024px) {
    .content .related .three-col-grid .grid-item {
        width: 50%;
    }
}

@media (max-width: 460px) {
    .content .related .three-col-grid .grid-item {
        width: 100%;
    }
}

.content .related p.related-title {
    margin-bottom: 15px;
    font-size: 32px;
    line-height: 38px;
    font-weight: 700;
    text-align: center;
}

.content .related a.btn {
    float: right;
}

.content .related .hide {
    display: none;
    margin-top: 5px;
}

.content .post {
    margin-bottom: 30px;
}

.content .post .img-wrap {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    max-height: 127px;
    position: relative;
    overflow: hidden;
    aspect-ratio: 2 / 1;
    width: 100%;
}

@media (max-width: 560px) {
    .content .post .img-wrap {
        height: 100px;
    }
}

@media (max-width: 460px) {
    .content .post .img-wrap {
        height: 127px;
    }
}

.content .post .img-wrap img {
    /*       left: -50%; */
    aspect-ratio: 2 / 1;
    padding: 0;
    position: absolute;
    height: 100% !important;
    /*       width: auto;  */
}

@media (max-width: 1024px) {
    .content .post .img-wrap img {
        height: auto;
        left: auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .content .post .img-wrap img {
        height: 100%;
        width: auto;
    }
}

@media (max-width: 460px) {
    .content .post .img-wrap img {
        height: auto;
        width: 100%;
    }
}

@media (max-width: 380px) {
    .content .post .img-wrap img {
        height: 100%;
        width: auto;
    }
}

.content .post .description .tags a {
    color: #ffe500;
    display: inline-block;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    margin-right: 15px;
    text-transform: uppercase;
}

.content .post .description .tags a:hover {
    text-decoration: underline;
}

.content .post .description .tags a:before {
    content: '#';
    display: inline-block;
}

.content .post .description h3 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    margin: 0;
}

.content .post .description h3:hover {
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.content .post .description .views {
    margin: 10px 0 0;
}

.content .post .description .views p {
    color: #333333;
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
}

.content .post .description .views p:before {
    content: '\e037';
    display: inline-block;
    font-family: "dripicons-v2", sans-serif;
    font-size: 16px;
    margin-right: 5px;
    vertical-align: middle;
}

.content .grid-item .tour {
    height: 200px;
    position: relative;
}

.content .grid-item .tour .img-wrap,
.content .grid-item .tour .img-wrap img {
    border-radius: 5px;
    height: 100% !important;
    width: 100%;
}

.content .grid-item .tour .tour-info .tour-badge {
    border-radius: 5px;
    position: absolute;
    background: #ffe500;
    color: #000000;
    top: 10px;
    right: 10px;
    height: 30px;
    margin: 10px;
    width: auto;
    padding: 20px;
    line-height: 0;
    z-index: 1;
}

.content .grid-item .tour .tour-info .tour-overlay {
    border-radius: 5px;
    color: #ffffff;
    width: auto;
    background: rgba(68, 85, 102, 0.7);
    position: absolute;
    top: 0;
    height: 100%;
    text-align: center;
    padding: 20px;
}

.content .grid-item .tour .tour-info .tour-overlay span {
    display: block;
}

.content .grid-item .tour .tour-info .tour-overlay span.price {
    font-weight: bold;
}

.content .grid-item .description h3 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    margin: 0;
}

.content .grid-item .description h3:hover {
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.content .grid-item .description .views {
    margin: 10px 0 0;
}

.content .grid-item .description .views p {
    color: #333333;
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
}

.content .grid-item .description .views p:before {
    content: '\e037';
    display: inline-block;
    font-family: "dripicons-v2", sans-serif;
    font-size: 16px;
    margin-right: 5px;
    vertical-align: middle;
}

.map-wrapper {
    margin-top: 45px;
}

.map-wrapper .input-wrapper,
.map-wrapper .submit-wrapper {
    width: 100%;
}

.map-wrapper .input-wrapper input#submit,
.map-wrapper .submit-wrapper input#submit {
    background: #ffe500 !important;
    border: none !important;
    color: #333333;
    cursor: pointer;
    display: inline-block;
    float: right;
    font-family: "Poppins", sans-serif !important;
    font-size: 14px !important;
    font-weight: 700;
    height: auto !important;
    line-height: normal !important;
    text-align: center;
    text-transform: uppercase;
    padding: 15px 30px !important;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    width: auto !important;
}

.map-wrapper .input-wrapper input#submit:hover,
.map-wrapper .submit-wrapper input#submit:hover {
    background: #333333 !important;
    color: #ffe500;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

@media (max-width: 460px) {
    .map-wrapper .input-wrapper input#submit,
    .map-wrapper .submit-wrapper input#submit {
        padding: 15px 30px;
    }
}

.map-wrapper input {
    background: #f6f6f6 !important;
    border: none !important;
    box-shadow: none !important;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    height: 40px;
    line-height: 40px;
    margin: 0 0 20px !important;
    padding: 0 30px !important;
    text-transform: uppercase;
    width: 49%;
}

@media (max-width: 460px) {
    .map-wrapper input {
        max-width: 100%;
        padding: 0 10px;
        width: 100%;
    }
}

.map-wrapper select {
    background: #f6f6f6 95%/15px no-repeat url("../img/chevron-down.png") !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0 0 20px 0 !important;
    padding: 0 30px !important;
    width: 49%;
}

@media (max-width: 460px) {
    .map-wrapper select {
        max-width: 100%;
        padding: 0 10px;
        width: 100%;
    }
}

#directions-panel {
    background: #f6f6f6;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-top: 40px;
    padding: 10px 15px;
}

#directions-panel p span {
    font-weight: 600;
}

.categories {
    padding: 100px 0 0 !important;
}

.categories .four-col-grid .grid-item {
    margin-bottom: 70px;
}

@media (max-width: 768px) {
    .categories .four-col-grid .grid-item {
        width: 50%;
    }
}

.categories .four-col-grid .grid-item .item {
    text-align: center;
}

.categories .four-col-grid .grid-item .item .icon-wrap {
    margin-bottom: 10px;
}

.categories .four-col-grid .grid-item .item .icon-wrap img {
    width: 80px;
}

.categories .four-col-grid .grid-item .item a {
    color: #333333;
    display: block;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.categories .four-col-grid .grid-item .item a:hover {
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.content.full-width .left-side {
    float: left;
    width: 570px;
}

@media (max-width: 1200px) {
    .content.full-width .left-side {
        width: 49%;
    }
}

@media (max-width: 1024px) {
    .content.full-width .left-side {
        width: 100%;
    }
}

.content.full-width .left-side p {
    padding: 0;
}

.content.full-width .left-side form {
    margin-top: 35px;
}

.content.full-width .left-side form input,
.content.full-width .left-side form textarea {
    margin-bottom: 20px;
    width: 100%;
}

.content.full-width .left-side form input[type="submit"],
.content.full-width .left-side form textarea[type="submit"] {
    float: right;
    margin-top: 10px;
    width: auto;
}

.content.full-width .right-side {
    float: right;
    width: 570px;
}

@media (max-width: 1200px) {
    .content.full-width .right-side {
        width: 49%;
    }
}

@media (max-width: 1024px) {
    .content.full-width .right-side {
        display: none;
    }
}

.content.full-width .right-side img {
    padding: 0;
    width: 100%;
}

.content {
    margin: 175px 0 100px;
}

@media (max-width: 1024px) {
    .content {
        margin: 125px 0 100px;
    }
}

.content.right-sidebar .content-wrap {
    float: left;
    position: relative;
    width: 805px;
}

@media (max-width: 1200px) {
    .content.right-sidebar .content-wrap {
        width: 660px;
    }
}

@media (max-width: 1024px) {
    .content.right-sidebar .content-wrap {
        width: 100%;
    }
}

.content.frontpage {
    margin: 50px 0 0;
}

.content.frontpage .content-wrap iframe {
    height: 475px;
    width: 100%;
}

.content .content-wrap h2,
.content .content-wrap h3,
.content .content-wrap h4,
.content .content-wrap h5,
.content .content-wrap h6 {
    margin: 20px 0 20px;
    text-align: center;
}

.content .content-wrap p a {
    color: #333333;
    text-decoration: underline;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.content .content-wrap p a:hover {
    color: #ffe500;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.content .content-wrap p b {
    font-weight: 500;
}

.content .content-wrap .single-post-img img {
    padding: 0 0 0px 0;
}

.content .content-wrap .single-post-video img {
    padding: 0 0 0px 0;
}

.content .content-wrap .single-post-video iframe {
    padding: 0 0 0px 0;
}

.content .content-wrap .post-ratings-loading img {
    width: unset;
}

.content .content-wrap img {
    height: auto !important;
    /*padding: 20px 0;*/
    width: 100%;
    animation: fade-in linear;
    animation-timeline: view(200px);
}

content-wrap>img {
    animation: fade-in linear forwards;
    animation-timeline: view(200px);
    animation-range: 250px 500px;
}

.content .content-wrap img.size-pinterest-thumb {
    width: unset;
}

.content .content-wrap ul li {
    font-size: var(--body-text-size);
    line-height: 30px;
    font-weight: 300;
    margin-bottom: 10px;
    padding: 0 25px;
    position: relative;
}


/*     .content .content-wrap ul li:before {
      color: #8f8f8f;
      content: '\e02e';
      display: block;
      font-family: "dripicons-v2", sans-serif;
      font-size: 18px;
      left: 0;
      position: absolute;
      top: 0; } */

.content .content-wrap ul li a {
    color: #333333;
    text-decoration: underline;
    font-weight: 300;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.content .content-wrap ul li a:hover {
    color: #ffe500;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.content .content-wrap ul li b {
    font-weight: 500;
}

.content .content-wrap ol {
    counter-reset: li;
    list-style: none;
}

.content .content-wrap ol li {
    font-size: 18px;
    line-height: 24px;
    font-weight: 300;
    margin-bottom: 10px;
    padding: 0 15px 0 30px;
    position: relative;
}

.content .content-wrap ol li:before {
    background: #ffe500;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #000000;
    content: counter(li);
    counter-increment: li;
    display: block;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    left: 0;
    line-height: 20px;
    position: absolute;
    text-align: center;
    top: 3px;
    width: 20px;
}

.content .content-wrap ol li a {
    color: #333333;
    text-decoration: underline;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.content .content-wrap ol li a:hover {
    color: #ffe500;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.content .content-wrap ol li b {
    font-weight: 500;
}

.content .content-wrap a.btn {
    margin-bottom: 10px;
}

.content .content-wrap iframe {
    /*     height: 300px; */
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.content .content-wrap .post-views p {
    color: #333333;
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
}

.content .content-wrap .post-views p:before {
    content: '\e037';
    display: inline-block;
    font-family: "dripicons-v2", sans-serif;
    font-size: 16px;
    margin-right: 5px;
    vertical-align: middle;
}

.content .content-wrap .author {
    border-bottom: 3px solid #f6f6f6;
    margin-top: 25px;
    padding-bottom: 40px;
}

.content .content-wrap .author:after {
    clear: both;
    content: '';
    display: table;
}

.content .content-wrap .author p.name {
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.content .content-wrap .author .img-wrap {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    float: left;
    height: 60px;
    margin-right: 25px;
    overflow: hidden;
    width: 60px;
}

.content .content-wrap .author .img-wrap img {
    padding: 0;
}

.content .content-wrap .author .about-author {
    float: left;
    width: 720px;
}

@media (max-width: 1200px) {
    .content .content-wrap .author .about-author {
        width: 575px;
    }
}

@media (max-width: 768px) {
    .content .content-wrap .author .about-author {
        float: none;
        width: 100%;
    }
}

.content .content-wrap .author .about-author p {
    padding: 0;
}

.content .content-wrap #wpdevar_comment_1 {
    background: transparent !important;
    margin-top: 35px;
}

.content .content-wrap #wpdevar_comment_1 .fb-comments {
    background: transparent !important;
}

.content .content-wrap .post-ratings img {
    vertical-align: middle;
    width: auto;
}

.content .content-wrap .live-search-box {
    background: #f6f6f6;
    border: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    height: 40px;
    line-height: 40px;
    margin: 25px 0;
    padding: 0 30px;
    text-transform: uppercase;
    width: 100%;
}

.content .content-wrap div.wpcf7-response-output {
    margin: 5em 0.5em 1em;
}

.page-headline {
    padding: 0 0 25px;
    text-align: left;
}

@media (max-width: 460px) {
    .page-headline h1 {
        font-size: 32px;
        line-height: 38px;
    }
}

.page-headline #crumbs {
    margin-top: 30px;
}

.page-headline #crumbs span {
    color: #333333;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    vertical-align: middle;
}

@media (max-width: 460px) {
    .page-headline #crumbs span {
        font-size: 16px;
        line-height: 22px;
    }
}

.page-headline #crumbs span a {
    color: #333333;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    /*&:after{
          color: $color-primary;
          content: '/';
          display: inline-block;
          @include type-setting(1);
          @include font-weight(regular);
          margin: 0 5px;
          vertical-align: middle;
        }*/
}

@media (max-width: 460px) {
    .page-headline #crumbs span a {
        font-size: 16px;
        line-height: 22px;
    }
}

.page-headline #crumbs span a:hover {
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.page-headline #crumbs span:last-child a:after {
    content: none;
}

.page-not-found {
    margin: 0 auto;
    padding-top: 240px;
    text-align: center;
    width: 570px;
}

@media (max-width: 1024px) {
    .page-not-found {
        padding-top: 120px;
    }
}

@media (max-width: 768px) {
    .page-not-found {
        width: 100%;
    }
}

.page-not-found span {
    font-family: "Dancing Script", cursive;
    font-size: 36px;
}

.page-not-found p.big {
    font-size: 24px;
    line-height: 30px;
    margin-top: 40px;
}

.page-not-found h1 {
    font-size: 174px;
    font-weight: 700;
    line-height: 180px;
    padding: 90px 0 80px;
}

@media (max-width: 768px) {
    .page-not-found h1 {
        padding: 40px 0 30px;
    }
}

@media (max-width: 460px) {
    .page-not-found h1 {
        font-size: 120px;
        line-height: 130px;
    }
}

.page-not-found h1 span {
    display: block;
    font-family: inherit;
    font-size: 26px;
    line-height: 30px;
    font-weight: 500;
    text-transform: uppercase;
}

.page-not-found a.btn {
    margin-top: 70px;
}

@media (max-width: 768px) {
    .page-not-found a.btn {
        margin-top: 30px;
    }
}

.pagination {
    margin-top: 40px;
    text-align: right;
}

.pagination li {
    display: inline-block;
    margin: 0 5px;
    padding: 0 !important;
    text-align: center;
    vertical-align: middle;
}

.pagination li:before {
    content: none !important;
}

.pagination li .page-numbers {
    background: #f2f2f2;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #333333;
    display: block;
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    height: 35px;
    line-height: 35px;
    width: 35px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.pagination li .page-numbers:hover {
    background: #ffe500;
    color: #333333;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.pagination li .current {
    background: #ffe500;
    color: #333333;
}

.pagination li .dots:hover {
    background: #f2f2f2;
    color: #333333;
}

.post-nav {
    margin-top: 40px;
    position: relative;
}

.post-nav a span {
    color: #333333;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    vertical-align: middle;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.post-nav a:hover span {
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.post-nav .prev {
    float: left;
    text-align: left;
    width: 50%;
}

@media (max-width: 460px) {
    .post-nav .prev {
        margin-bottom: 30px;
        width: 100%;
    }
}

.post-nav .prev span {
    padding-left: 50px;
    position: relative;
}

.post-nav .prev span:before {
    background: #ffe500;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #ffffff;
    content: '\U';
    font-family: "dripicons-v2", sans-serif;
    font-size: 18px;
    display: inline-block;
    line-height: 40px;
    height: 40px;
    left: 0;
    margin-right: 10px;
    position: absolute;
    text-align: center;
    top: -10px;
    vertical-align: middle;
    width: 40px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.post-nav .next {
    float: right;
    text-align: right;
    width: 50%;
}

@media (max-width: 460px) {
    .post-nav .next {
        width: 100%;
    }
}

.post-nav .next span {
    padding-right: 50px;
    position: relative;
}

.post-nav .next span:after {
    background: #ffe500;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #ffffff;
    content: '\V';
    font-family: "dripicons-v2", sans-serif;
    font-size: 18px;
    display: inline-block;
    line-height: 40px;
    height: 40px;
    position: absolute;
    margin-left: 10px;
    right: 0;
    text-align: center;
    top: -10px;
    vertical-align: middle;
    width: 40px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.book-private-tour form {
    margin-top: 30px;
}

.book-private-tour form div.form-row-first,
.book-private-tour form div.form-row-last,
.book-private-tour form div.form-row-wide {
    padding: 0;
    /*position: relative;*/
}

.book-private-tour form input,
.book-private-tour form textarea {
    margin-bottom: 20px;
    padding-left: 40px;
    text-transform: none;
    width: 100%;
}

.book-private-tour form input[type="submit"],
.book-private-tour form textarea[type="submit"] {
    float: right;
    margin-top: 10px;
    padding-left: 30px;
    width: auto;
}

.book-private-tour form ul {
    margin: 20px 0 40px;
}

.book-private-tour form .icon {
    left: 15px;
    position: absolute;
    top: 10px;
}

.services .headline {
    text-align: center;
}

.services .headline h2 {
    display: inline-block;
}

.services ul {
    text-align: center;
}

.services ul li {
    display: inline-block;
    padding: 0 15px;
}

@media (max-width: 768px) {
    .services ul li {
        margin-bottom: 25px;
        padding: 0;
        width: 100%;
    }
}

.services ul li a {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    display: block;
    position: relative;
    overflow: hidden;
}

.services ul li a .item-wrap {
    height: 400px;
    position: relative;
    width: 270px;
}

@media (max-width: 768px) {
    .services ul li a .item-wrap {
        height: 300px;
        width: 100%;
    }
}

@media (max-width: 460px) {
    .services ul li a .item-wrap {
        height: 400px;
    }
}

.services ul li a .item-wrap h3 {
    bottom: 30px;
    color: #ffffff;
    font-size: 22px;
    line-height: 26px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    left: 0;
    padding: 20px;
    position: absolute;
    z-index: 1;
}

@media (max-width: 460px) {
    .services ul li a .item-wrap h3 {
        padding: 20px 10px;
    }
}

.services ul li a:hover .item-wrap h3 {
    text-decoration: underline;
}

.content .sidebar {
    float: right;
    width: 300px;
}

@media (max-width: 1024px) {
    .content .sidebar {
        display: none;
    }
}

.content .sidebar .widget {
    margin-bottom: 40px;
}

.content .sidebar .widget .widget-title {
    color: #333333;
    display: block;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    text-transform: uppercase;
    /*
      &:before {
        background: $color-secondary;
        bottom: -8px;
        content: '';
        display: block;
        left: 0;
        height: 20px;
        position: absolute;
        width: 50px;
        z-index: -1;
      }*/
}

.content .sidebar .widget .recent li {
    margin-bottom: 30px;
}

.content .sidebar .widget .recent li a {
    display: block;
}

.content .sidebar .widget .recent li a .img-wrap {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    float: left;
    height: 65px;
    overflow: hidden;
    width: 130px;
}

.content .sidebar .widget .recent li a .img-wrap img {
    height: 100%;
}

.content .sidebar .widget .recent li a .description {
    float: right;
    width: 160px;
}

.content .sidebar .widget .recent li a .description .views {
    margin: -10px 0 0;
}

.content .sidebar .widget .recent li a .description .views p {
    color: #333333;
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
}

.content .sidebar .widget .recent li a .description .views p:before {
    content: '\e037';
    display: inline-block;
    font-family: "dripicons-v2", sans-serif;
    font-size: 16px;
    margin-right: 5px;
    vertical-align: middle;
}

.content .sidebar .widget .recent li a .description p.recent-title {
    color: #333333;
    display: block;
    font-size: 16px;
    line-height: 20px;
    font-weight: 200;
}

.content .sidebar .widget .recent li a:hover p.recent-title {
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

#toTop {
    background: #ffe500;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    bottom: 50px;
    display: none;
    height: 40px;
    line-height: 40px;
    position: fixed;
    overflow: hidden;
    right: 50px;
    text-align: center;
    text-decoration: none;
    width: 40px;
    z-index: 20;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

#toTop:before {
    color: #333333;
    content: '\W';
    font-family: "dripicons-v2", sans-serif;
    font-size: 26px;
}

#toTop:hover {
    background: #333333;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

#toTop:hover:before {
    color: #ffe500;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

#toc_container {
    background: #f6f6f6 !important;
    border: none !important;
    margin: 25px auto 20px;
    max-width: 90%;
    padding: 25px 0 25px 0 !important;
    position: relative;
    width: max-content;
    width: -moz-max-content;
}

#toc_container:before {
    background: repeat-y url("../img/scroll-left-side.svg");
    background-size: 30px;
    content: '';
    display: block;
    height: 100%;
    left: -30px;
    position: absolute;
    top: 0;
    width: 30px;
}

#toc_container:after {
    background: repeat-y url("../img/scroll-right-side.svg");
    background-size: 30px;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    right: -30px;
    width: 30px;
}

#toc_container p.toc_title {
    color: #000000;
    font-family: "Dancing Script", cursive;
    font-size: 30px;
    font-weight: 700;
    line-height: 38px;
    margin-bottom: 25px;
    padding: 0;
}

#toc_container .toc_list {
    margin-bottom: 20px;
}

#toc_container ul {
    padding: 0;
}

#toc_container ul li {
    padding: 5px 10px;
}

#toc_container ul li:before {
    content: none !important;
}

#toc_container ul li a {
    color: #000000;
    font-family: "Poppins", sans-serif;
    /*         font-family: "Dancing Script", cursive; */
    font-size: 22px;
    line-height: 26px;
    margin: 10px 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

#toc_container ul li a:hover {
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

#toc_container ul li ul {
    margin-top: 10px;
}

#toc_container ul li span.toc_number {
    color: #000000;
    display: inline-block;
    font-family: "Dancing Script", cursive;
    font-size: 22px;
    line-height: 26px;
    text-align: center;
    margin-right: 8px;
}

.footer {
    background: black;
    /*   background: center/cover no-repeat url("../img/footer-bg.jpg"); */
    padding: 35px 0 25px;
    text-align: center;
}

.footer .foot-logo a {
    color: #ffffff;
    display: block;
    font-size: 32px;
    line-height: 38px;
    font-weight: 800;
}

.footer .social {
    margin: 30px 0 0;
}

.footer .social li {
    display: inline-block;
    margin: 0 10px;
}

.footer .social li a {
    display: block;
}

.footer .social li a img {
    width: 30px;
}

.copyright {
    background: #000000;
    padding: 10px 0 10px;
    text-align: center;
}

.copyright p {
    color: #ffe500;
    font-size: 14px;
    line-height: 20px;
    font-weight: 300;
}

.copyright a {
    color: #ffe500;
    font-size: 14px;
    line-height: 20px;
    font-weight: 300;
}

.container {
    margin: 0 auto;
    padding: 0 12px;
    width: 1200px;
}

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

@media (max-width: 1024px) {
    .container {
        width: 100%;
    }
}

.main-content .row {
    padding: 0 0 65px;
}

.four-col-grid {
    margin: 0 -15px;
}

.four-col-grid:after {
    content: '';
    clear: both;
    display: table;
}

.four-col-grid .grid-item {
    float: left;
    padding: 0 15px;
    width: 25%;
}

.three-col-grid {
    margin: 0 -10px;
}

.three-col-grid:after {
    content: '';
    clear: both;
    display: table;
}

.three-col-grid .grid-item {
    float: left;
    padding: 0 10px;
    width: 33.3333333%;
}

.two-col-grid {
    margin: 0 -10px;
}

.two-col-grid:after {
    content: '';
    clear: both;
    display: table;
}

.two-col-grid .grid-item {
    float: left;
    padding: 0 10px;
    margin: 10px 0;
    width: 50%;
}

@media (max-width: 768px) {
    .two-col-grid .grid-item {
        width: 100%;
    }
}

.form-row-first {
    float: left;
    width: 49%;
}

@media (max-width: 768px) {
    .form-row-first {
        width: 100%;
    }
}

.form-row-last {
    float: right;
    width: 49%;
}

@media (max-width: 768px) {
    .form-row-last {
        width: 100%;
    }
}

.form-row-wide {
    width: 100%;
}


/*********************
BREAKPOINTS
*********************/

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

.header .container {
    position: relative;
}

.header .head {
    background: #ffffff;
    height: 90px;
    position: relative;
}

@media (max-width: 1024px) {
    .header .head {
        -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15);
        -moz-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15);
        box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15);
        transition: all 300ms ease-in;
    }
}

.header .head .container {
    background: #fff no-repeat url("../images/header-bg.png");
    /* 		background-image: image-set(
    "../images/header-bg.avif" type("image/avif"),
    "../images/header-bg.webp" type("image/webp"),
			"../images/header-bg.png" type("image/png"),
  ); */
    background-position: 50% 100%;
    background-size: 1200px;
    padding-bottom: 22px;
}

@media (max-width: 1024px) {
    .header .head .container {
        background: #ffffff;
        padding-bottom: 0;
    }
}

.header .head .container .logo {
    left: 0;
    line-height: 90px;
    margin: 30px auto 0;
    position: absolute;
    right: 0;
    width: fit-content;
}

.header .head .container .logo a {
    color: #000000;
    display: block;
    font-size: 32px;
    line-height: 38px;
    font-weight: 800;
}

.header .head .container .search-wrapper {
    float: left;
    margin-top: 35px;
    width: 20px;
}

@media (max-width: 768px) {
    .header .head .container .search-wrapper {
        left: 0;
        position: absolute;
        width: 0;
    }
}

.header .head .container .search-wrapper .close-search {
    cursor: pointer;
    display: none;
    font-size: 26px;
    position: absolute;
    right: 0;
    top: -5px;
    z-index: 104;
}

.header .head .container .search-wrapper.active-search {
    width: 100%;
    z-index: 103;
}

.header .head .container .search-wrapper.active-search .close-search {
    display: block;
}

.header .head .container .search-wrapper .search-form {
    position: relative;
    width: 225px;
}

@media (max-width: 768px) {
    .header .head .container .search-wrapper .search-form {
        width: 100%;
    }
}

.header .head .container .search-wrapper .search-form:after {
    content: '\e041';
    font-family: "dripicons-v2", sans-serif;
    font-size: 18px;
    left: 0;
    position: absolute;
    top: 0;
}

@media (max-width: 768px) {
    .header .head .container .search-wrapper .search-form:after {
        cursor: pointer;
        font-size: 22px;
    }
}

.header .head .container .search-wrapper .search-form input {
    background: transparent;
    border: none;
    border-bottom: 1px solid #000000;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    color: #000000;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    height: auto;
    padding: 0 0 2px 25px;
    width: 100%;
}

@media (max-width: 768px) {
    .header .head .container .search-wrapper .search-form input {
        background: #ffffff;
        height: 32px;
        padding: 0 0 2px 35px;
        opacity: 0;
        transition: all 0.1s ease-in-out;
        -webkit-transition: all 0.1s ease-in-out;
        -moz-transition: all 0.1s ease-in-out;
        -o-transition: all 0.1s ease-in-out;
    }
    .header .head .container .search-wrapper .search-form input.wide-search {
        opacity: 1;
        transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
    }
}

.header .head .container .nav {
    float: right;
    margin-top: 43px;
}

@media (max-width: 1024px) {
    .header .head .container .nav {
        opacity: 0;
    }
}

.header .head .container .nav li {
    display: inline-block;
    margin-left: 20px;
}

.header .head .container .nav li a {
    color: #000000;
    display: block;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.header .head .container .nav li a:hover {
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

@media (max-width: 1024px) {
    .header .open-bars {
        cursor: pointer;
        position: absolute;
        top: 30px;
        right: 15px;
        z-index: 102;
    }
    .header .open-bars.close {
        position: fixed;
    }
    .header .open-bars .bar-1,
    .header .open-bars .bar-2,
    .header .open-bars .bar-3 {
        background: #333333;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        height: 3px;
        margin: 9px 0;
        transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        width: 35px;
    }
    .header .open-bars.close .bar-1 {
        -moz-transform: rotate(-45deg) translate(-3px, 2px);
        -ms-transform: rotate(-45deg) translate(-3px, 2px);
        -webkit-transform: rotate(-45deg) translate(-2px, 3px);
        -o-transform: rotate(-45deg) translate(-3px, 2px);
        transform: rotate(-45deg) translate(-3px, 2px);
    }
    .header .open-bars.close .bar-2 {
        display: none;
    }
    .header .open-bars.close .bar-3 {
        -moz-transform: rotate(45deg) translate(-6px, -5px);
        -ms-transform: rotate(45deg) translate(-6px, -5px);
        -webkit-transform: rotate(45deg) translate(6, -5px);
        -o-transform: rotate(45deg) translate(-6px, -5px);
        transform: rotate(45deg) translate(-6px, -5px);
    }
}

.menu-container {
    background: #ffe500;
    display: block;
}

@media (max-width: 1024px) {
    .menu-container {
        background: #ffffff;
        height: 100%;
        left: 0;
        margin-top: 0;
        padding-top: 85px;
        position: fixed;
        top: -100%;
        opacity: 0;
        overflow-y: scroll;
        width: 100%;
        z-index: 101;
        transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
    }
}

.menu-container.open-menu {
    opacity: 1;
    top: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.menu-container .menu {
    /*     text-align: center; */
}

.menu-container .menu li {
    display: inline-block;
    margin: 0 15px;
    position: relative;
}

@media (max-width: 1024px) {
    .menu-container .menu li {
        border-bottom: 1px solid #ececed;
        display: block;
    }
}

.menu-container .menu li a {
    color: #000000;
    display: inline-block;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    height: 50px;
    line-height: 50px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

@media (max-width: 1024px) {
    .menu-container .menu li a {
        font-size: 16px;
        line-height: 22px;
        height: auto;
        padding: 10px 0;
    }
}

.menu-container .menu li a:hover {
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.menu-container .menu li .sub-menu {
    background: #ffffff;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15);
    display: block;
    left: -20px;
    padding: 10px 0;
    position: absolute;
    opacity: 0;
    top: 100%;
    transform-origin: top top;
    transform: scale(0);
    transition: opacity .2s ease-out, transform .2s ease-out;
    text-align: left;
    width: 230px;
    z-index: 1001;
}

@media (max-width: 1024px) {
    .menu-container .menu li .sub-menu {
        box-shadow: none;
        display: none;
        left: auto;
        position: relative;
        opacity: 1;
        transform: scale(1);
        text-align: center;
        top: auto;
        width: 100%;
    }
}

.menu-container .menu li .sub-menu li {
    border-bottom: 1px solid #ececed;
    display: block;
    margin: 0;
    padding-bottom: 0;
}

@media (max-width: 1024px) {
    .menu-container .menu li .sub-menu li {
        border-bottom: none;
    }
}

.menu-container .menu li .sub-menu li a {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    height: auto;
    padding: 10px 20px;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .menu-container .menu li .sub-menu li a {
        border-bottom: none;
    }
}

.menu-container .menu li .sub-menu li:last-child {
    border-bottom: none;
}

@media (max-width: 1024px) {
    .menu-container .menu li.menu-item-has-children>span {
        border-left: 1px solid;
        float: right;
        font-size: 20px;
        line-height: 22px;
        margin: 4px 12px;
        height: auto;
        padding: 0 10px;
    }
}

.menu-container .menu li.menu-item-has-children:hover .sub-menu {
    opacity: 1 !important;
    transform: scale(1) !important;
}

.menu-container .nav {
    padding: 25px 0;
    text-align: center;
}

.menu-container .nav li {
    display: block;
}

.menu-container .nav li a {
    color: #000000;
    display: block;
    font-size: 16px;
    line-height: 32px;
    font-weight: 700;
    padding: 10px 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    text-transform: uppercase;
}

.menu-container .nav li a:hover {
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}


