@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");

* {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;
}

@media screen and (max-width: 1040px) {
    .navbar {
        overflow: hidden;
        background-color: white;
        display: flex;
        flex-flow: column wrap;
        justify-content: space-between;
        align-items: center;
        padding: 0;
        margin: 0;
    }
}

@media screen and (min-width: 1041px) {
    .navbar {
        overflow: hidden;
        background-color: white;
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
        align-items: center;
        padding: 0;
        margin: 0;
    }
}

/* Body */
.rounded {
    border-top: 5px solid #11999e;
    border-radius: 5px;
    margin: 30px 10%;
}

@media screen and (max-width: 500px) {
    .header-text {
        font-size: 30px;
        padding: 10px 0px 0px 10px;
        font-size: 20px;
        font-weight: 600;
        color: black;
    }




}

@media screen and (min-width: 501px) {
    .header-text {
        font-size: 30px;
        padding: 30px 0px 0px 5%;

        font-weight: 600;
        color: black;
    }





}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #c8c8c8;
}

::-webkit-scrollbar-thumb {
    background: #5eb7b7;
    border-radius: 50px;
}

::-webkit-scrollbar-thumb:hover {
    background: #11999e;
}


/* aa */
.topScroll button {
    margin: auto;
    display: block;
    background-color: transparent;
    border: 0;
    text-decoration: underline;
    font-size: 20px;
    cursor: pointer;
    padding-bottom: 29px;
    padding-top: 50px;
}

.wrapper {
    width: 90%;
    display: flex;
    justify-content: space-between;
    margin: auto;
    padding-top: 50px;
}

.icon {
    width: 70px;
    height: 70px;
    background: #ee5310;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 30px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.icon i {
    color: #fff;
    font-size: 25px;
}

.card {
    width: 24%;
    min-height: 400px;
    background-color: white;
    box-shadow: 2px 2px 0px #11999e, -2px -2px 0px #11999e;
    transition: all .5s ease;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: #484948;
}

.card h2 {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.card p {
    font-size: 16px;
    line-height: 1.5;
    padding: 8px;
}

.card:hover {
    transform: scale(1.05);
    cursor: grab;
}

.card:hover i {
    transition: all .9s ease;
    transform: rotate(360deg);
}

@media (max-width:991px) {
    .wrapper {
        flex-direction: column;
        margin: auto;
        align-items: center;
    }

    .card {
        width: 250px;
        margin-bottom: 30px;
    }
}

/* body */
.container {
    max-width: 90%;
    margin: 0 auto;
    margin-top: 50px;
}

.body-container .accordion-box {
    border: 2px solid #ccc;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    /* width: 100%; */
}


.body-container .accordion-box .accordion-header {
    position: relative;
}

.body-container .accordion-box .accordion-header span.icon {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: #fff;
}

.body-container .accordion-box .accordion-header a {
    background-color: #11999e;
    color: #fff;
    display: block;
    padding: 10px 20px;
    text-decoration: none;

    font-weight: 600;
    font-size: 20px;
}

.body-container .accordion-box .accordion-body {
    padding: 17px;
    font-weight: 400;
    font-size: 15px;
    /* height: 50px; */


}

.body-container .accordion-box:not(:first-child) .accordion-body {
    display: none;
}

.rounded {
    border-top: 5px solid #11999e;
    border-radius: 5px;
    margin: 60px 5% 0px 5%;
}

.topScroll button {
    margin: auto;
    display: block;
    background-color: transparent;
    border: 0;
    text-decoration: underline;
    font-size: 20px;
    cursor: pointer;
    padding-bottom: 29px;
    padding-top: 50px;
}

/*  */


/* Services Style */
section.services {
    margin-top: 40px;
}

.services .service-item {
    border-radius: 5px;
    padding: 40px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.services .service-item:hover i {
    margin-top: 15px;
}

.services .service-item h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

.services .service-item i {
    transition: all .5s;
    float: left;
    font-size: 64px;
    color: #11999e;
    margin-bottom: 30px;
    margin-right: 30px;
}

/* End */

/* Header */
.title {

    display: flex;
    justify-content: start;
    align-items: center;
    margin: 0;
    padding: 18px 0 0 5%;
}

.title h1 {
    font-size: 30px;
    color: #000000;
    border-right: 4px solid #000;
    font-weight: 700;
    animation: forwards typing 7s;
    white-space: nowrap;
    overflow: hidden;
}

@keyframes cursor {

    0%,
    100% {
        border-color: transparent;
    }

    50% {
        border-color: #000;
    }
}

@keyframes typing {
    0% {
        width: 0ch
    }

    30%{ width: 16ch;} 
    80%{ width: 16ch;} 
     90%{ width: 16ch;} 
    100% {
        width: 16ch;
    }


}

/* End Header */