/*
** Ce fichier regroupe toutes les class CSS utilisées pour le site ;
*/
@import url('https://fonts.googleapis.com/css2?family=Jomhuria&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oooh+Baby&display=swap');

:root {
    --color-primary: #34B2B0;
    --color-primary-rgb: 52, 178, 176;

    --color-secondary: #F8CA45;
    --color-secondary-rgb: 248, 202, 69;

    --color-text: #052A2B;
    --color-text-rgb: 5, 42, 43;
    --color-bg: #FBF7EA;
    --color-bg2: #052A2B;

    --border-radius: 5px;
    --box-shadow: 0 4px 10px rgba(0,0,0,.05);
}

html,
body {
    font-family: 'Jost', sans-serif !important;
    max-width: 100vw;
    background-color: var(--color-bg);
}
html,
body,
p {
    color: var(--color-text);
    line-height: 1.4rem;
    font-weight: 300;
    font-size: 18px;
}
section {
    padding-top: 70px;
    padding-bottom: 70px;
}
strong {
    font-weight: 600;
}
h1, h2 {
    color: var(--color-bg2);
    margin-bottom: 25px;
    font-family: "Jomhuria";
}
h1 {
    font-size: 74px;
    text-align: center;
    line-height: 1.5;
}
h2 {
    font-size: 74px;
    line-height: 35px;
}
h2 span {
    color: var(--color-secondary);
    display: block;
    font-family: 'Oooh Baby', cursive;
    font-size: 40px;
}
h3 {
    font-size: 28px;
    margin-bottom: 20px;
}
h4 {
    font-size: 20px;
}
::marker {
    font-size: 7px;
}

.color-primary {
    color: var(--color-primary) !important;
}
.color-secondary {
    color: var(--color-secondary) !important;
}
.bg-primary {
    background: var(--color-primary) !important;
}
.bg-secondary {
    background: var(--color-seondary) !important;
}
.fs-16 {
    font-size: 16px;
}
.fs-20 {
    font-size: 20px;
}
.fw-400 {
    font-weight: 400;
}
.img-square,
.img-landscape {
    width: 100%;
    max-width: 100%;
    position: relative;
    border-radius: var(--border-radius);
}
.img-square {
    padding-top: 100%;
}
.img-landscape {
    padding-top: 50%;
}
.img-square img,
.img-landscape img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--border-radius);
}
.img-leaf,
.img-leaf-reverse {
    position: relative;
}
.img-leaf::before,
.img-leaf-reverse::before {
    content: " ";
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    width: 50%;
    height: 50%;
    pointer-events: none;
    user-select: none;
    background-image: url('../img/leaf-4.png');
    bottom: 0;
    z-index: 1;
}
.img-leaf::before {
    left: 0;
    transform: translate(-45%, 30%);
}
.img-leaf-reverse::before {
    right: 0;
    transform: translate(45%, 30%) scaleX(-1);
}
.leaf-palm,
.leaf-palm-reverse {
    position: absolute;
    z-index: -1;
    bottom: 0;
    max-width: 100%;
}
.leaf-palm-reverse {
    transform: scaleX(-1);
    margin-left: -54%
}
section:has(.leaf-palm),
section:has(.leaf-palm-reverse) {
    padding-top: 160px;
}
.block:has(.leaf-block-left),
.block:has(.leaf-block-right) {
    position: relative;
}
.leaf-block-left,
.leaf-block-right {
    position: absolute;
    height: auto;
    width: 80%;
    top: 20%;
    z-index: -1;
}
.leaf-block-left {
    right: 100%;
    transform: translateY(370%) rotate(90deg);
    transform-origin: top right;
}
.leaf-block-right {
    left: 137%;
    transform: translateY(0%) rotate(90deg);
    transform-origin: top left;
}

