@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-size-adjust: 100%;
    font-family: var(--f-family);
}

body {
    background-color: var(--background);
    scroll-behavior: smooth;
    list-style: none;
}

* a {
    text-decoration: none;
}

* ul li {
    list-style: none;
}

/* root */
:root {
    --background: #005E54;
    --bg-section: #130c04;
    /* --color: rgba(0, 0, 0, 0.87); */
    --color: #1d242d;
    --nav-bg-color: #005E54;
    --nav-color: #e15e32;
    --navbar-color: #d3d3d3;
    --nav-hover: #90ee90;
    --white: #fff;
    --font-size: 18px;
    --font-weight: 700;
    --font-weight-p: 300;
    --green: #005E54;
    --red: #410000;
    --f-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    --bnt-f-weight: 900;
    --header-bg-color: #fff;
    --banner-hover: #008000;
    --banner-f-family: 'lato', sans-serif;
    --banner-h1: 35px;
    --banner-h2: 25px;
    --about-icon: 34px;
    --footer-bg: #130c04;
    --title-color: #fff;
    --subtitle-color: #1d242d;
}

/* root small */
:root {
    --font-small: 20px;
    --font-small-h1: 25px;
    --subtitle-small: 25px;
    --color-small: var(--color);
    --font-small-h2: 15px;
}

/* title */
.title {
    color: var(--title-color);
    font-size: 35px;
    padding: 50px;
    font-weight: 900;
    text-align: center;
}

.title:hover {
    color: var(--nav-hover);
}

span {
    font-size: 20px;
    font-weight: 900;
}

span:hover {
    font-size: 22px;
    transition: 0.5s;
}

/* btn on top */
#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    height: auto;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: var(--red);
    color: var(--white);

    padding: 15px;
    border-radius: 5px;
    border: solid 1px var(--white);
}

#myBtn:hover {
    background-color: var(--background);
}

/* end btn on top */

/* @nimations */
@keyframes bounce {

    0%,
    20%,
    60%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20%);
    }

    80% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10%);
    }
}

hr {
    color: red;
    height: 2px;
    background: var(--white);
    opacity: 99%;
}

/* media queryes */
@media (max-width: 767px) {
    body {
        font-size: var(--font-small);
    }

    .title {
        font-size: 22px;
    }

}

@media (min-width: 768px) and (max-width: 991px) {
    body {
        font-size: var(--font-small);
    }

    .title {
        font-size: 18px;
    }

}
/* end media queryes */

/* navbar */
.navbar {
    background: var(--nav-bg-color) !important;
    color: var(--nav-color);
    position: fixed;
    width: 100%;
    z-index: 1;
}

.navbar a:hover:not(.navbar-brand) {
    color: var(--nav-hover);
}

.navbar ul li a {
    font-size: 16px;
    color: white;
    /* margin-right: 40px;  */
    font-weight: var(--font-weight);
}

.navbar-nav {
    margin: auto;
}

.navbar-brand {
    color: white;
    font-size: 21px;
}

.navbar-brand:hover {
    color: var(--nav-hover);
}

