@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&amp;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&amp;display=swap");
:root {
    --body: #ffffff;
    --white: #ffffff;
    --black: #1a1a1a;
    --theme-color: #8E0000;
    --theme-color-light: #4db5e5;
    --theme-color-dark: #0f6fa0;
    --secondary-color: #D4AF37;
    --secondary-color-dark: #9e1f1f;
    --accent-gold: #F9A825;
    --accent-gold-dark: #d18f12;
    --header: #510909;
    --text: #6f6f6f;
    --text-dark: #2b2b2b;
    --text-light: #ffffff;
    --border: #e0e0e0;
    --bg: #f7f9fc;
    --ratting: #FBC02D;
    --box-shadow: 0px 6px 30px rgba(23, 154, 210, 0.15);
    --color-gradient-1: linear-gradient(180deg, #179ad2 0%, #0f6fa0 100%);
    --color-gradient-2: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
    --color-gradient-3: linear-gradient(180deg, #C62828 0%, #F9A825 100%);
}

.theme-btn {
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    border: none;
    outline: none !important;
    background: var(--color-gradient-3);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    padding: 22px 44px;
    transition: 0.5s ease-in-out;
    text-transform: capitalize;
    position: relative;
    z-index: 2;
    overflow: hidden;
    text-align: center;
    border-radius: 120px;
    line-height: 1;
    font-family: "DM Sans", sans-serif;
}

.theme-btn::after {
    content: "";
    background: var(--color-gradient-3);
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    clip-path: circle(0% at 50% 50%);
    transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
    z-index: -1;
}

.theme-btn i {
    margin-left: 10px;
}

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

.theme-btn:hover::after {
    clip-path: circle(100% at 50% 50%);
    transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
}

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

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


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

body {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 30px;
    color: var(--text);
    background-color: var(--white);
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    font-weight: 500;
}

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

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

input:focus {
    color: var(--white);
    outline: none;
}

input {
    color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Unbounded", sans-serif;
    margin: 0px;
    padding: 0;
    color: var(--header);
    text-transform: capitalize;
    transition: all 0.4s ease-in-out;
    font-weight: 600;
}

h1 {
    font-size: 90px;
}

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

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

h2 {
    font-size: 42px;
    line-height: 130%;
}

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

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

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

@media (max-width: 470px) {
    h2 {
        font-size: 25px;
    }
}

h3 {
    font-size: 24px;
    line-height: 150%;
}

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

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

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

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

.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, 0.2);
    border-top-color: var(--theme-color);
    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 "Unbounded", 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);
    position: relative;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
    animation-delay: 0.2s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
    animation-delay: 0.4s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
    animation-delay: 0.6s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
    animation-delay: 0.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);
    content: attr(data-text-preloader);
    left: 0;
    opacity: 0;
    font-family: "Unbounded", sans-serif;
    position: absolute;
    top: -3px;
    transform: rotateY(-90deg);
}

.preloader p {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: var(--theme-color);
}

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

.preloader .loader .loader-section .bg {
    background-color: var(--bg);
    height: 100%;
    left: 0;
    width: 100%;
    transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

.preloader.loaded .animation-preloader {
    opacity: 0;
    transition: 0.3s ease-out;
}

.preloader.loaded .loader-section .bg {
    width: 0;
    transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

.header-search-bar {
    height: 270px;
    position: fixed;
    top: -200%;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--white);
    transition: 0.3s;
}

.header-search-bar.search-open {
    top: 0;
}

.contact-search-form-box {
    margin-top: 50px;
}

.contact-search-form-box form {
    position: relative;
}

.contact-search-form-box form button {
    position: absolute;
    right: 30px;
    top: 15px;
    font-size: 18px;
}

.search-close {
    position: absolute;
    right: 50px;
    top: 35px;
    font-size: 50px;
    color: var(--header);
    font-weight: 300;
    width: 45px;
    height: 45px;
}

.search-bar .contact-search-form-box input {
    border: none;
    width: 100%;
    outline: none;
    color: var(--header);
    border-bottom: 1px solid var(--border);
    font-size: 24px;
    padding-bottom: 30px;
    font-weight: 400;
    line-height: 1;
}

@media (max-width: 767px) {
    .search-bar .contact-search-form-box input {
        font-size: 22px;
    }
}

.search-bar .contact-search-form-box input::placeholder {
    color: var(--header);
}

.search-bar .contact-search-form-box i {
    color: var(--theme-color);
}

.search-bar .contact-search-form-box p {
    color: #666C78;
    padding-top: 15px;
}

.search-bar .search-bar-title {
    font-size: 25px;
}

.back-to-top {
    border-radius: 50%;
    background-color: var(--theme-color);
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: var(--white);
    font-size: 18px;
    position: fixed;
    display: inline-block;
    z-index: 9999;
    right: 30px;
    bottom: 30px;
    transition: all 0.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);
}

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

.section-title h2 {
    font-size: 25px;
}

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

.section-title span {
    font-size: 18px;
    display: inline-block;
    margin-bottom: 5px;
    text-transform: capitalize;
}

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

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

.section-title-area .section-title {
    margin-bottom: 0;
}

@media (max-width: 575px) {
    .section-title-area .theme-btn {
        display: none;
    }
}

@media (max-width: 575px) {
    .section-title-area .swiper-dot {
        display: none;
    }
}

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

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

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

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

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

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

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

@keyframes arryUpDown {
    0% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(10px);
    }
}

.animation__arryUpDown {
    animation: arryUpDown 2s ease infinite alternate;
}

@keyframes arryLeftRight {
    0% {
        transform: translateX(-10px);
    }
    100% {
        transform: translateX(10px);
    }
}

.animation__arryLeftRight {
    animation: arryLeftRight 2s ease infinite alternate;
}

@keyframes shine {
    from {
        -webkit-mask-position: 150%;
    }
    to {
        -webkit-mask-position: -50%;
    }
}

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

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

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

@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;
}

.GlidingArrow {
    -webkit-animation: slide 5s linear infinite;
    animation: slide 5s linear infinite;
}

.delay1 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.delay2 {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}

.delay3 {
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
}

.delay4 {
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
}

.delay5 {
    -webkit-animation-delay: 6s;
    animation-delay: 6s;
}


/* Defining animation Keyframes */

@-webkit-keyframes slide {
    0% {
        opacity: 0;
        transform: translateX(-150);
    }
    20% {
        opacity: 1;
        transform: translateX(-90);
    }
    80% {
        opacity: 1;
        transform: translateX(90);
    }
    100% {
        opacity: 0;
        transform: translateX(150);
    }
}

@keyframes slide {
    0% {
        opacity: 0;
        transform: translateX(-150);
    }
    20% {
        opacity: 1;
        transform: translateX(-90);
    }
    80% {
        opacity: 1;
        transform: translateX(90);
    }
    100% {
        opacity: 0;
        transform: translateX(150);
    }
}


/*img-animation**********************/

.img-custom-anim-left {
    animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.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-right {
    animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.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(0.645, 0.045, 0.355, 1) 0.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(0.645, 0.045, 0.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;
    }
}

.img-custom-anim-bottom {
    animation: img-anim-bottom 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
    opacity: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes animate-positive {
    0% {
        width: 0;
    }
}

@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: 50px;
}

@media (max-width: 1600px) {
    .header-main .main-menu ul li {
        margin-inline-end: 30px;
    }
}

@media (max-width: 1399px) {
    .header-main .main-menu ul li {
        margin-inline-end: 25px;
    }
}

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

.header-main .main-menu ul li a {
    display: inline-block;
    font-size: 17px;
    font-weight: 500;
    color: var(--white);
    font-family: "DM Sans", sans-serif;
    padding: 20px 0;
    text-align: left;
    position: relative;
    text-transform: capitalize;
    transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li a .head-icon {
    margin-left: 0;
    margin-right: 5px;
}

.header-main .main-menu ul li a i {
    margin-left: 5px;
}

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

.header-main .main-menu ul li .submenu {
    position: absolute;
    top: 100%;
    inset-inline-start: 0;
    min-width: 250px;
    background: var(--white);
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    transform-origin: top center;
    color: var(--header);
    box-shadow: 0px 0px 40px 0px rgba(11, 13, 17, 0.08);
    transform: translateY(10px);
    transition: all 0.4s ease-in-out;
    padding: 30px 30px;
}

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

.header-main .main-menu ul li .submenu li:not(:last-child) {
    padding-bottom: 15px;
}

.header-main .main-menu ul li .submenu li a {
    position: relative;
    z-index: 11;
    font-size: 17px;
    font-weight: 500;
    color: var(--header);
    padding: 0 0;
    padding-bottom: 0;
    padding-top: 0;
    text-transform: capitalize;
    font-family: "DM Sans", sans-serif;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-main .main-menu ul li .submenu li a:hover {
    color: var(--white) !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: 113%;
    top: 0;
    visibility: hidden;
    opacity: 0;
}

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

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

.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-color);
}

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

@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;
    overflow: hidden;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
    width: 100%;
    transition: all 0.4s ease-in-out;
}

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

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title a {
    color: var(--header);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title a:hover {
    color: var(--theme-color) !important;
}

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

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

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

.header-main .header-right {
    gap: 50px;
}

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

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

.header-main .sidebar__toggle {
    cursor: pointer;
    font-size: 20px;
    color: var(--header);
}

.header-1 {
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    z-index: 9999;
}

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

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

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

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

.header-1 .mean__menu-wrapper {
    position: relative;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 0 30px;
}

.header-1 .mean__menu-wrapper::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-image: url(../images/header/header-bg.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 1280px;
    z-index: -1;
    left: -42px;
}

@media (max-width: 1600px) {
    .header-1 .mean__menu-wrapper::before {
        display: none;
    }
}

.header-1 .mean__menu-wrapper .social-icon {
    gap: 35px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 9;
}

@media (max-width: 1600px) {
    .header-1 .mean__menu-wrapper .social-icon {
        display: none;
    }
}

.header-1 .mean__menu-wrapper .social-icon a {
    color: var(--white);
}

.header-1 .mean__menu-wrapper .bg-shape {
    position: absolute;
    left: -3%;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.header-1 .mean__menu-wrapper .header-mean-search {
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 1199px) {
    .header-1 .mean__menu-wrapper .header-mean-search {
        display: none;
    }
}

.header-1 .mean__menu-wrapper .header-mean-search p {
    font-size: 17px;
    color: var(--white);
}

@media (max-width: 1600px) {
    .header-1 .mean__menu-wrapper .header-mean-search p {
        display: none;
    }
}

.header-1 .mean__menu-wrapper .header-mean-search .header-search .search-toggle {
    color: var(--white);
}

.header-1 .header-right .header-contact {
    text-align: right;
}

@media (max-width: 1199px) {
    .header-1 .header-right .header-contact {
        display: none;
    }
}

.header-1 .header-right .header-contact a {
    color: #97a2b7;
    display: block;
}

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

.header-top-section {
    padding: 2px 0;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0 110px;
}

@media (max-width: 1600px) {
    .header-top-section {
        background-image: none !important;
        background: var(--header);
        margin: 0;
    }
}

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

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

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

.header-top-wrapper .header-list li {
    color: var(--white);
}

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

.header-top-wrapper p {
    color: var(--white);
}

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

.header-top-wrapper .header-list-right li a {
    color: var(--white);
}

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

.middle-header-wrapper img {
    max-height: 80px;
}

.middle-header-wrapper .middle-header-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

@media (max-width: 1600px) {
    .middle-header-wrapper .middle-header-right {
        gap: 30px;
    }
}

.middle-header-wrapper .middle-header-right .icon-items {
    display: flex;
    align-items: center;
    gap: 15px;
    border-right: 1px solid #e9e9f1;
    padding: 16px 0;
    padding-right: 50px;
}

@media (max-width: 1600px) {
    .middle-header-wrapper .middle-header-right .icon-items {
        border: none;
        padding-right: 0;
    }
}

.middle-header-wrapper .middle-header-right .icon-items .icon {
    font-size: 39px;
    color: var(--theme-color);
}

.middle-header-wrapper .middle-header-right .icon-items .content h6 {
    font-size: 16px;
}

.middle-header-wrapper .middle-header-right .icon-items.border-none {
    padding-right: 0;
    border-right: none;
}

.header-2 {
    position: relative;
}

.header-2::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: var(--theme-color);
    z-index: -1;
}

@media (max-width: 1899px) {
    .header-2::before {
        width: 100%;
        border-radius: 0;
    }
}

@media (max-width: 1899px) {
    .header-2::after {
        display: none;
    }
}

.header-2 .header-left {
    display: flex;
    align-items: center;
    gap: 50px;
}

.header-2 .header-left .social-icon {
    gap: 15px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 9;
}

@media (max-width: 1600px) {
    .header-2 .header-left .social-icon {
        display: none;
    }
}

.header-2 .header-left .social-icon a {
    color: var(--white);
}

.header-2 .header-logo {
    display: none;
}

@media (max-width: 1199px) {
    .header-2 .header-logo {
        display: block;
    }
    .header-2 .header-logo img {
        max-height: 80px;
    }
}

.header-2 .header-mean-search {
    display: flex;
    align-items: center;
    gap: 16px;
}

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

.header-2 .header-mean-search p {
    color: var(--white);
}

.header-2 .header-mean-search .header-search .search-toggle {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    background-color: #3a8fd0;
    text-align: center;
    color: var(--white);
    justify-content: center;
}

.header-2 .header-mean-search .header-search .search-toggle i {
    text-align: center;
}

.header-2 .header-right .theme-btn {
    background: #c93939;
}

@media (max-width: 1399px) {
    .header-2 .header-right .theme-btn {
        display: none;
    }
}

.header-2 .header-main .main-menu ul li {
    margin-inline-end: 40px;
}

.header-2 .sidebar__toggle {
    color: var(--white);
}

.header-section-3 {
    background-color: rgb(3, 101, 212);
    position: relative;
}

.header-section-3 .bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 91;
}

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

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

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

.header-main-wrapper-3 {
    display: flex;
    align-items: center;
    gap: 55px;
    padding: 0 70px;
    background-color: var(--white);
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    border-bottom: 12px solid rgb(3, 101, 212);
    position: relative;
}

@media (max-width: 1399px) {
    .header-main-wrapper-3 {
        padding: 0 30px;
        gap: 30px;
    }
}

@media (max-width: 1199px) {
    .header-main-wrapper-3 {
        background-color: transparent;
        padding: 0;
    }
}

@media (max-width: 1199px) {
    .header-main-wrapper-3 .main-logo {
        display: none;
    }
}

.header-main-wrapper-3 .main-header-right-3 {
    width: 100%;
}

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

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

.header-main-wrapper-3 .main-header-right-3 .header-main .header-logo {
    display: none;
}

@media (max-width: 1199px) {
    .header-main-wrapper-3 .main-header-right-3 .header-main .header-logo {
        display: block;
    }
}

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

@media (max-width: 1600px) {
    .header-main-wrapper-3 .header-right-contact-items {
        gap: 20px;
    }
}

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

.header-main-wrapper-3 .header-right-contact-items .social-icon {
    gap: 20px;
    display: flex;
    align-items: center;
    background-color: #f2f2f2;
    padding: 20px 60px;
}

@media (max-width: 1600px) {
    .header-main-wrapper-3 .header-right-contact-items .social-icon {
        padding: 20px;
    }
}

.header-main-wrapper-3 .header-right-contact-items .social-icon a {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border: 1px solid #d4d4d6;
    text-align: center;
    border-radius: 50%;
}

.header-main-wrapper-3 .header-right-contact-items .social-icon a:hover {
    background-color: var(--theme-color);
    color: var(--white);
}

.header-main-wrapper-3 .right-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header-main-wrapper-3 .right-contact .icon-items {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 999;
    gap: 15px;
}

.header-main-wrapper-3 .right-contact .icon-items .icon {
    width: 55px;
    height: 70px;
    line-height: 80px;
    border-radius: 10px;
    text-align: center;
    background-color: var(--white);
    font-size: 30px;
    color: var(--theme-color);
}

@media (max-width: 1600px) {
    .header-main-wrapper-3 .right-contact .icon-items .icon {
        background-color: var(--bg);
    }
}

.header-main-wrapper-3 .right-contact .icon-items .content p {
    font-size: 12px;
    font-family: "Unbounded", sans-serif;
    color: var(--white);
}

@media (max-width: 1600px) {
    .header-main-wrapper-3 .right-contact .icon-items .content p {
        color: var(--theme-color);
    }
}

.header-main-wrapper-3 .right-contact .icon-items .content h6 {
    font-family: "Unbounded", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
}

@media (max-width: 1600px) {
    .header-main-wrapper-3 .right-contact .icon-items .content h6 {
        color: var(--header);
    }
}

.header-main-wrapper-3 .right-contact .icon-items .content h6 a {
    color: var(--white);
}

@media (max-width: 1600px) {
    .header-main-wrapper-3 .right-contact .icon-items .content h6 a {
        color: var(--header);
    }
}

@media (max-width: 1199px) {
    .header-main-wrapper-3 .theme-btn {
        display: none;
    }
}

@media (max-width: 1199px) {
    .header-main-wrapper-3 .search-toggle {
        color: var(--white);
    }
}

@media (max-width: 1199px) {
    .header-main-wrapper-3 .sidebar__toggle {
        color: var(--white);
    }
}

.sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.9s;
    background-color: #0f3564;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    box-shadow: var(---box-shadow);
}

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

.sticky .header-logo img {
    max-height: 80px;
}

.sticky.header-3 {
    padding: 0 30px;
}

.sticky.header-3 .search-toggle {
    color: var(--white);
}

.sticky.header-3 .sidebar__toggle {
    color: var(--white);
}

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

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

.sticky.header-3 .header-main .submenu li a {
    color: var(--header) !important;
}

.sticky.header-3 .header-main .submenu li a:hover {
    color: var(--white) !important;
}

.sticky.header-2 .social-icon {
    display: none;
}

.sticky.header-2 .header-mean-search p {
    display: none;
}

.sticky.header-2::after {
    width: calc(100% - 1275px);
}

