@import url(https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Prata&display=swap);
@import url(https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Prata&display=swap);
@import url(https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Manrope:wght@200..800&family=Prata&display=swap);

:root {
    --body: #fff;
    --black: #000;
    --white: #fff;
    --theme: #30784B;
    --header: #00395B;
    --text: #5F5D62;
    --border: #5656564D;
    /* --bg: #FEF1EE; */
    --bg: #fff;
    --box-shadow: 11px 15px 79.9px 48px rgba(10, 6, 68, 0.05)
}

.theme-btn {
    display: inline-block;
    vertical-align: middle;
    background-color: var(--theme);
    color: var(--white);
    font-size: 15px;
    font-weight: 900;
    padding: 6px 6px 6px 32px;
    transition: all .4s ease-in-out;
    text-transform: capitalize;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-radius: 44px;
    font-family: "DM Sans", sans-serif;
    line-height: 1
}

.theme-btn span {
    position: relative;
    color: var(--white);
    z-index: 999;
    margin-right: 25px
}

@media (max-width:575px) {
    .theme-btn span {
        margin-right: 15px
    }
}

.theme-btn i {
    position: relative;
    color: var(--header);
    z-index: 999;
    width: 43px;
    height: 43px;
    line-height: 43px;
    background-color: var(--white);
    border-radius: 50%
}

.theme-btn::before {
    content: "";
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    height: 150%;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    background-color: var(--header);
    transition: .7s cubic-bezier(.52, 1.64, .37, .66)
}

.theme-btn::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 150%;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    background-color: var(--header);
    transition-duration: .7s;
    transition-timing-function: cubic-bezier(.52, 1.64, .37, .66)
}

.theme-btn:hover {
    background-color: var(--theme);
    color: var(--white)
}

.theme-btn:hover::before {
    top: 100%
}

.theme-btn:hover::after {
    bottom: -50%
}

.link-btn {
    font-size: 15px;
    font-weight: 700;
    display: inline-block;
    font-family: "DM Sans", sans-serif;
    text-transform: capitalize;
    color: var(--theme)
}

.link-btn i {
    transform: rotate(-40deg);
    transition: all .4s ease-in-out;
    font-weight: 400;
    margin-left: 8px
}

.link-btn:hover i {
    transform: rotate(0)
}

body {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: var(--text);
    background-color: var(--white);
    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: var(--white);
    outline: 0
}

input {
    color: var(--white)
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "DM Sans", sans-serif;
    margin: 0;
    padding: 0;
    color: var(--header);
    text-transform: initial;
    transition: all .4s ease-in-out;
}

h1 {
    font-size: 94px;
    font-weight: 600;
    line-height: 124%
}

@media (max-width:1399px) {
    h1 {
        font-size: 53px
    }
}

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

@media (max-width:991px) {
    h1 {
        font-size: 50px
    }
}

@media (max-width:767px) {
    h1 {
        font-size: 45px
    }
}

@media (max-width:575px) {
    h1 {
        font-size: 40px
    }
}

h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 129%
}

@media (max-width:1399px) {
    h2 {
        font-size: 44px
    }
}

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

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

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

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

h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 155%
}

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

h4 {
    font-size: 22px;
    font-weight: 500;
    line-height: 155%
}

h5 {
    font-size: 14px;
    font-weight: 600;
    line-height: 158%
}

h6 {
    font-size: 16px;
    font-weight: 400
}

a {
    text-decoration: none;
    outline: 0 !important;
    cursor: pointer;
    color: var(--header);
    transition: all .4s ease-in-out
}

p {
    margin: 0;
    transition: all .4s ease-in-out
}

span {
    margin: 0;
    transition: all .4s ease-in-out
}

.about-wrapper {
    margin-top: 30px;
    position: relative
}

@media (max-width:1199px) {
    .about-wrapper {
        margin-top: 0
    }
}

.about-wrapper .about-image {
    margin-left: -310px;
    position: relative;
    height: 773px
}

@media (max-width:1600px) {
    .about-wrapper .about-image {
        margin-left: 0
    }
}

@media (max-width:1199px) {
    .about-wrapper .about-image {
        height: 750px
    }
}

@media (max-width:991px) {
    .about-wrapper .about-image {
        height: 650px
    }
}

@media (max-width:767px) {
    .about-wrapper .about-image {
        height: 550px
    }
}

@media (max-width:575px) {
    .about-wrapper .about-image {
        height: 450px
    }
}

.about-wrapper .about-image::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(180deg, rgba(2, 8, 66, 0) 0, rgba(2, 8, 66, .66) 100%)
}

.about-wrapper .about-image .counter-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    left: 120px;
    right: 120px;
    bottom: 60px;
    border-top: 1px solid rgba(255, 255, 255, .25);
    padding: 50px 0 0
}

@media (max-width:1199px) {
    .about-wrapper .about-image .counter-wrapper {
        left: 40px;
        right: 40px;
        bottom: 40px;
        border-top: none;
        padding: 30px 0 0;
        flex-wrap: wrap;
        gap: 40px
    }
}

@media (max-width:991px) {
    .about-wrapper .about-image .counter-wrapper {
        right: 100px
    }
}

@media (max-width:575px) {
    .about-wrapper .about-image .counter-wrapper {
        right: 0
    }
}

.about-wrapper .about-image .counter-wrapper .counter-item {
    display: flex;
    gap: 20px;
    border-right: 1px solid rgba(255, 255, 255, .25);
    padding-right: 100px
}

@media (max-width:1600px) {
    .about-wrapper .about-image .counter-wrapper .counter-item {
        border: none;
        padding-right: 0
    }
}

.about-wrapper .about-image .counter-wrapper .counter-item.style-2 {
    border: none;
    padding-right: 0
}

.about-wrapper .about-image .counter-wrapper .counter-item .content h2 {
    color: var(--white);
    font-size: 66px;
    font-weight: 600;
    font-family: "DM Sans", sans-serif
}

@media (max-width:767px) {
    .about-wrapper .about-image .counter-wrapper .counter-item .content h2 {
        font-size: 50px
    }
}

.about-wrapper .about-image .counter-wrapper .counter-item .content p {
    color: var(--white)
}

.about-wrapper .about-box {
    background-color: var(--header);
    border-radius: 12px;
    padding: 30px;
    position: absolute;
    right: -15px;
    top: -120px;
    max-width: 436px
}

@media (max-width:1199px) {
    .about-wrapper .about-box {
        position: static
    }
}

.about-wrapper .about-box h4 {
    color: var(--white)
}

.about-wrapper .about-box .list {
    font-weight: 600;
    color: var(--white);
    margin-top: 30px
}

.about-wrapper .about-box .list i {
    margin-right: 5px;
    color: var(--theme)
}

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

.about-wrapper .about-box .about-button {
    margin-top: 80px
}

@media (max-width:1199px) {
    .about-wrapper .about-box .about-button {
        margin-top: 30px
    }
}

.about-wrapper .about-box .about-button .theme-btn::before {
    background-color: var(--white)
}

.about-wrapper .about-box .about-button .theme-btn::after {
    background-color: var(--white)
}

.about-wrapper .about-box .about-button .theme-btn:hover i {
    background-color: var(--theme);
    color: var(--white)
}

.about-wrapper .about-box .about-button .theme-btn:hover span {
    color: var(--header)
}

.about-wrapper-2 .about-image-items {
    display: flex;
    align-items: center;
    gap: 24px
}

@media (max-width:991px) {
    .about-wrapper-2 .about-image-items {
        justify-content: center
    }
}

@media (max-width:470px) {
    .about-wrapper-2 .about-image-items {
        display: block
    }
}

.about-wrapper-2 .about-image-items img {
    width: 100%;
    height: 100%;
    border-radius: 12px
}

.about-wrapper-2 .counter-box {
    padding: 50px 40px;
    text-align: center;
    background-color: var(--white);
    box-shadow: 11px 15px 79.9px 48px rgba(10, 6, 68, .05);
    border-radius: 6px;
    margin-top: 24px;
    min-width: 240px
}

@media (max-width:575px) {
    .about-wrapper-2 .counter-box {
        margin-bottom: 25px
    }
}

.about-wrapper-2 .counter-box h2 {
    font-size: 66px;
    font-weight: 700;
    color: var(--theme)
}

.about-wrapper-2 .counter-box p {
    font-size: 20px
}

.about-wrapper-2 .about-content .icon-items-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(35, 28, 37, .14);
    padding-bottom: 50px;
    margin-bottom: 40px
}

@media (max-width:1199px) {
    .about-wrapper-2 .about-content .icon-items-area {
        flex-wrap: wrap;
        gap: 20px;
        padding-bottom: 35px;
        margin-bottom: 35px
    }
}

.about-wrapper-2 .about-content .icon-items-area .icon-items {
    display: flex;
    align-items: center;
    gap: 22px
}

.about-wrapper-2 .about-content .icon-items-area .icon-items h5 {
    font-size: 20px;
    font-weight: 600
}

.about-wrapper-2 .about-content .about-us-button {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px
}

@media (max-width:1399px) {
    .about-wrapper-2 .about-content .about-us-button {
        flex-wrap: wrap
    }
}

.about-wrapper-2 .about-content .about-us-button .client-info {
    display: flex;
    align-items: center;
    gap: 10px
}

.about-wrapper-2 .about-content .about-us-button .client-info h6 {
    font-size: 16px;
    font-weight: 700;
    line-height: 175%
}

.about-wrapper-3 {
    margin-top: 30px
}

@media (max-width:1199px) {
    .about-wrapper-3 {
        margin-top: 0
    }
}

.about-wrapper-3 .about-content .progress-wrap {
    margin-top: 60px;
    max-width: 569px
}

.about-wrapper-3 .about-content .progress-wrap .pro-items {
    width: 100%
}

.about-wrapper-3 .about-content .progress-wrap .pro-items:not(:last-child) {
    margin-bottom: 50px
}

.about-wrapper-3 .about-content .progress-wrap .pro-items .pro-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px
}

.about-wrapper-3 .about-content .progress-wrap .pro-items .pro-head .title {
    font-size: 16px;
    font-weight: 600;
    color: var(--header)
}

.about-wrapper-3 .about-content .progress-wrap .pro-items .pro-head .point {
    font-size: 12px;
    font-weight: 500;
    background-color: #f0663e;
    padding: 6px;
    color: var(--white);
    line-height: 1;
    position: relative
}

.about-wrapper-3 .about-content .progress-wrap .pro-items .pro-head .point::before {
    position: absolute;
    content: "";
    top: 99%;
    right: 10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 0;
    border-color: transparent var(--theme) transparent transparent;
    transform: rotate(0)
}

.about-wrapper-3 .about-content .progress-wrap .pro-items .progress {
    background: rgba(240, 102, 62, .16);
    justify-content: flex-start;
    border-radius: 2px;
    align-items: center;
    position: relative;
    display: flex;
    height: 5px;
    width: 100%
}

.about-wrapper-3 .about-content .progress-wrap .pro-items .progress-value {
    animation: load 3s normal forwards;
    border-radius: 0;
    background: var(--theme);
    height: 10px;
    width: 0
}

.about-wrapper-3 .about-content .progress-wrap .pro-items .style-two {
    animation: load2 3s normal forwards
}

.about-wrapper-3 .about-content .progress-wrap .pro-items .style-three {
    animation: load3 3s normal forwards
}

@keyframes load {
    0% {
        width: 0
    }

    100% {
        width: 90%
    }
}

@keyframes load2 {
    0% {
        width: 0
    }

    100% {
        width: 70%
    }
}

@keyframes load3 {
    0% {
        width: 0
    }

    100% {
        width: 55%
    }
}

.about-wrapper-3 .about-content .caller-button {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 50px
}

.about-wrapper-3 .about-content .caller-button .contact-items {
    display: flex;
    align-items: center;
    gap: 15px
}

@media (max-width:1600px) {
    .about-wrapper-3 .about-content .caller-button .contact-items {
        display: none
    }
}

.about-wrapper-3 .about-content .caller-button .contact-items .icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: var(--theme);
    text-align: center;
    color: var(--white)
}

.about-wrapper-3 .about-content .caller-button .contact-items .content span {
    color: var(--header);
    font-size: 14px;
    display: inline-block;
    margin-bottom: 2px
}

.about-wrapper-3 .about-content .caller-button .contact-items .content h6 {
    font-size: 18px;
    font-weight: 600
}

.about-wrapper-3 .about-content .caller-button .contact-items .content h6 a {
    color: var(--header)
}

.about-wrapper-3 .about-img {
    position: relative;
    border-radius: 12px;
    margin-left: 100px;
    max-width: 526px
}

@media (max-width:1199px) {
    .about-wrapper-3 .about-img {
        max-width: initial;
        margin-left: 0
    }
}

.about-wrapper-3 .about-img img {
    width: 100%;
    height: 100%;
    border-radius: 12px
}

.about-wrapper-3 .about-img .about-img-2 {
    position: absolute;
    left: -40px;
    top: -40px;
    border: 6px solid var(--white);
    border-radius: 20px;
    max-width: 293px
}

@media (max-width:1199px) {
    .about-wrapper-3 .about-img .about-img-2 {
        bottom: 0;
        top: initial;
        left: initial;
        right: 0
    }
}

.about-wrapper-3 .about-img .about-shape {
    position: absolute;
    bottom: 0;
    left: -170px
}

@media (max-width:1399px) {
    .about-wrapper-3 .about-img .about-shape {
        display: none
    }
}

.about-wrapper-4 {
    margin-bottom: 60px
}

@media (max-width:1199px) {
    .about-wrapper-4 {
        margin-bottom: 0
    }
}

.about-wrapper-4 .about-img {
    position: relative;
    border-radius: 12px;
    max-width: 564px
}

.about-wrapper-4 .about-img img {
    width: 100%;
    height: 100%;
    border-radius: 12px
}

.about-wrapper-4 .about-img .about-img-2 {
    position: absolute;
    right: -80px;
    bottom: -70px;
    border: 6px solid var(--white);
    border-radius: 20px;
    max-width: 354px
}

@media (max-width:1199px) {
    .about-wrapper-4 .about-img .about-img-2 {
        right: initial;
        left: 0;
        bottom: 0;
        max-width: 230px
    }
}

.about-wrapper-4 .about-img .video {
    position: absolute;
    top: 100px;
    right: -50px
}

@media (max-width:1199px) {
    .about-wrapper-4 .about-img .video {
        display: none
    }
}

.about-wrapper-4 .about-img .video .video-btn {
    width: 170px;
    height: 170px;
    line-height: 170px;
    text-align: center;
    border-radius: 100px;
    background-color: var(--white);
    color: var(--theme);
    display: inline-block;
    text-align: center;
    font-size: 24px
}

.about-wrapper-4 .about-img .video .video-btn i {
    position: relative;
    z-index: 99;
    width: 100px;
    height: 100px;
    line-height: 100px;
    border: 1px solid var(--border);
    border-radius: 100px
}

@media (max-width:767px) {
    .about-wrapper-4 .about-img .video .video-btn {
        width: 80px;
        height: 80px;
        line-height: 80px;
        font-size: 18px
    }
}

.about-wrapper-4 .about-img .video .circle-image {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    padding: 10px
}

.about-wrapper-4 .about-img .video .circle-image img {
    animation: cir36 10s linear infinite;
    width: initial;
    height: initial
}

.about-wrapper-4 .about-content {
    margin-left: 50px
}

@media (max-width:1199px) {
    .about-wrapper-4 .about-content {
        margin-left: 0
    }
}

.about-wrapper-4 .about-content .about-text {
    margin-top: 20px
}

.about-wrapper-4 .about-content .about-box {
    margin-top: 40px
}

.about-wrapper-4 .about-content .about-box .about-box-items {
    box-shadow: var(--box-shadow);
    padding: 44px 25px;
    border-radius: 6px
}

.about-wrapper-4 .about-content .about-box .about-box-items .icon {
    display: flex;
    align-items: center;
    gap: 15px
}

@media (max-width:1199px) {
    .about-wrapper-4 .about-content .about-box .about-box-items .icon {
        flex-wrap: wrap
    }
}

.about-wrapper-4 .about-content .about-box .about-box-items p {
    margin-top: 20px
}

.about-wrapper-4 .about-content .about-list-items {
    margin-top: 35px;
    display: flex;
    gap: 50px
}

@media (max-width:1199px) {
    .about-wrapper-4 .about-content .about-list-items {
        flex-wrap: wrap;
        gap: 10px
    }
}

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

.about-wrapper-4 .about-content .about-list-items ul li i {
    color: var(--theme);
    margin-right: 6px
}

.about-wrapper-4 .about-content .about-us-button {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px
}

@media (max-width:1399px) {
    .about-wrapper-4 .about-content .about-us-button {
        flex-wrap: wrap
    }
}

.about-wrapper-4 .about-content .about-us-button .client-info {
    display: flex;
    align-items: center;
    gap: 10px
}

.about-wrapper-4 .about-content .about-us-button .client-info h6 {
    font-size: 16px;
    font-weight: 700;
    line-height: 175%
}

@-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 cir36 {
    100% {
        transform: rotate(360deg)
    }
}

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

