﻿/*===============================================================================*/
/* FONTS IMPORT */
/*===============================================================================*/

/** Plus Jakarta Sans **/
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
}


/*===============================================================================*/
/* GENERAL */
/*===============================================================================*/

html {
    font-family: 'Plus Jakarta Sans', sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    margin: 0;
}
.button .link {
    font-weight: 600;
}
.c-btn {
    padding: 16px 35px;
    border-radius: 100px;
    font-weight: bold;
    color: white;
}
.svg-container svg {
    min-width: 992px;
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: -60px;
}
.fa.fa-check {
    color: #093;
}
.fa.fa-times {
    color: red;
}
.title {
    position: relative;
}
.title h2 {
    position: relative;
    z-index: 2;
}
.title .title-deco {
    position: absolute;
    bottom: -5px;
    z-index: 1;
}
.accordion-button:focus {
    outline: none;
    box-shadow: none;
}


/* Subheader */
.home-banner {
    position: relative;
}
.subheader {
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 0 90px 0;
}
.subheader.overlay-light.has-overlay:before, .home-banner.overlay-light.has-overlay:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7); /* light overlay */
}
.subheader.overlay-dark.has-overlay:before, .home-banner.overlay-dark.has-overlay:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* dark overlay */
}
.subheader:before, .home-banner:before {
    content: none;
}
.subheader .container, .home-banner .container {
    position: relative;
}
.subheader h3, .home-banner h3 {
    font-weight: 400;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    section.subheader {
        padding: 160px 0 120px 0 !important;
    }
}

/* Widget Area */
section.widget-area {
    padding-top: 0;
    position: relative;
}
section.widget-area .card {
    max-width: 600px;
    width: fit-content;
    padding: 60px;
    border-radius: 30px;
    position: relative;
    top: -100px;
}
section.widget-area .card .title h2 {
    font-size: 48px;
    text-align: center;
}
section.widget-area .card .title .title-deco {
    left: 50%;
    transform: translateX(-50%);
}

@media (min-width: 761px) {
    section.widget-area .card {
        min-width: 560px;
    }
}
@media (max-width: 992px) {
    section.widget-area {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    section.widget-area .card {
        padding: 30px;
        top: 0;
    }
    section.widget-area .card .title h2 {
        font-size: 36px;
    }
}

/* Testimonials */
section.testimonials {
    padding-bottom: 150px;
}
section.testimonials .carousel {
    max-width: 900px;
    margin: auto;
}

section.testimonials .carousel .carousel-item .testimony {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    color: #386352;
}
section.testimonials .carousel .carousel-item .customer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
section.testimonials .carousel .carousel-item .customer .customer-img {
    background-color: #EBE6E0;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    padding: 5px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
section.testimonials .carousel .carousel-item .customer .customer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}
section.testimonials .carousel .carousel-indicators {
    position: initial;
    margin-bottom: 0;
}
section.testimonials .carousel .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    background-color: #EBE6E0;
    border-radius: 100px;
    margin-left: 12px;
    margin-right: 12px;
    border: none;
}
section.testimonials .carousel .carousel-indicators .active {
    background-color: #4C7766;
}
@media (max-width: 992px) {
    .home-banner .title h1, .subheader h1 {
        font-size: 36px !important;
        text-align: center;
    }
    .home-banner .title h3, .subheader h3 {
        font-size: 20px !important;
        text-align: center;
    }
    .title .title-deco {
        left: 50% !important;
        transform: translateX(-50%);
    }
    section:not(.home-banner) {
        padding: 100px 0 !important;
    }
    .title h2 {
        font-size: 32px;
        text-align: center;
    }
    .svg-container {
        display: none !important;
    }
}

@media (max-width: 768px) {
    section.testimonials .carousel .carousel-item .testimony {
        font-size: 32px !important;
        font-weight: 700;
    }
}

/* Tables */
.table-striped>tbody>tr:nth-of-type(odd)>* {
    background-color: white;
    box-shadow: none;
}
.table>:not(caption)>*>* {
    background-color: #FAFAFA;
}
.table, .table th, .table td {
    border: none;
    vertical-align: middle;
}
.table tbody th {
    font-weight: 400;
}
@media (max-width: 768px) {
    .table .competition {
        font-size: 10px;
        font-weight: 400;
        vertical-align: middle;
    }
}