.offcanvas__info {
    background: var(--white) none repeat scroll 0 0;
    border-left: 2px solid var(--theme-color);
    position: fixed;
    right: 0;
    top: 0;
    width: 400px;
    height: 100%;
    -webkit-transform: translateX(calc(100% + 80px));
    -moz-transform: translateX(calc(100% + 80px));
    -ms-transform: translateX(calc(100% + 80px));
    -o-transform: translateX(calc(100% + 80px));
    transform: translateX(calc(100% + 80px));
    -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    z-index: 99999;
    overflow-y: scroll;
    overscroll-behavior-y: contain;
    scrollbar-width: 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__logo a img {
    width: 150px;
}

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

.offcanvas__wrapper .offcanvas-title {
    font-size: 28px;
    margin-bottom: 15px;
}

.offcanvas__wrapper .offcanvas__content p {
    color: var(--header);
}

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

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

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

.offcanvas__wrapper .offcanvas__content .social-icon a {
    width: 52px;
    height: 52px;
    line-height: 52px;
    text-align: center;
    font-size: 16px;
    display: block;
    background: transparent;
    color: var(--header);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    text-align: center;
    border: 1px solid var(--border);
}

.offcanvas__wrapper .offcanvas__content .social-icon a:hover {
    background-color: var(--theme-color);
    color: var(--white);
    border: 1px solid var(--theme-color);
}

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

.offcanvas__wrapper .offcanvas__content .offcanvas__contact h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li {
    font-size: 16px;
    color: var(--header);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li:not(:last-child) {
    margin-bottom: 10px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li span {
    font-weight: 600;
    color: var(--header);
    font-size: 18px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li a {
    font-size: 16px;
    color: var(--header);
}

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

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button {
    display: flex;
    align-items: center;
}

.offcanvas__wrapper .offcanvas__content .offcanvas-gallery-area {
    margin-top: 30px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas-gallery-area .offcanvas-gallery-items {
    display: flex;
    align-items: center;
    gap: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas-gallery-area .offcanvas-gallery-items:not(:last-child) {
    margin-bottom: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas-gallery-area .offcanvas-gallery-items .offcanvas-image {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 0;
}

.offcanvas__wrapper .offcanvas__content .theme-btn {
    width: 100%;
    text-align: center;
}

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

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

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

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

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

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

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

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

.breadcrumb-wrapper .page-heading h1 {
    color: var(--white);
    font-size: 35px;
    position: relative;
    z-index: 1;
    font-weight: 500;
    width: 65%;
}

@media (max-width: 767px) {
    .breadcrumb-wrapper .page-heading h1 {
        font-size: 25px;
    }
}

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

.breadcrumb-wrapper .page-heading .breadcrumb-items {
    display: inline-flex;
    align-items: center;
    padding: 0px;
    gap: 20px;
    line-height: 1;
    justify-content: center;
    margin-bottom: 30px;
}

@media (max-width: 575px) {
    .breadcrumb-wrapper .page-heading .breadcrumb-items {
        padding: 14px 20px;
    }
}

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

@media (max-width: 575px) {
    .breadcrumb-wrapper .page-heading .breadcrumb-items li {
        font-size: 16px;
    }
}

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

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

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

.error-content {
    margin-top: -40px;
}

.error-content h2 {
    font-weight: 700;
    font-size: 320px;
    line-height: 1;
}

@media (max-width: 1199px) {
    .error-content h2 {
        font-size: 300px;
    }
}

@media (max-width: 991px) {
    .error-content h2 {
        font-size: 200px;
    }
}

@media (max-width: 575px) {
    .error-content h2 {
        font-size: 110px;
    }
}

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

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

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

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

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

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

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

.mean-container .mean-nav>ul .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 0.4s ease-in-out;
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb .demo-button .theme-btn {
    padding: 10px 30px;
    color: var(--white) !important;
    width: initial;
    font-size: 14px;
    text-align: center;
}

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

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

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

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

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

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

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

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

.mean-container .mean-nav ul li a {
    width: 100%;
    padding: 10px 0;
    color: var(--header);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.5;
}

.mean-container .mean-nav ul li a.border-none {
    border: none;
}

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

.mean-container .mean-nav ul li a .head-icon {
    display: none;
}

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

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

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

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

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

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

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

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

@media (max-width: 1199px) {
    .mean-container .mean-nav ul li.menu-thumb {
        display: none;
    }
}

.hero-1 {
    padding: 0 0 100px;
    background-position: bottom !important;
    position: relative;
}

@media (max-width: 1899px) {
    .hero-1 {
        overflow: hidden;
    }
}

@media (max-width: 1600px) {
    .hero-1 {
        background-image: none !important;
        background: var(--theme-color);
        padding-top: 100px;
        margin-bottom: 120px;
    }
}

@media (max-width: 1199px) {
    .hero-1 {
        margin-bottom: 100px;
    }
}

@media (max-width: 991px) {
    .hero-1 {
        margin-bottom: 80px;
    }
}

.hero-1 .hero-shape {
    position: absolute;
    bottom: -25%;
    left: 0;
    right: 0;
    z-index: -1;
}

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

.hero-1 .hero-content {
    text-align: center;
    position: relative;
    z-index: 9;
}

.hero-1 .hero-content .border-shape {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 1600px) {
    .hero-1 .hero-content .border-shape {
        display: none;
    }
}

.hero-1 .hero-content p {
    font-weight: 600;
    color: var(--white);
    border: 1px solid #31546e;
    display: inline-block;
    padding: 8px 30px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.hero-1 .hero-content h1 {
    color: var(--white);
}

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

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

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

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

.hero-1 .hero-content .theme-btn {
    margin-top: 40px;
}

.hero-1 .hero-content .theme-btn::after {
    background: var(--white);
}

.hero-1 .hero-content .theme-btn:hover {
    color: var(--header);
}

.hero-1 .hero-image {
    margin-left: -200px;
}

@media (max-width: 1600px) {
    .hero-1 .hero-image {
        margin-left: 0;
    }
    .hero-1 .hero-image img {
        width: 100%;
        height: 100%;
    }
}

.hero-2 {
    padding: 110px 0 110px;
    position: relative;
    z-index: 9;
}

.hero-2 .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    transform: scale(1);
    -webkit-transition: all 8s ease-out 0s;
    -moz-transition: all 8s ease-out 0s;
    -ms-transition: all 8s ease-out 0s;
    -o-transition: all 8s ease-out 0s;
    transition: all 8s ease-out 0s;
    z-index: 9;
}

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

@media (max-width: 767px) {
    .hero-2 .hero-content {
        text-align: center;
    }
}

.hero-2 .hero-content p.subss {
    font-size: 18px;
    color: var(--white);
    font-family: "DM Sans", sans-serif;
    background-color: rgba(255, 255, 255, 0.078);
    display: inline-block;
    padding: 12px 40px;
    border-radius: 20px;
    line-height: 1;
    margin-bottom: 20px;
}

.hero-2 .hero-content h1 {
    font-size: 45px;
    color: var(--white);
}

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

@media (max-width: 1199px) {
    .hero-2 .hero-content h1 {
        font-size: 75px;
    }
}

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

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

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

.hero-2 .hero-content h1 span {
    font-weight: 400;
}

.hero-2 .hero-content h1 .text-color {
    color: #49a3d8;
}

.hero-2 .hero-content p {
    font-size: 20px;
    color: var(--white);
    max-width: 600px;
    margin: 40px auto 0;
}

@media (max-width: 575px) {
    .hero-2 .hero-content p {
        font-size: 18px;
    }
}

.hero-2 .hero-content .hero-button {
    margin-top: 50px;
}

@media (max-width: 767px) {
    .hero-2 .hero-content .hero-button {
        margin-top: 30px;
    }
}

.hero-2 .hero-content .hero-button .theme-btn {
    border: 1px solid var(--theme-color);
}

.hero-2 .hero-content .hero-button .theme-btn:hover {
    border: 1px solid var(--header);
}

.hero-2 .hero-content .hero-button .theme-btn.style-2 {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.hero-2 .hero-content .hero-button .theme-btn.style-2 i {
    background-color: var(--theme-color);
    color: var(--white);
}

.hero-2 .hero-content .hero-button .theme-btn.style-2:hover {
    border: 1px solid var(--theme-color);
}

.hero-2 .hero-content .hero-button .theme-btn.style-2:hover::before,
.hero-2 .hero-content .hero-button .theme-btn.style-2:hover::after {
    background-color: var(--theme-color);
}

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

.hero-section-2 .swiper-dot {
    transform: translateY(-50%) rotate(-90deg);
    position: absolute;
    top: 50%;
    left: 2%;
    z-index: 99;
}

.hero-section-2 .swiper-dot::before {
    position: absolute;
    content: "";
    height: 270px;
    width: 6px;
    background-color: var(--theme-color);
    transform: rotate(-90deg);
    left: 71px;
    top: -123px;
    z-index: -1;
}

@media (max-width: 1600px) {
    .hero-section-2 .swiper-dot {
        display: none;
    }
}

.hero-section-2 .swiper-dot .swiper-pagination-bullet {
    width: 25px;
    height: 25px;
    transition: 0.6s;
    background: var(--white);
    opacity: 1;
    border-radius: 25px;
}

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

.hero-section-2 .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    display: none;
}

.hero-section-2 .swiper-slide.swiper-slide-active .hero-bg {
    -webkit-transform: scale(1.19);
    -moz-transform: scale(1.19);
    transform: scale(1.19);
}

.hero-3 {
    padding: 95px 0;
}

.hero-3 .hero-content {
    background-position: center;
    background-repeat: no-repeat;
    padding: 75px 90px;
}

@media (max-width: 1199px) {
    .hero-3 .hero-content {
        padding: 50px 50px;
    }
}

@media (max-width: 767px) {
    .hero-3 .hero-content {
        padding: 50px 40px;
    }
}

@media (max-width: 575px) {
    .hero-3 .hero-content {
        padding: 40px 30px;
    }
}

.hero-3 .hero-content h1 {
    font-size: 80px;
}

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

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

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

.hero-3 .hero-content h1 span {
    color: var(--theme-color);
}

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

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

.hero-3 .hero-content .hero-button .button-text {
    display: flex;
    align-items: center;
}

.hero-3 .hero-content .hero-button .button-text .video-btn {
    width: 75px;
    height: 75px;
    line-height: 75px;
    border-radius: 50%;
    background-color: transparent;
    display: inline-block;
    text-align: center;
    border: 1px solid #eceff3;
    position: relative;
    z-index: 9;
}

.hero-3 .hero-content .hero-button .button-text .video-btn::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--bg);
    content: "";
    z-index: -1;
}

.hero-3 .hero-content .hero-button .button-text span {
    font-size: 16px;
    font-weight: 500;
    font-family: "Unbounded", sans-serif;
    color: #141414;
}

.why-choose-us-wrapper .choose-us-content {
    margin-left: 20px;
}

@media (max-width: 1199px) {
    .why-choose-us-wrapper .choose-us-content {
        margin-left: 0;
    }
}

.why-choose-us-wrapper .choose-us-content p {
    margin-top: 20px;
    margin-bottom: 35px;
}

.why-choose-us-wrapper .choose-us-content .icon-items-area {
    margin-left: 60px;
}

@media (max-width: 1399px) {
    .why-choose-us-wrapper .choose-us-content .icon-items-area {
        margin-left: 0;
    }
}

.why-choose-us-wrapper .choose-us-content .icon-box-main {
    position: relative;
}

.why-choose-us-wrapper .choose-us-content .icon-box-main .left-shape {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
}

@media (max-width: 1199px) {
    .why-choose-us-wrapper .choose-us-content .icon-box-main .left-shape {
        display: none;
    }
}

.why-choose-us-wrapper .choose-us-content .icon-box-main .left-shape img {
    height: 100%;
}

.why-choose-us-wrapper .choose-us-content .icon-box-main.style-2 {
    background: linear-gradient(90deg, rgb(43, 50, 178) 0%, rgb(20, 136, 204) 100%);
}

.why-choose-us-wrapper .choose-us-content .icon-box-main.style-2 .icon-box-items {
    border-radius: 0px 100px 0px 0px;
}

.why-choose-us-wrapper .choose-us-content .icon-box-main.style-4 {
    background: linear-gradient(90deg, rgb(43, 50, 178) 0%, rgb(20, 136, 204) 100%);
}

.why-choose-us-wrapper .choose-us-content .icon-box-main.style-4 .icon-box-items {
    border-radius: 0px 0 100px 0px;
}

.why-choose-us-wrapper .choose-us-content .icon-box-main.style-3 .icon-box-items {
    border-radius: 0px 0px 0px 100px;
}

.why-choose-us-wrapper .choose-us-content .icon-box-main .left-bottom-shape {
    position: absolute;
    bottom: 0;
    left: -24px;
    top: 0;
}

@media (max-width: 1199px) {
    .why-choose-us-wrapper .choose-us-content .icon-box-main .left-bottom-shape {
        display: none;
    }
}

.why-choose-us-wrapper .choose-us-content .icon-box-main .left-bottom-shape img {
    height: 100%;
}

.why-choose-us-wrapper .choose-us-content .icon-box-items {
    padding: 30px 15px;
    padding-top: 0;
    background: #0f3564;
    text-align: center;
    border-radius: 100px 0px 0px 0px;
    position: relative;
}

@media (max-width: 1199px) {
    .why-choose-us-wrapper .choose-us-content .icon-box-items {
        border-radius: 0 !important;
    }
}

.why-choose-us-wrapper .choose-us-content .icon-box-items.style-2 {
    border-radius: 0 100px 0px 0px;
    background: linear-gradient(90deg, rgb(43, 50, 178) 0%, rgb(20, 136, 204) 100%);
}

.why-choose-us-wrapper .choose-us-content .icon-box-items .icon {
    width: 75px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    margin: 0 auto 30px;
    position: relative;
    z-index: 9;
    font-size: 40px;
    z-index: 9;
    color: var(--white);
}

.why-choose-us-wrapper .choose-us-content .icon-box-items .icon::before {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 75px;
    height: 85px;
    content: "";
    background: #3f5d83;
    border-radius: 0px 0px 37.5px 37.5px;
    z-index: -1;
}

.why-choose-us-wrapper .choose-us-content .icon-box-items .icon::after {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    content: "";
    width: 75px;
    height: 80px;
    line-height: 80px;
    background-color: rgb(34, 70, 113);
    border-radius: 0px 0px 37.5px 37.5px;
    z-index: -1;
}

.why-choose-us-wrapper .choose-us-content .icon-box-items h5 {
    color: var(--white);
}

.why-choose-us-wrapper .choose-us-image-2 {
    display: none;
}

@media (max-width: 1600px) {
    .why-choose-us-wrapper .choose-us-image-2 {
        display: block;
    }
    .why-choose-us-wrapper .choose-us-image-2 img {
        width: 100%;
        height: 100%;
    }
}

.why-choose-us-section {
    position: relative;
}

.why-choose-us-section .choose-us-image {
    position: absolute;
    bottom: 0;
    top: 0;
    left: -20px;
}

@media (max-width: 1600px) {
    .why-choose-us-section .choose-us-image {
        display: none;
    }
}

.counter-wrapper {
    position: relative;
    z-index: 9;
}

.counter-wrapper .counter-image {
    position: relative;
}

@media (max-width: 1199px) {
    .counter-wrapper .counter-image {
        height: 450px;
    }
    .counter-wrapper .counter-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

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

.counter-wrapper .counter-image .video-items {
    padding: 80px 40px 120px;
    background: var(--color-gradient-1);
    position: absolute;
    right: 70px;
    bottom: 100px;
    text-align: center;
    border-radius: 150px 150px 0 0;
}

@media (max-width: 1399px) {
    .counter-wrapper .counter-image .video-items {
        border-radius: 0;
        padding: 0;
        right: initial;
        bottom: initial;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: transparent;
    }
}

.counter-wrapper .counter-image .video-items .video-btn {
    width: 105px;
    height: 105px;
    line-height: 105px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--white);
    display: inline-block;
}

.counter-wrapper .counter-image .video-items h4 {
    color: var(--white);
    font-size: 24px;
    font-weight: 500;
    max-width: 210px;
    margin-top: 50px;
}

@media (max-width: 1399px) {
    .counter-wrapper .counter-image .video-items h4 {
        color: var(--header);
    }
}

.counter-wrapper .counter-wrap {
    background-color: var(--white);
    box-shadow: 0px 0px 50px 0px rgba(15, 53, 100, 0.07);
    padding: 55px;
    border-radius: 95px 0 0 95px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 9;
    margin: -100px 70px 0;
}

@media (max-width: 1399px) {
    .counter-wrapper .counter-wrap {
        flex-wrap: wrap;
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
        border-radius: 0;
        gap: 30px;
        padding: 30px;
    }
}

.counter-wrapper .counter-wrap .counter-items {
    display: flex;
    align-items: center;
    gap: 25px;
}

.counter-wrapper .counter-wrap .counter-items .icon {
    width: 105px;
    height: 105px;
    line-height: 105px;
    text-align: center;
    border-radius: 50%;
    position: relative;
    font-size: 90px;
}

.counter-wrapper .counter-wrap .counter-items .icon .circle-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.counter-wrapper .counter-wrap .counter-items .content h2 {
    font-size: 45px;
}

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

.counter-section::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--white);
    z-index: -1;
    top: 83.7%;
    height: initial;
}

.counter-section .container {
    max-width: 1500px;
    margin: 0 auto;
}

.feature-company-wrapper {
    padding: 80px;
    border-radius: 30px 30px 330px 30px;
    margin-top: 60px;
    position: relative;
}

@media (max-width: 1199px) {
    .feature-company-wrapper {
        padding: 30px;
        border-radius: 30px !important;
    }
}

@media (max-width: 575px) {
    .feature-company-wrapper {
        padding: 30px;
    }
}

.feature-company-wrapper .dot-1 {
    position: absolute;
    left: 18.5%;
    top: 9%;
}

@media (max-width: 1199px) {
    .feature-company-wrapper .dot-1 {
        display: none;
    }
}

.feature-company-wrapper .dot-2 {
    position: absolute;
    left: 43.5%;
    top: 9%;
}

@media (max-width: 1199px) {
    .feature-company-wrapper .dot-2 {
        display: none;
    }
}

.feature-company-wrapper .dot-3 {
    position: absolute;
    left: 67.9%;
    top: 9%;
}

@media (max-width: 1199px) {
    .feature-company-wrapper .dot-3 {
        display: none;
    }
}

@media (max-width: 767px) {
    .feature-company-wrapper {
        margin-top: 30px;
    }
}

.feature-company-wrapper .nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
    margin-bottom: 50px;
    border-top: 1px solid #224671;
    padding-top: 40px;
}

@media (max-width: 1199px) {
    .feature-company-wrapper .nav {
        gap: 20px;
        margin-bottom: 30px;
        padding-top: 0;
        border-top: none;
        justify-content: start;
    }
}

.feature-company-wrapper .nav .nav-item .nav-link {
    font-size: 14px;
    font-weight: 500;
    font-family: "Unbounded", sans-serif;
    display: inline-block;
    color: var(--white);
    width: 250px;
    height: 70px;
    border-radius: 45px 45px 45px 45px;
    background-color: rgb(34, 70, 113);
    padding-top: 25px;
    padding-left: 30px;
    position: relative;
    line-height: 1.7;
}

.feature-company-wrapper .nav .nav-item .nav-link::before {
    position: absolute;
    top: -15px;
    left: 50px;
    margin-left: -10px;
    content: "";
    display: block;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 18px solid rgb(34, 70, 113);
}

.feature-company-wrapper .nav .nav-item .nav-link.active {
    background-color: #205cbf;
}

.feature-company-wrapper .nav .nav-item .nav-link.active::before {
    border-bottom: 18px solid #205cbf;
}

.feature-company-wrapper .feature-company-content {
    text-align: right;
}

@media (max-width: 1199px) {
    .feature-company-wrapper .feature-company-content {
        text-align: left;
    }
}

.feature-company-wrapper .feature-company-content .icon-items {
    display: flex;
    align-items: center;
    gap: 100px;
    position: relative;
    justify-content: end;
    margin-bottom: 30px;
}

@media (max-width: 1199px) {
    .feature-company-wrapper .feature-company-content .icon-items {
        justify-content: start;
    }
}

.feature-company-wrapper .feature-company-content .icon-items::before {
    position: absolute;
    top: 50%;
    right: 30px;
    content: "";
    transform: translate(-50%, -50%);
    width: 100px;
    height: 1px;
    background-color: rgb(34, 70, 113);
}

.feature-company-wrapper .feature-company-content .icon-items .number {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    background-color: rgb(34, 70, 113);
    color: var(--white);
}

.feature-company-wrapper .feature-company-content .icon-items .icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 10px;
    background-color: #1f60c0;
    position: relative;
    z-index: 9;
    font-size: 40px;
    color: var(--white);
}

.feature-company-wrapper .feature-company-content .icon-items .icon .shape {
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
}

.feature-company-wrapper .feature-company-content h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.feature-company-wrapper .feature-company-thumb {
    margin-left: 20px;
}

@media (max-width: 1199px) {
    .feature-company-wrapper .feature-company-thumb {
        margin-left: 0;
    }
}

.feature-company-wrapper .feature-company-thumb img {
    width: 100%;
    height: 100%;
}

.work-process-items-2 {
    margin-top: 30px;
    text-align: center;
}

.work-process-items-2 .thumb {
    position: relative;
    z-index: 9;
}

.work-process-items-2 .thumb .number {
    font-size: 80px;
    font-weight: 600;
    color: transparent;
    -webkit-text-stroke: 1.2px rgba(30, 32, 35, 0.47);
    position: absolute;
    right: 0;
    top: 73%;
    font-family: "Unbounded", sans-serif;
}

@media (max-width: 767px) {
    .work-process-items-2 .thumb .number {
        display: none;
    }
}

.work-process-items-2 .thumb .number-2 {
    font-size: 80px;
    font-weight: 600;
    color: transparent;
    -webkit-text-stroke: 1.2px rgba(30, 32, 35, 0.47);
    position: absolute;
    right: 0;
    top: 10px;
    font-family: "Unbounded", sans-serif;
    z-index: -1;
}

@media (max-width: 767px) {
    .work-process-items-2 .thumb .number-2 {
        display: none;
    }
}

.work-process-items-2 .thumb .number-3 {
    font-size: 80px;
    font-weight: 600;
    color: transparent;
    -webkit-text-stroke: 1.2px rgba(30, 32, 35, 0.47);
    position: absolute;
    left: -30px;
    bottom: 10px;
    font-family: "Unbounded", sans-serif;
    z-index: -1;
}

@media (max-width: 767px) {
    .work-process-items-2 .thumb .number-3 {
        display: none;
    }
}

.work-process-items-2 .content {
    max-width: 300px;
    margin: -50px auto 0;
    position: relative;
    z-index: 9;
}

.work-process-items-2 .content .icon {
    width: 90px;
    height: 90px;
    line-height: 105px;
    text-align: center;
    border-radius: 50%;
    background: var(--color-gradient-1);
    margin: 0 auto 20px;
    font-size: 45px;
    color: var(--white);
}

.work-process-items-2 .content h3 {
    margin-bottom: 10px;
}

.counter-wrapper-2 {
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.counter-wrapper-2 .counter-box-items-2 {
    width: 180px;
    height: 180px;
    text-align: center;
    border: 1px dashed var(--theme-color);
    border-radius: 50%;
    position: relative;
    z-index: 9;
    padding-top: 50px;
    position: relative;
}

.counter-wrapper-2 .counter-box-items-2 .arrow-shape {
    position: absolute;
    top: 42%;
    right: -81%;
}

@media (max-width: 1399px) {
    .counter-wrapper-2 .counter-box-items-2 .arrow-shape {
        display: none;
    }
}

.counter-wrapper-2 .counter-box-items-2 .arrow-shape-2 {
    position: absolute;
    top: 38%;
    right: -81%;
}

@media (max-width: 1399px) {
    .counter-wrapper-2 .counter-box-items-2 .arrow-shape-2 {
        display: none;
    }
}

.counter-wrapper-2 .counter-box-items-2::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "";
    width: 155px;
    height: 155px;
    border-radius: 50%;
    background-color: var(--white);
    z-index: -1;
}

.counter-wrapper-2 .counter-box-items-2 h2 {
    line-height: 1;
}

.counter-section-2 {
    margin: 0 100px;
    border-radius: 141px 141px 0px 0px;
    margin-bottom: -120px;
    position: relative;
    z-index: 9;
}

@media (max-width: 1199px) {
    .counter-section-2 {
        margin-left: 0;
        margin-right: 0;
        border-radius: 0;
    }
}

.cost-calculate-wrapper {
    position: relative;
}

.cost-calculate-wrapper .nav {
    display: flex;
    align-items: center;
    border: 1px solid #cfd7e0;
    margin-top: 30px;
    margin-bottom: 30px;
    width: 100%;
}

@media (max-width: 1199px) {
    .cost-calculate-wrapper .nav {
        justify-content: space-between;
    }
}

.cost-calculate-wrapper .nav .nav-item .nav-link {
    padding: 24px 30px;
    line-height: 1;
    padding-right: 200px;
    font-size: 24px;
    color: #0f3564;
}

@media (max-width: 1199px) {
    .cost-calculate-wrapper .nav .nav-item .nav-link {
        padding-right: 30px;
    }
}

.cost-calculate-wrapper .nav .nav-item .nav-link.active {
    background: var(--color-gradient-1);
    color: var(--white);
}

.cost-calculate-wrapper .cost-calculate-left {
    position: relative;
}

.cost-calculate-wrapper .cost-box-items {
    box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(18, 56, 103, 0.2);
    padding: 50px 70px;
}

@media (max-width: 1199px) {
    .cost-calculate-wrapper .cost-box-items {
        padding: 50px 50px;
    }
}

@media (max-width: 767px) {
    .cost-calculate-wrapper .cost-box-items {
        padding: 30px 40px;
    }
}

@media (max-width: 575px) {
    .cost-calculate-wrapper .cost-box-items {
        padding: 30px 30px;
    }
}

.cost-calculate-wrapper .cost-box-items .progress-wrap .pro-items {
    width: 100%;
}

.cost-calculate-wrapper .cost-box-items .progress-wrap .pro-items:not(:last-child) {
    margin-bottom: 40px;
}

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

.cost-calculate-wrapper .cost-box-items .progress-wrap .pro-items .pro-head .title {
    font-size: 16px;
    color: var(--header);
}

.cost-calculate-wrapper .cost-box-items .progress-wrap .pro-items .pro-head .point {
    font-size: 16px;
    color: var(--header);
    font-family: "Unbounded", sans-serif;
}

.cost-calculate-wrapper .cost-box-items .progress-wrap .pro-items .progress {
    background: #eceff3;
    justify-content: flex-start;
    border-radius: 0;
    align-items: center;
    position: relative;
    display: flex;
    height: 8px;
    width: 100%;
}

.cost-calculate-wrapper .cost-box-items .progress-wrap .pro-items .progress-value {
    animation: load 3s normal forwards;
    border-radius: 0;
    background: #244671;
    height: 8px;
    width: 0;
}

.cost-calculate-wrapper .cost-box-items .progress-wrap .pro-items .style-two {
    animation: load2 3s normal forwards;
}

.cost-calculate-wrapper .cost-box-items .progress-wrap .pro-items .style-three {
    animation: load3 3s normal forwards;
}

.cost-calculate-wrapper .cost-box-items .progress-wrap .pro-items .style-four {
    animation: load4 3s normal forwards;
}

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

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

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

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

.cost-calculate-wrapper .cost-box-items .number-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.cost-calculate-wrapper .cost-box-items .number-list li {
    font-size: 16px;
    color: var(--text);
}

.cost-calculate-wrapper .cost-calculate-right-items {
    margin-right: -54%;
}

@media (max-width: 1199px) {
    .cost-calculate-wrapper .cost-calculate-right-items {
        margin-right: 0;
    }
}

.cost-calculate-wrapper .cost-calculate-right-items .cost-box-wrap {
    padding: 50px 30px 185px;
    border-radius: 0px 0px 156px 156px;
    max-width: 350px;
    height: 100%;
}

@media (max-width: 991px) {
    .cost-calculate-wrapper .cost-calculate-right-items .cost-box-wrap {
        max-width: 800px;
    }
}

.cost-calculate-wrapper .cost-calculate-right-items .cost-box-wrap .icon {
    margin-bottom: 20px;
    font-size: 40px;
    color: var(--white);
}

.cost-calculate-wrapper .cost-calculate-right-items .cost-box-wrap h3 {
    color: var(--white);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.cost-calculate-wrapper .cost-calculate-right-items .calculate-image {
    height: 463px;
    position: absolute;
    top: 115px;
    right: -24%;
}

@media (max-width: 1899px) {
    .cost-calculate-wrapper .cost-calculate-right-items .calculate-image {
        display: none;
    }
}

.cost-calculate-wrapper .cost-calculate-right-items .calculate-image img {
    width: 100%;
    height: 100%;
}

.cost-calculate-section {
    position: relative;
}

.counter-wrapper-33 {
    position: relative;
    overflow: hidden;
}

.counter-wrapper-33 .counter-box-321 {
    background-color: var(--white);
    box-shadow: var(---box-shadow);
    text-align: center;
    padding: 25px 30px;
    padding-top: 60px;
    position: relative;
    z-index: 99;
}

.counter-wrapper-33 .counter-box-321 .icon {
    position: relative;
    z-index: 9;
    font-size: 40px;
    color: var(--theme-color);
}

.counter-wrapper-33 .counter-box-321 .icon .circle-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.counter-wrapper-33 .counter-box-321 .icon .number {
    width: 33px;
    height: 33px;
    line-height: 33px;
    display: inline-block;
    background: var(--color-gradient-1);
    border-radius: 50%;
    color: var(--white);
    position: absolute;
    bottom: -23px;
    right: 62px;
    font-size: 10px;
}

.counter-wrapper-33 .counter-box-321 .box-count {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.counter-wrapper-33 .counter-box-321 h4 {
    font-size: 40px;
    font-weight: 600;
}

@media (max-width: 1399px) {
    .counter-wrapper-33 .counter-box-321 h4 {
        font-size: 28px;
    }
}

@media (max-width: 1199px) {
    .counter-wrapper-33 .counter-box-321 h4 {
        font-size: 19px;
    }
}

@media (max-width: 991px) {
    .counter-wrapper-33 .counter-box-321 h4 {
        font-size: 40px;
    }
}

.counter-wrapper-33 .counter-box-321 p {
    text-align: left;
    line-height: 1.5;
    font-size: 14px;
    font-family: "Unbounded", sans-serif;
    color: var(--header);
    font-weight: 600;
}

.counter-wrapper-33 .thumb {
    margin-left: -50%;
    position: relative;
    z-index: 9;
}

.counter-wrapper-33 .thumb img {
    width: 100%;
    height: 100%;
}

.counter-wrapper-33 .shape-bg {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
}

.counter-wrapper-33 .shape-bg img {
    width: 100%;
    height: 100%;
    border-radius: 0px 0px 200px 0px;
    height: 104%;
}

.work-process-box-3 {
    margin-top: 30px;
    text-align: center;
    position: relative;
}

.work-process-box-3::before {
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/work-process/bg-shape.png);
    transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) {
    .work-process-box-3::before {
        display: none;
    }
}

.work-process-box-3 .content {
    padding: 40px 60px;
    position: relative;
    z-index: 9;
}

.work-process-box-3 .content .step {
    border-radius: 22.5px 22.5px 22.5px 22.5px;
    width: 60px;
    height: 137px;
    line-height: 137px;
    background: var(--color-gradient-1);
    color: var(--white);
    display: inline-block;
    position: absolute;
    bottom: 86px;
    right: 26px;
}

.work-process-box-3 .content .step span {
    transform: rotate(-90deg);
    display: inline-block;
}

.work-process-box-3 .content::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #fff;
    border-radius: 5px 5px 5px 125px;
    max-width: 370px;
    box-shadow: 0px 0px 40px 0px rgba(42, 35, 115, 0.06);
    margin: 0 auto;
    z-index: -1;
    height: 80%;
}

@media (max-width: 1199px) {
    .work-process-box-3 .content::before {
        max-width: initial;
        height: 100%;
    }
}

.work-process-box-3 .content h3 {
    margin-bottom: 10px;
    font-weight: 500;
}

.work-process-box-3 .icon {
    width: 138px;
    height: 138px;
    line-height: 158px;
    background: var(--theme-color);
    border-radius: 50%;
    margin: 40px auto 0;
    position: relative;
    font-size: 70px;
    color: var(--white);
}

.work-process-box-3 .icon::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #f6f6f7;
    transform: translate(-50%, -50%);
    content: "";
    z-index: -1;
}