/* Navigation & Navbar */
.nav-logo {
    flex: none;
    padding: 200px 20px 55px;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.nav-logo a {
    font-size: 90px;
    font-weight: 300;
    text-decoration: none;
    color: var(--color-text);
    font-family: "Jomhuria";
    line-height: 22px;
    transition: all .2s ease;
    display: inline-block;
}
.nav-logo a span {
    color: var(--color-secondary);
    display: block;
    transition: all .1s ease;
    font-family: 'Oooh Baby', cursive;
    font-size: 45px;
}
.nav-logo a:hover {
    /* color: var(--color-primary); */
    letter-spacing: 5px;
}
.nav-logo a:hover span {
    color: var(--color-primary);
}
.nav-logo i {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.nav-logo i::before {
    content: " ";
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    width: 520px;
    height: 100%;
    pointer-events: none;
    user-select: none;
}
.nav-logo i:nth-child(1)::before {
    background-image: url('../img/leaf-1.png');
    background-position: center bottom;
    left: 50%;
    transform: translateX(-140%);
    bottom: -50px;
}
.nav-logo i:nth-child(2)::before {
    background-image: url('../img/leaf-2.png');
    background-position: center bottom;
    right: 50%;
    transform: translateX(140%);
    bottom: -50px;
}
.nav-logo i:nth-child(3)::before {
    background-image: url('../img/leaf-3.png');
    background-position: center top;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}

nav {
    position: relative;
    z-index: 1024;
    background-color: var(--color-primary);
}
nav.nav-wrapper .container {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}
nav .nav-content {
    display: flex;
    align-items: flex-end;
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
}
nav .nav-content ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 120px;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
    flex: 1;
    padding-top: 12px;
    padding-bottom: 12px;
}
nav .nav-content ul .nav-link {
    padding: 0;
    color: #fff;
    text-decoration: none;
    position: relative;
    font-size: 20px;
    font-weight: 400;
    background-color: transparent;
    -webkit-appearance: none;
    border: none;
    transition: all .2s;
}
nav .nav-content ul .nav-link:not(.active):hover {
    color: var(--color-text);
}
nav .nav-content ul .nav-link.active {
    color: var(--color-text);
}
.nav-menu-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-secondary);
    color: var(--color-text);
    border: none;
    -webkit-appearance: none;
    font-size: 24px;
    z-index: 1;
    border-radius: var(--border-radius);
}

/* Header */

header {
    background-color: var(--color-bg);
    display: flex;
    flex-direction: column;
}

/* Footer */

footer {
    font-size: 12px;
    background-color: var(--color-bg2);
    padding-top: 60px;
    margin-top: 20px;
}
footer * {
    color: #fff;
    transition: all .2s;
    font-weight: 500;
}
footer a:hover {
    color: var(--color-primary);
}
footer .container {
    padding-top: 15px;
    padding-bottom: 15px;
}
footer .container:first-child {
    border-bottom: 1px solid #fff;
    padding-bottom: 50px;
}
footer .footer-social-link {
    font-size: 20px;
    margin: 0 5px;
}
footer .footer-social-link i {
    color: var(--color-primary);
    transition: all .2s;
}
footer .footer-social-link:hover i {
    color: #fff;
}
footer .nav-logo a {
    color: #fff;
}
footer .nav-logo a:hover {
    letter-spacing: normal;
}
footer p,
footer a {
    font-size: 15px;
    font-weight: 400;
}
footer h3 {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--color-secondary);
    margin-bottom: 5px;
}
footer .img-fluid {
    position: absolute;
    bottom: -50px;
}
footer .copyright,
footer .copyright a,
footer .copyright p {
    font-weight: 300;
    font-size: 14px;
}