@keyframes up-down {
    0% {
        transform: translateY(10px)
    }

    100% {
        transform: translateY(-10px)
    }
}

@-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%,
    100%,
    75% {
        opacity: 0;
        transform: rotateY(-90deg)
    }

    25%,
    50% {
        opacity: 1;
        transform: rotateY(0)
    }
}

@keyframes letters-loading {

    0%,
    100%,
    75% {
        opacity: 0;
        transform: rotateY(-90deg)
    }

    25%,
    50% {
        opacity: 1;
        transform: rotateY(0)
    }
}

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

    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(0);
        -ms-transform: rotate(0);
        transform: rotate(0)
    }
}

@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(0)
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg)
    }
}

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

    100% {
        transform: scale(1.2)
    }
}

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

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

.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% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }

    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }
}

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

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }

    100% {
        -webkit-transform: translateY(-30px);
        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(0);
        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
}

@keyframes criss-cross-left {
    0% {
        left: -20px
    }

    50% {
        left: 50%;
        width: 20px;
        height: 20px
    }

    100% {
        left: 50%;
        width: 375px;
        height: 375px
    }
}

@keyframes criss-cross-right {
    0% {
        right: -20px
    }

    50% {
        right: 50%;
        width: 20px;
        height: 20px
    }

    100% {
        right: 50%;
        width: 375px;
        height: 375px
    }
}

@keyframes rotated2 {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(-360deg)
    }
}

@keyframes wave {
    0% {
        transform: translateX(0)
    }

    50% {
        transform: translateX(-25%)
    }

    100% {
        transform: translateX(-50%)
    }
}

@keyframes zoom {
    0% {
        transform: scale(.5)
    }

    50% {
        transform: scale(1)
    }

    100% {
        transform: scale(.5)
    }
}

@keyframes translateY2 {
    0% {
        -webkit-transform: translateY(-30px);
        -moz-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        -o-transform: translateY(-30px);
        transform: translateY(-30px)
    }

    100% {
        -webkit-transform: translateY(20px);
        -moz-transform: translateY(20px);
        -ms-transform: translateY(20px);
        -o-transform: translateY(20px);
        transform: translateY(20px)
    }
}

@keyframes translateX2 {
    0% {
        -webkit-transform: translateX(-30px);
        -moz-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
        -o-transform: translateX(-30px);
        transform: translateX(-30px)
    }

    100% {
        -webkit-transform: translatXY(20px);
        -moz-transform: translateX(20px);
        -ms-transform: translateX(20px);
        -o-transform: translateX(20px);
        transform: translateX(20px)
    }
}

@keyframes moving {
    0% {
        transform: translatey(0)
    }

    20% {
        transform: translateX(-50px)
    }

    50% {
        transform: translatey(-40px)
    }

    100% {
        transform: translatey(0)
    }
}

.img-custom-anim-right {
    animation: img-anim-right 1.3s forwards cubic-bezier(.645, .045, .355, 1) .4s;
    opacity: 0
}

@keyframes img-anim-right {
    0% {
        transform: translateX(5%);
        clip-path: inset(0 0 0 100%);
        opacity: 0
    }

    100% {
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1
    }
}

.img-custom-anim-left {
    animation: img-anim-left 1.3s forwards cubic-bezier(.645, .045, .355, 1) .4s;
    opacity: 0
}

@keyframes img-anim-left {
    0% {
        transform: translateX(-5%);
        clip-path: inset(0 100% 0 0);
        opacity: 0
    }

    100% {
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1
    }
}

.img-custom-anim-top {
    animation: img-anim-top 1.3s forwards cubic-bezier(.645, .045, .355, 1);
    opacity: 0
}

@keyframes img-anim-top {
    0% {
        transform: translateY(-5%);
        clip-path: inset(0 0 100% 0);
        opacity: 0
    }

    100% {
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
        opacity: 1
    }
}

.contact-wrapper .contect-info-content {
    margin-left: 50px
}

@media (max-width:1199px) {
    .contact-wrapper .contect-info-content {
        margin-left: 0
    }
}

.contact-wrapper .contect-info-content .contect-icon-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px
}

@media (max-width:1199px) {
    .contact-wrapper .contect-info-content .contect-icon-box {
        margin-top: 30px
    }
}

.contact-wrapper .contact-content {
    border-radius: 12px;
    background: var(--white);
    box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, .03);
    padding: 40px
}

.contact-wrapper .contact-content h3 {
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 600;
    color: var(--header);
    text-align: center
}

@media (max-width:1199px) {
    .contact-wrapper .contact-content h3 {
        font-size: 25px
    }
}

.contact-wrapper .contact-content .contact-form-items .form-clt {
    position: relative
}

.contact-wrapper .contact-content .contact-form-items .form-clt input,
.contact-wrapper .contact-content .contact-form-items .form-clt textarea {
    width: 100%;
    border: none;
    outline: 0;
    border-radius: 4px;
    background: #f6f6f6;
    color: rgba(73, 81, 91, .72);
    padding: 12px 20px;
    font-weight: 500;
    font-size: 16px
}

@media (max-width:767px) {

    .contact-wrapper .contact-content .contact-form-items .form-clt input,
    .contact-wrapper .contact-content .contact-form-items .form-clt textarea {
        padding: 14px 20px
    }
}

@media (max-width:575px) {

    .contact-wrapper .contact-content .contact-form-items .form-clt input,
    .contact-wrapper .contact-content .contact-form-items .form-clt textarea {
        padding: 12px 18px
    }
}

.contact-wrapper .contact-content .contact-form-items .form-clt input::placeholder,
.contact-wrapper .contact-content .contact-form-items .form-clt textarea::placeholder {
    color: #666
}

.contact-wrapper .contact-content .contact-form-items .form-clt textarea {
    padding-bottom: 130px;
    resize: none
}

.contact-info-area {
    padding: 110px 0 0;
    text-align: center
}

@media (max-width:1199px) {
    .contact-info-area {
        padding: 100px 0 0
    }
}

@media (max-width:991px) {
    .contact-info-area {
        padding: 80px 0 0
    }
}

@media (max-width:1199px) {
    .contact-info-area .theme-btn {
        margin-top: 30px
    }
}

.contact-info-area-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #14194f;
    padding: 40px 50px;
    border-radius: 13px;
    border: 1px solid rgba(255, 255, 255, .12);
    position: relative;
    margin-bottom: 50px
}

@media (max-width:1199px) {
    .contact-info-area-2 {
        flex-wrap: wrap;
        gap: 30px
    }

    .contact-info-area-2 .logo-image {
        flex-basis: 100%
    }
}

@media (max-width:767px) {
    .contact-info-area-2 {
        padding: 40px 40px
    }
}

@media (max-width:575px) {
    .contact-info-area-2 {
        padding: 40px 30px
    }
}

.contact-info-area-2 .contact-info-items {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    position: relative
}

.contact-info-area-2 .contact-info-items .icon {
    width: 55px;
    height: 55px;
    line-height: 55px;
    border-radius: 50%;
    border: 1.8px solid rgba(255, 255, 255, .13);
    text-align: center;
    color: var(--white)
}

.contact-info-area-2 .contact-info-items .content p {
    color: var(--theme);
    margin-bottom: 5px
}

.contact-info-area-2 .contact-info-items .content h6 {
    font-weight: 700;
    color: var(--white)
}

.contact-info-area-2 .contact-info-items .content h6 a {
    color: var(--white)
}

.map-items .googpemap iframe {
    width: 100%;
    height: 577px
}

@media (max-width:575px) {
    .map-items .googpemap iframe {
        height: 300px
    }
}

.video-tour-section {
    position: relative;
    overflow: hidden
}

.video-tour-section::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(2, 8, 66, .76);
    opacity: .75
}

.video-tour-wrapper-1 {
    padding: 221px 0
}

@media (max-width:1600px) {
    .video-tour-wrapper-1 {
        padding: 160px 0
    }
}

@media (max-width:1399px) {
    .video-tour-wrapper-1 {
        padding: 140px 0
    }
}

@media (max-width:1199px) {
    .video-tour-wrapper-1 {
        padding: 120px 0
    }
}

@media (max-width:991px) {
    .video-tour-wrapper-1 {
        padding: 100px 0
    }
}

@media (max-width:767px) {
    .video-tour-wrapper-1 {
        padding: 80px 0
    }
}

.video-tour-wrapper-1 .video-tour-content-info {
    justify-items: center
}

.video-tour-wrapper-1 .video-tour-content-info .video-button {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 50px
}

@media (max-width:767px) {
    .video-tour-wrapper-1 .video-tour-content-info .video-button {
        display: grid;
        justify-content: center
    }
}

.video-tour-wrapper-1 .video-tour-content-info .video-button .video-btn {
    background-color: var(--white);
    color: var(--theme);
    display: inline-block;
    font-size: 18px;
    height: 63px;
    width: 63px;
    line-height: 63px;
    border-radius: 50%;
    text-align: center;
    position: relative
}

@media (max-width:767px) {
    .video-tour-wrapper-1 .video-tour-content-info .video-button .video-btn {
        margin: 0 auto
    }
}

.video-tour-wrapper-1 .video-tour-content-info .video-button .video-btn::before {
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    bottom: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    content: "";
    transform: translate(-50%, -50%)
}

.video-tour-wrapper-1 .video-tour-content-info .video-button span {
    z-index: 9;
    color: var(--white);
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: 26px
}

.cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 90px 0
}

@media (max-width:991px) {
    .cta-wrapper {
        flex-wrap: wrap;
        gap: 30px
    }
}

.cta-wrapper .newsletter-btn p {
    max-width: 437px;
    margin-bottom: 20px;
    color: var(--white)
}

.cta-wrapper .newsletter-btn .search-widget {
    position: relative;
    max-width: 323px;
    width: 100%
}

.cta-wrapper .newsletter-btn .search-widget input {
    width: 100%;
    border: none;
    background-color: var(--white);
    position: relative;
    font-size: 15px;
    font-weight: 400;
    padding: 18px 25px;
    color: var(--text);
    border-radius: 44px;
    text-transform: capitalize
}

@media (max-width:575px) {
    .cta-wrapper .newsletter-btn .search-widget input {
        font-size: 16px;
        padding: 18px 25px
    }
}

.cta-wrapper .newsletter-btn .search-widget input::placeholder {
    color: var(--text)
}

.cta-wrapper .newsletter-btn .search-widget button {
    position: absolute;
    right: 8px;
    top: 8px;
    bottom: 8px
}

.cta-wrapper .newsletter-btn .search-widget button.icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: var(--theme);
    color: var(--white);
    border-radius: 100%
}

.faqs-wrapper-2 .faqs-content h2 {
    margin-bottom: 27px
}

.faqs-wrapper-2 .faqs-content .faqs-text {
    color: #5F5D62;
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 30px
}

.faqs-wrapper-2 .faqs-content .faqs-button {
    display: flex;
    align-items: center;
    gap: 20px
}

@media (max-width:1199px) {
    .faqs-wrapper-2 .faqs-content .faqs-button {
        flex-wrap: wrap
    }
}

.faqs-wrapper-2 .faqs-content .faqs-button .contect-icon-box {
    display: flex;
    align-items: center;
    gap: 14px
}

.faqs-wrapper-2 .faqs-content .faqs-button .contect-icon-box .contect-icon {
    background: #30784B;
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: var(--white);
    text-align: center;
    border-radius: 50%
}

.faqs-wrapper-2 .faqs-content .faqs-button .contect-icon-box .contect-icon i {
    font-size: 17px
}

.faqs-wrapper-2 .faqs-content .faqs-button .contect-icon-box .contect-content span {
    color: #5F5D62;
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px
}

.faqs-wrapper-2 .faqs-content .faqs-button .contect-icon-box .contect-content h3 {
    color: #00395B;
    font-family: "DM Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -.36px
}

.faqs-wrapper-2 .faq-content .accordion-item {
    border: 0;
    background-color: transparent;
    border-radius: 12px;
    box-shadow: 11px 15px 79.9px 48px rgba(10, 6, 68, .05)
}

.faqs-wrapper-2 .faq-content .accordion-item .accordion-header .accordion-button {
    font-weight: 600;
    color: var(--header);
    letter-spacing: -.2px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background-color: var(--white);
    padding: 22px 27px 0;
    text-transform: capitalize;
    font-size: 20px;
    border-radius: 6px
}

@media (max-width:767px) {
    .faqs-wrapper-2 .faq-content .accordion-item .accordion-header .accordion-button {
        font-size: 18px
    }
}

@media (max-width:575px) {
    .faqs-wrapper-2 .faq-content .accordion-item .accordion-header .accordion-button {
        font-size: 18px
    }
}

.faqs-wrapper-2 .faq-content .accordion-item .accordion-header .accordion-button::after {
    font-weight: 500;
    transition: all .3s ease-in-out !important;
    color: var(--theme)
}

.faqs-wrapper-2 .faq-content .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
    font-weight: 500;
    color: var(--theme);
    transform: rotate(0)
}

.faqs-wrapper-2 .faq-content .accordion-item .accordion-header .accordion-button.collapsed {
    background-color: transparent;
    border: 1px solid var(--border);
    padding: 25px 30px;
    color: var(--header);
    border: 1px solid rgba(2, 8, 66, .12)
}

.faqs-wrapper-2 .faq-content .accordion-item .accordion-collapse .accordion-body {
    padding-right: 150px;
    padding-left: 30px;
    padding-top: 15px;
    color: var(--text);
    border-radius: 12px;
    background: var(--white)
}

@media (max-width:1399px) {
    .faqs-wrapper-2 .faq-content .accordion-item .accordion-collapse .accordion-body {
        padding-right: 50px
    }
}

@media (max-width:991px) {
    .faqs-wrapper-2 .faq-content .accordion-item .accordion-collapse .accordion-body {
        padding-right: 30px
    }
}

.faqs-wrapper-3 {
    margin-top: 30px
}

.faqs-wrapper-3 .faqs-content h2 {
    margin-bottom: 27px
}

.faqs-wrapper-3 .faqs-content .faqs-text {
    color: var(--text);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 30px
}

.faqs-wrapper-3 .faqs-content .faqs-button {
    display: flex;
    align-items: center;
    gap: 20px
}

.faqs-wrapper-3 .faqs-content .faqs-button .contect-icon-box {
    display: flex;
    align-items: center;
    gap: 14px
}

.faqs-wrapper-3 .faqs-content .faqs-button .contect-icon-box .contect-icon {
    background: var(--theme);
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: var(--white);
    text-align: center;
    border-radius: 50%
}

.faqs-wrapper-3 .faqs-content .faqs-button .contect-icon-box .contect-icon i {
    font-size: 17px
}

.faqs-wrapper-3 .faqs-content .faqs-button .contect-icon-box .contect-content span {
    color: var(--text);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px
}

.faqs-wrapper-3 .faqs-content .faqs-button .contect-icon-box .contect-content h3 {
    color: var(--header);
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -.36px
}

.faqs-wrapper-3 .faq-content .accordion-item {
    border: 0;
    background-color: transparent;
    border-radius: 12px;
    box-shadow: 11px 15px 79.9px 48px rgba(10, 6, 68, .05)
}

.faqs-wrapper-3 .faq-content .accordion-item .accordion-header .accordion-button {
    font-weight: 600;
    color: var(--header);
    letter-spacing: -.2px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background-color: var(--white);
    padding: 22px 27px 0;
    text-transform: capitalize;
    font-size: 20px;
    border-radius: 6px
}

@media (max-width:767px) {
    .faqs-wrapper-3 .faq-content .accordion-item .accordion-header .accordion-button {
        font-size: 18px
    }
}

@media (max-width:575px) {
    .faqs-wrapper-3 .faq-content .accordion-item .accordion-header .accordion-button {
        font-size: 18px
    }
}

.faqs-wrapper-3 .faq-content .accordion-item .accordion-header .accordion-button::after {
    font-weight: 500;
    transition: all .3s ease-in-out !important;
    color: var(--theme)
}

.faqs-wrapper-3 .faq-content .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
    font-weight: 500;
    color: var(--theme);
    transform: rotate(0)
}

.faqs-wrapper-3 .faq-content .accordion-item .accordion-header .accordion-button.collapsed {
    background-color: transparent;
    border: 1px solid var(--border);
    padding: 25px 30px;
    color: var(--header);
    border: 1px solid rgba(2, 8, 66, .12)
}

.faqs-wrapper-3 .faq-content .accordion-item .accordion-collapse .accordion-body {
    padding-right: 150px;
    padding-left: 30px;
    padding-top: 15px;
    color: var(--text);
    border-radius: 12px;
    background: var(--white)
}

@media (max-width:1399px) {
    .faqs-wrapper-3 .faq-content .accordion-item .accordion-collapse .accordion-body {
        padding-right: 50px
    }
}

@media (max-width:991px) {
    .faqs-wrapper-3 .faq-content .accordion-item .accordion-collapse .accordion-body {
        padding-right: 30px
    }
}

@media (max-width:575px) {
    .choose-us-wrapper .choose-us-content .theme-btn {
        margin-top: 30px
    }
}