.work-process-box-3:hover::before {
    background-image: url(../images/service/hover-bg-2.png);
}

@media (max-width: 1199px) {
    .details-feature-wrapper .section-title {
        text-align: left;
    }
}

.details-feature-wrapper .content .text {
    margin-top: 30px;
}

.details-feature-wrapper .content .icon-items {
    margin-top: 50px;
}

.details-feature-wrapper .content .icon-items li {
    display: flex;
    align-items: center;
    gap: 40px;
}

.details-feature-wrapper .content .icon-items li:not(:last-child) {
    margin-bottom: 30px;
}

.details-feature-wrapper .content .icon-items li .icon {
    width: 60px;
    height: 80px;
    line-height: 80px;
    border-radius: 30px 30px 30px 30px;
    background-color: var(--theme-color);
    color: var(--white);
    text-align: center;
    font-weight: 500;
    font-family: "Unbounded", sans-serif;
}

.details-feature-wrapper .content .icon-items li .content-icon {
    flex-basis: 80%;
}

.details-feature-wrapper .content .icon-items li .content-icon h3 {
    margin-bottom: 12px;
    font-weight: 500;
}

.details-feature-wrapper .feature-image {
    height: 600px;
}

.details-feature-wrapper .feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-process-section-3 {
    position: relative;
}

@media (max-width: 1199px) {
    .work-process-section-3 {
        background-color: var(--bg);
        padding-top: 0;
    }
}

.work-process-section-3 .line-shape {
    text-align: center;
    max-width: 860px;
    margin: 30px auto 0;
}

@media (max-width: 1399px) {
    .work-process-section-3 .line-shape {
        display: none;
    }
}

.work-process-section-3 .left-shape {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 520px;
}

@media (max-width: 1199px) {
    .work-process-section-3 .left-shape {
        display: none;
    }
}

.work-process-section-3 .left-shape img {
    height: 100%;
    width: 100%;
}

@media (max-width: 767px) {
    .about-wrapper .about-content .section-title {
        text-align: left;
    }
}

.about-wrapper .about-content .about-text {
    max-width: 535px;
    margin-top: 20px;
    margin-bottom: 35px;
}

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

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

.about-wrapper .about-content .about-items .content h3 {
    margin-top: 25px;
}

.about-wrapper .about-content .about-items ul li {
    display: flex;
    gap: 20px;
}

.about-wrapper .about-content .about-items ul li:not(:last-child) {
    margin-bottom: 50px;
}

.about-wrapper .about-content .about-items ul li .icon {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    background-image: var(--color-gradient-1);
    color: var(--white);
}

.about-wrapper .about-content .about-items ul li .content {
    flex-basis: 60%;
}

.about-wrapper .about-content .about-items ul li .content h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
}

.about-wrapper .about-image {
    margin-left: -100px;
    position: relative;
}

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

@media (max-width: 767px) {
    .about-wrapper .about-image img {
        width: 100%;
        height: 100%;
    }
}

.about-wrapper .about-image .about-image-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 9;
}

.about-section {
    position: relative;
}

.about-section .bg-shape {
    position: absolute;
    bottom: 14%;
    right: 10px;
}

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

.about-wrapper-2 {
    margin-top: 13px;
}

.about-wrapper-2 .about-image {
    position: relative;
    margin-left: -59%;
    margin-right: 40px;
}

@media (max-width: 1899px) {
    .about-wrapper-2 .about-image {
        margin-right: 0;
        margin-left: 0;
    }
}

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

.about-wrapper-2 .about-image .about-image-2 {
    position: absolute;
    bottom: -40px;
    right: -25%;
}

.about-wrapper-2 .about-image .about-image-2 img {
    position: relative;
    z-index: 9;
}

@media (max-width: 1399px) {
    .about-wrapper-2 .about-image .about-image-2 {
        left: 0;
        right: initial;
    }
}

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

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

.about-wrapper-2 .about-image .about-image-2::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "";
    width: 360px;
    height: 350px;
    border: 1px solid #cdd4dc;
    border-radius: 50%;
}

.about-wrapper-2 .about-image .about-image-2::after {
    position: absolute;
    top: 49%;
    left: 39%;
    transform: translate(-50%, -50%);
    content: "";
    width: 290px;
    height: 320px;
    border-radius: 50%;
    background: linear-gradient(90deg, rgb(43, 50, 178) 0%, rgb(20, 136, 204) 100%);
    opacity: 0.4;
}

.about-wrapper-2 .about-image .counter-box {
    padding: 35px 40px;
    background-color: var(--header);
    position: absolute;
    right: -38%;
    top: 12%;
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 100px;
    transform: rotate(-90deg);
}

@media (max-width: 1399px) {
    .about-wrapper-2 .about-image .counter-box {
        right: 0;
    }
}

@media (max-width: 991px) {
    .about-wrapper-2 .about-image .counter-box {
        display: none;
    }
}

.about-wrapper-2 .about-image .counter-box h2 {
    color: var(--white);
}

.about-wrapper-2 .about-image .counter-box p {
    color: var(--white);
    font-family: "DM Sans", sans-serif;
}

.about-wrapper-2 .about-content {
    margin-left: 10px;
}

@media (max-width: 767px) {
    .about-wrapper-2 .about-content {
        margin-left: 0;
    }
    .about-wrapper-2 .about-content .section-title {
        text-align: left;
    }
}

.about-wrapper-2 .about-content h4 {
    font-weight: 500;
    color: #1488cc;
    margin-top: 30px;
    margin-bottom: 30px;
}

.about-wrapper-2 .about-content .skill-feature {
    margin-top: 30px;
}

.about-wrapper-2 .about-content .skill-feature .box-title {
    font-size: 16px;
    font-weight: 700;
    font-family: "DM Sans", sans-serif;
}

.about-wrapper-2 .about-content .skill-feature .progress-value {
    margin-bottom: 10px;
    color: var(--header);
    text-transform: capitalize;
}

.about-wrapper-2 .about-content .skill-feature .progress {
    position: relative;
    height: 10px;
    background-color: var(--white);
    border-radius: 0;
    overflow: visible;
    margin-top: 15px;
    border-radius: 30px;
}

.about-wrapper-2 .about-content .skill-feature .progress-bar {
    background-color: var(--theme-color);
    height: 10px;
    margin: 0;
    border-radius: inherit;
    overflow: visible;
    position: relative;
    margin-top: 0;
}

.about-wrapper-2 .about-content .skill-feature .progress-value {
    position: absolute;
    top: -38px;
    right: -8px;
    font-size: 16px;
    font-weight: 700;
    font-family: "DM Sans", sans-serif;
}

.about-wrapper-2 .about-content .icon-items-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    margin-bottom: 50px;
}

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

.about-wrapper-2 .about-content .icon-items {
    display: flex;
    gap: 14px;
}

.about-wrapper-2 .about-content .icon-items .icon {
    color: var(--theme-color);
}

.about-wrapper-2 .about-content .icon-items .content {
    max-width: 280px;
}

.about-wrapper-2 .about-content .icon-items .content h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

.about-section-2 {
    background-color: #f5f5f5;
}

.about-wrapper-3 .about-image {
    text-align: right;
    position: relative;
}

@media (max-width: 767px) {
    .about-wrapper-3 .about-image img {
        width: 100%;
        height: 100%;
    }
}

.about-wrapper-3 .about-image .about-image-2 {
    position: absolute;
    bottom: 0;
    left: 0;
}

.about-wrapper-3 .about-image .counter-box {
    width: 270px;
    height: 270px;
    background-color: var(--white);
    border: 2px dashed var(--theme-color);
    position: absolute;
    top: 30%;
    left: 10%;
    z-index: 9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
}

.about-wrapper-3 .about-image .counter-box h2 {
    font-size: 80px;
    font-family: "DM Sans", sans-serif;
    line-height: 1;
}

.about-wrapper-3 .about-image .counter-box p {
    font-size: 22px;
    color: var(--header);
    line-height: 1;
}

.about-wrapper-3 .about-content {
    margin-left: 40px;
}

@media (max-width: 1199px) {
    .about-wrapper-3 .about-content {
        margin-left: 0;
    }
    .about-wrapper-3 .about-content .section-title {
        text-align: left;
    }
}

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

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

.about-wrapper-3 .about-content .about-list li {
    font-size: 18px;
    color: var(--header);
}

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

.about-wrapper-3 .about-content .about-list li i {
    color: var(--header);
    margin-right: 10px;
}

.about-wrapper-3 .about-content .customer-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

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

.about-wrapper-3 .about-content .customer-info .customer-content span {
    color: var(--header);
    display: inline-block;
    margin-top: 10px;
}

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

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

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

.about-section-3 {
    position: relative;
}

.about-section-3 .about-text-shape {
    position: absolute;
    bottom: 200px;
    left: 100px;
}

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

.project-wrapper .project-left-content {
    position: relative;
    z-index: 9;
}

.project-wrapper .project-left-content p {
    margin-top: 30px;
    margin-bottom: 50px;
}

.project-wrapper .project-right-items {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-right: -50%;
    position: relative;
    z-index: 9;
}

@media (max-width: 991px) {
    .project-wrapper .project-right-items {
        margin-right: 0;
        flex-wrap: wrap;
    }
}

.project-wrapper .project-right-items .project-image {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    width: 315px;
    height: 503px;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 991px) {
    .project-wrapper .project-right-items .project-image {
        max-width: 900px !important;
        width: 100% !important;
    }
}

.project-wrapper .project-right-items .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.project-wrapper .project-right-items .project-image.active {
    width: 427px;
}

.project-wrapper .project-right-items .project-image.active .project-content {
    opacity: 1;
    visibility: visible;
}

.project-wrapper .project-right-items .project-image .project-content {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.project-wrapper .project-right-items .project-image .project-content .icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    text-align: center;
    color: var(--white);
    background: var(--color-gradient-1);
    display: inline-block;
    font-size: 24px;
    transition: all 0.4s ease-in-out;
    position: absolute;
    top: -20px;
    left: 50px;
}

.project-wrapper .project-right-items .project-image .project-content .icon i {
    transform: rotate(40deg);
}

.project-wrapper .project-right-items .project-image .project-content .icon:hover {
    background: var(--header);
}

.project-wrapper .project-right-items .project-image .project-content p {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    background-color: rgb(15, 53, 100);
    text-align: center;
    padding: 12px 24px;
    line-height: 1;
    border-top-right-radius: 40px;
    margin-left: 80px;
}

.project-wrapper .project-right-items .project-image .project-content h3 {
    padding: 18px 45px 24px;
    background-color: var(--white);
    border-bottom-left-radius: 20px;
    line-height: 1;
}

.project-wrapper .project-right-items .project-image .project-content h3 a:hover {
    color: var(--theme-color);
}

.pricing-box-items {
    margin-top: 30px;
    position: relative;
    z-index: 9;
}

@media (max-width: 1399px) {
    .pricing-box-items {
        border: 1px solid #dbe1e8;
        border-radius: 10px;
    }
}

.pricing-box-items.active::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: var(--color-gradient-1);
    border-radius: 30px;
    z-index: -1;
    top: 50px;
    height: initial;
}

.pricing-box-items.active .pricing-list {
    padding: 40px 25px;
}

.pricing-box-items.active .pricing-list ul {
    margin-bottom: 30px;
}

.pricing-box-items.active .pricing-list ul li {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
    color: var(--white);
}

.pricing-box-items.active .pricing-list ul li:last-child {
    background-color: rgba(255, 255, 255, 0.03);
}

.pricing-box-items.active .pricing-list ul li i {
    color: var(--white);
}

.pricing-box-items.active .pricing-list ul li:not(:last-child) {
    margin-bottom: 15px;
}

.pricing-box-items.active .pricing-list .theme-btn {
    background: var(--theme-color);
}

