

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");


.theme-btn {
    background-color:#0d3a7e;
    font-weight: 700;
    color: #fff;
    transition: all 0.4s ease-in-out;
    text-transform: capitalize;
    position: relative;
    overflow: hidden;
    font-size: 16px;
    padding: 20px 16px;
    border-radius: 50px;
    z-index: 9;
    display: inline-block;
    line-height: 1;
}

.theme-btn i {
    margin-left: 8px;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 575px) {
    .theme-btn i {
        margin-left: 3px;
        font-size: 12px;
    }
}

.theme-btn span {
    position: relative;
    z-index: 9;
}

.theme-btn::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 0;
    content: "";
    background-color:#16171A;
    transition: all 0.4s ease-in-out;
    border-radius: 0;
    z-index: 1;
}

.theme-btn::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 0;
    content: "";
    background-color:#16171A;
    transition: all 0.4s ease-in-out;
    border-radius: 0;
    z-index: 1;
}

.theme-btn:hover {
    color: #fff;
}

.theme-btn:hover::before {
    height: 100%;
}

.theme-btn:hover::after {
    height: 100%;
}

.theme-btn:hover i {
    transform: translate(5px);
}

.theme-btn.hover-white::before,
.theme-btn.hover-white::after {
    background-color: #fff;
}

.theme-btn.hover-white:hover {
    color:#16171A;
}

.theme-btn.hover-white:hover i {
    transform: translate(5px);
    color:#16171A;
}

.theme-btn.bg-white {
    color:#16171A;
}

.theme-btn.bg-white:hover {
    color: #fff;
}

.theme-btn.bg-white:hover i {
    transform: translate(5px);
    color: #fff;
}

.theme-btn.theme-btn-2 {
    background-color:#0d3a7e;
}

.theme-btn.line-height {
    line-height: 1.3;
}

@media (max-width: 767px) {
    .theme-btn {
        padding: 22px 30px;
    }
}

@media (max-width: 575px) {
    .theme-btn {
        padding: 18px 30px;
    }
    .theme-btn span {
        font-size: 14px;
    }
}

.link-btn {
    text-transform: capitalize;
    font-size: 16px;
    color:#16171A;
    font-weight: 600;
}