.choose-us-wrapper .choose-us-right .choose-us-wrap {
    display: flex;
    align-items: center;
    gap: 100px
}

@media (max-width:767px) {
    .choose-us-wrapper .choose-us-right .choose-us-wrap {
        flex-wrap: wrap;
        gap: 40px
    }
}

.choose-us-wrapper .choose-us-right .choose-us-wrap:not(:last-child) {
    margin-bottom: 60px
}

.choose-us-wrapper .choose-us-right .choose-us-wrap .choose-us-item .icon {
    margin-bottom: 20px
}

.choose-us-wrapper .choose-us-right .choose-us-wrap .choose-us-item h4 {
    margin-bottom: 15px
}

.choose-us-wrapper-2 .choose-us-content .choose-us-text {
    margin-top: 20px
}

.choose-us-wrapper-2 .choose-us-content h4 {
    margin-top: 20px
}

.choose-us-wrapper-2 .choose-us-content .choose-us-text-2 {
    margin-top: 20px;
    max-width: 507px
}

.choose-us-wrapper-2 .choose-us-content .choose-us-list-items {
    margin-top: 35px;
    display: flex;
    gap: 50px
}

.choose-us-wrapper-2 .choose-us-content .choose-us-list-items ul li {
    color: #3b3f48
}

.choose-us-wrapper-2 .choose-us-content .choose-us-list-items ul li:not(:last-child) {
    margin-bottom: 10px
}

.choose-us-wrapper-2 .choose-us-content .choose-us-list-items ul li i {
    color: var(--theme);
    margin-right: 6px
}

.choose-us-wrapper-2 .choose-us-content .choose-us-button {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px
}

@media (max-width:1199px) {
    .choose-us-wrapper-2 .choose-us-content .choose-us-button {
        flex-wrap: wrap
    }
}

.choose-us-wrapper-2 .choose-us-content .choose-us-button .client-info {
    display: flex;
    align-items: center;
    gap: 10px
}

.choose-us-wrapper-2 .choose-us-content .choose-us-button .client-info h6 {
    font-size: 16px;
    font-weight: 700;
    line-height: 175%
}

.choose-us-wrapper-2 .choose-us-img {
    margin-left: 50px;
    position: relative
}

@media (max-width:1199px) {
    .choose-us-wrapper-2 .choose-us-img {
        margin-left: 0
    }
}

.choose-us-wrapper-2 .choose-us-img img {
    width: 100%;
    height: 100%;
    border-radius: 10px
}

.choose-us-wrapper-2 .choose-us-img .box-shape {
    position: absolute;
    bottom: 115px;
    left: -160px
}

@media (max-width:1199px) {
    .choose-us-wrapper-2 .choose-us-img .box-shape {
        display: none
    }
}

.progress-area {
    position: absolute;
    bottom: 0;
    left: 6%;
    right: 22%
}

.progress-area .progress-wrap .pro-items {
    width: 100%
}

.progress-area .progress-wrap .pro-items:not(:last-child) {
    margin-bottom: 50px
}

.progress-area .progress-wrap .pro-items .pro-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px
}

.progress-area .progress-wrap .pro-items .pro-head .title {
    font-size: 16px;
    font-weight: 600;
    color: var(--white)
}

.progress-area .progress-wrap .pro-items .pro-head .point {
    font-size: 12px;
    font-weight: 500;
    background-color: #f0663e;
    padding: 6px;
    color: var(--white);
    line-height: 1;
    position: relative
}

.progress-area .progress-wrap .pro-items .pro-head .point::before {
    position: absolute;
    content: "";
    top: 99%;
    right: 10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 0;
    border-color: transparent var(--theme) transparent transparent;
    transform: rotate(0)
}

.progress-area .progress-wrap .pro-items .progress {
    background: rgba(255, 255, 255, .16);
    justify-content: flex-start;
    border-radius: 2px;
    align-items: center;
    position: relative;
    display: flex;
    height: 5px;
    width: 100%
}

.progress-area .progress-wrap .pro-items .progress-value {
    animation: load 3s normal forwards;
    border-radius: 0;
    background: var(--theme);
    height: 10px;
    width: 0
}

.progress-area .progress-wrap .pro-items .style-two {
    animation: load2 3s normal forwards
}

.progress-area .progress-wrap .pro-items .style-three {
    animation: load3 3s normal forwards
}

@keyframes load {
    0% {
        width: 0
    }

    100% {
        width: 90%
    }
}

@keyframes load2 {
    0% {
        width: 0
    }

    100% {
        width: 70%
    }
}

@keyframes load3 {
    0% {
        width: 0
    }

    100% {
        width: 55%
    }
}

.featured-section {
    position: relative;
    height: 870px
}

@media (max-width:1199px) {
    .featured-section {
        height: 750px
    }
}

@media (max-width:991px) {
    .featured-section {
        height: 650px
    }
}

@media (max-width:767px) {
    .featured-section {
        height: 550px
    }
}

@media (max-width:575px) {
    .featured-section {
        height: 450px
    }
}

.featured-section::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--header);
    top: 70%
}

.feature-box-items {
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 6px;
    background: #fff;
    box-shadow: 11px 15px 79.9px 48px rgba(10, 6, 68, .05);
    padding: 30px;
    position: relative
}

@media (max-width:1199px) {
    .feature-box-items {
        gap: 20px;
        flex-wrap: wrap
    }
}

@media (max-width:575px) {
    .feature-box-items h3 {
        font-size: 18px
    }
}

.feature-box-items .arrow-icon {
    width: 53px;
    height: 53px;
    background-color: #f0663e;
    border-radius: 50%;
    line-height: 53px;
    text-align: center;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px
}

.feature-box-items .arrow-icon i {
    color: var(--white);
    transform: translate(-5%, 5%) rotate(-40deg)
}

.feature-box-items .arrow-icon:hover {
    background-color: var(--header)
}

.choose-us-wrapper-3 .choose-us-content .choose-us-text {
    margin-top: 20px;
    max-width: 548px;
    border-bottom: 1px solid rgba(35, 28, 37, .14);
    padding-bottom: 35px
}

.choose-us-wrapper-3 .choose-us-content .counter-area {
    display: flex;
    align-items: center;
    gap: 85px;
    margin-top: 27px
}

@media (max-width:1199px) {
    .choose-us-wrapper-3 .choose-us-content .counter-area {
        gap: 30px;
        flex-wrap: wrap
    }
}

.choose-us-wrapper-3 .choose-us-content .counter-area .counter-content h3 {
    color: var(--theme);
    font-size: 66px;
    font-style: normal;
    font-weight: 700;
    line-height: 122.727%;
    letter-spacing: -1.32px;
    margin-bottom: 8px
}

@media (max-width:1199px) {
    .choose-us-wrapper-3 .choose-us-content .counter-area .counter-content h3 {
        font-size: 50px
    }
}

.choose-us-wrapper-3 .choose-us-content .counter-area .counter-content P {
    color: var(--text);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%
}

@media (max-width:1199px) {
    .choose-us-wrapper-3 .choose-us-content .counter-area .counter-content P {
        font-size: 15px
    }
}

.choose-us-wrapper-3 .choose-us-info .choose-us-box-items {
    padding: 31px 20px 31px 37px;
    display: flex;
    align-items: center;
    gap: 30px;
    border-radius: 6px;
    background: var(--white);
    margin-bottom: 27px;
    box-shadow: var(--box-shadow)
}

@media (max-width:1199px) {
    .choose-us-wrapper-3 .choose-us-info .choose-us-box-items {
        padding: 26px 20px 31px 26px;
        display: flex;
        align-items: center;
        gap: 24px;
        border-radius: 6px;
        background: var(--white);
        margin-bottom: 27px;
        box-shadow: var(--box-shadow)
    }
}

.choose-us-wrapper-3 .choose-us-info .choose-us-box-items .content h4 {
    color: var(--header);
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: -.2px
}

@media (max-width:1199px) {
    .choose-us-wrapper-3 .choose-us-info .choose-us-box-items .content h4 {
        font-size: 20px
    }
}

.choose-us-wrapper-3 .choose-us-info .choose-us-box-items .content p {
    color: var(--text);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%
}

@media (max-width:1199px) {
    .choose-us-wrapper-3 .choose-us-info .choose-us-box-items .content p {
        font-size: 15px
    }
}

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

@media (max-width:1199px) {
    .counter-wrapper {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center
    }
}

@media (max-width:575px) {
    .counter-wrapper {
        justify-content: center
    }
}

.counter-wrapper .counter-box-items {
    min-width: 230px
}

@media (max-width:575px) {
    .counter-wrapper .counter-box-items {
        text-align: center
    }
}

.counter-wrapper .counter-box-items .icon {
    margin-bottom: 20px
}

.counter-wrapper .counter-box-items h2 {
    font-size: 66px;
    font-weight: 700;
    font-family: "DM Sans", sans-serif;
    text-decoration: none;
    color: transparent;
    -webkit-text-stroke: 1.2px var(--theme);
    transition: all .4s ease-in-out
}

@media (max-width:767px) {
    .counter-wrapper .counter-box-items h2 {
        font-size: 55px
    }
}

.counter-wrapper .counter-box-items:hover h2 {
    color: var(--theme) !important;
    -webkit-text-stroke: initial !important
}

.footer-widget-wrapper {
    padding: 90px 0 80px
}

@media (max-width:1199px) {
    .footer-widget-wrapper {
        padding: 70px 0 100px
    }
}

@media (max-width:991px) {
    .footer-widget-wrapper {
        padding: 50px 0 80px
    }
}

.footer-widget-wrapper .single-footer-widget {
    margin-top: 30px;
    position: relative
}

.footer-widget-wrapper .single-footer-widget .widget-head {
    margin-bottom: 30px
}

.footer-widget-wrapper .single-footer-widget .widget-head h3 {
    color: var(--white)
}

.footer-widget-wrapper .single-footer-widget .recent-post-area .recent-post-items {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px
}

@media (max-width:1199px) {
    .footer-widget-wrapper .single-footer-widget .recent-post-area .recent-post-items {
        flex-wrap: wrap
    }
}

.footer-widget-wrapper .single-footer-widget .recent-post-area .recent-post-items .thumb img {
    width: 100%;
    height: 100%
}

.footer-widget-wrapper .single-footer-widget .recent-post-area .recent-post-items .content .post-date {
    margin-bottom: 10px
}

.footer-widget-wrapper .single-footer-widget .recent-post-area .recent-post-items .content .post-date li {
    color: var(--white)
}

.footer-widget-wrapper .single-footer-widget .recent-post-area .recent-post-items .content h6 {
    font-size: 16px
}

.footer-widget-wrapper .single-footer-widget .recent-post-area .recent-post-items .content h6 a {
    color: var(--white)
}

.footer-widget-wrapper .single-footer-widget .recent-post-area .recent-post-items .content h6 a:hover {
    color: var(--theme)
}

.footer-widget-wrapper .single-footer-widget .list-items li {
    transition: all .4s ease-in-out;
    font-weight: 500;
    font-size: 16px
}

.footer-widget-wrapper .single-footer-widget .list-items li a {
    color: rgba(255, 255, 255, .75)
}

.footer-widget-wrapper .single-footer-widget .list-items li:not(:last-child) {
    margin-bottom: 13px
}

.footer-widget-wrapper .single-footer-widget .list-items li:hover {
    margin-left: 5px
}

.footer-widget-wrapper .single-footer-widget .list-items li:hover a {
    color: var(--theme)
}

.footer-bottom {
    padding: 20px 0;
    background: #14194f;
    position: relative
}

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

@media (max-width:1199px) {
    .footer-bottom .footer-wrapper {
        flex-wrap: wrap;
        gap: 10px
    }
}

@media (max-width:767px) {
    .footer-bottom .footer-wrapper {
        justify-content: center;
        text-align: center
    }
}

.footer-bottom .footer-wrapper p {
    color: var(--white);
    font-weight: 500
}

.footer-bottom .footer-wrapper .social-icon {
    gap: 10px
}

.footer-bottom .footer-wrapper .social-icon a {
    color: rgba(255, 255, 255, .7)
}

.footer-bottom .footer-wrapper .social-icon a:hover {
    color: var(--theme)
}

.footer-section {
    position: relative
}

.footer-section::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(2, 8, 66, .93)
}

.header-top-section {
    position: relative;
    z-index: 9;
    background: #1e2023
}

.header-top-section .container-fluid {
    padding: 0 90px
}

@media (max-width:1199px) {
    .header-top-section .container-fluid {
        padding: 0 60px
    }
}

@media (max-width:991px) {
    .header-top-section .container-fluid {
        padding: 0 50px
    }
}

@media (max-width:767px) {
    .header-top-section .container-fluid {
        padding: 0 40px
    }
}

@media (max-width:575px) {
    .header-top-section .container-fluid {
        padding: 0 30px
    }
}

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

.header-top-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .15)
}

.header-top-wrapper p {
    color: var(--white);
    font-size: 15px;
    font-weight: 400
}

.header-top-wrapper p span {
    color: var(--theme);
    font-size: 15px;
    font-weight: 600
}

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

.header-top-wrapper .contact-list li {
    color: rgba(255, 255, 255, .8);
    font-size: 15px
}

.header-top-wrapper .contact-list li i {
    margin-right: 5px;
    color: var(--white)
}

.header-top-wrapper .contact-list li a {
    color: rgba(255, 255, 255, .8)
}

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

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

.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: 35px
}

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

.header-main .main-menu ul li a {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    padding: 20px 0;
    text-align: left;
    position: relative;
    text-transform: capitalize;
    transition: all .4s ease-in-out
}

.header-main .main-menu ul li a i {
    margin-left: 4px;
    font-size: 12px
}

.header-main .main-menu ul li a:hover {
    color: var(--theme) !important
}

.header-main .main-menu ul li .submenu {
    position: absolute;
    top: 115%;
    inset-inline-start: 0;
    min-width: 240px;
    background: var(--white);
    padding: 20px 0;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    transform-origin: top center;
    color: var(--header);
    transform: translateY(-10px);
    transition: all .4s ease-in-out;
    border-top: 6px solid var(--theme);
    box-shadow: rgba(99, 99, 99, .2) 0 2px 8px 0
}

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

.header-main .main-menu ul li .submenu li a {
    position: relative;
    z-index: 11;
    font-size: 15px;
    font-weight: 600;
    color: var(--header);
    line-height: 38px;
    padding: 0 0 0 32px;
    width: 100%
}

.header-main .main-menu ul li .submenu li a::before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--theme);
    left: 14px;
    bottom: 18px;
    transition: all .4s ease-in-out
}

.header-main .main-menu ul li .submenu li a:hover {
    color: var(--theme) !important
}

.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 {
    color: var(--theme) !important;
    margin-left: 10px
}

.header-main .main-menu ul li .submenu li:hover>a::before {
    width: 10px
}

.header-main .main-menu ul li .submenu li:hover>a::after {
    color: var(--theme)
}

.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: var(--theme)
}

.header-main .main-menu ul li .has-homemenu {
    width: 800px;
    padding: 30px 30px 10px 30px;
    opacity: 0;
    left: -100px;
    visibility: hidden;
    padding: 30px 30px 10px 30px
}

.header-main .main-menu ul li .has-homemenu .homemenu-items {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between
}

@media (max-width:991px) {
    .header-main .main-menu ul li .has-homemenu .homemenu-items {
        flex-wrap: wrap
    }
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
    position: relative
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
    position: relative
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-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 .4s ease-in-out;
    margin-top: 20px
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
    padding: 14px 20px;
    color: var(--white) !important;
    width: initial;
    font-size: 16px;
    text-align: center;
    border-radius: 0 !important;
    line-height: initial
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn::after,
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn::before {
    display: none
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
    background: var(--header)
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
    background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0, #252527 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 .3s ease-in-out;
    transition: all .3s ease-in-out;
    content: ""
}

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

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

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

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

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
    text-align: center;
    margin: 15px auto;
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    font-family: "DM Sans", sans-serif
}

.header-main .main-menu ul li:hover>a {
    color: var(--theme)
}

.header-main .main-menu ul li:hover>a::after {
    color: var(--theme)
}

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

.header-main .header-right {
    gap: 40px
}

@media (max-width:1399px) {
    .header-main .header-right {
        gap: 20px
    }
}

.header-main .header-right .search-icon {
    font-size: 20px
}

.header-main .header-right.style-2 .search-icon {
    color: var(--white)
}

.header-main .sidebar__toggle {
    cursor: pointer;
    font-size: 20px
}

.header-1 {
    position: static;
    background: #1e2023;
    z-index: 9999
}

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

@media (max-width:1199px) {
    .header-1 .container-fluid {
        padding: 0 60px
    }
}

@media (max-width:991px) {
    .header-1 .container-fluid {
        padding: 0 50px
    }
}

@media (max-width:767px) {
    .header-1 .container-fluid {
        padding: 0 40px
    }
}

@media (max-width:575px) {
    .header-1 .container-fluid {
        padding: 0 30px
    }
}

.header-1 .header-main .header-right .search-icon {
    color: var(--white)
}