.pricing-box-items .bg-shape {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

@media (max-width: 1399px) {
    .pricing-box-items .bg-shape {
        display: none;
    }
}

.pricing-box-items .pricing-header {
    position: relative;
    z-index: 9;
    padding: 30px 0;
    padding-top: 0;
    display: flex;
    align-items: end;
    gap: 20px;
    margin-top: -30px;
}

@media (max-width: 1399px) {
    .pricing-box-items .pricing-header {
        display: block;
        margin-top: 0;
        padding-top: 30px;
        margin: 0 auto;
        text-align: center;
    }
}

.pricing-box-items .pricing-header.style-2 {
    display: grid;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.pricing-box-items .pricing-header.style-2::before {
    background: url("../images/pricing-bg-shape-2.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.pricing-box-items .pricing-header.style-2 .price {
    background: var(--color-gradient-1);
    margin: 0 auto;
}

.pricing-box-items .pricing-header.style-2 .price .price-text,
.pricing-box-items .pricing-header.style-2 .price .text {
    color: var(--white);
}

.pricing-box-items .pricing-header.style-2 h4 {
    color: var(--header) !important;
}

.pricing-box-items .pricing-header::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--header);
    z-index: -1;
    border-radius: 30px 30px 65px 65px;
    top: 35px;
    height: initial;
}

@media (max-width: 1399px) {
    .pricing-box-items .pricing-header::before {
        top: 0;
        border-radius: 10px 10px 0 0;
    }
}

.pricing-box-items .pricing-header .price {
    text-align: center;
    width: 140px;
    height: 140px;
    line-height: 140px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1399px) {
    .pricing-box-items .pricing-header .price {
        margin: 0 auto 30px;
    }
}

.pricing-box-items .pricing-header .price .price-text {
    font-size: 36px;
    font-weight: 400;
}

.pricing-box-items .pricing-header .price .price-text sup {
    top: -6px;
}

.pricing-box-items .pricing-header .price .text {
    font-size: 14px;
    display: block;
    font-weight: 400;
    color: var(--text);
    font-family: "DM Sans", sans-serif;
}

.pricing-box-items .pricing-header .content h4 {
    font-size: 25px;
    color: var(--white);
    font-weight: 500;
}

.pricing-box-items .pricing-list {
    padding: 40px 25px;
}

.pricing-box-items .pricing-list ul {
    margin-bottom: 30px;
}

.pricing-box-items .pricing-list ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    font-family: "Unbounded", sans-serif;
    border: 1px solid #dbe1e8;
    padding: 20px 25px;
    border-radius: 30px;
    line-height: 1;
}

.pricing-box-items .pricing-list ul li:last-child {
    background-color: #f5f5f5;
}

.pricing-box-items .pricing-list ul li i {
    color: var(--theme-color);
}

.pricing-box-items .pricing-list ul li:not(:last-child) {
    margin-bottom: 15px;
}

@media (max-width: 1199px) {
    .project-section {
        background-image: none !important;
        margin-top: -100px;
        margin-bottom: -100px;
    }
}

@media (max-width: 991px) {
    .project-section {
        margin-top: -80px;
        margin-bottom: -80px;
    }
}

@media (max-width: 767px) {
    .project-section .section-title {
        text-align: left;
    }
}

.project-thumb-box-items-33 {
    position: relative;
    overflow: hidden;
}

.project-thumb-box-items-33 img {
    width: 100%;
    height: 100%;
}

.project-thumb-box-items-33 h3 {
    opacity: 0;
    visibility: hidden;
    font-weight: 400;
}

.project-thumb-box-items-33 h3 .title {
    font-size: 30px;
    padding: 22px 35px;
    background-color: #0365d4;
    color: var(--white);
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    left: 0;
    border-radius: 5px;
    left: -35%;
}

.project-thumb-box-items-33:hover h3 {
    opacity: 1;
    visibility: visible;
}

.project-carousel-wrapper {
    margin-left: -19%;
    margin-right: -19%;
}

@media (max-width: 1199px) {
    .project-carousel-wrapper {
        margin-left: 0;
        margin-right: 0;
    }
}

.project-carousel-wrapper .project-carousel-image {
    position: relative;
}

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

.project-carousel-wrapper .project-carousel-image h3 {
    opacity: 0;
    visibility: hidden;
    font-weight: 400;
}

.project-carousel-wrapper .project-carousel-image h3 .title {
    font-size: 34px;
    padding: 28px 35px;
    background-color: #0365d4;
    color: var(--white);
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    left: 0;
    border-radius: 5px;
    left: -24%;
}

@media (max-width: 1199px) {
    .project-carousel-wrapper .project-carousel-image h3 .title {
        transform: rotate(0deg);
        left: 0;
        right: 0;
        bottom: 0;
        font-size: 22px;
        top: initial;
    }
}

.project-carousel-wrapper .project-carousel-image:hover h3 {
    opacity: 1;
    visibility: visible;
}

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

.project-details-wrapper .details-content {
    margin-top: 30px;
}

.project-details-wrapper .details-list-conetnt h3 {
    margin-bottom: 15px;
}

.project-details-wrapper .details-list-conetnt ul {
    margin-top: 20px;
}

.project-details-wrapper .details-list-conetnt ul li {
    font-size: 16px;
}

.project-details-wrapper .details-list-conetnt ul li:not(:last-child) {
    margin-bottom: 20px;
}

.project-details-wrapper .details-list-conetnt ul li i {
    color: var(--theme-color);
    margin-right: 10px;
}

.project-details-wrapper .project-sidebar-area {
    background-color: #f6f6f6;
    padding: 50px 35px;
}

.project-details-wrapper .project-sidebar-area ul {
    margin-top: 30px;
}

.project-details-wrapper .project-sidebar-area ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--white);
    padding: 14px 20px;
    transition: all 0.4s ease-in-out;
}

.project-details-wrapper .project-sidebar-area ul li:not(:last-child) {
    margin-bottom: 15px;
}

.project-details-wrapper .project-sidebar-area ul li:hover {
    background: var(--color-gradient-1);
}

.project-details-wrapper .project-sidebar-area ul li:hover span {
    color: var(--white);
}

.project-details-wrapper .project-sidebar-area ul li:hover .social-text a {
    color: var(--white);
}

.project-details-wrapper .project-sidebar-area ul li .social-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.project-details-wrapper .project-sidebar-area ul li .social-text a {
    color: var(--text);
}

.project-details-wrapper .project-sidebar-area ul li .social-text a:hover {
    color: var(--white);
}

.project-box-thumb-3 {
    margin-top: 30px;
    position: relative;
    height: 450px;
}

.project-box-thumb-3::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(19, 110, 214, 0.6784313725);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.project-box-thumb-3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-box-thumb-3 .border-shape {
    position: absolute;
    bottom: 10px;
    left: 10px;
    transition: all 0.4s ease-in-out;
    opacity: 1;
    visibility: hidden;
    z-index: 99;
}

.project-box-thumb-3 .content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
}

.project-box-thumb-3 .content p {
    font-size: 16px;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 4px;
}

.project-box-thumb-3 .content h3 {
    font-family: "DM Sans", sans-serif;
}

.project-box-thumb-3 .content h3 a {
    color: var(--white);
}

.project-box-thumb-3:hover::before {
    opacity: 1;
    visibility: visible;
}

.project-box-thumb-3:hover .content {
    opacity: 1;
    visibility: visible;
}

.project-box-thumb-3:hover .border-shape {
    opacity: 1;
    visibility: visible;
}

.service-wrapper {
    max-width: 1190px;
    margin: 0 auto;
}

.service-wrapper .service-box-items {
    position: relative;
    z-index: 9;
    padding: 40px;
    padding-top: 0;
}

@media (max-width: 991px) {
    .service-wrapper .service-box-items {
        padding: 15px;
    }
}

.service-wrapper .service-box-items::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--white);
    box-shadow: 0px 10px 60px 0px rgba(33, 34, 38, 0.08);
    height: initial;
    z-index: -1;
    transition: all 0.4s ease-in-out;
    top: 50px;
    opacity: 0;
    visibility: hidden;
}

@media (max-width: 991px) {
    .service-wrapper .service-box-items::before {
        opacity: 1;
        visibility: visible;
    }
}

.service-wrapper .service-box-items .icon-items {
    display: flex;
    align-items: end;
    gap: 30px;
    margin-bottom: 20px;
}

.service-wrapper .service-box-items .icon-items .icon {
    font-size: 70px;
    color: var(--theme-color);
}

.service-wrapper .service-box-items .icon-items .content span {
    font-size: 18px;
    font-weight: 600;
    color: var(--theme-color);
    display: inline-block;
    margin-bottom: 5px;
}

.service-wrapper .service-box-items .icon-items .content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.service-wrapper .service-box-items .icon-items .content h3 a:hover {
    color: var(--theme-color);
    background-size: 100% 2px;
    background-image: linear-gradient(var(--theme-color), var(--theme-color));
}

.service-wrapper .service-box-items p {
    font-weight: 400;
}

.service-wrapper .service-box-items .link-btn {
    font-size: 16px;
    color: var(--header);
    display: inline-block;
    margin-top: 10px;
}

.service-wrapper .service-box-items .link-btn i {
    margin-left: 7px;
}

.service-wrapper .service-box-items .link-btn:hover {
    color: var(--theme-color);
}

.service-wrapper .service-box-items .icon {
    width: 110px;
    height: 186px;
    line-height: 215px;
    border-radius: 55px 55px 0px 0px;
    border: 1px solid rgba(33, 34, 38, 0.15);
    background: var(--color-gradient-2);
    transition: all 0.4s ease-in-out;
    text-align: center;
}

.service-wrapper .service-box-items .icon img {
    transition: all 0.4s ease-in-out;
}

.service-wrapper .service-box-items:hover::before,
.service-wrapper .service-box-items.active::before {
    opacity: 1;
    visibility: visible;
}

.service-wrapper .service-box-items:hover .icon,
.service-wrapper .service-box-items.active .icon {
    background: var(--color-gradient-1);
    color: var(--white);
}

@media (max-width: 991px) {
    .service-wrapper-2 {
        margin-top: -100px;
    }
}

.service-wrapper-2 .service-box-items {
    margin-top: 30px;
}

.service-wrapper-2 .service-box-items .thumb img {
    width: 100%;
    height: 100%;
}

.service-wrapper-2 .service-box-items.style-2 {
    margin-top: 130px;
}

@media (max-width: 1199px) {
    .service-wrapper-2 .service-box-items.style-2 {
        margin-top: 30px;
    }
}

.service-wrapper-2 .service-box-items.style-3 {
    position: relative;
    z-index: 9;
    overflow: hidden;
}

.service-wrapper-2 .service-box-items.style-3::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--white);
    top: 95%;
    height: initial;
    z-index: -1;
}

@media (max-width: 1199px) {
    .service-wrapper-2 .service-box-items.style-3::before {
        top: 100%;
    }
}

.service-wrapper-2 .service-box-items.style-4 {
    margin-top: -87px;
}

.service-wrapper-2 .service-box-items .content {
    text-align: center;
    padding: 40px 20px;
}

.service-wrapper-2 .service-box-items .content h4 {
    margin-bottom: 15px;
}

.service-wrapper-2 .service-box-items .content h4 a {
    color: var(--white);
}

.service-wrapper-2 .service-box-items .content h4 a:hover {
    color: var(--theme-color);
}

.service-wrapper-2 .service-box-items .content p {
    color: #b8b4b4;
}

.service-wrapper-2 .service-box-items .icon {
    text-align: center;
    margin: 0 auto;
    width: 100px;
    line-height: 130px;
    height: 110px;
    border-radius: 50px 50px 0px 0px;
    position: relative;
    background: var(--color-gradient-1);
    font-size: 60px;
    color: var(--white);
}

.service-wrapper-2 .service-box-items .icon img {
    filter: grayscale(100%) brightness(300%);
}

.service-wrapper-2 .service-box-items .icon .arrow-shape {
    position: absolute;
    bottom: -45px;
    right: -31px;
}

.service-wrapper-2 .service-box-items .icon .arrow-shape img {
    filter: initial;
}

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

.service-section .bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

@media (max-width: 991px) {
    .service-section .bg-shape {
        display: none;
    }
}

.service-card-items {
    margin-top: 30px;
    position: relative;
}

.service-card-items .icon-bg {
    position: absolute;
    top: 39%;
    left: 3px;
    transform: translateY(-50%);
    display: inline-block;
    z-index: 99;
}

#suMenu .service-card-items .thumb img {
    border-radius: 8px 8px 0 0;
}

#suMenu .service-card-items .content {
    padding: 15px 25px;
    margin: 0;
}

#suMenu .service-card-items p {
    font-size: 15px;
    font-weight: 700;
    height: 65px;
    color: #000;
}

#suMenu .service-card-items li {
    font-size: 13px;
    line-height: 15px;
    margin-bottom: 19px;
}

#suMenu .service-card-items h3 {
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 5px;
}

@media (max-width: 1399px) {
    .service-card-items .icon-bg {
        display: none;
    }
}

.service-card-items .icon-bg .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    font-size: 35px;
    color: var(--white);
}

.service-card-items .content {
    padding: 35px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    margin-left: 83px;
    position: relative;
    z-index: 9;
}

@media (max-width: 1399px) {
    .service-card-items .content {
        padding: 30px;
        margin-left: 0;
        margin-bottom: 30px;
    }
}

.service-card-items .content .bg-shape {
    position: absolute;
    top: 0;
    left: -78px;
    right: 0;
    bottom: 0;
    z-index: -1;
}

@media (max-width: 1399px) {
    .service-card-items .content .bg-shape {
        display: none;
    }
}

.service-card-items .content .bg-shape img {
    width: 100%;
    height: 100%;
}

.service-card-items .content h4 {
    margin-bottom: 10px;
}

.service-card-items .content h4 a:hover {
    color: var(--theme-color);
}

.service-card-items .content .service-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.service-card-items .content .service-btn .text-btn {
    font-size: 16px;
    font-weight: 600;
    color: var(--header);
    display: inline-block;
    text-decoration: underline;
}

.service-card-items .content .service-btn .text-btn:hover {
    color: var(--theme-color);
}

.service-card-items .content .service-btn .arrow-icon {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    border: 1px solid #dce2e9;
    color: var(--header);
}

.service-card-items .content .service-btn .arrow-icon:hover {
    color: var(--white);
    background-color: var(--theme-color);
}

.service-card-items .thumb {
    margin-top: -32px;
    position: relative;
    z-index: -1;
}

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

.service-card-items-3 {
    text-align: center;
    border-right: 1px solid #d7d6d6;
    z-index: 9;
    position: relative;
}

.service-card-items-3::before {
    position: absolute;
    bottom: -79%;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    width: 270px;
    height: 270px;
    content: "";
    background-color: #f2f2f2;
    border-radius: 50%;
    z-index: -1;
}

@media (max-width: 1199px) {
    .service-card-items-3::before {
        display: none;
    }
}

@media (max-width: 1199px) {
    .service-card-items-3 {
        border: none;
        padding-top: 30px;
    }
}

.service-card-items-3.border-right {
    border-right: none;
}

.service-card-items-3 .icon {
    position: relative;
    text-align: center;
    z-index: 9;
    font-size: 60px;
    color: var(--theme-color);
    padding: 25px 0;
}

@media (max-width: 1199px) {
    .service-card-items-3 .icon {
        padding: 0;
        margin-bottom: 40px;
    }
}

.service-card-items-3 .icon .icon-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.service-card-items-3 .content {
    margin-top: 50px;
    max-width: 255px;
}

.service-card-items-3 .content h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
}

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

.service-card-items-3 .content .arrow-icon {
    margin: 30px auto 0;
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    background: #fff;
    text-align: center;
}

@media (max-width: 1199px) {
    .service-card-items-3 .content .arrow-icon {
        background-color: #d7d6d6;
        color: var(--theme-color);
    }
}

.service-card-items-3 .content .arrow-icon:hover {
    background: var(--color-gradient-1);
    color: var(--white);
}

.service-card-items-3.before-none::before {
    display: none;
}

.service-card-items-3.before-none .arrow-icon {
    background-color: #f2f2f2;
}

.service-card-items-3:hover::before {
    background: var(--theme-color);
}

.service-section-5 .container-fluid {
    max-width: 1530px;
    margin: 0 auto;
}

.service-box-left .service-box-4 {
    position: relative;
    padding: 23px 20px;
    display: flex;
    align-items: center;
    padding-right: 0;
    gap: 25px;
    margin-top: 30px;
}

@media (max-width: 1399px) {
    .service-box-left .service-box-4 {
        flex-wrap: wrap;
        justify-content: center;
        background-color: var(--white);
        padding: 40px 30px;
    }
}

.service-box-left .service-box-4.style-2 {
    margin-right: 60px;
    margin-left: -60px;
}

@media (max-width: 1399px) {
    .service-box-left .service-box-4.style-2 {
        margin-right: 0;
        margin-left: 0;
    }
}

.service-box-left .service-box-4.style-new {
    padding-right: 20px;
    padding-left: 0;
}

@media (max-width: 1399px) {
    .service-box-left .service-box-4.style-new {
        padding-right: 0;
    }
}

.service-box-left .service-box-4.style-new::before {
    display: none;
}

.service-box-left .service-box-4.style-new::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    clip-path: polygon(20% 0, 100% 0, 100% 20%, 100% 80%, 100% 100%, 0 100%, 0% 80%, 0 139%);
    background-color: #f8f8f8;
    z-index: -1;
    border-radius: 100px;
}

@media (max-width: 1399px) {
    .service-box-left .service-box-4.style-new::after {
        display: none;
    }
}

.service-box-left .service-box-4.style-new .content {
    text-align: left;
}

@media (max-width: 1399px) {
    .service-box-left .service-box-4.style-new .content {
        text-align: center;
    }
}

.service-box-left .service-box-4.style-new.bg-white-style-2 {
    position: relative;
    z-index: 99;
}

.service-box-left .service-box-4.style-new.bg-white-style-2::after {
    background-color: #fff;
    z-index: -1;
}

.service-box-left .service-box-4.style-new.bg-white-style-2:hover::after {
    background-color: var(--theme-color) !important;
}

.service-box-left .service-box-4.style-new.bg-white-style-2.active::after {
    background-color: var(--theme-color) !important;
}

.service-box-left .service-box-4.style-margin {
    margin-left: 30px;
}

@media (max-width: 1399px) {
    .service-box-left .service-box-4.style-margin {
        margin-left: 0;
    }
}

.service-box-left .service-box-4.bg-white-style {
    position: relative;
    z-index: 99;
}

.service-box-left .service-box-4.bg-white-style::before {
    background-color: var(--white);
}

.service-box-left .service-box-4::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 112%;
    height: 100%;
    content: "";
    background-color: #f8f8f8;
    z-index: -1;
    border-radius: 100px;
    clip-path: polygon(69% 0, 100% 109%, 100% 100%, 0 100%, 0 0);
    transition: all 0.4s ease-in-out;
}

@media (max-width: 1399px) {
    .service-box-left .service-box-4::before {
        display: none;
    }
}

.service-box-left .service-box-4 .content {
    text-align: right;
    flex-basis: 70%;
}

@media (max-width: 1399px) {
    .service-box-left .service-box-4 .content {
        flex-basis: initial;
        text-align: center;
    }
}

.service-box-left .service-box-4 .content h3 {
    font-weight: 500;
    margin-bottom: 10px;
}

.service-box-left .service-box-4 .content p {
    font-size: 14px;
}

.service-box-left .service-box-4 .icon {
    width: 120px;
    height: 120px;
    line-height: 130px;
    text-align: center;
    border-radius: 50%;
    background: var(--color-gradient-1);
    font-size: 55px;
    color: var(--white);
    position: relative;
    transition: all 0.4s ease-in-out;
}

.service-box-left .service-box-4 .icon .line {
    height: 83px;
    width: 3px;
    background-color: var(--theme-color);
    position: absolute;
    bottom: -21px;
    right: -33px;
    transform: rotate(125deg);
    z-index: -1;
}

@media (max-width: 1899px) {
    .service-box-left .service-box-4 .icon .line {
        display: none;
    }
}

.service-box-left .service-box-4 .icon .line-2 {
    height: 110px;
    width: 3px;
    background-color: var(--theme-color);
    position: absolute;
    bottom: -21px;
    right: -32px;
    transform: rotate(83deg);
    z-index: -1;
}

@media (max-width: 1899px) {
    .service-box-left .service-box-4 .icon .line-2 {
        display: none;
    }
}

.service-box-left .service-box-4 .icon .line-3 {
    height: 112px;
    width: 3px;
    background-color: var(--theme-color);
    position: absolute;
    bottom: 6px;
    right: -49px;
    transform: rotate(69deg);
    z-index: -1;
}

@media (max-width: 1899px) {
    .service-box-left .service-box-4 .icon .line-3 {
        display: none;
    }
}