.link-btn span {
    background-image: linear-gradient(#0d3a7e,#0d3a7e);
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline-block;
    transition: all 0.4s ease-in-out;
}

.link-btn i {
    margin-left: 10px;
    font-size: 16px;
    transition: all 0.4s ease-in-out;
    font-size: 12px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border-radius: 25px;
    background-color:#0d3a7e;
    text-align: center;
    color: #fff;
}

.link-btn:hover span {
    color:#0d3a7e;
    background-size: 100% 1px;
}

.link-btn.link-btn-2 span {
    background-image: linear-gradient(var(--theme2),#0d3a7e);
}

.link-btn.link-btn-2 i {
    background-color:#0d3a7e;
}

.link-btn.link-btn-2:hover span {
    color:#0d3a7e;
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */

body {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 28px;
    color:#5E5F63;
    background-color: #fff;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

button {
    border: none;
    background-color: transparent;
    padding: 0;
}

input:focus {
    color: #fff;
    outline: none;
}

input {
    color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Inter", sans-serif;
    margin: 0px;
    padding: 0;
    color:#16171A;
    text-transform: capitalize;
    transition: all 0.4s ease-in-out;
}

h1 {
    font-size: 85px;
    font-weight: 600;
    line-height: 106%;
}

h2 {
    font-size: 48px;
    line-height: 115%;
    font-weight: 700;
}

@media (max-width: 1199px) {
    h2 {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    h2 {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    h2 {
        font-size: 26px;
    }
}

h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 145%;
}

@media (max-width: 575px) {
    h3 {
        font-size: 20px;
    }
}

h4 {
    font-size: 22px;
    font-weight: 700;
}

@media (max-width: 575px) {
    h4 {
        font-size: 20px;
    }
}

h5 {
    font-size: 20px;
    font-weight: 600;
}

h6 {
    font-size: 18px;
    font-weight: 600;
    line-height: 156%;
}

a {
    text-decoration: none;
    outline: none !important;
    cursor: pointer;
    color:#16171A;
    transition: all 0.4s ease-in-out;
}

p {
    margin: 0px;
    transition: all 0.4s ease-in-out;
}



.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

@media (max-width: 767px) {
    .mouse-cursor {
        display: none;
    }
}

.cursor-inner {
    width: 6px;
    height: 6px;
    z-index: 10000001;
    background-color:#0d3a7e;
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -35px;
    margin-top: -35px;
    width: 70px;
    height: 70px;
    background-color:#0d3a7e;
    opacity: 0.3;
}

.cursor-outer {
    margin-left: -12px;
    margin-top: -12px;
    width: 30px;
    height: 30px;
    border: 1px solid#0d3a7e;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 10000000;
    opacity: 0.5;
    -webkit-transition: all 0.08s ease-out;
    -o-transition: all 0.08s ease-out;
    transition: all 0.08s ease-out;
}

.cursor-outer.cursor-hover {
    opacity: 0;
}

.scroll-up {
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    position: fixed;
    right: 25px;
    bottom: 35px;
    height: 50px;
    width: 50px;
    transition: all 0.4s ease-in-out;
}

.scroll-up::after {
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    content: "\f176";
    text-align: center;
    line-height: 50px;
    font-weight: 700;
    font-size: 18px;
    color:#0d3a7e;
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}

.scroll-up svg path {
    fill: none;
}

.scroll-up svg.scroll-circle path {
    stroke:#0d3a7e;
    stroke-width: 4px;
    box-sizing: border-box;
    transition: all 0.4s ease-in-out;
}

.scroll-up.active-scroll {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.section-title {
    position: relative;
    z-index: 99;
    margin-bottom: 30px;
    margin-top: -6px;
}

@media (max-width: 767px) {
    .section-title {
        margin-bottom: 0;
    }
}

.section-title span {
    color:#0d3a7e;
    margin-bottom: 10px;
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.11em;
}

.section-title span.color-style {
    color:#0d3a7e;
}

.section-title h2 {
    text-transform: capitalize;
}

.section-title.style-2 span {
    color:#0d3a7e;
    text-decoration: none;
    letter-spacing: 0;
}

.section-title.style-2 h2 {
    text-transform: uppercase;
}

.section-title.style-2 h2 span {
    color:#0d3a7e;
    letter-spacing: 0;
    text-decoration: none;
}

.title-section-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .title-section-area {
        flex-wrap: wrap;
        gap: 0;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .title-section-area {
        gap: 20px;
    }
}

.center {
    text-align: center;
    margin: 0 auto;
}

.section-bg {
    background-color:#F5F5F7;
}

.section-bg-2 {
    background-color:#F8F8F8;
}

.section-bg-3 {
    background-color:#16171A;
}

.section-bg-4 {
    background-color:#EDEEEE;
}

.section-bg-5 {
    background-color: #191919;
}

.footer-bg {
    background-color:#16171A;
}

.section-padding {
    padding: 50px 0;
}

@media (max-width: 1199px) {
    .section-padding {
        padding: 100px 0;
    }
}

@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }
}

@-webkit-keyframes rippleOne {
    70% {
        -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    }
}

@keyframes rippleOne {
    70% {
        -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    }
}

@keyframes toggle {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes moveCursor1 {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    to {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
}

@keyframes moveCursor1 {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    to {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
}

@-webkit-keyframes moveCursor2 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes moveCursor2 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes cir36 {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rounded {
    50% {
        transform: rotate(15deg);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.animation__rotate {
    animation: rotate 40s linear infinite;
}

@keyframes rotateY {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

.animation__rotateY {
    animation: rotateY 40s linear infinite;
}

@keyframes rounded {
    50% {
        transform: rotate(30deg);
    }
}

@keyframes handed {
    100% {
        transform: rotate(-360deg);
    }
}

@keyframes right-image-bounce {
    0% {
        transform: translateX(8px);
    }
    50% {
        transform: translateX(-12px);
    }
    100% {
        transform: translateX(8px);
    }
}

@keyframes top-image-bounce {
    0% {
        transform: translateY(8px);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(8px);
    }
}

@-webkit-keyframes scale-up-one {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    40% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes scale-up-one {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    40% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@-webkit-keyframes letters-loading {
    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }
    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

@keyframes letters-loading {
    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }
    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

@keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes tpswing {
    0% {
        -webkit-transform: rotate(20deg);
        -ms-transform: rotate(20deg);
        transform: rotate(20deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes width {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@-webkit-keyframes width {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@-webkit-keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes loaderpulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}

.float-bob-y {
    -webkit-animation-name: float-bob-y;
    animation-name: float-bob-y;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
    0% {
        transform: translateY(-30px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(-30px);
    }
}

@keyframes float-bob-y {
    0% {
        transform: translateY(-30px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(-30px);
    }
}

.float-bob-x {
    -webkit-animation-name: float-bob-x;
    animation-name: float-bob-x;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(30px);
    }
    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
    100% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
}

@keyframes float-bob-x {
    0% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
    100% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
}

@keyframes bounce-x {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.bounce-x {
    -webkit-animation: bounce-x 7s infinite linear;
    animation: bounce-x 7s infinite linear;
}

@-webkit-keyframes video-animation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
    100% {
        opacity: 0;
        transform: scale(2);
    }
}

@keyframes video-animation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
    100% {
        opacity: 0;
        transform: scale(2);
    }
}


.logo img{
    width: 120px;
}

.header-top-section {
    background-color:#0d3a7e;
    padding: 10px 0;
    position: relative;
    z-index: 9;
}

@media (max-width: 991px) {
    .header-top-section {
        display: none;
    }
}

.header-top-section::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color:#0d3a7e;
    z-index: -1;
    left: 73%;
}

@media (max-width: 1899px) {
    .header-top-section::before {
        display: none;
    }
}

.header-top-section-2 {
    background-color:#EDEEEE;
}

@media (max-width: 1199px) {
    .header-top-section-2 {
        display: none;
    }
}

.header-top-section-3 {
    background-color: #F1F5FF;
}

@media (max-width: 1199px) {
    .header-top-section-3 {
        display: none;
    }
}

.header-top-section-3 .container-fluid {
    padding: 0 100px;
}

@media (max-width: 1399px) {
    .header-top-section-3 .container-fluid {
        padding: 0;
    }
}

.header-top-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-top-wrapper .contact-list {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-top-wrapper .contact-list li {
    font-size: 15px;
    color:#fff;
}

.header-top-wrapper .contact-list li a {
    color:#fff;
}

.header-top-wrapper .contact-list li i {
    color:#fff;
    margin-right: 10px;
}

.header-top-wrapper .top-right {
    display: flex;
    align-items: center;
    gap: 65px;
}

.header-top-wrapper .top-right .social-icon {
    gap: 15px;
}

.header-top-wrapper .top-right .social-icon a {
    color:#fff;
}

.header-top-wrapper .top-right .social-icon a:hover {
    color:#fff;
}

.header-top-wrapper .top-right .header-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-top-wrapper .top-right .header-menu li a {
    color: #fff;
    background-image: linear-gradient(#fff, #fff);
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline-block;
    transition: all 0.4s ease-in-out;
}

.header-top-wrapper .top-right .header-menu li a:hover {
    background-size: 100% 1px;
}

@media (max-width: 1899px) {
    .header-top-wrapper .top-right .header-menu li a {
        color:#8A8C94;
        background-image: linear-gradient(var(--text2),#8A8C94);
    }
}


.header-section-1 {
    position: relative;
    background-color: #fff;
    box-shadow:rgba(149, 157, 165, 0.2) 0px 8px 24px;;
    z-index: 999;
}

.header-section-1::before {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 110px;
    content: "";
    background-color:#0d3a7e;
    z-index: -1;
}

@media (max-width: 1899px) {
    .header-section-1::before {
        display: none !important;
    }
}

.header-section-2 {
    position: relative;
}

.header-section-2::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color:#F8F8F8;
    z-index: -1;
    top: 50%;
}

@media (max-width: 991px) {
    .menu-thumb {
        display: none !important;
    }
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .header-main {
        padding: 15px 0px;
    }
}

.header-main .main-menu ul {
    margin-bottom: 0;
}

.header-main .main-menu ul li {
    position: relative;
    list-style: none;
    display: inline-block;
    margin-inline-end: 40px;
}

.header-main .main-menu ul li:last-child {
    margin-inline-end: 0;
}

.header-main .main-menu ul li a {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color:#16171A;
    padding: 35px 0;
    text-align: left;
    position: relative;
    text-transform: capitalize;
    transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li a i {
    font-size: 15px;
    font-weight: 600;
    margin-left: 5px;
}

.header-main .main-menu ul li a:hover {
    color:#0d3a7e !important;
}

.header-main .main-menu ul li .submenu {
    position: absolute;
    top: 100%;
    inset-inline-start: 0;
    min-width: 240px;
    background: #fff;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    transform-origin: top center;
    color:#16171A;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    transform: translateY(10px);
    transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li .submenu li {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

.header-main .main-menu ul li .submenu li a {
    position: relative;
    z-index: 11;
    font-size: 16px;
    font-weight: 600;
    color:#16171A;
    padding: 5px 10px;
    width: 100%;
    border-bottom: 1px solid #eeeeee;
}

.header-main .main-menu ul li .submenu li:last-child a {
    border: none;
}

.header-main .main-menu ul li .submenu li .submenu {
    inset-inline-start: 100%;
    top: 0;
    visibility: hidden;
    opacity: 0;
}

.header-main .main-menu ul li .submenu li:hover>a {
    background:#0d3a7e;
    color: #fff !important;
}

.header-main .main-menu ul li .submenu li:hover>a::after {
    color:#0d3a7e;
}

.header-main .main-menu ul li .submenu li:hover>.submenu {
    -webkit-transform: translateY(1);
    -moz-transform: translateY(1);
    -ms-transform: translateY(1);
    -o-transform: translateY(1);
    transform: translateY(1);
    visibility: visible;
    opacity: 1;
}

.header-main .main-menu ul li .submenu li.has-dropdown>a::after {
    position: absolute;
    top: 50%;
    inset-inline-end: 25px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    color:#0d3a7e;
}

.header-main .main-menu ul li .has-home-menu {
    width: 1000px;
    padding: 30px 30px 10px 30px;
    opacity: 0;
    left: -250px;
    visibility: hidden;
    padding: 30px 30px 10px 30px;
}

.header-main .main-menu ul li .has-home-menu .home-menu {
    position: relative;
}

.header-main .main-menu ul li .has-home-menu .home-menu .home-menu-thumb {
    position: relative;
}

.header-main .main-menu ul li .has-home-menu .home-menu .home-menu-thumb .demo-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    gap: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    margin-top: 20px;
}

.header-main .main-menu ul li .has-home-menu .home-menu .home-menu-thumb .demo-button .theme-btn {
    padding: 14px 20px;
    color: #fff !important;
    width: initial;
    font-size: 14px;
    text-align: center;
    border-radius: 0px !important;
}

.header-main .main-menu ul li .has-home-menu .home-menu .home-menu-thumb .demo-button .theme-btn:hover {
    color: #fff !important;
}

.header-main .main-menu ul li .has-home-menu .home-menu .home-menu-thumb .demo-button .theme-btn:hover::before,
.header-main .main-menu ul li .has-home-menu .home-menu .home-menu-thumb .demo-button .theme-btn:hover::after {
    border-radius: 0px;
}

.header-main .main-menu ul li .has-home-menu .home-menu .home-menu-thumb::before {
    background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%,#0d3a7e 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    content: "";
}

.header-main .main-menu ul li .has-home-menu .home-menu .home-menu-thumb:hover::before {
    visibility: visible;
    opacity: 1;
}

.header-main .main-menu ul li .has-home-menu .home-menu .home-menu-thumb:hover .demo-button {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.header-main .main-menu ul li .has-home-menu .home-menu .home-menu-thumb:hover.home-menu-btn {
    opacity: 1;
    visibility: visible;
    bottom: 50%;
    transform: translateY(50%);
}

.header-main .main-menu ul li .has-home-menu .home-menu .home-menu-thumb img {
    width: 100%;
}

.header-main .main-menu ul li .has-home-menu .home-menu .home-menu-title {
    text-align: center;
    margin: 15px auto;
    display: inline-block;
    font-size: 16px;
}

.header-main .main-menu ul li:hover>a {
    color:#0d3a7e;
}

.header-main .main-menu ul li:hover>a::after {
    color:#0d3a7e;
}

.header-main .main-menu ul li:hover>.submenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}

.header-1 .container-fluid {
    padding: 0 50px;
}

@media (max-width: 470px) {
    .header-1 .container-fluid {
        padding: 0 15px;
    }
}

@media (max-width: 1199px) {
    .header-1 .mega-menu-wrapper .header-main {
        gap: 20px;
    }
}

.header-1 .mega-menu-wrapper .header-main .header-left {
    display: flex;
    align-items: center;
    gap: 180px;
}

@media (max-width: 1899px) {
    .header-1 .mega-menu-wrapper .header-main .header-left {
        gap: 100px;
    }
}

@media (max-width: 1399px) {
    .header-1 .mega-menu-wrapper .header-main .header-left {
        gap: 483px;
    }
}

@media (max-width: 1199px) {
    .header-1 .mega-menu-wrapper .header-main .header-left {
        gap: 60px;
    }
}

.header-1 .mega-menu-wrapper .header-main .header-right {
    gap: 90px;
}

@media (max-width: 1899px) {
    .header-1 .mega-menu-wrapper .header-main .header-right {
        gap: 30px;
    }
}

@media (max-width: 1399px) {
    .header-1 .mega-menu-wrapper .header-main .header-right {
        gap: 50px;
    }
}

@media (max-width: 1199px) {
    .header-1 .mega-menu-wrapper .header-main .header-right {
        gap: 40px;
    }
}

.header-1 .mega-menu-wrapper .header-main .header-right .contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 1399px) {
    .header-1 .mega-menu-wrapper .header-main .header-right .contact-info {
        display: none !important;
    }
}

.header-1 .mega-menu-wrapper .header-main .header-right .contact-info .content p {
    text-transform: uppercase;
}

.header-1 .mega-menu-wrapper .header-main .header-right .contact-info .content h6 {
    font-size: 16px;
}

@media (max-width: 1199px) {
    .header-1 .mega-menu-wrapper .header-main .header-right .header-button {
        display: none !important;
    }
}

.header-1 .mega-menu-wrapper .header-main .header-right .search-icon {
    color: #fff;
}

@media (max-width: 1899px) {
    .header-1 .mega-menu-wrapper .header-main .header-right .search-icon {
        color:#0d3a7e;
    }
}

@media (max-width: 991px) {
    .header-1 .mega-menu-wrapper .header-main .header-right .search-icon {
        display: none !important;
    }
}

.header-1 .mega-menu-wrapper .header-main .header-right .header__hamburger .sidebar__toggle {
    color:#0d3a7e;
}


.sidebar__toggle {
    cursor: pointer;
}

.sidebar__toggle .header-bar {
    position: relative;
    width: 31px;
    height: 18px;
}

.sidebar__toggle .header-bar span {
    position: absolute;
    width: 100%;
    height: 2px;
    display: inline-block;
    transition: all 0.3s;
    left: 0;
    background: #fff;
    overflow: hidden;
}

.sidebar__toggle .header-bar span:first-child {
    top: 0;
    background: #fff;
    left: 16px;
    width: 15px;
}

.sidebar__toggle .header-bar span:nth-child(2) {
    top: 44%;
    background: #fff;
    width: 30px;
}

.sidebar__toggle .header-bar span:last-child {
    bottom: 0;
    background: #fff;
    width: 15px;
}

.sidebar__toggle .header-bar.active span:first-child {
    transform: rotate(45deg) translate(3px, 9px);
}

.sidebar__toggle .header-bar.active span:nth-child(2) {
    opacity: 0;
}

.sidebar__toggle .header-bar.active span:last-child {
    transform: rotate(-45deg) translate(3px, -9px);
}

.sidebar__toggle .header-bar:hover {
    cursor: pointer;
}

.sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: #fff;
    box-shadow:rgba(149, 157, 165, 0.2) 0px 8px 24px;;
    transition: all 0.9s;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
.offcanvas__logo img{
    width: 110px;
}

.offcanvas__info {
    background: #fff none repeat scroll 0 0;
    border-left: 2px solid#0d3a7e;
    position: fixed;
    right: 0;
    top: 0;
    width: 400px;
    height: 100%;
    -webkit-transform: translateX(calc(100% + 80px));
    -moz-transform: translateX(calc(100% + 80px));
    -ms-transform: translateX(calc(100% + 80px));
    -o-transform: translateX(calc(100% + 80px));
    transform: translateX(calc(100% + 80px));
    -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    z-index: 9999;
    overflow-y: scroll;
    overscroll-behavior-y: contain;
    scrollbar-width: none;
}

.offcanvas__info::-webkit-scrollbar {
    display: none;
}

.offcanvas__info.info-open {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

.offcanvas__wrapper {
    position: relative;
    height: 100%;
    padding: 30px 30px;
}

.offcanvas__wrapper .offcanvas__content .text {
    color:#5E5F63;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    background-color:#0d3a7e;
    position: relative;
    z-index: 9;
    cursor: pointer;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
    color: #fff;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
    margin-top: 50px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
    margin-top: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
    font-size: 16px;
    font-weight: 500;
    /* text-transform: capitalize; */
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
    margin-bottom: 15px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
    margin-right: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
    color:#0d3a7e;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
    width: 100%;
    padding: 20px 40px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
    margin-top: 30px;
    gap: 10px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    font-size: 16px;
    display: block;
    background: transparent;
    color:#16171A;
    border-radius: 50%;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    text-align: center;
    border: 1px solid#EEEFF4;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
    background-color:#0d3a7e;
    color: #fff;
}

.offcanvas__overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    background: #151515;
    z-index: 900;
    top: 0;
    opacity: 0;
    visibility: hidden;
    right: 0;
}

.offcanvas__overlay.overlay-open {
    opacity: 0.8;
    visibility: visible;
}

@media (max-width: 450px) {
    .offcanvas__info {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .offcanvas__wrapper {
        padding: 20px;
    }
}

.error-content h3 {
    font-weight: 700;
}

.mean-container a.meanmenu-reveal {
    display: none;
}

.mean-container .mean-nav {
    background: none;
    margin-top: 0;
}

.mean-container .mean-bar {
    padding: 0;
    min-height: auto;
    background: none;
}

.mean-container .mean-nav>ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none;
    display: block !important;
}

.mean-container .mean-nav>ul .home-menu {
    position: relative;
}

.mean-container .mean-nav>ul .home-menu .home-menu-thumb {
    position: relative;
    width: 280px;
}

.mean-container .mean-nav>ul .home-menu .home-menu-thumb .demo-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    gap: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav>ul .home-menu .home-menu-thumb .demo-button .theme-btn {
    padding: 10px 30px;
    color: #fff !important;
    width: initial;
    font-size: 14px;
    text-align: center;
}

.mean-container .mean-nav>ul .home-menu .home-menu-thumb .demo-button .theme-btn:hover {
    color: #fff !important;
}

.mean-container .mean-nav>ul .home-menu .home-menu-thumb::before {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(99, 92, 92, 0)), to(#292930));
    background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #292930 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    content: "";
}

.mean-container .mean-nav>ul .home-menu .home-menu-thumb:hover::before {
    visibility: visible;
    opacity: 1;
}

.mean-container .mean-nav>ul .home-menu .home-menu-thumb:hover .demo-button {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.mean-container .mean-nav>ul .home-menu .home-menu-thumb:hover .home-menu-btn {
    opacity: 1;
    visibility: visible;
    bottom: 50%;
    transform: translateY(50%);
}

.mean-container .mean-nav>ul .home-menu .home-menu-thumb img {
    width: 100%;
}

.mean-container .mean-nav>ul .home-menu .home-menu-content .home-menu-title {
    margin-top: 15px;
    display: inline-block;
    font-size: 16px;
}

.mean-container a.meanmenu-reveal {
    display: none !important;
}

.mean-container .mean-nav ul li a {
    width: 100%;
    padding: 10px 0;
    color:#16171A;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
}

.mean-container .mean-nav ul li a:hover {
    color:#0d3a7e;
}

.mean-container .mean-nav ul li a:last-child {
    border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
    color:#0d3a7e;
}

.mean-container .mean-nav ul li a.mean-expand {
    margin-top: 5px;
    padding: 0 !important;
}

.mean-container .mean-nav ul li>a>i {
    display: none;
}

.mean-container .mean-nav ul li>a.mean-expand i {
    display: inline-block;
}

.mean-container .mean-nav>ul>li:first-child>a {
    border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
    height: 200px;
    width: 100%;
    padding: 0;
    border-top: 0;
    margin-bottom: 20px;
}

.hero-1 {
    position: relative;
}

.hero-1 .swiper-slide-active .hero-image {
    -webkit-transform: scale(1.12);
    -moz-transform: scale(1.12);
    transform: scale(1.12);
}

.hero-1 .swiper-dot {
    position: absolute;
    bottom: 5%;
    left: 50%;
    z-index: 9;
    transform: translateX(-50%);
}

.hero-1 .swiper-dot .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    transition: 0.6s;
    background-color: #fff;
    opacity: 1;
    border-radius: 10px;
}

.hero-1 .swiper-dot .swiper-pagination-bullet:not(:last-child) {
    margin-right: 10px;
}

.hero-1 .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #0d3a7e;
    transition: 0.6s;
    position: relative;
}

.hero-1 .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    position: absolute;
    width: 22px;
    height: 22px;
    line-height: 22px;
    top: -6px;
    left: -6px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid #0d3a7e;
    content: "";
}

.hero-1 .shape-image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    bottom: 0;
}

.hero-1 .shape-image img {
    width: 100%;
    height: 100%;
}

.hero-1 .shape-image-2 {
    position: absolute;
    top: -20%;
    right: 0;
    z-index: 9;
}

@media (max-width: 1199px) {
    .hero-1 .shape-image-2 {
        display: none;
    }
}

.hero-1 .hero-image {
    overflow: hidden;
    position: absolute !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: -2;
    background-size: cover;
    transform: scale(1);
    -webkit-transition: all 8s ease-out 0s;
    -moz-transition: all 8s ease-out 0s;
    -ms-transition: all 8s ease-out 0s;
    -o-transition: all 8s ease-out 0s;
    transition: all 8s ease-out 0s;
}

.hero-1 .hero-image::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(90deg, #16171A 0.06%, rgba(22, 23, 26, 0) 99.93%);
    z-index: -1;
}

.hero-1 .hero-content {
    padding: 100px 0px;
    position: relative;
    z-index: 9;
}

@media (max-width: 767px) {
    .hero-1 .hero-content {
        text-align: center;
        margin: 0 auto;
        padding: 130px 0 130px;
    }
}

.hero-1 .hero-content h6 {
    color: #fff;
    background-color: #0d3a7e;
    padding: 8px 20px;
    line-height: 1;
    display: inline-block;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.hero-1 .hero-content h1 {
    color: #fff;
    margin-bottom: 15px;
}

@media (max-width: 1399px) {
    .hero-1 .hero-content h1 {
        font-size: 50px;
    }
}

@media (max-width: 991px) {
    .hero-1 .hero-content h1 {
        font-size: 56px;
    }
}

@media (max-width: 767px) {
    .hero-1 .hero-content h1 {
        font-size: 43px;
    }
}

@media (max-width: 575px) {
    .hero-1 .hero-content h1 {
        font-size: 34px;
    }
}

.hero-1 .hero-content p {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 40px;
}


/* about section css starts */
.about-section {
    position: relative;
}

.about-section .left-shape {
    position: absolute;
    top: -34%;
    left: 0;
}

.about-section .left-shape img{
    width: 100%;
}

.about-section .line-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.about-section .line-shape img {
    width: 100%;
    height: 100%;
}

.about-section .shape {
    position: absolute;
    bottom: -15%;
    right: 0;
}

@media (max-width: 1600px) {
    .about-section .shape {
        display: none;
    }
}

.about-wrapper .about-image-items {
    position: relative;
    padding-left: 25px;
}

.about-wrapper .about-image-items::before {
    position: absolute;
    top: 100px;
    left: 0;
    content: "";
    height: 210px;
    width: 4px;
    background-color:#0d3a7e;
    content: "";
}

.about-wrapper .about-image-items .border-shape {
    position: absolute;
    bottom: -30px;
    right: 22%;
    z-index: 1;
}

@media (max-width: 575px) {
    .about-wrapper .about-image-items .border-shape {
        display: none;
    }
}

.about-wrapper .about-image-items .about-image {
    width: 437px;
    height: 530px;
    position: relative;
    z-index: 1;
}

@media (max-width: 575px) {
    .about-wrapper .about-image-items .about-image {
        max-width: 430px;
        width: initial;
        height: 400px;
    }
}

.about-wrapper .about-image-items .about-image .about-image-2 {
    position: absolute;
    bottom: -100px;
    right: -100px;
}

@media (max-width: 1399px) {
    .about-wrapper .about-image-items .about-image .about-image-2 {
        right: -50px;
    }
}

@media (max-width: 1199px) {
    .about-wrapper .about-image-items .about-image .about-image-2 {
        right: 0;
    }
}

@media (max-width: 991px) {
    .about-wrapper .about-image-items .about-image .about-image-2 {
        bottom: 0;
    }
}

@media (max-width: 767px) {
    .about-wrapper .about-image-items .about-image .about-image-2 {
        bottom: 0;
        right: 0;
        width: 250px;
    }
    .about-wrapper .about-image-items .about-image .about-image-2 img {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 767px) {
    .about-wrapper .about-image-items .about-image .about-image-2 {
        width: 200px;
    }
}

.about-wrapper .about-content .circle-progress-bar-wrapper {
    display: flex;
    align-items: center;
    gap: 70px;
    margin-top: 50px;
    flex-wrap: wrap;
}

@media (max-width: 1399px) {
    .about-wrapper .about-content .circle-progress-bar-wrapper {
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .about-wrapper .about-content .circle-progress-bar-wrapper {
        margin-top: 40px;
        gap: 70px;
    }
}

@media (max-width: 991px) {
    .about-wrapper .about-content .circle-progress-bar-wrapper {
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .about-wrapper .about-content .circle-progress-bar-wrapper {
        margin-top: 30px;
        flex-wrap: wrap;
        gap: 10px;
    }
}

.about-wrapper .about-content .circle-progress-bar-wrapper .single-circle-bar {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-wrapper .about-content .circle-progress-bar-wrapper .single-circle-bar span {
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
}

.about-wrapper .about-content .circle-progress-bar-wrapper .single-circle-bar .content h6 {
    display: block;
    margin-bottom: 0;
}

@media (max-width: 575px) {
    .about-wrapper .about-content .circle-progress-bar-wrapper .single-circle-bar .content br {
        display: block;
    }
}

.about-wrapper .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar {
    position: relative;
    height: 120px;
    width: 120px;
}

.about-wrapper .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar div {
    position: absolute;
    height: 100px;
    width: 100px;
    border-radius: 50%;
}

.about-wrapper .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar div span {
    position: absolute;
    font-size: 30px;
    line-height: 92px;
    height: 90px;
    width: 90px;
    left: 5px;
    top: 5px;
    font-weight: 700;
    text-align: center;
    border-radius: 50%;
    background-color: #fff;
    color:#16171A;
}

@media (max-width: 575px) {
    .about-wrapper .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar div span {
        font-size: 24px;
    }
}

.about-wrapper .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar .background {
    background-color:#F5F5F7 !important;
}

.about-wrapper .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar .rotate {
    clip: rect(0 50px 100px 0);
    background-color:#0d3a7e !important;
}

.about-wrapper .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar .left {
    clip: rect(0 50px 100px 0);
    opacity: 1;
    background-color:#F5F5F7 !important;
}

.about-wrapper .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar .right {
    clip: rect(0 50px 100px 0);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    opacity: 0;
    background-color:#0d3a7e !important;
}

.about-wrapper .about-content .circle-progress-bar-wrapper.style-2 .single-circle-bar {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-wrapper .about-content .circle-progress-bar-wrapper.style-2 .single-circle-bar span {
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
}

.about-wrapper .about-content .circle-progress-bar-wrapper.style-2 .single-circle-bar .content h6 {
    display: block;
    margin-bottom: 0;
}

@media (max-width: 575px) {
    .about-wrapper .about-content .circle-progress-bar-wrapper.style-2 .single-circle-bar .content br {
        display: block;
    }
}

.about-wrapper .about-content .circle-progress-bar-wrapper.style-2 .single-circle-bar .circle-bar {
    position: relative;
    height: 120px;
    width: 120px;
}

.about-wrapper .about-content .circle-progress-bar-wrapper.style-2 .single-circle-bar .circle-bar div {
    position: absolute;
    height: 100px;
    width: 100px;
    border-radius: 50%;
}

.about-wrapper .about-content .circle-progress-bar-wrapper.style-2 .single-circle-bar .circle-bar div span {
    position: absolute;
    font-size: 30px;
    line-height: 92px;
    height: 90px;
    width: 90px;
    left: 5px;
    top: 5px;
    font-weight: 700;
    text-align: center;
    border-radius: 50%;
    background-color: #fff;
    color:#16171A;
}

@media (max-width: 575px) {
    .about-wrapper .about-content .circle-progress-bar-wrapper.style-2 .single-circle-bar .circle-bar div span {
        font-size: 24px;
    }
}

.about-wrapper .about-content .circle-progress-bar-wrapper.style-2 .single-circle-bar .circle-bar .background {
    background-color:#F5F5F7 !important;
}

.about-wrapper .about-content .circle-progress-bar-wrapper.style-2 .single-circle-bar .circle-bar .rotate {
    background-color:#0d3a7e !important;
}

.about-wrapper .about-content .circle-progress-bar-wrapper.style-2 .single-circle-bar .circle-bar .left {
    clip: rect(0 50px 100px 0);
    opacity: 1;
    background-color:#F5F5F7 !important;
}

.about-wrapper .about-content .circle-progress-bar-wrapper.style-2 .single-circle-bar .circle-bar .right {
    background-color:#0d3a7e !important;
}

.about-wrapper .about-content .about-list {
    margin-top: 20px;
}

@media (max-width: 991px) {
    .about-wrapper .about-content .about-list {
        margin-top: 0;
    }
}

.about-wrapper .about-content .about-list li {
    font-weight: 600;
    font-size: 18px;
}

@media (max-width: 991px) {
    .about-wrapper .about-content .about-list li {
        font-size: 16px;
    }
}

@media (max-width: 1199px) {
    .about-wrapper .about-content .about-list li {
        font-size: 15px;
    }
}

.about-wrapper .about-content .about-list li:not(:last-child) {
    margin-bottom: 10px;
}

.about-wrapper .about-content .about-list li i {
    color:#0d3a7e;
}

.about-wrapper .about-content .about-author {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

@media (max-width: 1399px) {
    .about-wrapper .about-content .about-author {
        gap: 40px;
    }
}

@media (max-width: 1199px) {
    .about-wrapper .about-content .about-author {
        flex-wrap: wrap;
    }
}

.about-wrapper .about-content .about-author .author-image {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-wrapper .about-content .about-author .author-image .content p {
    font-size: 14px;
    color:#0d3a7e;
    font-weight: 500;
    margin-top: -10px;
}

@media (max-width: 575px) {
    .about-wrapper.style-2 .about-image-items {
        padding-left: 0;
    }
}

@media (max-width: 575px) {
    .about-wrapper.style-2 .about-image-items .about-image {
        max-width: 525px;
    }
}

.about-wrapper.style-2 .about-image-items .about-image .experience-text-area {
    position: absolute;
    top: 50px;
    left: -25%;
    padding: 35px 45px;
    background-color:#0d3a7e;
    width: 320px;
}

@media (max-width: 1399px) {
    .about-wrapper.style-2 .about-image-items .about-image .experience-text-area {
        top: 0px;
        left: 0;
    }
}

@media (max-width: 991px) {
    .about-wrapper.style-2 .about-image-items .about-image .experience-text-area {
        padding: 30px 20px;
        width: 264px;
    }
}

.about-wrapper.style-2 .about-image-items .about-image .experience-text-area h2 {
    font-size: 65px;
    color: #fff;
}

@media (max-width: 575px) {
    .about-wrapper.style-2 .about-image-items .about-image .experience-text-area h2 {
        font-size: 32px;
    }
}

.about-wrapper.style-2 .about-image-items .about-image .experience-text-area h6 {
    font-size: 16px;
    color: #fff;
    position: relative;
}

.about-wrapper.style-2 .about-image-items .about-image .experience-text-area h6::before {
    position: absolute;
    bottom: -5px;
    left: 34%;
    transform: translateX(-50%);
    content: "";
    width: 147px;
    height: 5px;
    background-image: url(../../assets/images/about/bar.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.about-wrapper.style-2 .about-image-items .about-image .experience-text-area .star {
    margin-top: 15px;
}

.about-wrapper.style-2 .about-image-items .about-image .experience-text-area .star span {
    font-size: 15px;
    color: #fff;
}

.about-wrapper.style-2 .about-image-items .about-image .experience-text-area .ratting {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 15px 20px;
    text-align: center;
    background-color: #fff;
    z-index: 9;
}

@media (max-width: 575px) {
    .about-wrapper.style-2 .about-image-items .about-image .experience-text-area .ratting {
        padding: 15px;
    }
}

.about-wrapper.style-2 .about-image-items .about-image .experience-text-area .ratting span {
    font-size: 18px;
    font-weight: 600;
    color:#0d3a7e;
}

@media (max-width: 575px) {
    .about-wrapper.style-2 .about-image-items .about-image .experience-text-area .ratting span {
        font-size: 15px;
    }
}

.about-wrapper.style-2 .about-image-items .about-image .experience-text-area .ratting::after {
    position: absolute;
    right: 4px;
    top: 0px;
    font-family: "Font Awesome 5 Pro";
    content: "\f005";
    font-size: 14px;
    color:#0d3a7e;
}

.about-wrapper.style-2 .about-image-items .about-image .experience-text-area .ratting::before {
    position: absolute;
    top: 8px;
    left: -8px;
    right: 0px;
    width: 94%;
    height: 100%;
    content: "";
    border: 1px solid #fff;
    z-index: -1;
}

.about-wrapper.style-2 .about-image-items .about-image .about-image-2 {
    bottom: -140px;
}

@media (max-width: 1399px) {
    .about-wrapper.style-2 .about-image-items .about-image .about-image-2 {
        bottom: initial;
        top: 0;
    }
}

@media (max-width: 1199px) {
    .about-wrapper.style-2 .about-content {
        margin-left: 20px;
    }
}

@media (max-width: 991px) {
    .about-wrapper.style-2 .about-content {
        margin-left: 0;
    }
}

@media (max-width: 1199px) {
    .about-wrapper.style-2 .about-content .section-title h2 {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .about-wrapper.style-2 .about-content .section-title h2 {
        font-size: 24px;
    }
}

.about-wrapper.style-2 .about-content .icon-area {
    margin-top: 30px;
    gap: 30px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid#EEEFF4;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

@media (max-width: 470px) {
    .about-wrapper.style-2 .about-content .icon-area {
        flex-wrap: wrap;
    }
}

.about-wrapper.style-2 .about-content .icon-area .icon-items .icon {
    font-size: 52px;
    color:#0d3a7e;
    margin-bottom: 20px;
}

.about-wrapper.style-2 .about-content .icon-area .icon-items .content h5 {
    margin-bottom: 10px;
}

.about-wrapper.style-2 .about-content .about-author {
    gap: 30px;
}

.about-wrapper.style-2 .about-content .about-author .author-image {
    display: flex;
    align-items: center;
    gap: 20px;
}

.about-wrapper.style-2 .about-content .about-author .author-image .content p {
    font-weight: 600;
    color:#5E5F63;
    margin-top: 10px;
    position: relative;
}

.about-wrapper.style-2 .about-content .about-author .author-image .content p::before {
    position: absolute;
    bottom: -5px;
    left: 34%;
    transform: translateX(-50%);
    content: "";
    width: 124px;
    height: 5px;
    background-image: url(../images/about/);
    background-repeat: no-repeat;
    background-size: cover;
}

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

/* Track */

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px#0d3a7e;
    border-radius: 5px;
}

/* Handle */

::-webkit-scrollbar-thumb {
    background:#0d3a7e;
    border-radius: 10px;
}

.fix {
    overflow: hidden;
}

.ralt {
    position: relative;
}

.ml-100 {
    margin-left: 100px;
}

.video-pulse::after,
.video-pulse::before {
    position: absolute;
    content: "";
    width: 90px;
    height: 90px;
    border: 1px solid #fff;
    opacity: 0.7;
    left: 0;
    top: 0;
    border-radius: 50%;
    -webkit-animation-duration: 2.5s;
    animation-duration: 2.5s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-name: video-animation;
    animation-name: video-animation;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.video-pulse::before {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.ripple {
    position: relative;
}

.ripple::before,
.ripple::after {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60px;
    height: 60px;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(214, 17, 30, 0.5);
    -webkit-animation: rippleOne 3s infinite;
    animation: rippleOne 3s infinite;
}

.ripple::before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
}

.ripple::after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
}

.mt-10 {
    margin-top: 10px;
}

@media (max-width: 991px) {
    br {
        display: none;
    }
}

/* background */

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

.nice-select {
    color:#5E5F63;
    background-color: transparent;
    font-size: 16px;
    width: unset;
    outline: none;
    padding: 18px 30px;
    border: none;
    border: 1px solid #E4E4E4;
    font-weight: 500;
    color:#5E5F63;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 575px) {
    .nice-select {
        padding: 12px 20px;
    }
}

.nice-select span {
    color:#5E5F63;
    font-size: 16px;
    margin-bottom: 0 !important;
    font-weight: 500;
}

.nice-select:hover::after {
    border-bottom: 1px solid#5E5F63;
    border-right: 1px solid#5E5F63;
}

.nice-select option {
    color:#5E5F63;
}

.nice-select .current {
    margin-right: 12px;
}

.nice-select:after {
    right: 23px;
    border-bottom: 1px solid#5E5F63;
    border-right: 1px solid#5E5F63;
    width: 10px;
    height: 10px;
}

.nice-select.open .list {
    background:#F5F5F7;
    margin-top: 16px;
    width: 100%;
    text-transform: capitalize;
    color:#5E5F63;
}

.nice-select .option.selected.focus {
    background:#F5F5F7;
    outline: none;
    color:#0d3a7e;
    text-transform: capitalize;
    font-size: 16px;
}

.nice-select .option {
    border: none;
}

.nice-select .option:hover {
    background: transparent;
}

.head-color {
    color:#16171A;
}

.theme-color-1 {
    color:#0d3a7e !important;
}

.border-none {
    border-top: none !important;
}

.mbm-10 {
    margin-bottom: -20px;
}

.ml-30 {
    margin-left: 30px;
}

@media (max-width: 1199px) {
    .ml-30 {
        margin-left: 0;
    }
}

.box-shadow {
    box-shadow:rgba(149, 157, 165, 0.2) 0px 8px 24px;;
}

.team-box-items {
    margin-top: 30px;
    transition: all 0.4s ease-in-out;
}

.team-box-items.style-2 {
    margin-top: 60px;
}

.team-box-items .team-image {
    position: relative;
    overflow: hidden;
}

.team-box-items .team-image img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    transition: all 0.4s ease-in-out;
}

.team-box-items .team-image::after {
    background: linear-gradient(90deg, rgba(var(--white-rgb, 255, 255, 255), 0.13) 0px, rgba(var(--white-rgb, 255, 255, 255), 0.13) 77%, rgba(var(--white-rgb, 255, 255, 255), 0.3) 92%, rgba(var(--white-rgb, 255, 255, 255), 0));
    content: "";
    height: 200%;
    left: -210%;
    opacity: 0;
    position: absolute;
    top: -50%;
    transition: all 0.5s ease 0s;
    transition-property: all;
    transition-duration: 0.5s;
    transition-timing-function: ease;
    width: 200%;
}

.team-box-items .team-image .social-icon {
    gap: 10px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    right: 5%;
    z-index: 9;
}

.team-box-items .team-image .social-icon li {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    cursor: pointer;
    background-color:#0d3a7e;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 40px;
}

.team-box-items .team-image .social-icon li:hover {
    background-color:#16171A;
}

.team-box-items .team-image .social-icon li:hover i {
    color: #fff;
}

.team-box-items .team-image .social-icon li a i {
    color: #fff;
    font-size: 16px;
    transition: all 0.4s ease-in-out;
}

.team-box-items .team-content {
    margin-top: 20px;
}

.team-box-items .team-content h3 {
    margin-bottom: 5px;
}

.team-box-items .team-content h3 a:hover {
    color:#0d3a7e;
}

.team-box-items:hover {
    transform: translateY(-10px);
}

.team-box-items:hover .team-image::after {
    left: -30%;
    opacity: 1;
    top: -20%;
    transition-duration: 0.5s, 0.5s, 0.15s;
    transition-property: left, top, opacity;
    transition-timing-function: linear;
}

.team-box-items:hover .team-image .social-icon li {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}



.team-card-items {
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1019607843);
}

.team-card-items .team-content {
    padding: 40px;
}

.team-card-items .team-content h4 {
    margin-bottom: 5px;
}

.team-card-items .team-content h4 a {
    color: #fff;
}

.team-card-items .team-image {
    position: relative;
    padding: 0 20px 20px 20px;
}

.team-card-items .team-image img {
    width: 100%;
    height: 100%;
}

.team-card-items .team-image .social-profile {
    position: absolute;
    left: 20px;
    bottom: 20px;
    content: "";
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    z-index: 2;
    display: flex;
    overflow: hidden;
    font-size: 22px;
    align-items: center;
}

.team-card-items .team-image .social-profile ul {
    transform: translateX(-100px);
    transition: all 0.6s ease-in-out;
    opacity: 0;
    visibility: hidden;
    display: flex;
    margin-top: 21px;
}

.team-card-items .team-image .social-profile ul li a {
    padding: 8px 15px;
    text-align: center;
    font-size: 14px;
    display: block;
    background: #fff;
    color:#16171A;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    text-align: center;
    margin: 0 auto;
    color:#5E5F63;
}

.team-card-items .team-image .social-profile ul li a:hover {
    color:#0d3a7e;
}

.team-card-items .team-image .social-profile .plus-btn {
    z-index: 2;
    cursor: pointer;
    width: 65px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    font-size: 18px;
    display: inline-block;
    background:#0d3a7e;
    color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.team-card-items .team-image .social-profile:hover ul {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}



.team-details-wrapper .team-image {
    height: 525px;
}

@media (max-width: 575px) {
    .team-details-wrapper .team-image {
        height: 400px;
    }
    .team-details-wrapper .team-image img {
        object-fit: cover;
    }
}

.team-details-wrapper .team-details-content .star a {
    font-size: 14px;
    color:#16171A;
}

.team-details-wrapper .team-details-content .star a i {
    color: var(--ratting);
}

.team-details-wrapper .team-details-content h3 {
    margin-bottom: 5px;
    font-size: 44px;
}

@media (max-width: 767px) {
    .team-details-wrapper .team-details-content h3 {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .team-details-wrapper .team-details-content h3 {
        font-size: 24px;
    }
}

.team-details-wrapper .team-details-content span {
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
}

.team-details-wrapper .team-details-content .social-icon {
    margin-top: 40px;
    gap: 15px;
    position: relative;
    z-index: 9;
}

@media (max-width: 575px) {
    .team-details-wrapper .team-details-content .social-icon {
        margin-top: 20px;
    }
}

.team-details-wrapper .team-details-content .social-icon a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    display: block;
    background:#F5F5F7;
    color:#5E5F63;
    border-radius: 50%;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    text-align: center;
}

.team-details-wrapper .team-details-content .social-icon a:hover {
    background-color:#0d3a7e;
    color: #fff;
}

.team-skill {
    background-color:#0d3a7e;
}

.team-skill-wrapper .team-skill-content h3 {
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    line-height: 125%;
}

@media (max-width: 1199px) {
    .team-skill-wrapper .team-skill-content h3 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .team-skill-wrapper .team-skill-content h3 {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .team-skill-wrapper .team-skill-content h3 {
        font-size: 24px;
    }
}

.team-skill-wrapper .progress-wrap .pro-items:not(:last-child) {
    margin-bottom: 20px;
}

.team-skill-wrapper .progress-wrap .pro-items .pro-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.team-skill-wrapper .progress-wrap .pro-items .pro-head .point {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.team-skill-wrapper .progress-wrap .pro-items .pro-head .title {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
}

.team-skill-wrapper .progress-wrap .pro-items .progress {
    background: #fff;
    justify-content: flex-start;
    border-radius: 0;
    align-items: center;
    position: relative;
    display: flex;
    height: 6px;
    width: 100%;
}

.team-skill-wrapper .progress-wrap .pro-items .progress-value {
    animation: load 3s normal forwards;
    box-shadow: 0 10px 40px -10px #fff;
    border-radius: 0;
    background: #fff;
    height: 6px;
    width: 0;
}

.team-skill-wrapper .progress-wrap .pro-items .style-two {
    animation: load2 3s normal forwards;
}

@keyframes load {
    0% {
        width: 0;
    }
    100% {
        width: 65%;
    }
}

@keyframes load2 {
    0% {
        width: 0;
    }
    100% {
        width: 75%;
    }
}

.team-contact-wrapper .get-touch-items .get-touch-title h2 {
    margin-bottom: 10px;
}

.team-contact-wrapper .get-touch-items .contact-items {
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 100px;
}

@media (max-width: 575px) {
    .team-contact-wrapper .get-touch-items .contact-items {
        margin-top: 20px;
        gap: 30px;
        flex-wrap: wrap;
    }
}

.team-contact-wrapper .get-touch-items .contact-items .contact-info h4 {
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 10px;
    font-size: 22px;
}

.team-contact-wrapper .get-touch-items .contact-items .contact-info h5 {
    text-transform: capitalize;
    font-size: 18px;
}

.team-contact-wrapper .get-touch-items .contact-items .contact-info .social-icon {
    gap: 15px;
    position: relative;
    z-index: 9;
}

@media (max-width: 575px) {
    .team-contact-wrapper .get-touch-items .contact-items .contact-info .social-icon {
        margin-top: 20px;
    }
}

.team-contact-wrapper .get-touch-items .contact-items .contact-info .social-icon a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    display: block;
    background:#F5F5F7;
    color:#5E5F63;
    border-radius: 50%;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    text-align: center;
}

.team-contact-wrapper .get-touch-items .contact-items .contact-info .social-icon a:hover {
    background-color:#0d3a7e;
    color: #fff;
}

.team-button {
    text-align: center;
    margin-top: 30px;
}

.team-section {
    position: relative;
}

.team-section .dot-shape-2 {
    position: absolute;
    top: 0;
    right: 0;
}
/************************************/

/***    08. Work Process css	  ***/

/************************************/

.our-work-process {
    padding: 100px 0;
    background-image: url('../images/work-process-bg.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.wrok-process-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.work-process-item {
    position: relative;
    text-align: center;
    padding-top: 10px;
    width: calc(25% - 22.5px);
}

.work-process-item:nth-child(odd) {
    margin-top: 90px;
}

.work-process-item:after {
    position: absolute;
    content: '';
    top: -30px;
    right: -65px;
    width: 100px;
    height: 50px;
    background: url('../images/work-process-arrow.svg') no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 0;
}
.section-row {
    margin-bottom: 80px;
}
.dark-section {
    background-color: #fd5523de;
}

.dark-section .section-title h2, .dark-section .section-title h1, .dark-section .section-title p {
    color: #fff;
    font-size: 35px;
}
.dark-section .section-title h3 {
    color: #fff;
}
.section-row .section-title.section-title-center {
    width: 100%;
    max-width: 640px;
    text-align: center;
    margin: 0 auto;
}
.work-process-item:last-child:after,
.work-process-item:nth-child(4n+4):after {
    display: none;
}

.work-process-item:nth-child(even):after {
    top: 132px;
    transform: rotateX(180deg);
}

.work-process-item .icon-box {
    position: relative;
    width: 162px;
    height: 162px;
    background: #0d3a7e;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.work-process-item .icon-box:before {
    content: '';
    position: absolute;
    height: calc(100% + 20px);
    width: calc(100% + 20px);
    border: 2px dashed #F4F5F9;
    border-radius: 50%;
}

.work-process-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 60px;
    z-index: 1;
}

.work-process-item .icon-box .work-process-number {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-process-item .icon-box .work-process-number h3 {
    color: #FD5523;
    font-size: 24px;
}

.work-process-content h3 {
    color: #fff;
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.work-process-content p {
    color: #F4F5F9;
    margin: 0;
}

/*** 

====================================================================
    Services Section
====================================================================

***/
.sec-title1 .sub-title1 {
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 30px;
    font-weight: 800;
    color: #000;
    border: 3px solid #eee9e3;
    letter-spacing: 0.2em;
    top: -5px;
    margin-bottom: 14px;
    margin-top: 7px;
    padding: 2px 24px;
    height: 40px;
    text-align: center;
    text-transform: uppercase;
}
.sec-title1 .sub-title1::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    width: 19px;
    height: 14px;
    background-image: url(../images/icons/subtitle-before.png);
    transform: translateX(-50%);
}
.sec-title1 {
    position: relative;
    margin-bottom: 20px;
}
.sec-title1 h2 {
    position: relative;
    font-size: 30px;
    color: #000;
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 0;
}


.sec-title .sub-title {
    position: relative;
    display: inline-block;
    font-size: 12px;
    line-height: 30px;
    font-weight: 800;
    color: #fff;
    border: 3px solid #eee9e3;
    letter-spacing: 0.2em;
    top: -5px;
    margin-bottom: 14px;
    margin-top: 7px;
    padding: 2px 24px;
    height: 40px;
    text-align: center;
    text-transform: uppercase;
}
.sec-title .sub-title::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    width: 19px;
    height: 14px;
    background-image: url(../images/icons/subtitle-before.png);
    transform: translateX(-50%);
}
.sec-title {
    position: relative;
    margin-bottom: 50px;
}
.sec-title h2 {
    position: relative;
    font-size: 50px;
    color: #fff;
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 0;
}
.services-section {
    position: relative;
    padding: 120px 0;
    margin: 40px 0px;
}

.services-section .bg-image {
    height: calc(100% + 334px);
}

.services-section .bg-image:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #09161d;
    opacity: 0.9;
}

.services-section .default-dots .owl-dots {
    margin-top: 40px;
}

.services-section .service-carousel-one .service-block .inner-box {
    box-shadow: none;
}

.services-section.style-two .bg-image {
    height: calc(100% + 163px);
}

.service-block {
    margin-bottom: 30px;
}

.service-block .inner-box {
    position: relative;
    padding: 10px;
    box-shadow: 0px 10px 60px rgba(171, 171, 171, 0.25);
    background-color: #fff;
}

.service-block .inner-box:hover .icon-box .icon {
    color: #fff;
    background-color: #0d3a7e;
}

.service-block .inner-box:hover .image img:first-child {
    transform: translateX(0) scaleX(1);
    opacity: 1;
    filter: blur(0);
}

.service-block .inner-box:hover .image img:nth-child(2) {
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    filter: blur(10px);
}

.service-block .inner-box .image {
    position: relative;
    display: block;
    margin-bottom: 0;
    overflow: hidden;
}

.service-block .inner-box .image img {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 500ms ease;
}

.service-block .inner-box .image img:first-child {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1;
    transform: translateX(50%) scaleX(2);
    opacity: 0;
    filter: blur(10px);
}

.service-block .inner-box .icon-box {
    border-top: 3px solid #0d3a7e;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 20px;
    margin-top: -30px;
    border-radius: 10px;
    padding: 15px 15px 15px 20px;
    background-color: #FAF8F7;
    z-index: 3;
}

@media (max-width: 575.98px) {
    .service-block .inner-box .icon-box {
        margin: -30px 5px 0;
    }
}

.service-block .inner-box .icon-box .count {
    position: relative;
    color:#444444;
    font-size: 18px;
    letter-spacing: -0.36px;
}

.service-block .inner-box .icon-box .title {
    position: relative;
    font-weight: 800;
    letter-spacing: -0.48px;
    margin-bottom: 5px;
    font-size: 17px;
}

.service-block .inner-box .icon-box .title a:hover {
    color: #0d3a7e;
}

.service-block .inner-box .icon-box .icon {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: #0d3a7e;
    border-radius: 50%;
    box-shadow: 0px 0px 60px rgba(226, 9, 53, 0.2);
    background-color: #fff;
    transition: all 300ms ease;
}
.service-block .inner-box .icon-box .icon img{
   width: 40px;
}

.service-block .inner-box .icon-box .icon {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: #0d3a7e;
    border-radius: 50%;
    box-shadow: 0px 0px 60px rgba(226, 9, 53, 0.2);
    background-color: #fff;
    transition: all 300ms ease;
}

.service-block .inner-box .icon-box .icon img {
    width: 40px;
    transition: filter 300ms ease;
}

/* Hover effect */
/* .service-block .inner-box .icon-box .icon:hover {
    background-color: #0d3a7e; 
} */

.service-block .inner-box .icon-box .icon:hover img {
    filter: brightness(0) invert(1); /* Turns the image white */
}

.service-block .icon-box .icon:hover {
    background-color: #fff;
    color: #fff;
}
.service-block .inner-box .content {
    position: relative;
    padding: 15px 30px 12px;
}

@media (max-width: 1199.98px) {
    .service-block .inner-box .content {
        padding: 15px 15px 10px;
    }
}

@media (max-width: 575.98px) {
    .service-block .inner-box .content {
        padding: 15px 5px 10px;
    }
}

.service-block .inner-box .content .text {
    position: relative;
    margin-bottom: 23px;
    padding-bottom: 20px;
    border-bottom: 1.2px solid rgba(22, 23, 26, 0.1);
}

@media (max-width: 1199.98px) {
    .service-block .inner-box .content .text {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
}

.service-block .inner-box .content .read-more {
    position: relative;
    color: #0d3a7e;
    font-size: 16px;
    font-weight: 700;
}

.service-block .inner-box .content .read-more:hover {
    text-decoration: underline;
}



/* footer section css starts */
.main-footer {
    background: url('../images/footer-bg.png'), #0d3a7e;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    padding: 100px 0 0;
}

.about-footer {
    margin-right: 20px;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    width: 100%;
    max-width: 145px;
}

.about-footer-content p {
    color: #fff;
    margin-bottom: 0;
}

.footer-links h3 {
    font-size: 20px;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.footer-links p {
    color: #fff;
    margin-bottom: 10px;
}

.footer-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links ul li {
    color: #fff;
    text-transform: capitalize;
    line-height: 1.5em;
    margin-bottom: 12px;
}

.footer-links ul li:last-child {
    margin-bottom: 0;
}

.footer-links ul li a {
    display: inline-block;
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover {
    color:#FD5523;
}

.footer-contact-item {
    display: flex;
    align-items: baseline;
    margin-bottom: 20px;
}

.footer-contact-item:last-child {
    margin-bottom: 0;
}

.footer-contact-item .icon-box {
    margin-right: 10px;
}

.footer-contact-item .icon-box img {
    width: 100%;
    max-width: 20px;
}

.footer-contact-content {
    width: calc(100% - 30px);
}

.footer-contact-content p {
    color: #fff;
    margin-bottom: 0;
}

.footer-contact-content p a {
    color: inherit;
    transition: all 0.4s ease-in-out;
}

.footer-contact-content p a:hover {
    color:#FD5523;
}

.footer-newsletter-form .form-group .form-control {
    padding: 13px 20px;
    border: none;
    background: #fff;
    color: #565969;
    border-radius: 8px;
    line-height: 1.5em;
    box-shadow: none;
    margin-bottom: 20px;
}

.footer-newsletter-form .form-group .form-control::placeholder {
    color: #565969;
}
.footer-copyright {
    display: flex;
    gap: 15px 20px;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ffffff24;
    padding: 20px 0 20px;
    margin-top: 40px;
}

.footer-copyright-text p {
    color: #fff;
    margin-bottom: 0;
}

.footer-social-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-social-links ul li {
    display: inline-block;
    margin-right: 20px;
}

.footer-social-links ul li:last-child {
    margin-right: 0;
}

.footer-social-links ul li a {
    width: 40px;
    height: 40px;
    color: #062E39;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a:hover {
    color: #fff;
    background:#FD5523;
}

.footer-social-links ul li a i {
    font-size: 18px;
    color: inherit;
}



/*Testimonial css starts  */
.testimonials {
    padding: 40px 0px;
}
.testimonial{
    border-left: 3px solid #0d3a7e;
    padding: 100px 0 100px 275px;
    position: relative
}
.testimonial:before,
.testimonial:after{
    content: "";
    width: 320px;
    height: 55px;
    border-right: 3px solid #0d3a7e;
    position: absolute;
    left: 0;
}
.testimonial:before{
    border-top: 3px solid #0d3a7e;
    top: 0;
}
.testimonial:after{
    border-bottom: 3px solid #0d3a7e;
    bottom: 0;
}
.testimonial .pic{
    width: 100px;
    height: 100px;
    position: absolute;
    top: 100px;
    left: 100px;
}
.testimonial .pic img{
    width: 100%;
    height: auto;
}
.testimonial .description{
    font-size: 14px;
    color: #7a7e82;
    line-height: 27px;
    position: relative;
}
.testimonial .description:before{
    content: "\f10d";
    font-family: "FontAwesome";
    font-weight: 900;
    position: absolute;
    top: -70px;
    left: 0;
    font-size: 20px;
    color: #7a7e82;
}
.testimonial .testimonial-title{
    font-size: 22px;
    font-weight:800;
    color: #22272c;
    text-transform: capitalize;
}
.testimonial .post{
    display: block;
    font-size: 15px;
    font-weight: 700;
    color :#0d3a7e;
    margin-top: 10px;
}
.owl-theme .owl-controls{
    text-align: right;
    margin-top: 30px;
}
.owl-theme .owl-controls .owl-buttons div{
    background: #0d3a7e;
    border-radius: 0;
    opacity: 1;
    padding: 5px 10px;
}
.owl-prev:before,
.owl-next:before{
    content: "\f053";
    font-family: "FontAwesome"; 
    font-weight: 900;
    color: #fff;
}
.owl-next:before{
    content: "\f054";
}
@media only screen and (max-width: 990px){
    .testimonial{
        padding: 80px 0 80px 265px;
    }
}
@media only screen and (max-width: 767px){
    .testimonial{
        padding: 0;
        border: none;
    }
    .testimonial:before,
    .testimonial:after{
        border: none;
    }
    .testimonial .pic{
        position: relative;
        top: 0;
        left: 0;
    }
    .testimonial .description{
        margin-top: 15px;
    }
    .testimonial .description:before{
        content: "";
    }
}

/* testimonial css ends */

/** immigration-section **/

.immigration-section {
    position: relative;
    padding: 50px 0px;
}
.immigration-section .sec-title{
  margin-bottom: 70px;
}

.immigration-block-one .inner-box{
  position: relative;
  display: block;
  overflow: hidden;
  text-align: center;
  margin-bottom: 30px;
}

.immigration-block-one .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
}

.immigration-block-one .inner-box .image-box:before{
  position: absolute;
  content: '';
  background: #000;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  opacity: 0.5;
  z-index: 1;
}

.immigration-block-one .inner-box .image-box img{
  width: 100%;
  transition: all 500ms ease;
}

.immigration-block-one .inner-box:hover .image-box img{
  transform: scale(1.05);
}

.immigration-block-one .inner-box .text{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  padding: 30px 15px;
  z-index: 1;
}

.immigration-block-one .inner-box .text h3 a{
  color: #fff;
}

.immigration-block-one .inner-box .text h3 a:hover{
  text-decoration: none;
}

.immigration-section .more-text{
  position: relative;
  display: block;
  text-align: center;
  margin-top: 34px;
}

.immigration-section .more-text h3{
  font-weight: 400;
}

.immigration-section .more-text h3 a span{
  display: inline-block;
  line-height: 24px;
  transition: all 500ms ease;
}

.immigration-section .more-text h3 a i{
  position: relative;
  font-size: 14px;
  color: #2d5883;
  margin-left: 10px;
  font-weight: 600;
  top: -2px;
}

.immigration-section .more-text h3 a:hover span{
  color: #2d5883 !important;
  border-color: #2d5883 !important;
}

.bg-color-3{
  background: #eff2f5;
}
.immigration-block-one .inner-box:hover .image-box img {
    transform: scale(1.05);
}




@media (max-width: 575px) {
 .work-process-item {
    position: relative;
    text-align: center;
    padding-top: 10px;
    width: 100%;
}
.work-process-item:nth-child(odd) {
    margin-top: 10px;
}
.work-process-item:after {
   display: none;
}
    .header-main {
        padding: 0px;
    }
    .header-1 .mega-menu-wrapper .header-main .header-right .header__hamburger .sidebar__toggle {
    color: #0d3a7e;
    font-size: 32px;
}
.sec-title h2 {
    font-size: 30px;
}
}