.header-1 .header-main .header-right .contact-items {
    display: flex;
    align-items: center;
    gap: 15px
}

@media (max-width:1600px) {
    .header-1 .header-main .header-right .contact-items {
        display: none
    }
}

.header-1 .header-main .header-right .contact-items .icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: var(--theme);
    text-align: center;
    color: var(--white)
}

.header-1 .header-main .header-right .contact-items .content span {
    color: var(--white);
    font-size: 14px;
    display: inline-block;
    margin-bottom: 2px
}

.header-1 .header-main .header-right .contact-items .content h6 {
    font-size: 18px;
    font-weight: 600
}

.header-1 .header-main .header-right .contact-items .content h6 a {
    color: var(--white)
}

.header-1 .header-main .header-right .flag-wrap {
    position: relative;
    width: 160px
}

@media (max-width:1399px) {
    .header-1 .header-main .header-right .flag-wrap {
        display: none
    }
}

.header-1 .header-main .header-right .flag-wrap .nice-select {
    padding: 10px 7px 10px 55px;
    background: 0 0;
    border: none;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 999
}

.header-1 .header-main .header-right .flag-wrap .nice-select span {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--white)
}

.header-1 .header-main .header-right .flag-wrap .nice-select .list li {
    color: var(--header)
}

.header-1 .header-main .header-right .flag-wrap .nice-select::after {
    border-bottom: 2px solid var(--white);
    border-right: 2px solid var(--white)
}

.header-1 .header-main .header-right .flag-wrap .flag {
    position: absolute;
    top: 9px;
    left: 15px;
    z-index: 1
}

@media (max-width:767px) {
    .header-1 .header-main .header-right .flag-wrap .flag {
        display: none
    }
}

.header-1 .header-main .header-right .flag-wrap .flag img {
    width: 100%;
    height: 100%
}

.header-1 .header-main .header-right .social-icon {
    gap: 10px
}

@media (max-width:1399px) {
    .header-1 .header-main .header-right .social-icon {
        display: none !important
    }
}

.header-1 .header-main .header-right .social-icon span {
    color: var(--white)
}

.header-1 .header-main .header-right .social-icon a {
    color: var(--white)
}

.header-1 .header-main .header-right .social-icon a:hover {
    color: var(--theme)
}

.header-1 .header-main .sidebar__toggle {
    color: var(--white)
}

.header-1.header-2 {
    background: var(--white);
    position: relative;
    top: 0;
    z-index: 9999;
    width: 100%
}

.header-1.header-2 .header-main {
    padding: 10px 0
}

.header-1.header-2 .header-main .main-menu ul li a {
    color: var(--header)
}

.header-1.header-2 .header-main .header-right {
    gap: 40px
}

@media (max-width:1399px) {
    .header-1.header-2 .header-main .header-right {
        gap: 20px
    }
}

.header-1.header-2 .header-main .header-right .search-icon {
    font-size: 20px;
    color: var(--header)
}

.header-1.header-2 .header-main .header-right .contact-items {
    display: flex;
    align-items: center;
    gap: 15px
}

@media (max-width:1600px) {
    .header-1.header-2 .header-main .header-right .contact-items {
        display: none
    }
}

.header-1.header-2 .header-main .header-right .contact-items .icon i {
    color: var(--white)
}

.header-1.header-2 .header-main .header-right .contact-items .content span {
    color: var(--header)
}

.header-1.header-2 .header-main .header-right .contact-items .content h6 a {
    color: var(--header)
}

.header-1.header-2 .header-main .header-right i {
    color: var(--header);
    cursor: pointer
}

.header-1.header-2 .header-main .sidebar__toggle {
    cursor: pointer;
    font-size: 20px
}

.header-1.header-3 {
    background: var(--white);
    position: relative;
    top: 0;
    z-index: 9999;
    width: 100%
}

.header-1.header-3 .container-fluid {
    padding: 0 190px 0
}

@media (max-width:1600px) {
    .header-1.header-3 .container-fluid {
        padding: 0 50px 0
    }
}

@media (max-width:1199px) {
    .header-1.header-3 .container-fluid {
        padding: 0 40px 0
    }
}

@media (max-width:991px) {
    .header-1.header-3 .container-fluid {
        padding: 0 30px 0
    }
}

.header-1.header-3 .header-main {
    padding: 10px 0
}

.header-1.header-3 .header-main .main-menu ul li a {
    color: var(--header)
}

.header-1.header-3 .header-main .header-right {
    gap: 40px
}

@media (max-width:1399px) {
    .header-1.header-3 .header-main .header-right {
        gap: 20px
    }
}

.header-1.header-3 .header-main .header-right .search-icon {
    font-size: 20px;
    color: var(--header)
}

.header-1.header-3 .header-main .header-right .contact-items {
    display: flex;
    align-items: center;
    gap: 15px
}

@media (max-width:1600px) {
    .header-1.header-3 .header-main .header-right .contact-items {
        display: none
    }
}

.header-1.header-3 .header-main .header-right .contact-items .icon i {
    color: var(--white)
}

.header-1.header-3 .header-main .header-right .contact-items .content span {
    color: var(--header)
}

.header-1.header-3 .header-main .header-right .contact-items .content h6 a {
    color: var(--header)
}

.header-1.header-3 .header-main .header-right .flag-wrap .nice-select span {
    color: var(--header)
}

.header-1.header-3 .header-main .header-right .flag-wrap .nice-select .list li {
    color: var(--header)
}

.header-1.header-3 .header-main .header-right .flag-wrap .nice-select::after {
    border-bottom: 2px solid var(--header);
    border-right: 2px solid var(--header)
}

.header-1.header-3 .header-main .header-right .flag-wrap .flag img {
    width: 100%;
    height: 100%
}

.header-1.header-3 .header-main .header-right .social-icon a {
    color: var(--header)
}

.header-1.header-3 .header-main .header-right i {
    color: var(--header);
    cursor: pointer
}

.header-1.header-3 .header-main .sidebar__toggle {
    cursor: pointer;
    font-size: 20px
}

.sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: all .9s;
    background-color: var(--white);
    -webkit-animation: .5s ease-in-out 0s normal none 1 running fadeInDown;
    animation: .5s ease-in-out 0s normal none 1 running fadeInDown;
    box-shadow: rgba(149, 157, 165, .2) 0 8px 24px
}

.sticky.header-1 .header-main .logo .header-logo-3 {
    display: none
}

.sticky.header-1 .header-main .header-right .contact-items .content span {
    color: var(--text)
}

.sticky.header-1 .header-main .header-right .contact-items .content h6 a {
    color: var(--header)
}

.sticky.header-1 .header-main .header-right .flag-wrap .nice-select span {
    color: var(--header)
}

.sticky.header-1 .header-main .header-right .flag-wrap .nice-select .list li {
    color: var(--header)
}

.sticky.header-1 .header-main .header-right .flag-wrap .nice-select::after {
    border-bottom: 2px solid var(--header);
    border-right: 2px solid var(--header)
}

.sticky.header-1 .header-main .header-right .social-icon {
    gap: 10px
}

.sticky.header-1 .header-main .header-right .social-icon span {
    color: var(--header)
}

.sticky.header-1 .header-main .header-right .social-icon a {
    color: var(--header)
}

.sticky.header-1 .header-main .header-right .social-icon a:hover {
    color: var(--theme)
}

.sticky.header-1 .header-main .header-right .search-icon {
    color: var(--header)
}

.sticky.header-1 .header-main .main-menu ul li a {
    color: var(--header)
}

.sticky.header-1 .header-main .main-menu ul li a:hover {
    color: var(--theme) !important
}

.sticky.header-1 .header-main .main-menu ul li .submenu li a {
    color: var(--header)
}

.sticky.header-1 .header-main .main-menu ul li:hover>a {
    color: var(--theme)
}

.sticky.header-1 .header-main .main-menu ul li:hover>a::after {
    color: var(--theme)
}

.sticky.header-1 .header-main .sidebar__toggle {
    color: var(--header)
}

.sticky.header-1 .header-logo {
    display: none !important
}

.sticky.header-1 .header-logo-2 {
    display: block !important
}

.offcanvas__info {
    background: var(--white) none repeat scroll 0 0;
    border-left: 2px solid var(--theme);
    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 .45s ease-in-out, opacity .45s ease-in-out;
    -moz-transition: transform .45s ease-in-out, opacity .45s ease-in-out;
    transition: transform .45s ease-in-out, opacity .45s ease-in-out;
    z-index: 99999;
    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: var(--text)
}

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

.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
    color: var(--white)
}

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

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

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

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
    color: var(--text)
}

.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: var(--theme)
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
    text-transform: initial
}

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

.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: 0 0;
    color: var(--text);
    border-radius: 50%;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    text-align: center;
    border: 1px solid var(--border)
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
    background-color: var(--theme);
    color: var(--white)
}

.offcanvas__wrapper .theme-btn {
    width: 100%;
    padding: 6px 0 6px 40px
}

.offcanvas__wrapper .theme-btn i {
    margin-left: 30px
}

.offcanvas__wrapper .theme-btn:hover span {
    color: var(--white)
}

.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: .8;
    visibility: visible
}

@media (max-width:450px) {
    .offcanvas__info {
        width: 300px
    }
}

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

.breadcrumb-wrapper {
    position: relative;
    overflow: hidden
}

.breadcrumb-wrapper::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-image: linear-gradient(282deg, rgba(0, 16, 47, .23) 19.19%, rgba(0, 13, 38, .69) 61.36%);
    opacity: .75
}

.breadcrumb-wrapper .page-heading {
    position: relative;
    padding: 180px 0;
    z-index: 9
}

@media (max-width:1199px) {
    .breadcrumb-wrapper .page-heading {
        padding: 140px 0
    }
}

@media (max-width:991px) {
    .breadcrumb-wrapper .page-heading {
        padding: 120px 0
    }
}

@media (max-width:767px) {
    .breadcrumb-wrapper .page-heading {
        padding: 100px 0
    }
}

@media (max-width:575px) {
    .breadcrumb-wrapper .page-heading {
        padding: 80px 0
    }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px
}

@media (max-width:575px) {
    .breadcrumb-wrapper .page-heading .breadcrumb-items {
        margin-bottom: 15px
    }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li {
    color: var(--white);
    text-transform: capitalize;
    font-weight: 600
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
    color: var(--theme);
    transition: all .4s ease-in-out
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
    color: var(--white)
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
    color: var(--white)
}

.breadcrumb-wrapper .page-heading h1 {
    color: var(--white);
    font-size: 42px;
    position: relative;
    z-index: 9
}

@media (max-width:991px) {
    .breadcrumb-wrapper .page-heading h1 {
        font-size: 38px
    }
}

@media (max-width:575px) {
    .breadcrumb-wrapper .page-heading h1 {
        font-size: 35px
    }
}

.breadcrumb-wrapper .border-shape {
    position: absolute;
    top: 0;
    left: 0
}

@media (max-width:1199px) {
    .breadcrumb-wrapper .border-shape {
        display: none
    }
}

.breadcrumb-wrapper .line-shape {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0
}

@media (max-width:1199px) {
    .breadcrumb-wrapper .line-shape {
        display: none
    }
}

.breadcrumb-wrapper .line-shape img {
    width: 100%;
    height: 100%
}

.error-wrapper .error-items {
    margin-top: 100px
}

@media (max-width:1399px) {
    .error-wrapper .error-items {
        margin-top: 0
    }
}

.error-wrapper .error-items .section-title h2 {
    margin-bottom: 20px
}

.error-wrapper .error-items .error-text {
    color: var(--text);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 25px
}

.error-wrapper .error-image img {
    width: 100%;
    height: 100%
}

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

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

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

.fix {
    overflow: hidden
}

.ralt {
    position: relative
}

.ml-50 {
    margin-left: 50px
}

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

.ripple {
    position: relative
}

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

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

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

.array-button {
    display: flex;
    align-items: center;
    gap: 10px
}

.array-button .array-prev {
    width: 56px;
    height: 56px;
    line-height: 56px;
    border-radius: 50px;
    text-align: center;
    background-color: var(--header);
    color: var(--header);
    transition: all .4s ease-in-out
}

.array-button .array-next {
    width: 56px;
    height: 56px;
    line-height: 56px;
    border-radius: 50px;
    text-align: center;
    background-color: #113d48;
    transition: all .4s ease-in-out
}

.swiper-dot {
    z-index: 9;
    text-align: center;
    margin-top: 60px;
    position: relative
}

.swiper-dot .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    transition: all .4s ease-in-out;
    background-color: var(--white);
    opacity: 1;
    border-radius: 10px
}

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

.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--theme);
    transition: .6s;
    position: relative
}

.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 var(--theme);
    content: ""
}

.swiper-dot-7 {
    z-index: 9;
    margin-top: 60px;
    position: relative
}

.swiper-dot-7 .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    transition: all .4s ease-in-out;
    background-color: var(--white);
    opacity: 1;
    border-radius: 10px
}

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

.swiper-dot-7 .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--theme);
    transition: .6s;
    position: relative
}

.swiper-dot-7 .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 var(--theme);
    content: ""
}

.swiper-dot-6 {
    z-index: 9;
    text-align: center;
    margin-top: 60px;
    position: relative
}

.swiper-dot-6 .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    transition: all .4s ease-in-out;
    background-color: var(--header);
    opacity: 1;
    border-radius: 10px
}

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

.swiper-dot-6 .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--theme);
    transition: .6s;
    position: relative
}

.swiper-dot-6 .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 var(--theme);
    content: ""
}

.swiper-dot-3 {
    z-index: 9;
    text-align: center;
    margin-top: 60px;
    position: relative
}

.swiper-dot-3 .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    transition: all .4s ease-in-out;
    background-color: var(--header);
    opacity: 1;
    border-radius: 10px
}

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

.swiper-dot-3 .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--theme);
    transition: .6s;
    position: relative
}

.swiper-dot-3 .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 var(--theme);
    content: ""
}

.swiper-dot-2 {
    text-align: center
}

.swiper-dot-2 .swiper-pagination-bullet {
    width: 32px;
    height: 8px;
    transition: .6s;
    background-color: rgba(213, 213, 213, .6);
    opacity: 1;
    border-radius: 10px;
    position: relative
}

.swiper-dot-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--theme);
    transition: .6s;
    position: relative;
    width: 50px
}

.swiper-dot5 .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    transition: all .4s ease-in-out;
    background-color: var(--white);
    opacity: 1;
    border-radius: 10px
}

.swiper-dot5 .swiper-pagination-bullet:not(:last-child) {
    margin-right: 10px
}

.swiper-dot5 .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--theme);
    transition: .6s;
    position: relative
}

.swiper-dot5 .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 var(--theme);
    content: ""
}

.price-range-wrapper .slider-container {
    position: relative;
    width: 100%
}

.price-range-wrapper .price-text label {
    color: #1b1f2a;
    font-size: 20px;
    font-weight: 500
}

.price-range-wrapper .price-text input {
    color: #1b1f2a;
    font-size: 18px;
    font-weight: 500
}

.price-range-wrapper .slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: var(--theme);
    outline: 0;
    position: absolute;
    top: 0;
    pointer-events: none
}

.price-range-wrapper .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: var(--theme);
    cursor: pointer;
    border: 2px solid #fff;
    position: relative;
    z-index: 2;
    pointer-events: all
}

.price-range-wrapper .slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--theme);
    cursor: pointer;
    border-radius: 4px;
    border: 2px solid #000;
    z-index: 2;
    position: relative
}

.price-range-wrapper .slider::-ms-thumb {
    width: 20px;
    height: 20px;
    background: var(--theme);
    cursor: pointer;
    border-radius: 4px;
    border: 2px solid #000;
    z-index: 2;
    position: relative
}

.price-range-wrapper input[type=range]::-moz-range-track {
    background: 0 0
}

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

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

.mt-60 {
    margin-top: 55px
}

.mb-40 {
    margin-bottom: 40px
}

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

.bg-cover-2 {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center;
    width: 100%;
    height: 100%
}

.nice-select {
    background-color: transparent;
    width: unset;
    outline: 0;
    border: none;
    border-radius: 0;
    padding: 0
}

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

.nice-select.open .list {
    background: var(--bg);
    margin-top: 16px;
    width: 100%;
    text-transform: capitalize;
    color: var(--text)
}

.nice-select .option.selected.focus {
    background: var(--bg);
    outline: 0;
    color: var(--text);
    text-transform: capitalize;
    font-weight: 400;
    font-size: 16px;
    border: none
}

.nice-select .option {
    border: none
}

.nice-select .option:hover {
    background: 0 0
}

.custom-container-4 {
    max-width: 1705px;
    margin: 0 auto
}

.section-bg {
    background-color: #00395B
}

.choose-bg {
    background: #f0fcfa
}

.page-nav-wrap {
    margin-top: 60px
}

.page-nav-wrap ul li {
    display: inline-block
}

.page-nav-wrap ul li.active .page-numbers {
    background: var(--theme);
    color: var(--white);
    border: 1px solid var(--theme)
}

