/* font-famaly-hear */
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&amp;family=Poppins: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&amp;display=swap');
/* font-famaly-hear-end */

/* root */
:root {
    --poppins: 'Poppins', sans-serif;
    --nunito: 'Nunito', serif;

    --white-color: #fff;
    --black-color: #000;

    --primary: #000;
    --secondary: #000;

    --hover-colo: #000;

    --body-color: #000;
    --heading-color: #000;
}

/* root */

/* defaults-css-start */
html {
    font-size: 100%;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    line-height: 1.3;
    font-family: var(--poppins);
    font-size: 16px;
    font-weight: 400;
}

a,
button {
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
}

a:focus,
button:focus,
.btn:focus {
    outline: none;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
    outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--nunito);
    color: var(--heading-color);
    margin-top: 0px;
    font-style: normal;
    font-weight: 700;
    text-transform: normal;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

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

li {
    list-style: none;
}

p {
    font-size: 18px;
    font-weight: normal;
    line-height: 30px;
    color: var(--body-color);
    margin-bottom: 15px;
}

label {
    color: var(--body-color);
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
}

*::-moz-selection {
    background: var(--secondary);
    color: var(--white-color);
    text-shadow: none;
}

::-moz-selection {
    background: var(--secondary);
    color: var(--white-color);
    text-shadow: none;
}

::selection {
    background: var(--secondary);
    color: var(--white-color);
    text-shadow: none;
}

*::-moz-placeholder {
    color: var(--body-color);
    font-size: 16px;
    opacity: 1;
}

*::placeholder {
    color: var(--body-color);
    font-size: 16px;
    opacity: 1;
}

/* defaults-css--end */

/* theme-css */
.btn {
    padding: 22px 60px;
    font-size: 18px;
    color: #ffffff;
    border-radius: 100px;
    font-weight: 600;
}

.btn-primary {
    background: #00813b;
    border-color: #00813b;
    color: #fff;
}

.btn-primary:hover {
    background: #005a29;
    border-color: #005a29;
    color: #fff;
}

.btn-light {
    color: #00813b;
}

.btn-light:hover {
    color: var(--white-color);
    border-color: #00813b;
    background: #005a29;
}

.fs-1 {
    font-size: 75px !important;
    line-height: 0.95;
}

.fs-2 {
    font-size: 60px !important;
    line-height: 1.15;
}

.text-primary {
    color: #00813b !important;
}

.text-secondary {
    color: #ffb142 !important;
}

.text-gray {
    color: #646363 !important;
}

/* theme-css-end */

/* ======== header style start ============ */
.header__logo {
    max-width: 132px;
}
.header__nav nav > ul {
    display: flex;
    align-items: center;
    gap: 50px;
}
.header__nav nav > ul li a {
    position: relative;
    text-decoration: none;
    color: #000000;
    font-size: 17px;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 20px 0px;
}

.header__nav nav > ul li a.active {
    color: #0b8647;
    font-weight: bold;
}

.header__nav nav > ul li:hover > a {
    color: #0b8647;
}

.header__nav nav > ul li.has__dropdown {
    position: relative;
}

