* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary-color: #fe8905;
    --secondary-color: #0d4059;
    --white: #fff;
    --black: #000;
}
.navbar-toggler{
    background-color: #fff;
}
img {
    max-width: 100%;
}
.fs-80 {
    font-size: calc(50px + (80 - 50) * ((100vw - 300px) / (1920 - 300)))
}
.fs-60 {
    font-size: calc(45px + (60 - 45) * ((100vw - 300px) / (1920 - 300)))
}
.fs-55 {
    font-size: calc(40px + (55 - 40) * ((100vw - 300px) / (1920 - 300)))
}
.fs-50 {
    font-size: calc(36px + (50 - 36) * ((100vw - 300px) / (1920 - 300)))
}
.fs-40 {
    font-size: calc(32px + (40 - 32) * ((100vw - 300px) / (1920 - 300)))
}
.fs-36 {
    font-size: calc(28px + (36 - 28) * ((100vw - 300px) / (1920 - 300)))
}
.fs-30 {
    font-size: calc(24px + (30 - 24) * ((100vw - 300px) / (1920 - 300)))
}
.fs-26 {
    font-size: calc(22px + (26 - 22) * ((100vw - 300px) / (1920 - 300)))
}
.fs-24 {
    font-size: calc(20px + (24 - 20) * ((100vw - 300px) / (1920 - 300)))
}
.fs-22 {
    font-size: calc(18px + (22 - 18) * ((100vw - 300px) / (1920 - 300)))
}
.fs-20 {
    font-size: calc(18px + (20 - 18) * ((100vw - 300px) / (1920 - 300)))
}
.fs-18 {
    font-size: calc(16px + (18 - 16) * ((100vw - 300px) / (1920 - 300)))
}
.fw-500 {
    font-weight: 500;
}
.fw-600 {
    font-weight: 600;
}
.fw-700 {
    font-weight: 700;
}
.heading {
    color: var(--primary-color);
}
.heading2 {
    color: var(--secondary-color);
}
.btns {
    color: var(--white);
    text-decoration: none;
    padding: 8px 14px;
    display: inline-block;
    font-size: 17px;
    font-weight: 500;
    border-radius: 5px;
    margin-left: 10px;
    background-color: var(--primary-color);
    transition: 0.5s;
}
.btns:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* top-section */
.top-section{
    background: url("../image/bg-1.jpeg");
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

/* Navbar css */
.header {
    padding: 0;
}
.navbar{
    background-color: #fff;
    border-radius: 10px;
}
.navbar-expand-lg .navbar-collapse {
    justify-content: end;
}
.nav-link.active {
    color: #fe8905 !important;
    font-size: 18px;
    font-weight: 500;
}
.nav-link {
    color: #222222;
    margin: 0 10px;
    font-size: 18px;
    font-weight: 500;
}
.nav-link:hover {
    color: #ff6d44;
}

/* Banner section  */
.banner {
    padding: 80px 0;
    color: var(--black);
}
.banner h1 {
    font-weight: 700;
    color: var(--secondary-color);
}

/* about section  */
.about {
    position: relative;
    overflow: hidden;
    background-color: #efefef;
    margin: auto;
    padding: 60px 0;
}
.about-text h2 {
    margin-bottom: 25px;
}
.about-text p {
    text-align: justify;
}

/* counter */
.item .d-flex {
    margin-right: 10px;
}
.item{
    background-color: #fff;
    box-shadow: 0 0 10px #ddd;
    padding: 5px 10px 10px;
}
.number {
    color: var(--primary-color);
    margin-bottom: 0;
}

/* services  */
.services {
    position: relative;
    padding: 50px 0;
}
.service-div {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: 0.5s;
}
.service-wrap {
    text-align: center;
    position: relative;
    height: 100%;
    width: 100%;
    transition: 0.5s;
}
.service-wrap:hover .serv_img img{
    transform: rotate(10deg) scale(1.3);

}
.serv_img img{
    transition: 0.5s;
}
.serv_img {
    position: relative;
    overflow: hidden;
    border: 2px solid var(--primary-color);
}
.service_txt{
    position: relative;
    padding: 40px 20px 20px;
    background-color: #fff;
    box-shadow: 0 0 10px #ddd;
}
.service_name {
    position: absolute;
    top: -24px;
    padding: 6px;
    width: 70%;
    left: 0;
    right: 0;
    background: #fff;
    margin: auto;
    box-shadow: 0 0 10px #ddd;
}

/* Why Choose Us  */
.features {
    position: relative;
    padding: 0 0 80px;
}
.feature_wrap{
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 10px 10px #ddd;
}
.single-feature {
    position: relative;
    display: flex;
}
.feature-icon img {
    width: 100px;
}


/* business-steps  */
.business-steps {
    position: relative;
    background-image: url("../image/bg-2.jpg");
    background-size: cover;
    padding: 50px 0;
}
.single-step {
    background-color: #ffffff52;
    box-shadow: 0 0 10px #ddd;
    border-radius: 15px;
    padding: 20px 44px;
    height: 100%;
}
.single-step:hover .step-img{
    animation-play-state: paused;
}
.single-step:hover .step-img img{
    animation-play-state: paused;
}
.step-img{
    border-radius: 50%;
    padding: 10px;
    border: 2px dashed var(--secondary-color);
    display: table;
    margin: 10px auto;
    animation: rotateCircle 10s linear infinite;
}
@keyframes rotateCircle{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}
.step-img img{
    border-radius: 50%;
    animation: rotateCircleanticlockwise 10s linear infinite;
}
@keyframes rotateCircleanticlockwise{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(-360deg);
    }
}

/* Paltform Section */
.platform {
    position: relative;
    padding: 50px 0;
}
.single-platform {
    padding: 20px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    border: 2px solid #ededed;
    border-radius: 4px;
    transition: 0.5s;
    z-index: 2;
}
.single-platform:hover {
    transform: translateY(-10px);
}
.single-platform-head {
    margin-bottom: 25px;
}
.process2-img-1 {
    width: 50px;
    height: 50px;
    opacity: 0.3;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.process2-content h3 {
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 10px;
}

/* Footer section  */
.footer {
    position: relative;
    padding: 30px 0;
    background-color: #0d4059;
    color: #fff;
}
.foot-logo img {
    margin-bottom: 20px;
    max-width: 100%;
}
.social-icons span a {
    text-decoration: none;
    padding: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.social-icons span {
    display: inline-block;
    margin: 0 2px;
    border-radius: 50%;
    background-color: var(--primary-color);
    transition: 0.4s;
}
.social-icons span:hover {
    background-color: var(--secondary-color);
    border-radius: 10%;
}
.social-icons span a i {
    font-size: 18px;
    color: #fff;
}
.foot-link ul {
    padding: 0;
}

.foot-link ul li {
    display: inline-block;
    list-style: none;
    margin: 10px 8px;
}

.foot-link ul li a {
    position: relative;
    background-color: #fff;
    border-radius: 5px;
    padding: 7px 15px;
    font-weight: 600 !important;
    color: #0d4059;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
}
.foot-link ul li a:hover{
    color: #fe8905;
}

@media screen and (min-width: 992px) {
    .left-padding {
        padding-left: 80px;
    }
}
.bottom-foot {
    position: relative;
    padding: 10px;
    background-color: #105170;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}

.bottom-foot a {
    text-decoration: none;
    color: #fff;
    font-weight: 400;
}

@media screen and (max-width: 575px) {
    .logo {
        width: 120px;
    }

    .btns {
        padding: 6px 22px;
        font-size: 16px;
        margin-left: 5px;
    }
}