.page-nav-wrap ul li .page-numbers {
    display: inline-block;
    width: 46px;
    height: 46px;
    text-align: center;
    line-height: 46px;
    border-radius: 100px;
    border: 1px solid var(--header);
    background: 0 0;
    color: var(--header);
    font-weight: 600;
    font-size: 16px;
    transition: all .4s ease-in-out;
    margin: 0 2px
}

.page-nav-wrap ul li .page-numbers.current {
    background-color: var(--theme);
    color: var(--header)
}

@media (max-width:767px) {
    .page-nav-wrap ul li .page-numbers {
        margin-top: 10px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 14px
    }
}

.page-nav-wrap ul li .page-numbers i {
    margin-top: 2px
}

.page-nav-wrap ul li .page-numbers:hover {
    background: var(--theme);
    color: var(--white);
    border: 1px solid var(--theme)
}

.custom-container {
    max-width: 1640px;
    margin: 0 auto
}

.custom-container-3 {
    max-width: 1655px;
    margin: 0 auto
}

.swiper-dot4 {
    text-align: center
}

.swiper-dot4 .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    transition: .6s;
    background-color: var(--white);
    border: 1px solid var(--theme);
    opacity: 1;
    border-radius: 100%;
    position: relative
}

.swiper-dot4 .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--theme);
    transition: .6s;
    position: relative;
    width: 30px;
    border-radius: 30px
}

.color {
    color: rgba(255, 255, 255, .8)
}

.sticky-style {
    position: sticky !important;
    top: 100px
}

.hero-section-1 {
    position: relative;
    z-index: 9
}

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

.hero-section-1 .line-shape-1 img {
    opacity: .5
}

@media (max-width:1199px) {
    .hero-section-1 .line-shape-1 {
        display: none
    }
}

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

.hero-section-1 .line-shape-2 img {
    opacity: .5
}

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

.hero-section-1 .dot-shape-1 {
    position: absolute;
    right: -70px;
    top: 0;
    z-index: 5
}

.hero-section-1 .dot-shape-1 img {
    opacity: .5
}

@media (max-width:1199px) {
    .hero-section-1 .dot-shape-1 {
        display: none
    }
}

.hero-section-1 .dot-shape-2 {
    position: absolute;
    left: 40px;
    top: 0;
    z-index: 2
}

.hero-section-1 .dot-shape-2 img {
    opacity: .5
}

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

.hero-section-1::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(282deg, rgba(0, 16, 47, .23) 19.19%, rgba(0, 13, 38, .69) 61.36%)
}

.hero-section-1 .swiper-dot {
    position: absolute;
    right: 15px;
    top: 50%;
    z-index: 9;
    transform: translateY(-50%);
    transform: rotate(-90deg)
}

@media (max-width:1399px) {
    .hero-section-1 .swiper-dot {
        display: none
    }
}

.hero-1 {
    padding: 250px 0;
    position: relative;
    z-index: 99
}

@media (max-width:1199px) {
    .hero-1 {
        padding: 200px 0
    }
}

@media (max-width:991px) {
    .hero-1 {
        padding: 150px 0
    }
}

@media (max-width:575px) {
    .hero-1 {
        padding: 100px 0
    }
}

.hero-1::before {
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    content: "";
    background: linear-gradient(282deg, rgba(0, 16, 47, .23) 19.19%, rgba(0, 13, 38, .69) 61.36%);
    z-index: 9;
    position: absolute
}

.hero-1 .hero-content {
    position: relative;
    z-index: 99
}

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

.hero-1 .hero-content .icon-items {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px
}

.hero-1 .hero-content h1 {
    color: var(--white);
    font-size: 94px;
    font-style: normal;
    font-weight: 600;
    line-height: 90px;
    letter-spacing: -1.88px;
    margin-bottom: 20px
}

@media (max-width:1199px) {
    .hero-1 .hero-content h1 {
        font-size: 85px
    }
}

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

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

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

.hero-1 .hero-content p {
    color: var(--white);
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px
}

.hero-1 .hero-content .hero-button {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    z-index: 9
}

@media (max-width:767px) {
    .hero-1 .hero-content .hero-button {
        margin-top: 40px
    }
}

@media (max-width:575px) {
    .hero-1 .hero-content .hero-button {
        margin-top: 25px;
        justify-content: center
    }
}

.hero-2 {
    position: relative
}

@media (max-width:991px) {
    .hero-2 .hero-content {
        margin-top: 80px
    }
}

.hero-2 .hero-content h1 {
    font-size: 70px;
    font-weight: 600;
    line-height: 125%
}

@media (max-width:991px) {
    .hero-2 .hero-content h1 {
        font-size: 60px
    }
}

@media (max-width:767px) {
    .hero-2 .hero-content h1 {
        font-size: 44px
    }
}

@media (max-width:575px) {
    .hero-2 .hero-content h1 {
        font-size: 32px
    }
}

.hero-2 .hero-content p {
    max-width: 560px;
    margin-top: 20px
}

.hero-2 .hero-shape {
    position: absolute;
    top: 126px;
    left: 170px
}

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

.hero-2 .hero-shape-2 {
    position: absolute;
    right: 151px;
    bottom: 105px
}

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

.hero-2 .hero-image {
    position: relative
}

@media (max-width:1199px) {
    .hero-2 .hero-image img {
        width: 100%;
        height: 100%
    }
}

.hero-2 .hero-image .box-shape-1 {
    position: absolute;
    bottom: 125px;
    left: -125px
}

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

.hero-2 .hero-image .box-shape-2 {
    position: absolute;
    top: 26%;
    right: -50px
}

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

.hero-3 {
    position: relative
}

.hero-3 .top-shape {
    position: absolute;
    right: 0;
    top: 0
}

@media (max-width:1199px) {
    .hero-3 .top-shape {
        display: none
    }
}

.hero-3::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--bg);
    top: -35%
}

@media (max-width:1199px) {
    .hero-3::before {
        top: initial
    }
}

.hero-3 .container-fluid {
    padding: 120px 190px 100px
}

@media (max-width:1600px) {
    .hero-3 .container-fluid {
        padding: 120px 50px 100px
    }
}

@media (max-width:1199px) {
    .hero-3 .container-fluid {
        padding: 100px 40px 100px
    }
}

@media (max-width:991px) {
    .hero-3 .container-fluid {
        padding: 80px 30px 80px
    }
}

.hero-3 .hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative
}

@media (max-width:1199px) {
    .hero-3 .hero-wrapper {
        flex-wrap: wrap;
        gap: 30px
    }
}

.hero-3 .hero-wrapper .hero-left-content h1 {
    font-size: 70px;
    font-weight: 800
}

@media (max-width:767px) {
    .hero-3 .hero-wrapper .hero-left-content h1 {
        font-size: 60px
    }
}

@media (max-width:575px) {
    .hero-3 .hero-wrapper .hero-left-content h1 {
        font-size: 40px
    }
}

.hero-3 .hero-wrapper .hero-left-content h1 span {
    color: var(--theme);
    border-bottom: 8px solid var(--theme);
    display: inline-block
}

.hero-3 .hero-wrapper .hero-left-content .hero-button {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 50px
}

@media (max-width:1199px) {
    .hero-3 .hero-wrapper .hero-left-content .hero-button {
        flex-wrap: wrap;
        margin-top: 30px
    }
}

.hero-3 .hero-wrapper .hero-left-content .hero-button .rating h6 {
    font-size: 15px;
    font-weight: 500;
    color: #5F5D62;
    margin-bottom: 10px
}

.hero-3 .hero-wrapper .hero-left-content .hero-button .rating h6 span {
    font-size: 15px;
    font-weight: 700;
    color: #55557b
}

.hero-3 .hero-wrapper .hero-right-content .info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px
}

@media (max-width:1199px) {
    .hero-3 .hero-wrapper .hero-right-content .info-item {
        flex-wrap: wrap;
        margin-bottom: 20px
    }
}

.hero-3 .hero-wrapper .hero-right-content .info-item h6 {
    line-height: 156%;
    font-size: 16px;
    font-weight: 700
}

.hero-3 .her-bg-wrapper {
    height: 670px;
    border-radius: 18px;
    margin: 0 40px
}

@media (max-width:1199px) {
    .hero-3 .her-bg-wrapper {
        height: 650px
    }
}

@media (max-width:991px) {
    .hero-3 .her-bg-wrapper {
        height: 550px
    }
}

@media (max-width:767px) {
    .hero-3 .her-bg-wrapper {
        height: 450px
    }
}

@media (max-width:575px) {
    .hero-3 .her-bg-wrapper {
        margin: 0 30px;
        height: 350px
    }
}

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

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

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

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

.mean-container .mean-nav>ul .homemenu-items {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between
}

@media (max-width:1199px) {
    .mean-container .mean-nav>ul .homemenu-items {
        flex-wrap: wrap
    }
}

.mean-container .mean-nav>ul .homemenu-items .homemenu {
    position: relative
}

@media (max-width:1199px) {
    .mean-container .mean-nav>ul .homemenu-items .homemenu {
        max-width: 300px;
        text-align: center;
        margin: 0 auto;
        border: 1px solid var(--border);
        padding: 10px
    }
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb {
    position: relative
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-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 .4s ease-in-out;
    margin-top: 20px
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
    padding: 12px 20px;
    color: var(--white) !important;
    width: initial;
    font-size: 16px;
    text-align: center;
    border-radius: 0
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
    color: var(--white) !important
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb::before {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
    background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0, #252527 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 .3s ease-in-out;
    transition: all .3s ease-in-out;
    content: ""
}

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

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

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

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb img {
    width: 100%
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-title {
    text-align: center;
    margin: 15px auto;
    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: var(--white);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    text-transform: capitalize;
    border-bottom: 1px solid var(--border) !important;
    border: none
}

.mean-container .mean-nav ul li a:hover {
    color: var(--white)
}

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

.mean-container .mean-nav ul li a:hover {
    color: var(--white)
}

.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;
    font-size: 18px
}

.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 .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
}

.news-card-items {
    margin-top: 30px
}

.news-card-items .news-thumb {
    position: relative
}

.news-card-items .news-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 12px
}

.news-card-items .news-thumb .number {
    position: absolute;
    bottom: 0;
    right: 0;
    display: grid;
    color: var(--theme);
    width: 78px;
    height: 78px;
    line-height: 1;
    text-align: center;
    background-color: var(--white);
    padding: 12px 14px;
    font-size: 24px;
    font-weight: 800;
    border-radius: 12px 0
}

.news-card-items .news-thumb .number span {
    font-size: 16px;
    font-weight: 400;
    font-family: "DM Sans", sans-serif
}

.news-card-items .news-content {
    margin-top: 30px
}

.news-card-items .news-content .post-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgba(100, 105, 112, .13);
    padding-bottom: 20px;
    margin-bottom: 20px
}

.news-card-items .news-content .post-meta li {
    font-size: 15px;
    font-weight: 400;
    color: var(--text);
    display: flex;
    align-items: center
}

.news-card-items .news-content .post-meta li b {
    font-weight: 500
}

.news-card-items .news-content .post-meta li i {
    margin-right: 5px;
    font-size: 22px;
    color: var(--theme)
}

.news-card-items .news-content .post-meta li.style-2 {
    border-left: 1px solid rgba(100, 105, 112, .23);
    padding-left: 20px
}

.news-card-items .news-content h3 {
    margin-bottom: 15px
}

.news-card-items .news-content h3 a:hover {
    color: var(--theme)
}

.news-card-items .news-content p {
    margin-bottom: 20px
}

.news-card-item-3 {
    margin-top: 30px
}

.news-card-item-3 .news-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px
}

.news-card-item-3 .news-content {
    border-radius: 12px;
    box-shadow: 11px 15px 79.9px 48px rgba(10, 6, 68, .05);
    background-color: var(--white);
    padding: 30px;
    margin-top: -70px;
    position: relative;
    margin-left: 20px;
    margin-right: 20px
}

.news-card-item-3 .news-content .post-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px
}

.news-card-item-3 .news-content .post-meta li {
    font-size: 15px;
    font-weight: 400;
    color: var(--text);
    display: flex;
    align-items: center
}

.news-card-item-3 .news-content .post-meta li b {
    font-weight: 700;
    color: #646d82
}

.news-card-item-3 .news-content .post-meta li i {
    margin-right: 5px;
    font-size: 22px;
    color: var(--theme)
}

.news-card-item-3 .news-content h3 {
    margin-bottom: 15px;
    font-size: 28px
}

@media (max-width:1199px) {
    .news-card-item-3 .news-content h3 {
        font-size: 20px
    }
}

.news-card-item-3 .news-content h3 a:hover {
    color: var(--theme)
}

.news-details-wrapper .news-details-img {
    margin-bottom: 30px
}

.news-details-wrapper .news-details-img img {
    width: 100%;
    height: 100%;
    border-radius: 10px
}

.news-details-wrapper .news-details-content .post-list {
    display: flex;
    gap: 70px
}

.news-details-wrapper .news-details-content .post-list li {
    color: var(--theme);
    position: relative
}

.news-details-wrapper .news-details-content .post-list li:not(:last-child)::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #727272;
    height: 1px;
    width: 30px;
    top: 14px;
    left: 95px
}

.news-details-wrapper .news-details-content .post-list .color-2 {
    color: #636d6c
}

.news-details-wrapper .news-details-content h2 {
    margin-top: 15px;
    margin-bottom: 15px
}

.news-details-wrapper .news-details-content .hilight-text {
    line-height: 155%;
    font-size: 22px;
    font-weight: 500;
    color: var(--black);
    font-family: Ubuntu;
    letter-spacing: -.44px;
    border-radius: 10px;
    background: #ebf3fc;
    padding: 25px;
    border-left: 5px solid var(--theme)
}

.news-details-wrapper .news-details-content .news-details-list {
    display: flex;
    gap: 60px
}

@media (max-width:1199px) {
    .news-details-wrapper .news-details-content .news-details-list {
        gap: 15px;
        flex-wrap: wrap
    }
}

.news-details-wrapper .news-details-content .news-details-list ul li {
    font-size: 16px;
    font-weight: 500
}

.news-details-wrapper .news-details-content .news-details-list ul li:not(:last-child) {
    margin-bottom: 15px
}

.news-details-wrapper .news-details-content .news-details-list ul li i {
    color: var(--theme);
    margin-right: 20px
}

.news-details-wrapper .news-details-content .thumb-img {
    margin-top: 35px
}

.news-details-wrapper .news-details-content .thumb-img img {
    width: 100%;
    height: 100%;
    border-radius: 12px
}

.news-details-wrapper .news-details-content h3 {
    margin-top: 30px
}

.news-details-wrapper .news-details-content .comment-form-wrap {
    margin-top: 40px;
    background-color: var(--bg);
    padding: 50px;
    border-radius: 12px
}

.news-details-wrapper .news-details-content .comment-form-wrap h3 {
    font-size: 30px;
    margin-top: 0;
    margin-bottom: 20px
}

.news-details-wrapper .news-details-content .comment-form-wrap .form-clt input,
.news-details-wrapper .news-details-content .comment-form-wrap .form-clt textarea {
    width: 100%;
    outline: 0;
    border: none;
    border-radius: 5px;
    padding: 16px 20px;
    color: var(--text);
    background-color: var(--white);
    font-weight: 500
}

.news-details-wrapper .news-details-content .comment-form-wrap .form-clt input::placeholder,
.news-details-wrapper .news-details-content .comment-form-wrap .form-clt textarea::placeholder {
    color: var(--text)
}

.news-details-wrapper .news-details-content .comment-form-wrap .form-clt textarea {
    padding-bottom: 100px;
    border-radius: 20px;
    resize: none
}

.main-sidebar .single-sidebar-widget {
    padding: 40px 30px;
    background-color: var(--bg);
    margin-bottom: 30px;
    border-radius: 12px
}

.main-sidebar .single-sidebar-widget .wid-title {
    margin-bottom: 25px
}

.main-sidebar .single-sidebar-widget .wid-title h3 {
    position: relative;
    padding-bottom: 15px
}

.main-sidebar .single-sidebar-widget .wid-title h3::before {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 83px;
    content: "";
    background-color: var(--theme)
}

.main-sidebar .single-sidebar-widget .search-widget form {
    width: 100%;
    position: relative
}

.main-sidebar .single-sidebar-widget .search-widget form input {
    background-color: var(--white);
    font-size: 15px;
    padding: 20px;
    width: 100%;
    border: none;
    color: var(--text)
}

.main-sidebar .single-sidebar-widget .search-widget form button {
    position: absolute;
    right: 0;
    top: 0;
    width: 70px;
    font-size: 18px;
    height: 100%;
    background-color: var(--theme);
    color: var(--white);
    text-align: center;
    transition: all .3s ease-in-out
}

