* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

a,
li,
ul,
p {
    list-style: none;
    text-decoration: none;
    padding: 0px;
    margin: 0px;
}

body {
    font-family: 'Roboto', sans-serif;
}

html {
    scroll-behavior: smooth;
}

.section-gap {
    padding: 50px 0px;
}

.sidebar-open {
    overflow: hidden;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}

.sidebar-open .overlay {
    opacity: 1;
    visibility: visible;
}

.header {
    padding: 5px 0;
    background-color: #0c86d4;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}

.fixed-top.scrolled {
    background-color: #0c86d4 !important;
    transition: background-color 200ms linear;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 5px 5px 0px;
}

.fixed-top {
    position: sticky;
}

.logo img {
    height: 50px;
}

.row-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.nav-list {
    display: flex;
    align-items: center;
}

.nav-list li {
    padding: 0 15px;
}

.nav-list li a {
    color: #fff;
    font-size: 16px;
    position: relative;
    display: block;
    text-transform: capitalize;
    font-weight: 400;
}

.nav-list li a:hover {
    color: #f3090c;
}

.nav-list li a::after {
    content: "";
    background-color: #f3090f;
    width: 0;
    height: 2px;
    position: absolute;
    left: 0;
    top: 40px;
    transition: all 0.3s linear;
}

.nav-list li a:hover::after {
    width: 100%;
}

.nav-list li.active a::after {
    width: 100%;
}

.nav-list li.with-submenu {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.nav-list li.with-submenu>a {
    margin-right: 10px;
}

/*.nav-list li.with-submenu::after {
content: "";
border-bottom: 2px solid #000;
border-right: 2px solid #000;
position: absolute;
width: 5px;
height: 5px;
transform: rotate(45deg);
right: 15px;
transition: all 0.3s;
}*/

.nav-list li.with-submenu:hover::after {
    transform: rotate(225deg);
    margin-top: 10px;
}

.nav-list li.with-submenu .submenu {
    position: absolute;
    left: 100%;
    top: 160%;
    background: #ffffff;
    border-radius: 10px;
    transform: translateX(-50%);
    box-shadow: 2px 2px 1px 2px #ccc;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    width: 250px;
}

.nav-list li.with-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
}

.nav-list li.with-submenu .submenu li {
    padding: 0;
}

.nav-list li.with-submenu .submenu a {
    color: #000000;
    display: block;
    padding: 8px 15px;
    transition: all 0.3s;
}

.nav-list li.with-submenu>a {
    position: relative;
    z-index: 1;
}

.hamburger {
    display: none;
    z-index: 99;
}

.hamburger .line {
    width: 25px;
    height: 1.5px;
    background-color: #000;
    display: block;
    margin: 5px 0;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger .line:nth-child(2) {
    width: 15px;
}

.hamburger:hover {
    cursor: pointer;
}

.hamburger.is-active .line {
    background-color: #311432;
}

.hamburger.is-active .line:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active .line:nth-child(1) {
    -webkit-transform: translateY(6.5px) rotate(45deg);
    -ms-transform: translateY(6.5px) rotate(45deg);
    -o-transform: translateY(6.5px) rotate(45deg);
    transform: translateY(6.5px) rotate(45deg);
}

.hamburger.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-6.5px) rotate(-45deg);
    -ms-transform: translateY(-6.5px) rotate(-45deg);
    -o-transform: translateY(-6.5px) rotate(-45deg);
    transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 991px) {
    .logo img {
        height: 35px;
    }
    .header {
        padding: 10px 0;
    }
    .hamburger {
        display: block;
        position: fixed;
        right: 20px;
    }
    .nav-wrap {
        position: fixed;
        top: 0;
        right: -100%;
        transform: translateX(100%);
        background-color: #ffffff;
        transition: all 0.5s linear;
        max-width: 300px;
        width: 100%;
        height: 100%;
        box-shadow: 2px -5px 5px 3px #ccc;
        opacity: 0;
        visibility: hidden;
        z-index: 0;
    }
    .nav-wrap.is-open {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        right: 0;
        z-index: 9;
    }
    .nav-list {
        flex-direction: column;
        align-items: unset;
        opacity: 0;
        visibility: hidden;
        transition-delay: 0.5s;
        transition-duration: 1s;
        transition-property: all;
        padding: 10px;
    }
    .nav-wrap.is-open .nav-list {
        opacity: 1;
        visibility: visible;
    }
    .nav-list li {
        padding: 7px 10px;
    }
    .nav-list li a {
        color: #311432;
        text-align: left;
        display: inline-block;
        padding: 2px 0;
    }
    .nav-list li a::after {
        background-color: #311432;
    }
    .nav-list li.with-submenu {
        display: block;
    }
    .nav-list li.with-submenu::after {
        border-color: #311432;
        right: 10px;
        top: 12px;
    }
    .nav-list li.with-submenu:hover::after {
        transform: rotate(45deg);
        margin-top: 0;
    }
    .nav-list li.with-submenu.is-open::after {
        transform: rotate(225deg);
        margin-top: 5px;
    }
    .nav-list li.with-submenu .submenu {
        position: static;
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border-radius: 0;
        border-top: 1px solid #ccc;
        display: none;
        transition: auto;
        margin: 10px 0;
    }
    .nav-list li.with-submenu .submenu li {
        padding: 7px 10px;
    }
    .nav-list li.with-submenu .submenu li:hover a {
        background-color: transparent;
    }
    .nav-list li.with-submenu .submenu li a {
        display: inline-block;
        padding: 2px 0;
    }
    .nav-list li.with-submenu .submenu li a::after {
        display: block;
    }
}