.service-box-left .service-box-4 .icon .line-4 {
    height: 110px;
    width: 3px;
    background-color: var(--theme-color);
    position: absolute;
    bottom: -28px;
    left: -24px;
    transform: rotate(69deg);
    z-index: -1;
}

@media (max-width: 1899px) {
    .service-box-left .service-box-4 .icon .line-4 {
        display: none;
    }
}

.service-box-left .service-box-4 .icon .line-5 {
    height: 71px;
    width: 3px;
    background-color: var(--theme-color);
    position: absolute;
    bottom: 26px;
    left: -25px;
    transform: rotate(104deg);
    z-index: -1;
}

@media (max-width: 1899px) {
    .service-box-left .service-box-4 .icon .line-5 {
        display: none;
    }
}

.service-box-left .service-box-4 .icon .line-6 {
    height: 103px;
    width: 3px;
    background-color: var(--theme-color);
    position: absolute;
    bottom: 28px;
    left: -44px;
    transform: rotate(104deg);
    z-index: -1;
}

@media (max-width: 1899px) {
    .service-box-left .service-box-4 .icon .line-6 {
        display: none;
    }
}

.service-box-left .service-box-4:hover::before {
    background-color: var(--theme-color);
}

.service-box-left .service-box-4:hover .icon {
    background: var(--white);
    color: var(--theme-color);
}

.service-box-left .service-box-4:hover .content h3 a {
    color: var(--white);
}

.service-box-left .service-box-4:hover .content p {
    color: var(--white);
}

.service-box-left .service-box-4.active::before {
    background-color: var(--theme-color);
}

.service-box-left .service-box-4.active .icon {
    background: var(--white);
    color: var(--theme-color);
}

.service-box-left .service-box-4.active .content h3 a {
    color: var(--white);
}

.service-box-left .service-box-4.active .content p {
    color: var(--white);
}

.service-circle-image {
    margin-top: 30px;
}

.service-circle-image img {
    width: 100%;
    height: 100%;
}

.service-section-3 {
    position: relative;
}

.service-section-3 .bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.service-section-3 .bg-shape img {
    width: 100%;
}

.service-wrapper-22 {
    background-color: var(--white);
    border-radius: 50px 50px 50px 50px;
    text-align: center;
    overflow: hidden;
}

.service-wrapper-22 .service-card-items-3 .content {
    margin: 15px auto 15px;
}

.service-section-5 {
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 1899px) {
    .service-section-5 {
        background-image: none;
        padding-top: 120px;
        background: var(--bg) !important;
    }
}

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

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

.main-sidebar .service-sidebar-widget {
    margin-bottom: 35px;
    padding: 40px;
    background-color: var(--bg);
}

.main-sidebar .service-sidebar-widget .wid-title {
    margin-bottom: 30px;
}

.main-sidebar .service-sidebar-widget .service-category a {
    font-family: "Unbounded", sans-serif;
    position: relative;
    display: inline-block;
    padding: 18px 20px;
    background-color: var(--white);
    width: 100%;
    font-weight: 500;
    z-index: 9;
}

.main-sidebar .service-sidebar-widget .service-category a:not(:last-child) {
    margin-bottom: 10px;
}

.main-sidebar .service-sidebar-widget .service-category a i {
    font-size: 18px;
    color: var(--header);
    position: absolute;
    top: 25px;
    right: 20px;
}

.main-sidebar .service-sidebar-widget .service-category a::before {
    background-image: var(--color-gradient-1);
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: -1;
}

.main-sidebar .service-sidebar-widget .service-category a:hover {
    color: var(--white);
}

.main-sidebar .service-sidebar-widget .service-category a:hover i {
    color: var(--white);
}

.main-sidebar .service-sidebar-widget .service-category a:hover::before {
    visibility: visible;
    opacity: 1;
}

.main-sidebar .service-sidebar-widget .service-category a.active {
    color: var(--white);
}

.main-sidebar .service-sidebar-widget .service-category a.active i {
    color: var(--white);
}

.main-sidebar .service-sidebar-widget .service-category a.active::before {
    visibility: visible;
    opacity: 1;
}

.main-sidebar .service-sidebar-widget .service-info {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-sidebar .service-sidebar-widget .service-info .icon {
    font-size: 42px;
    color: var(--theme-color);
}

.main-sidebar .service-sidebar-widget .service-info .content h5 {
    font-size: 18px;
    margin-top: 5px;
    font-weight: 500;
}

.main-sidebar .service-post {
    padding: 90px 40px;
    position: relative;
}

.main-sidebar .service-post::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: var(--color-gradient-1);
    opacity: 0.6;
}

.main-sidebar .service-post .content {
    text-align: center;
    position: relative;
    z-index: 9;
}

.main-sidebar .service-post .content h3 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 30px;
}

.service-details-content .accordion-item {
    max-width: 100% !important;
}

.service-details-wrapper .service-details-content .service-title {
    font-size: 48px;
    margin-bottom: 20px;
}

@media (max-width: 575px) {
    .service-details-wrapper .service-details-content .service-title {
        font-size: 32px;
    }
}

.service-details-wrapper .service-details-content .details-image {
    height: 400px;
    margin-bottom: 30px;
}

@media (max-width: 575px) {
    .service-details-wrapper .service-details-content .details-image {
        margin-bottom: 20px;
    }
}

.service-details-wrapper .service-details-content .details-title {
    font-size: 30px;
    margin-bottom: 20px;
}

@media (max-width: 575px) {
    .service-details-wrapper .service-details-content .details-title {
        font-size: 28px;
    }
}

.service-details-wrapper .service-details-content .service-details-list .goal-list ul li {
    color: var(--header);
    font-weight: 500;
}

.service-details-wrapper .service-details-content .service-details-list .goal-list ul li:not(:last-child) {
    margin-bottom: 10px;
}

.service-details-wrapper .service-details-content .service-details-list .goal-list ul li i {
    color: var(--theme-color);
    font-size: 18px;
}

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


/* Track */

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


/* Handle */

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

.fix {
    overflow: hidden;
}

.ralt {
    position: relative;
}

.ripple {
    position: relative;
}

.ripple::before,
.ripple::after {
    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, 0.9);
    animation: rippleOne 3s infinite;
}

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

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

.swiper-dot .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    transition: 0.6s;
    background: var(--theme-color);
    opacity: 1;
    border-radius: 7px;
    cursor: pointer;
}

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

.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
    transition: 0.6s;
    position: relative;
}

.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    position: absolute;
    width: 22px;
    height: 22px;
    line-height: 22px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid var(--theme-color);
    content: "";
}

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

.array-button .array-prev,
.array-button .array-next {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--white);
    transition: all 0.4s ease-in-out;
}

.array-button .array-prev:hover,
.array-button .array-next:hover {
    background-color: var(--theme-color);
    color: var(--white);
}

.array-button.style-2 .array-prev {
    border: 1px solid var(--border);
}

.array-button.style-2 .array-next {
    border: 1px solid var(--theme-color);
    background-color: var(--theme-color);
    color: var(--white);
}

.array-button.style-2 .array-next:hover {
    background-color: var(--header);
}

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


/* background */

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

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

.box-shadow {
    box-shadow: var(---box-shadow);
}

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

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

.slide-transtion {
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}

.brand-slide-element {
    width: auto;
    display: inline-block;
}

@media (max-width: 991px) {
    .lg-center {
        justify-content: center;
        text-align: center;
    }
}

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

.team-box-items {
    margin-top: 30px;
    position: relative;
    padding-top: 115px;
}

@media (max-width: 1199px) {
    .team-box-items {
        padding-top: 0;
    }
}

.team-box-items .bg-shape {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) {
    .team-box-items .bg-shape {
        display: none;
    }
}

.team-box-items .hover-shape {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 9;
}

@media (max-width: 1199px) {
    .team-box-items .hover-shape {
        display: none;
    }
}

.team-box-items .social-icon {
    display: flex;
    align-items: center;
    gap: 20px;
    position: absolute;
    left: 37%;
    top: 8%;
    transform: translateX(-50%);
    z-index: 99;
    justify-content: center;
}

@media (max-width: 1199px) {
    .team-box-items .social-icon {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease-in-out;
    }
}

.team-box-items .social-icon a {
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    color: var(--white);
}

.team-box-items .social-icon a.bg-1 {
    background-color: #3973e8;
    margin-bottom: -160px;
}

@media (max-width: 1199px) {
    .team-box-items .social-icon a.bg-1 {
        margin-bottom: 0;
    }
}

.team-box-items .social-icon a.bg-2 {
    background-color: #ea1b29;
    margin-bottom: -70px;
}

@media (max-width: 1199px) {
    .team-box-items .social-icon a.bg-2 {
        margin-bottom: 0;
    }
}

.team-box-items .social-icon a.bg-3 {
    background-color: #44bbff;
    margin-bottom: 10px;
    margin-bottom: -20px;
}

@media (max-width: 1199px) {
    .team-box-items .social-icon a.bg-3 {
        margin-bottom: 0;
    }
}

.team-box-items .social-icon a.bg-4 {
    background-color: #44bbff;
}

.team-box-items .thumb {
    padding-left: 45px;
    position: relative;
    z-index: 9;
}

@media (max-width: 1399px) {
    .team-box-items .thumb {
        padding-left: 0;
    }
}

@media (max-width: 1199px) {
    .team-box-items .thumb img {
        width: 100%;
        height: 100%;
    }
}

.team-box-items .content {
    position: relative;
    z-index: 9;
    padding: 30px 0;
    z-index: 9;
    text-align: center;
    margin-left: -65px;
}

@media (max-width: 1199px) {
    .team-box-items .content {
        margin-left: 0;
        text-align: center;
    }
    .team-box-items .content p {
        color: var(--text) !important;
    }
}

.team-box-items .content h3 {
    font-size: 22px;
}

.team-box-items .content h3 a {
    color: var(--white);
}

@media (max-width: 1199px) {
    .team-box-items .content h3 a {
        color: var(--header);
    }
}

.team-box-items .content p {
    font-size: 18px;
    color: #878c8f;
}

.team-box-items:hover .bg-shape,
.team-box-items.active .bg-shape {
    opacity: 0;
    visibility: hidden;
}

@media (max-width: 1199px) {
    .team-box-items:hover .social-icon,
    .team-box-items.active .social-icon {
        opacity: 1;
        visibility: visible;
    }
}

.team-box-items:hover .hover-shape,
.team-box-items.active .hover-shape {
    opacity: 1;
    visibility: visible;
}

.team-box-items:hover p,
.team-box-items.active p {
    color: var(--white);
}

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

.team-section-2 .shape-image {
    position: absolute;
    top: 0;
    left: 0;
}

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

.team-wrapper-2 {
    position: relative;
    z-index: 9;
}

.team-wrapper-2 .team-content .team-text {
    max-width: 520px;
    margin-top: 10px;
    margin-bottom: 30px;
}

@media (max-width: 1199px) {
    .team-wrapper-2 .section-title h2 {
        color: var(--white);
    }
}

.team-wrapper-2 .team-box-items-2 {
    display: flex;
    align-items: end;
}

@media (max-width: 1199px) {
    .team-wrapper-2 .team-box-items-2 {
        display: block;
    }
    .team-wrapper-2 .team-box-items-2 .thumb img {
        width: 100%;
        height: 100%;
    }
}

.team-wrapper-2 .team-box-items-2 .content {
    padding: 45px;
    margin-left: -100px;
    width: 100%;
    position: relative;
}

@media (max-width: 1199px) {
    .team-wrapper-2 .team-box-items-2 .content {
        margin-left: 0;
    }
}

.team-wrapper-2 .team-box-items-2 .content .social-profile {
    position: absolute;
    top: -60px;
    left: 0;
    content: "";
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    z-index: 2;
    display: flex;
    overflow: hidden;
}

.team-wrapper-2 .team-box-items-2 .content .social-profile ul {
    transform: translateX(-100px);
    transition: all 0.6s ease-in-out;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
}

.team-wrapper-2 .team-box-items-2 .content .social-profile ul li a {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 16px;
    display: block;
    background: var(--white);
    color: var(--header);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    text-align: center;
    margin: 0 auto;
}

.team-wrapper-2 .team-box-items-2 .content .social-profile ul li a:hover {
    background-color: var(--theme-color);
    color: var(--white);
}

.team-wrapper-2 .team-box-items-2 .content .social-profile .plus-btn {
    z-index: 2;
    cursor: pointer;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 16px;
    display: inline-block;
    background: var(--color-gradient-1);
    color: var(--white);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.team-wrapper-2 .team-box-items-2 .content .social-profile:hover ul {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.team-wrapper-2 .team-box-items-2 .content::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #224671;
    border-radius: 0px 95px 95px 0px;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) {
    .team-wrapper-2 .team-box-items-2 .content::before {
        border-radius: 0;
    }
}

.team-wrapper-2 .team-box-items-2 .content::after {
    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("../images/team/hover-bg-2.png");
    border-radius: 0px 95px 95px 0px;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

@media (max-width: 1199px) {
    .team-wrapper-2 .team-box-items-2 .content::after {
        border-radius: 0;
    }
}

.team-wrapper-2 .team-box-items-2 .content span {
    font-size: 16px;
    color: #1488cc;
    position: relative;
    z-index: 9;
}

.team-wrapper-2 .team-box-items-2 .content h3 {
    position: relative;
    z-index: 9;
}

.team-wrapper-2 .team-box-items-2 .content h3 a {
    color: var(--white);
}

.team-wrapper-2 .team-box-items-2 .content .link-btn {
    display: inline-block;
    color: var(--white);
    margin-top: 15px;
    position: relative;
    z-index: 9;
}

.team-wrapper-2 .team-box-items-2 .content .link-btn i {
    margin-left: 5px;
}

.team-wrapper-2 .team-box-items-2:hover .content::before {
    opacity: 0;
    visibility: hidden;
}

.team-wrapper-2 .team-box-items-2:hover .content::after {
    opacity: 1;
    visibility: visible;
}

.team-wrapper-2 .team-box-items-2:hover .content span {
    color: #cbd1da;
}

.team-wrapper-2 .team-box-items-2.active .content::before {
    opacity: 0;
    visibility: hidden;
}

.team-wrapper-2 .team-box-items-2.active .content::after {
    opacity: 1;
    visibility: visible;
}

.team-wrapper-2 .team-box-items-2.active .content span {
    color: #cbd1da;
}

.team-card-items-3 .thumb {
    position: relative;
}

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

.team-card-items-3 .thumb .post-cat {
    position: absolute;
    z-index: 9;
    bottom: -11px;
    right: 0;
    padding: 14px 18px;
}

.team-card-items-3 .thumb .post-cat::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../images/team/post-box.png");
    z-index: -1;
}

.team-card-items-3 .content {
    position: relative;
    padding: 30px 40px 40px;
    margin-top: -15px;
    text-align: right;
}

@media (max-width: 1199px) {
    .team-card-items-3 .content {
        margin-top: 0;
        background-color: var(--theme-color);
        text-align: center;
        padding: 30px;
    }
}

.team-card-items-3 .content .social-profile {
    position: absolute;
    left: 30px;
    bottom: 47px;
    content: "";
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    z-index: 2;
    display: inline-block;
    overflow: hidden;
    cursor: pointer;
}

@media (max-width: 1199px) {
    .team-card-items-3 .content .social-profile {
        left: 0;
    }
}

.team-card-items-3 .content .social-profile ul {
    transform: translateY(100px);
    transition: all 0.6s ease-in-out;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    display: grid;
    gap: 10px;
    align-items: center;
    background-color: var(--white);
    padding: 10px 0;
}

.team-card-items-3 .content .social-profile ul li a {
    text-align: center;
    display: block;
    color: var(--header);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    text-align: center;
    margin: 0 auto;
    font-size: 16px;
}

.team-card-items-3 .content .social-profile ul li a:hover {
    color: var(--theme-color);
}

.team-card-items-3 .content .social-profile .plus-btn {
    z-index: 99;
    cursor: pointer;
    width: 58px;
    height: 58px;
    line-height: 58px;
    text-align: center;
    display: inline-block;
    background-color: var(--white);
    color: var(--header);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
    border: 1px solid transparent;
}

.team-card-items-3 .content .social-profile .plus-btn:hover {
    border: 1px solid rgba(30, 32, 35, 0.12);
    background: var(--white);
    box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
    color: var(--header);
}

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

.team-card-items-3 .content::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../images/team/team-bg-2.png");
    z-index: -1;
}

@media (max-width: 1199px) {
    .team-card-items-3 .content::before {
        display: none;
    }
}

.team-card-items-3 .content::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../images/team/hover-bg-3.png");
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) {
    .team-card-items-3 .content::after {
        display: none;
    }
}

.team-card-items-3 .content h3 {
    font-size: 16px;
}

.team-card-items-3 .content h3 a {
    color: var(--white);
}