.main-sidebar .single-sidebar-widget .search-widget form button:hover {
    background-color: var(--header)
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: var(--white);
    font-weight: 500;
    transition: all .4s ease-in-out;
    border-radius: 4px
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li a {
    color: var(--header)
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li span {
    transition: all .4s ease-in-out;
    color: var(--header)
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li:not(:last-child) {
    margin-bottom: 12px
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover {
    background-color: var(--theme);
    color: var(--white)
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover a {
    color: var(--white)
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover span {
    color: var(--white)
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li.active {
    background-color: var(--theme)
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li.active a {
    color: var(--white)
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li.active span {
    color: var(--white)
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-items {
    display: flex;
    align-items: center;
    gap: 20px
}

@media (max-width:1199px) {
    .main-sidebar .single-sidebar-widget .recent-post-area .recent-items {
        flex-wrap: wrap
    }
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-items:not(:last-child) {
    margin-bottom: 20px
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content ul {
    margin-bottom: 8px
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content ul li i {
    color: var(--theme);
    margin-right: 5px
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 {
    font-weight: 700
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 a:hover {
    color: var(--theme)
}

.main-sidebar .single-sidebar-widget .tagcloud a {
    display: inline-block;
    padding: 11px 20px;
    line-height: 1;
    font-size: 13px;
    font-weight: 600;
    background: var(--white);
    margin-right: 5px;
    text-transform: capitalize;
    margin-bottom: 10px;
    transition: all .4s ease-in-out;
    color: var(--theme);
    border-radius: 4px
}

.main-sidebar .single-sidebar-widget .tagcloud a:last-child {
    margin-right: 0
}

.main-sidebar .single-sidebar-widget .tagcloud a:hover {
    background-color: var(--theme);
    color: var(--white)
}

.preloader {
    align-items: center;
    cursor: default;
    display: flex;
    height: 100%;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999999
}

.preloader .animation-preloader {
    z-index: 1000
}

.preloader .animation-preloader .spinner {
    animation: spinner 1s infinite linear;
    border-radius: 50%;
    border: 3px solid rgba(0, 0, 0, .2);
    border-top-color: var(--theme);
    height: 9em;
    margin: 0 auto 3.5em auto;
    width: 9em
}

@media (max-width:767px) {
    .preloader .animation-preloader .spinner {
        width: 7.5em;
        height: 7.5em;
        margin: 0 auto 1.5em auto
    }
}

.preloader .animation-preloader .txt-loading {
    font: bold 5em "DM Sans", sans-serif, "DM Sans", sans-serif;
    text-align: center;
    user-select: none
}

@media (max-width:767px) {
    .preloader .animation-preloader .txt-loading {
        font-size: 2.5em
    }
}

.preloader .animation-preloader .txt-loading .letters-loading {
    /* color: var(--theme); */
    color: #fff;
    position: relative
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
    animation-delay: .2s
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
    animation-delay: .4s
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
    animation-delay: .6s
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
    animation-delay: .8s
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
    animation-delay: 1s
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
    animation-delay: 1.2s
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
    animation-delay: 1.4s
}

.preloader .animation-preloader .txt-loading .letters-loading::before {
    animation: letters-loading 4s infinite;
    /* color: var(--header); */
    color: #fff;
    content: attr(data-text-preloader);
    left: 0;
    opacity: 0;
    font-family: "DM Sans", sans-serif;
    position: absolute;
    top: -3px;
    transform: rotateY(-90deg)
}

.preloader p {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: #fff
}

.preloader .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 0;
    z-index: 1;
    pointer-events: none
}

.preloader .loader .row {
    height: 100%
}

.preloader .loader .loader-section {
    padding: 0
}

.preloader .loader .loader-section .bg {
    background-color: #00395B;
    height: 100%;
    left: 0;
    width: 100%;
    transition: all .8s cubic-bezier(.77, 0, .175, 1)
}

.preloader.loaded .animation-preloader {
    opacity: 0;
    transition: .3s ease-out
}

.preloader.loaded .loader-section .bg {
    width: 0;
    transition: .7s .3s allcubic-bezier(.1, .1, .1, 1)
}

.search-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    background-color: rgba(255, 255, 255, .9)
}

.search-wrap .search-inner {
    position: relative;
    width: 100%;
    height: 100%
}

.search-wrap .search-cell {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%)
}

.search-wrap .search-field-holder {
    width: 50%;
    margin: auto;
    position: relative;
    animation: slideInUp .3s
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .search-wrap .search-field-holder {
        width: 70%
    }
}

@media (max-width:575px) {
    .search-wrap .search-field-holder {
        width: 80%
    }
}

.search-wrap .main-search-input {
    width: 100%;
    height: 70px;
    border: 0;
    padding: 0 50px;
    text-transform: capitalize;
    background: 0 0;
    font-size: 25px;
    color: var(--theme);
    border-bottom: 2px solid var(--theme);
    text-align: center;
    letter-spacing: 2px
}

@media (max-width:575px) {
    .search-wrap .main-search-input {
        height: 50px;
        padding: 0 0;
        line-height: 50px;
        font-size: 18px
    }
}

.search-wrap input.form-control,
.search-wrap input.form-control:focus {
    background-color: var(--theme)
}

input.main-search-input::placeholder {
    color: var(--theme);
    opacity: 1;
    font-size: 25px
}

@media (max-width:575px) {
    input.main-search-input::placeholder {
        font-size: 18px
    }
}

.search-close {
    position: absolute;
    top: 50px;
    right: 50px;
    font-size: 30px;
    color: var(--theme);
    cursor: pointer
}

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

.cursor-inner {
    width: 6px;
    height: 6px;
    z-index: 10000001;
    background-color: var(--theme);
    -webkit-transition: width .3s ease-in-out, height .3s ease-in-out, margin .3s ease-in-out, opacity .3s ease-in-out;
    -o-transition: width .3s ease-in-out, height .3s ease-in-out, margin .3s ease-in-out, opacity .3s ease-in-out;
    transition: width .3s ease-in-out, height .3s ease-in-out, margin .3s ease-in-out, opacity .3s ease-in-out
}

.cursor-inner.cursor-hover {
    margin-left: -35px;
    margin-top: -35px;
    width: 70px;
    height: 70px;
    background-color: var(--theme);
    opacity: .3
}

.cursor-outer {
    margin-left: -12px;
    margin-top: -12px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--theme);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 10000000;
    opacity: .5;
    -webkit-transition: all 80ms ease-out;
    -o-transition: all 80ms ease-out;
    transition: all 80ms ease-out
}

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

.back-to-top {
    border-radius: 50%;
    background-color: var(--theme);
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: var(--white);
    font-size: 18px;
    position: fixed;
    display: inline-block;
    z-index: 999;
    right: 30px;
    bottom: 30px;
    transition: all .4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px)
}

.back-to-top:hover {
    background-color: var(--header);
    color: var(--white)
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translate(0)
}

.pricing-wrapper .section-title h2 {
    margin-bottom: 15px
}

.pricing-wrapper .section-title p {
    margin-bottom: 15px
}

.pricing-wrapper .nav {
    border: none
}

.pricing-wrapper .nav .nav-tabs {
    border-bottom: 0;
    display: flex;
    justify-content: center
}

.pricing-wrapper .nav .nav-link {
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    border: 0;
    border-radius: 0;
    padding: 7px 56px;
    position: relative;
    background: 0 0;
    z-index: 2;
    color: var(--text);
    margin-bottom: 0
}

.pricing-wrapper .nav .nav-link::before {
    position: absolute;
    content: "";
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(50%);
    background: var(--theme);
    width: 75px;
    height: 32px;
    border-radius: 20px;
    border: 1px solid var(--theme)
}

.pricing-wrapper .nav .nav-link::after {
    position: absolute;
    content: "";
    right: -33px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--white);
    z-index: 1
}

.pricing-wrapper .nav .nav-link:first-child {
    padding-left: 0
}

.pricing-wrapper .nav .nav-link:last-child {
    padding-right: 0
}

.pricing-wrapper .nav .nav-link:last-child::after {
    display: none
}

.pricing-wrapper .nav .nav-link:last-child::before {
    display: none
}

.pricing-wrapper .nav .nav-link.active {
    color: var(--header)
}

.pricing-wrapper .nav .nav-link.active::after {
    right: 8px
}

.pricing-items {
    margin-top: 30px;
    padding: 45px 40px 25px;
    background-color: var(--white);
    border-radius: 24px;
    position: relative;
    border-radius: 12px;
    border: 1px solid rgba(2, 8, 66, .12);
    background: #fef1ee
}

@media (max-width:575px) {
    .pricing-items {
        padding: 30px
    }
}

@media (max-width:575px) {
    .pricing-items .pricing-header {
        padding-bottom: 20px
    }
}

.pricing-items .pricing-header .tag {
    border-bottom: 1px solid rgba(2, 8, 66, .12);
    padding-bottom: 30px
}

.pricing-items .pricing-header .tag span {
    color: #00395B;
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 3.52px
}

.pricing-items .pricing-header .number {
    display: flex;
    align-items: center;
    gap: 30px
}

.pricing-items .pricing-header .number h2 {
    color: #00395B;
    font-family: Outfit;
    font-size: 66px;
    font-style: normal;
    font-weight: 700;
    line-height: 81px;
    letter-spacing: -1.32px
}

@media (max-width:575px) {
    .pricing-items .pricing-header .number h2 {
        font-size: 50px
    }
}

.pricing-items .pricing-header .number span {
    display: flex;
    padding: 12px 19px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    background: #fefeff;
    color: #30784B;
    font-family: "DM Sans";
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    letter-spacing: .26px
}

.pricing-items .pricing-header p {
    color: #5F5D62;
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 20px
}

.pricing-items .pricing-list {
    margin-top: 30px;
    margin-bottom: 40px
}

@media (max-width:767px) {
    .pricing-items .pricing-list {
        margin-bottom: 30px
    }
}

@media (max-width:575px) {
    .pricing-items .pricing-list {
        margin-top: 20px;
        margin-bottom: 20px
    }
}

.pricing-items .pricing-list li {
    color: #59647e;
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px
}

.pricing-items .pricing-list li:not(:last-child) {
    margin-bottom: 10px
}

.pricing-items .pricing-list li i {
    color: var(--theme);
    margin-right: 10px
}

.pricing-items .pricing-list li.cross {
    color: rgba(89, 100, 126, .65);
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    text-decoration-line: strikethrough
}

.pricing-items .theme-btn {
    width: 100%;
    padding: 21px 30px;
    background: 0 0;
    border: 2px solid var(--theme)
}

.pricing-items .theme-btn span {
    color: var(--theme)
}

.pricing-items .theme-btn i {
    position: absolute;
    right: 7px;
    bottom: 5px;
    top: 6px;
    background: 0 0;
    border: 2px solid var(--theme);
    color: var(--theme)
}

.pricing-items .theme-btn::after,
.pricing-items .theme-btn::before {
    background-color: var(--theme)
}

.pricing-items .theme-btn:hover span {
    color: var(--white)
}

.pricing-items .theme-btn:hover i {
    background-color: var(--white);
    color: var(--header)
}

.pricing-items.active {
    background-color: var(--white)
}

@media (max-width:575px) {
    .pricing-items.active .pricing-header {
        padding-bottom: 20px
    }
}

.pricing-items.active .pricing-header .tag {
    border-bottom: 1px solid rgba(2, 8, 66, .12);
    padding-bottom: 30px
}

.pricing-items.active .pricing-header .tag span {
    color: #00395B;
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 3.52px
}

.pricing-items.active .pricing-header .number {
    display: flex;
    align-items: center;
    gap: 30px
}

.pricing-items.active .pricing-header .number h2 {
    color: #30784B
}

.pricing-items.active .pricing-header .number span {
    color: #30784B
}

.pricing-items.active .pricing-header p {
    color: #5F5D62;
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 20px
}

.pricing-items.active .pricing-list {
    margin-top: 30px;
    margin-bottom: 40px
}

@media (max-width:767px) {
    .pricing-items.active .pricing-list {
        margin-bottom: 30px
    }
}

@media (max-width:575px) {
    .pricing-items.active .pricing-list {
        margin-top: 20px;
        margin-bottom: 20px
    }
}

.pricing-items.active .pricing-list li {
    color: #59647e;
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px
}

.pricing-items.active .pricing-list li:not(:last-child) {
    margin-bottom: 10px
}

.pricing-items.active .pricing-list li i {
    color: var(--theme);
    margin-right: 10px
}

.pricing-items.active .pricing-list li.cross {
    color: rgba(89, 100, 126, .65);
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    text-decoration-line: strikethrough
}

.pricing-items.active .theme-btn {
    background-color: var(--theme)
}

.pricing-items.active .theme-btn span {
    color: var(--white)
}

.pricing-items.active .theme-btn i {
    background-color: var(--white)
}

.project-card-items {
    position: relative;
    margin-top: 30px
}

.project-card-items .project-img img {
    width: 100%;
    height: 100%;
    border-radius: 12px
}

.project-card-items .project-content {
    border-radius: 12px;
    background: var(--white);
    box-shadow: 11px 15px 79.9px 48px rgba(10, 6, 68, .05);
    padding: 35px;
    position: absolute;
    bottom: 0;
    left: 0
}

.project-card-items .project-content h3 a:hover {
    color: var(--theme)
}

.project-wrapper {
    margin-left: -185px;
    margin-right: -290px;
    margin-bottom: 50px;
    margin-top: 30px
}

@media (max-width:1199px) {
    .project-wrapper {
        margin-bottom: 0;
        margin-left: 0;
        margin-right: 0
    }
}

.project-wrapper .project-box-item .project-image {
    position: relative;
    overflow: hidden
}

.project-wrapper .project-box-item .project-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px
}

.project-wrapper .project-box-item .project-image::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    border-radius: 12px;
    background: rgba(241, 102, 62, .5);
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease-in-out
}

.project-wrapper .project-box-item .project-image .arrow-icon {
    width: 69px;
    height: 69px;
    line-height: 69px;
    border-radius: 100px;
    text-align: center;
    background-color: var(--white);
    color: var(--theme);
    position: absolute;
    top: -50%;
    left: 41%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease-in-out;
    transform: rotate(-45deg)
}

.project-wrapper .project-box-item .project-content {
    border-radius: 12px;
    background: var(--white);
    box-shadow: 11px 15px 79.9px 48px rgba(10, 6, 68, .05);
    padding: 28px 30px;
    margin-top: -60px;
    position: relative;
    margin-left: 20px;
    margin-right: 20px
}

@media (max-width:1199px) {
    .project-wrapper .project-box-item .project-content {
        padding: 28px 28px
    }
}

.project-wrapper .project-box-item .project-content .project-list {
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    left: 35px;
    top: -20px
}

.project-wrapper .project-box-item .project-content .project-list li a {
    border-radius: 4px;
    background: #fff4f1;
    padding: 6px 19px;
    color: var(--theme);
    font-size: 13px;
    font-weight: 600;
    transition: all .4s ease-in-out
}

.project-wrapper .project-box-item .project-content .project-list li a:hover {
    background: var(--header);
    color: var(--white)
}

.project-wrapper .project-box-item .project-content h3 {
    margin-bottom: 5px
}

.project-wrapper .project-box-item .project-content h3 a:hover {
    color: var(--theme)
}

.project-wrapper .project-box-item:hover .project-image::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    opacity: 1;
    visibility: visible
}

.project-wrapper .project-box-item:hover .project-image .arrow-icon {
    top: 50%;
    opacity: 1;
    visibility: visible
}

.project-wrapper-3 {
    margin-left: -185px;
    margin-right: -10px;
    margin-top: 60px
}

@media (max-width:1199px) {
    .project-wrapper-3 {
        margin-bottom: 0;
        margin-left: 0;
        margin-right: 0
    }
}

@media (max-width:1600px) {
    .project-wrapper-3 .project-box-item {
        margin-bottom: 20px
    }
}

.project-wrapper-3 .project-box-item .project-image {
    position: relative
}

.project-wrapper-3 .project-box-item .project-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px
}

.project-wrapper-3 .project-box-item .project-content {
    border-radius: 12px;
    background: var(--white);
    box-shadow: 11px 15px 79.9px 48px rgba(10, 6, 68, .05);
    padding: 28px 30px;
    margin-top: -160px;
    position: relative;
    margin-left: 20px;
    margin-right: 20px
}

@media (max-width:1199px) {
    .project-wrapper-3 .project-box-item .project-content {
        padding: 28px 28px
    }
}

.project-wrapper-3 .project-box-item .project-content .project-list {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px
}

.project-wrapper-3 .project-box-item .project-content .project-list li a {
    border-radius: 4px;
    background: #fff4f1;
    padding: 6px 19px;
    color: var(--theme);
    font-size: 13px;
    font-weight: 600;
    transition: all .4s ease-in-out
}

.project-wrapper-3 .project-box-item .project-content .project-list li a:hover {
    background: var(--header);
    color: var(--white)
}

.project-wrapper-3 .project-box-item .project-content h3 {
    margin-bottom: 5px
}

@media (max-width:1600px) {
    .project-wrapper-3 .project-box-item .project-content h3 {
        font-size: 20px
    }
}

.project-wrapper-3 .project-box-item .project-content h3 a:hover {
    color: var(--theme)
}

.portfolio-wrapper-2 .portfolio-content .portfolio-text {
    color: #5F5D62;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    margin-top: 15px
}

.portfolio-wrapper-2 .portfolio-items-info .portfolio-thumb {
    position: relative;
    margin-bottom: 20px
}

@media (max-width:575px) {
    .portfolio-wrapper-2 .portfolio-items-info .portfolio-thumb {
        height: 500px
    }
}

.portfolio-wrapper-2 .portfolio-items-info .portfolio-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.portfolio-wrapper-2 .portfolio-items-info .portfolio-thumb .portfolio-content {
    position: absolute;
    bottom: 8%;
    left: 4%;
    padding: 25px 113px 27px 25px;
    border-radius: 12px;
    background: var(--white);
    box-shadow: 11px 15px 79.9px 48px rgba(10, 6, 68, .05)
}

@media (max-width:575px) {
    .portfolio-wrapper-2 .portfolio-items-info .portfolio-thumb .portfolio-content {
        padding: 20px 40px 21px 21px
    }
}

.portfolio-wrapper-2 .portfolio-items-info .portfolio-thumb .portfolio-content p {
    display: inline-flex;
    padding: 8px 19px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    background: #e0f8f5;
    color: #30784B;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1
}

.portfolio-wrapper-2 .portfolio-items-info .portfolio-thumb .portfolio-content h4 a:hover {
    color: var(--theme)
}

.portfolio-wrapper-2 .portfolio-items-info .portfolio-thumb .arrow-button {
    position: absolute;
    top: 20px;
    right: 20px
}

@media (max-width:575px) {
    .portfolio-wrapper-2 .portfolio-items-info .portfolio-thumb .arrow-button {
        top: 50%;
        right: initial;
        left: 50%;
        transform: translate(-50%, -50%)
    }
}

.portfolio-wrapper-2 .portfolio-items-info .portfolio-thumb .arrow-button .link-btn i {
    transform: rotate(-40deg);
    transition: all .4s ease-in-out;
    margin-left: 0
}

.portfolio-wrapper-2 .portfolio-items-info .portfolio-thumb .arrow-button .link-btn:hover {
    color: var(--white)
}

.portfolio-wrapper-2 .portfolio-items-info .portfolio-thumb .arrow-button .link-btn:hover i {
    transform: rotate(0)
}

.portfolio-wrapper-2 .portfolio-items-info .portfolio-thumb .arrow-button .post-box {
    width: 65px;
    height: 65px;
    line-height: 65px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--theme);
    text-align: center;
    font-size: 18px;
    transition: all .4s ease-in-out
}

@media (max-width:1199px) {
    .portfolio-wrapper-2 .portfolio-items-info .portfolio-thumb .arrow-button .post-box {
        width: 50px;
        height: 50px;
        line-height: 50px
    }
}

.portfolio-wrapper-2 .portfolio-items-info .portfolio-thumb .arrow-button .post-box i {
    font-size: 20px;
    color: var(--theme);
    margin-left: 0
}

.portfolio-wrapper-2 .portfolio-items-info .portfolio-thumb .arrow-button .post-box:hover {
    background-color: var(--theme);
    color: var(--white)
}

.portfolio-wrapper-2 .portfolio-items-info .portfolio-thumb .arrow-button .post-box:hover i {
    color: var(--white)
}

.project-box-item-2 {
    margin-bottom: 20px
}

.project-box-item-2 .project-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px
}

.project-box-item-2 .project-content {
    border-radius: 12px;
    background: var(--white);
    box-shadow: 11px 15px 79.9px 48px rgba(10, 6, 68, .05);
    padding: 28px 30px;
    margin-top: -220px;
    position: relative;
    margin-left: 20px;
    margin-right: 200px
}

@media (max-width:1199px) {
    .project-box-item-2 .project-content {
        margin-right: 20px
    }
}

.project-box-item-2 .project-content .project-list {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px
}

.project-box-item-2 .project-content .project-list li a {
    border-radius: 4px;
    background: #fff4f1;
    padding: 6px 19px;
    color: var(--theme);
    font-size: 13px;
    font-weight: 600;
    transition: all .4s ease-in-out
}

.project-box-item-2 .project-content .project-list li a:hover {
    background: var(--header);
    color: var(--white)
}

.project-box-item-2 .project-content h3 {
    border-bottom: 1px solid rgba(2, 8, 66, .12);
    padding-bottom: 10px;
    margin-bottom: 10px
}

.project-box-item-2 .project-content h3 a:hover {
    color: var(--theme)
}

.project-box-item-2 .project-content p {
    max-width: 334px
}

.project-box-item-2 .project-content .link-btn {
    margin-top: 20px
}

.project-details-wrapper .project-details-items .details-image img {
    width: 100%;
    height: 100%
}

.project-details-wrapper .project-details-items .details-content h3 {
    font-size: 30px;
    margin-bottom: 15px
}

@media (max-width:767px) {
    .project-details-wrapper .project-details-items .details-content h3 {
        font-size: 26px
    }
}

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

.project-details-wrapper .project-details-items .project-catagory {
    padding: 40px 30px;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    border-top: 4px solid var(--theme);
    margin-top: -150px;
    margin-right: 30px
}

@media (max-width:991px) {
    .project-details-wrapper .project-details-items .project-catagory {
        margin-top: 0
    }
}

.project-details-wrapper .project-details-items .project-catagory h3 {
    border-bottom: 1px solid var(--border);
    padding-bottom: 30px
}

.project-details-wrapper .project-details-items .project-catagory ul li {
    font-weight: 600;
    color: var(--header);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    padding: 16px 0
}

.project-details-wrapper .project-details-items .project-catagory ul li span {
    font-weight: 500
}

.project-details-wrapper .project-details-items .project-catagory ul li span i {
    color: var(--text);
    transition: all .4s ease-in-out
}

.project-details-wrapper .project-details-items .project-catagory ul li span i:hover {
    color: var(--theme)
}

.project-details-wrapper .project-details-items .list-item {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 30px
}

@media (max-width:1199px) {
    .project-details-wrapper .project-details-items .list-item {
        flex-wrap: wrap;
        gap: 10px
    }
}

.project-details-wrapper .project-details-items .list-item .list li {
    font-weight: 500;
    color: var(--header)
}

@media (max-width:575px) {
    .project-details-wrapper .project-details-items .list-item .list li {
        font-size: 13px
    }
}

.project-details-wrapper .project-details-items .list-item .list li:not(:last-child) {
    margin-bottom: 10px
}

.project-details-wrapper .project-details-items .list-item .list li i {
    margin-right: 5px;
    color: var(--theme)
}

.project-details-wrapper .project-details-items .thumb img {
    width: 100%;
    height: 100%
}

.project-details-wrapper .preview-area {
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 30px 0
}

.project-details-wrapper .preview-area .preview-item {
    display: flex;
    align-items: center;
    gap: 12px
}

.project-details-wrapper .preview-area .preview-item img {
    border-radius: 100%
}

.project-details-wrapper .preview-area .preview-item .content.text-right {
    text-align: right
}

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

.section-title .sub-title {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    font-family: "DM Sans", sans-serif;
    margin-bottom: 30px;
    text-transform: capitalize;
    border-radius: 4px;
    background: #00395b;
    padding: 10px 14px;
    line-height: 1;
    display: inline-block
}

.section-title .sub-title.style-2 {
    background: #fefeff
}

.section-title .sub-title.style-3 {
    background: #fefeff;
    color: #00395b;
}

.section-title .sub-title.style-4 {
    background: #fefeff;
    color: #30784b;
}

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

.section-title-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 9
}

@media (max-width:991px) {
    .section-title-area {
        flex-wrap: wrap;
        gap: 30px
    }
}

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

.section-bg-2 {
    background-color: var(--header)
}

.section-bg {
    background-color: #00395B
}

.cta-bg {
    background: #30784B
}

.section-padding {
    padding: 120px 0
}

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

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

@media (max-width:1199px) {
    .service-section-1 {
        margin-bottom: -80px
    }
}

.service-main-item .service-card-item {
    display: flex;
    gap: 25px;
    max-width: 475px
}

@media (max-width:1199px) {
    .service-main-item .service-card-item {
        flex-wrap: wrap
    }
}

.service-main-item .service-card-item .content h3 {
    margin-bottom: 15px
}

.service-main-item .service-card-item .content h3 a:hover {
    color: var(--theme)
}

.service-main-item .service-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    position: relative
}

.service-main-item .service-button::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #d9d9d9;
    height: 1px;
    top: 12px;
    left: 22px;
    width: 77%;
    z-index: -1
}

