:root {
    --first-color: #0075be;
    --second-color: #2a2075;
    --third-color: #00b5ef;
}

body {
    font-family: "Open Sans", sans-serif;
}

.first-color {
    color: var(--first-color);
}

.second-color {
    color: var(--second-color);
}

.img-fluid {
    width: 100%;
}

a {
    text-decoration: none;
    color: var(--first-color);
}

.loader {
    background: linear-gradient(to right, var(--second-color) 50%, transparent 50%);
    animation: spin 1s infinite linear;
}

.loader:before {
    display: block;
    content: '';
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 50%;
}

.preloader {
    position: fixed;
    background: #fff;
    z-index: 99999999;
    width: 100%;
    height: 100%;
}

.preloader .circle {
    display: inline-block;
    width: 100px;
    height: 100px;
    left: 50%;
    top: 42%;
    border-radius: 50%;
    background: transparent;
    box-shadow: 4px -40px 60px 5px rgb(26, 117, 206) inset;
    position: relative;
}

.spin {
    animation: spin 1s infinite linear;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--first-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--first-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--first-color)
}

.text-first {
    color: var(--first-color)!important;
}

.bg-first {
    background: var(--first-color) !important;
}

.bg-success {
    background: #7ED321 !important;
}

.bg-white {
    background: #fff !important;
}

.label-primary {
    background: var(--first-color);
    color: #fff;
}

label.label {
    display: inline-block;
    text-align: center;
    font-size: 0.75rem;
    padding: .2rem .8rem;
}

.label-secondary {
    background: var(--second-color);
    color: #000;
}

.label-info {
    background: #50E3C2;
    color: #fff;
}

.label-success {
    background: #7ED321;
    color: #fff;
}

.label-warning {
    background: #FFAA16;
    color: #fff;
}

.label-danger {
    background: #FF1616;
    color: #fff;
}

.label-light {
    background: #dadada;
    color: #000;
}

.label-dark {
    background: #454545;
    color: #fff;
}

.btn-light {
    background-color: #dadada;
}

.btn-white {
    border-color: var(--first-color);
    color: var(--first-color);
    background-color: #fff;
}

.btn-white:hover {
    background: var(--first-color);
    color: #fff;
}

.btn-active {
    background: #38a638;
    color: #fff;
}

.btn-inactive {
    background: #778899;
    color: #fff;
}

.list-style {
    padding: 0px;
    margin: 0px;
    list-style: none;
}


/* header */

.top-header {
    background: var(--second-color);
}

.list-style {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.contact-dt li {
    display: inline-block;
    padding-right: 43px;
    position: relative;
}

.contact-dt li a {
    color: #fff;
}

.contact-dt li a i {
    color: #fff;
    margin-right: 8px;
    font-size: 16px;
}

.contact-dt li a span {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.contact-dt li:not(:last-child):after {
    content: "";
    height: 5px;
    width: 5px;
    background-color: #8da4a2;
    position: absolute;
    top: 10px;
    right: 14px;
    border-radius: 50%;
}

ul.media-header {
    display: inline-block;
}

ul.media-header li {
    display: inline-block;
}

ul.media-header li a {
    display: inline-flex;
    width: 50px;
    height: 45px;
    border-radius: 0px 0px 0px 0px;
    background-color: #02010100;
    border-style: solid;
    border-width: 0px 1px 0px 0px;
    border-color: #8da4a2;
    align-items: center;
    justify-content: center;
    transition: all .21s ease-in-out;
}

ul.media-header li a i {
    color: #fff;
}

ul.media-header li:first-child a {
    border-left: 1px solid #8da4a2;
}

.text-right {
    text-align: right!important;
}

.btn {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    padding: 18px 28px;
    border-radius: 63px;
    transition: all 520ms ease;
    overflow: hidden;
    text-transform: uppercase;
    position: relative;
    background: transparent;
    color: #fff;
    z-index: 1;
}

.btn:before,
.btn:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    transition: all 520ms ease;
}

.btn:before {
    background-color: var(--first-color);
    transform: translate3D(0, 0, 0);
    z-index: -1;
}

.btn::after {
    background-color: var(--second-color);
    transform: translate3D(0, -100%, 0);
    z-index: -1;
}

.btn:hover:after {
    transition-timing-function: cubic-bezier(.52, 1.64, .37, .66) !important;
    transform: translate3D(0, 0, 0);
    transition: all .5s;
}

.btn:hover {
    color: #fff;
}

.nav-menu {
    align-items: center;
    display: flex;
    flex-direction: row;
    padding: 0 11px;
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.07);
}

.nav-menu li {
    position: relative;
    display: flex;
    align-items: center;
    padding: 18px 15px;
    gap: 5px;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.nav-menu li a {
    position: relative;
    display: inline-block;
    text-align: center;
    z-index: 1;
    color: #0d0d0d;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0.32px;
    transition: all 500ms ease;
}

.navbar-right-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-menu li.active {
    padding: 8px 18px;
    margin: 10px 0;
    border-radius: 100px;
    background: #bfefffb5;
}

.nav-menu li.active a {
    color: var(--first-color);
}

.main-header {
    padding: 0px 0;
}

.main-header .logo-div img {
    width: 115px;
    padding: 9px 0;
}

.nav-menu li .sub-menu {
    left: 0;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    z-index: 10;
    padding: 0;
    width: 257px;
    text-align: left;
    border-radius: 0 0 15px 15px;
    background-color: #fff;
    box-shadow: 0 8px 8px rgba(23, 22, 24, 4%), 0 4px 4px rgba(23, 22, 24, 4%), 0 2px 2px rgba(23, 22, 24, 4%);
    transition: transform .3s cubic-bezier(.175, .885, .32, 1.275);
}

.nav-menu li .sub-menu {
    transform: translate3d(0, 2rem, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
    pointer-events: none;
    padding-top: 10px;
    padding-bottom: 10px;
}

.nav-menu li:hover {}

.nav-menu li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
    z-index: 9999;
}

.nav-menu li .sub-menu li {
    display: block;
    padding: 0 24px;
}

.nav-menu li .sub-menu li a {
    position: relative;
    display: block;
    color: #041b16;
    padding: 10px 0;
    z-index: 2;
    font-size: 15px;
    border-bottom: 1px dashed #e7e7e7;
    text-align: left;
}

.nav-menu li .sub-menu li:hover a {
    color: var(--first-color);
    padding-left: 15px;
}

.nav-menu li .sub-menu li a:before {
    position: absolute;
    content: "";
    left: -5px;
    top: 50%;
    width: 5px;
    height: 5px;
    opacity: 0;
    visibility: hidden;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: all 520ms ease;
}

.nav-menu li .sub-menu li:hover a::before {
    opacity: 1;
    visibility: visible;
    left: 0;
    background-color: var(--first-color);
}

.nav-menu li .sub-menu li:last-child a {
    border-bottom: none;
}

.nav-menu li a i {
    font-size: 12px;
    top: -1px;
    position: relative;
    margin-left: 0px;
}

.nav-menu li:hover a {
    color: var(--third-color);
}

.footer-section {
    padding-top: 100px;
    position: relative;
    background: var(--second-color);
}

.footer-section .f-img1 {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 120px;
}

.footer-section .f-img2 {
    position: absolute;
    top: 0;
    right: 0;
}

.copyright-section {
    background: #1550a7;
    padding: 20px 0;
}

.footer-top {
    padding-bottom: 100px;
    border-bottom: 1px solid #ffffff59;
}

.footer-top h3 {
    color: #fff;
    font-size: 50px;
    margin-bottom: 18px;
}

.footer-bottom {
    padding: 100px 0;
    z-index: 1;
    position: relative;
}

.copyright-section p {
    margin-bottom: 0px;
    color: #fffc;
}

.copyright-section p a {
    color: #fff;
}

.btn.btn2 {
    background-color: #fff;
}

.btn.btn2 {
    background: #fff;
    color: var(--second-color);
}

.btn.btn2:hover {
    color: #fff;
    background: transparent;
    border-color: #fff;
}

.widget-title {
    margin-bottom: 20px;
}

.widget-title h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    position: relative;
    display: inline-block;
    line-height: 1;
}

