﻿
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Abyssinica+SIL&family=Aref+Ruqaa+Ink:wght@700&family=Bungee+Spice&family=Courgette&family=Domine&family=Kalam&family=Montserrat:wght@300;400&family=Playfair+Display&family=Poppins:wght@100&family=Roboto+Condensed:wght@700&family=Roboto+Slab&family=Rubik&family=Sacramento&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Abyssinica+SIL&family=Alkalami&family=Aref+Ruqaa+Ink:wght@700&family=Bungee+Spice&family=Courgette&family=Domine&family=Kalam&family=Montserrat:wght@300;400&family=Playfair+Display&family=Poppins:wght@100&family=Roboto+Condensed:wght@700&family=Roboto+Slab&family=Rubik&family=Sacramento&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Abyssinica+SIL&family=Alkalami&family=Aref+Ruqaa+Ink:wght@700&family=Bungee+Spice&family=Courgette&family=Domine&family=Kalam&family=Merriweather&family=Montserrat:wght@300;400&family=Playfair+Display&family=Poppins:wght@100&family=Roboto+Condensed:wght@700&family=Roboto+Slab&family=Rubik&family=Sacramento&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Abyssinica+SIL&family=Alkalami&family=Aref+Ruqaa+Ink:wght@700&family=Bungee+Spice&family=Courgette&family=Domine&family=Kalam&family=Libre+Baskerville:wght@400;700&family=Merriweather&family=Montserrat:wght@300;400&family=Playfair+Display&family=Poppins:wght@100&family=Roboto+Condensed:wght@700&family=Roboto+Slab&family=Rubik&family=Sacramento&display=swap');

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Navbar section */

.nav {
    width: 100%;
    height: 65px;
    z-index: 111;
    position: fixed;
    line-height: 21px;
    text-align: center;
    background-color: #ffbc11;
}

    .nav div.logo {
        float: left;
        width: auto;
        height: auto;
        padding-left: 3rem;
    }

        .nav div.logo a {
            text-decoration: none;
            color: #fff;
            font-size: 2.5rem;
        }

            .nav div.logo a:hover {
                color: #00E676;
            }

    .nav div.main_list {
        height: 65px;
        float: right;
    }

        .nav div.main_list ul {
            width: 100%;
            height: 65px;
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }

            .nav div.main_list ul li {
                width: auto;
                height: 65px;
                padding: 0;
                padding-right: 3rem;
            }

                .nav div.main_list ul li a {
                    text-decoration: none;
                    color: #000000;
                    line-height: 28px;
                    font-size: 16px;
                    font-weight: 700;
                    font-family: 'Roboto Slab', serif;
                }


                    .nav div.main_list ul li a:hover {
                        color: #00E676;
                    }



.navTrigger {
    display: none;
}

.nav {
    padding-top: 20px;
    padding-bottom: 20px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}


/* Media qurey section */

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .container {
        margin: 0;
    }
}

@media screen and (max-width:768px) {
    .navTrigger {
        display: block;
    }

    .nav div.logo {
        margin-left: -47px;
    }

    .nav div.main_list {
        width: 100%;
        height: 0;
        overflow: hidden;
    }

    .nav div.show_list {
        height: auto;
        display: none;
    }

    .nav div.main_list ul {
        flex-direction: column;
        width: 100%;
        height: 50vh;
        right: 0;
        left: 0;
        bottom: 0;
        background-color: #111;
        /*same background color of navbar*/
        background-position: center top;
    }

        .nav div.main_list ul li {
            width: 100%;
            text-align: right;
        }

            .nav div.main_list ul li a {
                text-align: center;
                width: 100%;
                font-size: 22px;
                padding: -3px;
            }

            .nav div.main_list ul li a {
                text-decoration: none;
                color: #ffbc11;
                line-height: 40px;
                font-size: 16px;
                font-weight: 700;
                font-family: 'Roboto Slab', serif;
            }

    .nav div.media_button {
        display: block;
    }
}



