* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

.body {
    scroll-behavior: smooth;
}

.navigation {
    background-color: rgba(255, 255, 255, 0.921);
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.navbar-nav {
    margin-left: 20rem;
}

.form-inline {
    margin-left: 15rem;
}

.btn a {
    padding: 8px 20px;
    border-radius: 20px;
    color: #fff;
    background-color: #ff8c00;
    border: 1px solid #ff8c00;
    text-decoration: none;
    transition: 0.6s;
}

.btn a:hover {
    color: #000;
    background-color: #fff;
}


.header h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-top: 8rem;
    margin-bottom: 5rem;
    margin-top: 10rem;
}

/* middle1 */

.middle10 {
    width: 100%;
    background-color: #f3f3f3;
    height: 50vh;
    padding: 80px;
}

.middle10rap {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: auto auto auto auto auto auto;
}

.boxx3 {
    border: 10px solid #7aba59;
    border-radius: 50%;
    width: 10rem;
    height: 20vh;
    margin-top: 30px;
    margin-right: 30px;
}

.boxx3 p {
    font-weight: 800;
    font-size: 60px;
    padding: 20px;
    margin-left: 35px;
}

.boxx4 h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ed6436;
}

.boxx4 p {
    font-size: 20px;
}


/* middle2 */

.middle6 {
    width: 100%;
    margin-top: 5rem;
}

.middle6 h2 {
    color: #000;
    font-size: 50px;
    font-weight: 800;
    text-transform: capitalize;
    margin-left: 10rem;
}

.middle6 span {
    color: #ed6436;
}

.middle6rap {
    width: 80%;
    margin: auto;
    display: grid;
    grid-template-columns: auto auto auto auto;
}


.row {
    margin-left: 8rem;
}

.progress {
    width: 150px;
    height: 150px;
    line-height: 150px;
    background: none;
    margin: 0 auto;
    box-shadow: none;
    position: relative;
    margin-right: 20rem;
    margin-top: 5rem;
}

.progress:after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #fff;
    position: absolute;
    top: 0;
    left: 0;
}

.progress>span {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    z-index: 1;
}

.progress .progress-left {
    left: 0;
}

.progress .progress-bar {
    width: 100%;
    height: 100%;
    background: none;
    border-width: 2px;
    border-style: solid;
    position: absolute;
    top: 0;
}

.progress .progress-left .progress-bar {
    left: 100%;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
    border-left: 0;
    -webkit-transform-origin: center left;
    transform-origin: center left;
}

.progress .progress-right {
    right: 0;
}

.progress .progress-right .progress-bar {
    left: -100%;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
    border-right: 0;
    -webkit-transform-origin: center right;
    transform-origin: center right;
    animation: loading-1 1.8s linear forwards;
}

.progress .progress-value {
    width: 85%;
    height: 85%;
    border-radius: 50%;
    border: 2px solid #ebebeb;
    font-size: 32px;
    line-height: 125px;
    text-align: center;
    position: absolute;
    top: 7.5%;
    left: 7.5%;
}

.progress.blue .progress-bar {
    border-color: #049dff;
}

.progress.blue .progress-value {
    color: #049dff;
}

.progress.blue .progress-left .progress-bar {
    animation: loading-2 1.5s linear forwards 1.8s;
}

.progress.yellow .progress-bar {
    border-color: #fdba04;
}

.progress.yellow .progress-value {
    color: #fdba04;
}

.progress.yellow .progress-left .progress-bar {
    animation: loading-3 1s linear forwards 1.8s;
}

.progress.pink .progress-bar {
    border-color: #ed687c;
}

.progress.pink .progress-value {
    color: #ed687c;
}

.progress.pink .progress-left .progress-bar {
    animation: loading-4 0.4s linear forwards 1.8s;
}

.progress.green .progress-bar {
    border-color: #1abc9c;
}

.progress.green .progress-value {
    color: #1abc9c;
}

.progress.green .progress-left .progress-bar {
    animation: loading-5 1.2s linear forwards 1.8s;
}