.header__nav nav > ul li.has__dropdown > a::after {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    content: '\EA4E';
    font-family: 'remixicon';
    line-height: 1;
    transition: all 0.3s ease-in-out;
}
.header__nav nav > ul li.has__dropdown > a {
    padding-right: 26px;
}
.header__nav nav > ul li.has__dropdown:hover > a::after {
    transform: translateY(-50%) rotate(-180deg);
}
.header__nav nav > ul li ul.submenu {
    position: absolute;
    top: 110%;
    background: #fff7ec;
    padding: 9px 3px 14px;
    min-width: 165px;
    border-bottom: 3px solid #00813b;
    box-shadow: 0px 4px 10px #00813b30;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}
.header__nav nav ul li ul.submenu li a {
    padding: 6px 16px;
    font-size: 16px;
}

.header__nav nav > ul li:hover ul.submenu {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.header.header__absolute {
    z-index: 99;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    background: #fff;
}

.header {
    padding: 13px 0px;
}

/* Mobile Menu Start */
.menu-btn,
.menu-close {
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    font-size: 18px;
    border: 1px solid #00813b;
    background-color: #00813b;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
}
.menu-btn:hover,
.menu-close:hover {
    background-color: #005a29;
}
.menu .offcanvas {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
}
.menu .offcanvas-header {
    padding: 16px 20px;
}
.menu .offcanvas-body {
    padding: 32px 20px;
}
.menu__item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.menu__item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.menu__link {
    padding: 12px 0;
    text-decoration: none;
    color: var(--black-color);
}
.menu__item:hover .menu__link,
.menu__link[aria-expanded='true'] {
    color: #0b8647;
}
.menu__link.active {
    color: #0b8647;
    font-weight: bold;
}
.menu__collapse__item {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.menu__collapse__link {
    color: var(--black-color);
    text-decoration: none;
    padding: 12px;
}
.menu__collapse__link:hover {
    color: #0b8647;
}
.menu__collapse__icon {
    transition: all 0.3s ease;
    font-size: 18px;
}
.menu__item:hover .menu__collapse__icon,
.menu__link[aria-expanded='true'] .menu__collapse__icon {
    transform: rotate(-180deg);
}
/* Mobile Menu End */

/* ======== header style end ============ */

/* ======== hero style start ============ */
.hero--section {
    padding: 130px 0px 75px;
    background-image: url('../imgs/dots.png');
    background-repeat: repeat;
    background-position: center;
    background-size: contain;
}

.hero__content h1 {
    margin-bottom: 28px;
}

.hero__content p {
    line-height: 30px;
    margin-bottom: 29px;
}
.hero__thumb {
    margin-right: -120px;
}

.hero__content {
    max-width: 527px;
}

/* ======== hero style end ============ */

/* ======== Agenda style start ============ */
.agenda--section {
    background: #fdb1411a;
    padding: 75px 0px 100px;
}

.section__title p {
    line-height: 30px;
}

.agenda--section .section__title {
    text-align: center;
}

.section__title {
    margin-bottom: 50px;
}

.section__title-borderd h2 {
    display: inline-block;
    position: relative;
}
.section__title-borderd h2::after {
    position: absolute;
    left: 50%;
    bottom: 7px;
    width: 153%;
    background: #00813b;
    height: 8px;
    content: '';
    border-radius: 10px;
    transform: translateX(-50%);
    z-index: -1;
}
.section__title h2:not(:last-child) {
    margin-bottom: 16px;
}
.agenda__item-thumb img, .agenda__item-thumb-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.agenda__item {
    background: #fff;
    border: 1px solid #0000001a;
}
.agenda__item-thumb {
    height: 212px;
}
.agenda__item-thumb-2 {
    height: 400px;
}
.agenda__item-content {
    padding: 25px 26px;
}
.agenda__item-content h4 a {
    text-decoration: none;
}
.agenda__item-content h4 {
    margin-bottom: 10px;
}
.agenda__item-content p.date {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}
.moreInfo {
    padding: 7px 25px;
    border-radius: 21px;
    display: inline-block;
    border: 1px solid #00813b;
    text-decoration: none;
    color: #000;
    font-size: 15px;
    font-weight: 500;
}
.moreInfo:hover {
    background: #00813b;
    color: #fff;
}

/* ======== Agenda style end ============ */

/* ======== About Section + Gallery Section style Start ============ */
/* About Section Start */
.about--section {
    padding: 118px 0;
}
.about--section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 123%;
    background: url(../imgs/dots-obj-2.png);
    z-index: -1;
}
.about--section .section__content {
    max-width: 572px;
}
.about__thumb {
    margin-right: -60px;
}
/* About Section End */

/* Gallery Section Start */
.gallery__inner {
    max-width: 1920px;
    padding-bottom: 168px;
}
.gallery--section .swiper-wrapper {
    align-items: flex-end;
}
.gallery__item {
    height: 530px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.gallery__thumb {
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}
.swiper-slide-next .gallery__thumb,
.swiper-slide-next + div .gallery__thumb {
    height: 89%;
}
.gallery__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery__slide__btns {
    gap: 10px;
    margin-right: -60px;
}
.gallery__slide {
    width: 60px;
    height: 60px;
    color: #00813b;
    border: 1px solid #00813b;
    border-radius: 10px;
    background-color: var(--white-color);
    margin-bottom: -40px;
}
.gallery__slide:hover {
    color: var(--white-color);
    background-color: #00813b;
}
.gallery__slide svg {
    width: 13px;
    height: auto;
}
.gallery__btn {
    margin-top: 108px;
}
.gallery__doodle--one {
    top: -15.2%;
    left: -10%;
}
.gallery__doodle--two {
    bottom: -15%;
    right: 26%;
}
/* Gallery Section End */
/* ======== About Section + Gallery Section style end ============ */

/* ======== FocusBox style start ============ */

.focusedBox-section {
    background: #00813b;
    padding: 94px 0px;
}
.row--focusedBox.g-5 {
    --bs-gutter-x: 60px;
    --bs-gutter-y: 60px;
}
.focusedBox__thumb {
    position: relative;
}

.focusedBox__thumb-img {
    max-width: 100%;
    position: relative;
    z-index: 1;
}

.focusedBox__content {
    max-width: 632px;
    margin: 0 0 0 auto;
}

.focusedBox__content h2 {
    margin-bottom: 22px;
}

.focusedBox__content p {
    margin-bottom: 28px;
    line-height: 25px;
    color: #fff;
}

.focusedBox__thumb-object {
    position: absolute;
    right: -25px;
    bottom: -26px;
    z-index: 0;
}

/* ======== FocusBox style end ============ */

/* ======== News style start ============ */

.news--section {
    padding: 88px 0px 140px;
}
.news__item {
    border: 1px solid #0000001a;
    background: #fff;
    padding: 4px;
    max-width: 390px;
}
.news__item-thumb img {
    width: 100%;
}
.news__item-content {
    padding: 27px 24px;
}
.news__item-content h4 {
    color: #000000;
    font-weight: 600;
}
.news__item-content p {
    font-size: 17px;
    line-height: 22px;
    font-family: var(--nunito);
    font-weight: 300;
    margin-bottom: 29px;
}
.lernMore {
    font-size: 15px;
    line-height: 30px;
    color: #000000;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.lernMore span.icon {
    width: 22px;
    height: 22px;
    background: #00813b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
    padding-bottom: 1px;
    transition: all 0.3s ease;
}
.lernMore:hover span.icon {
    transform: translateX(5px);
}
.lernMore:hover {
    color: #00813b;
}
.news__obj-1 {
    right: -6%;
    top: -9%;
}
.news__obj-2 {
    left: -13.5%;
    top: 10%;
}
.news__slider {
    max-width: 1233px;
    width: 100%;
    margin: 0 auto;
}
.swiper-btns button {
    position: absolute;
    left: -35px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    border: none;
    background: transparent;
    color: #a6a6a6;
}
.swiper-btns button:last-child {
    left: auto;
    right: -35px;
}
.swiper-btns button:hover {
    color: var(--black-color);
}
.swiper-btns button svg {
    max-width: 20px;
    height: auto;
}
/* ======== News style end ============ */

/* ======== Contact style start ============ */

.contact-section {
    background: #fff7ec;
    padding: 90px 0px;
}
.row--contact.g-5 {
    --bs-gutter-x: 96px;
    --bs-gutter-y: 96px;
}
.contact__doodle {
    right: -9%;
    top: -7%;
}
.contact__content {
    max-width: 600px;
    margin: 0 0 0 auto;
}
.contact__content h2 {
    margin-bottom: 40px;
}
.inputBox textarea,
.inputBox input {
    width: 100%;
    height: 60px;
    border: none;
    background: transparent;
    font-size: 18px;
    color: #000000;
    border-bottom: 1px solid #0000001a;
    font-weight: bold;
    color: #00813b;
    transition: 0.3s ease-in-out;
    caret-color: #c6d731;
}

.inputBox textarea {
    height: 90px;
    width: 100%;
    resize: none;
}

::placeholder {
    transition: all 0.3s ease-in-out;
}
.inputBox textarea:focus,
.inputBox input:focus,
.inputBox textarea:not(:placeholder-shown),
.inputBox input:not(:placeholder-shown) {
    border-color: #00813b;
}
.inputBox textarea:focus,
.inputBox input:focus,
.inputBox textarea:not(:placeholder-shown),
.inputBox input:not(:placeholder-shown),
.inputBox textarea:focus::placeholder,
.inputBox input:focus::placeholder {
    font-weight: 800;
    color: #00813b;
}

.inputBox {
    margin-bottom: 35px;
}

.inputBox textarea::placeholder,
.inputBox input::placeholder {
    font-size: 18px;
    font-weight: normal;
}
.contact__form-submit {
    margin-left: -20px;
    margin-top: 40px;
}
/* ======== Contact style end ============ */

/* ======== footer style start ============ */
.footer--bg {
    background-color: #00813b;
}
.footer--bg::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 70px;
    background: url('../imgs/footer-top-obj.svg');
    z-index: -1;
}
.footer__wrapper {
    padding: 30px 0 68px;
    margin-left: 80px;
}
.footer__logo {
    max-width: 244px;
}
.footer__navs ul li {
    font-size: 17px;
    color: var(--white-color);
    line-height: 2.59;
}
.footer__navs ul li a {
    color: var(--white-color);
    text-decoration: none;
}
.footer__navs ul li a:hover {
    color: #ffb142;
}
.footer__nav__title {
    font-size: 18px;
    font-family: var(--poppins);
}
.footer__navs .icon {
    width: 19px;
    margin-right: 6px;
}
.footer__navs .icon svg {
    max-width: 19px;
}
.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.copyright-text {
    font-size: 17px;
}
/* ======== footer style end ============ */


.section__content a { color: #387f43; }
.section__content .btn { color: #fff; }

.fa-icon { font-size: 1.5rem; color: #f2b458; }

.calendar-form input, .calendar-form textarea { margin-left: 20px; padding: 10px; max-width: 100%; border: 1px solid #000; border-radius: 10px; }

.agenda__item-content h4 a { font-size: 1.1rem; }

.calendar-form .row div { margin-bottom: 10px; }