.navTrigger {
    cursor: pointer;
    width: 30px;
    height: 25px;
    margin: auto;
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
}

    .navTrigger i {
        background-color: #fff;
        border-radius: 2px;
        content: '';
        display: block;
        width: 100%;
        height: 4px;
    }

        .navTrigger i:nth-child(1) {
            -webkit-animation: outT 0.8s backwards;
            animation: outT 0.8s backwards;
            -webkit-animation-direction: reverse;
            animation-direction: reverse;
        }

        .navTrigger i:nth-child(2) {
            margin: 5px 0;
            -webkit-animation: outM 0.8s backwards;
            animation: outM 0.8s backwards;
            -webkit-animation-direction: reverse;
            animation-direction: reverse;
        }

        .navTrigger i:nth-child(3) {
            -webkit-animation: outBtm 0.8s backwards;
            animation: outBtm 0.8s backwards;
            -webkit-animation-direction: reverse;
            animation-direction: reverse;
        }

    .navTrigger.active i:nth-child(1) {
        -webkit-animation: inT 0.8s forwards;
        animation: inT 0.8s forwards;
    }

    .navTrigger.active i:nth-child(2) {
        -webkit-animation: inM 0.8s forwards;
        animation: inM 0.8s forwards;
    }

    .navTrigger.active i:nth-child(3) {
        -webkit-animation: inBtm 0.8s forwards;
        animation: inBtm 0.8s forwards;
    }

@-webkit-keyframes inM {
    50% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes inM {
    50% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes outM {
    50% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes outM {
    50% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes inT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }

    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }

    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes inT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(9px) rotate(0deg);
    }

    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes outT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }

    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }

    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes outT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(9px) rotate(0deg);
    }

    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes inBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }

    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }

    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes inBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-9px) rotate(0deg);
    }

    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

@-webkit-keyframes outBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }

    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }

    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes outBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-9px) rotate(0deg);
    }

    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

#banner {
    width: 100%;
    height: 700px;
    background-image: linear-gradient(#ffbc11,#ffbc11);
}

.banner_content {
    padding-top: 146px;
}

    .banner_content h2 {
        color: #fff;
        font-size: 42px;
        text-transform: uppercase;
        font-family: 'Alkalami', serif;
        font-weight: 700;
    }

    .banner_content p {
        color: #fff;
        text-align: left;
        font-size: 18px;
        padding-bottom: 29px;
        font-family: 'Abyssinica SIL', serif;
        /* font-family: 'Abyssinica SIL', serif;*/
    }

    .banner_content a {
        text-decoration: none;
        color: #fff;
        text-align: center;
        background: #545050;
        padding: 10px 15px;
        font-family: 'Abyssinica SIL', serif;
    }

.banner_arrow {
    width: 38%;
    z-index: 1;
    top: 64px;
    left: 28rem;
    position: absolute;
}

#about {
    margin-top: 100px;
}

    #about a {
        background-color: #545050;
        padding: 11px 41px;
        color: #fff;
        text-transform: uppercase;
        font-weight: 600;
        margin-left: 637px;
        text-decoration: none;
    }

    #about .view {
        background-color: #ffbc11;
        padding: 11px 41px;
        color: #000000;
        font-weight: 600;
        margin-left: 0px;
        text-decoration: none;
        margin-bottom: 100px;
    }

.about {
    margin-top: 100px;
}

    .about h4 {
        color: #000000;
        font-size: 21px;
        font-weight: 700;
        text-transform: uppercase;
        padding-bottom: 10px;
    }

    .about p {
        text-align: justify;
        font-size: 16px;
        font-family: 'Abyssinica SIL', serif;
    }

.work {
    background-image: url('../images/background-world-map.gif');
    height: 439px;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 100px;
}

    .work .work_img {
        width: 100%;
        height: 73%;
        margin-top: 101px;
    }


#about h6 {

    color: #545050;
    font-weight: 700;
    font-size: 20px;
 
}
#about p{
text-align:justify;
  
 
}