@keyframes loading-1 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}

@keyframes loading-2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(144deg);
        transform: rotate(144deg);
    }
}

@keyframes loading-3 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
}

@keyframes loading-4 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(36deg);
        transform: rotate(36deg);
    }
}

@keyframes loading-5 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(126deg);
        transform: rotate(126deg);
    }
}

@media only screen and (max-width: 990px) {
    .progress {
        margin-bottom: 20px;
    }
}


.content-bottom h1 {
    color: #000;
    font-size: 20px;
    margin-top: 30px;
}

.content-bottom p {
    color: #000;
    font-size: 20px;
}




/* middle4 */

.middle7{
    width: 100%;
    margin-top: 60px;
}
.middle7 h2{
    font-size: 50px;
    text-align: center;
    font-weight: 800;
    margin-bottom: 30px;
}
.middle7rap{
    width: 80%;
    margin: auto;
    display: grid;
    grid-template-columns: auto auto;
    margin-top: -10rem;
}
.boxx1{
    width: 100%;
}
.boxx1 h3{
    font-size: 30px;
}
.boxx1 p{
    font-size: 20px;
    font-weight: 800;
    color: #ed6436;
}
.boxx1 h4{
    margin-bottom: 30px;
}
.boxx1 span{
    color: #000;
}
.boxx1 h4{
    font-size: 20px;
}



/* cardset */

.container6{
    width: 100%;
    margin-top: 140px;
}
.container6rap{
    width: 80%;
    margin: auto;
    display: grid;
    grid-template-columns: auto auto;
}
.divcard{
    width: 60%;
    margin-top: 10rem;
}
.divcard h2{
    font-size: 20px;
    text-transform: uppercase;
    color: #ed6436;
    margin-bottom: 20px;
    font-weight: 700;
}
.divcard h3{
    font-size: 50px;
    text-transform: capitalize;
    margin-bottom: 20px;
    font-weight: 800;
}

.card-group{
    width: 100%;
}
.card-text p{
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
}
.card-text h1{
    font-size: 40px;
    font-weight: 800;
}
#home{
    font-size: 80px;
}
.grid{
    display: grid;
    grid-template-columns: auto auto;
}
.colll1 p{
    font-size: 15px;
    margin-top: 22px;
}
#id{
    margin-top: 10px;
    font-size: 20px;
    color: #7aba59;
}
.card{
    width: 30rem;
    margin-top: 40px;
    border-radius: 20px;
    height: 70vh;
}
.cardsize{
    height: 80vh;
    width: 20rem;
    border-radius: 20px;
}

.card-text1 p{
    font-size: 25px;
    font-weight: 800;
    text-transform: uppercase;
}
.card-text1 h1{
    color: #f2f2f2;
    font-size: 45px;
    font-weight: 800;
}
.colll3 p{
    color: #fff;
    font-size: 20px;
    margin-top: 20px;
}
#id1{
    margin-top: 10px;
    font-size: 20px;
    color: #fff;
}


/* middle6 */