/* Tabs */
.nav-pills .nav-link {
    padding: 30px;
    border-radius: 12px;
}

.nav-pills .nav-link strong {
    font-weight: 600;
}


/*===============================================================================*/
/* NAVBAR */
/*===============================================================================*/

header {
    position: absolute;
    width: 100%;
    top: 20px;
    z-index: 3;
}
header nav.navbar {
    border-radius: 100px;
    padding: 16px 25px !important;
}
header nav.navbar img {
    max-width: 270px;
    max-height: 70px;
}
header nav.navbar ul li {
    list-style-type: none;
}
header .navbar-nav {
    margin-left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
header .navbar .navbar-toggler {
    border: none;
    padding: 0;
}
header .navbar .navbar-toggler:focus {
    box-shadow: none;
}
header .navbar-nav .menu {
    display: flex;
    margin-left: 0;
    padding-left: 0;
}
header .navbar-nav .menu-item a.nav-link {
    padding: 10px 15px;
    font-weight: 500;
    text-align: center;
}

header .navbar-nav #menu-secondary-menu .menu-item:last-child {
    padding-right: 0;
    padding-left: 12px;
}
header .navbar-nav #menu-secondary-menu .menu-item:last-child a {
    border-radius: 50px;
    padding: 10px 16px;
    font-weight: bold;
}
header .navbar-logo {
    min-width: 270px;
}
header .navbar-logo img {
    max-width: 270px;
    max-height: 70px;
}

@media (max-width: 992px) {
    header nav.navbar .btn-close, header nav.navbar .navbar-toggler-icon {
        filter: brightness(100);
    }
    header nav.navbar .offcanvas {
        padding-top: 25px !important;
    }
    header nav.navbar .offcanvas .offcanvas-header {
        padding: 16px 25px !important;
    }
    header nav.navbar .offcanvas .navbar-nav .menu {
        flex-direction: column !important;
    }
    header .navbar-nav #menu-secondary-menu .menu-item:last-child {
        margin-top: 10px;
        padding-left: 0;
        text-align: center;
    }
}

@media (min-width: 1400px) {
    header .container {
        max-width: 1420px;
    }
}

/*===============================================================================*/
/* FOOTER */
/*===============================================================================*/

