/* ========================= */
/* :: 1.0 WEB FONTS  */
/* ========================= */
@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&family=Yanone+Kaffeesatz:wght@200..700&display=swap');

/* ================================== */
/* :: 2.0 GLOBAL Variable Define CSS  */
/* ================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    /* Font */
    --exo: 'Exo', sans-serif;
    --yanone-kaffeesatz: 'Yanone Kaffeesatz', sans-serif;

    /* Color Palette */
    --white: #fff;
    --black: #000;
    --primary: #08444b;
    --primary-dark: #07272c;
    --primary-light: #24abb0;
    --secondary: #98cc97;
    --secondary-light: #a3ce8b;
    --tertiary: #b77247;
    --tertiary-light: #cb8a41;
    --peach-light: #faccc1;
    --dark: #353535;
    --dark-light: #474747;
    --dark-light-2: #636363;
}

/* ========================= */
/* :: 3.0 COMMON CSS */
/* ========================= */
html,
body {
    height: 100%;
    scroll-behavior: smooth;
}
body {
    color: var(--black);
    font-size: 18px;
    font-family: var(--exo);
    font-weight: 400;
    line-height: 1.68;
    background-color: var(--white);
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}
section,
.section {
    position: relative;
}
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}
a,
button {
    outline: none;
    box-shadow: none;
    text-decoration: none;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
button {
    padding: 0;
    border: none;
    background: unset;
}
ol,
ul {
    margin: 0;
    padding: 0;
}
ol li,
ul li {
    list-style: none;
}
img {
    height: auto;
    max-width: 100%;
    object-fit: cover;
}
input,
input:focus,
input:focus-visible,
input:active,
select,
.form-select,
.form-select:focus,
textarea {
    outline: none;
    box-shadow: none;
}
* + address,
* + dl,
* + fieldset,
* + figure,
* + ol,
* + p,
* + pre,
* + ul {
    margin: 0;
    padding: 0;
}

*::-moz-selection {
    background: var(--secondary);
    color: var(--white);
    text-shadow: none;
}
::-moz-selection {
    background: var(--secondary);
    color: var(--white);
    text-shadow: none;
}

::selection {
    background: var(--secondary);
    color: var(--white);
    text-shadow: none;
}

/* Button CSS Start */
.btn {
    height: 56px;
    padding: 16px 24px;
    font-size: 14px;
    font-family: var(--exo);
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.25;
    color: var(--white);
    border: 2px solid transparent;
    border-radius: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.btn--sm {
    height: 50px;
    padding: 12px 24px;
}
.btn--primaryLight {
    border-color: var(--primary-light);
    background: var(--primary-light);
}
.btn--primaryLight:hover {
    color: var(--primary-light);
    border-color: var(--primary-light);
    background-color: transparent;
}
.btn--secondaryLight {
    border-color: var(--secondary-light);
    background: var(--secondary-light);
}
.btn--secondaryLight:hover {
    color: var(--secondary-light);
    border-color: var(--secondary-light);
    background-color: transparent;
}
.btn--tertiary {
    border-color: var(--tertiary);
    background-color: var(--tertiary);
}
.btn--tertiary:hover {
    color: var(--tertiary);
    border-color: var(--tertiary);
    background-color: transparent;
}
.btn--transparent {
    padding: 0 !important;
    min-width: auto !important;
    width: auto !important;
    height: auto !important;
    color: var(--black);
    font-weight: 700;
}
.btn--transparent:hover {
    color: var(--primary);
}
/* Button Animation */
.btn__icon {
    line-height: 1;
    width: 22px;
    height: 22px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.btn__icon svg {
    width: 18px;
    height: 18px;
}
.btn:hover .btnTelAnim {
    animation: shake 0.6s infinite ease-in-out;
    transform-origin: center;
}
.btn:hover .btnArrowRightAnim {
    animation: arrowRightAnim 0.4s ease-in-out forwards;
}

/* keyframes for shake */
@keyframes shake {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(0deg);
    }
    75% {
        transform: rotate(-10deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes arrowRightAnim {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    70% {
        transform: translateX(100%);
        opacity: 0;
    }
    71% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Button CSS End */

/* Typography CSS Start */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--yanone-kaffeesatz);
    font-weight: 300;
}
.fs-1 {
    font-size: 56px !important;
    line-height: 0.86;
}
.fs-2 {
    font-size: 40px !important;
    line-height: 1;
}
.ff-exo {
    font-family: var(--exo);
}
.ff-yanone-kaffeesatz {
    font-family: var(--yanone-kaffeesatz);
}
/* Typography CSS End */

/* Color CSS Start */
.text-primary-light {
    color: var(--primary-light) !important;
}
.text-secondary {
    color: var(--secondary) !important;
}
.text-secondary-light {
    color: var(--secondary-light) !important;
}
.text-transparent {
    color: transparent;
}
.bg-primary-dark {
    background-color: var(--primary-dark) !important;
}
/* Color CSS End */

/* =============================== */
/* :: 4.0 Header Area CSS Start */
/* =============================== */
.logo {
    max-width: 88px;
}
.mobile-menu-open,
.mobile-menu-close {
    margin-top: 12px;
    color: var(--secondary-light);
}
.mobile-menu .offcanvas {
    background-color: rgba(7, 39, 44, 0.8);
    backdrop-filter: blur(8px);
}
.mobile-menu .offcanvas-header {
    padding: 20px;
}
.mobile-menu__logo {
    max-width: 80px;
}
.mobile-menu-close {
    margin-top: 10px;
}
.mobile-menu .offcanvas-body {
    padding: 20px;
}
.mobile-menu__item {
    border-bottom: 1px solid rgba(152, 204, 151, 0.4);
    transition: all 0.3s ease-in-out;
}
.mobile-menu__item:hover,
.mobile-menu__item:has([aria-expanded='true']) {
    background-color: rgba(255, 255, 255, 0.025);
}
.mobile-menu__link {
    color: var(--white);
    font-size: 16px;
    padding: 14px 0;
}
.mobile-menu__item:hover .mobile-menu__link,
.mobile-menu__link[aria-expanded='true'] {
    color: var(--secondary-light);
    padding-left: 20px;
}
.mobile-menu__link.has-dropdown {
    filter: brightness(100);
}
.mobile-menu__link.has-dropdown::after {
    right: 20px;
}
.mobile-menu__link[aria-expanded='true'].has-dropdown::after {
    transform: translateY(-50%) rotate(-180deg);
}
.mobile-menu__block__title {
    font-size: 28px;
    padding-bottom: 16px;
}
.mobile-menu .collapse__item {
    padding: 0 20px;
}
.mobile-menu .collapse__link {
    padding: 12px 20px;
    font-size: 15px;
    color: var(--white);
    border-top: 1px solid rgba(152, 204, 151, 0.4);
}
.mobile-menu .collapse__link:hover {
    color: var(--secondary-light);
    background-color: rgba(255, 255, 255, 0.025);
}
/* Desktop Menu Start */
.header__nav__borderLine__topLeft,
.header__nav__borderLine__bottomRight {
    position: absolute;
    width: 36px;
    height: 48px;
    display: inline-block;
    background-color: transparent;
}
.header__nav__borderLine__topLeft {
    top: -12px;
    left: -12px;
    border-top: 1px solid var(--primary-light);
    border-left: 1px solid var(--primary-light);
}
.header__nav__borderLine__bottomRight {
    bottom: -12px;
    right: -12px;
    border-bottom: 1px solid var(--tertiary-light);
    border-right: 1px solid var(--tertiary-light);
}
.header__menu {
    padding: 0 24px;
    gap: 32px;
}
.header__menu__link {
    font-size: 16px;
    color: var(--dark);
    padding: 19px 0;
}
.header__menu__item:hover .header__menu__link {
    color: var(--tertiary);
}
.header__menu__item.active {
    font-weight: 800;
    pointer-events: none;
}
.has-dropdown {
    position: relative;
}
.has-dropdown::after {
    content: '';
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
    background: url('../imgs/objs-icons/chevron-down.svg') no-repeat center /
        cover;
    width: 12px;
    height: 7px;
    background-size: 12px;
    transition: all 0.3s ease-in-out;
}
.has-dropdown:hover::after {
    transform: translateY(-50%) rotate(-180deg);
    filter: brightness(0) saturate(100%) invert(43%) sepia(82%) saturate(322%)
        hue-rotate(340deg) brightness(97%) contrast(91%);
}
.header__dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 200px;
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
    margin-top: 16px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}
.has-dropdown:hover .header__dropdown {
    margin-top: 0;
    opacity: 1;
    visibility: visible;
}
.header__dropdown__link {
    padding: 12px 0;
    font-size: 15px;
    white-space: nowrap;
    color: var(--dark);
}
.header__dropdown__link:hover {
    color: var(--tertiary);
}
.header__nav .btn--tertiary:hover {
    color: var(--white);
    border-color: var(--primary);
    background-color: var(--primary);
}
.header__nav .btn--sm {
    padding: 14px 24px;
}
/* Desktop Menu End */
/* =============================== */
/* :: 4.0 Header Area CSS End */
/* =============================== */

/* =============================== */
/* :: 5.0 Hero Section CSS Start */
/* =============================== */
.hero__wrapper {
    max-width: 1920px;
    padding: 144px 0 64px;
}
.hero__btn__borderLine {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 17.5%;
    height: 52.5%;
    display: inline-block;
    background-color: transparent;
    border-bottom: 1px solid var(--peach-light);
    border-right: 1px solid var(--peach-light);
    pointer-events: none;
    z-index: -1;
}
.hero--small {
    padding: 144px 64px !important;
}
/* =============================== */
/* :: 5.0 Hero Section CSS End */
/* =============================== */

/* =============================== */
/* :: 6.0 AboutUs Section CSS Start */
/* =============================== */
.about__wrapper {
    padding: 48px 0;
    background-color: rgba(152, 204, 151, 0.1);
}
.about__inner {
    max-width: 1920px;
}
.about__thumb {
    padding: 0 16px;
    margin-bottom: 32px;
    position: relative;
}
.about__thumb__imgs {
    position: relative;
}
.about__thumb__dots {
    position: absolute;
    right: -3.5%;
    top: -4%;
    width: 20%;
    z-index: -1;
    animation: floatUpDown 4s ease-in-out infinite;
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

.about__border__line {
    content: '';
    width: 126px;
    height: 96px;
    background-color: transparent;
    border-right: 1px solid #bed7ab;
    border-bottom: 1px solid #bed7ab;
    position: absolute;
    right: -14px;
    bottom: -16px;
}
/* =============================== */
/* :: 6.0 AboutUs Section CSS End */
/* =============================== */

/* =============================== */
/* :: 7.0 Service Section CSS Start */
/* =============================== */
.service--section {
    padding: 48px 0;
}
.service__wrapper {
    max-width: 1252px;
    padding: 12px;
}
.service__card {
    height: 100%;
    padding: 24px 16px 28px;
    background-color: rgba(247, 183, 168, 0.5);
}
.service__card--two {
    background-color: rgba(0, 159, 151, 0.06);
}
.service__card--three {
    background-color: #eaf5ea;
}
.service__card {
    position: relative;
    overflow: hidden;
}

.service__card::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(
            circle,
            rgba(8, 68, 75, 0.075) 10%,
            transparent 10.01%
        )
        center/100% no-repeat;
    background-size: 1000%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    pointer-events: none;
}

.service__card:hover::after {
    animation: rippleWave 1.25s ease-out forwards;
}

@keyframes rippleWave {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.6;
    }
    60% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

.service__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
}
.service__icon img {
    max-width: 100%;
}
.service__title {
    font-size: 26px;
    margin-bottom: 10px;
}
.service__para {
    color: var(--dark-light-2);
    font-size: 16px;
    line-height: 1.6875;
}
.service__card .btn--transparent {
    font-size: 15px;
}
.service__card .btn__icon {
    border-radius: 50%;
    background-color: var(--primary-light);
}
.service__card .btn__icon svg {
    color: var(--white);
    max-width: 12px;
}
.service__borderLine__topLeft {
    position: absolute;
    left: -14px;
    top: 0px;
    width: 126px;
    height: 96px;
    background-color: transparent;
    border-top: 1px solid var(--peach-light);
    border-left: 1px solid var(--peach-light);
    z-index: -1;
}
.service__borderLine__bottomRight {
    position: absolute;
    right: -14px;
    bottom: -14px;
    width: 104px;
    height: 80px;
    background-color: transparent;
    border-right: 1px solid #bed7ab;
    border-bottom: 1px solid #bed7ab;
    z-index: -1;
}
/* =============================== */
/* :: 7.0 Service Section CSS End */
/* =============================== */

/* =============================== */
/* :: 8.0 Trust Section CSS Start */
/* =============================== */
.trust--seciton {
    padding: 48px 0;
    background-color: rgba(8, 68, 75, 0.08);
}
.trust--seciton::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 33.333%;
    background-color: var(--primary);
    z-index: -1;
}
.trust__thumb {
    width: 100%;
    height: 300px;
}
.border-line-top-left,
.border-line-top-right {
    position: absolute;
    left: -14px;
    top: -16px;
    width: 126px;
    height: 96px;
    background-color: transparent;
    border-top: 1px solid var(--peach-light);
    border-left: 1px solid var(--peach-light);
}
.border-line-top-right {
    left: auto;
    right: -14px;
    border-left: none;
    border-right: 1px solid var(--peach-light);
}
.border-line-bottom-left,
.border-line-bottom-right {
    position: absolute;
    left: -14px;
    bottom: -16px;
    width: 104px;
    height: 80px;
    background-color: transparent;
    border-left: 1px solid var(--primary-light);
    border-bottom: 1px solid var(--primary-light);
}
.border-line-bottom-right {
    left: auto;
    right: -14px;
    border-left: none;
    border-right: 1px solid var(--primary-light);
}
/* =============================== */
/* :: 8.0 Trust Section CSS End */
/* =============================== */

/* =============================== */
/* :: 9.0 Contact Section CSS Start */
/* =============================== */
.contact__wrapper {
    max-width: 1920px;
    padding: 48px 0;
}
.contact__content {
    max-width: 1248px;
}
.form__item {
    height: 100%;
}
.form__input {
    width: 100%;
    height: 100%;
    padding: 12px 0;
    color: var(--black);
    font-size: 16px;
    line-height: 1.158;
    font-weight: 600;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background-color: transparent;
    transition: all 0.3s ease-in-out;
}
.form__input--textarea {
    height: 96px;
    resize: none;
}
*::-moz-placeholder {
    color: var(--black);
    font-size: 16px;
    font-weight: 30;
    opacity: 1;
    transition: all 0.3s ease-in-out;
}
*::placeholder {
    color: var(--black);
    font-size: 16px;
    font-weight: 30;
    opacity: 1;
    transition: all 0.3s ease-in-out;
}
.form__input:focus,
.form__input:not(:placeholder-shown) {
    border-color: var(--black);
}
.form__input:focus::placeholder {
    font-weight: 600;
}
.nice-select {
    font-weight: 300;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}
.nice-select.open,
.nice-select.active {
    border-color: var(--black) !important;
}
.nice-select.active {
    font-weight: 600;
}
.nice-select::after {
    border: none;
    background: url('../imgs/objs-icons/chevron-down-input.svg') no-repeat
        center / cover;
    width: 13px;
    height: 8px;
    background-size: 13px;
    margin-top: 0;
    -webkit-transform: translateY(-50%) rotate(0);
    -ms-transform: translateY(-50%) rotate(0);
    transform: translateY(-50%) rotate(0);
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    transition: all 0.3s ease-in-out;
}
.nice-select.open::after {
    -webkit-transform: translateY(-50%) rotate(-180deg);
    -ms-transform: translateY(-50%) rotate(-180deg);
    transform: translateY(-50%) rotate(-180deg);
}
.contact__btn__borderLine {
    position: absolute;
    right: -12px;
    bottom: -12px;
    width: 24.5%;
    height: 52.5%;
    background-color: transparent;
    border-right: 1px solid var(--peach-light);
    border-bottom: 1px solid var(--peach-light);
}
.contact__thumbs {
	width: 65%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}
.contact__thumbs__img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    right: -27%;
    bottom: 0;
    z-index: -1;
}
.contact__thumb__ellipse {
    width: 84%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: #ffe8e3;
    display: inline-block;
    position: absolute;
    bottom: -28%;
    right: -21%;
    z-index: -2;
}
/* =============================== */
/* :: 9.0 Contact Section CSS End */
/* =============================== */