@media (max-width: 767px) {
    .navbar-collapse {
        text-align: center;
        height: auto;
    }

    .navbar-brand {
        margin: auto;
    }

    .navbar-toggler {
        background: var(--white);
        margin-right: 30px;
      width: auto;
    }

    .navbar-brand {
        color: white;
        font-size: 18px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .navbar-collapse {
        text-align: center;
        height: auto;
    }

    .navbar-brand {
        margin: auto;
    }

    .navbar-toggler {
        background: var(--white);
    }
}
/* end navbar */

/* header */
header {
    background-image: url("https://images.unsplash.com/photo-1473093295043-cdd812d0e601?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
    background-color: var(--header-bg-color);
    background-position: auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: auto;
    z-index: 9999;
}

@media (max-width: 767px) {
    header {
        background-image: url(/img/1.jpg);
        height: 100vh;
        /* background-position: right 90%; */
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    header {
        background-image: url(/img/1.jpg);
        height: 100vh;
        /* background-position: right 90%; */
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }
}
/* end header */

/* banner */
.banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.banner h1 {
    font-size: var(--banner-h1);
    animation: bounce 2s infinite;
    font-family: var(--banner-f-family);
    width: 60%;
    letter-spacing: -0.01rem;
    margin-bottom: 30px;
    font-weight: 900;
    text-align: center;
    color: var(--green);
}

.banner i {
    color: var(---green);
}

.banner h2 {
    font-size: var(--banner-h2);
    text-align: center;
    font-weight: 800;
    font-family: var(--banner-f-family);
    letter-spacing: -0.01rem;
    width: 50%;
    padding: 1px;
    margin-bottom: 25px;
    text-align: center;
    animation: bounce 2s infinite;
    color: var(--green);
}

.banner h1:hover,
h2:hover {
    color: var(--banner-hover);
}

@media (max-width: 767px) {

    .banner {
        font-weight: 700;
        width: 50%;
        letter-spacing: 2px;
    }

    .banner h1 {
        font-size: 30px;
        text-align: center;
        color: var(--background);
        display: block;
        margin-block-start: 0.83em;
        margin-block-end: 0.83em;
        margin-inline-start: 0px;
        margin-inline-end: 0px;
        font-weight: 900;
        animation: none;
    }

    .banner h2 {
        font-size: 20px;
        text-align: center;
        color: var(--background);
        font-weight: 900;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

    .banner {
        font-weight: 700;
        width: 50%;
        letter-spacing: 2px;
    }

    .banner h1 {
        font-size: 30px;
        text-align: center;
        color: var(--background);
        display: block;
        margin-block-start: 0.83em;
        margin-block-end: 0.83em;
        margin-inline-start: 0px;
        margin-inline-end: 0px;
        font-weight: 900;
        animation: none;
    }

    .banner h2 {
        font-size: 20px;
        text-align: center;
        color: var(--background);
        font-weight: 900;
    }

}
/* end banner */

/* about */
#about {
    height: auto;
    background: var(--green);
}

#about h2 {
    margin-block-start: 1.67em;
    margin-block-end: 1.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-size: 1.41rem;
    font-weight: 700;
    line-height: 110%;
    margin: 1.09333rem 0px 0.656rem;
    text-align: center;
    background: var(--bg-section);
    padding: 20px;
    border-radius: 5px;
}

#about h2:hover {
    transition: 0.5s;
    margin-bottom: 50px;
    color: var(--white);
}

#about p {
    text-align: start;
    color: #fff;
    font-weight: var(--font-weight-p);
}

#about .info {
    text-align: center;
}

#about i {
    font-weight: normal;
    font-style: normal;
    font-size: var(--about-icon);
    line-height: 4;
    display: inline-block;
    word-wrap: normal;
    direction: ltr;
}

@media(max-width: 767px) {
    #about {
        height: auto;
    }

    #about h2 {
        margin-block-start: 1.67em;
        margin-block-end: 1.67em;
        margin-inline-start: 0px;
        margin-inline-end: 0px;
        font-size: 1.41rem;
        line-height: 110%;
        margin: 1.09333rem 0px 0.656rem;
        text-align: center;
    }

    #about p {
        text-align: start;
    }

    #about .info {
        text-align: center;
    }

    #about i {
        text-rendering: optimizeLegibility;
        font-size: 24px;
        margin-bottom: -20px;
    }

    span {
        font-size: var(--font-small-h1);
        color: var(--green);
    }
}
/* end about */

/* health */
#health {
    background: var(--bg-section);
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

#health h5 {
    color: var(--white);
    font-weight: 900;
}

.hover-effect {
    position: relative;
    overflow: hidden;
}

.hover-effect img {
    transition: transform 0.3s ease;
}

.hover-effect:hover img {
    transform: scale(1.1);
}