/* Diapo */
.diapo-img-wrapper {
    display: inline-flex !important;
    overflow: hidden;
    max-width: 100%;
    height: 600px;
    position: relative;
}
.diapo-img-wrapper .diapo-img-item {
    width: 100%;
    min-width: 100%;
    height: 100%;
    position: relative;
    transition: 0.3s cubic-bezier(.79,.03,0,.99);
}
.diapo-img-wrapper .diapo-img-item img {
    max-width: 100%;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.diapo-img-btn-wrapper {
    display: flex;
    z-index: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    align-items: center;
    justify-content: space-between;
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
    min-height: 150px;
    height: 100%;
}
.diapo-img-btn-wrapper .diapo-img-btn-prev,
.diapo-img-btn-wrapper .diapo-img-btn-next {
    position: relative;
    color: #fff;
    width: 30%;
    height: 100%;
    z-index: 9;
    cursor: pointer;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    font-weight: 900 !important;
    opacity: 0;
}
.diapo-img-btn-wrapper .diapo-img-btn-prev {
    background-image: linear-gradient(270deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.6) 100%);
}
.diapo-img-btn-wrapper .diapo-img-btn-next {
    background-image: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.6) 100%);
}
.diapo-img-btn-wrapper .diapo-img-btn-prev:hover,
.diapo-img-btn-wrapper .diapo-img-btn-next:hover {
    opacity: 1;
}
.diapo-pagination {
    pointer-events: none;
    margin-top: 30px;
}
.diapo-pagination span {
    display: inline-block;
    width: 14px;
    height: 14px;
    background-color: #fff;
    margin-right: 10px;
    transition: 0.3s ease-in-out;
    border: 3px solid white;
    border-radius: 100%;
    box-shadow: 0 0 0 2px var(--color-primary);
}
.diapo-pagination span.active {
    background-color: var(--color-primary);
}
.diapo-img-pagination {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    gap: 5px;
}
.diapo-img-pagination span::before {
    content: " ";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-bg2);
    display: inline-block;
    transition: all .2s;
}
.diapo-img-pagination span.active::before {
    background-color: var(--color-secondary);
}

/* Prestations Items */
.prestation-item {
    width: 100%;
    padding-top: 53%;
    border-radius: var(--border-radius);
    position: relative;
    box-shadow: 0 4px 4px rgba(0,0,0,.25);
    overflow: hidden;
    background-color: var(--color-bg2);
    user-select: none;
    display: block;
    cursor: pointer;
}
.prestation-item::after {
    content: " ";
    width: 100%;
    height: 4%;
    background-color: var(--color-primary);
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all .3s ease;
}
.prestation-item img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    max-width: 100%;
    opacity: .8;
    transition: all 2s;
}
.prestation-item .prestation-title {
    font-size: 18px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    text-shadow: 0 4px 4px rgba(0,0,0,.25);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.prestation-item:hover img {
    transform: scale(1.2);
}
.prestation-item:hover::after {
    height: 100%;
    opacity: .8;
}

/* Related Articles */

.related-item {
    display: block;
    width: 100%;
    transition: all .2s;
    overflow: hidden;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 10px;
    background: var(--color-bg2);
    position: relative;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}
.related-item .related-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
    transition: all .6s;
    opacity: .7;
}
.related-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}
.related-item p {
    font-size: 14px;
    line-height: 1.6em;
    margin-bottom: 0;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: 500;
    position: relative;
    z-index: 1;
}
.related-item:hover {
    text-decoration: none;
}
.related-item:hover .related-image {
    transform: scale(1.1);
}

/* Map */

.map-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 100%;
    border-radius: var(--border-radius);
}
.map-wrapper #map {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Sections */

.contact-form {
    position: relative;
    z-index: 2;
}
.contact-form::before {
    content: " ";
    position: absolute;
    top: 50%;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--color-primary);
    z-index: -1;
}

.section-colored {
    background-color: var(--color-primary);
}
.section-colored h2 {
    color: var(--color-bg2);
}
.section-colored h2 span {
    color: #fff;
}
.section-colored .btn.btn-primary {
    background-color: var(--color-bg2);
    border-color: var(--color-bg2);
}
.section-colored .btn.btn-primary:hover {
    background-color: transparent;
    border-color: var(--color-bg2);
    color: var(--color-bg2);
}
.section-header {
    position: relative;
    background-color: var(--color-bg);
    z-index: 1;
    padding-top: 40px;
    padding-bottom: 40px;
}
.section-header * {
    color: var(--color-text);
}
.section-header h1 {
    line-height: 50px;
    margin-bottom: 10px;
}
.section-header p {
    max-width: 700px;
    margin: auto;
    font-size: 18px;
    line-height: 1.5em;
}
.section-header img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
    opacity: .3;
}
.section-header-followed {
    padding-bottom: 80px;
}
.section-colored a {
    color: var(--color-bg2);
}
.hero-img {
    height: 580px;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    position: relative;
}
.hero-img img {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-after {
    padding-top: 0;
    margin-top: -40px;
    z-index: 1;
    position: relative;
}
.hero-after .block {
    max-width: 990px;
    margin: auto;
}

/* Block */

.block {
    background-color: var(--color-secondary);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}
.block h2 span {
    color: var(--color-text);
}
.block h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}
.block a:not(.btn) {
    color: var(--color-text);
    font-weight: 500;
}
.block-body {
    padding: 30px 40px 40px;
}
.block-body-small {
    padding: 25px 30px;
}
.block-body-big {
    padding: 100px 70px;
}
.block-engine {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 20px;
}
.block-engine .btn.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    font-size: 12px;
    font-weight: 500;
    padding: 11px;
    color: #fff;
}
.block-engine .btn.btn-primary:hover {
    color: var(--color-primary);
}
.block-engine .form-group label {
    margin-bottom: 2px;
    line-height: 14px;
    font-size: 14px;
}