#about i {
    font-size: 31px;
}

#packges {
    margin-top: 100px;
    margin-bottom: 100px;
}

    #packges a {
        background-color: #545050;
        padding: 11px 41px;
        color: #fff;
        text-transform: uppercase;
        font-weight: 600;
        margin-left: 605px;
        text-decoration: none;
    }

    #packges .order1 {
        background-color: #808080;
        text-decoration: none;
        margin-left: -18px;
    }

    #packges .order2 {
        background-color: #e72a2a;
        text-decoration: none;
        margin-left: -18px;
    }

    #packges .order3 {
        background-color: #ffbc11;
        text-decoration: none;
        margin-left: -18px;
        margin-left: -21px;
        padding: 10px 28px;
    }

#basic {
    padding-left: 168px;
}

.footer_section {
    padding-top: 50px;
    background-color: #000000;
}

.copyright {
    margin-top: 50px;
    background-color: #000000;
}
/*------------about use page-----------*/
#about_banner {
    width: 100%;
    height: 400px;
    background:#ffbc11 url('../images/lines-bk.png');

   
   
}

    #about_banner h2 {
        color: #fff;
        font-size: 45px;
        text-transform: uppercase;
        font-family: 'Alkalami', serif;
        font-weight: 700;
        margin-left: 28rem;
        margin-top: 3rem;
    }

#about_page {
    margin-top: 100px;
}

    #about_page h2 {
        font-size: 35px;
        font-weight: 700;
        font-family: 'Libre Baskerville', serif;
    }

    #about_page p {
        text-align: justify;
        font-size: 16px;
        font-family: 'Abyssinica SIL', serif;
    }

    #about_page a {
        text-decoration: none;
        color: #fff;
        text-align: center;
        background: #ffbc11;
        padding: 10px 15px;
        font-family: 'Abyssinica SIL', serif;
    }

/*counter*/
#counter {
    margin-top: 100px;
    margin-bottom: 100px;
}