.widget-title h4:before {
    content: '';
    background: linear-gradient(90deg, #345DB4 0%, #091394 100%);
    content: "";
    height: 2px;
    width: 100%;
    position: absolute;
    bottom: -10px;
    left: 0;
}

.f-menu-list {}

.f-menu-list ul {
    padding: 0px;
}

.f-menu-list ul li {
    list-style: none;
    margin-bottom: 10px;
}

.f-menu-list ul li a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.f-menu-list ul li a i {
    margin-right: 8px;
    transition: all 0.3s ease-in-out;
}

.f-menu-list ul li a:hover i {
    position: relative;
    font-size: 15px;
}

.newsletter p {
    color: #fff;
}

.subscribe-form {
    display: flex;
    margin-top: 25px;
}

.subscribe-form .btn.btn1 {
    background: var(--first-color);
    width: 36%;
    font-size: 13px;
    border-radius: 0px;
    padding: 18px 19px;
    border-top-right-radius: 27px;
    border-bottom-right-radius: 27px;
}

.subscribe-form .form-control {
    padding-left: 20px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-top-left-radius: 27px;
    border-bottom-left-radius: 27px;
}

.media-footer {
    margin-top: 20px;
}

.media-footer li {
    display: inline-flex;
    margin-right: 10px;
}

.media-footer li a {
    background-color: #fff;
    font-size: 16px;
    color: #191f29;
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.media-footer li a i {
    color: var(--first-color);
}

.f-logo img {
    max-width: 194px;
}

.f-img3 {
    position: absolute;
    bottom: 65px;
    left: 0;
    transform: rotate(180deg);
}

.about-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.about-img:after {
    content: '';
    background-color: #1e6ee7;
    mix-blend-mode: multiply;
    height: 1000px;
    width: 425px;
    position: absolute;
    top: -90px;
    right: -150px;
    z-index: -1;
    transform: rotate(55deg);
}

.about-img img {
    position: relative;
    z-index: -11;
    width: 100%;
}

.about-img:before {
    content: '';
    background-color: #1e6ee7;
    mix-blend-mode: multiply;
    height: 1252px;
    width: 596px;
    position: absolute;
    top: 160px;
    right: -25px;
    z-index: -1;
    transform: rotate(55deg);
}

.default-padding {
    padding: 70px 0;
}

.abt-flex {
    max-width: 490px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    row-gap: 15px;
    margin-bottom: 40px;
}

.abt-flex .abt-box {
    display: flex;
    align-items: center;
}

.abt-flex .icon {
    background: linear-gradient(93.22deg, #0e59f247 2.69%, #ffffff00 79.63%);
    height: 90px;
    width: 115px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.abt-flex .icon img {
    width: 90px;
    padding: 23px;
}

.abt-flex .content {
    width: 70%;
    margin-left: 11px;
}

.abt-flex .content h5 {
    font-size: 17px;
    line-height: 23px;
    margin-bottom: 0px;
    color: #021860;
    font-weight: 600;
}

h4.sec-title {
    color: var(--second-color);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
}

.sec-sm-heading {
    position: relative;
    color: #030f20;
    margin-bottom: 9px;
    font-weight: 500;
    font-size: 17px;
    margin-left: 20px;
    width: max-content;
}

.sec-sm-heading:before {
    content: '';
    background: #bfefffb5;
    width: 6px;
    height: 19px;
    position: absolute;
    z-index: -1;
    top: 3px;
    left: -17px;
}

.sec-sm-heading:after {
    content: '';
    background: #bfefffb5;
    width: 6px;
    height: 19px;
    position: absolute;
    z-index: -1;
    top: 3px;
    right: -17px;
}

ul.slick-dots {
    position: absolute;
    left: 50%;
    bottom: 0px;
    padding: 0;
    transform: translate(-50%, 0);
}

ul.slick-dots li {
    margin-right: 6px;
    border-color: #909BA9;
    border: 1px solid #909BA9;
    background: #909BA9;
    border-radius: 50%;
    display: inline-block;
    width: 7px;
    height: 7px;
}

ul.slick-dots li button {
    display: none;
}

ul.slick-dots li.slick-active {
    border-color: var(--second-color);
    border: 1px solid var(--second-color);
    background: var(--second-color);
}

.service-flex {
    display: grid;
    grid-template-rows: repeat(2, 321px);
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 25px;
    /*border: 1px solid #EAEAEA;*/
    border-radius: 15px;
}

.service-flex .service-inner {
    display: flex;
    padding: 62px 36px;
    border: 1px solid#EAEAEA;
    position: relative;
    overflow: hidden;
}

.service-flex .service-inner .icon-part {
    margin-right: 25px;
}

.service-flex .service-inner .icon-part img {
    width: 133px;
}

.service-info {}

.service-info h4 {
    font-size: 24px;
    line-height: 32px;
}

.service-info p {
    color: #828282;
    font-size: 15px;
    line-height: 27px;
    margin-bottom: 41px;
}

.service-btn {
    position: absolute;
    left: 41px;
    bottom: 23px;
    border: 1px solid #091394;
    height: 34px;
    padding: 0 13px;
    font-size: 0;
    line-height: 33px;
    transition: all .3s;
    background-color: #bfefffb5;
    /* background-color: #fff; */
    border-style: solid;
    border-width: 1px;
    border-color: #bfefffb5;
    border-radius: 30px 30px 30px 30px;
}

.service-btn span.service-btn-wrapper {
    position: relative;
    z-index: 2;
    display: inline-block;
}

.service-btn span.service-btn-wrapper span.btn-button {
    font-size: 30px;
    border-radius: 30px;
    transition: all .3s;
    display: inline-block;
    float: right;
}

.service-btn span.service-btn-wrapper span.btn-button i {
    transform: rotate(-45deg);
    display: block;
    transition: all;
    color: var(--first-color);
}

.service-btn span.service-btn-wrapper .button-text {
    opacity: 0;
    color: var(--second-color);
}

.ser-box-no {
    position: absolute;
    bottom: -20px;
    right: -0;
    -webkit-text-stroke: 1px var(--first-color);
    transition: all .3s;
    margin-bottom: 0;
    color: #85a6A600;
    opacity: calc(3 / 10);
    font-size: 96px;
    font-weight: 700;
    line-height: 1em;
}

.service-flex .service-inner:hover .service-btn {
    font-size: 15px;
    padding: 0 8px 0 18px;
    transition: all .3s;
}

.service-flex .service-inner:hover .service-btn span.button-text {
    opacity: 1;
}

.service-flex .service-inner:hover .ser-box-no {
    color: var(--second-color);
    opacity: calc(10 / 10);
}


/*.service-flex .service-inner:nth-child(3),
.service-flex .service-inner:last-child {
    border-right: none;
}

.service-flex .service-inner:nth-child(4),
.service-flex .service-inner:nth-child(5),
.service-flex .service-inner:nth-child(6) {
    border-bottom: none;
}
*/

.service-flex .service-inner:nth-child(1),
.service-flex .service-inner:nth-child(2) {
    border-right: none;
}

.service-flex .service-inner:nth-child(1) {
    border-bottom: none;
}

.default-padding.process-section {
    background: linear-gradient(180deg, var(--second-color) 39.59%, var(--first-color)100%);
    position: relative;
    z-index: 1;
    padding-top: 150px;
    padding-bottom: 150px;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 100%);
}

.sec-sm-heading.text-center {
    margin-left: auto;
    margin-right: auto;
}

.process-card {
    position: relative;
    text-align: center;
}

.default-padding.process-section:before {
    background-color: #fff;
    content: "";
    width: 100%;
    height: 75px;
    position: absolute;
    bottom: -1px;
    left: 0;
    clip-path: polygon(0 100%, 100% 0, 100% 100%, 0% 100%);
}

.process-card .arrow {
    position: absolute;
    top: 20px;
    right: -20%;
}

.process-card .arrow img {}

.process-card .icon {
    background-color: #fff;
    position: relative;
    height: 130px;
    width: 130px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.process-card .icon .number {
    background-color: #1e6ee7;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    border: 5px solid #073b8b;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1111;
}

.process-card .content {
    margin-top: 30px;
}

.process-card .content .title {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.process-card .content p {
    color: #76A0E0;
    max-width: 285px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 0;
}

.process-wrap>div:nth-child(2n+2) {
    margin-top: 60px;
}

.bg-img {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.counter-div {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.counter-div:before {
    border-radius: 20px;
    content: '';
    background-color: #03317691;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.counter-inner {
    z-index: 1;
    position: relative;
    padding: 66px 68px;
}

.counter-div .shapes .shape1 {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
}

.counter-div .shapes .shape2 {
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
}

.counter-ds {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    grid-template-columns: 92px 1fr;
    grid-gap: 20px;
}

.counter-ds .counter-icon {
    max-width: 92px;
    width: 100%;
    height: 92px;
    position: relative;
    z-index: 1;
}

.counter-ds .counter-icon .icon-inner {
    background: rgba(216, 231, 253, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12.5px);
    height: 85px;
    width: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    border-radius: 10px;
}

.counter-ds .counter-icon .shape {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    width: 85px;
    height: 85px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.counter-ds .counter-num h3 {
    color: #fff;
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 1px;
}

.counter-ds .counter-num p {
    margin-bottom: 0px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 2px;
    font-weight: 600;
}

.testimonial-box {
    background-color: #fff;
    box-shadow: 0px 15px 41px rgba(13, 22, 39, 0.08);
    padding: 38px 40px;
    border-radius: 10px;
    margin-bottom: 50px;
}

.testimonial-slider .item {
    margin: 0 12px;
}

.testimonial-box .upper-box {
    margin-bottom: 23px;
    padding-bottom: 23px;
    border-bottom: 1px solid #eaeaea;
    position: relative;
}

.testimonial-box .upper-box .quote-img {
    top: -13px;
    position: absolute;
    right: 0;
}

.testimonial-box .upper-box .customer-details .customer-name {
    font-weight: 600;
    margin-bottom: 1px;
    font-size: 18px;
    color: var(--first-color);
}

.testimonial-box .upper-box .quote-img i {
    color: #bfefffb5;
    font-size: 50px;
}

.testimonial-box .upper-box .rating i {
    color: #fdc22d;
}

.testimonial-box .lower-box p {
    margin-bottom: 0px;
    color: #74787c;
    font-size: 17px;
    line-height: 25px;
}

.banner-img img {
    width: 100%;
    height: auto;
}

.banner-content {
    height: 670px;
    padding: 151px 0;
    position: relative;
    z-index: 9;
    max-width: 926px;
}

.banner-content h2 {
    color: var(--second-color);
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 34px;
}

.banner-content p {
    font-size: 20px;
    color: #828282;
}

.banner-img.con-right .banner-content {
    margin-left: auto;
    text-align: right;
}

.ml-auto {
    margin-left: auto!important;
}

.slick-arrow {
    border-radius: 50%;
    position: absolute;
    left: 14px;
    top: 50%;
    font-size: 21px;
    background: var(--first-color);
    padding: 9px 1px;
    height: 50px;
    width: 50px;
    color: #fff;
    border: 1px solid #fff;
    z-index: 1;
}

.banner-slider .NextArrow.slick-arrow {
    right: 10px;
    left: unset;
}

button.PrevArrow.slick-arrow {
    left: 10px;
}

.banner-slider .slick-arrow:hover {
    background: var(--second-color);
    color: #fff;
    transition: .3s;
}

.contact-box {
    position: relative;
    text-align: center;
    padding: 78px 50px 50px 50px;
    margin-top: 50px;
    border-radius: 10px;
    border: 1px solid #E5E5E5;
    background: #FFF;
}

.contact-box .contact-icon {
    position: relative;
    width: 100px;
    height: 100px;
    font-size: 40px;
    line-height: 100px;
    color: #fff;
    margin-top: -130px;
    margin-bottom: 5px;
    display: block;
    border-radius: 60px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(106deg, var(--first-color) 11.27%, var(--second-color) 88.73%);
}

.contact-box .contact-inner h4 {
    margin-top: 13px;
    font-size: 20px;
}

.contact-box .contact-inner a {
    display: block;
    font-size: 17px;
    color: #091394;
    font-weight: 600;
}

.contact-form {
    border-radius: 20px;
    padding: 36px 46px;
    background: linear-gradient(93.22deg, #2e9ade91 2.69%, #00c1ff40 79.63%);
}

.contact-form h4 {
    color: var(--second-color);
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 10px;
}

.form-control {
    padding: 10px 23px;
    border-radius: 30px;
}

.form-group label {
    font-size: 14px;
    margin-bottom: 5px;
}

.cont-iframe iframe {
    width: 100%;
    height: 447px;
}

section.breadcrumb {
    padding: 20px 0;
    background: linear-gradient(93.22deg, #2e9ade91 2.69%, #00c1ff40 79.63%);
}

.breadcrumb h4.page-name {
    color: var(--second-color);
    font-size: 22px;
    font-weight: 600;
}

.breadcrumbs {
    display: flex;
    border: 1px solid #b3b3b3;
    width: max-content;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 14px;
}

.breadcrumbs a {
    margin-right: 7px;
    color: var(--second-color);
}

.breadcrumbs i {
    margin-right: 8px;
    transform: rotate(340deg);
}

.service-img {
    margin-bottom: 20px;
}

.service-img img {
    border-radius: 20px;
}

.service-details h4 {
    color: var(--second-color);
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 14px;
}

.service-details p {
    color: #393434;
    font-size: 15px;
    line-height: 28px;
    text-align: justify;
}

.service-details ul {
    padding-left: 44px;
    margin-bottom: 20px;
    text-align: justify;
}

.service-details li {
    font-size: 15px;
    color: var(--first-color);
    list-style: none;
    margin-bottom: 10px;
    padding-left: 28px;
    position: relative;
    font-weight: 500;
}

.service-details li:before {
    content: "\f26a";
    position: absolute;
    font-family: 'bootstrap-icons';
    left: 3px;
    color: var(--second-color);
}

.faq-block {}

.faq-div {
    transition: 0.5s ease-out;
    border: 1px solid var(--third-color);
    padding: 15px 22px;
    margin-bottom: 20px;
    border-radius: 11px;
    background: #bfefffb5;
}

.faq-div .title {
    font-weight: 500;
    font-size: 17px;
    color: var(--second-color);
    cursor: pointer;
}

.faq-div .desc {
    margin-top: 17px;
    font-size: 17px;
    color: #000;
    border-top: 1px solid var(--second-color);
    display: none;
    width: 100%;
    padding-bottom: 10px;
    padding-top: 14px;
}

.faq-div #open {
    background: var(--first-color);
    height: 3px;
    margin-top: 12px;
    width: 16px;
    position: relative;
    float: right;
    border-radius: 15px;
}

.faq-div #closed {
    background: var(--first-color);
    height: 16px;
    position: absolute;
    width: 3px;
    top: -6px;
    left: 6.9px;
    border-radius: 15px;
}

.similar-services {
    border-radius: 10px;
    padding: 24px 30px;
    background: linear-gradient(93.22deg, #2e9ade91 2.69%, #00c1ff40 79.63%);
    margin-bottom: 20px;
}

.similar-services h4 {
    color: var(--second-color);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 9px;
}

.similar-services ul.category-list {
    padding: 0px;
    margin: 0px;
}

.similar-services ul.category-list li {
    list-style: none;
    display: flex;
    justify-content: space-between;
    text-align: left;
    position: relative;
    transition: all 0.3s ease-in-out;
    margin: 0;
}

.similar-services ul.category-list li a {
    z-index: 1;
    position: relative;
    transition: all 0.3s ease-in-out;
    padding: 14px 27px;
    width: 100%;
    border-radius: 30px;
    font-weight: 600;
    color: #000;
    border: 1px solid #ffffffb5;
    margin-bottom: 10px;
}

.similar-services ul.category-list li a:before {
    background: linear-gradient(106deg, var(--first-color) 11.27%, var(--second-color) 88.73%);
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    bottom: 0;
    border-radius: 30px;
    left: 0;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.similar-services ul.category-list li:hover a {
    color: #fff;
}

.similar-services ul.category-list li:hover a::before {
    width: 100%;
}

.ser-contact-box {
    border-radius: 11px;
    text-align: center;
    padding: 101px 45px;
    position: relative;
    overflow: hidden;
}

.ser-contact-box h4 {
    position: relative;
    color: #fff;
    line-height: 54px;
    font-size: 39px;
    font-weight: 700;
    z-index: 1;
}

.ser-contact-box:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #0913947d;
    top: 0;
    left: 0px;
}

.ser-contact-box .btn {
    z-index: 9;
}

.contact-float {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999999;
}

.whatsapp-ring {
    position: relative;
    visibility: visible;
    background-color: transparent;
    width: 110px;
    height: 110px;
    cursor: pointer;
    z-index: 11;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transition: visibility .5s;
    left: 0;
    bottom: 0;
    display: block;
}

.whatsapp-ring-circle {
    width: 110px;
    height: 110px;
    top: 0;
    left: 0;
    position: absolute;
    background-color: transparent;
    border-radius: 100%;
    border: 2px solid var(--first-color);
    -webkit-animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
    animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    opacity: .5;
}

.whatsapp-ring-circle-fill,
.whatsapp-ring-img-circle {
    background: #107cb3;
    background: #107cb3;
}

.whatsapp-ring-circle-fill {
    width: 80px;
    height: 80px;
    top: 16px;
    left: 16px;
    position: absolute;
    background-color: var(--first-color);
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
    animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.whatsapp-btn-icon {
    display: flex;
    text-decoration: none;
}

.whatsapp-ring-img-circle .whatsapp-btn-icon i {
    font-size: 21px;
    color: #fff;
}

.whatsapp-ring-img-circle {
    background-color: var(--first-color);
    width: 50px;
    height: 50px;
    top: 31px;
    left: 31px;
    position: absolute;
    background-size: 20px;
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
}

@-webkit-keyframes phonering-alo-circle-anim {
    0% {
        -webkit-transform: rotate(0) scale(.5) skew(1deg);
        -webkit-opacity: .1
    }
    30% {
        -webkit-transform: rotate(0) scale(.7) skew(1deg);
        -webkit-opacity: .5
    }
    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        -webkit-opacity: .1
    }
}

@-webkit-keyframes phonering-alo-circle-fill-anim {
    0% {
        -webkit-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .6
    }
    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        opacity: .6
    }
    100% {
        -webkit-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .6
    }
}

.footer-widget ul.address-list {
    margin-top: 26px;
    margin-bottom: 28px;
}

.footer-widget ul.address-list li a {
    list-style: none;
    display: flex;
    align-items: center;
}

.footer-widget ul.address-list li {
    list-style: none;
    margin-bottom: 12px;
}

.footer-widget ul.address-list li a i {
    color: var(--first-color);
    margin-right: 9px;
    line-height: 0px;
    font-size: 20px;
}

.footer-widget ul.address-list li a span {
    color: #fff;
    font-size: 16px;
}

.contact-form p {
    color: #000;
    font-size: 17px;
    margin-bottom: 20px;
}

.service-details .form-group {
    margin-bottom: 15px;
}

.service-details .form-control {
    padding: 10px 23px;
    border-radius: 10px;
}

.f-logo img {
    max-width: 146px;
}

.blog-item {
    padding: 21px 20px;
    box-shadow: 0 0 15px rgb(0 0 0 / 20%);
    margin-bottom: 19px;
    background-color: #ffffff;
    border-radius: 10px;
}

.blog-item img {
    border-radius: 10px;
}

.blog-item .blog-desc {
    margin-top: 12px;
}

.blog-item .blog-desc .deets ul {
    padding: 0px;
    display: flex;
    justify-content: space-between;
}

.blog-item .blog-desc .deets ul li {
    list-style: none;
}

.blog-item .blog-desc .deets ul li i {
    color: var(--first-color);
    font-size: 14px;
    margin-right: 7px;
}

.blog-item .blog-desc .deets ul li span {
    color: #000;
    font-size: 14px;
}

.blog-item .blog-desc h5 {
    color: var(--second-color);
    font-size: 21px;
    font-weight: 600;
}

.blog-item .blog-desc p {
    margin-bottom: 0px;
    color: #74787c;
    font-size: 14px;
    line-height: 22px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.blog-item .blog-desc .btn.btn1 {
    font-size: 13px;
    margin-top: 13px;
    line-height: 1;
    padding: 13px 28px;
    color: var(--third-color);
}

.blog-item .blog-desc .btn.btn1::before {
    background-color: #bfefffb5;
}

.footer-top .btn.btn2::before {
    background-color: #fff;
}

.blog-item:hover .blog-desc .btn.btn1::after {
    transition-timing-function: cubic-bezier(.52, 1.64, .37, .66) !important;
    transform: translate3D(0, 0, 0);
    transition: all .5s;
}

.br-10 {
    border-radius: 10px !important;
}

.team-div {
    box-shadow: 0 0px 15px rgba(0, 0, 0, 0.07);
    z-index: 1;
    padding: 25px 25px 22px;
    position: relative;
    margin-bottom: 19px;
    background-color: #ffffff;
    border-radius: 20px;
    align-items: self-start;
    display: flex;
}

.team-div .team-img {
    width: 26%;
    text-align: center;
    margin-bottom: 0px;
}

.team-div .team-img img {
    border-radius: 50%;
    border: 1px solid var(--second-color);
    height: auto;
    width: 365px;
}

.team-div .abt-team {
    width: 60%;
    margin-left: 20px;
    padding: 0;
    text-align: left;
}

.team-div .abt-team h4 {
    color: var(--second-color);
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 3px;
}

.team-div .abt-team p {
    margin-bottom: 1px;
    color: var(--first-color);
    font-size: 15px;
}

.team-div .abt-team p.text {
    color: #797979;
    font-size: 14px;
    line-height: 28px;
    text-align: justify;
}

.modalbg {
    position: fixed;
    z-index: 99;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transition: opacity 250ms;
}

.teamModal {
    position: fixed;
    top: 5%;
    left: 35%;
    width: 100%;
    max-width: 600px;
    z-index: 1000;
    transition: all .5s ease-in-out;
}

.modal-inner {
    background: white;
    position: relative;
    transition: all .5s ease-in-out;
    border-radius: 10px;
}

.close-btn {
    position: absolute;
    right: 11px;
    top: 3px;
    z-index: 11;
    cursor: pointer;
}

.close-btn i {
    color: #6e6b6b;
    font-size: 25px;
}

.team-flex {
    display: flex;
    align-items: start;
    padding: 28px 30px;
}

.team-flex img {
    width: 150px;
    height: auto;
    border-radius: 10px;
    border: 1px solid var(--third-color);
}

.team-dt {
    width: 100%;
    margin-left: 20px;
}

.team-dt h4.team-name {
    color: var(--second-color);
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 8px;
}

.team-dt p.designation {
    color: var(--first-color);
    font-size: 15px;
    margin-bottom: 5px;
}

.team-dt p.desc {
    margin-bottom: 0px;
    font-size: 14px;
    line-height: 23px;
}

.desc {
    color: #797979;
    font-size: 15px;
    line-height: 28px;
}

.service-details h5 {
    font-size: 20px;
}

.service-details h6 b {
    font-size: 20px;
    color: var(--first-color);
    font-weight: 600;
}

.service-details h6 {
    color: var(--second-color);
    font-size: 17px;
    font-weight: 600;
}

.process-partner .third_div .process-card .arrow {
    top: unset;
    bottom: -66%;
    transform: rotate(70deg);
    right: -8%;
}

.process-partner .process-card {
    margin-bottom: 30px;
}

.process-partner .process-wrap>div:nth-child(2n+2) {
    margin-top: 0px;
    margin-bottom: 0px;
}

.process-partner .fifth_div .process-card .arrow {
    transform: rotate(178deg);
    top: 46px;
    right: -14%;
}

.process-partner .fourth_div .process-card .arrow {
    transform: rotate(162deg);
    top: 51px;
    right: -15%;
}

.process-partner .process-card .content p {
    font-size: 15px;
}

section.breadcrumb {
    padding: 13px 0;
}

.mr-auto {
    margin-right: auto !important;
}

.process-card .icon.no-img {
    height: auto;
    width: 200px;
}

.process-card .icon.no-img span.number {
    top: -40px;
    right: 0px;
}

.nav-menu .sub-menu.mega-menu {
    width: 100%;
    padding: 39px 38px;
    left: 0;
    top: 140px;
}

.nav-menu li.mega:hover {
    position: static;
}

.nav-menu .sub-menu.mega-menu .list-item li.flex-menu a {
    display: flex;
    align-items: center;
}

.nav-menu .sub-menu.mega-menu .list-item li.flex-menu a img {
    width: 51px;
    height: 51px;
}

.nav-menu .sub-menu.mega-menu li {
    padding: 0px;
}

.nav-menu .sub-menu.mega-menu li a {
    border-bottom: none;
}

.nav-menu .sub-menu.mega-menu .list-item li.flex-menu a span {
    font-size: 18px;
    margin-left: 6px;
    color: var(--second-color);
}

.nav-menu .sub-menu.mega-menu .menu-banner img {
    border-radius: 20px;
    border: 2px solid;
}

.detail-box {
    display: flex;
    align-items: center;
}

.detail-box .img-box {
    margin-right: 20px;
}

.detail-box .img-box img {
    width: 250px;
}

.detail-box .desc h4 {
    font-size: 26px;
    color: var(--first-color);
    font-weight: 600;
    margin-bottom: 4px;
}

.detail-box .desc .designation {
    margin-bottom: 4px;
    font-size: 15px;
    color: var(--second-color);
    font-weight: 600;
}

.offering-box {
    background: var(--second-color);
    border-radius: 20px;
    padding: 35px 40px;
    margin-bottom: 20px;
}

.offering-box .offer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.offering-box .offer-inner .off-box {
    border-radius: 10px;
    background: #fff;
    text-align: center;
    padding: 13px 16px;
}

.offering-box .offer-inner .off-box .icon-img {
    width: 95px;
}

.offering-box .offer-inner .off-box h6 {
    margin-bottom: 0px;
    margin-top: 7px;
    font-size: 14px;
}

.offering-box h4.box-title {
    text-align: center;
    color: #fff;
    margin-bottom: 16px;
}

.banner-content h4 {
    font-size: 34px;
    color: var(--first-color);
    font-weight: 700;
    margin-top: -21px;
    margin-bottom: 16px;
}

.banner-content ul.check-list {
    padding-left: 0;
    margin-bottom: 20px;
    text-align: justify;
}

.banner-content ul.check-list li {
    font-size: 15px;
    color: #000;
    list-style: none;
    margin-bottom: 10px;
    padding-left: 0;
    font-weight: 500;
}

.banner-content ul.check-list li i {
    color: var(--second-color);
    margin-right: 10px;
}

.banner-img.con-right .banner-content li {
    text-align: right;
}

ul.flex-c-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: start;
}

.nav-menu .sub-menu.mega-menu ul.flex-c-list li.flex-menu {
    width: 50%;
    display: inline-block;
    margin-bottom: 8px;
}

.nav-menu .sub-menu.mega-menu ul.flex-c-list li.flex-menu .f-txt {
    margin-left: 10px;
}

.nav-menu .sub-menu.mega-menu ul.flex-c-list li.flex-menu .f-txt span {
    margin-left: 0px;
    font-size: 18px;
    line-height: 12px!important;
}

.nav-menu .sub-menu.mega-menu ul.flex-c-list li.flex-menu .f-txt p.desc1 {
    margin-top: -2px;
    font-size: 14px;
    margin-bottom: 0px;
}

.cov-sec {
    text-align: center;
    margin-bottom: 46px;
}

.cov-sec .icon {
    background-image: radial-gradient(95.56% 95.56% at 50% 50%, #ffffff 0%, #0075be75 100%);
    border: 1px solid #0075beb0;
    text-align: center;
    margin: 0 auto;
    padding: 20px;
    width: max-content;
    border-radius: 50%;
    margin-bottom: 10px;
}

.cov-sec .icon img {
    padding: 15px;
    width: 116px;
    height: auto;
}

.cov-sec h4 {
    font-size: 19px;
    margin-bottom: 0px;
    margin-top: 12px;
    color: var(--second-color);
}

.sector-slider ul.slick-dots {
    margin-bottom: 0px;
}

.scroll-top {
    display: none;
    z-index: 999;
    position: fixed;
    bottom: 30px;
    right: 20px;
    padding: 8px 14px;
    margin-bottom: 0px;
    border-radius: 8px;
    color: #fff;
    background: var(--first-color);
    text-decoration: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.scroll-top:hover {
    background: var(--second-color);
    color: #fff;
}

@media (min-width: 1536px) and (max-width: 1536px) {
    .banner-content h2 {
        font-size: 50px;
    }
    .banner-content {
        height: 565px;
        padding: 113px 0;
    }
}

@media only screen and (max-width: 1366px) {
    .contact-dt li a span {
        font-size: 12px;
    }
    ul.media-header li a {
        width: 39px;
        height: 34px;
    }
    .nav-menu li {
        padding: 2px 13px;
    }
    .nav-menu li a {
        font-size: 14px;
    }
    .nav-menu {
        padding: 5px 6px;
    }
    .main-header {
        padding: 0 0;
    }
    .main-header .logo-div img {
        width: 92px;
        padding: 5px 0;
    }
    .f-logo img {
        max-width: 146px;
    }
    .btn {
        font-size: 14px;
        line-height: 1;
        padding: 12px 22px;
    }
    .nav-menu li .sub-menu li a {
        line-height: 25px;
        padding: 4px 0;
        font-size: 13px;
    }
    .banner-content {
        padding: 90px 0;
        max-width: 640px;
        height: 500px;
    }
    .banner-content h2 {
        font-size: 30px;
        margin-bottom: 15px;
    }
    .banner-content p {
        font-size: 14px;
    }
    h4.sec-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    .sec-sm-heading {
        font-size: 12px;
    }
    .sec-sm-heading:after,
    .sec-sm-heading:before {
        height: 15px;
    }
    p {
        font-size: 13px;
        margin-bottom: 11px;
    }
    .abt-flex {
        margin-top: 20px;
        margin-bottom: 28px;
    }
    .abt-flex .content h5 {
        font-size: 14px;
    }
    .abt-flex .icon {
        height: 68px;
        width: 76px;
    }
    .abt-flex .icon img {
        width: 85px;
        padding: 19px;
    }
    .default-padding {
        padding: 50px 0;
    }
    .service-flex .service-inner {
        display: flex;
        padding: 43px 29px;
    }
    .service-info h4 {
        font-size: 18px;
        line-height: 21px;
    }
    .service-info p {
        font-size: 12px;
        line-height: 20px;
        margin-bottom: 20px;
    }
    .service-flex .service-inner .icon-part {
        margin-right: 20px;
    }
    .service-flex .service-inner .icon-part img {
        width: 115px;
    }
    .ser-box-no {
        font-size: 88px;
    }
    .service-flex {
        grid-template-rows: repeat(2, 232px);
    }
    .service-btn span.service-btn-wrapper span.btn-button {
        font-size: 22px;
    }
    .process-card .content .title {
        font-size: 18px;
        margin-bottom: 5px;
    }
    .process-card .content p {
        font-size: 12px;
    }
    .process-card .icon .number {
        top: -21px;
        right: -6px;
        font-size: 13px;
        font-weight: 700;
        height: 40px;
        width: 40px;
    }
    .process-card .icon {
        height: 100px;
        width: 100px;
    }
    .counter-ds .counter-num h3 {
        font-size: 28px;
    }
    .counter-ds .counter-num p {
        font-size: 11px;
    }
    .testimonial-box {
        padding: 29px 31px;
    }
    .testimonial-box .upper-box .customer-details .customer-name {
        font-size: 14px;
    }
    .testimonial-box .upper-box {
        margin-bottom: 15px;
        padding-bottom: 15px
    }
    .testimonial-box .lower-box p {
        font-size: 13px;
        line-height: 21px;
    }
    .footer-top h3 {
        max-width: 700px;
        font-size: 33px;
    }
    .footer-top {
        padding-bottom: 50px;
    }
    .footer-section {
        padding-top: 50px;
    }
    .footer-section {
        padding-top: 50px;
    }
    .footer-section .f-img2 {
        width: 200px
    }
    .f-img3 {
        z-index: -1;
    }
    .media-footer li a i {
        font-size: 13px;
    }
    .media-footer li a {
        height: 35px;
        width: 35px;
    }
    .widget-title h4 {
        font-size: 18px;
    }
    .f-menu-list ul li a {
        font-size: 13px;
    }
    .f-menu-list ul li {
        margin-bottom: 3px;
    }
    .footer-bottom {
        padding: 60px 0;
    }
    .copyright-section {
        padding: 14px 0;
    }
    .footer-section .f-img1 {
        width: 234px;
    }
    .contact-box .contact-icon {
        width: 80px;
        height: 80px;
        font-size: 30px;
        line-height: 82px;
    }
    .nav-menu li.active {
        margin: 1px 0;
    }
    .f-img3 {
        display: none;
    }
}

@media only screen and (max-width: 1000px) {
    .f-img3 {
        display: none;
    }
    .mb-d-none {
        display: none !important;
    }
    .contact-dt li a i {
        margin-right: 8px;
        font-size: 12px;
    }
    .contact-dt li a span {
        font-size: 12px;
    }
    .contact-dt li {
        line-height: 32px;
        padding-right: 35px;
        margin-top: -3px;
    }
    .contact-dt li:not(:last-child):after {
        top: 17px;
        right: 12px;
    }
    .navbar-right-menu {
        display: none;
    }
    .navbar-right-menu {
        left: -100%;
        top: 0px;
        position: fixed;
        width: 100%;
        max-width: 100%;
        height: 100% !important;
        background: var(--second-color);
        padding: 30px;
        animation: slide-in-left 1s forwards;
        z-index: 999;
    }
    .toggle-menu {
        display: block;
        float: right;
        text-align: right;
        margin-left: auto;
    }
    .toggle-icon {
        position: relative;
        width: 31px;
        height: 20px;
    }
    .toggle-icon span {
        position: absolute;
        width: 100%;
        height: 1px;
        display: inline-block;
        transition: all 0.3s;
        left: 0;
        background: #3f3f3f;
    }
    .toggle-icon span:first-child {
        top: 0;
    }
    .toggle-icon span:nth-child(2) {
        top: 44%;
    }
    .toggle-icon span:last-child {
        bottom: 2px;
    }
    body.mobile-menu .toggle-icon span:first-child {
        transform: rotate(45deg) translate(3px, 9px);
    }
    body.mobile-menu .toggle-icon span:nth-child(2) {
        opacity: 0;
    }
    body.mobile-menu .toggle-icon span:last-child {
        transform: rotate(-45deg) translate(3px, -9px);
    }
    .main-header {
        padding: 2px 0;
    }
    .main-header .logo-div img {
        width: 86px;
        padding: 1px 0;
    }
    body.mobile-menu .navbar-right-menu {
        display: block !important;
        overflow-y: auto;
    }
    .nav-menu {
        display: block;
    }
    .nav-menu li.active {
        background: #0e59f275;
    }
    .nav-menu li a {
        width: 100%;
        color: #ffffffcc;
        text-align: left;
        display: block;
    }
    .nav-menu li.active a {
        color: #fff;
    }
    .nav-menu li:hover a {
        color: #fff;
    }
    .nav-menu li {
        padding: 10px 15px;
        width: 100%;
        display: block;
    }
    .nav-menu li a i {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
        width: 22px;
        height: 22px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #edf5f4;
        border-radius: 50%;
        color: var(--second-color);
    }
    .nav-menu li .sub-menu {
        position: relative;
        width: 100%;
        background: #0e59f238;
        box-shadow: none;
        display: none;
    }
    .nav-menu li:hover .sub-menu {
        display: block;
    }
    .nav-menu li .sub-menu li a {
        color: #ffffffcc;
    }
    body.mobile-menu .close-menu {
        display: block !important;
        position: absolute;
        top: 0;
        right: 9px;
    }
    body.mobile-menu .close-menu i {
        color: #fff;
        font-size: 28px;
    }
    .footer-section .f-img1 {
        width: 147px;
        right: 44px;
    }
    .footer-section .f-img2 {
        width: 103px;
    }
    .footer-section {
        padding-top: 65px;
    }
    .footer-top h3 {
        font-size: 26px;
    }
    .footer-top {
        padding-bottom: 46px;
    }
    .btn {
        font-size: 13px;
        padding: 13px 20px;
    }
    .footer-bottom {
        padding: 52px 0;
    }
    .footer-widget {
        margin-bottom: 25px;
    }
    .process-card .arrow img {
        display: none;
    }
    .banner-content {
        padding: 73px 0;
        max-width: unset;
        height: 362px;
    }
    .banner-content h2 {
        font-size: 25px;
    }
    .banner-content ul.check-list li {
        font-size: 12px;
        margin-bottom: 2px;
    }
    .slick-arrow {
        font-size: 17px;
        height: 44px;
        width: 44px;
        top: 45%;
    }
    .about-img:after {
        height: 1178px;
    }
    .about-img:before {
        right: -102px;
    }
    .about-img {
        margin-bottom: 20px;
    }
    .counter-inner {
        padding: 44px 51px;
    }
    .counter-ds {
        margin-bottom: 14px;
    }
}

@media only screen and (max-width: 920px) {
    .mb-d-none {
        display: none !important;
    }
    .contact-dt li a i {
        margin-right: 8px;
        font-size: 12px;
    }
    .contact-dt li a span {
        font-size: 12px;
    }
    .contact-dt li {
        line-height: 32px;
        padding-right: 35px;
        margin-top: -3px;
    }
    .contact-dt li:not(:last-child):after {
        top: 17px;
        right: 12px;
    }
    .navbar-right-menu {
        display: none;
    }
    .navbar-right-menu {
        left: -100%;
        top: 0px;
        position: fixed;
        width: 100%;
        max-width: 100%;
        height: 100% !important;
        background: var(--second-color);
        padding: 30px;
        animation: slide-in-left 1s forwards;
        z-index: 999;
    }
    .toggle-menu {
        display: block;
        float: right;
        text-align: right;
        margin-left: auto;
    }
    .toggle-icon {
        position: relative;
        width: 31px;
        height: 20px;
    }
    .toggle-icon span {
        position: absolute;
        width: 100%;
        height: 1px;
        display: inline-block;
        transition: all 0.3s;
        left: 0;
        background: #3f3f3f;
    }
    .toggle-icon span:first-child {
        top: 0;
    }
    .toggle-icon span:nth-child(2) {
        top: 44%;
    }
    .toggle-icon span:last-child {
        bottom: 2px;
    }
    body.mobile-menu .toggle-icon span:first-child {
        transform: rotate(45deg) translate(3px, 9px);
    }
    body.mobile-menu .toggle-icon span:nth-child(2) {
        opacity: 0;
    }
    body.mobile-menu .toggle-icon span:last-child {
        transform: rotate(-45deg) translate(3px, -9px);
    }
    .main-header {
        padding: 2px 0;
    }
    .main-header .logo-div img {
        width: 86px;
        padding: 1px 0;
    }
    body.mobile-menu .navbar-right-menu {
        display: block !important;
        overflow-y: auto;
    }
    .nav-menu {
        display: block;
    }
    .nav-menu li.active {
        background: #0e59f275;
    }
    .nav-menu li a {
        width: 100%;
        color: #ffffffcc;
        text-align: left;
        display: block;
    }
    .nav-menu li.active a {
        color: #fff;
    }
    .nav-menu li:hover a {
        color: #fff;
    }
    .nav-menu li {
        padding: 10px 15px;
        width: 100%;
        display: block;
    }
    .nav-menu li a i {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
        width: 22px;
        height: 22px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #edf5f4;
        border-radius: 50%;
        color: var(--second-color);
    }
    .nav-menu li .sub-menu {
        position: relative;
        width: 100%;
        background: #0e59f238;
        box-shadow: none;
        display: none;
    }
    .nav-menu li:hover .sub-menu {
        display: block;
    }
    .nav-menu li .sub-menu li a {
        color: #ffffffcc;
    }
    body.mobile-menu .close-menu {
        display: block !important;
        position: absolute;
        top: 0;
        right: 9px;
    }
    body.mobile-menu .close-menu i {
        color: #fff;
        font-size: 28px;
    }
    .footer-section .f-img1 {
        width: 147px;
        right: 44px;
    }
    .footer-section .f-img2 {
        width: 103px;
    }
    .footer-section {
        padding-top: 65px;
    }
    .footer-top h3 {
        font-size: 26px;
    }
    .footer-top {
        padding-bottom: 46px;
    }
    .btn {
        font-size: 13px;
        padding: 13px 20px;
    }
    .footer-bottom {
        padding: 52px 0;
    }
    .footer-widget {
        margin-bottom: 25px;
    }
    .process-card .arrow img {
        display: none;
    }
    .banner-content {
        padding: 73px 0;
        max-width: unset;
        height: 362px;
    }
    .banner-content h2 {
        font-size: 25px;
    }
    .banner-content ul.check-list li {
        font-size: 12px;
        margin-bottom: 2px;
    }
    .slick-arrow {
        font-size: 17px;
        height: 44px;
        width: 44px;
        top: 45%;
    }
    .about-img:after {
        height: 1178px;
    }
    .about-img:before {
        right: -102px;
    }
    .about-img {
        margin-bottom: 20px;
    }
    .counter-inner {
        padding: 44px 51px;
    }
    .counter-ds {
        margin-bottom: 14px;
    }
}

@media only screen and (max-width: 767px) {
    .mb-d-none {
        display: none !important;
    }
    .contact-dt li a i {
        margin-right: 8px;
        font-size: 12px;
    }
    .contact-dt li a span {
        font-size: 12px;
    }
    .contact-dt li {
        line-height: 32px;
        padding-right: 35px;
        margin-top: -3px;
    }
    .contact-dt li:not(:last-child):after {
        top: 17px;
        right: 12px;
    }
    .navbar-right-menu {
        display: none;
    }
    .navbar-right-menu {
        left: -100%;
        top: 0px;
        position: fixed;
        width: 100%;
        max-width: 100%;
        height: 100% !important;
        background: var(--second-color);
        padding: 30px;
        animation: slide-in-left 1s forwards;
        z-index: 999;
    }
    .toggle-menu {
        display: block;
        float: right;
        text-align: right;
        margin-left: auto;
    }
    .toggle-icon {
        position: relative;
        width: 31px;
        height: 20px;
    }
    .toggle-icon span {
        position: absolute;
        width: 100%;
        height: 1px;
        display: inline-block;
        transition: all 0.3s;
        left: 0;
        background: #3f3f3f;
    }
    .toggle-icon span:first-child {
        top: 0;
    }
    .toggle-icon span:nth-child(2) {
        top: 44%;
    }
    .toggle-icon span:last-child {
        bottom: 2px;
    }
    body.mobile-menu .toggle-icon span:first-child {
        transform: rotate(45deg) translate(3px, 9px);
    }
    body.mobile-menu .toggle-icon span:nth-child(2) {
        opacity: 0;
    }
    body.mobile-menu .toggle-icon span:last-child {
        transform: rotate(-45deg) translate(3px, -9px);
    }
    .main-header {
        padding: 2px 0;
    }
    .main-header .logo-div img {
        width: 86px;
        padding: 1px 0;
    }
    body.mobile-menu .navbar-right-menu {
        display: block !important;
        overflow-y: auto;
    }
    .nav-menu {
        display: block;
    }
    .nav-menu li.active {
        background: #0e59f275;
    }
    .nav-menu li a {
        width: 100%;
        color: #ffffffcc;
        text-align: left;
        display: block;
    }
    .nav-menu li.active a {
        color: #fff;
    }
    .nav-menu li:hover a {
        color: #fff;
    }
    .nav-menu li {
        padding: 10px 15px;
        width: 100%;
        display: block;
    }
    .nav-menu li a i {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
        width: 22px;
        height: 22px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #edf5f4;
        border-radius: 50%;
        color: var(--second-color);
    }
    .nav-menu li .sub-menu {
        position: relative;
        width: 100%;
        background: #0e59f238;
        box-shadow: none;
        display: none;
    }
    .nav-menu li:hover .sub-menu {
        display: block;
    }
    .nav-menu li .sub-menu li a {
        color: #ffffffcc;
    }
    body.mobile-menu .close-menu {
        display: block !important;
        position: absolute;
        top: 0;
        right: 9px;
    }
    body.mobile-menu .close-menu i {
        color: #fff;
        font-size: 28px;
    }
    .footer-section .f-img1 {
        width: 147px;
        right: 44px;
    }
    .footer-section .f-img2 {
        width: 103px;
    }
    .footer-section {
        padding-top: 65px;
    }
    .footer-top h3 {
        font-size: 26px;
    }
    .footer-top {
        padding-bottom: 46px;
    }
    .btn {
        font-size: 13px;
        padding: 13px 20px;
    }
    .footer-bottom {
        padding: 52px 0;
    }
    .footer-widget {
        margin-bottom: 25px;
    }
    .media-footer li a {
        color: #191f29;
        height: 35px;
        width: 35px;
    }
    .f-img3 {
        display: none;
    }
    .copyright-section p {
        text-align: center;
        font-size: 13px;
    }
    .copyright-section {
        padding: 14px 0;
    }
    .widget-title h4 {
        font-size: 20px;
    }
    .widget-title {
        margin-bottom: 15px;
    }
    .f-menu-list ul li {
        margin-bottom: 3px;
    }
    .f-menu-list ul li a {
        font-size: 14px;
    }
    .banner-img img {
        width: 100%;
        height: auto;
    }
    .abt-flex {
        max-width: 100%;
        display: block;
        margin-bottom: 25px;
    }
    .abt-flex .abt-box {
        margin-bottom: 15px;
    }
    .abt-flex .icon {
        height: 90px;
        width: 90px;
    }
    .abt-flex .icon img {
        width: 90px;
        padding: 23px;
    }
    .about-img {
        margin-bottom: 30px;
    }
    .sec-sm-heading {
        font-size: 15px;
    }
    h4.sec-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    p {
        font-size: 13px;
    }
    .default-padding {
        padding: 50px 0;
    }
    .service-flex {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(2, auto);
    }
    .service-flex .service-inner {
        padding: 68px 27px;
    }
    .service-info h4 {
        font-size: 22px;
        line-height: 23px;
    }
    .service-info p {
        font-size: 13px;
        line-height: 23px;
        margin-bottom: 20px;
    }
    .ser-box-no {
        font-size: 80px;
    }
    .service-flex .service-inner:nth-child(3) {
        border-bottom: none;
        border-right: 1px solid #EAEAEA;
    }
    .service-flex .service-inner:last-child {
        border-bottom: 1px solid #EAEAEA;
        border-right: 1px solid #EAEAEA;
    }
    .service-flex .service-inner {
        border-right: none;
    }
    .process-card .arrow img {
        display: none;
    }
    .counter-inner {
        padding: 38px 49px;
    }
    .counter-ds {
        margin-bottom: 22px;
    }
    .counter-ds .counter-icon .icon-inner img {
        width: 39px;
    }
    .counter-ds .counter-num h3 {
        font-size: 30px;
        margin-bottom: 0px;
    }
    .counter-ds .counter-num p {
        font-size: 13px;
    }
    .testimonial-box {
        padding: 29px 30px;
    }
    .testimonial-box .lower-box p {
        font-size: 15px;
        line-height: 24px;
    }
    .banner-content {
        max-width: 100%;
        padding: 83px 0;
        z-index: 9;
    }
    .banner-img:before {
        content: '';
        background-color: #032e6f36;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
    }
    .banner-content h2 {
        color: #fff!important;
        font-size: 28px;
        margin-bottom: 14px;
    }
    .banner-content p {
        font-size: 13px;
        color: #bfefffb5;
    }
    .banner-img.con-right .banner-content {
        text-align: center;
    }
    .banner-img .banner-content {
        margin-left: auto;
        text-align: center;
    }
    .cont-iframe iframe {
        width: 100%;
        height: auto;
    }
    .faq-div .title {
        font-size: 15px;
    }
    .faq-div .desc {
        padding-bottom: 3px;
        padding-top: 10px;
        margin-top: 13px;
        font-size: 14px;
    }
    .ser-contact-box {
        padding: 83px 30px;
    }
    .preloader .circle {
        left: 38%;
    }
    .mb-p-28 {
        padding: 28px 0!important;
    }
    .contact-form {
        margin-bottom: 20px;
    }
    .contact-form {
        padding: 30px 36px;
    }
    .breadcrumb h4.page-name {
        margin-bottom: 0px;
    }
    .nav-menu li.active {
        border-radius: 16px;
        padding: 10px 13px;
        margin: 0;
    }
    .right-options {
        padding-left: 15px;
    }
    .service-flex .service-inner:nth-child(1),
    .service-flex .service-inner:nth-child(2) {
        border-right: 1px solid #EAEAEA;
    }
    .teamModal {
        width: auto;
        top: 0px;
        left: 0px;
        margin: 10px;
        max-width: 100%;
    }
    .team-flex {
        padding: 18px 18px;
    }
    .team-flex img {
        width: 85px;
        height: 85px;
    }
    .team-dt {
        margin-left: 14px;
    }
    .team-dt p.desc {
        font-size: 12px;
        line-height: 20px;
    }
    .team-dt h4.team-name {
        font-size: 19px;
        margin-bottom: 3px;
    }
    .team-dt p.designation {
        font-size: 13px;
    }
    .breadcrumbs a {
        font-size: 13px;
        line-height: 20px;
    }
    .breadcrumbs p {
        font-size: 12px;
        line-height: 20px;
    }
    .breadcrumbs {
        padding: 4px 18px;
    }
    .service-details ul {
        padding-left: 15px;
    }
    .desc {
        font-size: 14px;
        line-height: 23px;
    }
    .service-details li {
        font-size: 13px;
        line-height: 22px
    }
    h5.heading2 {
        font-size: 15px;
    }
    .process-partner .desc {
        font-size: 12px;
        line-height: 18px;
    }
    .process-partner .process-card .content p {
        font-size: 13px;
        max-width: 100%;
    }
    .process-partner .process-card {
        margin-bottom: 6px;
    }
    .process-card .icon.no-img {
        display: none;
    }
    .nav-menu li.mega:hover {
        position: relative;
    }
    .nav-menu .sub-menu.mega-menu {
        background: #0e59f275;
        padding: 15px 15px;
        left: 0;
        top: 4px;
    }
    .nav-menu .sub-menu.mega-menu .list-item li.flex-menu a {
        padding: 6px 0;
    }
    .nav-menu .sub-menu.mega-menu .list-item li.flex-menu a img {
        width: 35px;
        height: 35px;
        padding: 2px;
        border-radius: 50%;
        background: #fff;
    }
    .nav-menu .sub-menu.mega-menu .list-item li.flex-menu a span {
        font-size: 15px;
        color: #fff;
    }
    .nav-menu .sub-menu.mega-menu .container {
        padding: 0px;
    }
    .nav-menu .sub-menu.mega-menu .menu-banner img {
        margin-top: 10px;
    }
    .detail-box {
        text-align: center;
        display: block;
    }
    .detail-box .img-box {
        margin-right: 0px;
        margin-bottom: 11px;
    }
    .team-div {
        display: block;
        text-align: center;
        padding: 20px;
    }
    .team-div .team-img img {
        width: 200px;
    }
    .team-div .abt-team {
        text-align: center;
        margin-left: 0px;
        margin-top: 15px;
    }
    .team-div .abt-team p.text {
        font-size: 13px;
        line-height: 23px;
        text-align: center;
    }
    .offering-box .offer-inner {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .offering-box {
        padding: 20px 20px;
    }
    .offering-box .offer-inner .off-box {
        padding: 10px 12px;
    }
    .offering-box .offer-inner .off-box .icon-img {
        width: 50px;
    }
    .offering-box .offer-inner .off-box h6 {
        margin-bottom: 0px;
        margin-top: 7px;
        font-size: 11px;
    }
    .offering-box h4.box-title {
        font-size: 24px;
    }
    .banner-content ul.check-list li {
        text-align: center!important;
        font-size: 13px;
        color: #fff;
        font-weight: 400;
    }
    .banner-content ul.check-list li i {
        color: var(--first-color);
    }
    .banner-content h4 {
        font-size: 18px;
        line-height: 27px;
        color: #ffff;
        font-weight: 400;
        margin-top: 8px;
        margin-bottom: 12px;
    }
    .banner-content {
        height: 524px;
    }
    .nav-menu .sub-menu.mega-menu ul.flex-c-list li.flex-menu {
        width: 100%;
    }
    .nav-menu .sub-menu.mega-menu ul.flex-c-list li.flex-menu .f-txt p.desc1 {
        margin-top: 0;
        font-size: 9px;
    }
    .nav-menu .sub-menu.mega-menu ul.flex-c-list li.flex-menu .f-txt span {
        margin-left: 0px;
        display: block;
        font-size: 12px;
        line-height: 17px !important;
    }
    .nav-menu .sub-menu.mega-menu ul.flex-c-list li.flex-menu .f-txt span br {
        display: none;
    }
    .team-div .team-img {
        width: 100%;
    }
    .team-div .abt-team {
        width: 100%;
    }
}

@keyframes slide-in-left {
    0% {
        left: -100%;
    }
    100% {
        left: 0px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-top h3 {
        font-size: 20px;
        max-width: 63%;
    }
    .btn {
        font-size: 12px;
        padding: 10px 14px;
    }
    .subscribe-form .btn.btn1 {
        font-size: 10px;
    }
    .media-footer li a i {
        line-height: 0px;
    }
    .contact-dt li a span {
        font-size: 11px;
    }
    .contact-dt li a i {
        margin-right: 8px;
        font-size: 11px;
    }
    .contact-dt li {
        line-height: 32px;
        padding-right: 29px;
        margin-top: -3px;
    }
    .navbar-right-menu {
        padding: 35px 9px;
    }
    .offering-box .offer-inner .off-box {
        width: 47%;
    }
    .service-details p {
        font-size: 13px;
        line-height: 24px
    }
    .service-details h6 {
        line-height: 20px;
        font-size: 15px;
    }
    .cov-sec .icon img {
        width: 78px;
    }
    .cov-sec .icon {
        padding: 16px;
    }
    .cov-sec h4 {
        font-size: 16px;
    }
    .nav-menu .sub-menu.mega-menu .menu-banner {
        display: none;
    }
    .banner-content {
        height: 422px;
    }
    .slick-arrow {
        font-size: 11px;
        height: 35px;
        width: 35px;
        top: 45%;
    }
    .banner-slider .slick-arrow {
        display: none!important;
    }
}

@media only screen and (max-width: 420px) {
    .custom-sidebar .sidebar-menu li .subsidebar-menu li a {
        padding: 9px 0px 9px 47px !important;
        font-size: 12px;
    }
    .cov-sec .icon img {
        width: 78px;
    }
    .cov-sec .icon {
        padding: 16px;
    }
    .cov-sec h4 {
        font-size: 16px;
    }
    .nav-menu .sub-menu.mega-menu .menu-banner {
        display: none;
    }
    .banner-slider .slick-arrow {
        display: none!important;
    }
}