/* =====general_css======== */
:root {
    --header-color: #FFFFFF;
    --btn-color: #075e54;
    --theme_color: #1EBEA5;
    --section_color: #075e5496;
    --dark_box_shadw: beige;
    --lignt_box_shadow: black;
    --first_green: #009122;
    --footer_icolor: #fff;
    --contact_padding: 200px;
    --white: white;
    --border_inner_banner: #38b856;
}

::selection {
    background-color: var(--section_color);
}

/* =========popup=========== */
.form_filler {
    background: var(--theme_color);
}

.white_input {
    border: 2px solid white !important;
    color: white;
}

input:focus-visible,
textarea:focus-visible {
    outline: none;
}

.white_input::placeholder {
    color: white;
}

.circle {
    border-radius: 50%;
    background: linear-gradient(135deg, transparent 20%, #149279);
    position: absolute;
}

.circle.two {
    width: 80px;
    height: 80px;
    top: 10px;
    right: 30px;
}

.circle.one {
    width: 130px;
    height: 130px;
    top: 130px;
    right: 0px;
}

/* ========scroll-bar======= */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #075e5452;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #075e54c4;
    border-radius: 10px;
}

/* ========loader=========== */
/* .loader{
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 99999999;
} */
/* ========links============ */
a {
    text-decoration: none;
}

/* ======listing============ */
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ======font=============== */
.fs-12 {
    font-size: 12px;
}

.fs-14 {
    font-size: 14px;
}

.gl-shadow {
    box-shadow: 0 4px 18px rgba(194, 200, 213, .3);
}

.text_shadow {
    text-shadow: -1px -1px black;
}

.dar_box_shadow {
    box-shadow: 1px 1px var(--dark_box_shadw);
}

.lignt_box_shadow {
    box-shadow: 1px 1px var(--lignt_box_shadow);
}

.first_green::first-letter {
    color: var(--first_green) !important;
    text-transform: capitalize;
}

/* ========button=========== */
.btn-1 {
    background-color: var(--btn-color);
    text-transform: capitalize;
    text-decoration: none;
}

.btn-2 {
    border-radius: 10px;
    border: 0.2rem solid var(--btn-color);
}

.btn-2:hover {
    background: linear-gradient(0deg, #075d53d6 50%, #075d53d6 50%);
}

.btn_primary {
    --color: #00A97F;
    padding: 5px 10px;
    background-color: transparent;
    border-radius: .3em;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: .5s;
    font-weight: 400;
    border: 1px solid;
    font-family: inherit;
    color: var(--color);
    z-index: 1;
}

.btn_primary::before,
.btn_primary::after {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    transform: translate(-50%, -50%);
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    background-color: var(--color);
    transition: 1s ease;
}

.btn_primary::before {
    top: -1em;
    left: -1em;
}

.btn_primary::after {
    left: calc(100% + 1em);
    top: calc(100% + 1em);
}

.btn_primary:hover::before,
.btn_primary:hover::after {
    height: 410px;
    width: 410px;
}

.btn_primary:hover {
    color: rgb(10, 25, 30);
}

.btn_primary:active {
    filter: brightness(.8);
}

.btn_primary_white {
    --color: #005915;
    padding: 5px 10px;
    background-color: transparent;
    border-radius: .3em;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: .5s;
    font-weight: 400;
    border: 1px solid;
    font-family: inherit;
    color: var(--color);
    z-index: 1;
}

.btn_primary_white::before,
.btn_primary_white::after {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    transform: translate(-50%, -50%);
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    background-color: var(--color);
    transition: 1s ease;
}

.btn_primary_white::before {
    top: -1em;
    left: -1em;
}

.btn_primary_white::after {
    left: calc(100% + 1em);
    top: calc(100% + 1em);
}

.btn_primary_white:hover::before,
.btn_primary_white:hover::after {
    height: 410px;
    width: 410px;
}

.btn_primary_white:hover {
    color: #fff;
}

.btn_primary_white:active {
    filter: brightness(.8);
}

/* ===========input========= */
.input_group input::placeholder {
    color: transparent;
    background-color: transparent;
}

.input_group input~label {
    transition: all 0.5s;
}

.input_group input:focus~label {
    top: -20px !important;
    color: var(--btn-color);
    font-size: 12px;
}

/* ========animation========= */
@keyframes slideUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ========header=========== */
.header {
    position: fixed;
    z-index: 999;
    width: 100%;
    top: 0;
    text-transform: capitalize;
}

.header_nav_toggle ul li {
    margin: 0 10px;
}

/*=======banner============= */
.banner-img {
    animation: slideUpDown 5s infinite;
}

.img-box img {
    border: 3px solid #ddd;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    object-fit: cover;
}

/* =======footer============ */
.foot-icons {
    width: 40px;
    height: 40px;
}

.foot-head::after {
    position: absolute;
    content: '';
    width: 50%;
    height: 2px;
    background-color: var(--theme_color);
    border-radius: 5px;
    bottom: -10px;
}

.foot-head3::after {
    position: absolute;
    content: '';
    width: 60%;
    height: 2px;
    background-color: var(--theme_color);
    border-radius: 5px;
    bottom: -10px;
}

.foot-icon {
    width: 35px;
    height: 35px;
    border: 1px solid black;
    transition: all 0.5s;
    cursor: pointer;
}

.foot-icon i {
    color: var(--footer_icolor);
    transition: all 0.5s;
}

.foot-icon:hover {
    border-color: var(--theme_color) !important;
}

.foot-icon:hover.foot-icon i {
    color: var(--theme_color) !important;
}

.foot-border {
    border-bottom: 1px solid var(--footer);
}

.foots-link:hover.foots-link a {
    color: var(--theme_color) !important;
    transition: all 0.5s;
    letter-spacing: 2px;
}

/* ========contact+page===== */
.contact_container {
    padding-left: var(--contact_padding) !important;
}

.contact_infobox {
    top: 50%;
    transform: translateY(-50%);
    left: -20%;
    /* background: #39e9ae; */
    background: #1B9779;
}

.contact_media .foot-icon {
    width: 25px;
    height: 25px;
}

.contact_media .foot-icon i {
    font-size: 14px;
}

.form__container {
    font-family: Arial, Helvetica, sans-serif;
    /* max-width: 400px; */
    /* padding: 3rem; */
}

.form__group {
    position: relative;
    /* margin-bottom: 30px; */
}

.form__input {
    position: realtive;
    display: block;
    width: 100%;
    padding: 5px;
    border: 1px solid #f3f3f3;
    border-radius: 10px;
    outline: none;
    box-shadow: 0 16px 16px -5px rgba(0, 0, 0, .1);
    background: transparent;
    color: white;
    /* padding-left: 9px !important; */
}

.form__input:focus {
    border: 1px solid var(--white);
}

.form__label {
    position: absolute;
    top: 8px;
    left: 15px;
    transition: all 300ms ease-in-out;
    pointer-events: none;
    font-size: 14px;
    color: var(--white);
}

/* .form__input:focus~label,
.form__input:not(:placeholder-shown)~label {
    color: var(--white);
    top: -16px;
    left: 0;
    font-size: 11px;
    z-index: 1;
} */

.form__input::-webkit-input-placeholder {
    color: white;
    padding-left: 6px;
}

.form__input::-moz-placeholder {
    color: white;
    padding-left: 6px;
}