.team-card-items-3:hover .content::before {
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.team-card-items-3:hover .content::after {
    opacity: 1;
    visibility: visible;
}

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

.team-details-wrapper .details-content {
    margin-left: 50px;
}

@media (max-width: 1199px) {
    .team-details-wrapper .details-content {
        margin-left: 0;
    }
    .team-details-wrapper .details-content .section-title {
        text-align: left;
    }
}

.team-details-wrapper .details-content .team-text {
    margin-top: 20px;
}

.team-details-wrapper .details-content .list-items {
    margin-top: 30px;
}

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

.team-details-wrapper .details-content .list-items li i {
    color: var(--theme-color);
    margin-right: 10px;
}

.team-details-wrapper .details-content .contact-info-items {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 70px;
}

@media (max-width: 1199px) {
    .team-details-wrapper .details-content .contact-info-items {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.team-details-wrapper .details-content .contact-info-items ul li {
    font-family: "Unbounded", sans-serif;
    color: var(--header);
}

.team-details-wrapper .details-content .contact-info-items ul li:not(:last-child) {
    margin-bottom: 10px;
}

.team-details-wrapper .details-content .contact-info-items ul li a {
    color: var(--text);
    font-family: "DM Sans", sans-serif;
}

.team-details-wrapper .details-content .pro-items {
    width: 100%;
    margin-top: 30px;
}

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

.team-details-wrapper .details-content .pro-items .pro-head .title {
    font-size: 16px;
    font-weight: 500;
    color: var(--header);
}

.team-details-wrapper .details-content .pro-items .pro-head .point {
    font-size: 16px;
    color: var(--header);
}

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

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

.team-details-wrapper .details-content .pro-items .style-two {
    animation: load2 3s normal forwards;
}

.team-details-wrapper .details-content .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%;
    }
}

.faq-wrapper-2 {
    padding-top: 600px;
}

@media (max-width: 1399px) {
    .faq-wrapper-2 {
        padding-bottom: 120px;
    }
}

@media (max-width: 1199px) {
    .faq-wrapper-2 {
        padding-bottom: 100px;
    }
}

@media (max-width: 991px) {
    .faq-wrapper-2 {
        padding-bottom: 0;
    }
}

.faq-wrapper-2 .faq-items {
    margin-top: 40px;
}

.faq-wrapper-2 .faq-items .accordion .accordion-item {
    border: none;
    margin-bottom: 20px;
    border: 1px solid rgba(18, 56, 103, 0.2);
    border-radius: 32.5px 32.5px 32.5px 32.5px;
    max-width: 650px;
    position: relative;
}

.faq-wrapper-2 .faq-items .accordion .accordion-item::after {
    position: absolute;
    top: 20px;
    left: 20px;
    content: "\f059";
    font-family: "Font Awesome 5 Pro";
    color: var(--theme-color);
    font-size: 24px;
}

.faq-wrapper-2 .faq-items .accordion .accordion-item h2 button {
    font-size: 20px;
    line-height: 1;
    font-weight: 500;
    box-shadow: none;
    border-radius: 0 !important;
    padding: 26px 70px;
    font-family: "Unbounded", sans-serif;
    color: var(--header);
}

@media (max-width: 575px) {
    .faq-wrapper-2 .faq-items .accordion .accordion-item h2 button {
        font-size: 17px;
    }
}

.faq-wrapper-2 .faq-items .accordion .accordion-item .accordion-body {
    padding: 20px 50px;
    padding-top: 0;
}

.faq-wrapper-2 .faq-items .accordion .accordion-item .accordion-body p {
    color: var(--text);
    font-size: 16px;
    line-height: 32px;
    font-weight: 400;
}

@media (max-width: 575px) {
    .faq-wrapper-2 .faq-items .accordion .accordion-item .accordion-body p {
        width: 100%;
        font-size: 14px;
        line-height: 28px;
    }
}

.faq-wrapper-2 .faq-items .accordion .accordion-button {
    background-color: transparent;
    color: var(--header);
}

.faq-wrapper-2 .faq-items .accordion .accordion-button::after {
    display: none;
}

.faq-wrapper-2 .faq-items .accordion .accordion-button::before {
    position: absolute;
    content: "\f077";
    font-family: "Font Awesome 5 Pro";
    font-weight: 700;
    top: 28px;
    right: 30px;
    font-size: 16px;
    text-align: center;
    transition: all 0.4s ease-in-out;
    color: var(--header);
}

.faq-wrapper-2 .faq-items .accordion .accordion-button.collapsed {
    background-color: transparent;
    color: var(--header);
}

.faq-wrapper-2 .faq-items .accordion .accordion-button.collapsed::before {
    content: "\f078";
}

.faq-wrapper-2 .faq-image {
    position: relative;
    z-index: 9;
}

@media (max-width: 1399px) {
    .faq-wrapper-2 .faq-image img {
        width: 100%;
        height: 100%;
    }
}

.faq-wrapper-2 .faq-image .bg-shape {
    position: absolute;
    top: 100px;
    right: -100px;
    z-index: -1;
}

@media (max-width: 1399px) {
    .faq-wrapper-2 .faq-image .bg-shape {
        display: none;
    }
}

.faq-section-2 {
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: -600px;
}

.cta-download-section {
    background: linear-gradient(180deg, rgb(43, 50, 178) 0%, rgb(20, 136, 204) 100%);
    padding: 40px 0;
    background-repeat: no-repeat;
}

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

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

.cta-download-wrapper .content {
    margin-left: 240px;
}

@media (max-width: 1199px) {
    .cta-download-wrapper .content {
        margin-left: 0;
    }
}

.cta-download-wrapper .content h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-download-wrapper .content p {
    color: var(--white);
}

.cta-download-wrapper .app-button {
    display: flex;
    align-items: center;
    gap: 25px;
}

@media (max-width: 575px) {
    .cta-download-wrapper .app-button {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.cta-download-wrapper .app-button .app-btn {
    border-radius: 12px;
    display: inline-block;
    padding: 18px 30px;
    line-height: 1;
    background-color: var(--white);
    font-size: 20px;
    font-family: "Unbounded", sans-serif;
    min-width: 255px;
}

@media (max-width: 767px) {
    .cta-download-wrapper .app-button .app-btn {
        padding: 12px 20px;
        font-size: 16px;
        min-width: initial;
    }
}

.cta-download-wrapper .app-button .app-btn img {
    margin-right: 15px;
}

.cta-download-wrapper .app-button .app-btn.style-2 {
    background-color: #0f3564;
    color: var(--white);
}

.cta-wrapper-3 {
    padding: 60px 120px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 99;
}

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

.cta-wrapper-3 p {
    font-size: 36px;
    font-weight: bold;
    color: var(--white);
}

.cta-wrapper-3 .theme-btn {
    border-radius: 10px;
    background: var(--white);
    color: var(--header);
}

.cta-wrapper-3 .theme-btn:hover {
    color: var(--white);
}

.testimonial-wrapper {
    position: relative;
}

.testimonial-wrapper .swiper-dot {
    transform: translateY(-50%) rotate(-90deg);
    position: absolute;
    z-index: 99;
    top: 50%;
    right: 0;
}

@media (max-width: 1399px) {
    .testimonial-wrapper .swiper-dot {
        display: none;
    }
}

.testimonial-wrapper .swiper-dot::before {
    position: absolute;
    content: "";
    height: 235px;
    width: 6px;
    background-color: var(--theme-color);
    transform: rotate(-90deg);
    left: 78px;
    top: -104px;
    z-index: -1;
}

@media (max-width: 1600px) {
    .testimonial-wrapper .swiper-dot {
        display: none;
    }
}

.testimonial-wrapper .swiper-dot .swiper-pagination-bullet {
    width: 25px;
    height: 25px;
    transition: 0.6s;
    background: var(--white);
    border: 1px solid var(--theme-color);
    border-radius: 50%;
    opacity: 1;
    border-radius: 25px;
}

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

.testimonial-wrapper .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    display: none;
}

.testimonial-wrapper .testi-client-info {
    text-align: center;
    margin-left: 110px;
    display: grid;
    margin-top: 30px;
    gap: 30px;
}

@media (max-width: 991px) {
    .testimonial-wrapper .testi-client-info {
        margin-left: 0;
        display: flex;
        justify-content: center;
    }
}

.testimonial-wrapper .testi-client-info .client-image-1.style-2 {
    margin-left: -215px;
}

@media (max-width: 991px) {
    .testimonial-wrapper .testi-client-info .client-image-1.style-2 {
        margin-left: 0;
    }
}

.testimonial-wrapper .testimonial-box-items {
    padding: 80px;
    border-radius: 180px 0px 0px 180px;
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
    margin-left: 50px;
    margin-right: 130px;
    position: relative;
}

@media (max-width: 1399px) {
    .testimonial-wrapper .testimonial-box-items {
        margin-right: 0;
    }
}

@media (max-width: 991px) {
    .testimonial-wrapper .testimonial-box-items {
        border-radius: 0;
        border-radius: 10px;
        margin-left: 0;
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .testimonial-wrapper .testimonial-box-items {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        text-align: center;
    }
}

.testimonial-wrapper .testimonial-box-items .ratting-shape {
    position: absolute;
    left: 40px;
}

@media (max-width: 991px) {
    .testimonial-wrapper .testimonial-box-items .ratting-shape {
        display: none;
    }
}

.testimonial-wrapper .testimonial-box-items .content {
    max-width: 500px;
}

.testimonial-wrapper .testimonial-box-items .content h3 {
    color: var(--white);
}

.testimonial-wrapper .testimonial-box-items .content p {
    margin-top: 30px;
}

.testimonial-wrapper .testimonial-box-items .quote-icon {
    width: 100px;
    height: 130px;
    background: var(--color-gradient-1);
    border-radius: 0px 0px 50px 50px;
    right: 115px;
    position: absolute;
    top: 0;
    text-align: center;
    line-height: 130px;
}

@media (max-width: 991px) {
    .testimonial-wrapper .testimonial-box-items .quote-icon {
        display: none;
    }
}

.testimonial-wrapper-2 .testimonial-left-items .section-title {
    margin-bottom: 50px;
}

.testimonial-wrapper-2 .testimonial-left-items .testimonial-card-items {
    padding: 30px;
    background-color: var(--white);
    border-radius: 0px 115px 115px 115px;
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 24px;
}

@media (max-width: 767px) {
    .testimonial-wrapper-2 .testimonial-left-items .testimonial-card-items {
        flex-wrap: wrap;
        border-radius: 0;
        text-align: center;
        padding: 40px;
    }
    .testimonial-wrapper-2 .testimonial-left-items .testimonial-card-items .thumb {
        margin: 0 auto;
    }
}

.testimonial-wrapper-2 .testimonial-left-items .testimonial-card-items .content {
    max-width: 440px;
}

.testimonial-wrapper-2 .testimonial-left-items .testimonial-card-items .content h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.testimonial-wrapper-2 .testimonial-left-items .testimonial-card-items.style-2 {
    border-radius: 115px 0px 115px 115px;
    text-align: right;
}

@media (max-width: 767px) {
    .testimonial-wrapper-2 .testimonial-left-items .testimonial-card-items.style-2 {
        text-align: center;
        border-radius: 0;
    }
}

.testimonial-wrapper-2 .testimonial-left-items .testimonial-card-items-2 {
    padding: 30px;
    background-color: var(--white);
    border-radius: 115px 0px 115px 115px;
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 24px;
}

@media (max-width: 767px) {
    .testimonial-wrapper-2 .testimonial-left-items .testimonial-card-items-2 {
        flex-wrap: wrap;
        border-radius: 0;
        text-align: center;
        padding: 40px;
    }
    .testimonial-wrapper-2 .testimonial-left-items .testimonial-card-items-2 .thumb {
        margin: 0 auto;
    }
}

.testimonial-wrapper-2 .testimonial-left-items .testimonial-card-items-2 .content {
    text-align: right;
}

@media (max-width: 767px) {
    .testimonial-wrapper-2 .testimonial-left-items .testimonial-card-items-2 .content {
        text-align: center;
    }
}

.testimonial-wrapper-2 .testimonial-left-items .testimonial-card-items-2 .content h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.testimonial-wrapper-2 .testimonial-slider-2 {
    height: 500px;
}

@media (max-width: 991px) {
    .testimonial-wrapper-2 .testimonial-slider-2 {
        height: 250px;
    }
}

@media (max-width: 767px) {
    .testimonial-wrapper-2 .testimonial-slider-2 {
        height: 440px;
    }
}

.testimonial-wrapper-2 .swiper-dot {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    left: 200px;
}

@media (max-width: 1899px) {
    .testimonial-wrapper-2 .swiper-dot {
        display: none;
    }
}

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

.testimonial-wrapper-2 .swiper-dot .swiper-pagination-bullet:not(:last-child) {
    margin-right: 0;
    margin-bottom: 20px;
}

.testimonial-wrapper-2 .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
    transition: 0.6s;
    position: relative;
}

.testimonial-wrapper-2 .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    position: absolute;
    width: 22px;
    height: 22px;
    line-height: 22px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #fff;
    content: "";
}

.testimonial-section-2 {
    position: relative;
    z-index: 9;
}

.testimonial-section-2::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--white);
    z-index: -1;
    left: 61%;
}

@media (max-width: 1399px) {
    .testimonial-section-2::before {
        display: none;
    }
}

.testimonial-section-2 .testimonial-right-items {
    position: absolute;
    top: 0;
    right: 110px;
}

@media (max-width: 1899px) {
    .testimonial-section-2 .testimonial-right-items {
        right: 0;
    }
}

@media (max-width: 1399px) {
    .testimonial-section-2 .testimonial-right-items {
        position: static;
    }
    .testimonial-section-2 .testimonial-right-items img {
        width: 100%;
        height: 100%;
    }
}

.testimonial-section-2 .testimonial-right-items .counter-box {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    position: relative;
    background-color: #df8700;
    padding: 12px 15px;
    line-height: 1;
    border-radius: 55px;
    padding-right: 40px;
    margin-left: 75px;
    margin-top: 15px;
}

.testimonial-section-2 .testimonial-right-items .counter-box::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: var(--color-gradient-1);
    z-index: -1;
    border-radius: 55px;
    left: -10px;
}

.testimonial-section-2 .testimonial-right-items .counter-box .icon {
    width: 80px;
    height: 80px;
    line-height: 90px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--white);
    font-size: 40px;
    color: var(--theme-color);
}

.testimonial-section-2 .testimonial-right-items .counter-box .content h3 {
    font-size: 30px;
    color: var(--white);
}

.testimonial-section-2 .testimonial-right-items .counter-box .content p {
    color: #d0c6c6;
}

.testimonial-section-3 {
    border-radius: 0 0 500px 500px;
    margin-top: -100px;
    padding-top: 220px;
}

@media (max-width: 1199px) {
    .testimonial-section-3 {
        padding-top: 200px;
    }
}

@media (max-width: 991px) {
    .testimonial-section-3 {
        padding-top: 180px;
    }
}

.testimonail-box-3 {
    margin-top: 30px;
    position: relative;
    z-index: 9;
}

.testimonail-box-3::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--white);
    z-index: -1;
    left: 30px;
    width: initial;
    height: 85%;
}

.testimonail-box-3 .content {
    padding: 40px 70px;
    text-align: center;
}

.testimonail-box-3 p {
    font-size: 16px;
    border-bottom: 1px solid #dededf;
    padding-bottom: 40px;
}

.testimonail-box-3 span {
    display: inline-block;
    font-weight: 700;
    margin-top: 20px;
}

.testimonail-box-3 .star {
    color: var(--theme-color);
}

.testimonail-box-3 .client-info {
    border-radius: 0px 45px 0px 45px;
    background-color: rgb(3, 101, 212);
    box-shadow: 0px 10px 60px 0px rgba(33, 34, 38, 0.04);
    padding: 20px 30px;
    display: inline-flex;
    padding-right: 75px;
    gap: 20px;
}

.testimonail-box-3 .client-info .info-content span {
    margin-top: 0;
    font-weight: 400;
    color: var(--white);
}

.testimonail-box-3 .client-info .info-content h6 {
    color: var(--white);
    font-weight: 400;
}

.brand-wrapper {
    padding: 50px;
    background-repeat: no-repeat;
}

.brand-wrapper .brand-image {
    border-left: 1px solid var(--white);
}

.brand-wrapper-2 {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 50px 0;
    position: relative;
    z-index: 9;
}

.brand-wrapper-2.style-2 {
    border-radius: 50px 50px 50px 50px;
    border-radius: #fafafa;
}

.brand-wrapper-2 .brand-image {
    border-left: 1px solid var(--text);
}

.news-wrapper .news-content-left {
    background-color: #0f3564;
    padding: 70px 40px;
    border-radius: 20px;
}

@media (max-width: 767px) {
    .news-wrapper .news-content-left {
        padding: 50px 40px;
    }
    .news-wrapper .news-content-left .section-title {
        text-align: left;
    }
}

.news-wrapper .news-content-left .theme-btn {
    margin-top: 40px;
}

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

@media (max-width: 1199px) {
    .news-wrapper .news-box-items {
        display: block;
    }
    .news-wrapper .news-box-items .thumb {
        height: 350px;
        margin-top: 24px;
    }
    .news-wrapper .news-box-items .thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }
}

.news-wrapper .news-box-items .content {
    padding: 40px 30px;
    max-width: 450px;
    border: 3px dotted #c0cad7;
    border-radius: 20px;
    margin-right: -10px;
}

@media (max-width: 1199px) {
    .news-wrapper .news-box-items .content {
        max-width: 1000px;
    }
}

.news-wrapper .news-box-items .content h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.news-wrapper .news-box-items .content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.news-wrapper .news-box-items .content h3 a:hover {
    color: var(--theme-color);
    background-size: 100% 2px;
    background-image: linear-gradient(var(--theme-color), var(--theme-color));
}

.news-wrapper .news-box-items .content .post-date {
    display: flex;
    align-items: center;
    gap: 25px;
    border-top: 1px solid #eceff3;
    border-bottom: 1px solid #eceff3;
    padding: 10px 0;
    margin-top: 20px;
    position: relative;
}

.news-wrapper .news-box-items .content .post-date li i {
    margin-right: 6px;
}

.news-wrapper .news-box-items .content .post-date li:last-child {
    display: flex;
    align-items: center;
    border-radius: 8px;
    background: var(--color-gradient-1);
    width: 60px;
    height: 60px;
    text-align: center;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    justify-content: center;
}

.news-wrapper .news-box-items .content .post-date li .box {
    color: var(--white);
    font-weight: 400;
    font-family: "Unbounded", sans-serif;
    line-height: 1.3;
}

.news-wrapper .news-box-items .content .post-date li .box .date {
    display: block;
}

.news-wrapper .news-box-items .content .link-btn-2 {
    font-size: 16px;
    color: var(--text);
    display: none;
}

@media (max-width: 1199px) {
    .news-wrapper .news-box-items .content .link-btn-2 {
        display: block;
        margin-top: 20px;
        display: inline-block;
    }
}

.news-wrapper .news-box-items .content .link-btn-2 i {
    margin-left: 7px;
}

.news-wrapper .news-box-items .content .link-btn-2:hover {
    color: var(--theme-color);
}

.news-wrapper .news-box-items .link-btn {
    font-size: 16px;
    color: var(--text);
    bottom: -10px;
    left: 31%;
    transform: translateX(-50%);
    position: absolute;
}

@media (max-width: 1199px) {
    .news-wrapper .news-box-items .link-btn {
        display: none;
    }
}

.news-wrapper .news-box-items .link-btn i {
    margin-left: 7px;
}

.news-wrapper .news-box-items .link-btn:hover {
    color: var(--theme-color);
}

.news-card-items {
    margin-top: 30px;
    position: relative;
    z-index: 9;
}

.news-card-items .link-btn {
    font-size: 16px;
    color: var(--text);
    top: 33%;
    left: 38px;
    transform: translateX(-50%) rotate(-90deg);
    position: absolute;
}

@media (max-width: 1399px) {
    .news-card-items .link-btn {
        display: none;
    }
}

.news-card-items .link-btn i {
    margin-left: 7px;
}

.news-card-items .link-btn:hover {
    color: var(--theme-color);
}

.news-card-items::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    border: 2px dotted #c0cad7;
    border-radius: 20px;
    z-index: -1;
    top: 14%;
    height: initial;
}

.news-card-items .thumb {
    text-align: right;
    transition: all 0.4s ease-in-out;
    position: relative;
}

.news-card-items .thumb:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    border-radius: 20px;
    background: var(--header);
    max-width: 345px;
    left: initial;
    border-bottom-left-radius: 85px;
    opacity: 0;
    visibility: visible;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 991px) {
    .news-card-items .thumb:before {
        max-width: initial;
    }
}

@media (max-width: 767px) {
    .news-card-items .thumb img {
        width: 100%;
        height: 100%;
    }
}

.news-card-items .content {
    padding: 30px;
}

.news-card-items .content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.news-card-items .content h3 a:hover {
    color: var(--theme-color);
    background-size: 100% 2px;
    background-image: linear-gradient(var(--theme-color), var(--theme-color));
}

.news-card-items .content p {
    margin-top: 15px;
}

.news-card-items .content .post-date {
    display: flex;
    align-items: center;
    gap: 25px;
    border-top: 1px solid #eceff3;
    border-bottom: 1px solid #eceff3;
    padding: 10px 0;
    margin-top: 20px;
    position: relative;
}

.news-card-items .content .post-date li i {
    margin-right: 6px;
}

.news-card-items .content .post-date li:last-child {
    display: flex;
    align-items: center;
    border-radius: 8px;
    background: var(--color-gradient-1);
    width: 60px;
    height: 60px;
    text-align: center;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    justify-content: center;
}

.news-card-items .content .post-date li .box {
    color: var(--white);
    font-weight: 400;
    font-family: "Unbounded", sans-serif;
    line-height: 1.3;
}

.news-card-items .content .post-date li .box .date {
    display: block;
}

.news-card-items:hover .thumb::before {
    opacity: 0.5;
    visibility: visible;
}

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

.news-card-items-3 .thumb {
    position: relative;
    overflow: hidden;
}

.news-card-items-3 .thumb img {
    width: 100%;
    height: 100%;
}

.news-card-items-3 .thumb .news-content {
    position: absolute;
    bottom: -100px;
    left: 0;
    right: 0;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    width: 95%;
}

.news-card-items-3 .thumb .news-content .content {
    padding: 30px 35px;
    background-color: var(--white);
}

.news-card-items-3 .thumb .news-content span {
    display: inline-block;
    color: #878c8f;
    position: relative;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.news-card-items-3 .thumb .news-content span::before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 45px;
    height: 3px;
    background-color: var(--theme-color);
}

.news-card-items-3 .thumb .news-content h3 {
    font-size: 22px;
    font-weight: 600;
}

.news-card-items-3 .thumb .news-content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.news-card-items-3 .thumb .news-content h3 a:hover {
    color: var(--theme-color);
    background-size: 100% 2px;
    background-image: linear-gradient(var(--theme-color), var(--theme-color));
}

.news-card-items-3 .thumb .news-content .news-btn {
    background-color: #f6f6f6;
    padding-left: 30px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 0;
}

.news-card-items-3 .thumb .news-content .news-btn .link-btn {
    text-decoration: underline;
}

.news-card-items-3 .thumb .news-content .news-btn .link-btn:hover {
    color: var(--theme-color);
}

.news-card-items-3 .thumb .news-content .news-btn .date-text {
    display: inline-block;
    width: 90px;
    height: 83px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color);
}

.news-card-items-3 .thumb .news-content .news-btn .date-text .date {
    text-align: center;
}

.news-card-items-3 .thumb .news-content .news-btn .date-text .date h4 {
    font-size: 24px;
    color: var(--white);
    font-family: "DM Sans", sans-serif;
    color: var(--white);
    font-weight: 500;
}

.news-card-items-3 .thumb .news-content .news-btn .date-text .date p {
    color: var(--white);
    margin-top: 5px;
}

.news-card-items-3:hover .thumb .news-content {
    opacity: 1;
    visibility: visible;
    bottom: 0;
}

.news-card-items-3.active .thumb .news-content {
    opacity: 1;
    visibility: visible;
    bottom: 0;
}

.blog-wrapper .single-blog-post {
    margin-bottom: 40px;
    position: relative;
}

.blog-wrapper .single-blog-post .video__button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.blog-wrapper .single-blog-post .video__button .video__btn__wrp {
    margin-bottom: 0;
}

.blog-wrapper .single-blog-post.post-details.format-quote .post-content {
    position: relative;
    background: transparent;
    border: none;
}

.blog-wrapper .single-blog-post.post-details .post-content {
    border: none;
}

.blog-wrapper .single-blog-post.post-details .post-content img {
    margin-top: 20px;
    margin-bottom: 20px;
}

.blog-wrapper .single-blog-post.post-details .post-content .single-post-image {
    width: 100%;
    height: 100%;
}