@media (max-width:1399px) {
    .service-main-item .service-button::before {
        display: none
    }
}

.service-main-item .service-button .number {
    font-size: 16px;
    font-weight: 700;
    color: var(--text)
}

.service-main-item .service-button .icon a {
    width: 30px;
    height: 26px;
    line-height: 26px;
    border-radius: 26px;
    text-align: center;
    background-color: var(--theme);
    display: inline-block
}

.service-main-item .service-button .icon a i {
    color: var(--white);
    transform: rotate(-22deg)
}

.service-box-item {
    border-radius: 12px;
    border: 1px solid rgba(104, 119, 153, .24);
    background: var(--white);
    box-shadow: 11px 15px 79.9px 48px rgba(10, 6, 68, .04);
    padding: 30px 30px 50px;
    margin-top: 30px
}

.service-box-item .service-icon-item {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.service-box-item .service-icon-item .icon {
    width: 93px;
    height: 93px;
    line-height: 93px;
    text-align: center;
    border-radius: 100px;
    background-color: var(--white);
    box-shadow: 11px 15px 79.9px rgba(10, 6, 68, .05)
}

.service-box-item .service-icon-item .service-image img {
    width: 100%;
    height: 100%
}

.service-box-item .content h3 {
    margin-bottom: 15px
}

.service-box-item .content h3 a:hover {
    color: var(--theme)
}

.service-box-item .content .link-btn {
    margin-top: 90px
}

@media (max-width:1199px) {
    .service-box-item .content .link-btn {
        margin-top: 30px
    }
}

.service-wrapper-2 {
    margin-right: -1%;
    margin-left: -12%
}

@media (max-width:1399px) {
    .service-wrapper-2 {
        margin-left: 0;
        margin-right: 0
    }
}

.service-wrapper-2 .service-box-items-2 {
    position: relative;
    margin-top: 30px;
    padding: 50px 50px;
    border-radius: 6px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, .24) 0 3px 8px;
    margin-bottom: 30px
}

@media (max-width:1600px) {
    .service-wrapper-2 .service-box-items-2 {
        padding: 30px
    }
}

.service-wrapper-2 .service-box-items-2::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(assets/img/service/hover-bg.jpg);
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    transition: all .4s ease-in-out
}

.service-wrapper-2 .service-box-items-2 .icon {
    transition: all .4s ease-in-out
}

.service-wrapper-2 .service-box-items-2 .content {
    position: relative;
    z-index: 9;
    margin-top: 30px
}

.service-wrapper-2 .service-box-items-2 .content h3 {
    margin-bottom: 10px;
    font-size: 32px
}

@media (max-width:1600px) {
    .service-wrapper-2 .service-box-items-2 .content h3 {
        font-size: 22px
    }
}

.service-wrapper-2 .service-box-items-2 .content ul li {
    position: relative;
    padding-left: 15px;
    transition: all .4s ease-in-out
}

.service-wrapper-2 .service-box-items-2 .content ul li:not(:last-child) {
    margin-bottom: 30px
}

.service-wrapper-2 .service-box-items-2 .content ul li::before {
    width: 5px;
    height: 5px;
    line-height: 5px;
    border-radius: 5px;
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    background-color: #5F5D62;
    transition: all .4s ease-in-out
}

.service-wrapper-2 .service-box-items-2 .content .link-btn {
    font-size: 15px;
    font-weight: 700;
    display: inline-block;
    text-transform: capitalize;
    color: var(--theme);
    margin-top: 40px;
    padding: 6px 6px 6px 32px;
    border-radius: 44px;
    background: #f0fcfa
}

.service-wrapper-2 .service-box-items-2 .content .link-btn i {
    transform: rotate(-40deg);
    transition: all .4s ease-in-out;
    margin-left: 30px;
    width: 43px;
    height: 43px;
    line-height: 43px;
    text-align: center;
    border-radius: 50%;
    background-color: #f7f7f9
}

.service-wrapper-2 .service-box-items-2:hover::before {
    opacity: 1;
    visibility: visible
}

.service-wrapper-2 .service-box-items-2:hover .icon {
    filter: grayscale(100%) brightness(300%)
}

.service-wrapper-2 .service-box-items-2:hover .content h3 a {
    color: var(--white)
}

.service-wrapper-2 .service-box-items-2:hover .content ul li {
    color: var(--white)
}

.service-wrapper-2 .service-box-items-2:hover .content ul li::before {
    background-color: var(--white)
}

.service-section {
    position: relative;
    z-index: 9
}

.service-section .shape-image {
    position: absolute;
    top: -100px;
    left: 0;
    z-index: -1
}

@media (max-width:1199px) {
    .service-section .shape-image {
        display: none
    }
}

.service-section-2 {
    position: relative
}

.service-section-2 .service-shape {
    position: absolute;
    top: -120px;
    left: 0;
    z-index: -1
}

@media (max-width:1199px) {
    .service-section-2 .service-shape {
        display: none
    }
}

.service-section-2 .service-shape-2 {
    position: absolute;
    top: 20%;
    right: 20%
}

@media (max-width:1399px) {
    .service-section-2 .service-shape-2 {
        display: none
    }
}

.service-box-items-3 {
    margin-top: 30px;
    border-radius: 6px;
    background: #fff;
    box-shadow: 11px 15px 79.9px 48px rgba(10, 6, 68, .05)
}

.service-box-items-3 .service-img {
    position: relative;
    padding: 15px;
    padding-bottom: 0
}

.service-box-items-3 .service-img .icon {
    width: 82px;
    height: 82px;
    line-height: 82px;
    border-radius: 50%;
    background-color: var(--white);
    box-shadow: rgba(100, 100, 111, .2) 0 7px 29px 0;
    position: absolute;
    right: 30px;
    bottom: -40px;
    text-align: center
}

.service-box-items-3 .service-img .icon img {
    width: initial;
    height: initial
}

.service-box-items-3 .service-img img {
    width: 100%;
    height: 100%;
    border-radius: 15px
}

.service-box-items-3 .service-content {
    padding: 30px
}

.service-box-items-3 .service-content span {
    color: var(--theme)
}

.service-box-items-3 .service-content h3 {
    margin-top: 15px;
    margin-bottom: 15px
}

.service-box-items-3 .service-content h3 a:hover {
    color: var(--theme)
}

.service-box-items-3 .service-content .link-btn {
    font-size: 15px;
    font-weight: 700;
    display: inline-block;
    text-transform: capitalize;
    color: var(--header);
    margin-top: 20px
}

.service-box-items-3 .service-content .link-btn i {
    transform: rotate(-40deg);
    transition: all .4s ease-in-out;
    margin-left: 10px
}

.service-box-items-3 .service-content .link-btn:hover {
    color: var(--theme)
}

.service-box-items-3 .service-content .link-btn:hover i {
    transform: rotate(0)
}

.service-details-wrapper .service-details-post .details-image img {
    width: 100%;
    height: 100%
}

.service-details-wrapper .service-details-post .details-content {
    margin-top: 30px
}

.service-details-wrapper .service-details-post .details-content h2 {
    margin-bottom: 40px
}

@media (max-width:1199px) {
    .service-details-wrapper .service-details-post .details-content h2 {
        margin-bottom: 30px
    }
}

.service-details-wrapper .service-details-post .details-content .list-item {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 50px
}

@media (max-width:1199px) {
    .service-details-wrapper .service-details-post .details-content .list-item {
        flex-wrap: wrap;
        gap: 30px;
        margin-top: 30px
    }
}

.service-details-wrapper .service-details-post .details-content .list-item .list li:not(:last-child) {
    margin-bottom: 15px
}

.service-details-wrapper .service-details-post .details-content .list-item .list li i {
    margin-right: 5px;
    color: var(--theme)
}

.service-details-wrapper .service-details-post .details-content .details-icon-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
    margin-bottom: 30px
}

@media (max-width:1199px) {
    .service-details-wrapper .service-details-post .details-content .details-icon-item {
        flex-wrap: wrap;
        gap: 30px;
        margin-top: 30px
    }
}

.service-details-wrapper .service-details-post .details-content .details-icon-item .icon-item {
    display: flex;
    align-items: center;
    gap: 20px
}

@media (max-width:1199px) {
    .service-details-wrapper .service-details-post .details-content .details-icon-item .icon-item {
        flex-wrap: wrap
    }
}

.service-details-wrapper .service-details-post .details-content .details-icon-item .icon-item h4 {
    font-size: 20px;
    font-weight: 600
}

.service-details-wrapper .main-sideber .single-sideber-widget {
    padding: 40px;
    border-radius: 12px;
    background: var(--bg);
    margin-bottom: 50px
}

