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

:root {
    --headingcolor: #ff384b;
    --white-color: white;
    --bg-color: #1a417a;
    --background-color: #edf3f6;
}

a {
    text-decoration: none !important;
}

a:hover {
    color: var(--white-color);
}

img {
    max-width: 100%;
}

.header {
    background-color: #fff;
    overflow: hidden;
}

a.navbar-brand img {
    width: 200px;
}

li.nav-item {
    display: flex;
    margin: 0 25px;
    align-items: center;
    justify-content: center;
}

a.nav-link.active {
    font-size: 18px;
    font-weight: 700;
    color: #1a417a !important;
    transition: 0.3s;
}

a.nav-link.active:hover {
    color: #ff384b !important;
}

a.nav-link {
    font-size: 18px;
    font-weight: 700;
    color: #1a417a;
    transition: 0.3s;
}

a.nav-link:hover {
    color: #ff384b !important;
}

.custom-btn {
    font-weight: 500;
    color: var(--white-color);
    background-color: #ff384b;
    padding: 10px 15px;
    border-radius: 10px;
    transition: 0.4s;
}

.custom-btn:hover {
    transform: scale(1.1);
    background-color: #ff384b;
    color: #fff;
}

/* banner section start */
.banner-section {
    padding: 50px 0;
    background-color: var(--background-color);
    overflow: hidden;
}

.bnr-txt h1 {
    font-weight: 700;
    color: #ff384b;
    margin-bottom: 10px;
}

.start-btn {
    display: inline-block;
    margin-top: 5px;
}

/* bannner section end */


/* about section start */
.about-section {
    padding: 50px 0;
    overflow: hidden;
}

.abt-txt h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--headingcolor);
}

/* about section end */

/* counter section start */

.counter-row .col-lg-3 {
    padding: 0 5px !important;
}

.projectFactsWrap .item {
    width: 100%;
    height: 100%;
    text-align: center;
    border-radius: 15px;
}