.featured-text {
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    line-height: 1.4em;
}
.img-pinned {
    position: relative;
}
.img-pinned::before,
.img-pinned::after {
    content: " ";
    background-color: var(--color-secondary);
    position: absolute;
    z-index: 1;
}
.img-pinned:not(.img-pinned-reverse)::before {
    width: 34px;
    height: 80px;
    top: 0;
    left: 0;
    box-shadow: 15px 0px 8px -10px rgba(0,0,0,.2);
    transform: translate(-20px, -35px) rotate(45deg);
}
.img-pinned:not(.img-pinned-reverse)::after {
    width: 34px;
    height: 80px;
    bottom: 0;
    right: 0;
    box-shadow: -15px 0px 8px -10px rgba(0,0,0,.2);
    transform: translate(20px, 35px) rotate(45deg);
}
.img-pinned img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: -30px 30px 30px -30px rgba(0,0,0,.3);
    transform: rotate(359deg);
}
.img-pinned.img-pinned-reverse img {
    transform: rotate(1deg);
    box-shadow: 30px 30px 30px -30px rgba(0,0,0,.3);
}
.img-pinned.img-pinned-reverse::before {
    width: 80px;
    height: 34px;
    top: 0;
    right: 0;
    box-shadow: 0px 15px 8px -10px rgba(0,0,0,.2);
    transform: translate(40px, -15px) rotate(45deg);
}
.img-pinned.img-pinned-reverse::after {
    width: 80px;
    height: 34px;
    bottom: 0;
    left: 0;
    box-shadow: 0px -15px 8px -10px rgba(0,0,0,.2);
    transform: translate(-40px, 15px) rotate(45deg);
}

/* Article */

article h2,
article h3,
article h4,
article h5,
article h6 {
    color: var(--color-text);
    font-weight: 500;
    margin-top: 1.5em;
    margin-bottom: .75em;
}
article h1 {
    color: var(--color-secondary);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: .75em;
}
article,
article p {
    font-size: 18px;
    line-height: 1.6em;
    color: rgba(var(--color-text-rgb), .8)
}

/* Grid Images */

.grid-img-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
}
.grid-img-wrapper div {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    padding-top: calc(35% - 15px);
}
.grid-img-wrapper div img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
}
.grid-img-wrapper div:nth-child(1),
.grid-img-wrapper div:nth-child(4) {
    width: calc(65% - 15px);
}
.grid-img-wrapper div:nth-child(2),
.grid-img-wrapper div:nth-child(3) {
    width: calc(35% - 15px);
}

/* WYSIWYG */

.article-wp img {
    border-radius: 8px;
}
.article-wp ul,
.article-wp ol {
    margin-top: 40px;
    margin-bottom: 40px;
}
.article-wp .wys-featured-img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 40px;
    border-radius: 8px;
}
.article-wp .wys-img-left {
    float: left;
    margin: 5px 30px 15px 0;
}
.article-wp .wys-img-right {
    float: right;
    margin: 5px 0 15px 30px;
}
.article-wp .wys-highlighted {
    margin: 40px auto;
    font-size: 28px;
    width: 85%;
    color: var(--color-primary);
}
.wys-title {
    font-size: 70px;
    font-weight: 700;
    text-align: center;
    margin-top: 0;
    margin-bottom: 40px;
    color: var(--color-secondary);
}
.article-wp a {
    color: var(--color-primary);
}
/* Map */