/* =============================== */
/* :: 10.0 Footer Area CSS Start */
/* =============================== */
.footer__wrapper,
.footer__copyright__content {
    max-width: 1192px;
}
.footer__inner {
    padding: 28px 0;
}
.footer__logo {
    max-width: 112px;
    margin-bottom: 24px;
}
.footer__widget__title {
    font-size: 20px;
    line-height: 1.4;
}
.footer__nav__link,
.footer__contact__item,
.footer__contact__link {
    color: var(--white);
    font-size: 16px;
    line-height: 2.25;
}
.footer__nav__link:hover,
.footer__contact__link:hover {
    color: var(--secondary-light);
}
.footer__copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.copyright-text {
    font-size: 15px;
}
/* =============================== */
/* :: 10.0 Footer Area CSS End */
/* =============================== */

/* =============================== */
/* :: Animation (GSAP) CSS Start */
/* =============================== */
.draw-anim-bottomRight {
    transform: scaleX(0) scaleY(0);
    transform-origin: bottom right;
}
.draw-anim-topLeft {
    transform: scaleX(0) scaleY(0);
    transform-origin: top left;
}
/* =============================== */
/* :: Animation (GSAP) CSS End */
/* =============================== */

.review { color: #fff; }
.review input, .review textarea { padding: 10px; width: 100%; max-width: 100%; border: 0; border-radius: 10px; }
.review input[type="submit"] { color: #fff; background: #ae754f; }
.cfield { display: none; }

.guestbook_item { position: relative; float: left; margin-bottom: 40px; padding: 20px; width: 100%; max-width: 100%; background: #fff; }