.counter-section {
    background-image: url("../image/counter-bg.jpg");
    padding: 50px 0;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.projectFactsWrap .item:nth-child(2) {
    background: aliceblue;
}

.projectFactsWrap .item:nth-child(3) {
    background: aliceblue;
}

.projectFactsWrap .item:nth-child(4) {
    background: aliceblue;
}

.projectFactsWrap .item p.number {
    font-size: 40px;
    padding: 0;
    font-weight: 700;
    display: inline-block;
    color: #ffffff;
    font-family: cursive;
}

.projectFactsWrap .item p {
    color: #ffffff;
    font-size: 22px;
    margin: 0;
    padding: 10px;
}


span.symbol {
    display: inline-block;
    color: #ffffff;
    font-size: 35px;
    font-weight: bold;
}

.projectFactsWrap .item i {
    vertical-align: middle;
    font-size: 50px;
    color: rgba(255, 255, 255, 0.8);
}


@media (max-width: 786px) {
    .projectFactsWrap .item {
        flex: 0 0 50%;
    }
}

/* counter section end */

/* Service section start */

.service-section {
    padding: 60px 0;
    background: whitesmoke;
    overflow: hidden;
    box-sizing: border-box;
}

.service-heading h6 {
    color: #1a417a;
}

.service-heading h3 {
    color: #ff384b;
    font-size: 32px;
    font-weight: 700;
}

.service-wrap img {
    width: 90px;
    margin: 10px 0;
    transition: 0.4s;
}

.service-wrap h4 {
    color: #ff384b;
    font-weight: 700;
    font-size: 26px;
    margin: 10px 0;
    transition: 0.4s;
}

.service-wrap {
    position: relative;
    padding: 30px;
    background-color: #fff;
    height: 100%;
    box-shadow: 0px 0px 9px -5px grey;
    transition: 0.5s;
    overflow: hidden;
}
.service-wrap::before{
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    bottom: 0;
    right: 0;
    background-color: #ff384b;
    opacity: 0.5;
    transition: ease 0.8s;
}
.service-wrap:hover::before{
    width: 100%;
    height: 100%;
    opacity: 0;
    top: 0;
    left: 0;
}


/* service section end */

/* Why choose us section start */
.whychoose-section {
    padding: 50px 0;
    overflow: hidden;
}

.choose-wrap {
    position: relative;
    padding: 110px 25px 25px;
    background-color: #fff;
    box-shadow: 0 0 15px #adadad8c;
    height: 100%;
}

.feature_icon {
    position: absolute;
    background: linear-gradient(45deg, #0f64e4, #ff384b);
    left: 0;
    top: 0;
    padding: 15px 20px 20px;
    border-radius: 0 0 60px 44px;
}

.feature_icon img {
    width: 60px;
}


/* Business section start */
.step-wrap {
    width: 300px;
    height: 300px;
    position: relative;
    z-index: 1;
    padding: 40px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background: whitesmoke;
    box-shadow: -15px 7px 10px -10px lightgrey;
    transition: 1s;
}

.step-wrap:hover {
    position: relative;
    z-index: 1;
}

.bussiness-step {
    padding: 50px 0;
}

.wrap2 {
    margin: 70px 0 0;
}

.wrap3 {
    /* margin: 140px 0 0; */
}

.wrapper {
    position: relative;
    padding: 25px 0;
}

img.arrow {
    position: absolute;
    top: 5%;
    left: 25%;
}

img.arrow2 {
    position: absolute;
    top: 8%;
    left: 56%;
    transform: rotate(331deg);
}

.step-wrap h4 {
    color: #ff384b;
}

.step-wrap img {
    margin: 10px 0;
}


/* plateform section start */
.plateform-section {
    padding: 0 0 70px 0;
}

.platefrom-wrap {
    position: relative;
    padding: 15px 20px 15px 70px;
    margin-left: 5%;
    border-radius: 15px;
    transition: 0.4s;
    background-color: #ff384b;
    color: #fff;
}

.plateform_icon {
    background-color: #ffffff;
    border-radius: 50%;
    padding: 15px;
    width: 80px;
    height: 80px;
    position: absolute;
    box-shadow: 0 0 10px #0666ba;
    left: -7%;
    top: 28%;
}

.platefrom-wrap:hover {
    transform: translateY(-10px);
}

.platefrom-wrap img {
    width: 60px;
}


/* footer section start */
.footer-section {
    padding: 50px 0 0;
}

.logo-detail img {
    width: 200px;
    margin: 0 0 10px 0;
}

.footer-section {
    padding: 50px 0 40px;
    background: antiquewhite;
}

.logo-detail img {
    width: 200px;
    margin: 0 0 10px 0;
}

.footer-link h4 {
    color: #1a417a;
}

.footer-link ul {
    list-style-type: none;
    padding-left: 0;
}

.footer-link {
    margin: 0 50px;
}

.footer-link ul li {
    margin: 10px 0;
    transition: 0.5s all ease-in-out;
    position: relative;
    display: block;
}

.footer-link ul li a {
    color: black;
    transition: 0.5s all ease-in-out;
    display: block;
}

.footer-link ul li a:hover {
    color: #1a417a;
    padding-left: 24px;
}

.footer-link ul li:hover i {
    margin-right: 5px;
    color: #1a417a;
    opacity: 1;
    left: 0;
}

.contact-link a i {
    color: #1a417a;
    margin: 10px 10px 10px 0;
    font-size: 22px;
    transition: 0.2s;
}

.contact-link a i:hover {
    color: #1a417a;
    transform: scale(1.1);
}

.footer-link ul li i {
    transition: 0.5s all ease-in-out;
    font-size: 15px;
    position: absolute;
    left: -20px;
    top: 8px;
    opacity: 0;
}


.foot-contact h6 {
    margin-bottom: 0;
}

.foot-contact ul li {
    list-style-type: none;
    margin: 10px 0;
}

.foot-contact ul {
    padding-left: 0;
}

.foot-contact h4 {
    color: #1a417a;
}

.foot-contact ul li a {
    color: black;
    text-decoration: none;

}

.copyrights {
    background-color: #1a417a;
}

.copyrights a {
    color: #fff;
    transition: 0.4s;
}

.copyrights a:hover {
    color: #ddd;
}

/* footer section end */



@media screen and (max-width:1200px) {
    li.nav-item {
        margin: 0 32px;
    }
}

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

    li.nav-item {

        align-items: center;
        justify-content: flex-start;
    }

    .about-section {
        padding: 75px 0;
    }

    .order2 {
        order: 2;
    }

    .step-wrap {
        margin: 25px auto;
    }

    img.arrow {
        position: absolute;
        top: 28%;
        left: 57%;
        transform: rotate(67deg);
    }

    img.arrow2 {
        position: absolute;
        top: 60%;
        left: 57%;
        transform: rotate(67deg);
    }

    .footer-link {
        margin: 0px 50px 0 0;
    }

    .copy-right {
        display: block;
        text-align: center;

    }

    div#aboutpage {
        padding: 0px;
    }
}