.mapcontainer a {
    transition: all .2s;
    cursor: pointer;
}
.mapcontainer a:hover {
    fill: var(--color-primary) !important;
}

/* Buttons */

.btn {
    border: none;
    padding: 14px 18px;
    font-weight: 500;
    border-radius: var(--border-radius);
    font-size: 16px;
    line-height: 16px;
    letter-spacing: .04rem;
    transition: all .2s;
    text-transform: uppercase;
}
.btn.btn-primary {
    background-color: var(--color-secondary);
    color: var(--color-text);
    border: 2px solid var(--color-secondary);
    padding: 15px 20px;
}
.btn.btn-primary:hover {
    background-color: transparent;
    color: var(--color-text);
}
.btn.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--color-text);
    padding: 12px 20px;
    color: var(--color-text);
}
.btn.btn-secondary:hover {
    background-color: var(--color-text);
    color: var(--color-secondary);
    border-color: var(--color-text);
}
.btn.btn-big {
    font-size: 20px;
    padding: 18px 20px;
}
.btn.btn-tertiary {
    padding: 15px 30px;
    background-color: #fff;
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.btn.btn-tertiary .bi-arrow-right-circle {
    font-size: 36px;
    margin-right: -15px;
    margin-left: 50px;
}
.btn.btn-tertiary:hover {
    background-color: var(--color-secondary);
    color: #fff;
}
.btn i,
.btn .bi {
    vertical-align: 1px;
    margin-right: 4px;
}
.btn:focus,
button:focus {
    outline: none;
}
.btn-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-right: 10px;
    border: 2px solid var(--color-bg2);
}
.btn-icon i {
    margin-right: 0 !important;
}
.btn-icon:hover {
    background-color: var(--color-bg2);
    color: #fff;
}

/* Inputs */

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    border: 1px solid #FAF6EC !important;
    background: #FAF6EC !important;
    text-align: center;
    color: black !important;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
    border: 1px solid var(--color-primary) !important;
    background-color: var(--color-primary) !important;
    font-weight: 400;
    color: white !important;
}

.ui-widget-header {
    border: 1px solid white!important;
    background: #FAF6EC !important;
    color: black !important;
}

.input-datepicker-search{
    background: url(sprites/calendar.png) no-repeat scroll 10px 10px;
    background-position-x: 93%;
}

.form-control {
    border-radius: var(--border-radius);
    height: 40px;
    padding: 20px;
}
.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem rgba(var(--color-primary-rgb),.3);
}
.form-check-input {
    margin-top: 5px;
}
select.form-control {
    padding: 2px 8px;
}
input[type="file"] {
    appearance: none;
    -webkit-appearance: none;
    line-height: 20px;
    padding: 3px 44px;
    position: relative;
    cursor: pointer;
}
input[type="file"]::-webkit-file-upload-button {
    visibility: hidden;
    width: 100%;
    display: block;
    height: 0;
}
input[type="file"]::before {
    content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" color="darkgrey" width="16" height="16" fill="darkgrey" class="bi bi-file-earmark-text" viewBox="0 0 16 16"><path d="M5.5 7a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5zM5 9.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5zm0 2a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5z"/><path d="M9.5 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4.5L9.5 0zm0 1v2A1.5 1.5 0 0 0 11 4.5h2V14a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h5.5z"/></svg>');
    width: 20px;
    height: 20px;
    position: absolute;
    left: 17px;
    top: 50%;
    transform: translateY(-43%);
}
.form-group label {
    line-height: 1.5em;
    margin-bottom: 2px;
}
.block-body-big .form-control {
    background-color: rgba(0,0,0,.08);
    color: var(--color-text);
    border-color: var(--color-text);
    border-width: 2px;
}
.block-body-big .form-control::placeholder {
    color: rgba(0,0,0,.2);
}

/* Dropdowns */