.blog-wrapper .single-blog-post.post-details .post-content h1 {
    font-size: 36px;
    line-height: 1.4;
}

.blog-wrapper .single-blog-post.post-details .post-content h1,
.blog-wrapper .single-blog-post.post-details .post-content h2,
.blog-wrapper .single-blog-post.post-details .post-content h3,
.blog-wrapper .single-blog-post.post-details .post-content h4,
.blog-wrapper .single-blog-post.post-details .post-content h5,
.blog-wrapper .single-blog-post.post-details .post-content h6 {
    margin-top: 10px;
}

.blog-wrapper .single-blog-post.post-details .post-content table {
    margin-top: 20px;
}

@media (max-width: 767px) {
    .blog-wrapper .single-blog-post.post-details .post-content h1 {
        font-size: 28px;
    }
    .blog-wrapper .single-blog-post.post-details .post-content h3 {
        font-size: 20px;
    }
}

.blog-wrapper .single-blog-post.post-details blockquote,
.blog-wrapper .single-blog-post.post-details .wp-block-quote {
    background-color: var(--theme-color);
    color: var(--white);
    font-size: 26px;
    line-height: 1.4;
    font-family: "Unbounded", sans-serif;
    font-weight: 400;
    padding: 60px;
    text-align: center;
    margin: 40px 0px;
    position: relative;
    z-index: 1;
}

.blog-wrapper .single-blog-post.post-details blockquote a,
.blog-wrapper .single-blog-post.post-details .wp-block-quote a {
    color: var(--white);
}

.blog-wrapper .single-blog-post.post-details blockquote a:hover,
.blog-wrapper .single-blog-post.post-details .wp-block-quote a:hover {
    color: var(--text);
}

@media (max-width: 767px) {
    .blog-wrapper .single-blog-post.post-details blockquote,
    .blog-wrapper .single-blog-post.post-details .wp-block-quote {
        padding: 30px 15px;
        font-size: 18px;
        line-height: 1.5;
    }
}

.blog-wrapper .single-blog-post.post-details blockquote::before,
.blog-wrapper .single-blog-post.post-details .wp-block-quote::before {
    right: 30px;
    font-size: 110px;
    line-height: 1;
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    content: "\f10d";
    bottom: -20px;
    color: var(--white);
    z-index: -1;
    opacity: 0.1;
    font-weight: 900;
}

.blog-wrapper .single-blog-post.format-video .post-featured-thumb,
.blog-wrapper .single-blog-post.category-video-post .post-featured-thumb {
    z-index: 1;
    position: relative;
}

.blog-wrapper .single-blog-post.format-video .post-featured-thumb::before,
.blog-wrapper .single-blog-post.category-video-post .post-featured-thumb::before {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    content: "";
    background-color: #282835;
    opacity: 0.3;
    z-index: -1;
}

.blog-wrapper .single-blog-post.quote-post .post-content,
.blog-wrapper .single-blog-post.format-quote .post-content {
    position: relative;
    background-color: var(--theme-color);
    border: none;
    padding-top: 0;
}

.blog-wrapper .single-blog-post.quote-post .post-content::before,
.blog-wrapper .single-blog-post.format-quote .post-content::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-image: url(../images/quotepost.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.blog-wrapper .single-blog-post.quote-post .quote-content,
.blog-wrapper .single-blog-post.format-quote .quote-content {
    overflow: hidden;
    padding: 50px;
}

@media (max-width: 585px) {
    .blog-wrapper .single-blog-post.quote-post .quote-content,
    .blog-wrapper .single-blog-post.format-quote .quote-content {
        text-align: center;
        font-size: 24px;
        padding: 30px;
    }
}

.blog-wrapper .single-blog-post.quote-post .quote-content .icon,
.blog-wrapper .single-blog-post.format-quote .quote-content .icon {
    font-size: 70px;
    line-height: 80px;
    float: left;
    overflow: hidden;
    margin-right: 30px;
}

@media (max-width: 585px) {
    .blog-wrapper .single-blog-post.quote-post .quote-content .icon,
    .blog-wrapper .single-blog-post.format-quote .quote-content .icon {
        float: none;
        margin-bottom: 10px;
        margin-right: 0;
        font-size: 50px;
        line-height: 60px;
    }
}

.blog-wrapper .single-blog-post.quote-post .quote-content .quote-text,
.blog-wrapper .single-blog-post.format-quote .quote-content .quote-text {
    overflow: hidden;
}

.blog-wrapper .single-blog-post.quote-post .quote-content h2,
.blog-wrapper .single-blog-post.format-quote .quote-content h2 {
    margin-top: -2px;
    font-size: 36px;
    color: var(--white);
}

@media (max-width: 767px) {
    .blog-wrapper .single-blog-post.quote-post .quote-content h2,
    .blog-wrapper .single-blog-post.format-quote .quote-content h2 {
        font-size: 28px;
    }
}

.blog-wrapper .single-blog-post.quote-post .quote-content .post-meta,
.blog-wrapper .single-blog-post.format-quote .quote-content .post-meta {
    margin-top: 10px;
}

.blog-wrapper .single-blog-post.quote-post .quote-content .post-meta span,
.blog-wrapper .single-blog-post.quote-post .quote-content .post-meta i,
.blog-wrapper .single-blog-post.format-quote .quote-content .post-meta span,
.blog-wrapper .single-blog-post.format-quote .quote-content .post-meta i {
    color: var(--white);
}

.blog-wrapper .single-blog-post:last-child {
    margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-featured-thumb {
    height: 462px;
    width: 100%;
    position: relative;
    margin-bottom: -2px;
}

.blog-wrapper .single-blog-post .post-featured-thumb .post-date {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 15px 30px;
    background-color: var(--theme-color);
    text-align: center;
}

.blog-wrapper .single-blog-post .post-featured-thumb .post-date h4 {
    color: var(--white);
}

.blog-wrapper .single-blog-post .post-featured-thumb .post-date h4 span {
    color: var(--white);
    text-transform: uppercase;
    font-size: 15px;
}

@media (max-width: 991px) {
    .blog-wrapper .single-blog-post .post-featured-thumb {
        height: 280px;
    }
}

@media (max-width: 767px) {
    .blog-wrapper .single-blog-post .post-featured-thumb {
        height: 230px;
    }
}

.blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn .play-video {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 18px;
}

.blog-wrapper .single-blog-post .post-content {
    padding-top: 30px;
    overflow: hidden;
    box-sizing: border-box;
}

@media (max-width: 575px) {
    .blog-wrapper .single-blog-post .post-content {
        padding-top: 20px;
    }
}

.blog-wrapper .single-blog-post .post-content h2 {
    line-height: 1.4;
    font-size: 32px;
    font-weight: 500;
}

@media (max-width: 575px) {
    .blog-wrapper .single-blog-post .post-content h2 {
        font-size: 28px;
    }
}

.blog-wrapper .single-blog-post .post-content h2 a:hover {
    color: var(--theme-color);
}

.blog-wrapper .single-blog-post .post-content p {
    font-size: 16px;
}

@media (max-width: 767px) {
    .blog-wrapper .single-blog-post .post-content {
        padding: 30px 10px;
    }
}

@media (max-width: 414px) {
    .blog-wrapper .single-blog-post .post-content h2 {
        font-size: 22px;
    }
}

.blog-wrapper .single-blog-post .post-content .post-cat a {
    color: var(--white);
    display: inline-block;
    background-color: var(--theme-color);
    padding: 14px 18px 12px;
    line-height: 1;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
    margin-bottom: 20px;
    text-transform: capitalize;
    font-family: "League Spartan", sans-serif;
}

@media (max-width: 767px) {
    .blog-wrapper .single-blog-post .post-content .post-cat a {
        font-size: 12px;
    }
}

.blog-wrapper .single-blog-post .post-content .post-cat a:hover {
    background-color: var(--header);
}

.blog-wrapper .single-blog-post .post-content ul {
    margin-bottom: 0;
    list-style-type: disc;
    margin-top: 30px;
}

.blog-wrapper .single-blog-post .post-content ul ol {
    margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-content ul ul {
    margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-content ul li {
    line-height: 1.5;
    margin-top: 10px;
    list-style-type: disc;
    color: var(--text);
    position: relative;
    font-size: 18px;
    padding-left: 30px;
}

.blog-wrapper .single-blog-post .post-content ul li::before {
    position: absolute;
    left: 0;
    top: 0;
    font-family: "Font Awesome 5 Pro";
    content: "\f00c";
    color: var(--theme-color);
}

.blog-wrapper .single-blog-post .post-content ol {
    margin-bottom: 0;
    list-style-type: decimal;
}

.blog-wrapper .single-blog-post .post-content ol ul {
    margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-content ol ol {
    margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-content ol li {
    line-height: 1.5;
    margin-top: 10px;
    list-style-type: decimal;
}

.blog-wrapper .single-blog-post .post-content p {
    margin-top: 15px;
}

.blog-wrapper .single-blog-post .post-content .post-meta {
    margin-bottom: 10px;
}

.blog-wrapper .single-blog-post .post-content .post-meta span {
    color: var(--text);
    font-weight: 400;
    font-size: 15px;
    line-height: 1;
    display: inline-block;
    margin-right: 25px;
}

@media (max-width: 767px) {
    .blog-wrapper .single-blog-post .post-content .post-meta span {
        font-size: 15px;
    }
}

.blog-wrapper .single-blog-post .post-content .post-meta span i {
    margin-right: 5px;
    color: var(--theme-color);
    font-weight: 700;
}

.blog-wrapper .single-blog-post .post-content h3 {
    font-size: 30px;
}

.blog-wrapper .single-blog-post .post-content h3 a:hover {
    color: var(--theme-color);
}

.blog-wrapper .single-blog-post .post-content .author-info {
    overflow: hidden;
}

.blog-wrapper .single-blog-post .post-content .author-info .author-img {
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 50%;
    background-color: #f2f2f2;
    margin-right: 15px;
    float: left;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

@media (max-width: 767px) {
    .blog-wrapper .single-blog-post .post-content .author-info .author-img {
        margin-right: 5px;
    }
}

.blog-wrapper .single-blog-post .post-content .author-info h5 {
    display: inline-block;
    line-height: 1;
    font-size: 16px;
    margin-top: 9px;
}

.blog-wrapper .single-blog-post .post-content .author-info h5 a:hover {
    color: var(--theme-color);
}

@media (max-width: 767px) {
    .blog-wrapper .single-blog-post .post-content .author-info h5 {
        font-size: 14px;
    }
}

.blog-wrapper .single-blog-post .post-content .post-link a {
    font-weight: 700;
}

.blog-wrapper .single-blog-post .post-content .post-link a:hover {
    color: var(--theme-color);
}

@media (max-width: 767px) {
    .blog-wrapper .single-blog-post .post-content .post-link a {
        font-size: 14px;
    }
}

.blog-wrapper .single-blog-post .post-content .post-link a i {
    margin-right: 5px;
}

@media (max-width: 767px) {
    .blog-wrapper .single-blog-post .post-content .post-link a i {
        margin-right: 3px;
    }
}

@media (min-width: 991px) {
    .news-area .main-sidebar {
        margin-left: 20px;
    }
}

@media (max-width: 991px) {
    .news-area .main-sidebar {
        margin-top: 40px;
    }
}

.news-area .main-sidebar .single-sidebar-widget {
    box-sizing: border-box;
    padding: 30px;
    margin-bottom: 40px;
    background-color: var(--bg);
}

.news-area .main-sidebar .single-sidebar-widget ul {
    padding-left: 0;
}

.news-area .main-sidebar .single-sidebar-widget ul>li {
    margin-bottom: 10px;
    font-family: "Unbounded", sans-serif;
}

.news-area .main-sidebar .single-sidebar-widget ul>li a {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
}

.news-area .main-sidebar .single-sidebar-widget ul>li a:hover {
    color: var(--theme-color);
}

.news-area .main-sidebar .single-sidebar-widget ul ul {
    padding-left: 20px;
}

.news-area .main-sidebar .single-sidebar-widget ul ul li {
    margin-top: 5px;
}

.news-area .main-sidebar .single-sidebar-widget:last-child {
    margin-bottom: 0;
}

.news-area .main-sidebar .single-sidebar-widget .wid-title {
    margin-bottom: 25px;
    padding-left: 45px;
    position: relative;
}

.news-area .main-sidebar .single-sidebar-widget .wid-title::before {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    height: 4px;
    width: 18px;
    border-radius: 5px;
    position: absolute;
    background-color: var(--theme-color);
}

.news-area .main-sidebar .single-sidebar-widget .wid-title::after {
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    height: 4px;
    width: 4px;
    border-radius: 50%;
    position: absolute;
    background-color: var(--theme-color);
}

.news-area .main-sidebar .single-sidebar-widget .wid-title h3 {
    font-size: 16px;
    font-weight: 600;
}

.news-area .main-sidebar .single-sidebar-widget .social-link a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--white);
    font-size: 14px;
    margin-right: 5px;
    margin-bottom: 5px;
}

.news-area .main-sidebar .single-sidebar-widget .social-link a:hover {
    background-color: var(--theme-color);
    color: var(--white);
}

.search_widget form {
    width: 100%;
    position: relative;
}

.search_widget form input {
    background-color: var(--white);
    font-size: 15px;
    padding: 20px;
    width: 100%;
    border: none;
    text-transform: capitalize;
    color: var(--header);
}

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

.search_widget form button:hover {
    background-color: var(--header);
}

.popular-posts .single-post-item,
.popular_posts .single-post-item {
    overflow: hidden;
}

.popular-posts .single-post-item:not(:last-child),
.popular_posts .single-post-item:not(:last-child) {
    margin-bottom: 35px;
}

.popular-posts .single-post-item .thumb,
.popular_posts .single-post-item .thumb {
    height: 95px;
    width: 95px;
    background-color: #f2f2f2;
    float: left;
    overflow: hidden;
    margin-right: 20px;
}

.popular-posts .single-post-item .post-content,
.popular_posts .single-post-item .post-content {
    overflow: hidden;
}

.popular-posts .single-post-item .post-content h5,
.popular_posts .single-post-item .post-content h5 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0;
    text-transform: capitalize;
    line-height: 125%;
}

.popular-posts .single-post-item .post-content h5 a:hover,
.popular_posts .single-post-item .post-content h5 a:hover {
    color: var(--theme-color);
}

.popular-posts .single-post-item .post-content .post-date,
.popular_posts .single-post-item .post-content .post-date {
    margin-top: 10px;
    color: var(--text);
    font-weight: 400;
    font-size: 15px;
    text-transform: capitalize;
}

.popular-posts .single-post-item .post-content .post-date i,
.popular_posts .single-post-item .post-content .post-date i {
    margin-right: 7px;
}

.widget_categories ul li {
    display: block;
}

.widget_categories ul li:last-child a {
    margin-bottom: 0;
}

.widget_categories ul li a {
    position: relative;
    background: var(--white);
    padding: 17px 20px;
    line-height: 1;
    font-size: 14px;
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
    transition: all 0.4s ease-in-out;
}

.widget_categories ul li a:hover {
    color: var(--theme-color);
}

.widget_categories ul li a i {
    margin-right: 10px;
}

.widget_categories ul li a span {
    position: absolute;
    width: 60px;
    line-height: 55px;
    height: 100%;
    content: "";
    background-color: var(--theme-color);
    right: 0;
    top: 0;
    text-align: center;
    color: var(--white);
}

.tagcloud a {
    display: inline-block;
    padding: 12px 22px;
    line-height: 1;
    font-weight: 500;
    font-size: 14px;
    background: var(--white);
    margin-right: 8px;
    text-transform: capitalize;
    margin-bottom: 10px;
    font-family: "Unbounded", sans-serif;
}

.tagcloud a:last-child {
    margin-right: 0;
}

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

.widget_categories ul li {
    display: block;
    margin-bottom: 10px;
}

p.sticky-label {
    position: absolute;
    right: 0;
    background: var(--theme-color);
    color: var(--white);
    padding: 10px 40px;
    z-index: -1;
    top: 0;
    font-weight: 700;
}

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

.page-nav-wrap ul li .page-numbers {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: #f6f6f6;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
    margin: 0 2px;
}

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

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

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

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

.social-share a {
    margin-left: 10px;
    transition: all 0.4s ease-in-out;
}

.social-share a:hover {
    color: var(--theme-color);
}

.tag-share-wrap {
    padding-bottom: 50px;
}

.tag-share-wrap h4 {
    margin-bottom: 25px;
}

@media (max-width: 767px) {
    .tag-share-wrap h4 {
        margin-bottom: 10px;
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .tag-share-wrap .tagcloud {
        margin-bottom: 20px;
    }
}

.comments-section-wrap {
    overflow: hidden;
}

.comments-heading h3,
.related-post-wrap h3,
.comment-form-wrap h3 {
    font-size: 26px;
}

@media (max-width: 767px) {
    .comments-heading h3,
    .related-post-wrap h3,
    .comment-form-wrap h3 {
        font-size: 20px;
    }
}

.comments-item-list .single-comment-item {
    margin-top: 30px;
}

.comments-item-list .single-comment-item ul {
    margin-bottom: 15px;
}

.comments-item-list .single-comment-item p,
.comments-item-list .single-comment-item span {
    font-size: 16px;
}

.comments-item-list .single-comment-item .author-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    float: left;
    overflow: hidden;
    margin-right: 30px;
}

@media (max-width: 991px) {
    .comments-item-list .single-comment-item .author-img {
        width: 80px;
        height: 80px;
        margin-right: 20px;
    }
}

@media (max-width: 767px) {
    .comments-item-list .single-comment-item .author-img {
        width: 70px;
        height: 70px;
        margin-right: 15px;
    }
}

@media (max-width: 585px) {
    .comments-item-list .single-comment-item .author-img {
        float: none;
        margin-bottom: 20px;
    }
}

.comments-item-list .single-comment-item .author-info-comment {
    overflow: auto;
    padding-bottom: 25px;
    border-bottom: 1px solid #e2e2e2;
}

.comments-item-list .single-comment-item .author-info-comment .info {
    position: relative;
}

.comments-item-list .single-comment-item .author-info-comment .info .theme-btn {
    padding: 10px 18px;
    font-size: 14px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    color: var(--text);
    border: 1px solid #ebebeb;
    background: transparent;
    border-radius: 0;
    transition: all 0.4s ease-in-out;
    box-shadow: inherit;
}

@media (max-width: 767px) {
    .comments-item-list .single-comment-item .author-info-comment .info .theme-btn {
        font-size: 12px;
    }
}

.comments-item-list .single-comment-item .author-info-comment .info .theme-btn i {
    margin-right: 10px;
    margin-left: 0px !important;
    transition: all 0.4s ease-in-out;
    width: initial;
    height: initial;
    line-height: initial;
}

.comments-item-list .single-comment-item .author-info-comment .info .theme-btn.minimal-btn::before,
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn.minimal-btn::after {
    background-color: initial;
}

.comments-item-list .single-comment-item .author-info-comment .info .theme-btn:hover {
    background-color: var(--theme-color);
    color: var(--white);
}

.comments-item-list .single-comment-item .author-info-comment .info .theme-btn:hover a {
    color: var(--white) !important;
}

.comments-item-list .single-comment-item .author-info-comment .info .theme-btn:hover i {
    transform: translate(0);
    width: initial;
    height: initial;
    line-height: initial;
}

.comments-item-list .single-comment-item .author-info-comment .info h5 {
    margin-bottom: 5px;
    font-weight: 600;
}

@media (max-width: 767px) {
    .comments-item-list .single-comment-item .author-info-comment .info h5 {
        font-size: 16px;
    }
}

.comments-item-list .single-comment-item .author-info-comment span {
    color: var(--theme-color);
    font-weight: 500;
}

.comments-item-list .single-comment-item .author-info-comment .theme-btn {
    padding: 7px 18px;
    font-size: 14px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

@media (max-width: 767px) {
    .comments-item-list .single-comment-item .author-info-comment .theme-btn {
        font-size: 12px;
    }
}

.comments-item-list .single-comment-item .author-info-comment .theme-btn i {
    margin-right: 5px;
}

.comments-item-list .single-comment-item .author-info-comment .theme-btn:hover a {
    color: var(--white);
}

.comments-item-list .single-comment-item .author-info-comment .comment-text {
    margin-top: 15px;
}

.comment-form {
    background-color: var(--white);
    width: 100%;
    margin-top: 30px;
}

@media (max-width: 767px) {
    .comment-form {
        padding: 30px;
    }
}

@media (max-width: 585px) {
    .comment-form {
        padding: 30px 15px;
    }
}

.comment-form label {
    margin-bottom: 4px;
}

.comment-form input,
.comment-form textarea {
    margin-bottom: 20px;
    outline: none;
    padding: 20px 30px;
    line-height: 1;
    font-size: 16px;
    width: 100%;
    border: none;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--text);
    background-color: var(--bg);
}

@media (max-width: 585px) {
    .comment-form input,
    .comment-form textarea {
        padding: 15px;
    }
}

.comment-form textarea {
    height: 200px;
    line-height: 1.3;
    border: none;
}

@media (max-width: 767px) {
    .comment-form textarea {
        height: 120px;
    }
}

.comment-form .theme-btn {
    display: inline-block;
    line-height: 1.2;
    padding: 24px 60px;
    transition: all 0.3s ease-in-out;
    margin-bottom: 0;
    margin-top: 20px;
}

@media (max-width: 767px) {
    .comment-form .theme-btn {
        padding: 20px 40px;
    }
}

@media (max-width: 585px) {
    .comment-form .theme-btn {
        padding: 15px 40px;
        font-size: 14px;
    }
}

.comment-form .theme-btn i {
    margin-right: 10px;
    width: initial;
    height: initial;
    line-height: initial;
    background-color: transparent;
    color: var(--white);
    margin-left: 0;
    margin-right: 10px;
}

.comment-form .theme-btn:hover i {
    transform: translate(0);
}

.comment ul {
    list-style-type: disc;
}

.comment ul ol {
    margin-bottom: 0;
}

.comment ul li {
    line-height: 1.5;
    margin-top: 10px;
    list-style-type: disc;
}

.comment ol ul {
    margin-bottom: 0;
}

.comment ol ol {
    margin-bottom: 0;
}

.comment ol li {
    line-height: 1.5;
    margin-top: 10px;
}

.site_info_widget .single-contact-info {
    overflow: auto;
    margin-bottom: 20px;
}

.site_info_widget .single-contact-info span {
    display: block;
    color: var(--theme-color);
}

.site_info_widget .single-contact-info .icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: var(--white);
    background-color: var(--theme-color);
    float: left;
    text-align: center;
    overflow: hidden;
    font-size: 16px;
    margin-right: 20px;
}

.site_info_widget .single-contact-info:nth-child(2n) .icon {
    background-color: var(--theme-color);
}

.site_info_widget .single-contact-info:nth-child(3n) .icon {
    background-color: var(--theme-color);
}

.site_info_widget .social-link {
    margin-top: 35px;
}

.site_info_widget .social-link a {
    margin-right: 8px !important;
}

.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1.5em;
}

.contact-wrapper .contact-image {
    position: relative;
}

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

.contact-wrapper .contact-image .shadow-shape {
    position: absolute;
    left: 0;
    bottom: 0;
}

.contact-wrapper .contact-content {
    margin-left: 40px;
}

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

.contact-wrapper .contact-content .nav {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.contact-wrapper .contact-content .nav .nav-item .nav-link {
    padding: 15px 30px;
    font-size: 14px;
    font-weight: bold;
    background: #0f3564;
    border-radius: 20px;
    line-height: 1;
    color: var(--white);
}

.contact-wrapper .contact-content .nav .nav-item .nav-link.active {
    background-color: var(--theme-color);
}

.contact-wrapper .contact-content .contact-box {
    margin-top: 40px;
}

.contact-wrapper .contact-content .contact-box .form-clt input {
    width: 100%;
    outline: none;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.05);
    width: 100%;
    border: 1px solid rgb(223, 227, 231);
    padding: 22px 30px;
    border-radius: 30px;
    line-height: 1;
    color: var(--text);
}

.contact-wrapper .contact-content .contact-box .form-clt .form .single-select {
    background: transparent;
    border: none;
    text-align: center;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.05);
    width: 100%;
    border: 1px solid rgb(223, 227, 231);
    padding: 24px 30px;
    color: var(--text);
    position: relative;
    line-height: 1;
    border-radius: 30px;
    height: initial;
}

.contact-wrapper .contact-content .contact-box .form-clt .form .single-select span {
    text-transform: capitalize;
    color: var(--text);
    font-weight: 500;
}

.contact-wrapper .contact-content .contact-box .form-clt .form .single-select .list {
    width: 100%;
    transition: all 0.4s ease-in-out;
}

.contact-wrapper .contact-content .contact-box .form-clt .form .single-select .list li {
    color: var(--header);
}

.contact-wrapper .contact-content .contact-box .form-clt .form .single-select::after {
    border-bottom: 2px solid var(--text);
    border-right: 2px solid var(--text);
    height: 8px;
    margin-top: -6px;
    width: 8px;
    right: 30px;
}

.contact-wrapper .contact-content .contact-box .form-clt .quriar-price-ranage .get-insurance-five__form__progres {
    position: relative;
    margin: 26px 0 11px;
}

.contact-wrapper .contact-content .contact-box .form-clt .quriar-price-ranage .progress__title {
    font-size: 16px;
    font-weight: 400;
    color: var(--header);
    padding-bottom: 20px;
    font-family: "DM Sans", sans-serif;
}

.contact-wrapper .contact-content .contact-box .form-clt .quriar-price-ranage .get-insurance-five__form__progress {
    position: relative;
}

.contact-wrapper .contact-content .contact-box .form-clt .quriar-price-ranage .get-insurance__progress-range .irs-single,
.contact-wrapper .contact-content .contact-box .form-clt .quriar-price-ranage .get-insurance__progress-range .irs-from,
.contact-wrapper .contact-content .contact-box .form-clt .quriar-price-ranage .get-insurance__progress-range .irs-to {
    display: none;
}

.contact-wrapper .contact-content .contact-box .form-clt .quriar-price-ranage .get-insurance__progress-range .irs--flat {
    height: 12px;
}

.contact-wrapper .contact-content .contact-box .form-clt .quriar-price-ranage .get-insurance__progress-range .irs--flat .irs-handle,
.contact-wrapper .contact-content .contact-box .form-clt .quriar-price-ranage .get-insurance__progress-range .irs--flat .irs-line,
.contact-wrapper .contact-content .contact-box .form-clt .quriar-price-ranage .get-insurance__progress-range .irs--flat .irs-bar {
    top: 0;
}

.contact-wrapper .contact-content .contact-box .form-clt .quriar-price-ranage .get-insurance__progress-range .irs--flat .irs-line {
    height: 12px;
    border-radius: 6px;
    background-color: rgb(255, 255, 255);
}

.contact-wrapper .contact-content .contact-box .form-clt .quriar-price-ranage .get-insurance__progress-range .irs--flat .irs-bar {
    height: 12px;
    border-radius: 6px;
    background-image: linear-gradient(90deg, var(--theme-color) 0%, var(--theme-color) 100%);
}

.contact-wrapper .contact-content .contact-box .form-clt .quriar-price-ranage .get-insurance__progress-range .irs--flat .irs-handle {
    height: 20px;
    width: 20px;
    background-color: var(--theme-color);
    border-radius: 50%;
    top: -5px;
}

.contact-wrapper .contact-content .contact-box .form-clt .quriar-price-ranage .get-insurance__progress-range .irs--flat .irs-handle i:first-child {
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background-color: var(--white);
    top: 50%;
    transform: translate(-50%, -50%);
}

.contact-wrapper .contact-content .contact-box .form-clt .quriar-price-ranage .get-insurance__progress {
    margin-bottom: 33px;
}

.contact-wrapper .contact-content .contact-box .form-clt .quriar-price-ranage .get-insurance__balance-box {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--header);
}