.service-details-wrapper .main-sideber .single-sideber-widget .details-list li {
    list-style: none;
    color: var(--header);
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid rgba(2, 8, 66, .17);
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.service-details-wrapper .main-sideber .single-sideber-widget .details-list li:not(:last-child) {
    margin-bottom: 20px
}

.service-details-wrapper .main-sideber .single-sideber-widget .details-list li i {
    transform: rotate(-45deg);
    transition: all .4s ease-in-out
}

.service-details-wrapper .main-sideber .single-sideber-widget .details-list li:hover a {
    color: var(--theme)
}

.service-details-wrapper .main-sideber .single-sideber-widget .details-list li:hover i {
    color: var(--theme);
    transform: rotate(0)
}

.service-details-wrapper .main-sideber .contact-bg {
    position: relative;
    border-radius: 12px;
    height: 635px
}

@media (max-width:991px) {
    .service-details-wrapper .main-sideber .contact-bg {
        height: 550px
    }
}

@media (max-width:767px) {
    .service-details-wrapper .main-sideber .contact-bg {
        height: 450px
    }
}

@media (max-width:575px) {
    .service-details-wrapper .main-sideber .contact-bg {
        height: 350px
    }
}

.service-details-wrapper .main-sideber .contact-bg::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(1, 18, 41, 0) 0, rgba(1, 18, 41, .72) 100%)
}

.service-details-wrapper .main-sideber .contact-bg .content {
    position: absolute;
    bottom: 45px;
    left: 70px;
    right: 70px;
    text-align: center
}

@media (max-width:1199px) {
    .service-details-wrapper .main-sideber .contact-bg .content {
        left: 30px;
        right: 30px
    }
}

.service-details-wrapper .main-sideber .contact-bg .content h3 {
    font-size: 34px;
    color: var(--white);
    margin-bottom: 30px
}

@media (max-width:1199px) {
    .service-details-wrapper .main-sideber .contact-bg .content h3 {
        font-size: 30px
    }
}

@media (max-width:575px) {
    .service-details-wrapper .main-sideber .contact-bg .content h3 {
        font-size: 25px
    }
}

.testimonial-wrapper {
    border-radius: 12px;
    position: relative;
    padding: 0 80px;
    z-index: 9
}

@media (max-width:1199px) {
    .testimonial-wrapper {
        padding: 0 60px
    }
}

@media (max-width:991px) {
    .testimonial-wrapper {
        padding: 0 50px
    }
}

@media (max-width:767px) {
    .testimonial-wrapper {
        padding: 0 40px
    }
}

@media (max-width:575px) {
    .testimonial-wrapper {
        padding: 0 30px
    }
}

.testimonial-wrapper::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #f8ebe9;
    top: 50px;
    border-radius: 12px
}

.testimonial-wrapper.style-2::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #00395B;
    top: 50px
}

.testimonial-wrapper.style-2 .testimonial-content .star {
    color: #30784B;
    margin-bottom: 20px
}

.testimonial-wrapper.style-2 .testimonial-content p {
    font-size: 22px;
    font-weight: 600;
    color: var(--white)
}

.testimonial-wrapper.style-2 .testimonial-content .info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 60px
}

.testimonial-wrapper.style-2 .testimonial-content .info-item .content h3 {
    color: var(--white)
}

.testimonial-wrapper .top-shape {
    position: absolute;
    left: 0;
    top: 50px
}

.testimonial-wrapper .bottom-shape {
    position: absolute;
    right: 0;
    bottom: 0
}

.testimonial-wrapper .icon {
    width: 94px;
    height: 94px;
    line-height: 94px;
    text-align: center;
    background-color: var(--theme);
    border-radius: 12px;
    position: absolute;
    right: 140px;
    top: 0
}

@media (max-width:1199px) {
    .testimonial-wrapper .icon {
        display: none
    }
}

.testimonial-wrapper .testimonial-image {
    max-width: 472px
}

.testimonial-wrapper .testimonial-image img {
    width: 100%;
    height: 100%
}

.testimonial-wrapper .testimonial-content {
    padding: 40px 0 0
}

@media (max-width:1199px) {
    .testimonial-wrapper .testimonial-content {
        padding: 60px 0
    }
}

@media (max-width:991px) {
    .testimonial-wrapper .testimonial-content {
        padding: 50px 0
    }
}

@media (max-width:767px) {
    .testimonial-wrapper .testimonial-content {
        padding: 40px 0
    }
}

@media (max-width:575px) {
    .testimonial-wrapper .testimonial-content {
        padding: 30px 0
    }
}

.testimonial-wrapper .testimonial-content .star {
    color: #30784B;
    margin-bottom: 20px
}

.testimonial-wrapper .testimonial-content p {
    font-size: 22px;
    font-weight: 600;
    color: var(--header)
}

.testimonial-wrapper .testimonial-content .info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 60px
}

.testimonial-wrapper .testimonial-content .info-item .content h3 {
    font-family: "DM Sans", sans-serif
}

.testimonial-section {
    position: relative;
    margin-top: -50px
}

@media (max-width:1199px) {
    .testimonial-section {
        margin-top: 0
    }
}

.testimonial-section::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--header);
    top: -50%
}

.testimonial-section-2 {
    position: relative
}

.testimonial-section-2::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--bg);
    top: -50%
}

.testimonial-wrapper-2 {
    margin-top: 60px
}

.testimonial-wrapper-2 .testimonial-card-items-two {
    position: relative;
    padding: 45px 45px 45px;
    background: var(--white);
    border-radius: 12px;
    margin-left: 30px;
    padding-left: 130px
}

@media (max-width:1199px) {
    .testimonial-wrapper-2 .testimonial-card-items-two {
        padding: 30px;
        margin-left: 0
    }
}

.testimonial-wrapper-2 .testimonial-card-items-two .icon-items {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px
}

.testimonial-wrapper-2 .testimonial-card-items-two .icon-items .star {
    color: var(--theme)
}

.testimonial-wrapper-2 .testimonial-card-items-two .content {
    margin-bottom: 27px
}

.testimonial-wrapper-2 .testimonial-card-items-two .content p {
    color: #5F5D62;
    font-family: "DM Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px
}

.testimonial-wrapper-2 .testimonial-card-items-two .client-info ul li {
    color: #525b5a;
    font-family: "DM Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px
}

.testimonial-wrapper-2 .testimonial-card-items-two .client-info ul li span {
    color: #5F5D62;
    font-family: "DM Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px
}

.testimonial-wrapper-2 .testimonial-card-items-two .client-info-thumb {
    position: absolute;
    left: -5%;
    top: 10%
}

@media (max-width:1199px) {
    .testimonial-wrapper-2 .testimonial-card-items-two .client-info-thumb {
        position: static;
        margin-top: 30px
    }
}

.testimonial-wrapper-2 .testimonial-card-items-two .client-info-thumb img {
    border-radius: 100px
}

.testimonial-section-2 {
    position: relative
}

.testimonial-section-2 .shape-1 {
    position: absolute;
    left: 1%;
    top: 0
}

.testimonial-section-2 .shape-2 {
    position: absolute;
    left: 40%;
    top: 0
}

.testimonial-wrapper-3 .testimonial-left h2 {
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    padding-bottom: 20px;
    margin-bottom: 25px
}

.testimonial-wrapper-3 .testimonial-box-item-3 {
    background-color: var(--white);
    padding: 40px 40px;
    position: relative;
    z-index: 9;
    border-radius: 12px
}

@media (max-width:575px) {
    .testimonial-wrapper-3 .testimonial-box-item-3 {
        padding: 25px;
        margin-bottom: 5px
    }
}

.testimonial-wrapper-3 .testimonial-box-item-3 .quate-icon {
    width: 88px;
    height: 88px;
    line-height: 88px;
    text-align: center;
    background-color: var(--theme);
    position: absolute;
    right: 40px;
    top: -30px;
    border-radius: 12px
}

.testimonial-wrapper-3 .testimonial-box-item-3 .test-content .star {
    color: var(--theme);
    margin-bottom: 5px
}

.testimonial-wrapper-3 .testimonial-box-item-3 .test-content p {
    font-size: 22px;
    font-weight: 500;
    color: var(--header)
}

.testimonial-wrapper-3 .testimonial-box-item-3 .test-content .client-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px
}

.testimonial-wrapper-3 .testimonial-box-item-3 .test-content .client-info .info-image img {
    width: 64px;
    height: 64px;
    border-radius: 50%
}

.testimonial-wrapper-3 .testimonial-box-item-3 .test-content .client-info .text h5 {
    font-size: 18px;
    font-weight: 600
}

@media (max-width:767px) {
    .team-wrapper-2 {
        margin-top: 30px !important
    }
}

.team-wrapper-2 .team-content-area .team-content {
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    transition: all .4s ease-in-out
}

@media (max-width:1199px) {
    .team-wrapper-2 .team-content-area .team-content {
        padding: 17px 25px;
        gap: 8px;
        justify-content: space-between
    }
}

@media (max-width:767px) {
    .team-wrapper-2 .team-content-area .team-content {
        padding: 20px 30px;
        border-radius: 12px;
        background: var(--theme)
    }

    .team-wrapper-2 .team-content-area .team-content:not(:last-child) {
        margin-bottom: 20px
    }

    .team-wrapper-2 .team-content-area .team-content:not(:last-child) .team-items-1 span {
        color: var(--white)
    }

    .team-wrapper-2 .team-content-area .team-content:not(:last-child) .team-items-1 h4 a {
        color: var(--white)
    }

    .team-wrapper-2 .team-content-area .team-content:not(:last-child) .team-items-2 .icon i {
        color: var(--white)
    }

    .team-wrapper-2 .team-content-area .team-content:not(:last-child) .team-items-2 h5 a {
        color: var(--white)
    }

    .team-wrapper-2 .team-content-area .team-content:not(:last-child) .team-items-2 .icon-2 i {
        color: var(--white)
    }
}

.team-wrapper-2 .team-content-area .team-content .team-items-1 {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-basis: 105%
}

@media (max-width:1199px) {
    .team-wrapper-2 .team-content-area .team-content .team-items-1 {
        gap: 30px
    }
}

@media (max-width:575px) {
    .team-wrapper-2 .team-content-area .team-content .team-items-1 {
        gap: 4px
    }
}

.team-wrapper-2 .team-content-area .team-content .team-items-1 span {
    color: var(--black);
    text-align: center;
    font-family: "DM Sans", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 126%;
    letter-spacing: -.3px
}

@media (max-width:575px) {
    .team-wrapper-2 .team-content-area .team-content .team-items-1 span {
        font-size: 20px
    }
}

.team-wrapper-2 .team-content-area .team-content .team-items-1 h4 a {
    color: var(--black);
    text-align: center;
    font-family: "DM Sans", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 126%;
    letter-spacing: -.3px
}

@media (max-width:773px) {
    .team-wrapper-2 .team-content-area .team-content .team-items-1 h4 a {
        font-size: 26px;
        color: var(--white);
    }
}

@media (max-width:773px) {
    .team-wrapper-2 .team-content-area .team-content .team-items-1 span {
        font-size: 26px;
        color: var(--white);
    }
}

@media (max-width:773px) {
    .team-wrapper-2 .team-content-area .team-content .team-items-2 h5 a {
        font-size: 26px;
        color: var(--white);
    }
}

@media (max-width:773px) {
    .team-wrapper-2 .team-content-area .team-content .team-items-2 h5 a {
        font-size: 26px;
        color: var(--white) !important;
    }
}

@media (max-width:773px) {
    .team-wrapper-2 .team-content-area .team-content .team-items-2 .icon-2 i {
        font-size: 26px;
        color: var(--white);
    }
}


@media (max-width:1199px) {
    .team-wrapper-2 .team-content-area .team-content .team-items-1 h4 a {
        font-size: 26px
    }
}

@media (max-width:575px) {
    .team-wrapper-2 .team-content-area .team-content .team-items-1 h4 a {
        font-size: 20px;
        line-height: 50%
    }
}

.team-wrapper-2 .team-content-area .team-content .team-items-2 {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all .4s ease-in-out;
    justify-content: end;
    width: 100%
}

@media (max-width:575px) {
    .team-wrapper-2 .team-content-area .team-content .team-items-2 {
        gap: 4px
    }
}

.team-wrapper-2 .team-content-area .team-content .team-items-2 .icon {
    display: flex;
    padding: 20px 30px;
    align-items: center;
    gap: 99px
}

@media (max-width:575px) {
    .team-wrapper-2 .team-content-area .team-content .team-items-2 .icon {
        gap: 10px
    }
}

.team-wrapper-2 .team-content-area .team-content .team-items-2 .icon i {
    color: var(--Neutral-Gray, #cecece)
}

.team-wrapper-2 .team-content-area .team-content .team-items-2 h5 a {
    color: var(--black);
    text-align: center;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%
}

@media (max-width:575px) {
    .team-wrapper-2 .team-content-area .team-content .team-items-2 h5 a {
        font-size: 15px;
        line-height: 50%
    }
}

.team-wrapper-2 .team-content-area .team-content .team-items-2 .icon-2 i {
    font-size: 20px;
    color: var(--white)
}

.team-wrapper-2 .team-content-area .team-content:hover {
    padding: 20px 30px;
    border-radius: 12px;
    background: var(--theme);
    transition: all .4s ease-in-out
}

.team-wrapper-2 .team-content-area .team-content:hover .team-items-1 span {
    color: var(--white)
}

.team-wrapper-2 .team-content-area .team-content:hover .team-items-1 h4 a {
    color: var(--white)
}

.team-wrapper-2 .team-content-area .team-content:hover .team-items-2 .icon i {
    color: var(--white)
}

.team-wrapper-2 .team-content-area .team-content:hover .team-items-2 h5 a {
    color: var(--white)
}

.team-wrapper-2 .team-content-area .team-content:hover .team-items-2 .icon-2 i {
    color: var(--white)
}

.team-wrapper-2 .team-thumb {
    max-width: 533px
}

@media (max-width:1199px) {
    .team-wrapper-2 .team-thumb {
        max-width: 1000px
    }
}

.team-wrapper-2 .team-thumb img {
    border-radius: 10px;
    width: 100%;
    height: 100%
}

.team-box-items {
    margin-top: 30px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 11px 15px 79.9px 48px rgba(10, 6, 68, .05);
    padding: 40px
}

@media (max-width:575px) {
    .team-box-items {
        padding: 30px
    }
}

.team-box-items .team-img {
    display: flex;
    gap: 30px;
    align-items: center
}

@media (max-width:1199px) {
    .team-box-items .team-img {
        flex-wrap: wrap
    }
}

.team-box-items .team-img img {
    border-radius: 50%
}

.team-box-items .team-img .team-content h5 {
    color: var(--theme)
}

.team-box-items .team-img .team-content h3 {
    border-bottom: 1px solid rgba(2, 8, 66, .12);
    padding-bottom: 20px
}

.team-box-items .team-img .team-content h3 a:hover {
    color: var(--theme)
}

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

.team-box-items .team-img .team-content .social-icon {
    margin-top: 30px;
    gap: 15px;
    position: relative;
    z-index: 9
}

.team-box-items .team-img .team-content .social-icon a {
    width: 41px;
    height: 41px;
    line-height: 41px;
    text-align: center;
    border-radius: 50%;
    font-size: 16px;
    display: inline-block;
    color: var(--theme);
    transition: all .4s ease-in-out;
    text-align: center;
    background-color: transparent;
    border: 1px solid rgba(2, 8, 66, .12)
}

.team-box-items .team-img .team-content .social-icon a:hover {
    background-color: var(--theme);
    color: var(--white);
    border: 1px solid transparent
}

.team-details-wrapper .thumb {
    max-width: 656px
}

@media (max-width:1199px) {
    .team-details-wrapper .thumb {
        max-width: initial
    }
}

.team-details-wrapper .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 12px
}

.team-details-wrapper .details-content span {
    font-size: 14px;
    color: var(--theme);
    display: inline-block;
    margin-bottom: 20px
}

.team-details-wrapper .details-content p {
    font-size: 16px;
    color: var(--header)
}

.team-details-wrapper .details-content h3 {
    margin-top: 30px;
    margin-bottom: 14px
}

.team-details-wrapper .details-content .list {
    margin-top: 30px
}

.team-details-wrapper .details-content .list li {
    color: #1c1d20
}

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

.team-details-wrapper .details-content .list li i {
    color: var(--header);
    margin-right: 5px
}

.team-details-wrapper .details-content .social-icon {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 15px
}

.team-details-wrapper .details-content .social-icon a {
    display: inline-block;
    text-align: center;
    color: var(--header);
    transition: all .4s ease-in-out
}

.team-details-wrapper .details-content .social-icon a:hover {
    color: var(--theme)
}

.team-details-wrapper .details-info-items {
    margin-top: 50px
}

.team-details-wrapper .details-info-items .info-content h4 {
    margin-bottom: 15px
}

.team-details-wrapper .details-info-items .team-side .team-list {
    margin-top: 15px
}

.team-details-wrapper .details-info-items .team-side .team-list li {
    color: #5F5D62
}

.team-details-wrapper .details-info-items .team-side .team-list li:not(:last-child) {
    margin-bottom: 10px
}

.theme-btn.single-btns {
    background: var(--header) !important
}

.theme-btn.single-btns:hover {
    background: var(--theme) !important
}

.service-wrapper-2 .service-box-items-2::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../../assets/img/service/hover-bg.jpg);
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    transition: .4s ease-in-out
}