.middle15{
    width: 100%;
    margin-top: 10rem;
}
.middle15rap{
    width: 70%;
    margin: auto;
}
.boxxx11{
    display: grid;
    grid-template-columns: auto auto auto;
    height: 35vh;
    background-color: #f9b945;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}
.text{
    padding: 20px;
}
.text h2{
    font-size: 50px;
    text-transform: capitalize;
    color: #fff;
    font-weight: 700;
}
.text p{
    font-size: 50px;
    font-weight: 800;
    color: #000;
}
.booknow{
    margin-left: 5rem;
    margin-top: 8rem;
}
.booknow a{
    text-decoration: none;
    color: #fff;
    background-color: #ed6436;
    border-radius: 40px;
    padding: 10px;
    transition: 0.5s;
}
.booknow a:hover{
    color: #ed6436;
    background-color: #fff;
    border: 1px solid #ed6436;
}
.boxxx11 img{
    width: 80%;
    height: 55vh;
    margin-left: 5rem;
    margin-top: -148px;
}

/* middle7 */


.container7{
    width: 100%;
    margin-top: 100px;
}
.container7rap{
    width: 80%;
    margin: auto;
    display: grid;
    grid-template-columns: auto auto;
}
.boxx1{
    margin-top: 10rem;
    /* background-color: #ed6436; */
}
.small_box{
    margin-bottom: 40px;
}
.small_box h1{
    font-weight: 800;
    font-size: 20px;
    color: #ed6436;
    text-transform: uppercase;
}
.small_box p{
    font-size: 20px;
    color: #000;
}
.boxx2{
    margin-left: 10rem;
    width: 80%;
    height: 50vh;
    /* background-color: #7aba59; */
}

.boxx2rap{
    border-radius: 30px;
    padding: 30px;
     background-color: #f3f3f3;
}
.form-row{
    margin-top: 20px;
}


/* middle8 */


.middle8{
    width: 100%;
    height: 90vh;
    background-color: #f3f3f3;
    margin-top: 10rem;
}
.middle8 h2{
    color: #ed6436;
    font-size: 40px;
    text-align: center;
    font-weight: 800;
    text-transform: capitalize;
    margin-bottom: 60px;
    margin-top: 5rem;
    padding-top: 30px;
}
.middle8rap{
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: auto auto auto auto;
}
.cardd{
    height: 60vh;
    border: 1px solid #dddddd;
    background-color: #fff;
}
.cardd img{
    height: 35vh;
    margin-bottom: 20px;
}
.cardd-body h4{
    margin-bottom: 10px;
    padding: 20px;
}
.cardd-btn a{
    text-decoration: none;
    padding: 10px;
    border-radius: 30px;
    color: #fff;
    background-color: #ff8c00;
    font-size: 20px;
    transition: 0.5s;
    margin-left: 5rem;
}
.cardd-btn a:hover{
    color: #ff8c00;
    background-color: transparent;
    border: 1px solid #ff8c00;
}







/* website footer */

.footer {
    width: 100%;
    margin-top: 10rem;
}

.footerrap {
    width: 80%;
    margin: auto;
    display: grid;
    grid-template-columns: auto auto auto auto;
}

.grid_1 {
    width: 70%;
    display: grid;
    grid-template-columns: auto auto;
}

.grid_1 img {
    width: 3rem;
    height: 6vh;
    margin-left: 4rem;
}

.grid_1 h1 {
    font-size: 40px;
    font-weight: 600;
    text-align: left;
}

.socialicons {
    justify-content: center;
    display: flex;
}

.socialicons a {
    text-decoration: none;
    padding: 10px;
    background-color: #ed6436;
    margin: 10px;
    border-radius: 50%;
    transition: 0.6s;
}

.socialicons a:hover {
    background-color: transparent;
    border: 1px solid #ed6436;
}

#youtube {
    color: #fff;
}

#youtube:hover {
    color: #ed6436;
}

#facebook {
    color: #fff;
}

#facebook:hover {
    color: #ed6436;
}

#instagram {
    color: #fff;
    ;
}

#instagram:hover {
    color: #ed6436;
}

#tweeter {
    color: #fff;
}

#tweeter:hover {
    color: #ed6436;
}

.divvv2 h1 {
    font-size: 25px;
    color: #ed6436;
    font-weight: 600;
}

.divvv3 h1 {
    font-size: 25px;
    color: #ed6436;
    font-weight: 600;
}

.btn_div {
    margin-top: 20px;
}

.btn_div a {
    padding: 10px;
    text-decoration: none;
    border-radius: 30px;
    background-color: #ed6436;
    color: #fff;
    transition: 0.5s;
}

.btn_div a:hover {
    color: #ed6436;
    background-color: transparent;
    border: 1px solid #ed6436;
}


.footer_bottom {
    width: 100%;
    height: 10vh;
    background-color: #ed6436;
    margin-top: 60px;
}

.footer_bottom h1 {
    color: #fff;
    text-align: center;
    font-size: 20px;
    padding: 20px;
}