.contact-wrapper .contact-content .contact-box .theme-btn {
    padding: 25px 44px;
}

.contact-wrapper .contact-content2 {
    background-color: var(--white);
}

@media (max-width: 767px) {
    .contact-wrapper-2 .contact-left-item .section-title {
        text-align: left;
    }
}

.contact-wrapper-2 .contact-left-item .contact-item .contect-icon-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-wrapper-2 .contact-left-item .contact-item .contect-icon-item .contact-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background-color: var(--theme-color);
    color: var(--white);
    font-size: 32px;
}

.contact-wrapper-2 .contact-left-item .contact-item .contect-icon-item .contect-content span {
    font-size: 18px;
    font-weight: 700;
    color: var(--header);
    font-family: "Unbounded", sans-serif;
    display: inline-block;
    margin-bottom: 5px;
}

.contact-wrapper-2 .contact-left-item .contact-item .contect-icon-item .contect-content h6 {
    font-weight: 400;
    color: #555;
    font-size: 13px;
}

.contact-wrapper-2 .contact-left-item .contact-item .contect-icon-item .contect-content h6 a {
    color: #555;
}

.contact-wrapper-2 .contact-content {
    padding: 34px;
    background-color: var(--theme-color);
    margin-left: 50px;
}

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

.contact-wrapper-2 .contact-content h3 {
    margin-bottom: 30px;
    color: var(--white);
}

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

.contact-wrapper-2 .contact-content .contact-form-items .form-clt input,
.contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea {
    width: 100%;
    border: none;
    outline: none;
    background: var(--white);
    color: #555;
    border: 1px solid #D1D1D1;
    padding: 12px 20px;
    font-weight: 400;
    font-size: 15px;
    text-transform: capitalize;
}

@media (max-width: 767px) {
    .contact-wrapper-2 .contact-content .contact-form-items .form-clt input,
    .contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea {
        padding: 14px 20px;
    }
}

@media (max-width: 575px) {
    .contact-wrapper-2 .contact-content .contact-form-items .form-clt input,
    .contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea {
        padding: 12px 18px;
    }
}

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

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

.contact-wrapper-2 .contact-content .theme-btn {
    border-radius: 0;
    background: var(--white);
    color: var(--header);
}

.contact-wrapper-2 .contact-content .theme-btn:hover {
    color: var(--white);
}

.footer-newsletter-wrapper {
    display: flex;
    align-items: center;
    gap: 170px;
    padding: 270px 0 0;
}

@media (max-width: 1899px) {
    .footer-newsletter-wrapper {
        padding-top: 80px;
    }
}

@media (max-width: 1399px) {
    .footer-newsletter-wrapper {
        gap: 80px;
    }
}

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

.footer-newsletter-wrapper .footer-logo {
    width: 220px;
    height: 220px;
    line-height: 220px;
    text-align: center;
    border-radius: 50%;
    background: var(--color-gradient-1);
    display: inline-block;
    flex-basis: 24.3%;
}

@media (max-width: 991px) {
    .footer-newsletter-wrapper .footer-logo {
        flex-basis: initial;
    }
}

@media (max-width: 767px) {
    .footer-newsletter-wrapper .footer-logo {
        width: 180px;
        height: 180px;
        line-height: 180px;
    }
    .footer-newsletter-wrapper .footer-logo img {
        width: 120px;
    }
}

.footer-newsletter-wrapper .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
}

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

.footer-newsletter-wrapper .content .line-img {
    position: absolute;
    top: 0;
    left: -40px;
}

@media (max-width: 1199px) {
    .footer-newsletter-wrapper .content .line-img {
        display: none;
    }
}

.footer-newsletter-wrapper .content h3 {
    font-size: 24px;
    font-weight: 500;
    color: var(--white);
}

.footer-newsletter-wrapper .content .footer-input {
    max-width: 460px;
    width: 100%;
    position: relative;
}

@media (max-width: 1199px) {
    .footer-newsletter-wrapper .content .footer-input {
        max-width: initial;
    }
}

.footer-newsletter-wrapper .content .footer-input input {
    outline: none;
    width: 100%;
    border: none;
    background-color: rgb(223, 153, 58, 1);
    padding: 20px 30px;
    border-radius: 30px;
    line-height: 1;
}

.footer-newsletter-wrapper .content .footer-input input::placeholder {
    color: var(--white);
}

.footer-newsletter-wrapper .content .footer-input .newsletter-btn {
    border-radius: 27px;
    background: #c93939;
    padding: 16px 35px;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    position: absolute;
    right: 6px;
    top: 6px;
    text-align: center;
    bottom: 6px;
}

.footer-newsletter-wrapper.style-2 {
    padding-top: 65px;
}

.footer-newsletter-wrapper.style-2 .social-icon {
    display: flex;
    align-items: center;
    grid-gap: 10px;
}

.footer-newsletter-wrapper.style-2 .social-icon a {
    color: #fff;
    display: inline-block;
    padding: 30px 20px;
}

@media (max-width: 1199px) {
    .footer-newsletter-wrapper.style-2 .social-icon a {
        padding: 0;
        width: 40px;
        height: 40px;
        line-height: 40px;
        border-radius: 50%;
        background-color: var(--white);
        color: var(--header);
        text-align: center;
    }
}

.footer-newsletter-wrapper.style-2 .social-icon a:hover {
    background: var(--color-gradient-1);
}

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

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

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

.footer-widget-wrapper .footer-single-widget .widget-head h3 {
    font-size: 24px;
    color: var(--white);
    font-weight: 500;
}

.footer-widget-wrapper .footer-single-widget .schedule-list li {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 30px;
    color: #97a2b7;
}

.footer-widget-wrapper .footer-single-widget .schedule-list li .time-text {
    flex-basis: 50%;
}

.footer-widget-wrapper .footer-single-widget .schedule-list li .day-text {
    flex-basis: 30%;
}

.footer-widget-wrapper .footer-single-widget .schedule-list li:not(:last-child) {
    margin-bottom: 25px;
}

.footer-widget-wrapper .footer-single-widget .list-area {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-widget-wrapper .footer-single-widget .list-area ul li {
    font-size: 18px;
}

@media (max-width: 470px) {
    .footer-widget-wrapper .footer-single-widget .list-area ul li {
        font-size: 16px;
    }
}

.footer-widget-wrapper .footer-single-widget .list-area ul li:not(:last-child) {
    margin-bottom: 20px;
}

.footer-widget-wrapper .footer-single-widget .list-area ul li a {
    color: #97a2b7;
}

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

.footer-widget-wrapper .footer-single-widget .footer-gallery .gallery-wrap .gallery-item,
#gallerySection .gallery-wrap .gallery-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-widget-wrapper .footer-single-widget .footer-gallery .gallery-wrap .gallery-item:not(:last-child) {
    margin-bottom: 10px;
}

.footer-widget-wrapper .footer-single-widget .footer-gallery .gallery-wrap .gallery-item .thumb {
    position: relative;
    width: 170px;
}

#gallerySection .gallery-wrap .gallery-item .thumb {
    position: relative;
}

.footer-widget-wrapper .footer-single-widget .footer-gallery .gallery-wrap .gallery-item .thumb img,
#gallerySection .gallery-item .thumb {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.footer-widget-wrapper .footer-single-widget .footer-gallery .gallery-wrap .gallery-item .thumb .icon,
#gallerySection .gallery-item .thumb .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    text-align: center;
    transition: 0.3s;
    opacity: 0;
    width: 100%;
    height: 100%;
}

.footer-widget-wrapper .footer-single-widget .footer-gallery .gallery-wrap .gallery-item .thumb .icon::after,
#gallerySection .gallery-wrap .gallery-item .thumb .icon::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-gradient-1);
    transition: 0.4s;
    opacity: 0;
    width: 90px;
    height: 60px;
    border-radius: 15px;
}

#gallerySection .gallery-wrap .gallery-item .thumb .icon::after {
    width: 90%;
    height: 80%;
}

.footer-widget-wrapper .footer-single-widget .footer-gallery .gallery-wrap .gallery-item .thumb .icon i,
#gallerySection .gallery-wrap .gallery-item .thumb .icon i {
    color: var(--white);
    font-size: 22px;
    z-index: 99;
    position: relative;
    margin-top: 30px;
}

#gallerySection .gallery-wrap .gallery-item .thumb .icon i {
    font-size: 70px;
    margin-top: 42%;
}

.footer-widget-wrapper .footer-single-widget .footer-gallery .gallery-wrap .gallery-item .thumb:hover .icon,
#gallerySection .gallery-wrap .gallery-item .thumb:hover .icon {
    opacity: 1;
}

.footer-widget-wrapper .footer-single-widget .footer-gallery .gallery-wrap .gallery-item .thumb:hover .icon::after,
#gallerySection .gallery-item .thumb:hover .icon::after {
    opacity: 0.851;
}

.footer-bottom-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

@media (max-width: 1600px) {
    .footer-bottom-wrapper {
        background: var(--color-gradient-1);
        padding-left: 30px;
    }
}

@media (max-width: 1199px) {
    .footer-bottom-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        text-align: center;
        padding: 20px 0;
        padding-left: 0;
    }
}

.footer-bottom-wrapper .logo-shape {
    position: absolute;
    top: 0;
    left: -120px;
}

@media (max-width: 1600px) {
    .footer-bottom-wrapper .logo-shape {
        display: none;
    }
}

.footer-bottom-wrapper .logo-shape img {
    height: 100%;
}

.footer-bottom-wrapper .footer-logo {
    position: relative;
    z-index: 9;
}

.footer-bottom-wrapper .social-icon {
    display: flex;
    align-items: center;
    grid-gap: 10px;
}

.footer-bottom-wrapper .social-icon a {
    color: #fff;
    display: inline-block;
    padding: 30px 20px;
}

.footer-bottom-wrapper .social-icon a:hover {
    background: var(--color-gradient-1);
}

.footer-bottom-wrapper .footer-bottom-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--color-gradient-1);
    padding: 30px;
    width: 100%;
}

@media (max-width: 1600px) {
    .footer-bottom-wrapper .footer-bottom-right {
        padding: 20px;
        flex-wrap: wrap;
        gap: 20px;
    }
}

.footer-bottom-wrapper .footer-bottom-right p {
    font-family: "Unbounded", sans-serif;
    color: var(--white);
    position: relative;
    z-index: 99;
}

@media (max-width: 1199px) {
    .footer-bottom-wrapper .footer-bottom-right p {
        padding-left: 0;
    }
}

.footer-bottom-wrapper .footer-bottom-right .footer-menu {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 99;
}

@media (max-width: 575px) {
    .footer-bottom-wrapper .footer-bottom-right .footer-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.footer-bottom-wrapper .footer-bottom-right .footer-menu li {
    font-size: 12px;
    font-family: "Unbounded", sans-serif;
    color: #fff;
}

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

.footer-bottom-wrapper .footer-bottom-right .footer-menu li a:hover {
    background-size: 100% 1px;
    color: var(--white);
}

.footer-bottom-wrapper.footer-bottom-21 {
    margin-top: 53px;
}

@media (max-width: 1199px) {
    .footer-bottom-wrapper.footer-bottom-21 {
        margin-top: 0;
    }
}

.footer-bottom-wrapper.footer-bottom-21 .shape-footer {
    position: absolute;
    left: -120px;
    top: -58px;
    bottom: 0;
}

.footer-bottom-wrapper.footer-bottom-21 .shape-footer img {
    height: 100%;
}

.footer-bottom-wrapper.footer-bottom-21 .shape-footer {
    position: absolute;
    left: -120px;
    top: -58px;
    bottom: 0;
    /* width: 500px; */
}

@media (max-width: 1199px) {
    .footer-bottom-wrapper.footer-bottom-21 .shape-footer {
        display: none;
    }
}

.footer-bottom-wrapper.footer-bottom-21 .footer-logo {
    margin-top: -50px;
}

@media (max-width: 1199px) {
    .footer-bottom-wrapper.footer-bottom-21 .footer-logo {
        margin-top: 0;
    }
}

.footer-bottom-wrapper.footer-bottom-21 .footer-bottom-right {
    padding: 18px 30px;
    font-size: 12px;
}

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

@media (max-width: 1899px) {
    .footer-section {
        background-image: none !important;
        background-color: #0f6fa0;
    }
}

.footer-section .bg-shape {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.footer-section .bg-shape img {
    width: 100%;
    height: 100%;
}

.footer-section-3 {
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    margin-top: -150px;
}

@media (max-width: 991px) {
    .footer-section-3 {
        margin-top: 0;
        background-color: #0f3564;
        background-image: none !important;
    }
    .footer-section-3 .footer-newsletter-wrapper {
        padding-top: 80px;
    }
}

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

#MenuDetail li {
    font-size: 14px;
    margin-bottom: 8px;
}

#gallerySection .thumb img {
    width: 100%;
}

.abouContent p {
    margin-bottom: 10px;
}

.abouContent ul {
    list-style: circle;
    margin-left: 20px;
}

.abouContent ul li {
    line-height: normal;
    margin-bottom: 10px;
}

.abouContent ul li b {
    color: #000;
}

#homePlan .pricing-header img {
    border: 1px solid #ccc;
    border-radius: 25px 25px 0 0;
}

#homePlan .pricing-header {
    display: block;
}

#homePlan .pricing-header .content {
    text-align: center;
    padding: 20px;
}

#homePlan .pricing-header .content p {
    color: #fff;
    line-height: normal;
    margin-top: 10px;
}

#homePlan .pricing-box-items {
    background: #fff;
    border: 2px dashed #0f3564;
    border-radius: 20px;
}

#homePlan .pricing-box-items .pricing-list ul li {
    display: block;
    text-align: right;
}

#homePlan .pricing-box-items .pricing-list ul li span,
#homePlan .pricing-box-items .pricing-list ul li i {
    float: left;
}