.hover-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    padding: 20px;
}

.hover-effect:hover .hover-text {
    opacity: 1;
}

/* end health */

/* counter */
#counter-section {
    height: 80vh;
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 50px;
}

.counter-box {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: auto;
}

.counter-card {
    padding: 30px;
    border-radius: 5px;
    border: var(--color) solid 1px;
    border-right: 10px solid var(--background);
    /* border-top-left-radius: 50px; */
    border-bottom-right-radius: 50px;
    border-top-left-radius: 30px;
    box-shadow: 5px 2px lightgray;
    background: var(--white);
    /* opacity: 90%; */
}

.counter-section .container-fluid {
    padding: 50px;
}

.counter-section i {
    font-size: 30px;
    color: var(--color);
}

.counter {
    font-size: 3rem;
    font-weight: bold;
}

.counter-title {
    font-size: 1.5rem;
    margin-top: 10px;
    font-weight: bold;
}

@media (max-width: 767px) {

    #counter-section {
        height: auto;
    }

    .counter-box {
        flex-direction: column;
        height: auto;

    }

    .counter-card {
        margin: auto;
        width: 100%;
    }

    .counter-section i {
        font-size: 25px;
    }

    .counter {
        font-size: 1.5rem;
        font-weight: bold;
    }

    .counter-title {
        font-size: 1.2rem;
        margin-top: 10px;
        font-weight: bold;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

    .banner h1 {
        margin-top: 50px;
    }

    .title {
        font-size: 15px;
        padding: 50px;
        font-weight: 900;
    }

    #counter-section {
        height: auto;
    }

    .counter-box {

        height: auto;

    }

    .counter-card {
        margin: auto;
        width: 25%;
        height: 200px;
    }

    .counter-section i {
        font-size: 25px;
    }

    .counter {
        font-size: 1.5rem;
        font-weight: bold;
    }

    .counter-title {
        font-size: 1.2rem;
        margin-top: 10px;
        font-weight: bold;
    }

}

/* end counter */

/* depoiments */
#depoiments {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    background: var(--bg-section);
    text-align: center;
    padding: 25px;
}

.depoiments {
    border: solid 1px var(--white);
    height: 500px;
    padding: 20px;
    border-radius: 5px;
}

#depoiments img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 25px;
}

#depoiments p {
    color: var(--white);
}

.depoiments-box {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 100%;
}

#depoiments i {
    color: lightgreen;
}

#depoiments span {
    color: var(--white);
    font-size: 15px;
}

@media (max-width: 767px) {
    .depoiments {
        height: auto;
    }

    .depoiments-box {
        flex-direction: column;
    }
}

@media (min-width: 768px) and (max-width:991px) {

    .depoiments-box {
        flex-direction: column;
        width: 100%;
    }

    .depoiments {
        height: auto;
        width: 100%;
    }
}

@media (min-width: 992px) and (max-width:1199px) {
    .depoiments-box {
        width: 100%;
        gap: 10px;
    }

    .depoiments {
        height: 600px;
    }
}

/* end depoiments */


/* payment */
#banner-pay {
    height: auto;
}

#banner-pay .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    padding: 50px;
}

.btn-pay {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

@media (min-width: 767px) and (max-width: 991px) {
    #banner-pay .container {
        height: auto;
    }

    .pay-content {
        display: flex;
    }
}

/* end payment */

/* footer */
footer {
    background: var(--footer-bg);
    height: 50;
}

footer img {
    height: 300px;
}

footer a,
h2,
i {
    color: var(--white);
}

footer ul li {
    color: var(--white);
}

@media (max-width:767px) {
    footer {
        text-align: center;
    }

    footer img {
        height: 600px;
        width: 100%;
    }
}

@media (min-width:768px) and (max-width: 992px) {
    footer {
        text-align: center;
    }

    footer img {
        height: 500px;
        width: 50%;
    }
}
/* end footer */