.slider span.prev-icon i,
span.next-icon i {
    font-size: 30px;
    background: #000;
    color: #fff;
    padding: 5px 10px;
}

.section_title {
    text-align: center;
    font-size: 40px;
    text-transform: capitalize;
    font-style: italic;
}

/*About section start*/

.about-us {
    position: relative;
}

.about-us-left img {
    height: 400px;
}

.about-us-left {
    text-align: center;
}

.about-us .tp-about-man {
    position: absolute;
    right: 110px;
    bottom: 50px;
    z-index: -1;
}

.about-us .about-us-right .about-content h2 {
    color: #000;
    font-size: 25px;
    text-transform: capitalize;
    font-weight: 600;
}

.about-us .about-us-right .about-content h4 {
    color: #000;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 20px 0px;
}

.about-us .about-us-right .about-us-right-content {
    font-size: 16px;
    font-weight: 400;
    text-align: justify;
    line-height: 30px;
    color: #777;
    margin-bottom: 30px;
}

.about-us .about-us-right ul li {
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 500;
    color: #000;
    margin-bottom: 10px;
}

.about-us .about-us-right ul li i {
    color: #009ade;
    margin-right: 10px;
}

.about-us .about-us-right ul {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-us .about-us-right .about-contact a {
    background: #0c87d4;
    color: #fff;
    padding: 12px 12px;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: capitalize;
    border-radius: 5px;
    transition: all 0.5s;
}

.about-us .about-us-right .about-contact a:hover {
    background: #ef0b12;
    color: #fff;
    transition: all 0.5s;
}

.shake {
    animation: shake 9s ease infinite;
}

@keyframes shake {
    0%,
    100% {
        transform: translateX(0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-10px);
    }
    20%,
    40%,
    60%,
    80% {
        transform: translateX(10px);
    }
}

/*About section End*/

/*service section start*/

.our-services {
    background: #0b87d240;
}

.our-services .services-section .card {
    text-align: center;
    position: relative;
    cursor: pointer;
    background: #fff;
    border-radius: 20px;
    z-index: 10;
    transition: transform 0.8s;
    min-height: 270px;
    margin-top: 50px;
}

.services-section .card .icon {
    width: 80px;
    height: 80px;
    background: #fff;
    align-items: center;
    justify-content: center;
    display: flex;
    font-size: 40px;
    border-radius: 50%;
    color: #0c86d5;
    border: 5px solid #0c86d5;
    margin: -30px auto 0;
    transition: transform 1s;
}

.services-section .card h2 {
    height: 35px;
    width: 80%;
    text-align: center;
    font-size: 22px;
    text-transform: uppercase;
    margin: 10px auto;
    position: relative;
    background: #fff;
    line-height: 35px;
    font-weight: 500;
}

.services-section .card h2:after {
    content: '';
    width: 40px;
    height: 30px;
    background: linear-gradient(to right, #0c87d4, #f4070b);
    position: absolute;
    right: -5px;
    top: -5px;
    z-index: -1;
}

.services-section .card h2:before {
    content: '';
    width: 40px;
    height: 30px;
    background: linear-gradient(to right, #0c87d4, #f4070b);
    position: absolute;
    left: -5px;
    bottom: -5px;
    z-index: -1;
}

.services-section .card p {
    font-size: 14px;
    margin: 20px 20px;
    text-align: justify;
    font-weight: 400;
}

.services-section .card:hover {
    transform: translateY(-20px);
}

.services-section .card:hover .icon {
    transform: rotate(360deg);
    color: #ee0b0f;
}

/*service section End*/

/*our skils section Start*/

.skills {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 400px;
    gap: 20px;
    position: relative;
    justify-content: center;
    align-items: center;
    transition: 1s;
}

.skills-each {
    background: #f1f3f6;
    box-shadow: inset 0 0 5px rgba(55, 84, 170, 0), inset 0 0 10px rgba(255, 255, 255, 0), 5px 5px 9px rgba(55, 84, 170, 0.15), -5px -5px 11px white, inset 0px 0px 2px rgba(255, 255, 255, 0.2);
    transition: box-shadow 0.2s ease-in-out;
    height: 250px;
    width: 250px;
    border-radius: 30px;
    border: 5px solid #eaeef5;
}

.skills:hover .skills-each {
    box-shadow: inset 4px 4px 7px rgba(55, 84, 170, 0.15), inset -4px -4px 10px white, 0px 0px 2px rgba(255, 255, 255, 0.2);
    transition: box-shadow 0.2s ease-in-out;
}

.box {
    padding: 16px;
}

.skills-box {
    text-align: right;
}

.content i {
    font-size: 40px;
    margin-bottom: 10px;
}

.content h2 {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 600;
    color: #000;
}

.content p {
    font-size: 14px;
    color: #777;
    font-weight: 400;
    text-align: justify;
}

.skills-center .box h2 {
    font-size: 25px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
}

.skills-center {
    position: absolute;
    height: 160px;
    width: 160px;
    background: #f1f3f6;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border-radius: 108px;
    box-shadow: inset 0 0 5px rgba(55, 84, 170, 0), inset 0 0 10px rgba(255, 255, 255, 0), 5px 5px 9px rgba(55, 84, 170, 0.15), -5px -5px 11px white, inset 0px 0px 2px rgba(255, 255, 255, 0.2);
    transition: box-shadow 0.2s ease-in-out;
    border: 10px solid #e8edf5;
}

.skills-center .box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.our-skillss {
    justify-content: center;
    display: flex;
    align-items: center;
}

/*download Section start*/

.download-app {
    position: relative;
    margin: 50px 0px;
    background: #0b87d240;
}

.download-app-right {
    text-align: center;
}

.download-app-right img {
    width: 60%;
}

.download-app-left-content h2 {
    font-size: 25px;
    font-weight: 600;
    text-transform: capitalize;
    color: #000;
}

.download-app-left-content p {
    font-size: 15px;
    text-transform: capitalize;
    font-weight: 400;
    text-align: justify;
    line-height: 30px;
    margin: 0px 0px 30px;
    color: #000;
}

/*download SECTION End*/

/*counter bar start*/

.counter-status {
    text-align: center;
}

.counter-status img {
    height: 50px;
    margin-bottom: 10px;
}

.counter-status h2 {
    font-size: 25px;
    font-weight: 600;
    color: #000;
}

/*counter bar End*/

/*our-partner start*/

.our-partner img {
    height: 100px;
    width: 100px;
    object-fit: cover;
}

/*our-partner End*/

/*footer start*/

.footer_wizer h3 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 30px;
}

.footer_content ul.info {
    padding: 0px;
    margin: 0px;
}

.footer_content ul.info li {
    margin-bottom: 20px;
}

.footer_content ul.info li a {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
}

.footer_content ul.info li a i {
    margin-right: 10px;
    font-size: 20px;
}

.footer_wizer ul.quick_links {
    padding: 0px;
    margin: 0px;
}

.footer_wizer ul.quick_links li {
    margin-bottom: 20px;
}

.footer_wizer ul.quick_links li a {
    font-size: 16px;
    text-transform: capitalize;
    color: #fff;
    font-weight: 400;
    transition: all 1s;
}

.footer_content ul.social_media_icon {
    margin: 0px;
    padding: 0px;
}

.footer_content ul.social_media_icon li {
    display: inline-block;
    margin-right: 10px;
}

.footer_content ul.social_media_icon li a {
    background: #fff;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50px;
    transition: all 0.3s;
    display: block;
}

.footer_content ul.social_media_icon li a {
    font-size: 15px;
}

.copyright {
    text-align: center;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    border-top: solid 1px #fff;
    margin-top: 10px;
    padding-top: 10px;
}

.footer_content ul.info li a:hover {
    color: #f40c07;
}

.footer_wizer ul.quick_links li a:hover {
    color: #f40c07;
    transition: all .2s;
}

.footer_content ul.social_media_icon li a:hover {
    background: #f4080e;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #fff;
    transition: all 0.3s;
}

/*footer End*/

#button-top {
    display: inline-block;
    background-color: #FF9800;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

#button-top::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 50px;
    color: #fff;
}

#button-top:hover {
    cursor: pointer;
    background-color: #333;
}

#button-top:active {
    background-color: #555;
}

#button-top.show {
    opacity: 1;
    visibility: visible;
}

footer.main_footer {
    background: url(../img/footer-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background: #0c86d4;
}

.copyright a:hover {
    color: #f4090d;
}

.copyright a {
    color: #000;
}