.counter {
    color: #f14159;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

    .counter .counter-icon {
        color: #fff;
        background: #d36308;
        font-size: 40px;
        line-height: 90px;
        width: 120px;
        height: 100px;
        margin: 0 auto 3px;
        transform: rotateX(35deg);
        position: relative;
        clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    }

        .counter .counter-icon:before {
            content: '';
            background: linear-gradient(to right,#F5BD01,#EE8903);
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 12px;
            z-index: -1;
            clip-path: inherit;
        }

    .counter .counter-value {
        color: transparent;
        background: linear-gradient(to right,#F5BD01,#EE8903);
        font-size: 30px;
        font-weight: 600;
        margin: 0 0 12px;
        display: block;
        -webkit-background-clip: text;
        -moz-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        -moz-text-fill-color: transparent;
        text-fill-color: transparent;
    }

        .counter .counter-value:after {
            content: '';
            background: linear-gradient(to right,#F5BD01,#EE8903);
            height: 2px;
            width: 40%;
            margin: 3px auto 0;
            display: block;
            clear: both;
        }

    .counter h3 {
        color: #000;
        font-size: 20px;
        font-weight: 700;
        text-transform: capitalize;
        margin: 0;
    }

    .counter.purple .counter-icon {
        background-color: #6F27B2;
    }

    .counter.purple .counter-value {
        background: linear-gradient(to right,#B874ED,#9641D7);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

        .counter.purple .counter-icon:before,
        .counter.purple .counter-value:after {
            background: linear-gradient(to right,#B874ED,#9641D7);
        }

    .counter.green .counter-icon {
        background-color: #3DA934;
    }

    .counter.green .counter-value {
        background: linear-gradient(to right,#A0EA63,#3cbf28);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

        .counter.green .counter-icon:before,
        .counter.green .counter-value:after {
            background: linear-gradient(to right,#A0EA63,#3cbf28);
        }

    .counter.blue .counter-icon {
        background-color: #005DCE;
    }

    .counter.blue .counter-value {
        background: linear-gradient(to right,#27A3FB,#0170F4);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

        .counter.blue .counter-icon:before,
        .counter.blue .counter-value:after {
            background: linear-gradient(to right,#27A3FB,#0170F4);
        }

@media screen and (max-width:990px) {
    .counter {
        margin-bottom: 40px;
    }
}
/*end counter*/
/*team section*/
#team {
    margin-top: 100px;
    margin-bottom: 100px;
}

.our-team {
    text-align: center;
}

    .our-team .pic {
        position: relative;
        overflow: hidden;
    }

        .our-team .pic:after {
            content: "";
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            background: linear-gradient(to right, rgba(32, 84, 139, 0.5), rgba(236, 236, 1, 0.4));
            opacity: 0;
            transition: all 0.4s ease 0s;
        }

    .our-team:hover .pic:after {
        opacity: 1;
    }

    .our-team .pic img {
        width: 100%;
        height: auto;
        transition: all 0.4s ease 0s;
    }

    .our-team:hover img {
        transform: scale(1.8,1.8);
    }

    .our-team .social-link {
        width: 80%;
        position: absolute;
        top: 80%;
        left: 10%;
        padding: 8px 0;
        margin: 0;
        list-style: none;
        text-align: center;
        border: 2px solid #fff;
        opacity: 0;
        transform: scale(0.8);
        z-index: 1;
    }

    .our-team:hover .social-link {
        opacity: 1;
        transform: scale(1);
        transition: all 0.4s ease 0s;
    }

    .our-team .social-link li {
        display: inline-block;
        margin: 0 5px;
    }

        .our-team .social-link li a {
            display: inline-block;
            font-size: 19px;
            color: #fff;
        }

            .our-team .social-link li a:hover {
                text-decoration: none;
            }

    .our-team .post {
        display: block;
        font-size: 12px;
        color: #808080;
        margin-top: 15px;
        text-transform: uppercase;
    }

    .our-team .team-title {
        font-size: 16px;
        font-weight: bold;
        color: #222;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin: 8px 0 0 0;
    }

        .our-team .team-title:after {
            content: "";
            display: block;
            width: 20%;
            margin: 15px auto;
            border-bottom: 1px solid #222;
        }

    .our-team .description {
        font-size: 14px;
        color: #666;
        line-height: 25px;
    }

@media screen and (max-width: 990px) {
    .our-team {
        margin-bottom: 25px;
    }
}
/*end team section*/
/*documents*/
#documents {
    margin-top: 5rem;
    margin-bottom: 5rem;
    background-image: url('../images/slider_bg_1.png');
}
/*business page*/
#business_plan {
    margin-top: 50px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('../images/slider_bg_1.png');
}

    #business_plan h2 {
        text-align: center;
        margin-top: 0;
        font-style: normal;
        font-weight: 500;
        font-size: 42px;
        display: block;
        color: #000000;
        font-weight: 900;
        padding-bottom: 50px;
    }

    #business_plan h5 {
        text-align: center;
        margin-top: 0;
        font-style: normal;
        font-size: 30px;
        display: block;
        color: #00000087;
        font-weight: 900;
        padding-bottom: 50px;
    }

    #business_plan h4 {
        text-align: center;
        margin-top: 0;
        font-style: normal;
        font-size: 40px;
        display: block;
        font-weight: 900;
        padding-bottom: 24px;
        animation: blinker 1.5s step-end infinite;
        background: -webkit-linear-gradient( #ffbc11, #ffbc11);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

#income_table {
    margin-top: 100px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('../images/slider_bg_1.png');
    margin-bottom: 100px;
}

.thead-gradient {
    padding: 12px 7px;
    vertical-align: middle;
    color: white;
    background: linear-gradient(90deg, rgb(179 38 104) 0%, rgb(106 68 106) 17%, rgb(98 21 37) 35%, rgb(82 27 75 / 98%) 57%, rgb(96 42 92) 79%, rgb(28 1 28) 100%);
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

#income {
    margin-top: 50px;
    background-image: url('../images/background.png');
}

    #income h2 {
        text-align: center;
        margin-top: 0;
        font-style: normal;
        font-size: 30px;
        display: block;
        color: #000000;
        font-weight: 900;
        padding-bottom: 70px;
    }

    #income i {
        text-align: center;
        margin-top: 0;
        font-style: normal;
        font-size: 40px;
        display: block;
        font-weight: 900;
        padding-bottom: 50px;
        background: -webkit-linear-gradient( #ffbc11, #ffbc11);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    #income h4 {
        text-align: center;
        font-size: 30px;
        font-weight: 700;
        padding-top: 10px;
        font-family: 'Abyssinica SIL', serif;
    }

    #income p {
        line-height: 1.61em;
        font-weight: 400;
        font-size: 16px;
        text-align: center;
        font-family: 'Abyssinica SIL', serif;
    }

.income_card {
    border: 0;
    border-radius: 0.1875rem;
    display: inline-block;
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    box-shadow: 0 5px 25px 0 rgb(0 0 0 / 20%);
}
/*contact page*/
#contact_info {
    margin-top: 100px;
    margin-bottom: 100px;
    background-image: url('../images/slider_bg_1.png');
    z-index:-1;
}

    #contact_info .contact_card {
        text-align: center;
        border: 5px solid #EEF2F6;
        box-shadow: 1px 2px 3px #eef2f64a;
        padding: 50px 25px;
        background: #00ffff00;
        backdrop-filter: blur(2px);
    }

.contact_card h2 {
    font-family: "Exo", sans-serif;
    font-weight: 700;
    color: #222;
    font-size: 23px;
}

.contact_card p {
    font-size: 18px;
    color: #222;
    padding-top: 10px;
    color: #545050
}

.contact_card i {
    color: #ffbc11;
    font-size: 35px;
    padding-bottom: 20px;
}

#contact {
    margin-top: 100px;
    margin-bottom: 100px;
}

    #contact h3 {
        font-size: 25px;
        font-weight: 700;
    }

    #contact p {
        padding-top: 10px;
        padding-bottom: 10px;
        font-weight: 600;
        font-size: 18px
    }

@media screen and (max-width:425px) {
    .banner_arrow {
        display: none;
    }

    .banner_content h2 {
        font-size: 36px;
        line-height: 46px;
        margin-left: 29px;
    }

    .banner_content p {
        font-size: 16px;
        text-align: justify;
        padding: 19px;
    }

    .banner_content {
        padding-top: 112px;
    }

        .banner_content a {
            margin-left: 133px;
            text-align: center;
        }

    element.style {
    }

    #banner {
        height: 898px;
    }

    .about_img {
        width: 100%;
        margin-top: 41px;
    }

    #about {
        margin-top: 100px;
    }

    .about {
        margin-top: 58px;
    }

        .about p {
            font-size: 15px;
            padding: 5px;
        }

    #about a {
        margin-left: 133px;
    }

    .about h4 {
        padding-left: 5px;
        font-size: 21px;
        padding-bottom: 5px;
        padding-top: 46px;
    }

    #packges a {
        font-weight: 600;
        margin-left: 132px;
    }

    #packges .order1 {
        margin-left: -29px;
        padding: 8px 6px;
    }

    #packges .order2 {
        margin-left: -21px;
        padding: 12px 8px;
    }

    #packges .order3 {
        margin-left: -21px;
        padding: 8px 6px;
    }

    #basic {
        padding-left: 14px;
    }

    .work .work_img {
        height: 86%;
        margin-top: 4px;
    }

    .work {
        height: 203px;
    }
    /*    about page*/
    #about_banner {
        height: 299px;
    }

    #about_page h2 {
        padding-left: 105px;
    }

    #about_banner h2 {
        margin-left: 6rem;
        margin-top: 2rem;
    }
}