.dropdown-menu {
    border-radius: 0;
    border-color: transparent;
    padding: 0;
    /* box-shadow: 0 0 37px rgba(0,0,0,.06); */
    box-shadow: none;
    overflow: hidden;
    margin-top: 3px;
    background-color: var(--color-primary);
    border-top: 4px solid var(--color-bg2);
    width: 100%;
}
.dropdown-menu:has(.dropdown-item.active) {
    border-top-color: var(--color-secondary);
}
.dropdown-item {
    font-size: 16px;
    padding: 8px 16px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all .2s;
}
.dropdown-item:hover {
    color: var(--color-bg2);
    background-color: rgba(255, 255, 255, .1);
}
.dropdown-item.active,
.dropdown-item:active {
    color: #fff;
    background-color: var(--color-secondary);
}
button[data-toggle="dropdown"] .bi-chevron-down {
    transition: all .2s;
    display: inline-block;
    font-size: 14px;
    vertical-align: 3px;
}
button[aria-expanded="true"] .bi-chevron-down {
    transform: rotate(180deg);
}

/* Responsive ; Media Query */

@media (max-width:575px) {
    .nav-logo {
        padding: 80px 10px 30px;
    }
    .nav-logo a {
        font-size: 18vw;
        line-height: 5vw;
    }
    .nav-logo a span {
        font-size: 10vw;
    }
    .nav-logo i:nth-child(1)::before {
        width: 280px;
        left: -210px;
        transform: translateX(0vw);
        bottom: -10px;
    }
    .nav-logo i:nth-child(2)::before {
        width: 280px;
        left: 50%;
        transform: translateX(32vw);
        bottom: -10px;
    }
    .nav-logo i:nth-child(3)::before {
        width: 220px;
    }
    footer .img-fluid {
        width: 30% !important;
    }
}
@media (max-width:767px) {
    html,
    body {
        overflow-x: hidden;
    }
    h1 {
        font-size: 68px;
    }
    .section-header p {
        font-size: 14px;
    }
}

@media (max-width:991px) {
    nav {
        padding-top: 2px;
        padding-bottom: 2px;
    }
    nav .nav-logo {
        width: auto;
    }
    nav .nav-content {
        position: absolute;
        top: 100%;
        background: var(--color-primary);
        width: 100%;
        z-index: 1024;
        left: 0;
        padding: 0 20px 20px;
        flex-direction: column;
        opacity: 0;
        transform: scaleY(0);
        transform-origin: top;
        transition: all .2s;
    }
    nav .nav-content ul {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 20px;
    }
    nav .nav-btn {
        width: calc(100% + 44px);
        margin: 0 -22px;
    }
    nav .nav-content.opened {
        opacity: 1;
        transform: scaleY(1);
    }
    nav.nav-wrapper .container {
        justify-content: space-between;
    }
    nav .nav-menu li .nav-link {
        color: var(--color-primary);
    }
    nav .nav-menu li .nav-link.active {
        color: var(--color-primary);
        font-weight: 700;
    }
    .nav-menu-btn {
        position: absolute;
        top: 10px;
        left: 10px;
    }
    .nav-menu-btn.bi-x {
        color: var(--color-text);
    }
    section {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .block {
        padding: 40px;
    }
    section:has(.leaf-palm),
    section:has(.leaf-palm-reverse) {
        padding-top: 50vw;
    }
    .leaf-palm,
    .leaf-palm-reverse {
        top: -50vw;
        left: 50%;
        width: 50vw;
        transform: translateX(-50%);
    }
    footer .img-fluid {
        right: 0;
        width: 25%;
    }
}

@media (min-width:768px) {
}
@media (min-width:992px) {
    .nav-menu-btn {
        display: none;
    }
    nav .nav-logo {
        flex: none;
        width: 180px;
    }
    nav .nav-actions {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        white-space: nowrap;
    }
    nav .nav-menu li .nav-link.active {
        font-weight: 500;
    }
}

@media (min-width:992px) and (max-width:1199px) {

    nav .nav-logo img {
        width: 100%;
        max-width: 100%;
    }
}
@media (min-width:1199px) {
}
@media (min-width:1920px) {
}