footer .footer-bg svg {
    width: max-content; 
    height: auto;
    display: block; 
    margin-bottom: -50px;
}
footer .footer-main ul li {
    list-style-type: none;
}
footer .footer-main .container, footer .sub-footer .container {
    padding-top: 20px;
    padding-bottom: 20px;
}
footer .footer-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 50px;
}
footer .footer-main .contact-area .sign-up .title {
    font-size: 32px;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 12px;
}
footer .footer-main .contact-area .sign-up .widget {
    margin-bottom: 20px;
    max-width: 320px;
}
footer .footer-main .contact-area .contact {
    display: flex;
    flex-direction: column;
}
footer .footer-main .contact-area .contact a {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
footer .footer-main .contact-area .contact a:last-child img {
    align-self: flex-start;
    position: relative;
    top: 4px;
}
footer .footer-main .contact-area .contact a img {
    max-height: 16px;
    max-width: 16px;
}
footer .footer-main .menu-area {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    flex: 1 0 0;
    gap: 0 50px;
}
footer .footer-main .menu-area .menu .title {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    margin-top: 18px;
    margin-bottom: 8px;
}
footer .footer-main .menu-area .menu .navbar-nav {
    margin-left: 0;
}
footer .sub-footer .logo img {
    max-width: 200px;
    max-height: 70px;
}
footer .sub-footer .copyright {
    color: #FFFFFF;
    font-size: 14px;
    text-align: center;
}
footer .sub-footer .copyright a:hover {
    text-decoration: underline;
}
footer .sub-footer .copyright .button-separator {
    margin: 0 12px;
}
footer .sub-footer .social-media ul {
    margin: 0;
}
footer .sub-footer .social-media .social-network {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    width: 48px;
    height: 48px;
    cursor: pointer;
    padding: 12px;
}
footer .sub-footer .social-media .social-network a {
    display: flex;
    align-items: center;
    justify-content: center;
}
footer .sub-footer .social-media .social-network img {
    width: 22px;
}

@media (max-width: 992px) {
    footer .footer-bg svg {
        margin-bottom: -35px;
    }
}
@media (max-width: 768px) {
    footer .footer-bg svg {
        margin-bottom: -20px;
    }
    footer .footer-main .container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 50px;
    }
    footer .footer-main .contact-area .sign-up {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    footer .footer-main .contact-area .contact {
        align-items: center;
    }
    footer .footer-main .menu-area {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        flex: auto;
    }
    footer .footer-main .contact-area .contact a img {
        display: none;
    }
}


/*===============================================================================*/
/* HOME PAGE */
/*===============================================================================*/

.page-template-page-homepage section.how-it-works, .page-template-page-homepage section.why-us, .page-template-page-homepage section.how-it-works, .page-template-page-homepage section.widget-area {
    padding-top: 80px;
}

/* Home banner */
.page-template-page-homepage section.home-banner {
    padding-top: 200px;
    padding-bottom: 200px;
}
.page-template-page-homepage .home-banner .left-section .title {
    margin-bottom: 30px;
}
.page-template-page-homepage .home-banner .left-section .title h1 {
    position: relative;
    z-index: 2;
}
.page-template-page-homepage .home-banner .left-section .title > div {
    position: relative;
}
.page-template-page-homepage .home-banner .right-section .home-banner-image img {
    border-radius: 16px;
}

@media (max-width: 992px) {
    .page-template-page-homepage .home-banner {
        padding-top: 160px !important;
        padding-bottom: 140px !important;
    }
    .page-template-page-homepage .home-banner .widget {
        display: flex;
        justify-content: center;
    }
}

/* How it works */
.page-template-page-homepage .how-it-works {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.page-template-page-homepage .how-it-works .title {
    margin-bottom: 50px;
}
.page-template-page-homepage .how-it-works .content .image {
    position: relative;
    max-width: 340px;
}
.page-template-page-homepage .how-it-works .content .image .icon {
    position: absolute;
    z-index: 2;
    bottom: 35%;
    right: 50%;
    transform: translate(50%, 80%);
}
.page-template-page-homepage .how-it-works .content .button {
    margin-top: 30px;
}
.page-template-page-homepage .how-it-works .content .image .icon {
    width: 44px;
}
.page-template-page-homepage .how-it-works .content h4 {
    font-size: 22px;
}

@media (max-width: 1380px) {
    .page-template-page-homepage .hiw-svg-container {
        margin-top: -40px !important;
    }
}
@media (max-width: 992px) {
    .page-template-page-homepage .how-it-works .item:not(:last-child) {
        margin-bottom: 30px;
    }
    .page-template-page-homepage .how-it-works .content .image .icon {
        width: 45px;
    }
    .page-template-page-homepage .how-it-works .content .image {
        margin-left: auto;
        margin-right: auto;
    }
    .page-template-page-homepage .how-it-works .content .content-inner {
        text-align: center;
    }
}

/* Why Us */
.page-template-page-homepage .why-us .title .title-deco {
    left: 0;
}

/* Trust */
.page-template-page-homepage .trust .title .title-deco {
    left: 0;
}
.page-template-page-homepage .trust .info-descr {
    font-size: 14px;
}
@media (max-width: 768px) {
    .page-template-page-homepage .trust .item .image img {
        width: 32px;
        max-height: 32px;
    }
    .page-template-page-homepage .trust .right-section {
        border-bottom: 1px solid #EAEAEA;
        padding-bottom: 30px;
    }
}

/* Widget Area */
.page-template-page-homepage section.widget-area {
    padding-top: 0;
    padding-bottom: 20px;
    position: relative;
}
.page-template-page-homepage section.widget-area .card {
    max-width: 600px;
    width: fit-content;
    padding: 60px;
    border-radius: 30px;
    position: relative;
    top: -100px;
}

@media (max-width: 992px) {
    .page-template-page-homepage section.widget-area {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .page-template-page-homepage section.widget-area .card {
        padding: 30px;
        top: 0;
    }
}

/* Service Areas */
.page-template-page-homepage .service-areas .map, .page-template-page-homepage .service-areas .map iframe {
    width: 100%;
} 
.page-template-page-homepage .service-areas ul {
    list-style-type: disc;
}


/*===============================================================================*/
/* ABOUT US PAGE */
/*===============================================================================*/

.page-template-page-about .svg-container.top {
    height: 0;
}
.page-template-page-about .svg-container.top svg {
    position: relative;
    margin-bottom: 0 !important;
    top: -50px;
}

/* Subheader */
.page-template-page-about .subheader {
    min-height: 720px;
}
.page-template-page-about .subheader .list-checked .list-item {
    display: flex;
    align-items: center;
}
.page-template-page-about .subheader .list-checked .list-item img {
    width: 25px;
    margin-right: 12px;
}

/* Why Us */
.page-template-page-about .why-us .right-section .item {
    border-radius: 12px;
    padding: 30px 50px;
}
.page-template-page-about .why-us .right-section .item:not(:last-child) {
    margin-bottom: 30px;
}
.page-template-page-about .why-us .right-section .item:nth-child(3n+1) {
    background-color: #B4BC95;
    margin-right: 50px;
}
.page-template-page-about .why-us .right-section .item:nth-child(3n+2) {
    background-color: #BCAA95;
    margin-left: 50px;
}
.page-template-page-about .why-us .right-section .item:nth-child(3n) {
    background-color: #92A69E;
    margin-right: 25px;
    margin-left: 25px;
}
.page-template-page-about .why-us .right-section .item .image {
    min-width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-template-page-about .why-us .right-section .item .image img {
    width: 18px;
}

@media (max-width: 768px) {
    .page-template-page-about .why-us .right-section .item {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 30px;
    }
}

/* Apply */
.page-template-page-about section.apply {
    padding-bottom: 220px;
}
.page-template-page-about .apply .right-section .item:nth-child(3n+1) .image {
    background-color: #B4BC95;
}
.page-template-page-about .apply .right-section .item:nth-child(3n+2) .image {
    background-color: #BCAA95;
}
.page-template-page-about .apply .right-section .item:nth-child(3n) .image {
    background-color: #92A69E;
}
.page-template-page-about .apply .right-section .item .image {
    min-width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-template-page-about .apply .right-section .item .image img {
    width: 18px;
}
.page-template-page-about .apply .left-section .image {
    max-width: 480px;
}

@media (max-width: 768px) {
    .page-template-page-about .apply .right-section .item {
        gap: 16px !important;
    }
    .page-template-page-about .apply .right-section .item .image {
        min-width: 24px;
        height: 24px;
        border-radius: 8px;
        margin-top: 2px;
    }
    .page-template-page-about .apply .right-section .item .image img {
        width: 14px;
    }
}


/*===============================================================================*/
/* SERVICES PAGE */
/*===============================================================================*/

.page-template-page-service .svg-container.top {
    height: 0;
}
.page-template-page-service .svg-container.top svg {
    position: relative;
    margin-bottom: 0 !important;
    top: -50px;
}
.page-template-page-service .included ul li {
    list-style: none;
}
.page-template-page-service .included .right-section .image {
    max-width: 480px;
}

/* Services */
.page-template-page-service .services {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.page-template-page-service .services .title {
    margin-bottom: 50px;
}

.page-template-page-service .services .content .image {
    position: relative;
    max-width: 340px;
}
.page-template-page-service .services .content .image .icon {
    position: absolute;
    z-index: 2;
    bottom: 35%;
    right: 50%;
    transform: translate(50%, 80%);
}
.page-template-page-service .services .content .button {
    margin-top: 30px;
}
.page-template-page-service .services .content .image .icon img {
    width: 44px;
}
.page-template-page-service .services .content h4 {
    font-size: 22px;
}

@media (max-width: 992px) {
    .page-template-page-service .services .item:not(:last-child) {
        margin-bottom: 30px;
    }
    .page-template-page-service .services .content .image {
        margin-left: auto;
        margin-right: auto;
    }
    .page-template-page-service .services .content .image .icon {
        width: 45px;
    }
    .page-template-page-service .services .content .content-inner {
        text-align: center;
    }
}

/* Checklist */
.page-template-page-service .checklist {
    padding-bottom: 180px;
    padding-top: 0px !important;
    background-color: #FBFBFB;
}
.page-template-page-service .checklist table thead th {
    font-weight: 600;
    font-size: 14px;
}
.page-template-page-service .checklist table tbody th {
    font-size: 14px;
}
.page-template-page-service .checklist .item-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-template-page-service .checklist ul li {
    list-style: none;
}
.page-template-page-service .checklist .nav-link {
    display: flex;
    align-items: center;
    gap: 16px;
}
.page-template-page-service .checklist .nav-link.active .item-icon img {
    filter: brightness(100);
}
.page-template-page-service .checklist .accordion .accordion-item {
    margin-bottom: 16px;
    border: none;
}
.page-template-page-service .checklist .accordion-header .accordion-button {
    border-radius: 12px !important;
}
.page-template-page-service .checklist .accordion-header .accordion-button .item-icon {
    margin-right: 16px;
}
.page-template-page-service .checklist .accordion-header:focus-visible, .page-template-page-service .checklist .accordion-header .accordion-button:focus-visible {
    outline: none;
}
.page-template-page-service .checklist .accordion-button::after {
    display: none;
}
.page-template-page-service .checklist .accordion-body {
    background-color: #FBFBFB;
}
.page-template-page-service .checklist .accordion-body .row:nth-child(odd) {
    background-color: #FBFBFB;
}
.page-template-page-service .checklist .accordion-body .row:nth-child(even) {
    background-color: #FFFFFF;
}
.page-template-page-service .checklist .accordion-body .table-title {
    font-size: 12px;
    font-weight: 600;

    text-align: left;
}
.page-template-page-service .checklist .accordion-body .col {
    font-size: 13px;
}
.page-template-page-service .checklist .accordion-body .col-2 {
    display: flex;
    align-items: center;
}
.page-template-page-service .checklist .accordion-body .col-2:not(.table-title) {
    justify-content: center;
}


/*===============================================================================*/
/* GIFT CARD PAGE */
/*===============================================================================*/

.page-template-page-giftcard .svg-container.top {
    height: 0;
}
.page-template-page-giftcard .svg-container.top svg {
    position: relative;
    margin-bottom: 0 !important;
    top: -50px;
}
.page-template-page-giftcard .giftcard-area, .page-template-page-giftcard footer .footer-bg {
    background-color: #FBFBFB;
}
.page-template-page-giftcard .giftcard-area .giftcard-innerbox {
    margin-top: -180px;
    position: relative;
}
@media (max-width: 768px) {
    .page-template-page-giftcard .giftcard-area .giftcard-innerbox  {
        margin-top: -150px;
    }
}


/*===============================================================================*/
/* BOOKING PAGE */
/*===============================================================================*/

.page-template-page-booking .svg-container.top {
    height: 0;
}
.page-template-page-booking .svg-container.top svg {
    position: relative;
    margin-bottom: 0 !important;
    top: -50px;
}
.page-template-page-booking .booking-form {
    background-color: #FBFBFB;
}
.page-template-page-booking .booking-form .booking-inner {
    margin-top: -200px;
    position: relative;
}

@media (max-width: 768px) {
    .page-template-page-booking .booking-form .booking-inner {
        margin-top: -150px;
    }
}

/*===============================================================================*/
/* CONTACT PAGE */
/*===============================================================================*/

.page-template-page-contact .svg-container.top {
    height: 0;
}
.page-template-page-contact .svg-container.top svg {
    position: relative;
    margin-bottom: 0 !important;
    top: -50px;
}
.page-template-page-contact .contact-form .form-container {
    margin-top: -180px;
    position: relative;
    background-color: #FBFBFB;
    border-radius: 24px;
    padding: 50px 30px;
    box-shadow: 0px 2px 40px 0px rgba(189, 189, 189, 0.35);
}
.page-template-page-contact .contact-form .form-container .contact-box-title {
    display: flex;
    align-items: center;
    gap: 30px;
}
.page-template-page-contact .contact-form .form-container .contact-box-title:not(:last-child) {
    padding-bottom: 24px;
}
.page-template-page-contact .contact-form .form-container .contact-box-title:not(:first-child) {
    border-top: 1px solid #dee2e6;
    padding-top: 24px;
}
.page-template-page-contact .contact-form .form-container .contact-box-title:first-child {
    padding-bottom: 16px;
}
.page-template-page-contact .contact-form .form-container .contact-box-title .title-count {
    color: white;
    min-width: 44px;
    min-height: 44px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
}
.page-template-page-contact .contact-form .form-container .contact-box-title .title-text p {
    margin-bottom: 0;
}
.page-template-page-contact .contact-form .form-container .contact-box-title .title-text p:not(.head) {
    color: #46696E;
    font-size: 13px;
}
.page-template-page-contact .contact-box-content .content-heading {
    font-weight: 500;
    margin-bottom: 0;
}
.page-template-page-contact .contact-box-content :not(.content-heading) {
    color: #46696E;
    font-size: 14px;
}
.page-template-page-contact .contact-form .form-container .wpcf7-select {
    background: #FFFFFF;
    background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
    border: 1px solid #C3C3C3;
    border-radius: 8px;
    color: #1B434A;
    padding: 12px 16px;
    width: 100%;
}
.page-template-page-contact .contact-form .form-container .wpcf7-form label {
    width: 100%;
}
.page-template-page-contact .contact-form .form-container .send-it {
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.page-template-page-contact .contact-form .form-container .send-it p {
    margin-bottom: 0;
}
.page-template-page-contact .contact-form .form-container .send-it .wpcf7-spinner {
    display: none;
}
.page-template-page-contact .contact-form, .page-template-page-contact footer .footer-bg {
    background-color: #FBFBFB;
}

@media (max-width: 992px) {
    .page-template-page-contact .contact-form .form-container .col-lg-6:first-child {
        margin-bottom: 30px;
    }
}
@media (max-width: 768px) {
    .page-template-page-contact .contact-form .form-container {
        margin-top: -150px;
        padding: 30px 20px;
        margin-left: 6px;
        margin-right: 6px;
    }
}


/*===============================================================================*/
/* HELP PAGE */
/*===============================================================================*/

.page-template-page-help .svg-container.top {
    height: 0;
}
.page-template-page-help .svg-container.top svg {
    position: relative;
    margin-bottom: 0 !important;
    top: -50px;
}
.page-template-page-help .faq-area .faq-box-header {
    margin-bottom: 20px;
}
.page-template-page-help .faq-area .accordion-button {
    padding-left: 30px;
    padding-top: 12px;
    padding-bottom: 12px;
    font-weight: 400;
    box-shadow: none;
}
.page-template-page-help .faq-area .faq-content .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: initial;
}
.page-template-page-help .faq-area .accordion-button::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 12px;
    background: #46696E;
    top: 50%;
    left: 5px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.page-template-page-help .faq-area .accordion-button::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 2px;
    background: #46696E;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.page-template-page-help .faq-area .accordion-button:not(.collapsed)::before {
    display: none;
}
.page-template-page-help .faq-area .accordion-body {
    padding-bottom: 12px;
    padding-top: 12px;
    padding-left: 30px;
}
.page-template-page-help .faq-area .accordion-body p {
    margin-bottom: 0;
}


/*===============================================================================*/
/* BLOG */
/*===============================================================================*/

.page-template-page-blog .svg-container.top {
    height: 0;
}
.page-template-page-blog .svg-container.top svg {
    position: relative;
    margin-bottom: 0 !important;
    top: -50px;
}

/* Posts */
.page-template-page-blog .blog-content {
    background-color: #FBFBFB;
}
.page-template-page-blog .blog-content .col-lg-8 .blog-posts {
    margin-top: -180px;
    position: relative;
    background-color: #FBFBFB;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0px 2px 40px 0px rgba(189, 189, 189, 0.35);
}
.page-template-page-blog .blog-content .item-article:not(:last-child) {
    margin-bottom: 30px;
}
.blog footer .footer-bg {
    background-color: #FBFBFB;
}

/* Sidebar */
.blog-content__aside .logo {
    max-width: 200px;
    margin: 0 auto 30px auto;
}
.blog-content__aside .logo img {
    width: 100%;
}
.blog-content__aside .subscribe-box {
    background-color: #FBFBFB;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0px 2px 40px 0px rgba(189, 189, 189, 0.35);
}
.blog-content__aside .subscribe-box h5, .blog-content__aside .subscribe-box p {
    text-align: left;
}
.blog-content__aside .subscribe-box input[type="email"] {
    color: #072125;
}
.blog-content__aside .subscribe-box input[type="email"]::placeholder {
    color: #717375;
}
.blog-content__aside .subscribe-box .subscribe-text {
    font-size: 13px;
    color: #717375;
}
.blog-content__aside .subscribe-box .c-btn {
    padding: 16px 35px;
    border-radius: 100px;
    font-weight: bold;
    color: white;
    letter-spacing: initial;
    line-height: initial;
    min-height: 62px;
}
.blog-content__aside li {
    list-style: none;
    font-size: 16px;
    color: #717375;
}
.blog-content__aside ul {
    margin-left: 0;
}
.blog-content__aside .topics {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.blog-content__aside .topics .topic {
    border-radius: 100px;
    color: white;
    padding: 3px 15px;
    font-size: 12px;
}
@media (max-width: 992px) {
    .blog-content__aside {
        padding-top: 50px;
    }
}

/* Posts */
.post-template-default .svg-container.top {
    height: 0;
}
.post-template-default .svg-container.top svg {
    position: relative;
    margin-bottom: 0 !important;
    top: -50px;
}
.post-template-default .wp-post-image {
    margin-bottom: 30px;
}

/* Archive */
.archive .svg-container.top {
    height: 0;
}
.archive .svg-container.top svg {
    position: relative;
    margin-bottom: 0 !important;
    top: -50px;
}

.archive .blog-content {
    background-color: #FBFBFB;
}
.archive .blog-content .col-lg-8 .blog-posts {
    margin-top: -180px;
    position: relative;
    background-color: #FBFBFB;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0px 2px 40px 0px rgba(189, 189, 189, 0.35);
}
.archive .blog-content .item-article:not(:last-child) {
    margin-bottom: 30px;
}
.archive footer .footer-bg {
    background-color: #FBFBFB;
}
.archive .blog-content .blog-posts .archive-item-article:not(:last-child) {
    margin-bottom: 30px;
}

.blog-posts .navigation {
    display: flex;
    justify-content: center;
    align-items: center;
}
.blog-posts .navigation .nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
}
.blog-posts .navigation .nav-links .current {
    font-weight: 700;
}

/*===============================================================================*/
/* THANK YOU PAGE */
/*===============================================================================*/

.page-template-page-thankyou .svg-container.top {
    height: 0;
}
.page-template-page-thankyou .svg-container.top svg {
    position: relative;
    margin-bottom: 0 !important;
    top: -50px;
}
.page-template-page-thankyou .embed-content video {
    max-width: 100%;
}
.page-template-page-thankyou footer .svg-container {
    display: none;
}
.page-template-page-thankyou footer .footer-main .container {
    padding-top: 70px;
}

/*===============================================================================*/
/* DEFAULT PAGE */
/*===============================================================================*/

.page-template-default .svg-container.top {
    height: 0;
}
.page-template-default .svg-container.top svg {
    position: relative;
    margin-bottom: 0 !important;
    top: -50px;
}
.page-template-default .body-editor a {
    color: #007BFF;
}
.page-template-default .body-editor a:hover {
    color: #0056b3;
    text-decoration: underline;
}
.page-template-default .body-editor a:visited {
    color: #6c757d;
}
.page-template-default .body-editor a:focus {
    outline: 2px dotted #0056b3;
    outline-offset: 2px;
}

/*===============================================================================*/
/* 404 */
/*===============================================================================*/

.error404 main section {
    padding-top: 200px;
}
@media (max-width: 768px) {
    .error404 main section {
        padding-top: 140px !important;
    }
}