:root {
    --tg-body-font-family: "Poppins", sans-serif;
    --tg-heading-font-family: "Poppins", sans-serif;
    --tg-icon-font-family: "Font Awesome 5 Free";
    --tg-body-font-size: 16px;
    --tg-body-line-height: 1.75;
    --tg-heading-line-height: 1.2;
    --tg-body-color: black;
    --tg-heading-color: #241571;
    --tg-theme-primary: #E46107;
    --tg-theme-secondary: #241571;
    --tg-color-sky-blue: #00B2FF;
    --tg-color-yellow-light: #FFB930;
    --tg-color-white-default: #ffffff;
    --tg-color-gray-1: #F5F6FC;
    --tg-color-gray-2: #F8F9FD;
    --tg-color-gray-3: #E9EBEE;
    --tg-color-gray-4: #E9EBF8;
    --tg-color-gray-6: #BCBCBC;
    --tg-color-gray-8: #EFF0F4;
    --tg-color-gray-9: #8C919C;
    --tg-color-gray-10: #EFF1FA;
    --tg-color-gray-11: #2c3038;
    --tg-color-gray-13: #F8F8F8;
    --tg-color-dark-2: #040426;
    --tg-color-gradient: linear-gradient(90deg, #C3D4FF 0%, #7093ff 100%);
    --tg-border-1: #555C6A;
    --tg-border-3: #737373;
    --tg-border-5: #DCDCDC;
    --tg-border-7: #D1D4E3;
    --tg-border-8: #EAEAEA;
    --tg-border-9: #DADADA;
    --tg-border-10: #DBDEED;
    --tg-border-11: #D2D7E1;
    --tg-border-13: #D3D5E2;
    --tg-border-14: #E0E1E9;
    --tg-fw-bold: 700;
    --tg-fw-semi-bold: 600;
    --tg-fw-medium: 500;
    --tg-fw-regular: 400;
   
}

body {
    font-family: var(--tg-body-font-family);
    font-size: var(--tg-body-font-size);
    font-weight: var(--tg-fw-regular);
    color: var(--tg-body-color);
    line-height: var(--tg-body-line-height)
}

img, .img {
    height: auto;
    max-width: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s
}

a, button {
    color: var(--tg-theme-primary);
    outline: none;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s
}

    a:focus, .btn:focus, .button:focus {
        text-decoration: none;
        outline: none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        -ms-box-shadow: none;
        -o-box-shadow: none;
        box-shadow: none
    }

    a:hover, button:hover {
        color: var(--tg-theme-primary);
        text-decoration: none
    }

    button:focus, input:focus, input:focus, textarea, textarea:focus {
        outline: 0
    }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--tg-heading-font-family);
    color: var(--tg-heading-color);
    margin-top: 0;
    font-weight: var(--tg-fw-bold);
    line-height: var(--tg-heading-line-height);
    text-transform: unset
}

    h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
        color: inherit
    }

h1 {
    font-size: 2.5rem
}

h2 {
    font-size: 2rem
}

h3 {
    font-size: 1.75rem
}

h4 {
    font-size: 1.5rem
}

h5 {
    font-size: 1.25rem
}

h6 {
    font-size: 1rem
}

.list-wrap {
    margin: 0;
    padding: 0
}

    .list-wrap li {
        list-style: none
    }

p {
    margin-bottom: 15px
}

label {
    color: var(--tg-heading-color);
    cursor: pointer;
    font-size: var(--tg-body-font-size);
    font-weight: var(--tg-fw-regular)
}

@media (max-width:991.98px) {
    .mb-md-30 {
        margin-bottom: 30px
    }
}

*::-moz-selection {
    background: var(--tg-theme-primary);
    color: var(--tg-color-white-default);
    text-shadow: none
}

::-moz-selection {
    background: var(--tg-theme-primary);
    color: var(--tg-color-white-default);
    text-shadow: none
}

::selection {
    background: var(--tg-theme-primary);
    color: var(--tg-color-white-default);
    text-shadow: none
}

input, textarea {
    color: var(--tg-body-color)
}

*::-moz-placeholder {
    color: var(--tg-body-color);
    font-size: var(--tg-body-font-size);
    opacity: 1
}

*::placeholder {
    color: var(--tg-body-color);
    font-size: var(--tg-body-font-size);
    opacity: 1
}

textarea, input {
    width: 100%;
    background: var(--tg-color-white-default);
    border: 1px solid var(--tg-border-7);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -o-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px;
    font-size: 15px;
    color: var(--tg-heading-color);
    padding: 11px 18px;
    height: 50px;
    display: block
}

    textarea::placeholder, input::placeholder {
        font-size: 15px;
        color: var(--tg-body-color)
    }

textarea {
    min-height: 98px;
    max-height: 98px
}

.fix {
    overflow: hidden
}

.clear {
    clear: both
}

.container {
    padding-left: 12px;
    padding-right: 12px
}

.p-relative {
    position: relative
}

.tg-button-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex
}

.tg-btn {
    user-select: none;
    -moz-user-select: none;
    background: #E46107 none repeat scroll 0 0;
    color: var(--tg-color-white-default);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    font-weight: var(--tg-fw-semi-bold);
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 0;
    padding: 18px 25px;
    text-align: center;
    touch-action: manipulation;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    vertical-align: middle;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    white-space: nowrap;
    overflow: hidden;
    border-radius: 100px;
    --arrow-hover-move-x: -110%;
    gap: 10px;
    z-index: 1;
    position: relative;
    border: none
}

    .tg-btn svg {
        transition: all 0.3s ease-out 0s
    }

        .tg-btn svg path {
            transition: transform 0.38s cubic-bezier(.37,.08,.02,.93),opacity 0.18s ease-out
        }

            .tg-btn svg path:nth-of-type(1) {
                transform: translateX(0);
                opacity: 1;
                transition-delay: 0.15s,0.15s
            }

            .tg-btn svg path:nth-of-type(2) {
                transform: translateX(calc(1 * var(--arrow-hover-move-x)));
                opacity: .5;
                transition-delay: 0s,0s
            }

    .tg-btn::before {
        content: "";
        position: absolute;
        -webkit-transition-duration: 800ms;
        transition-duration: 800ms;
        width: 200%;
        height: 200%;
        top: 110%;
        left: 50%;
        background: var(--tg-heading-color);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -o-border-radius: 50%;
        -ms-border-radius: 50%;
        border-radius: 50%;
        z-index: -1
    }

    .tg-btn:hover, .tg-btn:focus-visible {
        background: var(--tg-heading-color);
        color: var(--tg-color-white-default);
        border-color: var(--tg-heading-color)
    }

        .tg-btn:hover svg path:nth-of-type(1), .tg-btn:focus-visible svg path:nth-of-type(1) {
            transform: translateX(calc(-1 * var(--arrow-hover-move-x)));
            opacity: 0;
            transition-delay: 0s,0s
        }

        .tg-btn:hover svg path:nth-of-type(2), .tg-btn:focus-visible svg path:nth-of-type(2) {
            transform: translateX(0);
            opacity: 1;
            transition-delay: 0.15s,0.15s
        }

        .tg-btn:hover::before, .tg-btn:focus-visible::before {
            top: -40%
        }

    .tg-btn.white-btn {
        background: var(--tg-color-white-default);
        color: var(--tg-theme-secondary)
    }

        .tg-btn.white-btn svg path {
            stroke: var(--tg-theme-secondary)
        }

.tg-hover-btn::before {
    background: var(--tg-color-sky-blue)
}

.tg-btn-two {
    background: var(--tg-color-gray-1);
    color: var(--tg-body-color)
}

    .tg-btn-two svg {
        color: var(--tg-theme-primary)
    }

    .tg-btn-two::before {
        background: var(--tg-theme-primary)
    }

    .tg-btn-two:hover {
        color: var(--tg-color-white-default);
        background: var(--tg-color-gray-1)
    }

        .tg-btn-two:hover svg {
            color: var(--tg-color-white-default)
        }

.tg-btn-three {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px
}

.tg-btn-four {
    background: #fff0;
    border-radius: 8px;
    border: 1px solid var(--tg-color-white-default);
    padding: 17px 10px;
    --arrow-hover-move-x: 110%;
    --arrow-hover-move-y: 100%;
    gap: 22px
}

    .tg-btn-four svg path:nth-of-type(1) {
        transform: translateX(0) translateY(0)
    }

    .tg-btn-four svg path:nth-of-type(2) {
        transform: translateX(calc(-1 * var(--arrow-hover-move-x))) translateY(var(--arrow-hover-move-y))
    }

    .tg-btn-four:hover, .tg-btn-four:focus-visible {
        background: #7093ff;
        color: var(--tg-color-white-default);
        border-color: #7093ff
    }

        .tg-btn-four:hover svg path:nth-of-type(1), .tg-btn-four:focus-visible svg path:nth-of-type(1) {
            transform: translateX(var(--arrow-hover-move-x)) translateY(calc(-1 * var(--arrow-hover-move-y)))
        }

        .tg-btn-four:hover svg path:nth-of-type(2), .tg-btn-four:focus-visible svg path:nth-of-type(2) {
            transform: translateX(0) translateY(0)
        }

    .tg-btn-four::before {
        display: none
    }

.tg-btn-five {
    border-color: var(--tg-theme-primary);
    color: var(--tg-theme-primary)
}

.tg-btn-six {
    background: var(--tg-theme-primary);
    border: none;
    gap: 20px;
    padding: 18px 24px;
    border-radius: 8px
}

    .tg-btn-six::after {
        content: "";
        position: absolute;
        right: 33px;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 18px;
        background: var(--tg-color-white-default);
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s
    }

    .tg-btn-six::before {
        display: block
    }

.tg-btn-seven {
    -webkit-border-radius: 4px 12px;
    -moz-border-radius: 4px 12px;
    -o-border-radius: 4px 12px;
    -ms-border-radius: 4px 12px;
    border-radius: 4px 12px
}

.tg-btn-eight {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 8px;
    padding: 18px 20px
}

.tg-border-btn {
    border: 1px solid var(--tg-color-white-default);
    background: #fff0;
    color: var(--tg-color-white-default);
    padding: 17px 25px
}

    .tg-border-btn:hover {
        background: var(--tg-theme-secondary);
        color: var(--tg-color-white-default);
        border-color: var(--tg-theme-secondary)
    }

    .tg-border-btn::before {
        display: none
    }

.tg-border-btn-two {
    background: #fff0;
    border: 1px solid var(--tg-theme-primary);
    color: var(--tg-theme-primary)
}

    .tg-border-btn-two::after {
        background: var(--tg-theme-primary)
    }

    .tg-border-btn-two::before {
        display: none
    }

    .tg-border-btn-two:hover::after {
        background: var(--tg-color-white-default)
    }

.preloader {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 999;
    background-color: var(--tg-color-white-default);
    display: flex;
    align-items: center;
    justify-content: center
}

.preloader-inner {
    display: block;
    width: 45px;
    height: 45px
}

    .preloader-inner span {
        box-sizing: border-box;
        display: block;
        position: absolute;
        width: 37px;
        height: 37px;
        margin: 4px;
        border: 4px solid #fff0;
        border-radius: 50%;
        animation: preloader 1s cubic-bezier(.5,0,.5,1) infinite;
        border-color: var(--tg-theme-primary) #fff0 #fff0 #fff0
    }

        .preloader-inner span:nth-child(1) {
            animation-delay: -0.1s
        }

        .preloader-inner span:nth-child(2) {
            animation-delay: -0.2s
        }

        .preloader-inner span:nth-child(3) {
            animation-delay: -0.3s
        }

@-webkit-keyframes preloader {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes preloader {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.breadcrumb__area {
    position: relative;
    z-index: 1;
    padding: 44px 0
}

@media (max-width:991.98px) {
    .breadcrumb__area {
        padding: 90px 0
    }
}

.breadcrumb__area-two {
    padding: 80px 0 60px
}

@media (max-width:991.98px) {
    .breadcrumb__area-two {
        padding: 60px 0 60px
    }
}

@media (max-width:767.98px) {
    .breadcrumb__area-two {
        padding: 50px 0 60px
    }
}

.breadcrumb__bg {
    background-size: cover;
    background-position: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-blend-mode: luminosity;
    background-color: var(--tg-color-white-default)
}

    .breadcrumb__bg::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg,#241571 0%,rgb(1 2 46 / .5) 102.5%);
        z-index: -1
    }

.breadcrumb__content .title {
    margin-bottom: 12px;
    font-size: 40px;
    line-height: 1;
    color: var(--tg-color-white-default)
}

@media (max-width:1199.98px) {
    .breadcrumb__content .title {
        font-size: 36px
    }
}

@media (max-width:767.98px) {
    .breadcrumb__content .title {
        font-size: 34px
    }
}

.breadcrumb__content .breadcrumb {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    margin-bottom: 0;
    gap: 6px
}

    .breadcrumb__content .breadcrumb > * {
        font-size: 15px;
        color: var(--tg-theme-primary);
        font-weight: 500
    }

        .breadcrumb__content .breadcrumb > * a {
            color: #939AC6
        }

            .breadcrumb__content .breadcrumb > * a:hover {
                color: var(--tg-theme-primary)
            }

    .breadcrumb__content .breadcrumb .breadcrumb-separator {
        line-height: 1;
        font-size: 16px;
        font-weight: 700;
        color: #939AC6
    }

.breadcrumb__content-two {
    text-align: center
}

    .breadcrumb__content-two .title {
        color: var(--tg-heading-color);
        font-size: 48px;
        letter-spacing: -.02em;
        line-height: 1.2
    }

@media (max-width:1199.98px) {
    .breadcrumb__content-two .title {
        font-size: 40px
    }
}

@media (max-width:767.98px) {
    .breadcrumb__content-two .title {
        font-size: 36px
    }
}

@media (max-width:1199.98px) {
    .breadcrumb__content-two .title br {
        display: none
    }
}

.breadcrumb__content-two .breadcrumb {
    justify-content: center
}

.scroll__top {
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: -10%;
    right: 50px;
    font-size: 16px;
    border-radius: 50%;
    z-index: 99;
    color: var(--tg-color-white-default);
    text-align: center;
    cursor: pointer;
    background: var(--tg-theme-primary);
    transition: 1s ease;
    border: none
}

@media (max-width:1199.98px) {
    .scroll__top {
        right: 25px;
        bottom: 25px
    }
}

@media (max-width:991.98px) {
    .scroll__top {
        right: 30px
    }
}

@media (max-width:767.98px) {
    .scroll__top {
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 14px
    }
}

.scroll__top.open {
    bottom: 30px
}

@media (max-width:767.98px) {
    .scroll__top.open {
        bottom: 15px
    }
}

.scroll__top::after {
    position: absolute;
    z-index: -1;
    content: "";
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: radial-gradient(ellipse at center,rgb(0 0 0 / .25) 0%,#fff0 80%)
}

.scroll__top:hover {
    background: var(--tg-theme-secondary);
    border-color: var(--tg-theme-secondary);
    color: var(--tg-color-white-default)
}

.section__title {
    position: relative
}

    .section__title .sub-title {
        display: block;
        font-size: 15px;
        font-weight: 500;
        line-height: 1.4;
        color: var(--tg-theme-primary);
        margin-bottom: 12px;
        font-weight: 500
    }

    .section__title .title {
        font-size: 31px;
        line-height: 1.2;
        margin: 0 0;
        font-weight: 700
    }

@media (max-width:767.98px) {
    .section__title .title {
        font-size: 25px
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .section__title .title {
        font-size: 34px
    }
}

.section__title .title span {
    font-weight: 500
}

@media (max-width:991.98px) {
    .section__title .title br {
        display: none
    }
}

.section__title .title svg {
    color: var(--tg-theme-primary)
}

.section__title p {
    margin-bottom: 0;
    margin-top: 15px
}

@media (max-width:767.98px) {
    .section__title p br {
        display: none
    }
}

.section__title.white-title .sub-title {
    color: var(--tg-color-white-default)
}

.section__title.white-title .title {
    color: var(--tg-color-white-default)
}

.section__title.white-title p {
    color: #ACAACC
}

.section__title.white-title-two p {
    color: var(--tg-color-gray-4)
}

.section__title-semiBold .title {
    font-weight: 600
}

.section__title-two .title {
    font-size: 40px;
    margin-bottom: 0
}

@media (max-width:767.98px) {
    .section__title-two .title {
        font-size: 30px
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .section__title-two .title {
        font-size: 34px
    }
}

.section__content {
    margin-left: 115px
}

@media (max-width:1199.98px) {
    .section__content {
        margin-left: 60px
    }
}

@media (max-width:991.98px) {
    .section__content {
        margin-left: 0
    }
}

.section__content p {
    margin-bottom: 0
}

.section__content.white-content p {
    color: var(--tg-color-white-default)
}

@media (max-width:991.98px) {
    .section__title.mb-70, .section__title.mb-60 {
        margin-bottom: 40px
    }
}

.section__divider {
    width: 100%;
    height: 1px;
    background: #D9D9D9;
    display: block
}

.tgmobile__search {
    padding: 0 20px 25px 25px
}

    .tgmobile__search form {
        position: relative
    }

    .tgmobile__search input {
        display: block;
        width: 100%;
        border: none;
        padding: 10px 45px 10px 20px;
        font-size: 15px;
        height: 45px;
        background: var(--tg-color-gray-2);
        color: var(--tg-heading-color);
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -o-border-radius: 10px;
        -ms-border-radius: 10px;
        border-radius: 10px
    }

        .tgmobile__search input::placeholder {
            font-size: 15px;
            color: var(--tg-body-color)
        }

    .tgmobile__search button {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        border: none;
        padding: 0;
        right: 20px;
        line-height: 1;
        background: #fff0;
        color: var(--tg-heading-color)
    }

.tgmobile__menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    padding-right: 30px;
    max-width: 100%;
    height: 100%;
    z-index: 99;
    border-radius: 0;
    transition: all 0.3s cubic-bezier(.785,.135,.15,.86);
    -moz-transition: all 0.3s cubic-bezier(.785,.135,.15,.86);
    -webkit-transition: all 0.3s cubic-bezier(.785,.135,.15,.86);
    -ms-transition: all 0.3s cubic-bezier(.785,.135,.15,.86) e;
    -o-transition: all 0.3s cubic-bezier(.785,.135,.15,.86);
    -webkit-transform: translateX(101%);
    -moz-transform: translateX(101%);
    -ms-transform: translateX(101%);
    -o-transform: translateX(101%);
    transform: translateX(101%)
}

    .tgmobile__menu .navbar-collapse {
        display: block !important
    }

    .tgmobile__menu .nav-logo {
        position: relative;
        padding: 30px 25px;
        text-align: left
    }

        .tgmobile__menu .nav-logo img {
            height: 55px;
            width: auto
        }

    .tgmobile__menu .navigation {
        position: relative;
        display: block;
        width: 100%;
        float: none;
        margin: 0;
        padding: 0
    }

        .tgmobile__menu .navigation li {
            position: relative;
            display: block;
            border-top: 1px solid rgb(0 0 0 / .1)
        }

            .tgmobile__menu .navigation li.active > a {
                color: var(--tg-theme-primary)
            }

            .tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn {
                position: absolute;
                right: 20px;
                top: 6px;
                width: 32px;
                height: 32px;
                text-align: center;
                font-size: 16px;
                display: -webkit-box;
                display: -moz-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--tg-heading-color);
                background: var(--tg-color-gray-1);
                cursor: pointer;
                border-radius: 0;
                -webkit-transition: all 500ms ease;
                -o-transition: all 500ms ease;
                transition: all 500ms ease;
                z-index: 5;
                -webkit-border-radius: 5px;
                -moz-border-radius: 5px;
                -o-border-radius: 5px;
                -ms-border-radius: 5px;
                border-radius: 5px
            }

                .tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn::after {
                    content: "";
                    position: absolute;
                    right: -20px;
                    top: -6px;
                    width: 300px;
                    height: 46px
                }

                .tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn .plus-line {
                    position: absolute;
                    left: 50%;
                    top: 50%;
                    -webkit-transform: translate(-50%,-50%) rotate(0);
                    -ms-transform: translate(-50%,-50%) rotate(0);
                    transform: translate(-50%,-50%) rotate(0);
                    border-radius: 10px;
                    width: 12px;
                    height: 2px;
                    background-color: var(--tg-theme-secondary);
                    -webkit-transition: all 500ms ease;
                    -o-transition: all 500ms ease;
                    transition: all 500ms ease
                }

                    .tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn .plus-line::after {
                        content: "";
                        position: absolute;
                        left: 50%;
                        top: 50%;
                        -webkit-transform: translate(-50%,-50%) rotate(0);
                        -ms-transform: translate(-50%,-50%) rotate(0);
                        transform: translate(-50%,-50%) rotate(0);
                        border-radius: 10px;
                        width: 2px;
                        height: 12px;
                        background-color: var(--tg-theme-secondary);
                        -webkit-transition: all 500ms ease;
                        -o-transition: all 500ms ease;
                        transition: all 500ms ease
                    }

                .tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn.open {
                    background-color: var(--tg-theme-primary)
                }

                    .tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn.open .plus-line {
                        background-color: var(--tg-color-white-default)
                    }

                        .tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn.open .plus-line::after {
                            display: none
                        }

            .tgmobile__menu .navigation li > a {
                position: relative;
                display: block;
                padding: 10px 55px 10px 20px;
                font-size: 15px;
                font-weight: 600;
                color: var(--tg-heading-color);
                -webkit-transition: all 500ms ease;
                -o-transition: all 500ms ease;
                transition: all 500ms ease;
                border: none
            }

                .tgmobile__menu .navigation li > a::before {
                    content: "";
                    position: absolute;
                    left: 0;
                    top: 0;
                    height: 0;
                    -webkit-transition: all 500ms ease;
                    -o-transition: all 500ms ease;
                    transition: all 500ms ease;
                    width: 2px;
                    background: var(--tg-theme-primary);
                    pointer-events: none
                }

            .tgmobile__menu .navigation li ul li > a {
                margin-left: 20px
            }

            .tgmobile__menu .navigation li ul li ul li a {
                margin-left: 20px
            }

            .tgmobile__menu .navigation li ul li ul li ul li a {
                margin-left: 60px
            }

            .tgmobile__menu .navigation li > ul {
                display: none
            }

                .tgmobile__menu .navigation li > ul > li > ul {
                    display: none
                }

        .tgmobile__menu .navigation ul {
            padding: 0;
            margin: 0
        }

            .tgmobile__menu .navigation ul li a {
                display: block
            }

            .tgmobile__menu .navigation ul li ul li > a {
                font-size: 16px;
                margin-left: 20px
            }

        .tgmobile__menu .navigation:last-child {
            border-bottom: 1px solid rgb(0 0 0 / .1)
        }

        .tgmobile__menu .navigation > li > ul > li:first-child {
            border-top: 1px solid rgb(0 0 0 / .1)
        }

@media (max-width:991.98px) {
    .tgmobile__menu .navigation > li > ul > li:first-child {
        border: none
    }
}

.tgmobile__menu .navigation > li.active > a::before {
    height: 100%
}

.tgmobile__menu .close-btn {
    position: absolute;
    right: 15px;
    top: 28px;
    line-height: 30px;
    width: 35px;
    text-align: center;
    font-size: 14px;
    color: var(--tg-theme-primary);
    cursor: pointer;
    padding: 8px;
    z-index: 10;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease
}

    .tgmobile__menu .close-btn i[class^=flaticon-]:before {
        font-weight: var(--tg-fw-bold) !important
    }

.tgmobile__menu-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -webkit-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    opacity: 0;
    visibility: hidden;
    background: rgb(0 0 0 / .5)
}

.tgmobile__menu .social-links ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    position: relative;
    text-align: center;
    padding: 30px 20px 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap
}

    .tgmobile__menu .social-links ul li {
        position: relative;
        display: inline-block;
        margin: 0 6px 10px
    }

        .tgmobile__menu .social-links ul li a {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            position: relative;
            line-height: 32px;
            font-size: 16px;
            color: var(--tg-theme-secondary);
            -webkit-transition: all 500ms ease;
            -o-transition: all 500ms ease;
            transition: all 500ms ease;
            border: 1px solid #efefef;
            border-radius: 5px
        }

            .tgmobile__menu .social-links ul li a:hover {
                border-color: var(--tg-theme-primary);
                background: var(--tg-theme-primary);
                color: var(--tg-color-white-default)
            }

.tgmobile__menu .tgmenu__action {
    padding: 0 0;
    margin: 0 0
}

    .tgmobile__menu .tgmenu__action > ul {
        margin: 0 0;
        padding: 30px 20px 0;
        justify-content: center;
        gap: 0 15px
    }

        .tgmobile__menu .tgmenu__action > ul li {
            margin: 0 0
        }

        .tgmobile__menu .tgmenu__action > ul .header-btn {
            display: block
        }

.tgmobile__menu-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    background: var(--tg-color-white-default);
    padding: 0 0;
    z-index: 5;
    box-shadow: -9px 0 14px 0 rgb(0 0 0 / .06)
}

.tgmobile__menu-outer .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 40px;
    line-height: 50px;
    cursor: pointer;
    display: none;
    color: var(--tg-color-white-default);
    margin-right: 30px;
    top: 15px
}

.mobile-menu-visible {
    overflow: hidden
}

    .mobile-menu-visible .tgmobile__menu {
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
        transform: translateX(0%)
    }

    .mobile-menu-visible .tgmobile__menu-backdrop {
        opacity: 1;
        visibility: visible
    }

    .mobile-menu-visible .tgmobile__menu .close-btn {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg)
    }

.tgmenu__navbar-wrap ul li .tg-mega-menu-wrap-two {
    width: 560px !important;
    display: flex !important;
    align-items: flex-start !important;
    padding: 40px 0 !important
}

    .tgmenu__navbar-wrap ul li .tg-mega-menu-wrap-two > li {
        border-right: 1px solid #e5e5e5
    }

        .tgmenu__navbar-wrap ul li .tg-mega-menu-wrap-two > li:last-child {
            border: none
        }

@-webkit-keyframes hoverShine {
    100% {
        left: 125%
    }
}

@keyframes hoverShine {
    100% {
        left: 125%
    }
}

.alltuchtopdown {
    -webkit-animation: alltuchtopdown 2s ease-in-out 0s infinite alternate;
    animation: alltuchtopdown 2s ease-in-out 0s infinite alternate;
    animation-duration: 3s
}

@keyframes alltuchtopdown {
    0% {
        -webkit-transform: rotateX(0deg) translateY(0);
        -moz-transform: rotateX(0deg) translateY(0);
        -ms-transform: rotateX(0deg) translateY(0);
        -o-transform: rotateX(0deg) translateY(0);
        transform: rotateX(0deg) translateY(0)
    }

    50% {
        -webkit-transform: rotateX(0deg) translateY(-20px);
        -moz-transform: rotateX(0deg) translateY(-20px);
        -ms-transform: rotateX(0deg) translateY(-20px);
        -o-transform: rotateX(0deg) translateY(-20px);
        transform: rotateX(0deg) translateY(-20px)
    }

    100% {
        -webkit-transform: rotateX(0deg) translateY(0);
        -moz-transform: rotateX(0deg) translateY(0);
        -ms-transform: rotateX(0deg) translateY(0);
        -o-transform: rotateX(0deg) translateY(0);
        transform: rotateX(0deg) translateY(0)
    }
}

@-webkit-keyframes alltuchtopdown {
    0% {
        -webkit-transform: rotateX(0deg) translateY(0);
        -moz-transform: rotateX(0deg) translateY(0);
        -ms-transform: rotateX(0deg) translateY(0);
        -o-transform: rotateX(0deg) translateY(0);
        transform: rotateX(0deg) translateY(0)
    }

    50% {
        -webkit-transform: rotateX(0deg) translateY(-20px);
        -moz-transform: rotateX(0deg) translateY(-20px);
        -ms-transform: rotateX(0deg) translateY(-20px);
        -o-transform: rotateX(0deg) translateY(-20px);
        transform: rotateX(0deg) translateY(-20px)
    }

    100% {
        -webkit-transform: rotateX(0deg) translateY(0);
        -moz-transform: rotateX(0deg) translateY(0);
        -ms-transform: rotateX(0deg) translateY(0);
        -o-transform: rotateX(0deg) translateY(0);
        transform: rotateX(0deg) translateY(0)
    }
}

.img-custom-anim-left {
    animation: img-anim-left 1.3s forwards cubic-bezier(.645,.045,.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(.645,.045,.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-top {
    animation: img-anim-top 1.3s forwards cubic-bezier(.645,.045,.355,1);
    opacity: 0
}

@keyframes img-anim-top {
    0% {
        transform: translateY(-5%);
        clip-path: inset(0 0 100% 0);
        opacity: 0
    }

    100% {
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
        opacity: 1
    }
}

@keyframes fadeInUp2 {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.fadeInUp2 {
    -webkit-animation-name: fadeInUp2;
    animation-name: fadeInUp2;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

@keyframes fadeInUp2 {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.fadeInUp2 {
    -webkit-animation-name: fadeInUp2;
    animation-name: fadeInUp2;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

@keyframes fadeDown2 {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInLeft2 {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-50px);
        -ms-transform: translateX(-50px);
        transform: translateX(-50px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

.fadeInLeft2 {
    -webkit-animation-name: fadeInLeft2;
    animation-name: fadeInLeft2;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.search__popup {
    padding-top: 70px;
    padding-bottom: 100px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--tg-color-white-default);
    backdrop-filter: blur(10px);
    z-index: 99;
    -webkit-transform: translateY(calc(-100% - 80px));
    -moz-transform: translateY(calc(-100% - 80px));
    -ms-transform: translateY(calc(-100% - 80px));
    -o-transform: translateY(calc(-100% - 80px));
    transform: translateY(calc(-100% - 80px));
    -webkit-transition: transform 0.3s ease-in-out,opacity 0.3s ease-in-out;
    -moz-transition: transform 0.3s ease-in-out,opacity 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out,opacity 0.3s ease-in-out;
    transition-delay: 0.5s
}

    .search__popup.search-opened {
        -webkit-transform: translateY(0%);
        -moz-transform: translateY(0%);
        -ms-transform: translateY(0%);
        -o-transform: translateY(0%);
        transform: translateY(0%);
        transition-delay: 0s;
        z-index: 99999999
    }

        .search__popup.search-opened .search__input {
            -webkit-transform: translateY(0);
            -moz-transform: translateY(0);
            -ms-transform: translateY(0);
            -o-transform: translateY(0);
            transform: translateY(0);
            opacity: 1;
            transition-delay: 0.3s
        }

            .search__popup.search-opened .search__input::after {
                width: 100%;
                transition-delay: 0.5s
            }

.search__input {
    position: relative;
    height: 80px;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    transition-delay: 0.5s;
    opacity: 0
}

    .search__input::after {
        position: absolute;
        content: "";
        left: 0;
        bottom: 0;
        width: 0%;
        height: 1px;
        background-color: var(--tg-theme-primary);
        transition-delay: 0.3s;
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s
    }

    .search__input input {
        width: 100%;
        height: 100%;
        background-color: #fff0;
        border: 0;
        outline: 0;
        font-size: 24px;
        color: var(--tg-heading-color);
        border-bottom: 1px solid #fff0;
        padding: 0;
        padding-right: 30px
    }

        .search__input input::placeholder {
            font-size: 24px
        }

    .search__input button {
        position: absolute;
        top: 50%;
        right: 0;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        font-size: 18px;
        color: var(--tg-theme-primary);
        border: none;
        padding: 0 0;
        background: #fff0
    }

.search__close {
    position: absolute;
    top: 10%;
    right: 2%;
    z-index: 2
}

.search-close-btn {
    margin: 0;
    padding: 0;
    border: none;
    color: var(--tg-theme-primary);
    cursor: pointer;
    background: #fff0
}

.search-popup-overlay {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    transition-delay: 0.5s;
    opacity: 0;
    visibility: hidden;
    background: #000d25
}

    .search-popup-overlay.search-popup-overlay-open {
        opacity: .55;
        visibility: visible;
        transition-delay: 0s
    }

.search-input-field ~ .search-focus-border {
    position: absolute;
    bottom: 0;
    left: auto;
    right: 0;
    width: 0;
    height: 1px;
    background-color: var(--tg-theme-primary);
    transition: all 0.5s
}

.search-input-field:focus ~ .search-focus-border {
    width: 100%;
    left: 0;
    right: auto;
    transition: all 0.5s
}

.transparent-header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9;
    height: auto
}

@media (max-width:767.98px) {
    .transparent-header {
        top: 0
    }
}

.tg-header__top {
    background-color: var(--tg-theme-secondary);
    padding: 9px 0
}

@media (max-width:991.98px) {
    .tg-header__top {
        display: none
    }
}

.tg-header__top-info .list-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 25px
}

    .tg-header__top-info .list-wrap li {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        position: relative;
        align-items: center;
        gap: 7px;
        font-size: 14px;
        color: var(--tg-color-gray-1)
    }

        .tg-header__top-info .list-wrap li::before {
            content: "";
            position: absolute;
            right: -12px;
            top: 50%;
            transform: translateY(-50%);
            width: 2px;
            height: 12px;
            background: var(--tg-color-gray-1)
        }

        .tg-header__top-info .list-wrap li:last-child::before {
            display: none
        }

        .tg-header__top-info .list-wrap li a {
            color: var(--tg-color-gray-1)
        }

            .tg-header__top-info .list-wrap li a:hover {
                opacity: .8
            }

        .tg-header__top-info .list-wrap li i {
            font-size: 18px
        }

.tg-header__top-right > .list-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 25px;
    justify-content: flex-end
}

    .tg-header__top-right > .list-wrap > li {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        gap: 7px;
        font-size: 14px;
        color: var(--tg-color-gray-1);
        position: relative
    }

        .tg-header__top-right > .list-wrap > li::before {
            content: "";
            position: absolute;
            right: -12px;
            top: 50%;
            transform: translateY(-50%);
            width: 2px;
            height: 12px;
            background: var(--tg-color-gray-1)
        }

        .tg-header__top-right > .list-wrap > li:last-child::before {
            display: none
        }

        .tg-header__top-right > .list-wrap > li a {
            color: var(--tg-color-gray-1)
        }

            .tg-header__top-right > .list-wrap > li a:hover {
                opacity: .8
            }

        .tg-header__top-right > .list-wrap > li i {
            font-size: 18px
        }

        .tg-header__top-right > .list-wrap > li.log-in a {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--tg-color-gray-4);
            font-weight: 600
        }

.tg-header__top-social .list-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 12px
}

    .tg-header__top-social .list-wrap li a {
        font-size: 16px;
        color: var(--tg-color-gray-1);
        display: block
    }

        .tg-header__top-social .list-wrap li a svg {
            width: 16px;
            height: 16px
        }

@media (max-width:991.98px) {
    .tg-header__top-menu {
        display: none
    }
}

.tg-header__top-menu .list-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 20px
}

    .tg-header__top-menu .list-wrap li a {
        color: var(--tg-color-white-default);
        font-size: 12px;
        position: relative;
        font-weight: 600
    }

        .tg-header__top-menu .list-wrap li a::before {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 1px;
            background: var(--tg-color-white-default);
            -webkit-transform-origin: right top;
            -ms-transform-origin: right top;
            transform-origin: right top;
            -webkit-transform: scale(0,1);
            -ms-transform: scale(0,1);
            transform: scale(0,1);
            -webkit-transition: transform 0.4s cubic-bezier(1,0,0,1);
            transition: transform 0.4s cubic-bezier(.74,.72,.27,.24)
        }

        .tg-header__top-menu .list-wrap li a:hover::before {
            -webkit-transform-origin: left top;
            -ms-transform-origin: left top;
            transform-origin: left top;
            -webkit-transform: scale(1,1);
            -ms-transform: scale(1,1);
            transform: scale(1,1)
        }

.tg-header__area {
    position: relative
}

@media (max-width:991.98px) {
    .tg-header__area {
        padding: 18px 0
    }
}

@media (max-width:767.98px) {
    .tg-header__area {
        padding: 20px 0
    }
}

.tg-header__area .mobile-nav-toggler {
    position: relative;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
    color: var(--tg-theme-primary);
    display: none
}

@media (max-width:991.98px) {
    .tg-header__area .mobile-nav-toggler {
        display: block;
        margin-left: 25px
    }
}

.tg-header__area.sticky-menu {
    padding: 0 0
}

@media (max-width:991.98px) {
    .tg-header__area.sticky-menu {
        padding: 18px 0
    }
}

@media (max-width:767.98px) {
    .tg-header__area.sticky-menu {
        padding: 20px 0
    }
}

.tg-header__area-two .tgmenu__navbar-wrap ul {
    margin: 0 0 0 auto
}

@media (max-width:991.98px) {
    .tg-header__area-three {
        background: var(--tg-color-white-default)
    }
}

.tg-header__area-three .tgmenu__wrap {
    background: var(--tg-color-white-default);
    padding: 0 22px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -o-border-radius: 100px;
    -ms-border-radius: 100px;
    border-radius: 100px;
    margin-top: 50px;
    box-shadow: 0 4px 20px 0 rgb(0 0 0 / .05)
}

@media (max-width:1500px) {
    .tg-header__area-three .tgmenu__wrap {
        margin-top: 35px
    }
}

@media (max-width:1199.98px) {
    .tg-header__area-three .tgmenu__wrap {
        margin-top: 25px
    }
}

@media (max-width:991.98px) {
    .tg-header__area-three .tgmenu__wrap {
        margin-top: 0;
        padding: 0;
        background: #fff0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -o-border-radius: 0;
        -ms-border-radius: 0;
        border-radius: 0;
        box-shadow: none
    }
}

.tg-header__area-three .tgmenu__navbar-wrap ul {
    margin: 0 auto
}

    .tg-header__area-three .tgmenu__navbar-wrap ul li a {
        padding: 33px 16px
    }

.tg-header__area-three.sticky-menu .tgmenu__wrap {
    margin-top: 0;
    padding: 0 0;
    box-shadow: none
}

@media (max-width:1199.98px) {
    .tg-header__area-three .header-contact {
        display: none
    }
}

.tg-header__area-four {
    border-bottom: 1px solid #4275FF
}

@media (max-width:991.98px) {
    .tg-header__area-four {
        padding: 0 0
    }
}

.tg-header__area-four .tgmenu__nav {
    align-items: normal
}

.tg-header__area-four .logo a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    height: 100%;
    border-right: 1px solid #3269FF;
    padding: 20px 50px
}

@media (max-width:1199.98px) {
    .tg-header__area-four .logo a {
        padding: 20px 20px
    }
}

.tg-header__area-four .tgmenu__navbar-wrap > ul {
    margin: 0 auto
}

    .tg-header__area-four .tgmenu__navbar-wrap > ul > li > a {
        color: var(--tg-color-white-default)
    }

        .tg-header__area-four .tgmenu__navbar-wrap > ul > li > a::after {
            color: var(--tg-color-white-default)
        }

        .tg-header__area-four .tgmenu__navbar-wrap > ul > li > a:hover {
            color: var(--tg-color-white-default)
        }

            .tg-header__area-four .tgmenu__navbar-wrap > ul > li > a:hover::after {
                color: var(--tg-color-white-default)
            }

    .tg-header__area-four .tgmenu__navbar-wrap > ul > li.active > a {
        color: var(--tg-color-white-default)
    }

        .tg-header__area-four .tgmenu__navbar-wrap > ul > li.active > a::after {
            color: var(--tg-color-white-default)
        }

        .tg-header__area-four .tgmenu__navbar-wrap > ul > li.active > a:hover {
            color: var(--tg-color-white-default)
        }

            .tg-header__area-four .tgmenu__navbar-wrap > ul > li.active > a:hover::after {
                color: var(--tg-color-white-default)
            }

    .tg-header__area-four .tgmenu__navbar-wrap > ul > li:hover > a {
        color: var(--tg-color-white-default)
    }

        .tg-header__area-four .tgmenu__navbar-wrap > ul > li:hover > a::after {
            color: var(--tg-color-white-default)
        }

@media (max-width:991.98px) {
    .tg-header__area-four.sticky-menu {
        padding: 0 0
    }
}

.tg-header__area-four.sticky-menu .logo {
    display: none
}

    .tg-header__area-four.sticky-menu .logo.d-none {
        display: block !important
    }

.tg-header__area-four.sticky-menu .tgmenu__navbar-wrap ul > li > a {
    color: var(--tg-heading-color)
}

    .tg-header__area-four.sticky-menu .tgmenu__navbar-wrap ul > li > a::after {
        color: var(--tg-heading-color)
    }

    .tg-header__area-four.sticky-menu .tgmenu__navbar-wrap ul > li > a:hover {
        color: var(--tg-theme-primary)
    }

        .tg-header__area-four.sticky-menu .tgmenu__navbar-wrap ul > li > a:hover::after {
            color: var(--tg-theme-primary)
        }

.tg-header__area-four.sticky-menu .tgmenu__navbar-wrap ul > li.active > a {
    color: var(--tg-theme-primary)
}

    .tg-header__area-four.sticky-menu .tgmenu__navbar-wrap ul > li.active > a::after {
        color: var(--tg-theme-primary)
    }

.tg-header__area-four.sticky-menu .tgmenu__action-four > ul li .header-contact-info {
    color: var(--tg-heading-color)
}

    .tg-header__area-four.sticky-menu .tgmenu__action-four > ul li .header-contact-info:hover {
        color: var(--tg-theme-primary)
    }

.tg-header__area-four.sticky-menu .tgmenu__action-four > ul li.header-btn-three .tg-btn {
    background: var(--tg-theme-primary);
    color: var(--tg-color-white-default)
}

.tg-header__area-four.sticky-menu .mobile-nav-toggler {
    color: var(--tg-theme-primary)
}

@media (max-width:991.98px) {
    .tg-header__area-four .mobile-nav-toggler {
        color: var(--tg-color-white-default);
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        padding: 0 20px;
        margin-left: 0;
        border-left: 1px solid #3269FF
    }
}

.tg-header__area-five {
    border-bottom: 1px solid rgb(255 255 255 / .15)
}

    .tg-header__area-five .tgmenu__navbar-wrap > ul {
        margin: 0 auto
    }

        .tg-header__area-five .tgmenu__navbar-wrap > ul > li a {
            color: var(--tg-color-white-default)
        }

            .tg-header__area-five .tgmenu__navbar-wrap > ul > li a::after {
                color: var(--tg-color-white-default)
            }

            .tg-header__area-five .tgmenu__navbar-wrap > ul > li a:hover::after {
                color: var(--tg-theme-primary)
            }

        .tg-header__area-five .tgmenu__navbar-wrap > ul > li.active > a, .tg-header__area-five .tgmenu__navbar-wrap > ul > li:hover > a {
            color: var(--tg-theme-primary)
        }

            .tg-header__area-five .tgmenu__navbar-wrap > ul > li.active > a::after, .tg-header__area-five .tgmenu__navbar-wrap > ul > li:hover > a::after {
                color: var(--tg-theme-primary)
            }

    .tg-header__area-five.sticky-menu .logo {
        display: none
    }

        .tg-header__area-five.sticky-menu .logo.d-none {
            display: block !important
        }

    .tg-header__area-five.sticky-menu .tgmenu__navbar-wrap > ul > li a {
        color: var(--tg-heading-color)
    }

        .tg-header__area-five.sticky-menu .tgmenu__navbar-wrap > ul > li a::after {
            color: var(--tg-heading-color)
        }

        .tg-header__area-five.sticky-menu .tgmenu__navbar-wrap > ul > li a:hover {
            color: var(--tg-theme-primary)
        }

            .tg-header__area-five.sticky-menu .tgmenu__navbar-wrap > ul > li a:hover::after {
                color: var(--tg-theme-primary)
            }

    .tg-header__area-five.sticky-menu .tgmenu__navbar-wrap > ul > li.active > a, .tg-header__area-five.sticky-menu .tgmenu__navbar-wrap > ul > li:hover > a {
        color: var(--tg-theme-primary)
    }

        .tg-header__area-five.sticky-menu .tgmenu__navbar-wrap > ul > li.active > a::after, .tg-header__area-five.sticky-menu .tgmenu__navbar-wrap > ul > li:hover > a::after {
            color: var(--tg-theme-primary)
        }

    .tg-header__area-five.sticky-menu .tgmenu__action-five ul li.header-contact .header-contact-info {
        color: var(--tg-heading-color)
    }

    .tg-header__area-five.sticky-menu .tgmenu__action-five ul li.offCanvas-menu .menu-tigger span {
        background: var(--tg-theme-primary)
    }

.tg-header__area-seven .tgmenu__navbar-wrap ul {
    margin: 0 0 0 170px
}

@media (max-width:1199.98px) {
    .tg-header__area-seven .tgmenu__navbar-wrap ul {
        margin: 0 0 0 30px
    }
}

.tg-header__area-eight {
    padding: 5px 0
}

@media (max-width:991.98px) {
    .tg-header__area-eight {
        padding: 20px 0
    }
}

.tg-header__area-eight .tgmenu__navbar-wrap > ul {
    margin: 0 65px 0 auto
}

.tg-header__area-nine .tgmenu__navbar-wrap ul {
    margin: 0 0 0 65px
}

@media (max-width:991.98px) {
    .tg-header__area-ten {
        padding: 20px 0;
        background: var(--tg-color-white-default)
    }
}

.tg-header__area-ten .tgmenu__navbar-wrap ul {
    margin: 0 0 0 0
}

    .tg-header__area-ten .tgmenu__navbar-wrap ul li a {
        padding: 30px 16px
    }

.tg-header__area-ten .tgmenu__wrap {
    border: 1px solid var(--tg-color-gray-4);
    border-top: none;
    background: var(--tg-color-white-default);
    -webkit-border-radius: 0 0 15px 15px;
    -moz-border-radius: 0 0 15px 15px;
    -o-border-radius: 0 0 15px 15px;
    -ms-border-radius: 0 0 15px 15px;
    border-radius: 0 0 15px 15px;
    padding-left: 15px
}

@media (max-width:991.98px) {
    .tg-header__area-ten .tgmenu__wrap {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -o-border-radius: 0;
        -ms-border-radius: 0;
        border-radius: 0;
        padding: 0;
        border: none
    }
}

.tg-header__area-ten .tgmenu__nav {
    align-items: normal
}

@media (max-width:991.98px) {
    .tg-header__area-ten .logo.d-none {
        display: block !important
    }
}

.tg-header__area-ten.sticky-menu .tgmenu__wrap {
    border: none
}

.tg-header__area-eleven {
    border-bottom: 1px solid #DEE0EB;
    background: var(--tg-color-gray-13)
}

@media (max-width:991.98px) {
    .tg-header__area-eleven {
        padding: 18px 20px
    }
}

@media (max-width:767.98px) {
    .tg-header__area-eleven {
        padding: 20px 15px
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .tg-header__area-eleven {
        padding: 20px 20px
    }
}

@media (max-width:991.98px) {
    .tg-header__area-eleven.sticky-menu {
        padding: 18px 20px
    }
}

@media (max-width:767.98px) {
    .tg-header__area-eleven.sticky-menu {
        padding: 20px 15px
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .tg-header__area-eleven.sticky-menu {
        padding: 20px 20px
    }
}

.tg-header__area-eleven .tgmenu__nav {
    align-items: normal
}

@media (max-width:991.98px) {
    .tg-header__area-eleven .tgmenu__nav {
        align-items: center
    }
}

.tg-header__area-eleven .logo {
    margin-left: 30px
}

@media (max-width:1199.98px) {
    .tg-header__area-eleven .logo {
        margin-left: 25px
    }
}

@media (max-width:991.98px) {
    .tg-header__area-eleven .logo {
        margin-left: 0
    }
}

.tg-header__area-eleven .logo a {
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center
}

.tg-header__area-eleven .tgmenu__navbar-wrap ul {
    margin: 0 0 0 75px
}

@media (max-width:1199.98px) {
    .tg-header__area-eleven .tgmenu__navbar-wrap ul {
        margin: 0 0 0 30px
    }
}

.tg-header__area-twelve {
    margin-top: 38px
}

@media (max-width:1500px) {
    .tg-header__area-twelve {
        margin-top: 25px
    }
}

@media (max-width:991.98px) {
    .tg-header__area-twelve {
        background: var(--tg-color-white-default);
        margin-top: 0
    }
}

.tg-header__area-twelve .tgmenu__wrap {
    background: var(--tg-color-white-default);
    padding: 10px 20px
}

.tg-header__area-twelve .tgmenu__navbar-wrap ul {
    margin: 0 0 0 25px
}

.tg-header__area-twelve .tgmenu__action-ten {
    margin-right: 0
}

.tg-header__area-twelve.sticky-menu .tgmenu__wrap {
    padding: 0 20px
}

@media (max-width:1199.98px) {
    .tg-header__area-twelve .header-search {
        display: none
    }
}

.tg-header__logo-area {
    background: var(--tg-theme-primary)
}

@media (max-width:991.98px) {
    .tg-header__logo-area {
        display: none
    }
}

.tg-header__logo-area-inner {
    background: var(--tg-color-white-default);
    border: 1px solid var(--tg-color-gray-4);
    border-top: none
}

    .tg-header__logo-area-inner .logo a {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        height: 100%;
        align-items: center;
        padding: 10px 27px;
        border-right: 1px solid var(--tg-color-gray-4)
    }

@media (max-width:1199.98px) {
    .tg-header__logo-area-inner .logo a {
        padding: 10px 20px;
        border-right: 1px solid var(--tg-color-gray-4)
    }
}

.tg-header__logo-area-inner .header__btn {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    height: 100%;
    align-items: center;
    padding: 15px 30px
}

@media (max-width:1199.98px) {
    .tg-header__logo-area-inner .header__btn {
        padding: 15px 20px;
        border-left: 1px solid var(--tg-color-gray-4);
        margin-left: auto
    }
}

.tg-header__info-wrap {
    flex-grow: 1
}

@media (max-width:1199.98px) {
    .tg-header__info-wrap {
        display: none !important
    }
}

.tg-header__info-item {
    width: 33.33%;
    flex: 0 0 auto;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 20px 23px;
    border-right: 1px solid var(--tg-color-gray-4)
}

    .tg-header__info-item .icon {
        width: 40px;
        height: 40px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        background: var(--tg-color-gray-4);
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        -o-border-radius: 6px;
        -ms-border-radius: 6px;
        border-radius: 6px;
        justify-content: center;
        color: var(--tg-theme-primary);
        font-size: 22px
    }

    .tg-header__info-item .content span {
        display: block;
        line-height: 1;
        font-size: 13px;
        font-weight: 500;
        color: var(--tg-border-1);
        margin-bottom: 6px
    }

    .tg-header__info-item .content a {
        display: block;
        font-size: 15px;
        color: var(--tg-theme-secondary);
        font-weight: 500;
        line-height: 1
    }

        .tg-header__info-item .content a:hover {
            color: var(--tg-theme-primary)
        }

    .tg-header__info-item .content p {
        font-size: 15px;
        color: var(--tg-theme-secondary);
        font-weight: 500;
        line-height: 1;
        margin-bottom: 0
    }

.tgmenu__nav {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start
}

@media (max-width:991.98px) {
    .tgmenu__nav {
        justify-content: space-between
    }
}

.tgmenu__nav-left {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 35px
}

.tgmenu__nav-left-contact {
    position: relative
}

@media (max-width:1199.98px) {
    .tgmenu__nav-left-contact {
        display: none
    }
}

.tgmenu__nav-left-contact::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    background: #CACACA;
    height: 30px;
    width: 1px
}

.tgmenu__nav-left-contact span {
    display: block;
    line-height: 1;
    font-size: 13px;
    color: var(--tg-border-1);
    margin-bottom: 7px
}

.tgmenu__nav-left-contact a {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: var(--tg-body-color);
    display: block
}

    .tgmenu__nav-left-contact a::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 1px;
        background: var(--tg-theme-primary);
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s
    }

    .tgmenu__nav-left-contact a:hover {
        color: var(--tg-theme-primary)
    }

        .tgmenu__nav-left-contact a:hover::before {
            width: 100%
        }

.tgmenu__navbar-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-grow: 1
}

    .tgmenu__navbar-wrap ul {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        padding: 0;
        flex-direction: row;
        flex-wrap: wrap;
        margin: 0 0 0 25px
    }

@media (max-width:1199.98px) {
    .tgmenu__navbar-wrap ul {
        margin: 0 0 0 50px
    }
}

.tgmenu__navbar-wrap ul li {
    display: block;
    position: relative;
    list-style: none
}

    .tgmenu__navbar-wrap ul li a {
        font-size: 15px;
        font-weight: var(--tg-fw-medium);
        color: var(--tg-heading-color);
        padding: 12px 8px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        line-height: 1.4;
        position: relative;
        z-index: 1
    }

    .tgmenu__navbar-wrap ul li .sub-menu {
        position: absolute;
        left: 0;
        top: 100%;
        min-width: 230px;
        border: 1px solid #f5f5f5;
        background: var(--tg-color-white-default);
        margin: 0;
        -webkit-transform: scale(1,0);
        -moz-transform: scale(1,0);
        -ms-transform: scale(1,0);
        -o-transform: scale(1,0);
        transform: scale(1,0);
        transform-origin: 0 0;
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
        -webkit-box-shadow: 0 30px 70px 0 rgb(137 139 142 / .15);
        -moz-box-shadow: 0 30px 70px 0 rgb(137 139 142 / .15);
        box-shadow: 0 30px 70px 0 rgb(137 139 142 / .15);
        border-radius: 0;
        padding: 18px 0;
        display: block;
        visibility: hidden;
        opacity: 0;
        z-index: 9;
        border-radius: 0 0 10px 10px
    }

        .tgmenu__navbar-wrap ul li .sub-menu.sub-menu-right {
            right: 0;
            left: auto
        }

        .tgmenu__navbar-wrap ul li .sub-menu .sub-menu {
            right: auto;
            left: 100%;
            top: 0
        }

        .tgmenu__navbar-wrap ul li .sub-menu li {
            margin-left: 0;
            text-align: left;
            display: block
        }

            .tgmenu__navbar-wrap ul li .sub-menu li a {
                padding: 8px 15px 8px 25px;
                display: block;
                color: var(--tg-heading-color);
                font-size: 15px
            }

            .tgmenu__navbar-wrap ul li .sub-menu li:hover > a, .tgmenu__navbar-wrap ul li .sub-menu li.active > a {
                color: var(--tg-theme-primary)
            }

    .tgmenu__navbar-wrap ul li:hover > .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: scale(1)
    }

.tgmenu__navbar-wrap > ul > li.active a, .tgmenu__navbar-wrap > ul > li:hover a {
    color: var(--tg-theme-primary)
}

.tgmenu__main-menu li.menu-item-has-children .dropdown-btn {
    display: none
}

.tgmenu__main-menu li.menu-item-has-children > a::after {
    content: "\f078";
    display: block;
    font-family: var(--tg-icon-font-family);
    font-size: 12px;
    font-weight: var(--tg-fw-bold);
    margin-left: 6px;
    color: var(--tg-border-1);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s
}

.tgmenu__main-menu li.menu-item-has-children > a:hover::after {
    color: var(--tg-theme-primary)
}

.tgmenu__main-menu li.menu-item-has-children:hover > a::after, .tgmenu__main-menu li.menu-item-has-children.active > a::after {
    color: var(--tg-theme-primary)
}

@media (max-width:991.98px) {
    .tgmenu__action {
        margin-left: auto
    }
}

@media (max-width:767.98px) {
    .tgmenu__action {
        display: none
    }
}

.tgmenu__action > ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center
}

    .tgmenu__action > ul li {
        position: relative;
        margin-left: 25px;
        flex: 0 0 auto
    }

@media (max-width:991.98px) {
    .tgmenu__action > ul li {
        margin-left: 20px
    }
}

.tgmenu__action > ul li:first-child {
    margin-left: 0
}

.tgmenu__action > ul li.header-search a {
    font-size: 24px;
    color: var(--tg-border-1);
    line-height: 0
}

    .tgmenu__action > ul li.header-search a:hover {
        color: var(--tg-theme-primary)
    }

.tgmenu__action > ul li.header-btn .tg-btn {
    padding: 13px 15px
}

    .tgmenu__action > ul li.header-btn .tg-btn svg path {
        opacity: 1 !important;
        transform: translateX(0)
    }

.tgmenu__action > ul li.header-btn-three {
    border-left: 1px solid #3269FF;
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    padding: 0 40px
}

@media (max-width:1500px) {
    .tgmenu__action > ul li.header-btn-three {
        padding: 0 25px
    }
}

@media (max-width:1199.98px) {
    .tgmenu__action > ul li.header-btn-three {
        padding: 0 20px
    }
}

@media (max-width:767.98px) {
    .tgmenu__action > ul li.header-btn-three {
        display: none
    }
}

.tgmenu__action > ul li.header-btn-three .tg-btn {
    background: var(--tg-color-white-default);
    color: var(--tg-theme-secondary);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    padding: 18px 28px
}

    .tgmenu__action > ul li.header-btn-three .tg-btn:hover {
        color: var(--tg-color-white-default)
    }

@media (max-width:1199.98px) {
    .tgmenu__action > ul li.offCanvas-menu {
        display: none
    }
}

.tgmenu__action > ul li .header-contact-info {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--tg-body-color);
    line-height: 1
}

    .tgmenu__action > ul li .header-contact-info i {
        font-size: 20px
    }

    .tgmenu__action > ul li .header-contact-info:hover {
        color: var(--tg-theme-primary)
    }

.tgmenu__action-two {
    margin-left: 40px
}

@media (max-width:991.98px) {
    .tgmenu__action-two {
        margin-left: auto
    }
}

.tgmenu__action-two .list-wrap .header-btn-two .tg-btn {
    padding: 13px 22px
}

.tgmenu__action-four {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center
}

    .tgmenu__action-four > ul {
        height: 100%
    }

        .tgmenu__action-four > ul li {
            margin-left: 40px
        }

@media (max-width:1500px) {
    .tgmenu__action-four > ul li {
        margin-left: 25px
    }
}

@media (max-width:1199.98px) {
    .tgmenu__action-four > ul li {
        margin-left: 0
    }
}

@media (max-width:1199.98px) {
    .tgmenu__action-four > ul li.header-contact {
        display: none
    }
}

.tgmenu__action-four > ul li.header-contact .header-contact-info {
    color: var(--tg-color-white-default)
}

    .tgmenu__action-four > ul li.header-contact .header-contact-info:hover {
        color: var(--tg-theme-secondary)
    }

.tgmenu__action-five ul li.header-contact .header-contact-info {
    color: var(--tg-color-white-default)
}

    .tgmenu__action-five ul li.header-contact .header-contact-info:hover {
        opacity: .8
    }

.tgmenu__action-five ul li.offCanvas-menu .menu-tigger span {
    background: var(--tg-color-white-default)
}

.tgmenu__action-six ul li {
    margin-left: 15px
}

    .tgmenu__action-six ul li.header-btn .tg-btn {
        border: 1px solid var(--tg-border-13);
        padding: 15px 22px;
        color: var(--tg-heading-color);
        font-size: 14px
    }

        .tgmenu__action-six ul li.header-btn .tg-btn svg {
            color: var(--tg-theme-primary)
        }

        .tgmenu__action-six ul li.header-btn .tg-btn:hover {
            border-color: var(--tg-theme-primary);
            color: var(--tg-color-white-default);
            background: var(--tg-theme-primary)
        }

            .tgmenu__action-six ul li.header-btn .tg-btn:hover svg {
                color: var(--tg-color-white-default)
            }

    .tgmenu__action-six ul li.offCanvas-menu {
        width: auto;
        height: auto
    }

        .tgmenu__action-six ul li.offCanvas-menu .menu-tigger {
            width: 46px;
            height: 46px;
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--tg-border-13);
            -webkit-border-radius: 6px;
            -moz-border-radius: 6px;
            -o-border-radius: 6px;
            -ms-border-radius: 6px;
            border-radius: 6px;
            color: var(--tg-body-color)
        }

            .tgmenu__action-six ul li.offCanvas-menu .menu-tigger:hover {
                background: var(--tg-theme-primary);
                border-color: var(--tg-theme-primary);
                color: var(--tg-color-white-default)
            }

.tgmenu__action-seven ul li.header-btn .tg-btn {
    border-radius: 4px 12px;
    padding: 16px 19px
}

.tgmenu__action-eight ul li {
    margin-left: 15px
}

    .tgmenu__action-eight ul li .header-search-form {
        position: relative;
        width: 250px
    }

@media (max-width:1199.98px) {
    .tgmenu__action-eight ul li .header-search-form {
        display: none
    }
}

.tgmenu__action-eight ul li .header-search-form input {
    width: 100%;
    background: #F5F5F5;
    border: none;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -o-border-radius: 100px;
    -ms-border-radius: 100px;
    border-radius: 100px;
    font-size: 14px;
    color: var(--tg-heading-color);
    padding: 10px 40px 10px 20px;
    height: 45px
}

    .tgmenu__action-eight ul li .header-search-form input::placeholder {
        color: var(--tg-body-color);
        font-size: 14px
    }

.tgmenu__action-eight ul li .header-search-form button {
    position: absolute;
    border: none;
    background: #fff0;
    padding: 0;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--tg-body-color)
}

    .tgmenu__action-eight ul li .header-search-form button:hover {
        color: var(--tg-theme-primary)
    }

.tgmenu__action-eight ul li .header-search-form-two input {
    background: var(--tg-color-white-default);
    border: 1px solid #C6C6C6
}

.tgmenu__action-eight ul li.header-btn .tg-btn {
    padding: 15px 25px
}

.tgmenu__action-nine > .list-wrap {
    align-items: normal;
    height: 100%
}

    .tgmenu__action-nine > .list-wrap li {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        height: 100%
    }

        .tgmenu__action-nine > .list-wrap li.offCanvas-menu {
            padding: 0 24px;
            width: auto;
            border-left: 1px solid var(--tg-color-gray-4)
        }

            .tgmenu__action-nine > .list-wrap li.offCanvas-menu .menu-tigger {
                justify-content: center
            }

.tgmenu__action-ten {
    margin-right: 26px
}

@media (max-width:991.98px) {
    .tgmenu__action-ten {
        margin-right: 0
    }
}

.tgmenu__action-ten > ul {
    height: 100%
}

    .tgmenu__action-ten > ul li {
        margin-left: 10px
    }

        .tgmenu__action-ten > ul li.header-search {
            padding-right: 20px
        }

            .tgmenu__action-ten > ul li.header-search::before {
                content: "";
                position: absolute;
                right: 0;
                top: 50%;
                transform: translateY(-50%);
                width: 2px;
                height: 24px;
                background: #DEE0EB
            }

@media (max-width:1199.98px) {
    .tgmenu__action-ten > ul li.header-contact {
        display: none
    }
}

.tgmenu__action-ten > ul li.header-contact .header-contact-info {
    font-size: 16px;
    gap: 5px
}

.tgmenu__action-ten > ul li.header-btn .tg-btn {
    padding: 16px 14px;
    gap: 14px
}

.sticky-menu {
    position: fixed;
    left: 0;
    margin: auto;
    top: 0;
    width: 100%;
    z-index: 99;
    background: var(--tg-color-white-default);
    -webkit-animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
    -webkit-box-shadow: 0 10px 15px rgb(25 25 25 / .1);
    box-shadow: 0 10px 15px rgb(25 25 25 / .1);
    border-radius: 0
}

#header-fixed-height.active-height {
    display: block;
    height: 90px
}

.tg-mega-menu-wrap {
    position: absolute;
    left: 50%;
    top: 100%;
    width: 1225px;
    border-radius: 20px;
    padding: 30px 40px 10px;
    background: var(--tg-color-white-default);
    margin: 0 0;
    transform: scale(1,0) translateX(-50%);
    transform-origin: 0 0;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    margin: 0 auto;
    opacity: 0;
    visibility: hidden;
    z-index: 9;
    box-shadow: 0 4px 10px 0 rgb(0 0 0 / .05)
}

@media (max-width:1500px) {
    .tg-mega-menu-wrap {
        width: 1150px;
        padding: 25px 25px 10px
    }
}

@media (max-width:1199.98px) {
    .tg-mega-menu-wrap {
        width: 960px;
        padding: 25px 20px 0
    }
}

@media (max-width:1500px) {
    .tg-mega-menu-wrap .row {
    }
}

.tgmobile__menu .tg-mega-menu-wrap {
    display: none;
    width: auto;
    padding: 25px 40px 0;
    background: #fff0;
    position: relative;
    opacity: 1 !important;
    visibility: visible;
    transition: 0s;
    box-shadow: none;
    border: none;
    transform: scale(1);
    transform-origin: unset;
    left: 0
}

    .tgmobile__menu .tg-mega-menu-wrap .row .col {
        position: relative;
        width: 100%
    }

.tg-mega-menu-has-children {
    position: static !important
}

.tgmobile__menu .menu-item-has-children:hover .tg-mega-menu-wrap {
    transform: scale(1) translateX(0)
}

.transparent-header .tgmenu__navbar-wrap ul li .sub-menu {
    border-radius: 10px
}

.banner__area {
    position: relative;
    z-index: 1;
    padding: 30px 0 0
}

@media (max-width:991.98px) {
    .banner__area {
        padding: 60px 0 0
    }
}

.banner__area-two {
    padding: 160px 0 140px;
    position: relative;
    z-index: 1
}

@media (max-width:1199.98px) {
    .banner__area-two {
        padding: 130px 0 100px
    }
}

@media (max-width:767.98px) {
    .banner__area-two {
        padding: 110px 0 100px
    }
}

.banner__area-two::before {
    content: "";
    position: absolute;
    left: -218px;
    top: 121px;
    width: 512px;
    height: 512px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    background: #3894FF;
    filter: blur(75px);
    opacity: .1;
    z-index: -1
}

.banner__area-two::after {
    content: "";
    position: absolute;
    top: -177px;
    right: -210px;
    width: 515px;
    height: 515px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    background: #FF7438;
    filter: blur(150px);
    opacity: .1;
    z-index: -1
}

.banner__area-six {
    position: relative;
    z-index: 1;
    padding: 215px 0 0
}

@media (max-width:1500px) {
    .banner__area-six {
        padding: 160px 0 0
    }
}

@media (max-width:991.98px) {
    .banner__area-six {
        padding: 130px 0 0
    }
}

@media (max-width:767.98px) {
    .banner__area-six {
        padding: 110px 0 0
    }
}

.banner__bg {
    background-size: cover;
    background-position: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: .08;
    mix-blend-mode: luminosity;
    background-color: var(--tg-color-white-default)
}

.banner__bg-two {
    background-size: cover;
    background-position: center;
    padding: 200px 0 135px;
    position: relative;
    z-index: 1
}

@media (max-width:1500px) {
    .banner__bg-two {
        padding: 170px 0 120px
    }
}

@media (max-width:991.98px) {
    .banner__bg-two {
        padding: 120px 0 100px
    }
}

.banner__bg-three {
    background-size: cover;
    background-position: center;
    padding: 190px 0 115px;
    position: relative;
    z-index: 1
}

@media (max-width:1500px) {
    .banner__bg-three {
        padding: 170px 0 110px
    }
}

@media (max-width:1199.98px) {
    .banner__bg-three {
        padding: 160px 0 100px
    }
}

@media (max-width:991.98px) {
    .banner__bg-three {
        padding: 135px 0 100px
    }
}

@media (max-width:767.98px) {
    .banner__bg-three {
        padding: 125px 0 80px
    }
}

.banner__bg-four {
    background-size: cover;
    background-position: center;
    min-height: 650px;
    padding: 100px 80px 100px 150px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -o-border-radius: 50px;
    -ms-border-radius: 50px;
    border-radius: 50px;
    position: relative;
    z-index: 1;
    overflow: hidden
}

@media (max-width:1500px) {
    .banner__bg-four {
        padding: 100px 80px 100px 80px;
        min-height: 580px
    }
}

@media (max-width:1199.98px) {
    .banner__bg-four {
        padding: 100px 60px 100px 60px;
        min-height: 500px
    }
}

@media (max-width:767.98px) {
    .banner__bg-four {
        padding: 70px 25px 70px 25px
    }
}

.banner__bg-four > .row {
    flex-grow: 1
}

.banner__bg-five {
    position: absolute;
    left: 0;
    top: 0;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 84%;
    z-index: -1
}

.banner__bg-six {
    background-size: cover;
    background-position: center;
    min-height: 855px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    padding: 260px 0 130px
}

@media (max-width:1500px) {
    .banner__bg-six {
        min-height: 740px;
        padding: 195px 0 130px
    }
}

@media (max-width:991.98px) {
    .banner__bg-six {
        min-height: 680px;
        padding: 140px 0 130px
    }
}

.banner__bg-shape {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1
}

@media (max-width:991.98px) {
    .banner__content {
        text-align: center;
        margin-bottom: 50px
    }
}

.banner__content .sub-title {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--tg-theme-primary);
    line-height: 1.4;
    margin-bottom: 5px
}

.banner__content .title {
    font-size: 60px;
    margin-bottom: 10px
}

@media (max-width:1500px) {
    .banner__content .title {
        font-size: 55px
    }
}

@media (max-width:1199.98px) {
    .banner__content .title {
        font-size: 45px
    }
}

@media (max-width:767.98px) {
    .banner__content .title {
        font-size: 38px
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .banner__content .title {
        font-size: 40px
    }
}

.banner__content p {
    margin-bottom: 22px;
    font-size: 18px;
    width: 85%
}

@media (max-width:1199.98px) {
    .banner__content p {
        width: 100%
    }
}

@media (max-width:991.98px) {
    .banner__content-two {
        text-align: center
    }
}

.banner__content-two .title {
    font-size: 55px;
    letter-spacing: -2px;
    margin-bottom: 10px
}

@media (max-width:1500px) {
    .banner__content-two .title {
        font-size: 50px;
        letter-spacing: -1px
    }
}

@media (max-width:1199.98px) {
    .banner__content-two .title {
        font-size: 45px;
        letter-spacing: 0
    }
}

@media (max-width:991.98px) {
    .banner__content-two .title {
        font-size: 42px
    }
}

@media (max-width:767.98px) {
    .banner__content-two .title {
        font-size: 38px
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .banner__content-two .title {
        font-size: 40px
    }
}

.banner__content-two p {
    margin-bottom: 38px;
    font-size: 18px
}

@media (max-width:991.98px) {
    .banner__content-three {
        text-align: center
    }
}

.banner__content-three .title {
    margin-bottom: 15px;
    font-size: 55px;
    width: 81%
}

@media (max-width:1199.98px) {
    .banner__content-three .title {
        font-size: 45px;
        width: 100%
    }
}

@media (max-width:991.98px) {
    .banner__content-three .title {
        font-size: 42px
    }
}

@media (max-width:767.98px) {
    .banner__content-three .title {
        font-size: 38px
    }
}

.banner__content-three > p {
    margin-bottom: 35px;
    font-size: 18px;
    line-height: 1.6
}

@media (max-width:1199.98px) {
    .banner__content-three > p {
        margin-bottom: 20px
    }
}

.banner__content-four .title {
    margin-bottom: 35px;
    color: var(--tg-color-white-default);
    font-size: 70px;
    line-height: 1.1
}

@media (max-width:1500px) {
    .banner__content-four .title {
        font-size: 65px
    }
}

@media (max-width:1199.98px) {
    .banner__content-four .title {
        font-size: 52px
    }
}

@media (max-width:767.98px) {
    .banner__content-four .title {
        font-size: 40px;
        margin-bottom: 25px
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .banner__content-four .title {
        font-size: 45px
    }
}

.banner__content-four .title .arrow {
    width: 126px;
    height: 57px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--tg-color-white-default);
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -o-border-radius: 100px;
    -ms-border-radius: 100px;
    border-radius: 100px;
    color: var(--tg-theme-primary);
    transform: translateY(-13px)
}

@media (max-width:1500px) {
    .banner__content-four .title .arrow {
        transform: translateY(-9px)
    }
}

@media (max-width:1199.98px) {
    .banner__content-four .title .arrow {
        transform: translateY(-4px);
        width: 100px;
        height: 44px
    }
}

@media (max-width:767.98px) {
    .banner__content-four .title .arrow {
        width: 80px;
        height: 35px;
        transform: translateY(-10px)
    }
}

@media (max-width:1199.98px) {
    .banner__content-four .title .arrow svg {
        width: 60px;
        height: auto
    }
}

@media (max-width:767.98px) {
    .banner__content-four .title .arrow svg {
        width: 40px
    }
}

@media (max-width:991.98px) {
    .banner__content-five {
        text-align: center
    }
}

.banner__content-five .sub-title {
    display: inline-flex;
    font-weight: 500;
    color: var(--tg-theme-primary);
    line-height: 1;
    position: relative;
    gap: 7px;
    align-items: center;
    margin-bottom: 15px
}

    .banner__content-five .sub-title::after {
        content: "";
        width: 30px;
        height: 3px;
        background: var(--tg-theme-primary);
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -o-border-radius: 3px;
        -ms-border-radius: 3px;
        border-radius: 3px
    }

.banner__content-five .title {
    margin-bottom: 12px;
    font-size: 60px
}

@media (max-width:1500px) {
    .banner__content-five .title {
        font-size: 55px
    }
}

@media (max-width:1199.98px) {
    .banner__content-five .title {
        font-size: 45px
    }
}

@media (max-width:767.98px) {
    .banner__content-five .title {
        font-size: 38px
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .banner__content-five .title {
        font-size: 42px
    }
}

.banner__content-five .title span {
    font-weight: 500
}

.banner__content-five p {
    margin-bottom: 32px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    width: 80%
}

@media (max-width:1500px) {
    .banner__content-five p {
        width: 90%
    }
}

@media (max-width:991.98px) {
    .banner__content-five p {
        width: 100%
    }
}

.banner__content-six {
    position: relative;
    margin-bottom: 35px
}

    .banner__content-six .title {
        margin-bottom: 30px;
        font-size: 80px;
        line-height: 1;
        width: 47%
    }

@media (max-width:1500px) {
    .banner__content-six .title {
        font-size: 75px
    }
}

@media (max-width:1199.98px) {
    .banner__content-six .title {
        font-size: 60px
    }
}

@media (max-width:991.98px) {
    .banner__content-six .title {
        font-size: 55px;
        margin-bottom: 10px;
        width: 100%
    }
}

@media (max-width:767.98px) {
    .banner__content-six .title {
        font-size: 48px;
        margin-bottom: 0
    }
}

.banner__content-six .title-two {
    margin-bottom: 0;
    font-size: 80px;
    line-height: 1;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 10px
}

@media (max-width:1500px) {
    .banner__content-six .title-two {
        font-size: 75px
    }
}

@media (max-width:1199.98px) {
    .banner__content-six .title-two {
        font-size: 60px
    }
}

@media (max-width:991.98px) {
    .banner__content-six .title-two {
        font-size: 55px
    }
}

@media (max-width:767.98px) {
    .banner__content-six .title-two {
        font-size: 48px
    }
}

.banner__content-six .title-two svg {
    color: var(--tg-theme-primary)
}

@media (max-width:991.98px) {
    .banner__content-six .title-two svg {
        width: 55px;
        height: auto
    }
}

@media (max-width:767.98px) {
    .banner__content-six .title-two svg {
        display: none
    }
}

.banner__content-six p {
    margin-bottom: 0;
    position: absolute;
    right: 70px;
    width: 45%;
    top: 0
}

@media (max-width:1199.98px) {
    .banner__content-six p {
        right: 26px;
        width: 49%;
        top: -25px
    }
}

@media (max-width:991.98px) {
    .banner__content-six p {
        position: initial;
        width: 100%;
        margin-top: 20px
    }
}

@media (max-width:991.98px) {
    .banner__content-seven {
        text-align: center
    }
}

.banner__content-seven .sub-title {
    display: block;
    color: var(--tg-theme-primary);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px
}

.banner__content-seven .title {
    margin-bottom: 10px;
    font-size: 34px;
    width: 100%
}

@media (max-width:1199.98px) {
    .banner__content-seven .title {
        font-size: 28px;
        width: 100%
    }
}

@media (max-width:767.98px) {
    .banner__content-seven .title {
        font-size: 22px
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .banner__content-seven .title {
        font-size: 40px
    }
}

.banner__content-seven p {
    font-size: 18px;
    margin-bottom: 35px
}

.banner__content-bottom {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap
}

@media (max-width:991.98px) {
    .banner__content-bottom {
        text-align: left;
        justify-content: center
    }
}

.banner__mask-img {
    -webkit-mask-image: url(../img/banner/mask_img.svg);
    mask-image: url(../img/banner/mask_img.svg);
    -webkit-mask-size: 100%;
    mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    width: 1224px;
    height: 668px;
    margin: 0 auto
}

@media (max-width:1199.98px) {
    .banner__mask-img {
        width: 935px;
        height: 512px
    }
}

@media (max-width:991.98px) {
    .banner__mask-img {
        width: 695px;
        height: 382px
    }
}

@media (max-width:767.98px) {
    .banner__mask-img {
        width: 100%;
        height: auto;
        -webkit-mask-image: none;
        mask-image: none;
        border-radius: 20px;
        overflow: hidden
    }
}

.banner__mask-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.banner__img {
    position: relative
}

@media (max-width:991.98px) {
    .banner__img {
        text-align: center
    }
}

.banner__img img {
    max-width: unset
}

@media (max-width:1500px) {
    .banner__img img {
        max-width: 90%
    }
}

@media (max-width:991.98px) {
    .banner__img img {
        max-width: 100%
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .banner__img img {
        max-width: 90%;
        margin: 0 auto
    }
}

.banner__img .shape {
    position: absolute;
    left: -75px;
    top: 0;
    max-width: unset;
    z-index: -1
}

@media (max-width:1500px) {
    .banner__img .shape {
        max-width: 600px
    }
}

@media (max-width:1199.98px) {
    .banner__img .shape {
        max-width: 450px;
        left: -50px
    }
}

@media (max-width:991.98px) {
    .banner__img .shape {
        max-width: 500px;
        left: -50px
    }
}

@media (max-width:767.98px) {
    .banner__img .shape {
        max-width: 100%;
        left: 0
    }
}

.banner__img-two {
    position: relative;
    text-align: right;
    padding-right: 30px
}

@media (max-width:991.98px) {
    .banner__img-two {
        margin-bottom: 60px
    }
}

@media (max-width:767.98px) {
    .banner__img-two {
        padding: 0;
        text-align: center
    }
}

.banner__img-two .main-img img {
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -o-border-radius: 30px;
    -ms-border-radius: 30px;
    border-radius: 30px
}

@media (max-width:1199.98px) {
    .banner__img-two .main-img img {
        max-width: 80%
    }
}

@media (max-width:767.98px) {
    .banner__img-two .main-img img {
        max-width: 100%
    }
}

.banner__img-two .shape-wrap img {
    position: absolute;
    z-index: -1
}

    .banner__img-two .shape-wrap img:nth-child(1) {
        left: 7%;
        top: 18%
    }

@media (max-width:767.98px) {
    .banner__img-two .shape-wrap img:nth-child(1) {
        display: none
    }
}

.banner__img-two .shape-wrap img:nth-child(2) {
    right: -19%;
    bottom: 29%
}

@media (max-width:1500px) {
    .banner__img-two .shape-wrap img:nth-child(2) {
        right: -9%
    }
}

@media (max-width:1199.98px) {
    .banner__img-two .shape-wrap img:nth-child(2) {
        right: -7%;
        max-width: 100px
    }
}

@media (max-width:767.98px) {
    .banner__img-two .shape-wrap img:nth-child(2) {
        display: none
    }
}

.banner__img-two .shape-wrap img:nth-child(3) {
    right: -3%;
    bottom: -6%
}

@media (max-width:767.98px) {
    .banner__img-two .shape-wrap img:nth-child(3) {
        right: -1%;
        bottom: -10%;
        max-width: 120px
    }
}

.banner__img-two .shape-wrap img:nth-child(4) {
    left: 30px;
    bottom: 65px;
    z-index: 1;
    -webkit-border-radius: 11px;
    -moz-border-radius: 11px;
    -o-border-radius: 11px;
    -ms-border-radius: 11px;
    border-radius: 11px
}

@media (max-width:1199.98px) {
    .banner__img-two .shape-wrap img:nth-child(4) {
        left: 0;
        max-width: 200px
    }
}

@media (max-width:767.98px) {
    .banner__img-two .shape-wrap img:nth-child(4) {
        display: none
    }
}

.banner__img-two .shape-wrap img:nth-child(5) {
    left: 14%;
    bottom: 0;
    max-width: unset;
    z-index: -2
}

@media (max-width:1199.98px) {
    .banner__img-two .shape-wrap img:nth-child(5) {
        left: 5%;
        max-width: 100%
    }
}

.banner__img-three {
    position: relative;
    z-index: 1
}

@media (max-width:991.98px) {
    .banner__img-three {
        margin-bottom: 50px
    }
}

.banner__img-three > img {
    max-width: unset
}

@media (max-width:1199.98px) {
    .banner__img-three > img {
        max-width: 100%
    }
}

.banner__img-three > img:nth-child(2) {
    position: absolute;
    left: -2%;
    bottom: 23%
}

@media (max-width:1199.98px) {
    .banner__img-three > img:nth-child(2) {
        max-width: 150px
    }
}

@media (max-width:991.98px) {
    .banner__img-three > img:nth-child(2) {
        bottom: 35%
    }
}

@media (max-width:767.98px) {
    .banner__img-three > img:nth-child(2) {
        max-width: 120px;
        bottom: 33%
    }
}

.banner__img-three > img.shape {
    position: absolute;
    left: 0;
    top: -5%;
    z-index: -1
}

.banner__img-four {
    position: relative
}

    .banner__img-four img {
        border-radius: 25px 80px;
        width: 100%;
        height: 560px;
        object-fit: cover
    }

@media (max-width:1500px) {
    .banner__img-four img {
        height: 500px
    }
}

@media (max-width:991.98px) {
    .banner__img-four img {
        height: 450px
    }
}

.banner__img-four .play-btn {
    width: 80px;
    height: 80px;
    background: var(--tg-color-white-default);
    position: absolute;
    left: 45px;
    bottom: 45px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center
}

    .banner__img-four .play-btn svg {
        width: 24px;
        height: auto
    }

.banner__img-wrap {
    position: relative;
    margin-bottom: 90px
}

@media (max-width:1199.98px) {
    .banner__img-wrap {
        margin-bottom: 70px
    }
}

@media (max-width:767.98px) {
    .banner__img-wrap {
        margin-bottom: 60px
    }
}

.banner__img-wrap > p {
    margin-bottom: 0;
    color: var(--tg-color-gray-4);
    position: absolute;
    right: 22px;
    top: 15px;
    width: 40%;
    font-size: 18px;
    line-height: 1.55
}

@media (max-width:1199.98px) {
    .banner__img-wrap > p {
        font-size: 14px
    }
}

@media (max-width:991.98px) {
    .banner__img-wrap > p {
        font-size: 16px;
        position: unset;
        width: 100%;
        margin-bottom: 30px
    }
}

.banner__client {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 8px
}

    .banner__client .content .count {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 8px;
        line-height: 1
    }

    .banner__client .content p {
        margin-bottom: 0;
        font-size: 16px;
        font-weight: 500;
        line-height: 1
    }

.banner__form {
    width: 89%;
    position: relative
}

@media (max-width:991.98px) {
    .banner__form {
        width: 100%
    }
}

.banner__form input {
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -o-border-radius: 100px;
    -ms-border-radius: 100px;
    border-radius: 100px;
    padding: 11px 180px 11px 20px
}

    .banner__form input::placeholder {
        color: var(--tg-color-gray-9)
    }

.banner__form button {
    position: absolute;
    right: 0;
    top: 0;
    padding: 17px 25px;
    height: 50px
}

.banner__social-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 57px;
    position: absolute;
    right: 90px;
    top: 50%;
    transform: translateY(-50%) rotate(-180deg);
    writing-mode: vertical-lr;
    flex-direction: row-reverse;
    z-index: 1
}

@media (max-width:1500px) {
    .banner__social-wrap {
        right: 50px
    }
}

@media (max-width:1199.98px) {
    .banner__social-wrap {
        right: 30px
    }
}

@media (max-width:991.98px) {
    .banner__social-wrap {
        display: none
    }
}

.banner__social-wrap .title {
    display: block;
    letter-spacing: 3.2px;
    font-weight: 600;
    font-size: 16px;
    color: var(--tg-border-1);
    position: relative;
    line-height: 1
}

    .banner__social-wrap .title::before {
        content: "";
        position: absolute;
        left: 50%;
        top: -40px;
        transform: translateX(-50%);
        width: 2px;
        height: 24px;
        background: var(--tg-theme-secondary)
    }

.banner__social-wrap .list-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 25px
}

    .banner__social-wrap .list-wrap li {
        line-height: 0
    }

        .banner__social-wrap .list-wrap li a {
            color: var(--tg-theme-secondary);
            transform: rotate(90deg);
            display: block
        }

            .banner__social-wrap .list-wrap li a svg {
                width: 20px;
                height: 20px
            }

            .banner__social-wrap .list-wrap li a:hover {
                color: var(--tg-theme-primary)
            }

.banner__social-wrap-two {
    right: auto;
    left: 90px;
    top: 37%;
    transform: translateY(0) rotate(-180deg)
}

@media (max-width:1500px) {
    .banner__social-wrap-two {
        left: 25px
    }
}

@media (max-width:1199.98px) {
    .banner__social-wrap-two {
        display: none
    }
}

.banner__side-wrap {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    border-left: 1px solid #DEE0EB;
    z-index: 1;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 12px;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    justify-content: center;
    padding: 25px 20px;
    width: 95px
}

@media (max-width:1199.98px) {
    .banner__side-wrap {
        display: none
    }
}

.banner__side-wrap i {
    font-size: 24px;
    color: var(--tg-border-1)
}

.banner__side-wrap span {
    font-size: 16px;
    display: block;
    font-weight: 500;
    color: var(--tg-border-1)
}

.banner__shape img {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1
}

@media (max-width:1500px) {
    .banner__shape img {
        max-width: 130px
    }
}

@media (max-width:1199.98px) {
    .banner__shape img {
        max-width: 100px
    }
}

.banner__shape-two img {
    position: absolute;
    z-index: -1
}

    .banner__shape-two img:nth-child(1) {
        left: 7%;
        top: 31%
    }

@media (max-width:1500px) {
    .banner__shape-two img:nth-child(1) {
        left: 4%;
        top: 20%
    }
}

.banner__shape-two img:nth-child(2) {
    left: 44%;
    top: 28%
}

@media (max-width:1199.98px) {
    .banner__shape-two img:nth-child(2) {
        top: 20%
    }
}

@media (max-width:991.98px) {
    .banner__shape-two img:nth-child(2) {
        top: 15%;
        z-index: 1
    }
}

.banner__shape-three img {
    position: absolute;
    right: 26%;
    top: 18%;
    z-index: -1
}

@media (max-width:991.98px) {
    .banner__shape-three img {
        display: none
    }
}

.swiper-slide.swiper-slide-active .slider__content-five .sub-title, .swiper-slide.swiper-slide-active .slider__content-four .sub-title, .swiper-slide.swiper-slide-active .slider__content-three .sub-title, .swiper-slide.swiper-slide-active .slider__content-two .sub-title {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInUp2;
    animation-name: fadeInUp2
}

.swiper-slide.swiper-slide-active .slider__content-five .title, .swiper-slide.swiper-slide-active .slider__content-four .title, .swiper-slide.swiper-slide-active .slider__content-three .title, .swiper-slide.swiper-slide-active .slider__content-two .title {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInUp2;
    animation-name: fadeInUp2
}

.swiper-slide.swiper-slide-active .slider__content-five p, .swiper-slide.swiper-slide-active .slider__content-four p, .swiper-slide.swiper-slide-active .slider__content-three p, .swiper-slide.swiper-slide-active .slider__content-two p {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInUp2;
    animation-name: fadeInUp2
}

.swiper-slide.swiper-slide-active .slider__content-five .tg-btn, .swiper-slide.swiper-slide-active .slider__content-four .tg-btn, .swiper-slide.swiper-slide-active .slider__content-three .tg-btn, .swiper-slide.swiper-slide-active .slider__content-two .tg-btn {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInUp2;
    animation-name: fadeInUp2
}

.swiper-slide.swiper-slide-active .shape img {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInUp2;
    animation-name: fadeInUp2
}

.swiper-slide.swiper-slide-active.slider__bg-four .shape img:nth-child(1) {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInUp2;
    animation-name: fadeInUp2
}

.swiper-slide.swiper-slide-active.slider__bg-four .shape img:nth-child(2) {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeDown2;
    animation-name: fadeDown2
}

.about__area-two {
    position: relative;
    z-index: 1
}

    .about__area-two::before {
        content: "";
        position: absolute;
        right: -215px;
        top: -200px;
        width: 515px;
        height: 515px;
        background: #7838FF;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -o-border-radius: 50%;
        -ms-border-radius: 50%;
        border-radius: 50%;
        z-index: -1;
        filter: blur(150px);
        opacity: .1
    }

@media (max-width:991.98px) {
    .about__area-two::before {
        top: 0
    }
}

.about__area-three {
    position: relative;
    z-index: 1
}

    .about__area-three::before {
        content: "";
        position: absolute;
        right: -215px;
        bottom: -200px;
        width: 515px;
        height: 515px;
        background: #7838FF;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -o-border-radius: 50%;
        -ms-border-radius: 50%;
        border-radius: 50%;
        z-index: -1;
        filter: blur(150px);
        opacity: .1
    }

.about__area-four {
    position: relative;
    z-index: 1
}

.about__area-five {
    position: relative;
    z-index: 1
}

.about__area-eight {
    background: var(--tg-color-gray-2)
}

@media (max-width:991.98px) {
    .about__img-three {
        text-align: center;
        margin-bottom: 50px
    }
}

.about__img-four {
    margin-left: -20px;
    position: relative;
    z-index: 1
}

@media (max-width:1199.98px) {
    .about__img-four {
        margin-left: -45px
    }
}

@media (max-width:991.98px) {
    .about__img-four {
        margin-left: 0;
        margin-bottom: 50px
    }
}

.about__img-four .shape img {
    position: absolute;
    z-index: -1;
    left: -5%;
    top: 11%
}

.about__img-five {
    width: 505px;
    flex: 0 0 auto
}

@media (max-width:1199.98px) {
    .about__img-five {
        width: 400px
    }
}

@media (max-width:767.98px) {
    .about__img-five {
        width: 100%
    }
}

.about__img-five img {
    border-radius: 50px 200px 50px 50px
}

.about__img-six {
    text-align: right;
    position: relative;
    padding-left: 40px
}

@media (max-width:991.98px) {
    .about__img-six {
        margin-bottom: 50px
    }
}

@media (max-width:767.98px) {
    .about__img-six {
        padding-left: 20px
    }
}

.about__img-six::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 80px;
    width: 100px;
    height: 70%;
    background: var(--tg-theme-primary);
    border-radius: 25px 0 0 25px;
    z-index: -1
}

.about__img-six img {
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -o-border-radius: 50px;
    -ms-border-radius: 50px;
    border-radius: 50px
}

@media (max-width:767.98px) {
    .about__img-six img {
        -webkit-border-radius: 30px;
        -moz-border-radius: 30px;
        -o-border-radius: 30px;
        -ms-border-radius: 30px;
        border-radius: 30px
    }
}

.about__img-wrap {
    position: relative;
    margin-right: 45px
}

@media (max-width:1199.98px) {
    .about__img-wrap {
        margin-right: 0
    }
}

@media (max-width:991.98px) {
    .about__img-wrap {
        margin-bottom: 60px
    }
}

.about__img-wrap .shape img {
    position: absolute;
    z-index: -1
}

    .about__img-wrap .shape img:nth-child(1) {
        left: -6%;
        top: 42%;
        z-index: 1
    }

@media (max-width:1199.98px) {
    .about__img-wrap .shape img:nth-child(1) {
        max-width: 90px
    }
}

@media (max-width:767.98px) {
    .about__img-wrap .shape img:nth-child(1) {
        left: -4%;
        top: 38%
    }
}

.about__img-wrap .shape img:nth-child(2) {
    left: 20%;
    bottom: -6%
}

@media (max-width:1199.98px) {
    .about__img-wrap .shape img:nth-child(2) {
        left: 6%
    }
}

@media (max-width:767.98px) {
    .about__img-wrap .shape img:nth-child(2) {
        left: 1%
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .about__img-wrap .shape img:nth-child(2) {
        left: 16%
    }
}

.about__img-wrap-two {
    position: relative;
    padding: 70px 80px 70px 0;
    margin-right: 35px
}

@media (max-width:1199.98px) {
    .about__img-wrap-two {
        padding: 70px 50px 70px 0;
        margin-right: 0
    }
}

@media (max-width:991.98px) {
    .about__img-wrap-two {
        margin-bottom: 50px
    }
}

@media (max-width:991.98px) {
    .about__img-wrap-two {
        padding: 30px 20px 30px 0
    }
}

.about__img-wrap-two::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 84%;
    height: 100%;
    background: var(--tg-color-white-default);
    z-index: -1;
    -webkit-border-radius: 20px 20px 107px 20px;
    -moz-border-radius: 20px 20px 107px 20px;
    -o-border-radius: 20px 20px 107px 20px;
    -ms-border-radius: 20px 20px 107px 20px;
    border-radius: 20px 20px 107px 20px
}

@media (max-width:767.98px) {
    .about__img-wrap-two::before {
        -webkit-border-radius: 20px 20px 50px 20px;
        -moz-border-radius: 20px 20px 50px 20px;
        -o-border-radius: 20px 20px 50px 20px;
        -ms-border-radius: 20px 20px 50px 20px;
        border-radius: 20px 20px 50px 20px
    }
}

.about__img-wrap-two > img {
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -o-border-radius: 30px;
    -ms-border-radius: 30px;
    border-radius: 30px
}

@media (max-width:767.98px) {
    .about__img-wrap-two > img {
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        -o-border-radius: 20px;
        -ms-border-radius: 20px;
        border-radius: 20px
    }
}

.about__img-wrap-two .shape img {
    position: absolute
}

    .about__img-wrap-two .shape img:nth-child(1) {
        left: -50px;
        bottom: 0;
        z-index: -1
    }

    .about__img-wrap-two .shape img:nth-child(2) {
        right: 4%;
        bottom: 25%
    }

@media (max-width:767.98px) {
    .about__img-wrap-two .shape img:nth-child(2) {
        display: none
    }
}

.about__img-wrap-three {
    margin-right: 80px;
    text-align: right;
    position: relative;
    z-index: 1;
    padding-bottom: 10px
}

@media (max-width:1199.98px) {
    .about__img-wrap-three {
        margin-right: 0
    }
}

@media (max-width:991.98px) {
    .about__img-wrap-three {
        margin-bottom: 50px
    }
}

@media (max-width:767.98px) {
    .about__img-wrap-three {
        padding: 0 0 40px 30px
    }
}

.about__img-wrap-three > img:nth-child(2) {
    position: absolute;
    left: 0;
    bottom: 0;
    border: 8px solid var(--tg-color-white-default)
}

.about__img-wrap-three .rating-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 13px;
    justify-content: flex-end;
    text-align: left;
    margin-top: 20px
}

@media (max-width:767.98px) {
    .about__img-wrap-three .rating-wrap {
        display: none
    }
}

.about__img-wrap-three .rating-wrap p {
    margin-bottom: 0;
    color: var(--tg-theme-secondary);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3
}

    .about__img-wrap-three .rating-wrap p span {
        font-size: 24px;
        font-weight: 700;
        line-height: 1.3
    }

.about__img-wrap-four {
    position: relative;
    padding-bottom: 30px;
    margin-right: 35px;
    z-index: 1
}

@media (max-width:1199.98px) {
    .about__img-wrap-four {
        margin-right: 0;
        padding-right: 50px
    }
}

@media (max-width:991.98px) {
    .about__img-wrap-four {
        margin-bottom: 50px
    }
}

@media (max-width:767.98px) {
    .about__img-wrap-four {
        padding-right: 0;
        text-align: center
    }
}

.about__img-wrap-four::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 290px;
    height: 50px;
    background: #E46107;
    z-index: -1
}

@media (max-width:767.98px) {
    .about__img-wrap-four::before {
        display: none
    }
}

.about__img-wrap-four img:nth-child(1) {
    border: 12px solid var(--tg-color-white-default)
}

.about__img-wrap-four img:nth-child(2) {
    border: 10px solid var(--tg-color-white-default);
    position: absolute;
    right: 0;
    bottom: 0
}

@media (max-width:767.98px) {
    .about__img-wrap-four img:nth-child(2) {
        display: none
    }
}

.about__images {
    padding-right: 30px;
    text-align: right
}

@media (max-width:767.98px) {
    .about__images {
        padding-right: 0
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .about__images {
        padding-right: 30px
    }
}

.about__images img {
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px
}

    .about__images img:nth-child(2) {
        -webkit-border-radius: 15px 20px 0 15px;
        -moz-border-radius: 15px 20px 0 15px;
        -o-border-radius: 15px 20px 0 15px;
        -ms-border-radius: 15px 20px 0 15px;
        border-radius: 15px 20px 0 15px;
        margin-top: 24px;
        position: relative;
        z-index: 1
    }

.about__mask-img {
    -webkit-mask-image: url(../img/images/about_mask_img.svg);
    mask-image: url(../img/images/about_mask_img.svg);
    -webkit-mask-size: 100%;
    mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    width: 623px;
    height: 566px;
    margin: 0 auto
}

@media (max-width:1199.98px) {
    .about__mask-img {
        width: 495px;
        height: 452px
    }
}

@media (max-width:991.98px) {
    .about__mask-img {
        width: 575px;
        height: 523px
    }
}

@media (max-width:767.98px) {
    .about__mask-img {
        width: 330px;
        height: 300px
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .about__mask-img {
        width: 513px;
        height: 468px
    }
}

.about__mask-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.about__content > p {
    margin-bottom: 25px;
    width: 95%
}

.about__content-bottom {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 30px 70px;
    flex-wrap: wrap
}

@media (max-width:1199.98px) {
    .about__content-bottom {
        gap: 30px 30px
    }
}

.about__content-bottom-two {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 20px 25px
}

@media (max-width:1199.98px) {
    .about__content-bottom-two {
        flex-wrap: wrap;
        flex-direction: column-reverse;
        align-items: flex-start
    }
}

.about__content-bottom-two .rating-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 68%
}

@media (max-width:1199.98px) {
    .about__content-bottom-two .rating-wrap {
        width: 100%
    }
}

.about__content-bottom-two .rating-wrap p {
    margin-bottom: 0;
    line-height: 1.2;
    font-size: 16px;
    font-weight: 500;
    color: var(--tg-heading-color)
}

    .about__content-bottom-two .rating-wrap p span {
        font-size: 24px;
        font-weight: 600
    }

.about__content-two > p {
    font-size: 18px;
    margin-bottom: 38px;
    width: 90%
}

@media (max-width:1199.98px) {
    .about__content-two > p {
        margin-bottom: 30px;
        width: 100%
    }
}

.about__content-three {
    margin-left: 30px
}

@media (max-width:1199.98px) {
    .about__content-three {
        margin-left: 0
    }
}

.about__content-three > p {
    margin-bottom: 28px;
    width: 90%
}

.about__content-four {
    margin-right: 55px
}

@media (max-width:991.98px) {
    .about__content-four {
        margin-right: 0
    }
}

.about__content-four .section__title .title strong {
    font-style: italic;
    font-weight: 400
}

.about__content-four > p {
    margin-bottom: 0
}

.about__content-four .about__list-item-two li {
    margin-bottom: 14px;
    font-size: 18px
}

.about__content-four .tg-btn {
    margin-top: 33px
}

@media (max-width:767.98px) {
    .about__content-four .tg-btn {
        margin-top: 23px
    }
}

.about__content-five > p {
    margin-bottom: 30px
}

.about__content-five .about__list-item-two {
    margin-bottom: 45px
}

.about__content-six > p {
    margin-bottom: 50px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5
}

@media (max-width:1199.98px) {
    .about__content-six > p {
        margin-bottom: 40px
    }
}

.about__content-seven {
    margin-left: -45px
}

@media (max-width:1199.98px) {
    .about__content-seven {
        margin-left: 0
    }
}

.about__content-seven p {
    margin-bottom: 18px
}

    .about__content-seven p.info-one {
        font-size: 18px;
        font-weight: 500;
        line-height: 1.6;
        margin-bottom: 18px
    }

.about__content-seven .about__list-item {
    margin-bottom: 35px
}

@media (max-width:1199.98px) {
    .about__content-seven .about__list-item {
        margin-bottom: 25px
    }
}

.about__content-seven .about__list-item li {
    margin-bottom: 13px
}

    .about__content-seven .about__list-item li:last-child {
        margin-bottom: 0
    }

.about__content-eight .info-one {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
    color: var(--tg-theme-secondary);
    line-height: 1.4
}

.about__content-eight p {
    margin-bottom: 20px
}

.about__inner-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 30px 30px;
    margin-bottom: 35px
}

@media (max-width:767.98px) {
    .about__inner-wrap {
        flex-wrap: wrap
    }
}

.about__inner-wrap-two {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 45px
}

@media (max-width:1199.98px) {
    .about__inner-wrap-two {
        margin-bottom: 40px;
        gap: 20px
    }
}

@media (max-width:767.98px) {
    .about__inner-wrap-two {
        flex-wrap: wrap
    }
}

.about__inner-wrap-three {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 22px 0 35px;
    flex-wrap: wrap
}

@media (max-width:767.98px) {
    .about__inner-wrap-three {
        margin: 22px 0 25px
    }
}

.about__inner-wrap-four {
    margin-left: -90px;
    margin-right: 60px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 30px 55px
}

@media (max-width:1500px) {
    .about__inner-wrap-four {
        margin-left: -50px;
        margin-right: 40px;
        gap: 30px 40px
    }
}

@media (max-width:1199.98px) {
    .about__inner-wrap-four {
        margin-left: -10px;
        margin-right: 20px;
        gap: 30px 25px
    }
}

@media (max-width:991.98px) {
    .about__inner-wrap-four {
        margin-left: 0;
        margin-right: 0
    }
}

@media (max-width:767.98px) {
    .about__inner-wrap-four {
        flex-wrap: wrap
    }
}

.about__inner-wrap-five {
    margin-left: -20px;
    text-align: center
}

@media (max-width:991.98px) {
    .about__inner-wrap-five {
        margin-left: 0;
        margin-bottom: 50px
    }
}

.about__inner-wrap-five .circle__wrap-two {
    margin-bottom: 45px
}

.about__inner-wrap-five img {
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -o-border-radius: 30px;
    -ms-border-radius: 30px;
    border-radius: 30px
}

.about__inner-wrap-six {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 30px 50px;
    margin-bottom: 60px
}

@media (max-width:1199.98px) {
    .about__inner-wrap-six {
        gap: 30px 35px;
        margin-bottom: 35px
    }
}

@media (max-width:767.98px) {
    .about__inner-wrap-six {
        flex-wrap: wrap
    }
}

.about__inner-wrap-seven {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: space-between
}

.about__inner-wrap-eight {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px
}

    .about__inner-wrap-eight .about__list-item {
        background: var(--tg-color-white-default);
        position: relative;
        z-index: 1;
        padding: 20px 20px 20px 20px
    }

        .about__inner-wrap-eight .about__list-item::before {
            content: "";
            position: absolute;
            right: 0;
            top: 0;
            width: 4px;
            height: 100%;
            background: #E46107
        }

.about__inner-box {
    position: relative
}

    .about__inner-box::before {
        content: "";
        position: absolute;
        right: -18px;
        top: 0;
        width: 1px;
        height: 100%;
        background: #E3E3E3
    }

@media (max-width:767.98px) {
    .about__inner-box::before {
        display: none
    }
}

.about__inner-box:last-child::before {
    display: none
}

.about__inner-box .icon {
    width: 80px;
    height: 80px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tg-color-gray-4);
    color: var(--tg-theme-primary);
    border-radius: 8px 18px;
    font-size: 45px;
    margin-bottom: 25px
}

.about__inner-box .content .title {
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 600
}

.about__inner-box .content p {
    margin-bottom: 0
}

.about__list-box {
    width: 44.4%;
    flex: 0 0 auto
}

@media (max-width:767.98px) {
    .about__list-box {
        width: 100%
    }
}

.about__list-box-item {
    background: var(--tg-color-gray-1);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px;
    margin-bottom: 15px;
    gap: 17px;
    padding: 29px 24px
}

@media (max-width:1199.98px) {
    .about__list-box-item {
        padding: 29px 18px;
        gap: 12px
    }
}

@media (max-width:767.98px) {
    .about__list-box-item {
        padding: 29px 24px;
        gap: 17px
    }
}

.about__list-box-item:last-child {
    margin-bottom: 0
}

.about__list-box-item .icon {
    font-size: 50px;
    line-height: 0;
    color: var(--tg-theme-primary);
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s
}

.about__list-box-item .content .title {
    margin-bottom: 0;
    font-size: 17px;
    font-weight: 600
}

@media (max-width:767.98px) {
    .about__list-box-item .content .title br {
        display: none
    }
}

.about__list-box-item:hover .icon {
    transform: rotateY(180deg)
}

.about__list-box-item-two {
    background: var(--tg-color-white-default);
    border: 1px solid #DFE1ED;
    margin-bottom: 20px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
    padding: 29px 40px;
    justify-content: space-between;
    gap: 15px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    box-shadow: 10px 10px 20px 0 rgb(0 0 0 / .06)
}

@media (max-width:767.98px) {
    .about__list-box-item-two {
        flex-wrap: wrap;
        padding: 30px
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .about__list-box-item-two {
        flex-wrap: nowrap
    }
}

.about__list-box-item-two:last-child {
    margin-bottom: 0
}

.about__list-box-item-two:hover {
    transform: translateY(-5px)
}

    .about__list-box-item-two:hover .left-side-content .icon i {
        transform: rotateY(180deg)
    }

.about__list-box-item-two .left-side-content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 25px
}

@media (max-width:767.98px) {
    .about__list-box-item-two .left-side-content {
        gap: 20px;
        flex-wrap: wrap
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .about__list-box-item-two .left-side-content {
        flex-wrap: nowrap
    }
}

.about__list-box-item-two .left-side-content .icon {
    position: relative;
    font-size: 42px;
    color: var(--tg-theme-primary);
    z-index: 1
}

    .about__list-box-item-two .left-side-content .icon::before {
        content: "";
        position: absolute;
        left: -12px;
        top: -8px;
        width: 42px;
        height: 42px;
        background: var(--tg-color-gray-1);
        -webkit-border-radius: 7px;
        -moz-border-radius: 7px;
        -o-border-radius: 7px;
        -ms-border-radius: 7px;
        border-radius: 7px;
        z-index: -1
    }

    .about__list-box-item-two .left-side-content .icon i {
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s
    }

.about__list-box-item-two .content .title {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 600
}

.about__list-box-item-two .content p {
    margin-bottom: 0;
    width: 93%
}

.about__list-box-item-two .right-side-arrow a {
    width: 74px;
    height: 50px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tg-color-gray-1);
    color: var(--tg-theme-primary);
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -o-border-radius: 100px;
    -ms-border-radius: 100px;
    border-radius: 100px
}

    .about__list-box-item-two .right-side-arrow a:hover {
        background: var(--tg-theme-primary);
        color: var(--tg-color-white-default)
    }

.about__inner-content p {
    margin-bottom: 25px
}

.about__inner-img {
    position: relative;
    z-index: 1;
    padding-bottom: 18px
}

    .about__inner-img::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 18px;
        background: var(--tg-theme-primary)
    }

.about__list-item li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 10px
}

    .about__list-item li:last-child {
        margin-bottom: 0
    }

    .about__list-item li .icon {
        width: 22px;
        height: 22px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -o-border-radius: 50%;
        -ms-border-radius: 50%;
        border-radius: 50%;
        border: 1.5px solid var(--tg-theme-primary);
        color: var(--tg-theme-primary);
        transform: translateY(1px);
        flex: 0 0 auto
    }

.about__list-item-two li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 17px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 19px
}

    .about__list-item-two li:last-child {
        margin-bottom: 0
    }

    .about__list-item-two li .icon {
        width: 24px;
        height: 24px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -o-border-radius: 50%;
        -ms-border-radius: 50%;
        border-radius: 50%;
        background: var(--tg-theme-primary);
        color: var(--tg-color-white-default);
        flex: 0 0 auto
    }

.about__list-item-three {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 16px 0;
    flex-wrap: wrap
}

    .about__list-item-three li {
        width: 33.33%;
        flex: 0 0 auto;
        margin-bottom: 0
    }

@media (max-width:1199.98px) {
    .about__list-item-three li {
        width: 50%
    }
}

@media (max-width:767.98px) {
    .about__list-item-three li {
        width: 100%
    }
}

.about__list-item-four {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px 0;
    margin-bottom: 35px
}

    .about__list-item-four li {
        width: 50%;
        flex: 0 0 auto;
        margin-bottom: 0
    }

@media (max-width:767.98px) {
    .about__list-item-four li {
        width: 100%
    }
}

.about__list-item-white li {
    color: var(--tg-color-gray-2)
}

.about__shape img {
    position: absolute;
    z-index: -1;
    right: 15%;
    bottom: 10%
}

@media (max-width:767.98px) {
    .about__shape img {
        display: none
    }
}

.about__shape-two img {
    position: absolute;
    left: 30px;
    top: 0;
    z-index: -1
}

@media (max-width:1199.98px) {
    .about__shape-two img {
        max-width: 240px
    }
}

@media (max-width:767.98px) {
    .about__shape-two img {
        display: none
    }
}

.about__shape-three img {
    position: absolute;
    z-index: -1
}

    .about__shape-three img:nth-child(1) {
        left: 17%;
        top: 17%
    }

@media (max-width:1800px) {
    .about__shape-three img:nth-child(1) {
        left: 11%
    }
}

@media (max-width:1500px) {
    .about__shape-three img:nth-child(1) {
        left: 5%
    }
}

@media (max-width:1199.98px) {
    .about__shape-three img:nth-child(1) {
        left: 1%;
        max-width: 200px;
        top: 19%
    }
}

@media (max-width:991.98px) {
    .about__shape-three img:nth-child(1) {
        display: none
    }
}

.about__shape-three img:nth-child(2) {
    right: 10%;
    top: -10px
}

@media (max-width:1800px) {
    .about__shape-three img:nth-child(2) {
        right: 4%
    }
}

@media (max-width:1500px) {
    .about__shape-three img:nth-child(2) {
        max-width: 200px;
        right: 2%
    }
}

@media (max-width:1199.98px) {
    .about__shape-three img:nth-child(2) {
        max-width: 155px
    }
}

.experience__wrap {
    background: var(--tg-theme-primary);
    -webkit-border-radius: 94px 16px 13px 13px;
    -moz-border-radius: 94px 16px 13px 13px;
    -o-border-radius: 94px 16px 13px 13px;
    -ms-border-radius: 94px 16px 13px 13px;
    border-radius: 94px 16px 13px 13px;
    padding: 38px 43px 246px 43px;
    position: absolute;
    right: 0;
    bottom: 0
}

@media (max-width:767.98px) {
    .experience__wrap {
        padding: 30px 20px 230px 32px;
        -webkit-border-radius: 70px 16px 13px 13px;
        -moz-border-radius: 70px 16px 13px 13px;
        -o-border-radius: 70px 16px 13px 13px;
        -ms-border-radius: 70px 16px 13px 13px;
        border-radius: 70px 16px 13px 13px
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .experience__wrap {
        padding: 30px 20px 260px 32px;
        -webkit-border-radius: 70px 16px 13px 13px;
        -moz-border-radius: 70px 16px 13px 13px;
        -o-border-radius: 70px 16px 13px 13px;
        -ms-border-radius: 70px 16px 13px 13px;
        border-radius: 70px 16px 13px 13px
    }
}

.experience__wrap .count {
    font-size: 64px;
    margin-bottom: 5px;
    color: var(--tg-color-white-default);
    line-height: .8
}

@media (max-width:1199.98px) {
    .experience__wrap .count {
        font-size: 50px
    }
}

.experience__wrap span {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: var(--tg-color-white-default);
    line-height: 1.5
}

.experience__wrap-two {
    text-align: left;
    background: var(--tg-theme-primary);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 0 40px;
    position: absolute;
    left: 0;
    bottom: 0;
    border-top: 8px solid var(--tg-color-white-default);
    border-right: 8px solid var(--tg-color-white-default);
    padding: 19px 27px
}

    .experience__wrap-two .count {
        margin-bottom: 0;
        font-size: 64px;
        line-height: 1;
        color: var(--tg-color-white-default)
    }

@media (max-width:1199.98px) {
    .experience__wrap-two .count {
        font-size: 60px
    }
}

@media (max-width:767.98px) {
    .experience__wrap-two .count {
        font-size: 50px
    }
}

.experience__wrap-two span {
    color: var(--tg-color-white-default);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2
}

@media (max-width:767.98px) {
    .experience__wrap-two span {
        font-size: 18px
    }
}

.experience__wrap-three {
    background: var(--tg-theme-primary);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 0 10px 30px 0;
    position: absolute;
    right: -21.3%;
    top: 29%;
    padding: 26px 40px 26px 80px;
    transform: rotate(-90deg);
    z-index: -1
}

@media (max-width:1199.98px) {
    .experience__wrap-three {
        right: -20.4%;
        top: 29%;
        padding: 26px 20px 26px 72px
    }
}

@media (max-width:767.98px) {
    .experience__wrap-three {
        display: none
    }
}

.experience__wrap-three .count {
    color: var(--tg-color-white-default);
    margin-bottom: 0;
    font-size: 60px;
    line-height: 1
}

@media (max-width:1199.98px) {
    .experience__wrap-three .count {
        font-size: 40px
    }
}

.experience__wrap-three span {
    color: var(--tg-color-white-default);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5
}

@media (max-width:1199.98px) {
    .experience__wrap-three span {
        font-size: 15px
    }
}

.experience__wrap-four {
    background: var(--tg-theme-primary);
    text-align: center;
    padding: 52px 35px;
    position: absolute;
    right: 0;
    bottom: 16px;
    -webkit-border-radius: 40px 0 40px 0;
    -moz-border-radius: 40px 0 40px 0;
    -o-border-radius: 40px 0 40px 0;
    -ms-border-radius: 40px 0 40px 0;
    border-radius: 40px 0 40px 0
}

@media (max-width:767.98px) {
    .experience__wrap-four {
        padding: 30px 20px
    }
}

.experience__wrap-four .count {
    margin-bottom: 6px;
    line-height: .8;
    font-size: 64px;
    font-weight: 700;
    color: var(--tg-color-white-default)
}

@media (max-width:767.98px) {
    .experience__wrap-four .count {
        font-size: 50px
    }
}

.experience__wrap-four span {
    display: block;
    line-height: 1.2;
    font-size: 20px;
    font-weight: 600;
    color: var(--tg-color-white-default)
}

@media (max-width:767.98px) {
    .experience__wrap-four span {
        font-size: 16px
    }
}

.experience__wrap-five {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: var(--tg-theme-primary);
    gap: 8px;
    -webkit-border-radius: 10px 15px 0 15px;
    -moz-border-radius: 10px 15px 0 15px;
    -o-border-radius: 10px 15px 0 15px;
    -ms-border-radius: 10px 15px 0 15px;
    border-radius: 10px 15px 0 15px;
    position: absolute;
    right: 0;
    top: 0;
    padding: 21px 25px
}

    .experience__wrap-five .count {
        margin-bottom: 0;
        color: var(--tg-color-white-default);
        line-height: .8;
        font-size: 50px
    }

    .experience__wrap-five span {
        display: block;
        line-height: 1.4;
        color: var(--tg-color-white-default);
        font-weight: 500
    }

.experience__wrap-six {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: #E46107;
    gap: 12px;
    position: absolute;
    right: -13%;
    top: 35.5%;
    padding: 16px 36px;
    transform: rotate(-90deg)
}

@media (max-width:1199.98px) {
    .experience__wrap-six {
        right: -16%;
        top: 24.5%
    }
}

@media (max-width:767.98px) {
    .experience__wrap-six {
        display: none
    }
}

.experience__wrap-six .count {
    color: var(--tg-color-white-default);
    font-size: 50px;
    margin-bottom: 0;
    line-height: 1
}

.experience__wrap-six span {
    color: var(--tg-color-white-default);
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4
}

.profit__wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    -webkit-border-radius: 10px 30px;
    -moz-border-radius: 10px 30px;
    -o-border-radius: 10px 30px;
    -ms-border-radius: 10px 30px;
    border-radius: 10px 30px;
    border: 1px solid var(--tg-border-3);
    background: var(--tg-color-white-default);
    box-shadow: 11px 11px 0 0 rgb(0 0 0 / .27);
    gap: 12px;
    padding: 17px 22px;
    position: absolute;
    left: -35px;
    bottom: 14%;
    z-index: 2
}

@media (max-width:767.98px) {
    .profit__wrap {
        display: none
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .profit__wrap {
        display: flex
    }
}

.profit__wrap .content .title {
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 600
}

.profit__wrap .content span {
    display: block;
    font-size: 13px;
    font-weight: 500
}

.profit__wrap-two {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px;
    border: 1px solid #E1E1E1;
    background: var(--tg-color-white-default);
    gap: 10px;
    padding: 19px 23px;
    z-index: 2
}

    .profit__wrap-two .icon {
        font-size: 60px;
        line-height: 0;
        color: var(--tg-theme-primary)
    }

    .profit__wrap-two .content .title {
        margin-bottom: 5px;
        font-size: 20px;
        font-weight: 600
    }

    .profit__wrap-two .content span {
        display: block;
        font-size: 13px;
        font-weight: 500
    }

.profit__wrap-five {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: var(--tg-theme-primary);
    position: absolute;
    gap: 5px;
    padding: 10px 15px;
    right: 0;
    bottom: 6px
}

    .profit__wrap-five .content .count {
        margin-bottom: 0;
        color: var(--tg-color-white-default);
        font-size: 24px
    }

    .profit__wrap-five .content span {
        display: block;
        line-height: 1;
        font-size: 13px;
        font-weight: 600;
        color: var(--tg-color-white-default)
    }

.satisfied-clients {
    background: var(--tg-color-white-default);
    border: 1px solid #DBDDE5;
    padding: 27px 30px
}

    .satisfied-clients span {
        display: block;
        font-size: 14px;
        font-weight: 600;
        line-height: 1;
        margin-bottom: 5px
    }

.section__line-wrap {
    top: 0;
    left: 50%;
    bottom: 0;
    width: 100%;
    z-index: -2;
    position: absolute;
    transform: translateX(-50%);
    max-width: 1226px;
    margin: auto;
    display: flex
}

@media (max-width:1199.98px) {
    .section__line-wrap {
        max-width: 936px
    }
}

.section__line-wrap .line__item {
    height: 100%;
    position: relative;
    width: 25%;
    flex: 0 0 auto
}

.section__line-wrap span {
    height: 100%;
    display: block;
    width: 1px;
    background: #EBEBEB
}

.section-py-130 {
    padding: 100px 0
}

@media (max-width:991.98px) {
    .section-py-130 {
        padding: 100px 0
    }
}

@media (max-width:767.98px) {
    .section-py-130 {
        padding: 80px 0
    }
}

.section-pt-70 {
    padding-top: 70px
}

@media (max-width:991.98px) {
    .section-pt-130 {
        padding-top: 100px
    }
}

@media (max-width:767.98px) {
    .section-pt-130 {
        padding-top: 80px
    }
}

.section-pb-130 {
    padding-bottom: 130px
}

@media (max-width:991.98px) {
    .section-pb-130 {
        padding-bottom: 100px
    }
}

@media (max-width:767.98px) {
    .section-pb-130 {
        padding-bottom: 80px
    }
}

.services__area-two {
    position: relative;
    z-index: 1
}

    .services__area-two::before {
        content: "";
        position: absolute;
        right: -210px;
        top: 130px;
        width: 418px;
        height: 418px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -o-border-radius: 50%;
        -ms-border-radius: 50%;
        border-radius: 50%;
        background: #55FF8F;
        filter: blur(100px);
        z-index: -1;
        opacity: .1
    }

    .services__area-two::after {
        content: "";
        position: absolute;
        left: -290px;
        bottom: -140px;
        width: 530px;
        height: 530px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -o-border-radius: 50%;
        -ms-border-radius: 50%;
        border-radius: 50%;
        background: #F55;
        opacity: .1;
        filter: blur(100px);
        z-index: -1
    }

.services__area-eleven {
    position: relative;
    z-index: 1;
    background: var(--tg-color-gray-2)
}

.services__bg {
    background-size: cover;
    background-position: center;
    background-color: var(--tg-color-gray-2);
    position: relative;
    z-index: 1
}

.services__bg-two {
    position: relative;
    z-index: 1
}

.services__bg-three {
    background-size: cover;
    background-position: center
}

.services__bg-four {
    background-size: cover;
    background-position: center;
    background-color: var(--tg-theme-secondary)
}

.services__bg-five {
    background-size: cover;
    background-position: center
}

.services__bg-six {
    background-size: cover;
    background-position: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 57.6%;
    z-index: -1
}

    .services__bg-six::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: var(--tg-theme-secondary);
        opacity: .8;
        z-index: -1
    }

    .services__bg-six img {
        position: absolute;
        z-index: -1
    }

        .services__bg-six img:nth-child(1) {
            right: 0;
            top: 0
        }

        .services__bg-six img:nth-child(2) {
            left: 0;
            bottom: 0;
            mix-blend-mode: luminosity
        }

.services__bg-seven {
    background-position: center;
    background-size: cover
}

.services-active {
    margin-right: -445px
}

@media (max-width:767.98px) {
    .services-active {
        margin-right: 0
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .services-active {
        margin-right: -170px
    }
}

.services__item {
    background: var(--tg-color-white-default);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s
}

.services__item-shape img {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: .3;
    filter: grayscale(1);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s
}

.services__item-shape-two {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1
}

    .services__item-shape-two svg {
        width: 100%;
        height: 100%;
        overflow: visible;
        display: block;
        filter: drop-shadow(10px 10px 20px rgb(0 0 0 / .06));
        stroke-width: 1px;
        stroke: #DFE1ED
    }

.services__item:hover {
    box-shadow: 0 4px 50px 0 rgb(0 0 0 / .1)
}

    .services__item:hover .services__item-shape img {
        opacity: 1;
        filter: grayscale(0)
    }

.services__item-two {
    background: var(--tg-color-white-default);
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -o-border-radius: 30px;
    -ms-border-radius: 30px;
    border-radius: 30px;
    padding: 50px 45px
}

@media (max-width:1199.98px) {
    .services__item-two {
        padding: 40px 30px
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .services__item-two {
        padding: 40px 40px
    }
}

.services__item-two:hover .services__icon-two i {
    transform: rotateY(180deg)
}

.services__item-three {
    background: var(--tg-color-white-default);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
    border: 1px solid #DFE1ED;
    padding: 40px 25px 38px 40px;
    box-shadow: 10px 10px 20px 0 rgb(0 0 0 / .06);
    height: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s
}

@media (max-width:767.98px) {
    .services__item-three {
        padding: 40px 25px 38px 30px
    }
}

.services__item-three:hover {
    transform: translateY(-5px)
}

    .services__item-three:hover .services__icon-three {
        transform: rotateY(180deg)
    }

.services__item-four {
    position: relative;
    z-index: 1;
    padding: 40px 35px 83px
}

@media (max-width:1800px) {
    .services__item-four {
        padding: 40px 35px 75px
    }
}

@media (max-width:1199.98px) {
    .services__item-four {
        padding: 30px 25px 75px
    }
}

.services__item-four .tg-btn {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 19px 21px
}

@media (max-width:1800px) {
    .services__item-four .tg-btn {
        padding: 19px 16px
    }
}

@media (max-width:1500px) {
    .services__item-four .tg-btn {
        padding: 19px 19px
    }
}

@media (max-width:1199.98px) {
    .services__item-four .tg-btn {
        padding: 19px 10px;
        font-size: 13px;
        gap: 5px
    }
}

@media (max-width:991.98px) {
    .services__item-four .tg-btn {
        padding: 19px 13px;
        font-size: 15px;
        gap: 8px
    }
}

.services__item-four:hover .services__icon-four i {
    transform: rotateY(180deg)
}

.services__item-five {
    background: var(--tg-color-white-default);
    border: 1px solid var(--tg-border-11);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
    padding: 17px 50px 17px 20px;
    margin-bottom: 24px
}

@media (max-width:1199.98px) {
    .services__item-five {
        padding: 17px 20px 17px 20px
    }
}

@media (max-width:991.98px) {
    .services__item-five {
        padding: 30px
    }
}

@media (max-width:767.98px) {
    .services__item-five {
        padding: 20px
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .services__item-five {
        padding: 25px
    }
}

.services__item-five:last-child {
    margin-bottom: 0
}

.services__item-six {
    background: var(--tg-color-white-default);
    border: 1px solid #E6E6E6;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px;
    padding: 40px 40px
}

@media (max-width:1500px) {
    .services__item-six {
        padding: 30px 25px
    }
}

.services__item-six:hover .services__icon-six i {
    transform: rotateY(180deg)
}

.services__item-seven {
    background: var(--tg-color-gray-2);
    padding: 40px 40px;
    position: relative;
    z-index: 1;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px
}

    .services__item-seven:hover .services__icon-seven i {
        transform: rotateY(180deg)
    }

    .services__item-seven .number {
        margin-bottom: 0;
        font-size: 60px;
        line-height: 1;
        position: absolute;
        right: 40px;
        top: 40px;
        color: #fff0;
        -webkit-text-stroke: 1px #DFDFDF;
        z-index: -1
    }

.services__item-eight {
    border: 1px solid var(--tg-border-14);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
    padding: 40px 40px;
    height: 100%
}

@media (max-width:1199.98px) {
    .services__item-eight {
        padding: 30px 30px
    }
}

.services__item-eight .services__item-top .title {
    font-size: 20px
}

.services__item-eight:hover .services__icon-four i {
    transform: rotateY(180deg)
}

.services__item-nine {
    background: var(--tg-color-white-default);
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px;
    overflow: hidden
}

.services__item-ten {
    background: var(--tg-color-white-default);
    border: 1px solid var(--tg-border-14);
    -webkit-border-radius: 20px 30px;
    -moz-border-radius: 20px 30px;
    -o-border-radius: 20px 30px;
    -ms-border-radius: 20px 30px;
    border-radius: 20px 30px;
    overflow: hidden;
    padding: 40px 40px
}

@media (max-width:1199.98px) {
    .services__item-ten {
        padding: 30px 30px
    }
}

.services__item-ten .services__icon-two {
    font-size: 50px;
    padding: 10px 0 0 14px
}

    .services__item-ten .services__icon-two::before {
        width: 50px;
        height: 50px
    }

.services__item-ten:hover .services__icon-two i {
    transform: rotateY(180deg)
}

.services__item-eleven {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: var(--tg-color-white-default);
    border: 1px solid #E6E6E6;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px;
    padding: 36px 36px;
    gap: 30px
}

@media (max-width:1199.98px) {
    .services__item-eleven {
        padding: 20px 20px;
        gap: 20px
    }
}

@media (max-width:991.98px) {
    .services__item-eleven {
        padding: 30px 30px;
        gap: 30px
    }
}

@media (max-width:767.98px) {
    .services__item-eleven {
        flex-wrap: wrap;
        gap: 25px
    }
}

.services__item-eleven:hover .services__icon-eight i {
    transform: rotateY(180deg)
}

.services__item-twelve {
    background: var(--tg-color-white-default);
    height: 100%
}

    .services__item-twelve:hover .services__icon-nine i {
        transform: rotateY(180deg)
    }

.services__item-wrap .row > *:nth-child(even) .services__item-three {
    margin-top: 20px
}

@media (max-width:991.98px) {
    .services__item-wrap .row > *:nth-child(even) .services__item-three {
        margin-top: 0
    }
}

.services__item-wrap-two {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
    gap: 40px
}

@media (max-width:991.98px) {
    .services__item-wrap-two {
        gap: 25px
    }
}

@media (max-width:767.98px) {
    .services__item-wrap-two {
        flex-wrap: wrap;
        gap: 50px
    }
}

.services__item-wrap-two .nav-tabs {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    width: 37%;
    flex: 0 0 auto;
    border: none
}

@media (max-width:991.98px) {
    .services__item-wrap-two .nav-tabs {
        width: 42%
    }
}

@media (max-width:767.98px) {
    .services__item-wrap-two .nav-tabs {
        width: 100%
    }
}

.services__item-wrap-two .nav-item:first-child .nav-link {
    -webkit-border-radius: 0 15px 0 0;
    -moz-border-radius: 0 15px 0 0;
    -o-border-radius: 0 15px 0 0;
    -ms-border-radius: 0 15px 0 0;
    border-radius: 0 15px 0 0
}

.services__item-wrap-two .nav-item:last-child .nav-link {
    -webkit-border-radius: 0 0 15px 0;
    -moz-border-radius: 0 0 15px 0;
    -o-border-radius: 0 0 15px 0;
    -ms-border-radius: 0 0 15px 0;
    border-radius: 0 0 15px 0
}

.services__item-wrap-two .nav-link {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 0;
    text-align: left;
    gap: 10px;
    border: 1px solid #10113E;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    margin-top: 0;
    padding: 30px 45px 30px 35px;
    border-left: 4px solid #10113E;
    background: var(--tg-theme-secondary);
    color: #C1C6E3
}

@media (max-width:1199.98px) {
    .services__item-wrap-two .nav-link {
        padding: 30px 25px 30px 25px
    }
}

@media (max-width:991.98px) {
    .services__item-wrap-two .nav-link {
        padding: 25px 25px 25px 25px
    }
}

.services__item-wrap-two .nav-link .content__left {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 25px
}

@media (max-width:1199.98px) {
    .services__item-wrap-two .nav-link .content__left {
        gap: 15px
    }
}

.services__item-wrap-two .nav-link .content__left i {
    font-size: 50px
}

@media (max-width:991.98px) {
    .services__item-wrap-two .nav-link .content__left i {
        font-size: 45px
    }
}

.services__item-wrap-two .nav-link .content__left strong {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4
}

@media (max-width:991.98px) {
    .services__item-wrap-two .nav-link .content__left strong {
        font-size: 16px
    }
}

.services__item-wrap-two .nav-link:hover {
    border-color: #10113E
}

.services__item-wrap-two .nav-link.active {
    background: var(--tg-theme-primary);
    border-color: var(--tg-theme-primary);
    border-left-color: var(--tg-color-white-default);
    color: var(--tg-color-white-default)
}

.services__item-top {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px
}

    .services__item-top .title {
        margin-bottom: 0;
        font-size: 24px;
        font-weight: 600
    }

@media (max-width:1199.98px) {
    .services__item-top .title {
        font-size: 20px
    }
}

@media (max-width:991.98px) {
    .services__item-top .title {
        font-size: 22px
    }
}

.services__item-left {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 45px
}

@media (max-width:1199.98px) {
    .services__item-left {
        gap: 25px
    }
}

@media (max-width:991.98px) {
    .services__item-left {
        margin-bottom: 30px
    }
}

@media (max-width:767.98px) {
    .services__item-left {
        flex-wrap: wrap;
        gap: 45px;
        margin-bottom: 45px
    }
}

.services__item-right {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between
}

@media (max-width:767.98px) {
    .services__item-right {
        flex-wrap: wrap;
        gap: 20px
    }
}

.services__item-right .right__arrow {
    width: 60px;
    height: 60px;
    flex: 0 0 auto;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px;
    background: var(--tg-color-gray-1);
    color: var(--tg-theme-primary)
}

    .services__item-right .right__arrow:hover {
        color: var(--tg-color-white-default);
        background: var(--tg-theme-primary)
    }

.services__thumb {
    position: relative
}

    .services__thumb img {
        width: 100%;
        height: 250px;
        object-fit: cover
    }

.services__thumb-five {
    width: 268px;
    flex: 0 0 auto
}

@media (max-width:1199.98px) {
    .services__thumb-five {
        width: 210px
    }
}

@media (max-width:991.98px) {
    .services__thumb-five {
        width: 268px
    }
}

@media (max-width:767.98px) {
    .services__thumb-five {
        width: 100%
    }
}

.services__thumb-five img {
    width: 100%;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px
}

.services__thumb-six {
    position: relative;
    margin-bottom: 20px
}

    .services__thumb-six img {
        width: 100%;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -o-border-radius: 10px;
        -ms-border-radius: 10px;
        border-radius: 10px;
        height: 220px;
        object-fit: cover
    }

@media (max-width:767.98px) {
    .services__thumb-six img {
        height: auto
    }
}

.services__thumb-seven img {
    width: 100%;
    height: 400px;
    object-fit: cover
}

@media (max-width:991.98px) {
    .services__thumb-seven img {
        height: 300px
    }
}

.services__thumb-eight {
    position: relative;
    z-index: 1
}

    .services__thumb-eight img {
        width: 100%;
        height: 220px;
        object-fit: cover
    }

@media only screen and (min-width:576px) and (max-width:767px) {
    .services__thumb-eight img {
        height: 250px
    }
}

.services__thumb-eleven {
    position: relative;
    width: 218px;
    flex: 0 0 auto
}

@media (max-width:1199.98px) {
    .services__thumb-eleven {
        width: 190px
    }
}

@media (max-width:991.98px) {
    .services__thumb-eleven {
        width: 210px
    }
}

@media (max-width:767.98px) {
    .services__thumb-eleven {
        width: 100%
    }
}

.services__thumb-eleven img {
    width: 100%;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px;
    height: 200px;
    object-fit: cover
}

@media (max-width:767.98px) {
    .services__thumb-eleven img {
        height: auto
    }
}

.services__thumb-thirteen img {
    width: 100%;
    height: 355px;
    object-fit: cover
}

.services__icon {
    width: 70px;
    height: 70px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tg-theme-primary);
    color: var(--tg-color-white-default);
    font-size: 40px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px;
    position: absolute;
    left: 37px;
    bottom: 21px
}

.services__icon-two {
    font-size: 60px;
    color: var(--tg-theme-primary);
    position: relative;
    padding: 10px 0 0 17px;
    z-index: 1;
    margin-bottom: 20px;
    display: inline-block
}

    .services__icon-two::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 60px;
        height: 60px;
        background: #EAF0FF;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -o-border-radius: 10px;
        -ms-border-radius: 10px;
        border-radius: 10px;
        z-index: -1
    }

    .services__icon-two i {
        -webkit-transition: all 0.5s ease-out 0s;
        -moz-transition: all 0.5s ease-out 0s;
        -ms-transition: all 0.5s ease-out 0s;
        -o-transition: all 0.5s ease-out 0s;
        transition: all 0.5s ease-out 0s
    }

.services__icon-three {
    font-size: 50px;
    color: var(--tg-theme-primary);
    display: inline-block;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    margin-bottom: 25px
}

.services__icon-four {
    width: 70px;
    height: 70px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tg-color-gray-1);
    color: var(--tg-theme-primary);
    font-size: 40px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px;
    flex: 0 0 auto
}

    .services__icon-four i {
        -webkit-transition: all 0.5s ease-out 0s;
        -moz-transition: all 0.5s ease-out 0s;
        -ms-transition: all 0.5s ease-out 0s;
        -o-transition: all 0.5s ease-out 0s;
        transition: all 0.5s ease-out 0s
    }

.services__icon-six {
    width: 70px;
    height: 70px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tg-theme-primary);
    color: var(--tg-color-white-default);
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 40px;
    border-radius: 0 15px 0 10px
}

    .services__icon-six i {
        -webkit-transition: all 0.5s ease-out 0s;
        -moz-transition: all 0.5s ease-out 0s;
        -ms-transition: all 0.5s ease-out 0s;
        -o-transition: all 0.5s ease-out 0s;
        transition: all 0.5s ease-out 0s
    }

.services__icon-seven {
    position: relative;
    font-size: 50px;
    color: var(--tg-theme-primary);
    padding: 8px 0 0 14px;
    display: inline-block;
    margin-bottom: 18px
}

    .services__icon-seven::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 50px;
        height: 50px;
        background: #EAF0FF;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -o-border-radius: 8px;
        -ms-border-radius: 8px;
        border-radius: 8px;
        z-index: -1
    }

    .services__icon-seven i {
        -webkit-transition: all 0.5s ease-out 0s;
        -moz-transition: all 0.5s ease-out 0s;
        -ms-transition: all 0.5s ease-out 0s;
        -o-transition: all 0.5s ease-out 0s;
        transition: all 0.5s ease-out 0s
    }

.services__icon-eight {
    width: 60px;
    height: 60px;
    background: var(--tg-theme-primary);
    color: var(--tg-color-white-default);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 0 10px 10px 0;
    -moz-border-radius: 0 10px 10px 0;
    -o-border-radius: 0 10px 10px 0;
    -ms-border-radius: 0 10px 10px 0;
    border-radius: 0 10px 10px 0;
    font-size: 36px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%)
}

    .services__icon-eight i {
        -webkit-transition: all 0.5s ease-out 0s;
        -moz-transition: all 0.5s ease-out 0s;
        -ms-transition: all 0.5s ease-out 0s;
        -o-transition: all 0.5s ease-out 0s;
        transition: all 0.5s ease-out 0s
    }

.services__icon-nine {
    width: 60px;
    height: 60px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tg-theme-primary);
    color: var(--tg-color-white-default);
    font-size: 30px;
    position: absolute;
    left: 34px;
    top: 0
}

    .services__icon-nine i {
        -webkit-transition: all 0.5s ease-out 0s;
        -moz-transition: all 0.5s ease-out 0s;
        -ms-transition: all 0.5s ease-out 0s;
        -o-transition: all 0.5s ease-out 0s;
        transition: all 0.5s ease-out 0s
    }

.services__content {
    padding: 25px 40px 37px
}

@media (max-width:1199.98px) {
    .services__content {
        padding: 25px 20px 25px
    }
}

.services__content .title {
    margin-bottom: 13px;
    font-size: 20px;
    font-weight: 600
}

.services__content p {
    margin-bottom: 25px
}

.services__content-two .title {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600
}

.services__content-two p {
    margin-bottom: 20px
}

.services__content-three .title {
    margin-bottom: 12px;
    font-size: 20px
}

@media (max-width:767.98px) {
    .services__content-three .title br {
        display: none
    }
}

.services__content-three p {
    margin-bottom: 0
}

.services__content-four p {
    margin-bottom: 0
}

.services__content-five {
    position: relative;
    z-index: 1
}

    .services__content-five .title {
        margin-bottom: 0;
        font-size: 24px;
        font-weight: 600
    }

@media (max-width:1199.98px) {
    .services__content-five .title {
        font-size: 22px
    }
}

@media (max-width:991.98px) {
    .services__content-five .title {
        font-size: 24px
    }
}

.services__content-five .title a {
    display: inline;
    background-image: linear-gradient(var(--tg-heading-color),var(--tg-heading-color)),linear-gradient(var(--tg-heading-color),var(--tg-heading-color));
    background-size: 0% 2px,0 2px;
    background-position: 100% 100%,0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.4s linear
}

    .services__content-five .title a:hover {
        color: inherit;
        background-size: 0 2px,100% 2px
    }

.services__content-five .number {
    font-size: 130px;
    font-weight: 300;
    line-height: .7;
    margin-bottom: 0;
    color: #F5F5F5;
    z-index: -1;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%)
}

@media (max-width:1199.98px) {
    .services__content-five .number {
        font-size: 110px
    }
}

.services__content-six .title {
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 600
}

.services__content-six p {
    margin-bottom: 25px
}

.services__content-six .tg-btn {
    background: var(--tg-color-gray-1);
    color: var(--tg-theme-primary)
}

    .services__content-six .tg-btn::before {
        background: var(--tg-theme-primary)
    }

    .services__content-six .tg-btn:hover {
        color: var(--tg-color-white-default)
    }

.services__content-seven .title {
    font-size: 20px;
    font-weight: 600;
    border-bottom: 1px solid #E6E6E6;
    padding-bottom: 20px;
    margin-bottom: 28px
}

.services__content-seven .about__list-item {
    margin-bottom: 30px
}

    .services__content-seven .about__list-item li {
        margin-bottom: 12px;
        font-weight: 400
    }

        .services__content-seven .about__list-item li:last-child {
            margin-bottom: 0
        }

.services__content-eight p {
    margin-bottom: 22px
}

.services__content-nine {
    position: relative;
    z-index: 1;
    padding: 35px 70px 26px 35px
}

@media (max-width:991.98px) {
    .services__content-nine {
        padding: 25px 60px 26px 25px
    }
}

.services__content-nine .title {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 600
}

@media (max-width:991.98px) {
    .services__content-nine .title {
        font-size: 22px
    }
}

.services__content-nine p {
    margin-bottom: 0
}

.services__content-nine .tg-btn {
    border: none;
    padding: 0;
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tg-theme-primary);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    position: absolute;
    right: 0;
    bottom: 0
}

    .services__content-nine .tg-btn:hover {
        background: var(--tg-theme-secondary)
    }

.services__content-ten .title {
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 20px
}

.services__content-ten p {
    margin-bottom: 20px
}

.services__content-ten .tg-btn {
    background: var(--tg-color-gray-1);
    color: var(--tg-theme-primary)
}

    .services__content-ten .tg-btn:hover {
        background: var(--tg-color-gray-1);
        color: var(--tg-color-white-default)
    }

    .services__content-ten .tg-btn::before {
        background: var(--tg-theme-primary)
    }

.services__content-eleven .title {
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 600
}

@media (max-width:1199.98px) {
    .services__content-eleven .title {
        font-size: 20px;
        margin-bottom: 10px
    }
}

@media (max-width:991.98px) {
    .services__content-eleven .title {
        font-size: 22px
    }
}

.services__content-eleven p {
    margin-bottom: 20px
}

@media (max-width:1199.98px) {
    .services__content-eleven p {
        margin-bottom: 15px
    }
}

.services__content-twelve {
    border: 1px solid #ededed;
    border-top: none;
    padding: 25px 30px 25px;
    box-shadow: 0 0 15px 0 #f0f0f0
}

    .services__content-twelve .title {
        margin-bottom: 8px;
        font-size: 20px;
        font-weight: 600
    }

    .services__content-twelve p {
        margin-bottom: 0
    }

.services__content-thirteen {
    background: var(--tg-color-white-default);
    border: 1px solid #D6D6D6;
    border-top: none;
    padding: 16px 16px 16px 25px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

    .services__content-thirteen .content-left {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        gap: 20px
    }

        .services__content-thirteen .content-left .icon {
            font-size: 50px;
            color: var(--tg-theme-primary)
        }

        .services__content-thirteen .content-left .title {
            margin-bottom: 0;
            font-size: 20px;
            font-weight: 600
        }

    .services__content-thirteen .arrow {
        width: 60px;
        height: 60px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--tg-color-gray-4);
        border-radius: 0;
        border: none;
        color: #E46107;
        flex: 0 0 auto;
        padding: 0
    }

        .services__content-thirteen .arrow:hover {
            background: #E46107;
            color: var(--tg-color-white-default)
        }

.services__bottom-content p {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500
}

    .services__bottom-content p a {
        font-size: 15px;
        font-weight: 600;
        margin-left: 3px;
        position: relative
    }

        .services__bottom-content p a::before {
            content: "";
            position: absolute;
            left: 0;
            bottom: -1px;
            width: 100%;
            height: 1px;
            background: currentColor;
            transform-origin: right top;
            transform: scale(0,1);
            transition: transform 0.4s cubic-bezier(.74,.72,.27,.24)
        }

        .services__bottom-content p a:hover {
            color: var(--tg-theme-secondary)
        }

            .services__bottom-content p a:hover::before {
                -webkit-transform-origin: left top;
                -ms-transform-origin: left top;
                transform-origin: left top;
                -webkit-transform: scale(1,1);
                -ms-transform: scale(1,1);
                transform: scale(1,1)
            }

.services__bottom-content-two p a {
    color: var(--tg-body-color)
}

.services__bottom-content-white p {
    color: var(--tg-color-white-default)
}

    .services__bottom-content-white p a {
        color: #241571;
        font-size: 23px
    }

        .services__bottom-content-white p a:hover {
            color: #241571
        }

.services__pagination {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 60px
}

    .services__pagination .swiper-pagination-bullet {
        width: 20px;
        height: 20px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -o-border-radius: 50%;
        -ms-border-radius: 50%;
        border-radius: 50%;
        background: var(--tg-color-white-default);
        margin: 0 !important;
        border: 1px solid #CECFD7;
        opacity: 1;
        position: relative;
        box-shadow: 10px 10px 20px 0 rgb(0 0 0 / .06)
    }

        .services__pagination .swiper-pagination-bullet::before {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%,-50%);
            width: 12px;
            height: 12px;
            background: var(--tg-theme-primary);
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            -o-border-radius: 50%;
            -ms-border-radius: 50%;
            border-radius: 50%;
            opacity: 0;
            -webkit-transition: all 0.3s ease-out 0s;
            -moz-transition: all 0.3s ease-out 0s;
            -ms-transition: all 0.3s ease-out 0s;
            -o-transition: all 0.3s ease-out 0s;
            transition: all 0.3s ease-out 0s
        }

    .services__pagination .swiper-pagination-bullet-active::before {
        opacity: 1
    }

.services__details-thumb {
    margin-bottom: 40px
}

    .services__details-thumb img {
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        -o-border-radius: 20px;
        -ms-border-radius: 20px;
        border-radius: 20px;
        width: 100%;
        min-height: 300px;
        object-fit: cover
    }

.services__details-thumb-two {
    margin-bottom: 40px
}

    .services__details-thumb-two img {
        width: auto;
        max-height: 500px;
        min-height: 350px;
        object-fit: cover;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -o-border-radius: 15px;
        -ms-border-radius: 15px;
        border-radius: 15px
    }

.services__details-thumb-three {
    margin-bottom: 30px
}

    .services__details-thumb-three img {
        width: 100%;
        min-height: 300px;
        object-fit: cover;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -o-border-radius: 15px;
        -ms-border-radius: 15px;
        border-radius: 15px
    }

.services__details-thumb-four img {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
    min-height: 350px;
    object-fit: cover
}

.services__details-content .title-two {
    margin-bottom: 15px;
    font-size: 30px;
    font-weight: 600
}

@media (max-width:767.98px) {
    .services__details-content .title-two {
        font-size: 26px
    }
}

.services__details-content > p {
    margin-bottom: 15px
}

.services__details-content-top .title {
    margin-bottom: 15px;
    font-size: 36px
}

@media (max-width:1199.98px) {
    .services__details-content-top .title {
        font-size: 34px
    }
}

@media (max-width:767.98px) {
    .services__details-content-top .title {
        font-size: 30px
    }
}

.services__details-content-top > p {
    margin-bottom: 25px
}

.services__details-content-bottom {
    text-align: center;
    margin-top: 50px
}

    .services__details-content-bottom .title {
        margin-bottom: 40px;
        font-size: 36px
    }

@media (max-width:1199.98px) {
    .services__details-content-bottom .title {
        font-size: 34px
    }
}

@media (max-width:767.98px) {
    .services__details-content-bottom .title {
        font-size: 30px
    }
}

.services__details-content-bottom .title span {
    display: block;
    font-weight: 500;
    font-size: 30px
}

@media (max-width:767.98px) {
    .services__details-content-bottom .title span {
        font-size: 26px
    }
}

.services__details-content-bottom-two {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 25px
}

@media (max-width:767.98px) {
    .services__details-content-bottom-two {
        flex-wrap: wrap
    }
}

.services__details-content-bottom-two .thumb {
    width: 270px;
    flex: 0 0 auto;
    height: 100%
}

@media (max-width:767.98px) {
    .services__details-content-bottom-two .thumb {
        width: 100%
    }
}

.services__details-content-bottom-two .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px
}

.services__details-content-bottom-two .content p:last-child {
    margin-bottom: 0
}

.services__details-content-two {
    padding: 0 105px
}

@media (max-width:1199.98px) {
    .services__details-content-two {
        padding: 0 60px
    }
}

@media (max-width:991.98px) {
    .services__details-content-two {
        padding: 0 0
    }
}

.services__details-content-two p {
    margin-bottom: 0
}

.services__details-content-three .title {
    margin-bottom: 20px;
    font-size: 34px
}

@media (max-width:1199.98px) {
    .services__details-content-three .title {
        font-size: 32px
    }
}

@media (max-width:767.98px) {
    .services__details-content-three .title {
        font-size: 30px
    }
}

@media (max-width:1199.98px) {
    .services__details-content-three .title br {
        display: none
    }
}

.services__details-content-three > p {
    margin-bottom: 15px
}

    .services__details-content-three > p:last-child {
        margin-bottom: 0
    }

.services__details-content-three .services__details-inner-images {
    margin-top: 30px
}

.services__details-content-four {
    margin-bottom: 60px
}

@media (max-width:1199.98px) {
    .services__details-content-four {
        margin-bottom: 40px
    }
}

.services__details-content-four .title {
    margin-bottom: 20px;
    font-size: 40px
}

@media (max-width:1199.98px) {
    .services__details-content-four .title {
        font-size: 36px
    }
}

.services__details-content-four .title span {
    font-weight: 400
}

.services__details-content-four p {
    margin-bottom: 0;
    width: 88%
}

@media (max-width:1199.98px) {
    .services__details-content-four p {
        width: 100%
    }
}

.services__details-quality {
    margin-top: 40px;
    margin-bottom: 50px
}

    .services__details-quality > p {
        margin-bottom: 30px
    }

.services__details-quality-inner {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between
}

@media (max-width:767.98px) {
    .services__details-quality-inner {
        justify-content: flex-start;
        flex-wrap: wrap
    }
}

.services__details-quality-inner .about__list-item-two {
    flex-grow: 1
}

.services__details-client-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

@media (max-width:1199.98px) {
    .services__details-client-wrap {
        flex-wrap: wrap;
        justify-content: flex-end;
        flex: 0 0
    }
}

@media (max-width:991.98px) {
    .services__details-client-wrap {
        flex-wrap: nowrap;
        justify-content: space-between;
        flex: 0 1
    }
}

@media (max-width:767.98px) {
    .services__details-client-wrap {
        flex-wrap: wrap;
        justify-content: flex-start;
        flex: auto
    }
}

.services__details-inner-images {
    margin-bottom: 35px
}

    .services__details-inner-images img {
        width: 100%;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -o-border-radius: 15px;
        -ms-border-radius: 15px;
        border-radius: 15px
    }

    .services__details-inner-images .img-two {
        position: relative
    }

@media (max-width:767.98px) {
    .services__details-inner-images .img-two {
        margin-top: 25px
    }
}

.services__details-inner-images .img-two .play__btn-two {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 70px;
    height: 70px
}

    .services__details-inner-images .img-two .play__btn-two svg {
        width: 18px;
        height: auto
    }

.services__details-benefit {
    margin-bottom: 30px
}

    .services__details-benefit img {
        width: 100%;
        min-height: 300px;
        object-fit: cover;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -o-border-radius: 15px;
        -ms-border-radius: 15px;
        border-radius: 15px;
        margin-bottom: 30px
    }

.services__sidebar {
    margin-right: 26px
}

@media (max-width:1199.98px) {
    .services__sidebar {
        margin-right: 0
    }
}

@media (max-width:991.98px) {
    .services__sidebar {
        margin-top: 80px
    }
}

.services__sidebar-two {
    margin-left: 26px
}

@media (max-width:1199.98px) {
    .services__sidebar-two {
        margin-left: 0
    }
}

@media (max-width:991.98px) {
    .services__sidebar-two {
        margin-top: 80px
    }
}

.services__shape-wrap img {
    position: absolute;
    z-index: -1
}

    .services__shape-wrap img:nth-child(1) {
        right: 0;
        top: 0
    }

@media (max-width:1500px) {
    .services__shape-wrap img:nth-child(1) {
        max-width: 330px
    }
}

@media (max-width:991.98px) {
    .services__shape-wrap img:nth-child(1) {
        max-width: 250px
    }
}

.services__shape-wrap img:nth-child(2) {
    left: 0;
    bottom: 0
}

@media (max-width:1500px) {
    .services__shape-wrap img:nth-child(2) {
        max-width: 330px
    }
}

@media (max-width:991.98px) {
    .services__shape-wrap img:nth-child(2) {
        max-width: 250px
    }
}

.services__shape-wrap-two img {
    position: absolute;
    z-index: -1;
    left: 90px;
    top: 103px
}

@media (max-width:1500px) {
    .services__shape-wrap-two img {
        left: 70px;
        top: 30px
    }
}

@media (max-width:991.98px) {
    .services__shape-wrap-two img {
        display: none
    }
}

.services__shape-wrap-three img {
    position: absolute;
    z-index: -1
}

    .services__shape-wrap-three img:nth-child(1) {
        right: 7%;
        top: 10%
    }

@media (max-width:1800px) {
    .services__shape-wrap-three img:nth-child(1) {
        right: 3%;
        top: 5%;
        max-width: 120px
    }
}

@media (max-width:1500px) {
    .services__shape-wrap-three img:nth-child(1) {
        top: 3%;
        max-width: 100px
    }
}

@media (max-width:767.98px) {
    .services__shape-wrap-three img:nth-child(1) {
        display: none
    }
}

.services__shape-wrap-three img:nth-child(2) {
    left: 15%;
    bottom: 13%
}

@media (max-width:1800px) {
    .services__shape-wrap-three img:nth-child(2) {
        left: 9%
    }
}

@media (max-width:1500px) {
    .services__shape-wrap-three img:nth-child(2) {
        left: 2%
    }
}

@media (max-width:991.98px) {
    .services__shape-wrap-three img:nth-child(2) {
        bottom: 8%
    }
}

@media (max-width:767.98px) {
    .services__shape-wrap-three img:nth-child(2) {
        bottom: 5%
    }
}

.sidebar__widget-title {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px
}

    .sidebar__widget-title::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 30px;
        height: 5px;
        background: var(--tg-theme-primary);
        -webkit-border-radius: 100px;
        -moz-border-radius: 100px;
        -o-border-radius: 100px;
        -ms-border-radius: 100px;
        border-radius: 100px
    }

.sidebar__cat-list .list-wrap li {
    margin-bottom: 9px
}

    .sidebar__cat-list .list-wrap li:last-child {
        margin-bottom: 0
    }

    .sidebar__cat-list .list-wrap li a {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        border-radius: 8px;
        border: 1px solid #E8EBF5;
        background: var(--tg-color-gray-2);
        color: var(--tg-body-color);
        font-size: 18px;
        font-weight: 600;
        padding: 8px 9px 8px 20px
    }

        .sidebar__cat-list .list-wrap li a span {
            width: 46px;
            height: 46px;
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--tg-color-white-default);
            flex: 0 0 auto;
            -webkit-border-radius: 6px;
            -moz-border-radius: 6px;
            -o-border-radius: 6px;
            -ms-border-radius: 6px;
            border-radius: 6px;
            margin-left: auto;
            color: var(--tg-body-color)
        }

        .sidebar__cat-list .list-wrap li a:hover {
            background: var(--tg-theme-primary);
            border-color: var(--tg-theme-primary);
            color: var(--tg-color-white-default)
        }

            .sidebar__cat-list .list-wrap li a:hover span {
                color: var(--tg-theme-primary)
            }

.sidebar__contact {
    background: #080A5B;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -o-border-radius: 12px;
    -ms-border-radius: 12px;
    border-radius: 12px;
    padding: 40px 35px;
    position: relative;
    overflow: hidden;
    z-index: 1
}

    .sidebar__contact .title {
        margin-bottom: 10px;
        color: var(--tg-color-white-default);
        font-size: 22px
    }

    .sidebar__contact p {
        margin-bottom: 25px;
        font-size: 15px;
        font-weight: 500;
        color: var(--tg-color-gray-4)
    }

    .sidebar__contact .shape img {
        position: absolute;
        z-index: -1
    }

        .sidebar__contact .shape img:nth-child(1) {
            left: -31px;
            top: -35px
        }

        .sidebar__contact .shape img:nth-child(2) {
            right: 10px;
            bottom: -25px
        }

.sidebar__brochure > p {
    margin-bottom: 20px
}

.sidebar__brochure a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -o-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
    border: 1px solid #E8EBF5;
    background: var(--tg-color-gray-2);
    padding: 9px 22px 9px 9px;
    gap: 16px;
    margin-bottom: 8px
}

    .sidebar__brochure a:last-child {
        margin-bottom: 0
    }

    .sidebar__brochure a .icon {
        width: 45px;
        height: 45px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        background: var(--tg-theme-primary);
        color: var(--tg-color-white-default);
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        -o-border-radius: 6px;
        -ms-border-radius: 6px;
        border-radius: 6px
    }

    .sidebar__brochure a .content {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-grow: 1
    }

        .sidebar__brochure a .content strong {
            margin-bottom: 0;
            font-weight: 500;
            color: var(--tg-body-color);
            -webkit-transition: all 0.3s ease-out 0s;
            -moz-transition: all 0.3s ease-out 0s;
            -ms-transition: all 0.3s ease-out 0s;
            -o-transition: all 0.3s ease-out 0s;
            transition: all 0.3s ease-out 0s
        }

        .sidebar__brochure a .content svg {
            color: var(--tg-border-1);
            -webkit-transition: all 0.3s ease-out 0s;
            -moz-transition: all 0.3s ease-out 0s;
            -ms-transition: all 0.3s ease-out 0s;
            -o-transition: all 0.3s ease-out 0s;
            transition: all 0.3s ease-out 0s
        }

    .sidebar__brochure a:hover .content strong {
        color: var(--tg-theme-primary)
    }

    .sidebar__brochure a:hover .content svg {
        color: var(--tg-theme-primary)
    }

.col-70 {
    width: 70.7%;
    flex: 0 0 auto
}

@media (max-width:1199.98px) {
    .col-70 {
        width: 65%
    }
}

@media (max-width:991.98px) {
    .col-70 {
        width: 100%
    }
}

.col-30 {
    width: 29.3%;
    flex: 0 0 auto
}

@media (max-width:1199.98px) {
    .col-30 {
        width: 35%
    }
}

@media (max-width:991.98px) {
    .col-30 {
        width: 100%
    }
}

.shine__animate-link {
    display: block;
    overflow: hidden;
    position: relative;
    z-index: 1
}

    .shine__animate-link::before {
        position: absolute;
        top: 0;
        left: -100%;
        display: block;
        content: "";
        width: 50%;
        height: 100%;
        background: -o-linear-gradient(left,#fff0 0%,rgb(255 255 255 / .3) 100%);
        background: -webkit-gradient(linear,left top,right top,from(#fff0),to(rgb(255 255 255 / .3)));
        background: linear-gradient(to right,#fff0 0%,rgb(255 255 255 / .3) 100%);
        -webkit-transform: skewX(-25deg);
        -ms-transform: skewX(-25deg);
        transform: skewX(-25deg);
        pointer-events: none
    }

.shine__animate-item:hover .shine__animate-link::before {
    -webkit-animation: hoverShine 1.2s;
    animation: hoverShine 1.2s
}

.services-active-three {
    margin-right: -410px
}

@media (max-width:1500px) {
    .services-active-three {
        margin-right: -350px
    }
}

@media (max-width:1199.98px) {
    .services-active-three {
        margin-right: -250px
    }
}

@media (max-width:991.98px) {
    .services-active-three {
        margin-right: -120px
    }
}

@media (max-width:767.98px) {
    .services-active-three {
        margin-right: 0
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .services-active-three {
        margin-right: -120px
    }
}

.cta__area {
    background: var(--tg-theme-secondary);
    padding: 82px 0;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.cta__area-two {
    position: relative;
    z-index: 2;
    overflow: hidden;
    margin-top: 50px
}

.cta__area-three {
    position: relative;
    z-index: 2;
    margin-top: -85px
}

.cta__area-four {
    background: var(--tg-theme-primary);
    position: relative;
    z-index: 1;
    padding: 97px 0
}

@media (max-width:1199.98px) {
    .cta__area-four {
        padding: 80px 0
    }
}

@media (max-width:991.98px) {
    .cta__area-four {
        padding: 60px 0
    }
}

.cta__area-five {
    background: var(--tg-theme-primary);
    position: relative;
    z-index: 1;
    padding: 49px 0
}

.cta__area-six {
    background: var(--tg-theme-secondary)
}

.cta__area-seven {
    background: var(--tg-theme-primary);
    position: relative;
    z-index: 1;
    padding: 78px 0
}

@media (max-width:1199.98px) {
    .cta__area-seven {
        padding: 55px 0
    }
}

@media (max-width:991.98px) {
    .cta__area-seven {
        padding: 40px 0
    }
}

/*.cta__area-eight {
    background: var(--tg-color-gray-1)
}*/

.cta__inner-wrap {
    background: var(--tg-theme-secondary);
    padding: 63px 0 63px 75px;
    z-index: 1;
    position: relative
}

@media (max-width:1199.98px) {
    .cta__inner-wrap {
        padding: 63px 0 63px 40px
    }
}

.cta__inner-wrap::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 500%;
    height: 100%;
    background: var(--tg-theme-secondary);
    z-index: -1
}

.cta__inner-wrap-two {
    background: #241571;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
    padding: 65px 65px;
    position: relative;
    z-index: 1;
    overflow: hidden
}

@media (max-width:1199.98px) {
    .cta__inner-wrap-two {
        padding: 65px 30px
    }
}

@media (max-width:991.98px) {
    .cta__inner-wrap-two {
        padding: 45px 30px;
        text-align: center
    }
}

.cta__inner-wrap-three {
    -webkit-border-radius: 10px 0 0 50px;
    -moz-border-radius: 10px 0 0 50px;
    -o-border-radius: 10px 0 0 50px;
    -ms-border-radius: 10px 0 0 50px;
    border-radius: 10px 0 0 50px
}

    .cta__inner-wrap-three::before {
        -webkit-border-radius: 10px 0 0 50px;
        -moz-border-radius: 10px 0 0 50px;
        -o-border-radius: 10px 0 0 50px;
        -ms-border-radius: 10px 0 0 50px;
        border-radius: 10px 0 0 50px
    }

.cta__inner-wrap-four {
    position: relative;
    z-index: 2;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 20px
}

.cta__inner-wrap-five {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
    padding: 63px 75px 63px 75px
}

@media (max-width:1199.98px) {
    .cta__inner-wrap-five {
        padding: 63px 50px 63px 50px
    }
}

@media (max-width:767.98px) {
    .cta__inner-wrap-five {
        padding: 40px 30px
    }
}

.cta__inner-wrap-five::before {
    display: none
}

.cta__wrap {
    background: var(--tg-theme-primary);
    position: relative;
    z-index: 1;
    padding: 72px 60px;
    overflow: hidden
}

@media (max-width:1199.98px) {
    .cta__wrap {
        padding: 50px 35px
    }
}

@media (max-width:991.98px) {
    .cta__wrap {
        padding: 30px 35px;
        text-align: center
    }
}

.cta__wrap .shape img {
    position: absolute;
    z-index: -1
}

    .cta__wrap .shape img:nth-child(1) {
        left: 0;
        bottom: 0
    }

    .cta__wrap .shape img:nth-child(2) {
        right: 0;
        top: 0
    }

@media (max-width:991.98px) {
    .cta__content {
        text-align: center
    }
}

@media (max-width:991.98px) {
    .cta__content-two {
        text-align: center
    }
}

.cta__content-two .title {
    color: var(--tg-color-white-default);
    font-size: 30px;
    margin-bottom: 10px
}

.cta__content-two p {
    margin-bottom: 0;
    font-weight: 500;
    color: var(--tg-color-white-default)
}

@media (max-width:991.98px) {
    .cta__content-three {
        margin-bottom: 30px
    }
}

.cta__content-three .title {
    margin-bottom: 0;
    color: var(--tg-color-white-default);
    font-size: 30px;
    font-weight: 600;
    width: 90%
}

@media (max-width:1199.98px) {
    .cta__content-three .title {
        width: 100%
    }
}

.cta__content-right {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 35px
}

@media (max-width:1199.98px) {
    .cta__content-right {
        gap: 25px
    }
}

@media (max-width:991.98px) {
    .cta__content-right {
        justify-content: center;
        text-align: left
    }
}

@media (max-width:767.98px) {
    .cta__content-right {
        flex-wrap: wrap
    }
}

.cta__content-right-two {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px 50px
}

@media (max-width:1199.98px) {
    .cta__content-right-two {
        gap: 20px 30px
    }
}

@media (max-width:991.98px) {
    .cta__content-right-two {
        justify-content: center
    }
}

@media (max-width:767.98px) {
    .cta__content-right-two {
        flex-wrap: wrap
    }
}

.cta__content-right-three {
    gap: 15px
}

@media (max-width:991.98px) {
    .cta__content-four {
        text-align: center;
        margin-bottom: 30px
    }
}

@media (max-width:991.98px) {
    .cta__content-five {
        text-align: center;
        margin-bottom: 30px
    }
}

.cta__content-five .title {
    margin-bottom: 0;
    color: var(--tg-color-white-default);
    font-size: 30px
}

@media (max-width:991.98px) {
    .cta__content-six {
        margin-bottom: 30px
    }
}

.cta__content-six span {
    display: block;
    color: var(--tg-color-white-default);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 10px
}

.cta__content-six .title {
    margin-bottom: 0;
    color: var(--tg-color-white-default);
    font-size: 30px
}

@media (max-width:991.98px) {
    .cta__content-seven {
        text-align: center
    }
}

.cta__content-seven .title {
    font-size: 38px
}

@media (max-width:1199.98px) {
    .cta__content-seven .title {
        font-size: 32px
    }
}

.cta__contact {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 10px
}

    .cta__contact .icon {
        font-size: 50px;
        color: var(--tg-color-white-default)
    }

    .cta__contact .content span {
        display: block;
        line-height: 1;
        font-size: 16px;
        color: var(--tg-color-white-default);
        margin-bottom: 10px
    }

    .cta__contact .content a {
        display: block;
        color: var(--tg-color-white-default);
        font-size: 28px;
        font-weight: 600;
        line-height: 1
    }

@media (max-width:1199.98px) {
    .cta__contact .content a {
        font-size: 24px
    }
}

.cta__btn {
    text-align: right
}

@media (max-width:991.98px) {
    .cta__btn {
        text-align: center;
        margin-top: 30px
    }
}

.cta__btn-two {
    text-align: right
}

@media (max-width:991.98px) {
    .cta__btn-two {
        text-align: center;
        margin-top: 30px
    }
}

@media (max-width:991.98px) {
    .cta__btn-three {
        text-align: center !important
    }
}

.cta__btn-four {
    text-align: right
}

@media (max-width:991.98px) {
    .cta__btn-four {
        text-align: center
    }
}

.cta__btn-four .tg-btn {
    border: 1px solid var(--tg-color-white-default)
}

.cta__shape-wrap img {
    position: absolute;
    z-index: -1
}

    .cta__shape-wrap img:nth-child(1) {
        left: 0;
        bottom: 0;
        mix-blend-mode: luminosity
    }

    .cta__shape-wrap img:nth-child(2) {
        right: 16%;
        bottom: 0
    }

    .cta__shape-wrap img:nth-child(3) {
        right: 15%;
        top: 0
    }

.cta__shape-wrap-two img {
    position: absolute;
    z-index: -1
}

    .cta__shape-wrap-two img:nth-child(1) {
        left: 14%;
        top: 0
    }

@media (max-width:1500px) {
    .cta__shape-wrap-two img:nth-child(1) {
        left: 1%
    }
}

.cta__shape-wrap-two img:nth-child(2) {
    right: 7%;
    top: 0
}

@media (max-width:1500px) {
    .cta__shape-wrap-two img:nth-child(2) {
        right: -7%
    }
}

@media (max-width:991.98px) {
    .cta__shape-wrap-two img:nth-child(2) {
        display: none
    }
}

.cta__shape-two img {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    mix-blend-mode: luminosity
}

@media (max-width:767.98px) {
    .cta__shape-two img {
        display: none
    }
}

.cta__shape-three img {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    mix-blend-mode: luminosity
}

@media (max-width:1199.98px) {
    .cta__shape-four img {
        display: none
    }
}

.cta__shape-five img {
    position: absolute;
    right: 35%;
    bottom: -10px;
    z-index: -1
}

@media (max-width:1500px) {
    .cta__shape-five img {
        right: 28%
    }
}

@media (max-width:1199.98px) {
    .cta__shape-five img {
        max-width: 160px
    }
}

@media (max-width:991.98px) {
    .cta__shape-five img {
        max-width: 120px;
        right: 8%
    }
}

@media (max-width:767.98px) {
    .cta__shape-five img {
        max-width: 100px;
        right: 4%
    }
}

.satisfied__clients-wrap {
    background: var(--tg-color-white-default);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    position: absolute;
    left: 37%;
    bottom: 20%;
    text-align: left;
    padding: 15px 25px
}

    .satisfied__clients-wrap span {
        display: block;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 5px
    }

.progress__wrap {
    overflow: hidden
}

.progress__item {
    margin-bottom: 25px
}

    .progress__item:last-child {
        margin-bottom: 0
    }

    .progress__item .title {
        margin-bottom: 12px;
        font-size: 16px;
        font-weight: 600
    }

    .progress__item .progress {
        height: 8px;
        background-color: var(--tg-color-gray-3);
        border-radius: 8px;
        overflow: inherit
    }

    .progress__item .progress-bar {
        background: var(--tg-color-gradient);
        position: relative;
        overflow: inherit;
        border-radius: 8px
    }

        .progress__item .progress-bar span {
            display: block;
            position: absolute;
            right: 3px;
            bottom: 20px;
            color: var(--tg-color-white-default);
            line-height: 1;
            font-weight: 600;
            font-size: 11px;
            border-radius: 2px;
            background: var(--tg-theme-secondary);
            padding: 4px 5px
        }

            .progress__item .progress-bar span::before {
                content: "";
                position: absolute;
                right: 0;
                bottom: -5px;
                width: 8px;
                height: 8px;
                background: var(--tg-theme-secondary);
                clip-path: polygon(100% 0,0 0,100% 100%)
            }

.progress__item-two .title {
    color: var(--tg-color-white-default)
}

.progress__item-two .progress-bar span {
    color: var(--tg-heading-color);
    background: var(--tg-color-white-default)
}

    .progress__item-two .progress-bar span::before {
        background: var(--tg-color-white-default)
    }

.counter__area {
    position: relative;
    z-index: 2
}

.counter__area-two {
    position: relative;
    z-index: 1
}

    .counter__area-two::before {
        content: "";
        position: absolute;
        right: 30%;
        top: -50px;
        width: 400px;
        height: 400px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -o-border-radius: 50%;
        -ms-border-radius: 50%;
        border-radius: 50%;
        background: #7838FF;
        filter: blur(200px);
        opacity: .1;
        z-index: -1
    }

.counter__area-four {
    position: relative;
    z-index: 1;
    background: var(--tg-color-gray-2);
    padding: 300px 0 130px;
    overflow: hidden;
    margin-top: -210px
}

@media (max-width:767.98px) {
    .counter__area-four {
        padding: 300px 0 100px
    }
}

.counter__area-four::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 285px;
    height: 285px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    background: #DFD2FB;
    filter: blur(150px);
    left: -116px;
    z-index: -1
}

.counter__area-four::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 325px;
    height: 325px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    background: #C3CEFA;
    filter: blur(150px);
    right: -154px;
    z-index: -1
}

.counter__area-five {
    padding-top: 110px
}

@media (max-width:767.98px) {
    .counter__area-five {
        padding-top: 80px
    }
}

.counter__area-six {
    background: var(--tg-color-gray-1)
}

.counter__area-seven {
    background: var(--tg-theme-secondary);
    padding: 295px 0 130px;
    margin-top: -155px
}

.counter__area-eight {
    background: var(--tg-color-gray-2)
}

.counter__area-nine {
    background: var(--tg-color-gray-2)
}

.counter__wrap {
    background: var(--tg-theme-primary);
    position: relative;
    z-index: 1;
    padding: 80px 30px 45px
}

    .counter__wrap::before {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        width: 300%;
        height: 100%;
        background: var(--tg-theme-primary);
        z-index: -1
    }

.counter__wrap-two {
    z-index: 2
}

.counter__item {
    margin-bottom: 30px;
    text-align: center
}

    .counter__item .count {
        margin-bottom: 5px;
        color: var(--tg-color-white-default);
        font-size: 60px;
        font-weight: 700;
        line-height: .8
    }

@media (max-width:1500px) {
    .counter__item .count {
        font-size: 55px
    }
}

@media (max-width:767.98px) {
    .counter__item .count {
        font-size: 50px
    }
}

.counter__item p {
    margin-bottom: 0;
    color: var(--tg-color-gray-4);
    font-weight: 500
}

.counter__item-two {
    background: var(--tg-color-white-default);
    box-shadow: 0 11px 30px 0 #E9EAF2;
    border: 1px solid var(--tg-color-white-default);
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -o-border-radius: 30px;
    -ms-border-radius: 30px;
    border-radius: 30px;
    text-align: center;
    padding: 40px 30px 35px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s
}

@media (max-width:767.98px) {
    .counter__item-two {
        padding: 20px 15px 20px
    }
}

.counter__item-two:hover {
    transform: translateY(-5px)
}

    .counter__item-two:hover .counter__icon i {
        transform: rotateY(180deg)
    }

.counter__item-three {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 20px
}

@media (max-width:767.98px) {
    .counter__item-three {
        gap: 10px
    }
}

.counter__item-three:hover .counter__icon-two i {
    transform: rotateY(180deg)
}

.counter__item-four {
    text-align: center
}

    .counter__item-four p {
        margin-bottom: 20px;
        font-size: 20px;
        font-weight: 500;
        line-height: 1
    }

@media (max-width:767.98px) {
    .counter__item-four p {
        font-size: 16px;
        margin-bottom: 12px
    }
}

.counter__item-four .count {
    margin-bottom: 0;
    font-size: 100px;
    font-weight: 600;
    line-height: .8;
    display: inline-flex;
    align-items: center;
    color: var(--tg-theme-primary)
}

@media (max-width:1500px) {
    .counter__item-four .count {
        font-size: 90px
    }
}

@media (max-width:1199.98px) {
    .counter__item-four .count {
        font-size: 70px
    }
}

@media (max-width:767.98px) {
    .counter__item-four .count {
        font-size: 50px
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .counter__item-four .count {
        font-size: 60px
    }
}

.counter__item-five {
    text-align: center
}

    .counter__item-five p {
        margin-bottom: 12px;
        font-size: 20px;
        font-weight: 500;
        color: var(--tg-color-gray-4)
    }

@media (max-width:767.98px) {
    .counter__item-five p {
        font-size: 16px;
        margin-bottom: 10px
    }
}

.counter__item-five .count {
    margin-bottom: 0;
    line-height: .8;
    font-size: 100px;
    font-weight: 600;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    color: #fff0;
    -webkit-text-stroke: 2px var(--tg-color-gray-4);
    justify-content: center
}

@media (max-width:1199.98px) {
    .counter__item-five .count {
        font-size: 75px;
        line-height: .9
    }
}

@media (max-width:767.98px) {
    .counter__item-five .count {
        font-size: 50px
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .counter__item-five .count {
        font-size: 60px
    }
}

.counter__item-six {
    width: 50%;
    flex: 0 0 auto;
    text-align: left
}

@media (max-width:991.98px) {
    .counter__item-six {
        text-align: center
    }
}

.counter__item-six .count {
    line-height: .9;
    font-size: 90px;
    margin-bottom: 12px;
    justify-content: flex-start
}

@media (max-width:1199.98px) {
    .counter__item-six .count {
        font-size: 72px
    }
}

@media (max-width:991.98px) {
    .counter__item-six .count {
        justify-content: center
    }
}

@media (max-width:767.98px) {
    .counter__item-six .count {
        font-size: 50px
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .counter__item-six .count {
        font-size: 60px
    }
}

.counter__item-six p {
    margin-bottom: 0;
    line-height: 1.2
}

.counter__item-seven .counter__icon-two::before {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0
}

.counter__item-wrap {
    margin-left: 80px;
    flex-wrap: wrap;
    gap: 60px 0;
    position: relative
}

@media (max-width:1199.98px) {
    .counter__item-wrap {
        margin-left: 0
    }
}

@media (max-width:991.98px) {
    .counter__item-wrap {
        gap: 30px 0
    }
}

.counter__item-wrap::before {
    content: "";
    position: absolute;
    left: 43%;
    top: 0%;
    width: 1px;
    height: 125px;
    background: #1F2042
}

@media (max-width:991.98px) {
    .counter__item-wrap::before {
        display: none
    }
}

.counter__item-wrap::after {
    content: "";
    position: absolute;
    left: 43%;
    bottom: 0%;
    width: 1px;
    height: 125px;
    background: #1F2042
}

@media (max-width:991.98px) {
    .counter__item-wrap::after {
        display: none
    }
}

.counter__item-wrap .line-one {
    position: absolute;
    left: 0%;
    top: 50%;
    width: 190px;
    height: 1px;
    background: #1F2042
}

@media (max-width:991.98px) {
    .counter__item-wrap .line-one {
        display: none
    }
}

.counter__item-wrap .line-two {
    position: absolute;
    right: 13%;
    top: 50%;
    width: 190px;
    height: 1px;
    background: #1F2042
}

@media (max-width:991.98px) {
    .counter__item-wrap .line-two {
        display: none
    }
}

.counter__icon {
    position: relative;
    display: inline-block;
    z-index: 1;
    font-size: 60px;
    color: var(--tg-theme-primary);
    padding: 10px 0 0 17px;
    margin-bottom: 18px
}

@media (max-width:767.98px) {
    .counter__icon {
        font-size: 50px
    }
}

.counter__icon::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--tg-color-gray-1);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    z-index: -1
}

@media (max-width:767.98px) {
    .counter__icon::before {
        width: 50px;
        height: 50px
    }
}

.counter__icon i {
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s
}

.counter__icon-two {
    font-size: 70px
}

@media (max-width:1199.98px) {
    .counter__icon-two {
        font-size: 60px
    }
}

@media (max-width:767.98px) {
    .counter__icon-two {
        font-size: 50px
    }
}

.counter__icon-two::before {
    width: 70px;
    height: 70px;
    background: #EAF0FF
}

@media (max-width:1199.98px) {
    .counter__icon-two::before {
        width: 60px;
        height: 60px
    }
}

@media (max-width:767.98px) {
    .counter__icon-two::before {
        width: 50px;
        height: 50px
    }
}

.counter__content .count {
    margin-bottom: 8px;
    font-size: 36px;
    line-height: .9
}

.counter__content p {
    margin-bottom: 0;
    font-weight: 500;
    color: var(--tg-color-gray-11)
}

.counter__content-two .count {
    margin-bottom: 10px;
    line-height: .8;
    font-size: 60px
}

@media (max-width:1199.98px) {
    .counter__content-two .count {
        font-size: 50px
    }
}

@media (max-width:767.98px) {
    .counter__content-two .count {
        font-size: 35px;
        line-height: 1
    }
}

.counter__content-two p {
    margin-bottom: 0;
    font-weight: 500;
    color: var(--tg-color-gray-11);
    line-height: 1
}

@media (max-width:991.98px) {
    .counter__content-three {
        margin-top: 50px
    }
}

.counter__content-three p {
    color: var(--tg-color-gray-4);
    margin-bottom: 40px;
    width: 85%
}

@media (max-width:1199.98px) {
    .counter__content-three p {
        width: 95%
    }
}

@media (max-width:991.98px) {
    .counter__content-three p {
        width: 100%
    }
}

.counter__content-bottom {
    gap: 40px;
    flex-wrap: wrap
}

@media (max-width:1199.98px) {
    .counter__content-bottom {
        gap: 25px
    }
}

.counter__shape img {
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 120px;
    max-width: 276px
}

@media (max-width:1800px) {
    .counter__shape img {
        max-width: 200px
    }
}

@media (max-width:991.98px) {
    .counter__shape img {
        display: none
    }
}

.project__area-five {
    background: #fff;
    position: relative;
    z-index: 1;
    overflow: hidden
}

    .project__area-five::before {
        content: "";
        position: absolute;
        right: 125px;
        top: -260px;
        width: 400px;
        height: 400px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -o-border-radius: 50%;
        -ms-border-radius: 50%;
        border-radius: 50%;
        z-index: -1
    }

    .project__area-five::after {
        content: "";
        position: absolute;
        bottom: -300px;
        left: 50px;
        width: 500px;
        height: 500px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -o-border-radius: 50%;
        -ms-border-radius: 50%;
        border-radius: 50%;
        z-index: -1
    }

.project__area-seven {
    position: relative;
    z-index: 1
}

    .project__area-seven::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 60%;
        background: var(--tg-theme-secondary);
        z-index: -1
    }

.project-active {
    padding: 0 24px;
    position: relative
}

@media (max-width:767.98px) {
    .project-active {
        padding: 0 10px
    }
}

.project-active .swiper-slide {
    transform: scale(.9);
    transition: all 200ms linear
}

.project-active .swiper-slide-active {
    transform: scale(1)
}

    .project-active .swiper-slide-active .project__thumb img {
        filter: grayscale(0)
    }

    .project-active .swiper-slide-active .project__content {
        opacity: 1;
        overflow: visible
    }

@media (max-width:1500px) {
    .project-active-three {
        margin: 0 -180px
    }
}

@media (max-width:991.98px) {
    .project-active-three {
        margin: 0 -165px
    }
}

@media (max-width:767.98px) {
    .project-active-three {
        margin: 0 0
    }
}

.project-active-three .swiper-slide-active .project__thumb-four .project__mask-img img {
    filter: grayscale(0)
}

.project-active-four {
    margin-right: -416px
}

@media (max-width:991.98px) {
    .project-active-four {
        margin-right: -320px
    }
}

@media (max-width:767.98px) {
    .project-active-four {
        margin-right: 0
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .project-active-four {
        margin-right: -60px
    }
}

.project-active-four .swiper-slide-active .project__content-five {
    opacity: 1;
    visibility: visible;
    margin-bottom: 0
}

.project-active-five .swiper-slide {
    transform: scale(.86);
    transition: all 200ms linear
}

.project-active-five .swiper-slide-active {
    transform: scale(1)
}

    .project-active-five .swiper-slide-active .project__content-seven .arrow {
        background: var(--tg-theme-primary);
        color: var(--tg-color-white-default)
    }

.project-active-seven {
    margin-right: -382px
}

@media (max-width:991.98px) {
    .project-active-seven {
        margin-right: -260px
    }
}

@media (max-width:767.98px) {
    .project-active-seven {
        margin-right: 0
    }
}

.project__item {
    position: relative
}

.project__item-two {
    position: relative;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -o-border-radius: 30px;
    -ms-border-radius: 30px;
    border-radius: 30px;
    overflow: hidden
}

    .project__item-two:hover .project__thumb-two::before {
        opacity: .9;
        visibility: visible
    }

    .project__item-two:hover .project__content-two {
        margin-top: 0;
        opacity: 1;
        visibility: visible
    }

    .project__item-two:hover .shape img {
        opacity: 1;
        visibility: visible;
        right: 0
    }

    .project__item-two .shape img {
        position: absolute;
        right: -20px;
        bottom: 0;
        mix-blend-mode: luminosity;
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
        opacity: 0;
        visibility: hidden
    }

.project__item-three {
    background: var(--tg-color-white-default);
    border: 1px solid var(--tg-border-10);
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -o-border-radius: 25px;
    -ms-border-radius: 25px;
    border-radius: 25px
}

.project__item-four {
    position: relative
}

.project__item-five {
    position: relative;
    overflow: hidden
}

    .project__item-five:hover .project__content-five {
        opacity: 1;
        visibility: visible;
        margin-bottom: 0
    }

.project__item-six:hover .project__thumb-six .shape img:nth-child(1) {
    transform: translateZ(0);
    opacity: 1
}

.project__item-six:hover .project__thumb-six .shape img:nth-child(2) {
    transform: translateZ(0);
    opacity: 1
}

.project__item-eight {
    position: relative;
    overflow: hidden;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px
}

    .project__item-eight:hover .project__thumb-eight img {
        filter: grayscale(0)
    }

    .project__item-eight:hover .project__content-eight {
        transform: translateY(0);
        opacity: 1;
        visibility: visible
    }

.project__item-nine {
    position: relative;
    z-index: 1
}

    .project__item-nine:hover .project__content-nine .arrow-btn {
        opacity: 1;
        visibility: visible
    }

.project__item-ten {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0
}

    .project__item-ten .project__content-two a {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -o-border-radius: 0;
        -ms-border-radius: 0;
        border-radius: 0
    }

.project__item-wrap {
    position: relative;
    padding: 50px 0 80px;
    z-index: 1
}

@media (max-width:767.98px) {
    .project__item-wrap {
        padding: 35px 0 60px
    }
}

.project__item-wrap::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0%;
    transform: translateX(-50%);
    background: var(--tg-color-gray-10);
    width: 75%;
    height: 100%;
    z-index: -1;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -o-border-radius: 30px;
    -ms-border-radius: 30px;
    border-radius: 30px
}

@media (max-width:767.98px) {
    .project__item-wrap::before {
        width: 80%
    }
}

.project__thumb img {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
    filter: grayscale(1);
    background-color: #000
}

.project__thumb-two {
    position: relative
}

    .project__thumb-two::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: var(--tg-theme-secondary);
        pointer-events: none;
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
        opacity: 0;
        visibility: hidden
    }

    .project__thumb-two img {
        width: 100%;
        height: 390px;
        object-fit: cover
    }

.project__thumb-three img {
    -webkit-border-radius: 25px 25px 0 0;
    -moz-border-radius: 25px 25px 0 0;
    -o-border-radius: 25px 25px 0 0;
    -ms-border-radius: 25px 25px 0 0;
    border-radius: 25px 25px 0 0;
    width: 100%
}

.project__thumb-four {
    position: relative
}

.project__thumb-five img {
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -o-border-radius: 30px;
    -ms-border-radius: 30px;
    border-radius: 30px;
    width: 100%;
    height: 475px;
    object-fit: cover;
    border: 2px solid var(--tg-heading-color)
}

@media (max-width:1199.98px) {
    .project__thumb-five img {
        height: 420px
    }
}

.project__thumb-six {
    position: relative;
    z-index: 1;
    overflow: hidden;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -o-border-radius: 30px;
    -ms-border-radius: 30px;
    border-radius: 30px;
    margin-bottom: 25px
}

    .project__thumb-six a > img {
        width: 100%;
        max-height: 360px;
        object-fit: cover
    }

    .project__thumb-six .shape img {
        position: absolute
    }

        .project__thumb-six .shape img:nth-child(1) {
            right: 0;
            top: 0;
            transform: translate3d(100px,-100px,0);
            opacity: 0;
            -webkit-transition: all 0.4s ease-out 0s;
            -moz-transition: all 0.4s ease-out 0s;
            -ms-transition: all 0.4s ease-out 0s;
            -o-transition: all 0.4s ease-out 0s;
            transition: all 0.4s ease-out 0s
        }

        .project__thumb-six .shape img:nth-child(2) {
            bottom: 0;
            left: 0;
            transform: translate3d(-100px,100px,0);
            opacity: 0;
            -webkit-transition: all 0.4s ease-out 0s;
            -moz-transition: all 0.4s ease-out 0s;
            -ms-transition: all 0.4s ease-out 0s;
            -o-transition: all 0.4s ease-out 0s;
            transition: all 0.4s ease-out 0s
        }

.project__thumb-seven {
    margin-bottom: 20px
}

    .project__thumb-seven img {
        -webkit-border-radius: 30px;
        -moz-border-radius: 30px;
        -o-border-radius: 30px;
        -ms-border-radius: 30px;
        border-radius: 30px;
        width: 100%;
        height: 475px;
        object-fit: cover
    }

.project__thumb-eight img {
    width: 100%;
    height: 470px;
    object-fit: cover;
    filter: grayscale(1)
}

.project__thumb-nine {
    position: relative;
    z-index: 1
}

    .project__thumb-nine::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 70%;
        background: linear-gradient(180deg,#fff0 48.5%,rgb(0 0 0 / .8) 100%);
        pointer-events: none
    }

    .project__thumb-nine img {
        width: 100%;
        height: 390px;
        object-fit: cover
    }

.project__content {
    border-radius: 20px;
    background: var(--tg-color-white-default);
    box-shadow: 0 4px 30px 0 rgb(0 0 0 / .1);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    padding: 40px 40px;
    margin: 0 70px;
    margin-top: -80px;
    position: relative;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    opacity: 0;
    overflow: hidden
}

@media (max-width:1800px) {
    .project__content {
        padding: 40px 30px;
        margin: -80px 30px 0
    }
}

@media (max-width:1500px) {
    .project__content {
        padding: 30px 25px;
        margin: -65px 20px 0
    }
}

.project__content-left span {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: var(--tg-color-white-default);
    background: var(--tg-theme-primary);
    line-height: 1;
    padding: 8px 13px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 8px
}

.project__content-left .title {
    margin-bottom: 0;
    font-size: 26px;
    font-weight: 600
}

@media (max-width:1500px) {
    .project__content-left .title {
        font-size: 22px
    }
}

.project__content-left-two .title {
    margin-bottom: 12px;
    font-size: 24px;
    font-weight: 600
}

.project__content-arrow a {
    width: 60px;
    height: 40px;
    background: var(--tg-color-gray-4);
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -o-border-radius: 100px;
    -ms-border-radius: 100px;
    border-radius: 100px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tg-theme-primary)
}

    .project__content-arrow a:hover {
        background: var(--tg-theme-primary);
        color: var(--tg-color-white-default)
    }

.project__content-two {
    text-align: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    padding: 20px;
    margin-top: 80px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s
}

    .project__content-two .title {
        margin-bottom: 5px;
        font-size: 22px;
        color: var(--tg-color-white-default)
    }

    .project__content-two span {
        display: block;
        color: var(--tg-color-gray-4);
        margin-bottom: 10px
    }

    .project__content-two > a {
        width: 60px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        background: var(--tg-theme-primary);
        color: var(--tg-color-white-default);
        -webkit-border-radius: 80px;
        -moz-border-radius: 80px;
        -o-border-radius: 80px;
        -ms-border-radius: 80px;
        border-radius: 80px
    }

        .project__content-two > a:hover {
            background: var(--tg-color-sky-blue)
        }

.project__content-three {
    padding: 35px 40px
}

@media (max-width:1500px) {
    .project__content-three {
        padding: 35px 25px
    }
}

@media (max-width:1199.98px) {
    .project__content-three {
        padding: 30px 25px
    }
}

.project__content-three .title {
    margin-bottom: 0;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.36
}

@media (max-width:1199.98px) {
    .project__content-three .title {
        font-size: 20px
    }
}

.project__content-three .title a {
    display: inline;
    background-image: linear-gradient(var(--tg-heading-color),var(--tg-heading-color)),linear-gradient(var(--tg-heading-color),var(--tg-heading-color));
    background-size: 0% 2px,0 2px;
    background-position: 100% 100%,0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.4s linear
}

    .project__content-three .title a:hover {
        color: inherit;
        background-size: 0 2px,100% 2px
    }

.project__content-four {
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 51%
}

@media (max-width:1800px) {
    .project__content-four {
        bottom: 6px;
        width: 52%
    }
}

@media (max-width:767.98px) {
    .project__content-four {
        bottom: 0;
        width: 80%;
        -webkit-border-radius: 0 20px 0 20px;
        -moz-border-radius: 0 20px 0 20px;
        -o-border-radius: 0 20px 0 20px;
        -ms-border-radius: 0 20px 0 20px;
        border-radius: 0 20px 0 20px;
        background: var(--tg-color-gray-1);
        padding: 10px 10px 10px 0
    }
}

.project__content-four .title {
    margin-bottom: 0;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.36
}

@media (max-width:1800px) {
    .project__content-four .title {
        font-size: 20px
    }
}

.project__content-five {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    -o-border-radius: 18px;
    -ms-border-radius: 18px;
    border-radius: 18px;
    border: 1px solid var(--tg-color-white-default);
    background: rgb(255 255 255 / .7);
    backdrop-filter: blur(10px);
    padding: 10px 24px 18px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    margin-bottom: -90px;
    opacity: 0;
    visibility: hidden
}

    .project__content-five span {
        font-size: 14px;
        display: block;
        font-weight: 500;
        color: var(--tg-theme-primary);
        margin-bottom: 5px
    }

    .project__content-five .title {
        margin-bottom: 0;
        font-size: 24px;
        font-weight: 600
    }

    .project__content-five .arrow {
        width: 50px;
        height: 50px;
        padding: 0;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        -webkit-border-radius: 12px;
        -moz-border-radius: 12px;
        -o-border-radius: 12px;
        -ms-border-radius: 12px;
        border-radius: 12px;
        border: none;
        background: var(--tg-theme-primary);
        color: var(--tg-color-white-default);
        position: absolute;
        right: 0;
        top: -33px
    }

        .project__content-five .arrow:hover {
            background: var(--tg-theme-secondary);
            color: var(--tg-color-white-default)
        }

.project__content-six {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between
}

    .project__content-six .content-left .title {
        margin-bottom: 8px;
        font-size: 22px;
        font-weight: 600
    }

    .project__content-six .content-left span {
        display: block;
        line-height: 1;
        color: var(--tg-theme-primary)
    }

    .project__content-six .arrow {
        background: #fff0;
        border: none;
        padding: 0;
        width: 48px;
        height: 48px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #D7DAEB;
        color: var(--tg-theme-primary)
    }

        .project__content-six .arrow:hover {
            background: var(--tg-theme-primary);
            border-color: var(--tg-theme-primary);
            color: var(--tg-color-white-default)
        }

.project__content-seven {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between
}

    .project__content-seven .arrow {
        width: 50px;
        height: 50px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        padding: 0;
        justify-content: center;
        background: var(--tg-color-gray-4);
        border: none;
        color: var(--tg-border-1)
    }

        .project__content-seven .arrow:hover {
            background: var(--tg-theme-primary);
            color: var(--tg-color-white-default)
        }

.project__content-eight {
    position: absolute;
    left: 10px;
    bottom: 10px;
    right: 10px;
    z-index: 1;
    background: var(--tg-color-white-default);
    padding: 24px 24px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px;
    transform: translateY(60px);
    opacity: 0;
    visibility: visible;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s
}

    .project__content-eight .title {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 8px
    }

@media (max-width:1500px) {
    .project__content-eight .title {
        font-size: 22px
    }
}

.project__content-eight span {
    display: block;
    line-height: 1;
    font-size: 14px;
    font-weight: 500;
    color: var(--tg-theme-primary)
}

.project__content-eight .arrow {
    width: 60px;
    height: 40px;
    padding: 0;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 30px;
    top: -19px
}

.project__content-nine {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
    z-index: 2
}

    .project__content-nine .title {
        margin-bottom: 14px;
        color: var(--tg-color-white-default);
        font-weight: 600;
        font-size: 24px
    }

        .project__content-nine .title a {
            display: inline;
            background-image: linear-gradient(var(--tg-color-white-default),var(--tg-color-white-default)),linear-gradient(var(--tg-color-white-default),var(--tg-color-white-default));
            background-size: 0% 2px,0 2px;
            background-position: 100% 100%,0 100%;
            background-repeat: no-repeat;
            transition: background-size 0.4s linear
        }

            .project__content-nine .title a:hover {
                color: inherit;
                background-size: 0 2px,100% 2px
            }

    .project__content-nine span {
        display: block;
        color: var(--tg-color-white-default);
        line-height: 1;
        font-weight: 500;
        font-size: 14px
    }

    .project__content-nine .arrow-btn {
        width: 60px;
        height: 60px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        flex: 0 0 auto;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--tg-color-white-default);
        color: var(--tg-color-white-default);
        opacity: 0;
        visibility: hidden
    }

        .project__content-nine .arrow-btn:hover {
            background: var(--tg-theme-primary);
            border-color: var(--tg-theme-primary)
        }

.project__mask-img {
    -webkit-mask-image: url(../img/project/project_mask_img.svg);
    mask-image: url(../img/project/project_mask_img.svg);
    -webkit-mask-size: 100%;
    mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    width: 602px;
    height: 483px;
    margin: 0 auto
}

@media (max-width:1800px) {
    .project__mask-img {
        width: 498px;
        height: 400px
    }
}

@media (max-width:767.98px) {
    .project__mask-img {
        width: 100%;
        height: 350px;
        mask-image: none;
        -webkit-mask-image: none
    }
}

.project__mask-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1)
}

@media (max-width:767.98px) {
    .project__mask-img img {
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        -o-border-radius: 20px;
        -ms-border-radius: 20px;
        border-radius: 20px
    }
}

.project__tag {
    font-size: 14px;
    font-weight: 500;
    color: var(--tg-theme-primary);
    background: var(--tg-color-gray-4);
    display: inline-block;
    padding: 8px 15px;
    line-height: 1;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -o-border-radius: 100px;
    -ms-border-radius: 100px;
    border-radius: 100px;
    margin-bottom: 15px
}

    .project__tag:hover {
        color: var(--tg-color-white-default);
        background: var(--tg-theme-primary)
    }

.project__tag-two {
    font-size: 14px;
    font-weight: 500;
    background: var(--tg-color-white-default);
    color: var(--tg-theme-primary);
    position: absolute;
    left: 30px;
    top: 30px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -o-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
    display: block;
    padding: 6px 15px
}

    .project__tag-two:hover {
        background: var(--tg-theme-primary);
        color: var(--tg-color-white-default)
    }

.project__tag-three {
    display: inline-block;
    background: var(--tg-color-gray-1);
    font-size: 14px;
    font-weight: 500;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    padding: 11px 20px;
    line-height: 1
}

    .project__tag-three:hover {
        background: var(--tg-theme-primary);
        color: var(--tg-color-white-default)
    }

@media (max-width:767.98px) {
    .project__nav-wrap {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 40px
    }
}

.project__nav-wrap button {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 60px;
    height: 60px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--tg-color-white-default);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    color: var(--tg-theme-primary)
}

@media (max-width:767.98px) {
    .project__nav-wrap button {
        position: inherit;
        transform: translateY(0)
    }
}

.project__nav-wrap button.project-button-prev {
    left: 25%;
    transform: translateY(-50%) rotate(180deg)
}

@media (max-width:1199.98px) {
    .project__nav-wrap button.project-button-prev {
        left: 13%
    }
}

@media (max-width:991.98px) {
    .project__nav-wrap button.project-button-prev {
        left: 4%
    }
}

@media (max-width:767.98px) {
    .project__nav-wrap button.project-button-prev {
        transform: translateY(0) rotate(180deg)
    }
}

.project__nav-wrap button.project-button-next {
    left: auto;
    right: 25%
}

@media (max-width:1199.98px) {
    .project__nav-wrap button.project-button-next {
        right: 13%
    }
}

@media (max-width:991.98px) {
    .project__nav-wrap button.project-button-next {
        right: 4%
    }
}

.project__nav-wrap button:hover {
    background: var(--tg-theme-primary);
    color: var(--tg-color-white-default)
}

.project__nav-wrap-two {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    margin-top: 55px
}

    .project__nav-wrap-two button {
        -webkit-border-radius: 100px;
        -moz-border-radius: 100px;
        -o-border-radius: 100px;
        -ms-border-radius: 100px;
        border-radius: 100px;
        border: 1px solid #D1D4E2;
        background: var(--tg-color-white-default);
        box-shadow: 0 9px 20px 0 rgb(0 0 0 / .1);
        width: 74px;
        height: 50px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--tg-theme-secondary);
        padding: 0;
        position: relative
    }

        .project__nav-wrap-two button svg {
            width: 28px;
            height: auto
        }

        .project__nav-wrap-two button:hover {
            background: var(--tg-theme-primary);
            border-color: var(--tg-theme-primary);
            color: var(--tg-color-white-default)
        }

        .project__nav-wrap-two button.project-button-prev svg {
            transform: rotate(180deg)
        }

        .project__nav-wrap-two button.project-button-prev::before {
            content: "";
            position: absolute;
            right: -67px;
            top: 50%;
            transform: translateY(-50%);
            width: 54px;
            height: 2px;
            background: #D1D4E2;
            -webkit-border-radius: 2px;
            -moz-border-radius: 2px;
            -o-border-radius: 2px;
            -ms-border-radius: 2px;
            border-radius: 2px
        }

.project__nav-two {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -22px
}

    .project__nav-two button {
        width: 74px;
        height: 50px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #D1D4E2;
        background: var(--tg-color-white-default);
        -webkit-border-radius: 100px;
        -moz-border-radius: 100px;
        -o-border-radius: 100px;
        -ms-border-radius: 100px;
        border-radius: 100px;
        padding: 0 0;
        color: var(--tg-theme-secondary);
        box-shadow: 0 9px 20px 0 rgb(0 0 0 / .1)
    }

        .project__nav-two button.project-button-prev svg {
            transform: rotate(180deg)
        }

        .project__nav-two button:hover {
            background: var(--tg-theme-primary);
            color: var(--tg-color-white-default);
            border: var(--tg-theme-primary)
        }

.project__nav-three {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 30px
}

@media (max-width:767.98px) {
    .project__nav-three {
        justify-content: flex-start
    }
}

.project__nav-three button {
    width: 60px;
    height: 60px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: var(--tg-color-white-default);
    padding: 0 0;
    background: var(--tg-theme-primary)
}

    .project__nav-three button.project-button-next {
        background: #1f5dff
    }

    .project__nav-three button:hover {
        background: var(--tg-theme-secondary)
    }

.project__pagination {
    background: var(--tg-color-white-default);
    border-radius: 20px;
    max-width: 120px;
    height: 40px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    box-shadow: 10px 10px 20px 0 rgb(0 0 0 / .06);
    gap: 6px;
    border: 1px solid #DFE1ED
}

    .project__pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background: #C9C9C9;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -o-border-radius: 50%;
        -ms-border-radius: 50%;
        border-radius: 50%;
        margin: 0 !important;
        opacity: 1;
        -webkit-transition: all 0.2s ease-out 0s;
        -moz-transition: all 0.2s ease-out 0s;
        -ms-transition: all 0.2s ease-out 0s;
        -o-transition: all 0.2s ease-out 0s;
        transition: all 0.2s ease-out 0s
    }

    .project__pagination .swiper-pagination-bullet-active {
        width: 15px;
        height: 15px;
        background: var(--tg-theme-primary)
    }

.project__details-thumb {
    margin-bottom: 30px
}

    .project__details-thumb img {
        width: 100%;
        max-height: 500px;
        object-fit: cover;
        min-height: 300px;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -o-border-radius: 15px;
        -ms-border-radius: 15px;
        border-radius: 15px
    }

.project__details-thumb-two {
    margin-bottom: 50px
}

    .project__details-thumb-two img {
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -o-border-radius: 15px;
        -ms-border-radius: 15px;
        border-radius: 15px;
        width: 100%;
        min-height: 350px;
        object-fit: cover
    }

.project__details-thumb-three {
    margin-top: 35px;
    margin-bottom: 45px
}

    .project__details-thumb-three img {
        width: 100%;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -o-border-radius: 15px;
        -ms-border-radius: 15px;
        border-radius: 15px;
        min-height: 350px;
        object-fit: cover
    }

.project__details-thumb-four {
    padding: 50px 0
}

    .project__details-thumb-four img {
        width: 100%;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -o-border-radius: 15px;
        -ms-border-radius: 15px;
        border-radius: 15px;
        min-height: 350px;
        object-fit: cover
    }

@media (max-width:991.98px) {
    .project__details-thumb-five {
        margin-bottom: 40px
    }
}

.project__details-thumb-five img {
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px
}

@media (max-width:991.98px) {
    .project__details-thumb-five img {
        width: 100%;
        max-height: 450px;
        object-fit: cover;
        min-height: 300px
    }
}

.project__details-thumb-six {
    padding: 25px 0 50px
}

@media (max-width:991.98px) {
    .project__details-thumb-six {
        padding: 20px 0 35px
    }
}

.project__details-thumb-six img {
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px;
    min-height: 350px;
    object-fit: cover
}

.project__details-content > .title {
    margin-bottom: 15px;
    font-size: 36px
}

@media (max-width:1199.98px) {
    .project__details-content > .title {
        font-size: 34px
    }
}

@media (max-width:767.98px) {
    .project__details-content > .title {
        font-size: 30px
    }
}

.project__details-content > p {
    margin-bottom: 0
}

.project__details-content .title-two {
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 30px
}

.project__details-content-two .title {
    font-size: 32px;
    margin-bottom: 15px
}

@media (max-width:767.98px) {
    .project__details-content-two .title {
        font-size: 28px
    }
}

.project__details-content-two p {
    margin-bottom: 15px
}

    .project__details-content-two p span {
        color: var(--tg-theme-primary);
        font-weight: 500
    }

.project__details-challenge {
    margin-top: 40px;
    margin-bottom: 50px
}

    .project__details-challenge > p {
        margin-bottom: 30px
    }

.project__details-challenge-two .title-two {
    margin-bottom: 27px;
    font-weight: 600;
    font-size: 24px
}

.project__details-challenge-two .about__list-item li {
    margin-bottom: 16px
}

    .project__details-challenge-two .about__list-item li:last-child {
        margin-bottom: 0
    }

.project__details-challenge-wrap {
    padding: 35px 0 60px
}

    .project__details-challenge-wrap img {
        width: 100%;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -o-border-radius: 15px;
        -ms-border-radius: 15px;
        border-radius: 15px
    }

@media (max-width:767.98px) {
    .project__details-challenge-wrap img {
        margin-bottom: 30px
    }
}

.project__details-challenge-wrap-two img {
    width: 100%;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px;
    min-height: 350px;
    margin: 20px 0 45px;
    object-fit: cover
}

.project__details-challenge-wrap-three {
    margin-bottom: 40px
}

    .project__details-challenge-wrap-three img {
        width: 100%;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -o-border-radius: 15px;
        -ms-border-radius: 15px;
        border-radius: 15px;
        min-height: 350px;
        object-fit: cover;
        margin: 15px 0 45px
    }

.project__details-report > p {
    margin-bottom: 20px
}

.project__details-report-inner {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 30px
}

@media (max-width:1199.98px) {
    .project__details-report-inner {
        gap: 20px
    }
}

@media (max-width:767.98px) {
    .project__details-report-inner {
        flex-wrap: wrap;
        gap: 30px
    }
}

.project__details-report-inner .progress__wrap {
    flex-grow: 1
}

.project__details-report-inner .inner-img {
    width: 342px;
    flex: 0 0 auto
}

@media (max-width:1199.98px) {
    .project__details-report-inner .inner-img {
        width: 270px
    }
}

@media (max-width:767.98px) {
    .project__details-report-inner .inner-img {
        width: 100%
    }
}

.project__details-report-inner .inner-img img {
    width: 100%;
    height: 220px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px;
    object-fit: cover
}

.project__details-bottom-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    line-height: 1;
    padding-top: 50px;
    border-top: 1px solid #E3E3E3;
    margin-top: 70px
}

    .project__details-bottom-wrap a {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 500;
        font-size: 18px;
        color: #88919B
    }

        .project__details-bottom-wrap a svg {
            color: var(--tg-theme-secondary);
            -webkit-transition: all 0.3s ease-out 0s;
            -moz-transition: all 0.3s ease-out 0s;
            -ms-transition: all 0.3s ease-out 0s;
            -o-transition: all 0.3s ease-out 0s;
            transition: all 0.3s ease-out 0s
        }

        .project__details-bottom-wrap a:hover {
            color: var(--tg-theme-primary)
        }

            .project__details-bottom-wrap a:hover svg {
                color: var(--tg-theme-primary)
            }

        .project__details-bottom-wrap a.previous-post svg {
            transform: rotate(180deg)
        }

        .project__details-bottom-wrap a.next-post {
            flex-direction: row-reverse
        }

        .project__details-bottom-wrap a.all-post {
            color: var(--tg-heading-color)
        }

.project__details-info-wrap {
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px;
    border: 1px solid var(--tg-color-gray-4);
    padding: 30px 40px 40px
}

@media (max-width:1199.98px) {
    .project__details-info-wrap {
        padding: 30px 30px 40px
    }
}

.project__details-info-wrap > .list-wrap > li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #DEE0EC;
    color: var(--tg-body-color);
    gap: 10px;
    margin-bottom: 13px;
    padding-bottom: 13px
}

    .project__details-info-wrap > .list-wrap > li span {
        font-weight: 600;
        min-width: 82px
    }

    .project__details-info-wrap > .list-wrap > li:last-child {
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: none
    }

    .project__details-info-wrap > .list-wrap > li.social .list-wrap {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        gap: 10px
    }

        .project__details-info-wrap > .list-wrap > li.social .list-wrap li a {
            color: var(--tg-body-color)
        }

            .project__details-info-wrap > .list-wrap > li.social .list-wrap li a svg {
                width: 18px;
                height: 18px
            }

            .project__details-info-wrap > .list-wrap > li.social .list-wrap li a:hover {
                color: var(--tg-theme-primary)
            }

.project__details-info-wrap-two > .list-wrap > li {
    border-bottom: 1px solid #E8EBF5;
    padding-bottom: 20px;
    margin-bottom: 20px
}

.project__details-info-wrap-three > .list-wrap > li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none
}

.project__details-info-wrap-four {
    margin-bottom: 35px
}

.project__details-info-item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px
}

    .project__details-info-item div {
        font-weight: 500;
        font-size: 16px;
        letter-spacing: -.02em;
        color: var(--tg-heading-color);
        line-height: 1.2
    }

        .project__details-info-item div span {
            display: block;
            font-weight: 400;
            color: var(--tg-body-color);
            margin-bottom: 14px
        }

    .project__details-info-item .list-wrap {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        gap: 20px
    }

        .project__details-info-item .list-wrap li a {
            color: #B8B8B8
        }

            .project__details-info-item .list-wrap li a:hover {
                color: var(--tg-theme-primary)
            }

            .project__details-info-item .list-wrap li a svg {
                width: 16px;
                height: 16px
            }

.project__details-info-item-two {
    border: 1px solid #E8EBF5;
    padding: 25px 30px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    position: relative;
    margin-bottom: 25px
}

@media (max-width:1199.98px) {
    .project__details-info-item-two {
        padding: 25px 30px
    }
}

.project__details-info-item-two::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 45px;
    background: #E8EBF5;
    left: 50%;
    top: 50%;
    transform: translateY(-50%)
}

@media (max-width:1199.98px) {
    .project__details-info-item-two::before {
        display: none
    }
}

.project__details-contact a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: var(--tg-color-white-default);
    background: var(--tg-theme-primary);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -o-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
    gap: 15px;
    padding: 15px 20px;
    margin-bottom: 8px
}

    .project__details-contact a:last-child {
        margin-bottom: 0
    }

    .project__details-contact a i {
        font-size: 24px
    }

    .project__details-contact a:hover {
        background: var(--tg-theme-secondary)
    }

.project__details-contact-two .sub-title {
    display: block;
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 14px
}

.project__details-contact-two .title {
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 24px
}

.project__details-form .form-grp {
    margin-bottom: 10px
}

    .project__details-form .form-grp textarea, .project__details-form .form-grp input {
        border: none;
        border-bottom: 1px solid var(--tg-border-7);
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -o-border-radius: 0;
        -ms-border-radius: 0;
        border-radius: 0;
        padding: 11px 0;
        height: 50px
    }

        .project__details-form .form-grp textarea:focus, .project__details-form .form-grp input:focus {
            border-color: var(--tg-theme-primary)
        }

    .project__details-form .form-grp textarea {
        min-height: 50px;
        max-height: 50px
    }

.project__details-form button {
    width: 100%;
    background: var(--tg-theme-primary);
    border: none;
    color: var(--tg-color-white-default);
    font-weight: 600;
    font-size: 16px;
    padding: 11px 20px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -o-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px;
    margin-top: 40px
}

    .project__details-form button:hover {
        background: var(--tg-theme-secondary)
    }

.project__details-overview {
    padding: 25px 0 50px
}

    .project__details-overview img {
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -o-border-radius: 15px;
        -ms-border-radius: 15px;
        border-radius: 15px;
        min-height: 250px;
        object-fit: cover;
        margin-top: 35px
    }

.project__details-marketing img {
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px;
    width: 100%
}

@media (max-width:767.98px) {
    .project__details-marketing img {
        margin-bottom: 30px
    }
}

.project__sidebar {
    margin-left: 26px
}

@media (max-width:1199.98px) {
    .project__sidebar {
        margin-left: 0
    }
}

@media (max-width:991.98px) {
    .project__sidebar {
        margin-top: 50px
    }
}

@media (max-width:991.98px) {
    .project__sidebar-two {
        margin-top: 50px
    }
}

.project__sidebar-two .sidebar__widget {
    border: 1px solid #E8EBF5;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    padding: 30px 30px;
    margin-bottom: 50px
}

@media (max-width:1199.98px) {
    .project__sidebar-two .sidebar__widget {
        padding: 30px 20px
    }
}

@media (max-width:991.98px) {
    .project__sidebar-two .sidebar__widget {
        padding: 30px 30px
    }
}

@media (max-width:767.98px) {
    .project__sidebar-two .sidebar__widget {
        padding: 30px 20px
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .project__sidebar-two .sidebar__widget {
        padding: 30px 30px
    }
}

.project__sidebar-two .sidebar__widget:last-child {
    margin-bottom: 0
}

.project__shape img {
    position: absolute;
    left: 110px;
    top: -103px;
    z-index: -1
}

@media (max-width:1500px) {
    .project__shape img {
        width: 180px;
        height: 180px
    }
}

@media (max-width:767.98px) {
    .project__shape img {
        width: 140px;
        height: 140px;
        left: 50px;
        top: -76px
    }
}

.project__shape-two img {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1
}

@media (max-width:991.98px) {
    .project__solution-thumb {
        margin-bottom: 50px
    }
}

.project__solution-thumb img {
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px
}

.project__solution-item {
    border: 1px solid #CFD5ED;
    margin-bottom: 24px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -o-border-radius: 12px;
    -ms-border-radius: 12px;
    border-radius: 12px;
    padding: 28px 30px
}

    .project__solution-item:last-child {
        margin-bottom: 0
    }

    .project__solution-item .title {
        margin-bottom: 10px;
        font-size: 20px;
        font-weight: 600
    }

    .project__solution-item p {
        margin-bottom: 0
    }

@media (max-width:767.98px) {
    .section__btn {
        text-align: left !important;
        margin-bottom: 50px
    }
}

.col-44 {
    width: 43.5%;
    flex: 0 0 auto
}

@media (max-width:991.98px) {
    .col-44 {
        width: 70%
    }
}

@media (max-width:767.98px) {
    .col-44 {
        width: 100%
    }
}

.col-56 {
    width: 56.5%;
    flex: 0 0 auto
}

@media (max-width:991.98px) {
    .col-56 {
        width: 100%
    }
}

.faq__area-three {
    position: relative;
    z-index: 1
}

.faq__content {
    margin-right: 50px;
    position: relative
}

@media (max-width:1199.98px) {
    .faq__content {
        margin-right: 0
    }
}

@media (max-width:991.98px) {
    .faq__content {
        margin-bottom: 80px
    }
}

.faq__content p {
    margin-bottom: 25px
}

.faq__content .shape img {
    position: absolute;
    left: -35px;
    bottom: -30px
}

@media (max-width:1199.98px) {
    .faq__content .shape img {
        left: -24px;
        bottom: -24px;
        max-width: 100px
    }
}

@media (max-width:767.98px) {
    .faq__content .shape img {
        left: -2px;
        bottom: -21px;
        max-width: 90px
    }
}

.faq__content-two {
    position: relative;
    z-index: 1
}

@media (max-width:991.98px) {
    .faq__content-two {
        margin-bottom: 50px;
        text-align: center
    }
}

.faq__content-two > p {
    margin-bottom: 25px
}

.faq__content-two .shape img {
    position: absolute;
    left: -16%;
    bottom: -6%;
    z-index: -1;
    -webkit-animation-duration: 40s;
    animation-duration: 40s
}

@media (max-width:1500px) {
    .faq__content-two .shape img {
        left: -10%;
        bottom: -5%;
        max-width: 180px
    }
}

@media (max-width:991.98px) {
    .faq__content-two .shape img {
        left: 6%;
        bottom: -7%
    }
}

@media (max-width:767.98px) {
    .faq__content-two .shape img {
        display: none
    }
}

.faq__img img {
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px
}

.faq__img-two {
    text-align: right
}

@media (max-width:991.98px) {
    .faq__img-two {
        text-align: center;
        margin-bottom: 50px
    }
}

.faq__img-two img {
    width: 100%;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px
}

@media (max-width:991.98px) {
    .faq__img-three {
        text-align: center;
        margin-bottom: 50px
    }
}

.faq__img-three img {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px
}

.faq__mask-img {
    -webkit-mask-image: url(../img/images/faq_mask_img.svg);
    mask-image: url(../img/images/faq_mask_img.svg);
    -webkit-mask-size: 100%;
    mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    width: 491px;
    height: 311px
}

@media (max-width:1199.98px) {
    .faq__mask-img {
        width: 450px;
        height: 286px
    }
}

@media (max-width:991.98px) {
    .faq__mask-img {
        margin: 0 auto
    }
}

@media (max-width:767.98px) {
    .faq__mask-img {
        width: 340px;
        height: 215px
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .faq__mask-img {
        width: 390px;
        height: 250px
    }
}

.faq__mask-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.faq__wrap .accordion-item {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--tg-border-5);
    background-color: #fff0
}

    .faq__wrap .accordion-item:first-child {
        border-top: 1px solid var(--tg-border-5)
    }

.faq__wrap .accordion-button {
    font-size: 22px;
    font-weight: 600;
    padding: 30px 30px 30px 0;
    color: var(--tg-heading-color);
    background: #fff0;
    position: relative
}

@media (max-width:767.98px) {
    .faq__wrap .accordion-button {
        font-size: 18px
    }
}

.faq__wrap .accordion-button:not(.collapsed) {
    color: var(--tg-theme-primary);
    background: #fff0;
    box-shadow: none
}

    .faq__wrap .accordion-button:not(.collapsed)::before {
        content: "\f10a";
        color: var(--tg-theme-primary)
    }

.faq__wrap .accordion-button:focus {
    border-color: none;
    box-shadow: none
}

.faq__wrap .accordion-button::after {
    display: none
}

.faq__wrap .accordion-button::before {
    content: "\f109";
    position: absolute;
    right: 0;
    top: 28px;
    font-family: "flaticon_tg_default";
    font-weight: 400;
    font-size: 20px;
    color: var(--tg-color-gray-6)
}

.faq__wrap .accordion-body {
    padding: 0 0 30px
}

    .faq__wrap .accordion-body p {
        margin-bottom: 0
    }

.faq__wrap-two {
    margin-left: 45px
}

@media (max-width:1199.98px) {
    .faq__wrap-two {
        margin-left: 0
    }
}

.faq__wrap-two .accordion-item {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -o-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
    border: none;
    border-bottom: none;
    background-color: var(--tg-color-white-default);
    overflow: hidden;
    margin-bottom: 6px
}

    .faq__wrap-two .accordion-item:last-child {
        margin-bottom: 0
    }

    .faq__wrap-two .accordion-item:first-child {
        border-top: none
    }

.faq__wrap-two .accordion-button {
    font-size: 20px;
    font-weight: 600;
    padding: 23px 75px 23px 30px;
    color: var(--tg-heading-color);
    background: var(--tg-color-white-default);
    position: relative
}

@media (max-width:767.98px) {
    .faq__wrap-two .accordion-button {
        font-size: 18px;
        padding: 23px 60px 23px 20px
    }
}

.faq__wrap-two .accordion-button:not(.collapsed)::before {
    content: "\f10a";
    color: var(--tg-color-white-default);
    background: var(--tg-theme-primary)
}

.faq__wrap-two .accordion-button::after {
    display: none
}

.faq__wrap-two .accordion-button::before {
    content: "\f109";
    position: absolute;
    width: 38px;
    height: 38px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 30px;
    top: 16px;
    font-family: "flaticon_tg_default";
    font-weight: 400;
    font-size: 16px;
    background: var(--tg-border-1);
    color: var(--tg-color-gray-4);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%
}

@media (max-width:767.98px) {
    .faq__wrap-two .accordion-button::before {
        right: 15px
    }
}

.faq__wrap-two .accordion-body {
    padding: 0 30px 30px
}

@media (max-width:767.98px) {
    .faq__wrap-two .accordion-body {
        padding: 0 20px 25px
    }
}

.faq__wrap-two .accordion-body p {
    margin-bottom: 0
}

.faq__wrap-three .accordion-button::before {
    content: "\f109";
    position: absolute;
    right: 0;
    top: 28px;
    font-family: "flaticon_tg_default";
    font-weight: 700;
    font-size: 14px;
    color: var(--tg-theme-primary);
    border: 2px solid var(--tg-theme-primary);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center
}

.faq__wrap-four .accordion-item {
    border: none;
    margin-bottom: 6px
}

    .faq__wrap-four .accordion-item:first-child {
        border: none
    }

    .faq__wrap-four .accordion-item:last-child {
        margin-bottom: 0
    }

.faq__wrap-four .accordion-button {
    font-size: 18px;
    font-weight: 500;
    padding: 14px 52px 14px 20px;
    border: 1px solid var(--tg-color-gray-4);
    background: var(--tg-color-gray-2);
    -webkit-border-radius: 8px !important;
    -moz-border-radius: 8px !important;
    -o-border-radius: 8px !important;
    -ms-border-radius: 8px !important;
    border-radius: 8px !important
}

    .faq__wrap-four .accordion-button:not(.collapsed) {
        background: var(--tg-theme-primary);
        color: var(--tg-color-white-default);
        border-color: var(--tg-theme-primary)
    }

        .faq__wrap-four .accordion-button:not(.collapsed)::before {
            color: var(--tg-color-white-default)
        }

    .faq__wrap-four .accordion-button::before {
        right: 20px;
        top: 15px;
        font-size: 18px;
        color: var(--tg-theme-primary)
    }

.faq__wrap-four .accordion-body {
    padding: 20px 20px 25px
}

.faq__shape-wrap img {
    position: absolute;
    z-index: -1
}

    .faq__shape-wrap img:nth-child(1) {
        left: 0;
        top: 0
    }

    .faq__shape-wrap img:nth-child(2) {
        right: 0;
        top: 0
    }

.testimonial__area {
    position: relative;
    z-index: 1;
    background: var(--tg-color-gray-1);
    padding: 245px 0 140px;
    margin-top: -105px
}

@media (max-width:767.98px) {
    .testimonial__area {
        padding: 210px 0 100px
    }
}

.testimonial__area-two {
    position: relative;
    z-index: 1
}

    .testimonial__area-two::before {
        content: "";
        position: absolute;
        right: -300px;
        top: 0;
        width: 560px;
        height: 560px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -o-border-radius: 50%;
        -ms-border-radius: 50%;
        border-radius: 50%;
        background: #7838FF;
        filter: blur(150px);
        opacity: .1;
        z-index: -1
    }

.testimonial__area-three {
    position: relative;
    z-index: 1
}

    .testimonial__area-three::before {
        content: "";
        position: absolute;
        left: -244px;
        top: 70px;
        width: 460px;
        height: 460px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -o-border-radius: 50%;
        -ms-border-radius: 50%;
        border-radius: 50%;
        background: #7838FF;
        filter: blur(125px);
        opacity: .1;
        z-index: -1
    }

.testimonial__area-six {
    padding: 130px 0 130px;
    margin-top: 0
}

@media (max-width:767.98px) {
    .testimonial__area-six {
        padding: 100px 0
    }
}

.testimonial__area-seven {
    position: relative;
    z-index: 1
}

.testimonial__bg {
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1
}

.testimonial__bg-two {
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    padding: 140px 0 225px
}

@media (max-width:767.98px) {
    .testimonial__bg-two {
        padding: 100px 0 185px
    }
}

.testimonial__bg-three {
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1
}

.testimonial__bg-four {
    background-size: cover;
    background-position: center;
    background-color: var(--tg-theme-primary);
    position: relative;
    z-index: 1
}

.testimonial__wrap {
    padding: 0 110px;
    position: relative
}

@media (max-width:991.98px) {
    .testimonial__wrap {
        padding: 0 70px
    }
}

@media (max-width:767.98px) {
    .testimonial__wrap {
        padding: 0 0
    }
}

.testimonial__wrap-two {
    padding: 0 120px
}

@media (max-width:991.98px) {
    .testimonial__wrap-two {
        padding: 0 70px
    }
}

@media (max-width:767.98px) {
    .testimonial__wrap-two {
        padding: 0 0
    }
}

.testimonial__wrap-three {
    position: relative
}

.testimonial__item {
    text-align: center
}

.testimonial__item-two {
    background: var(--tg-color-white-default);
    border-radius: 20px;
    border: 1px solid var(--tg-border-9);
    padding: 35px 35px;
    position: relative;
    z-index: 1
}

    .testimonial__item-two > p {
        margin-bottom: 22px
    }

.testimonial__item-three {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
    border: 1px solid var(--tg-border-9);
    background: var(--tg-color-white-default);
    padding: 40px 35px;
    position: relative;
    overflow: hidden;
    z-index: 1
}

@media (max-width:767.98px) {
    .testimonial__item-three {
        padding: 30px 30px
    }
}

.testimonial__item-five {
    border: none;
    box-shadow: -13px 10px 20px 0 rgb(0 0 0 / .15);
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px
}

    .testimonial__item-five > p {
        font-size: 16px;
        font-weight: 500;
        font-style: italic;
        margin-bottom: 15px
    }

    .testimonial__item-five .testimonial__icon-two {
        color: #E3E3E3
    }

    .testimonial__item-five .testimonial__author {
        gap: 10px
    }

        .testimonial__item-five .testimonial__author .thumb {
            width: 50px;
            height: 50px
        }

.testimonial__item-six {
    border: 1px solid #E5E5E5;
    padding: 40px 40px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px;
    background: var(--tg-color-white-default)
}

@media (max-width:1199.98px) {
    .testimonial__item-six {
        padding: 30px 30px
    }
}

.testimonial__item-seven {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0
}

.testimonial__item-wrap-two {
    margin-right: 100px
}

@media (max-width:1199.98px) {
    .testimonial__item-wrap-two {
        margin-right: 0
    }
}

.testimonial__item-wrap-three {
    position: relative;
    z-index: 1
}

.testimonial__icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 28px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tg-color-white-default);
    border: 1px solid var(--tg-border-5);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    color: var(--tg-theme-primary)
}

.testimonial__icon-two svg {
    position: absolute;
    right: 35px;
    bottom: 45px;
    z-index: -1
}

.testimonial__icon-three svg {
    position: absolute;
    right: 35px;
    bottom: -1px;
    z-index: -3;
    width: 56px;
    height: auto
}

.testimonial__content > p {
    font-size: 20px;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 30px
}

.testimonial__content-bottom .title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px
}

.testimonial__content-bottom span {
    display: block
}

.testimonial__content-bottom-two .title {
    color: var(--tg-color-white-default)
}

.testimonial__content-bottom-two span {
    color: #B3CCFF
}

.testimonial__content-bottom-three .title {
    margin-bottom: 6px;
    font-size: 18px;
    font-weight: 600
}

.testimonial__content-bottom-three span {
    display: block;
    line-height: 1;
    color: #7F838C
}

.testimonial__content-top {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px
}

    .testimonial__content-top .testimonial__rating-two {
        margin-bottom: 0
    }

.testimonial__content-two > p {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.55;
    color: var(--tg-border-1)
}

.testimonial__content-three {
    text-align: center
}

    .testimonial__content-three > p {
        margin-bottom: 30px;
        font-size: 22px;
        font-weight: 500;
        color: var(--tg-color-white-default);
        font-style: italic;
        line-height: 1.63
    }

@media (max-width:767.98px) {
    .testimonial__content-three > p {
        font-size: 20px
    }
}

.testimonial__content-three .testimonial__rating {
    margin-bottom: 20px
}

@media (max-width:991.98px) {
    .testimonial__content-four {
        margin-bottom: 50px
    }
}

.testimonial__content-four .section__title .title {
    font-size: 40px
}

@media (max-width:1199.98px) {
    .testimonial__content-four .section__title .title {
        font-size: 36px
    }
}

@media (max-width:767.98px) {
    .testimonial__content-four .section__title .title {
        font-size: 30px
    }
}

.testimonial__content-four p {
    margin-bottom: 20px;
    width: 95%
}

@media (max-width:1199.98px) {
    .testimonial__content-four p {
        width: 100%
    }
}

.testimonial__content-five p {
    margin-bottom: 12px
}

.testimonial__content-six {
    margin-right: 90px
}

@media (max-width:1199.98px) {
    .testimonial__content-six {
        margin-right: 0
    }
}

.testimonial__content-seven p {
    color: var(--tg-color-white-default)
}

.testimonial__author {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 20px
}

    .testimonial__author .thumb {
        width: 60px;
        height: 60px;
        flex: 0 0 auto
    }

        .testimonial__author .thumb img {
            width: 100%;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            -o-border-radius: 50%;
            -ms-border-radius: 50%;
            border-radius: 50%
        }

    .testimonial__author .content .title {
        margin-bottom: 8px;
        font-size: 18px;
        font-weight: 600
    }

    .testimonial__author .content span {
        display: block;
        line-height: 1;
        font-weight: 500;
        font-size: 15px
    }

    .testimonial__author .rating {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        color: var(--tg-color-yellow-light);
        gap: 4px
    }

.testimonial__author-two {
    gap: 15px;
    margin-bottom: 12px
}

.testimonial__rating {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--tg-color-yellow-light);
    gap: 5px;
    margin-bottom: 15px
}

.testimonial__rating-two {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--tg-color-yellow-light);
    margin-bottom: 15px
}

.testimonial__nav .swiper-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    justify-content: center
}

    .testimonial__nav .swiper-wrapper .swiper-slide {
        width: auto !important
    }

    .testimonial__nav .swiper-wrapper button {
        border: none;
        background: #fff0;
        padding: 0;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -o-border-radius: 50%;
        -ms-border-radius: 50%;
        border-radius: 50%;
        position: relative;
        width: 65px
    }

        .testimonial__nav .swiper-wrapper button img {
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            -o-border-radius: 50%;
            -ms-border-radius: 50%;
            border-radius: 50%;
            width: 100%;
            filter: grayscale(1)
        }

.testimonial__nav .swiper-slide-thumb-active button img {
    filter: grayscale(0)
}

@media (max-width:767.98px) {
    .testimonial__nav-two {
        display: none
    }
}

.testimonial__nav-two button {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    background: var(--tg-color-white-default);
    color: var(--tg-theme-primary)
}

    .testimonial__nav-two button.testimonial-button-next {
        left: auto;
        right: 0
    }

    .testimonial__nav-two button.testimonial-button-prev {
        transform: translateY(-50%) rotate(180deg)
    }

    .testimonial__nav-two button:hover {
        background: var(--tg-theme-primary);
        color: var(--tg-color-white-default)
    }

.testimonial__nav-three .swiper-wrapper button {
    border: 3px solid var(--tg-color-white-default);
    width: 50px
}

.testimonial__nav-four button {
    width: 50px;
    height: 50px;
    background: #0039CB;
    color: var(--tg-color-white-default)
}

    .testimonial__nav-four button:hover {
        background: var(--tg-theme-secondary)
    }

@media (max-width:991.98px) {
    .testimonial__nav-five {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 50px;
        gap: 20px
    }
}

.testimonial__nav-five button {
    width: 50px;
    height: 50px;
    background: #0039CB;
    color: var(--tg-color-white-default);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    border: none;
    position: absolute;
    left: -85px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1
}

@media (max-width:1500px) {
    .testimonial__nav-five button {
        left: -55px
    }
}

@media (max-width:1199.98px) {
    .testimonial__nav-five button {
        left: -15px
    }
}

@media (max-width:991.98px) {
    .testimonial__nav-five button {
        position: inherit;
        transform: translateY(0)
    }
}

.testimonial__nav-five button:hover {
    background: var(--tg-theme-secondary)
}

.testimonial__nav-five button.testimonial-button-next {
    left: auto;
    right: -85px
}

@media (max-width:1500px) {
    .testimonial__nav-five button.testimonial-button-next {
        right: -55px
    }
}

@media (max-width:1199.98px) {
    .testimonial__nav-five button.testimonial-button-next {
        right: -15px
    }
}

.testimonial__nav-five button.testimonial-button-prev {
    transform: translateY(-50%) rotate(-180deg)
}

@media (max-width:991.98px) {
    .testimonial__nav-five button.testimonial-button-prev {
        transform: translateY(0) rotate(-180deg)
    }
}

.testimonial__nav-six {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 10px
}

    .testimonial__nav-six button {
        width: 60px;
        height: 60px;
        border: none;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -o-border-radius: 50%;
        -ms-border-radius: 50%;
        border-radius: 50%;
        background: var(--tg-color-gray-1);
        color: var(--tg-theme-primary);
        padding: 0
    }

        .testimonial__nav-six button svg {
            width: 26px;
            height: auto
        }

        .testimonial__nav-six button.testimonial-button-prev {
            transform: rotate(-180deg)
        }

        .testimonial__nav-six button:hover {
            background: var(--tg-theme-primary);
            color: var(--tg-color-white-default)
        }

@media (max-width:991.98px) {
    .testimonial__nav-seven {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 30px;
        gap: 15px
    }
}

.testimonial__nav-seven button {
    width: 60px;
    height: 60px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    padding: 0;
    background: var(--tg-color-gray-1);
    color: var(--tg-theme-primary);
    position: absolute;
    left: -85px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2
}

@media (max-width:1500px) {
    .testimonial__nav-seven button {
        left: -50px
    }
}

@media (max-width:1199.98px) {
    .testimonial__nav-seven button {
        left: -20px
    }
}

@media (max-width:991.98px) {
    .testimonial__nav-seven button {
        position: inherit;
        transform: translateY(0)
    }
}

.testimonial__nav-seven button:hover {
    background: var(--tg-theme-primary);
    color: var(--tg-color-white-default)
}

.testimonial__nav-seven button.testimonial-button-next {
    left: auto;
    right: -85px
}

@media (max-width:1500px) {
    .testimonial__nav-seven button.testimonial-button-next {
        right: -50px
    }
}

@media (max-width:1199.98px) {
    .testimonial__nav-seven button.testimonial-button-next {
        right: -20px
    }
}

.testimonial__nav-eight button {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0
}

    .testimonial__nav-eight button:hover {
        background: var(--tg-theme-secondary)
    }

.testimonial__shape-wrap img {
    position: absolute;
    z-index: -1
}

    .testimonial__shape-wrap img:nth-child(1) {
        left: 0;
        top: 0
    }

@media (max-width:1500px) {
    .testimonial__shape-wrap img:nth-child(1) {
        max-width: 230px
    }
}

@media (max-width:767.98px) {
    .testimonial__shape-wrap img:nth-child(1) {
        max-width: 160px
    }
}

.testimonial__shape-wrap img:nth-child(2) {
    left: 10%;
    top: 0
}

.testimonial__shape-wrap img:nth-child(3) {
    left: 0;
    bottom: 0
}

@media (max-width:991.98px) {
    .testimonial__shape-wrap img:nth-child(3) {
        max-width: 180px
    }
}

@media (max-width:767.98px) {
    .testimonial__shape-wrap img:nth-child(3) {
        max-width: 140px
    }
}

.testimonial__shape-wrap img:nth-child(4) {
    right: 0;
    bottom: 0
}

@media (max-width:1500px) {
    .testimonial__shape-wrap img:nth-child(4) {
        max-width: 350px
    }
}

@media (max-width:991.98px) {
    .testimonial__shape-wrap img:nth-child(4) {
        max-width: 250px
    }
}

@media (max-width:767.98px) {
    .testimonial__shape-wrap img:nth-child(4) {
        max-width: 160px
    }
}

.testimonial__shape-wrap img:nth-child(5) {
    right: 0;
    bottom: 26%
}

@media (max-width:1500px) {
    .testimonial__shape-wrap img:nth-child(5) {
        max-width: 130px
    }
}

@media (max-width:991.98px) {
    .testimonial__shape-wrap img:nth-child(5) {
        max-width: 90px;
        bottom: 13%
    }
}

@media (max-width:767.98px) {
    .testimonial__shape-wrap img:nth-child(5) {
        max-width: 60px;
        bottom: 8%
    }
}

.testimonial__shape-wrap img:nth-child(6) {
    left: 50%;
    transform: translateX(-50%);
    bottom: 10%
}

.testimonial__shape-wrap-two img {
    position: absolute;
    left: 115px;
    bottom: 0;
    z-index: -1
}

@media (max-width:767.98px) {
    .testimonial__shape-wrap-two img {
        left: 40px
    }
}

.testimonial__shape-two img {
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 18%;
    transform: translateX(-50%)
}

.testimonial__shape-three img {
    position: absolute;
    right: 19%;
    top: 0;
    z-index: -1
}

@media (max-width:1500px) {
    .testimonial__shape-three img {
        right: 8%
    }
}

@media (max-width:1199.98px) {
    .testimonial__shape-three img {
        right: 7%;
        width: 500px
    }
}

.testimonial-active-four {
    margin-right: 1px
}

.testimonial-active-five {
    height: 536px
}

@media (max-width:767.98px) {
    .testimonial-active-five {
        height: 355px
    }
}

.sidebar__tag-list .list-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap
}

    .sidebar__tag-list .list-wrap li a {
        font-size: 14px;
        font-weight: 500;
        color: var(--tg-theme-primary);
        background: var(--tg-color-gray-4);
        display: block;
        padding: 13px 18px;
        line-height: 1;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        -o-border-radius: 4px;
        -ms-border-radius: 4px;
        border-radius: 4px
    }

        .sidebar__tag-list .list-wrap li a:hover {
            background: var(--tg-theme-primary);
            color: var(--tg-color-white-default)
        }

.comment-respond {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -o-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
    padding: 35px 40px 50px;
    background: var(--tg-color-gray-1)
}

@media (max-width:1199.98px) {
    .comment-respond {
        padding: 35px 25px 35px
    }
}

.comment-reply-title {
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: 600
}

@media (max-width:1199.98px) {
    .comment-reply-title {
        font-size: 26px
    }
}

@media (max-width:767.98px) {
    .comment-reply-title {
        font-size: 26px
    }
}

.comment-form .comment-notes {
    margin-bottom: 15px
}

.comment-form .form-grp {
    margin-bottom: 15px
}

    .comment-form .form-grp textarea, .comment-form .form-grp input:not([type="checkbox"]) {
        width: 100%;
        border: 1px solid #E6EEFF;
        background: var(--tg-color-white-default);
        font-weight: 400;
        font-size: 16px;
        color: var(--tg-heading-color);
        padding: 12px 15px;
        height: 50px;
        display: block;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -o-border-radius: 8px;
        -ms-border-radius: 8px;
        border-radius: 8px
    }

        .comment-form .form-grp textarea::placeholder, .comment-form .form-grp input::placeholder {
            font-weight: 400;
            font-size: 15px;
            color: var(--tg-border-1)
        }

    .comment-form .form-grp textarea {
        min-height: 130px;
        max-height: 130px
    }

.comment-form .checkbox-grp {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    margin: 25px 0
}

    .comment-form .checkbox-grp label {
        font-weight: 400;
        font-size: 14px;
        color: var(--tg-body-color);
        user-select: none
    }

.profit__wrap-three {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    text-align: left;
    background: var(--tg-color-white-default);
    position: absolute;
    left: 0;
    top: 23%;
    gap: 10px;
    padding: 20px 25px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px
}

@media (max-width:767.98px) {
    .profit__wrap-three {
        display: none
    }
}

.profit__wrap-three .content .count {
    margin-bottom: 5px;
    font-size: 30px;
    line-height: 1
}

.profit__wrap-three .content > p {
    margin-bottom: 0;
    font-size: 14px;
    color: #293736;
    font-weight: 600;
    line-height: 1
}

.work__item {
    text-align: center
}

.work__item-wrap {
    position: relative;
    z-index: 1
}

    .work__item-wrap .line__shape {
        position: absolute;
        left: 0;
        top: 93px;
        right: 0
    }

@media (max-width:991.98px) {
    .work__item-wrap .line__shape {
        display: none
    }
}

.work__item-wrap .line__shape img {
    width: 100%
}

.work__item-wrap-two {
    position: relative;
    z-index: 1
}

.work__item .step {
    display: inline-block;
    color: var(--tg-theme-primary);
    background: var(--tg-color-gray-1);
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -o-border-radius: 100px;
    -ms-border-radius: 100px;
    border-radius: 100px;
    padding: 10px 17px;
    line-height: 1;
    position: relative;
    transition: 0.3s linear;
    margin-bottom: 50px;
    font-weight: 500
}

@media (max-width:991.98px) {
    .work__item .step {
        margin-bottom: 30px
    }
}

.work__item .step::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -30px;
    width: 16px;
    height: 16px;
    background: var(--tg-color-gray-1);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    border: 2.5px solid var(--tg-color-white-default);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s
}

@media (max-width:991.98px) {
    .work__item .step::before {
        display: none
    }
}

.work__item:hover .step {
    background: var(--tg-theme-primary);
    color: var(--tg-color-white-default)
}

    .work__item:hover .step::before {
        background: var(--tg-theme-primary)
    }

.work__item:hover .work__icon {
    color: var(--tg-theme-primary)
}

.work__item-two:hover .work__icon-two {
    transform: translateY(5px)
}

.work__item-two:hover .work__step {
    background: var(--tg-theme-primary);
    color: var(--tg-color-white-default)
}

.work__icon {
    font-size: 50px;
    color: var(--tg-border-1);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    margin-bottom: 25px
}

.work__icon-two {
    width: 120px;
    height: 120px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    background: var(--tg-color-gray-4);
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -o-border-radius: 40px;
    -ms-border-radius: 40px;
    border-radius: 40px;
    font-size: 60px;
    color: var(--tg-theme-primary);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s
}

@media (max-width:991.98px) {
    .work__thumb {
        margin-bottom: 50px
    }
}

.work__thumb img {
    width: 100%;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px
}

.work__content .title {
    margin-bottom: 12px;
    font-size: 24px;
    font-weight: 600
}

.work__content p {
    width: 100%;
    margin: 0 auto
}

@media (max-width:1199.98px) {
    .work__content p {
        width: 100%
    }
}

.work__content-two .title {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 600
}

.work__content-two p {
    width: 85%;
    margin: 0 auto
}

@media (max-width:1199.98px) {
    .work__content-two p {
        width: 100%
    }
}

.work__content-three .section__title .title {
    font-weight: 500
}

.work__content-three p {
    margin-bottom: 30px
}

.work__list-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px 0
}

@media (max-width:767.98px) {
    .work__list-wrap {
        gap: 15px 0
    }
}

.work__list-wrap li {
    width: 50%;
    flex: 0 0 auto;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 500;
    font-size: 16px;
    color: var(--tg-heading-color);
    line-height: 1.2
}

@media (max-width:767.98px) {
    .work__list-wrap li {
        width: 100%
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .work__list-wrap li {
        width: 50%
    }
}

.work__list-wrap li svg {
    color: var(--tg-theme-primary);
    width: 22px;
    flex: 0 0 auto
}

.work__step {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: var(--tg-theme-primary);
    background: var(--tg-color-gray-1);
    line-height: 1;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    padding: 8px 12px;
    margin-bottom: 20px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s
}

.work__line-shape svg {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50px;
    color: #BDC1DB;
    z-index: -1
}

@media (max-width:1199.98px) {
    .work__line-shape svg {
        width: 900px
    }
}

@media (max-width:991.98px) {
    .work__line-shape svg {
        display: none
    }
}

@-webkit-keyframes dash_animation {
    to {
        stroke-dashoffset: 0
    }
}

@keyframes dash_animation {
    to {
        stroke-dashoffset: 0
    }
}

.has-animation.active-animation .work__line-shape .dashed1 {
    stroke-dashoffset: 1150;
    stroke-dasharray: 1150;
    -webkit-animation: dash_animation 3s linear forwards;
    animation: dash_animation 3s linear forwards
}

.benefit__area {
    background: var(--tg-color-gray-2)
}

.benefit__area-two {
    background: var(--tg-color-gray-2)
}

.benefit__img {
    position: relative;
    margin: 0 20px;
    z-index: 1
}

@media (max-width:1199.98px) {
    .benefit__img {
        margin: 0 0
    }
}

@media (max-width:991.98px) {
    .benefit__img {
        margin: 0 0 50px 0
    }
}

.benefit__img img:nth-child(1) {
    width: 100%
}

.benefit__img img:nth-child(2) {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%
}

.benefit__img img:nth-child(3) {
    position: absolute;
    left: -12%;
    bottom: -8%;
    z-index: -1
}

@media (max-width:991.98px) {
    .benefit__img-two {
        margin-bottom: 20px
    }
}

.benefit__img-two img {
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px
}

@media (max-width:991.98px) {
    .benefit__img-two img {
        width: 100%;
        max-height: 400px;
        object-fit: cover
    }
}

.benefit__img-three {
    text-align: right
}

.benefit__content > p {
    margin-bottom: 30px
}

.benefit__content-two .title {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 20px
}

.benefit__content-two p {
    margin-bottom: 0
}

.benefit__item {
    margin-bottom: 30px
}

.benefit__item-top {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 17px
}

    .benefit__item-top .title {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 0;
        line-height: 1.4
    }

.benefit__item p {
    margin-bottom: 0
}

.benefit__item-two {
    border: 1px solid #cfd5ed;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -o-border-radius: 12px;
    -ms-border-radius: 12px;
    border-radius: 12px;
    padding: 30px 24px 25px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--tg-color-white-default);
    margin-bottom: 24px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s
}

@media (max-width:1199.98px) {
    .benefit__item-two {
        padding: 27px 20px 22px
    }
}

@media (max-width:991.98px) {
    .benefit__item-two {
        padding: 30px 24px 25px
    }
}

.benefit__item-two:hover {
    transform: translateY(-5px)
}

.benefit__icon {
    width: 70px;
    height: 70px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    background: var(--tg-color-white-default);
    font-size: 40px;
    justify-content: center;
    color: var(--tg-theme-primary)
}

.benefit__icon-two {
    font-size: 60px;
    line-height: 1;
    color: var(--tg-theme-primary)
}

@media (max-width:1199.98px) {
    .benefit__icon-two {
        font-size: 50px
    }
}

.features__area {
    padding-bottom: 20px;
    margin-top: -110px
}

.features__area-three {
    background: var(--tg-color-gray-1)
}

.features__item {
    border: 1px solid #E0E1E9;
    background: var(--tg-color-white-default);
    padding: 40px 22px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s
}

@media (max-width:1199.98px) {
    .features__item {
        padding: 30px 25px
    }
}

@media (max-width:991.98px) {
    .features__item {
        padding: 35px 35px
    }
}

.features__item-top {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px
}

    .features__item-top .title {
        margin-bottom: 0;
        font-size: 20px;
        font-weight: 600
    }

.features__item:hover {
    transform: translateY(-5px)
}

    .features__item:hover .features__icon i {
        transform: rotateY(180deg)
    }

.features__item-two {
    background: var(--tg-color-white-default);
    border: 1px solid #CFD5ED;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    padding: 20px 20px 20px;
    height: 100%;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s
}

    .features__item-two:hover {
        transform: translateY(-5px)
    }

        .features__item-two:hover .features__icon-two {
            transform: rotateY(180deg)
        }

.features__icon {
    width: 70px;
    height: 70px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--tg-theme-primary);
    background: var(--tg-color-gray-1);
    flex: 0 0 auto
}

    .features__icon i {
        -webkit-transition: all 0.5s ease-out 0s;
        -moz-transition: all 0.5s ease-out 0s;
        -ms-transition: all 0.5s ease-out 0s;
        -o-transition: all 0.5s ease-out 0s;
        transition: all 0.5s ease-out 0s
    }

.features__icon-two {
    width: 52px;
    height: 52px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg,#f1efff 0%,#fff0 100%);
    justify-content: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    font-size: 30px;
    color: var(--tg-theme-primary);
    margin-bottom: 20px;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s
}

@media (max-width:991.98px) {
    .features__img {
        margin-bottom: 50px
    }
}

.features__img img {
    height: auto;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px;
    width: 100%
}

.features__img-two img {
    height: auto;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px
}

.features__content p {
    margin-bottom: 0
}

.features__content-two {
    margin-right: 35px
}

@media (max-width:1199.98px) {
    .features__content-two {
        margin-right: 0
    }
}

.features__content-two p {
    margin-bottom: 25px
}

.features__content-two .list-wrap {
    margin-bottom: 50px
}

@media (max-width:767.98px) {
    .features__content-two .list-wrap {
        margin-bottom: 30px
    }
}

.features__content-three {
    margin-left: 60px
}

@media (max-width:1199.98px) {
    .features__content-three {
        margin-left: 0
    }
}

.features__content-three p {
    margin-bottom: 30px
}

.features__content-three .services__details-client-wrap {
    justify-content: flex-start;
    margin-bottom: 40px
}

.features__content-three .client__box-two {
    padding: 20px 35px
}

.features__content-three .list-wrap {
    margin-bottom: 0
}

.features__content-four .title {
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 20px
}

.features__content-four p {
    margin-bottom: 0
}

.features__content-five {
    margin-left: 70px
}

@media (max-width:1199.98px) {
    .features__content-five {
        margin-left: 0
    }
}

@media (max-width:991.98px) {
    .features__content-five {
        margin-bottom: 50px
    }
}

.features__divider {
    width: 100%;
    height: 1px;
    background: #D9D9D9;
    display: block;
    margin: 80px 0
}

@media (max-width:767.98px) {
    .features__divider {
        margin: 60px 0
    }
}

.challenge__thumb {
    width: 100%;
    height: 100%
}

    .challenge__thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }

.challenge__content {
    padding: 30px 0 0 55px
}

@media (max-width:1199.98px) {
    .challenge__content {
        padding: 20px 0 0 35px
    }
}

@media (max-width:991.98px) {
    .challenge__content {
        padding: 50px 0 50px 0
    }
}

.challenge__content p {
    margin-bottom: 25px
}

.challenge__list li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--tg-theme-primary);
    margin-bottom: 8px
}

    .challenge__list li svg {
        transform: translateY(8px)
    }

    .challenge__list li:last-child {
        margin-bottom: 0
    }

.strategic__thumb {
    width: 100%;
    height: 100%
}

    .strategic__thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }

.strategic__content {
    padding: 50px 85px 0 0
}

@media (max-width:1199.98px) {
    .strategic__content {
        padding: 50px 45px 0 0
    }
}

@media (max-width:991.98px) {
    .strategic__content {
        padding: 50px 0 0 0
    }
}

.strategic__content > p {
    margin-bottom: 35px
}

.pricing__tab {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px
}

    .pricing__tab .tab-btn {
        cursor: pointer;
        font-weight: 600;
        font-size: 16px;
        user-select: none;
        transition: 0.3s;
        color: var(--tg-body-color)
    }

        .pricing__tab .tab-btn.annual_tab_title.active {
            color: var(--tg-theme-primary)
        }

        .pricing__tab .tab-btn.monthly_tab_title {
            color: var(--tg-theme-primary)
        }

            .pricing__tab .tab-btn.monthly_tab_title.active {
                color: var(--tg-body-color)
            }

        .pricing__tab .tab-btn strong {
            background: #00AB4D;
            color: var(--tg-color-white-default);
            font-weight: 600;
            font-size: 12px;
            padding: 4px 10px;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            -o-border-radius: 5px;
            -ms-border-radius: 5px;
            border-radius: 5px;
            line-height: 1;
            margin-left: 15px
        }

    .pricing__tab .pricing-tab-switcher {
        height: 30px;
        width: 58px;
        display: inline-block;
        border-radius: 30px;
        position: relative;
        margin: 0 15px;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        cursor: pointer;
        background: var(--tg-theme-primary)
    }

        .pricing__tab .pricing-tab-switcher::before {
            content: "";
            position: absolute;
            left: 2px;
            top: 2px;
            bottom: 2px;
            width: 26px;
            border-radius: 50%;
            background: var(--tg-color-white-default);
            transition: 0.3s
        }

        .pricing__tab .pricing-tab-switcher.active::before {
            left: calc(100% - 28px)
        }

.pricing__box {
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    background: #FCFBFB;
    padding: 45px 18px 50px;
    height: 1152px
}

@media (max-width:1199.98px) {
    .pricing__box {
        padding: 30px 25px 40px
    }
}

@media (max-width:767.98px) {
    .pricing__box {
        padding: 30px 30px 30px
    }
}

.pricing__top {
    margin-bottom: 25px
}

    .pricing__top .title {
        margin-bottom: 10px;
        font-weight: 500;
        font-size: 22px
    }

    .pricing__top p {
        margin-bottom: 0;
        line-height: 1.5
    }

.pricing__price {
    margin-bottom: 30px
}

    .pricing__price .price {
        margin-bottom: 0;
        font-weight: 600;
        font-size: 36px;
        font-family: var(--tg-heading-font-family);
        color: var(--tg-heading-color)
    }

        .pricing__price .price span {
            font-size: 16px;
            font-weight: 600;
            color: var(--tg-heading-color)
        }

        .pricing__price .price.annual_price {
            display: none
        }

    .pricing__price.change-subs-duration .price.monthly_price {
        display: none
    }

    .pricing__price.change-subs-duration .price.annual_price {
        display: block
    }

.pricing__button {
    margin-top: 25px;
    margin-bottom: 25px
}

    .pricing__button .tg-btn {
        width: 100%;
        justify-content: center;
        box-shadow: 0 10px 20px 0 rgb(0 0 0 / .15)
    }

.pricing__list-title {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 18px;
    color: var(--tg-heading-color)
}

.pricing__list .list-wrap li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    margin-bottom: 10px
}

    .pricing__list .list-wrap li:last-child {
        margin-bottom: 0
    }

    .pricing__list .list-wrap li svg {
        flex-shrink: 0;
        color: var(--tg-theme-primary);
        margin-top: 3px
    }

.contact__area {
    padding: 85px 0 110px
}

.contact__form-wrap {
    background: var(--tg-color-gray-1);
    padding: 50px 60px 55px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px;
    margin-left: 30px
}

@media (max-width:1199.98px) {
    .contact__form-wrap {
        padding: 35px 35px 40px
    }
}

@media (max-width:991.98px) {
    .contact__form-wrap {
        margin-left: 0;
        margin-top: 50px
    }
}

@media (max-width:767.98px) {
    .contact__form-wrap {
        padding: 35px 30px 40px
    }
}

.contact__form-wrap .title {
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 600
}

@media (max-width:767.98px) {
    .contact__form-wrap .title {
        font-size: 26px
    }
}

.contact__form .form-grp {
    margin-bottom: 15px
}

    .contact__form .form-grp > label {
        font-size: 16px;
        font-weight: 500;
        color: var(--tg-body-color);
        line-height: 1;
        margin-bottom: 14px
    }

.contact__form .checkbox-grp {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
    margin: 20px 0
}

    .contact__form .checkbox-grp input {
        width: 18px;
        margin-right: 9px;
        height: 18px;
        cursor: pointer;
        flex: 0 0 auto;
        margin-top: 3px
    }

    .contact__form .checkbox-grp label {
        font-weight: 400;
        font-size: 16px;
        color: var(--tg-body-color);
        user-select: none;
        margin-bottom: 0;
        line-height: 1.2
    }

.ajax-response.error, .ajax-response.success {
    margin: 20px 0 0 !important
}

.ajax-response.error {
    color: red
}

.ajax-response.success {
    color: green
}

.footer__area {
    position: relative;
    z-index: 1
}

.footer__area-two {
    background: var(--tg-color-dark-2);
    position: relative;
    z-index: 1
}

.footer__area-three {
    position: relative;
    z-index: 1
}

    .footer__area-three::before {
        content: "";
        position: absolute;
        left: -240px;
        bottom: -200px;
        width: 520px;
        height: 520px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -o-border-radius: 50%;
        -ms-border-radius: 50%;
        border-radius: 50%;
        background: #7838FF;
        filter: blur(125px);
        opacity: .1;
        z-index: -1
    }

.footer__area-four {
    background: var(--tg-theme-secondary);
    position: relative;
    z-index: 1
}

.footer__area-five {
    padding-top: 88px;
    margin-top: -88px
}

.footer__top {
    padding: 140px 0 100px
}

@media (max-width:767.98px) {
    .footer__top {
        padding: 100px 0 60px
    }
}

.footer__top .row *:nth-child(2) .footer__widget {
    margin-left: 40px
}

@media (max-width:767.98px) {
    .footer__top .row *:nth-child(2) .footer__widget {
        margin-left: 0
    }
}

.footer__top .row *:nth-child(4) .footer__widget {
    margin-left: 30px
}

@media (max-width:1199.98px) {
    .footer__top .row *:nth-child(4) .footer__widget {
        margin-left: 0
    }
}

.footer__top-two {
    padding: 70px 0 0
}

@media (max-width:767.98px) {
    .footer__top-two {
        padding: 50px 0 60px
    }
}

.footer__top-two .row *:nth-child(2) .footer__widget {
    margin-left: 40px
}

@media (max-width:991.98px) {
    .footer__top-two .row *:nth-child(2) .footer__widget {
        margin-left: 0
    }
}

.footer__top-two .row *:nth-child(4) .footer__widget {
    margin-left: 80px
}

@media (max-width:1199.98px) {
    .footer__top-two .row *:nth-child(4) .footer__widget {
        margin-left: 0
    }
}

.footer__top-three {
    padding: 75px 0 60px
}

    .footer__top-three .row *:nth-child(2) .footer__widget {
        margin-left: 30px
    }

@media (max-width:1199.98px) {
    .footer__top-three .row *:nth-child(2) .footer__widget {
        margin-left: 0
    }
}

.footer__top-three .row *:nth-child(4) .footer__widget {
    margin-left: 50px
}

@media (max-width:1199.98px) {
    .footer__top-three .row *:nth-child(4) .footer__widget {
        margin-left: 0
    }
}

.footer__logo {
    margin-bottom: 25px
}

.footer__logo-two {
    margin-bottom: 30px
}

.footer__content p {
    margin-bottom: 25px;
    font-size: 15px
}

.footer__content-two p {
    margin-bottom: 25px
}

.footer__content-three p {
    color: var(--tg-color-gray-4)
}

.footer__contact .list-wrap li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: baseline;
    gap: 15px;
    color: var(--tg-color-gray-4);
    line-height: 1.6;
    margin-bottom: 15px
}

    .footer__contact .list-wrap li i {
        font-size: 24px;
        color: var(--tg-color-gray-4);
        transform: translateY(7px)
    }

    .footer__contact .list-wrap li a {
        color: var(--tg-color-gray-4)
    }

        .footer__contact .list-wrap li a:hover {
            color: var(--tg-theme-primary)
        }

.footer__contact-two p {
    margin-bottom: 20px
}

.footer__contact-two .list-wrap li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    margin-bottom: 20px
}

    .footer__contact-two .list-wrap li:last-child {
        margin-bottom: 0
    }

    .footer__contact-two .list-wrap li i {
        font-size: 24px;
        color: var(--tg-theme-primary)
    }

    .footer__contact-two .list-wrap li a {
        color: var(--tg-body-color)
    }

        .footer__contact-two .list-wrap li a:hover {
            color: var(--tg-theme-primary)
        }

.footer__widget {
    margin-bottom: 40px
}

.footer__widget-title {
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 600
}

.footer__widget-title-two {
    color: var(--tg-color-white-default)
}

.footer__widget-link li {
    margin-bottom: 10px
}

    .footer__widget-link li:last-child {
        margin-bottom: 0
    }

    .footer__widget-link li a {
        color: var(--tg-body-color);
        position: relative;
        font-size: 16px
    }

        .footer__widget-link li a::before {
            content: "";
            position: absolute;
            left: 0;
            bottom: -1px;
            width: 100%;
            height: 1px;
            background: currentColor;
            transform-origin: right top;
            transform: scale(0,1);
            transition: transform 0.4s cubic-bezier(.74,.72,.27,.24)
        }

        .footer__widget-link li a:hover {
            color: var(--tg-theme-primary)
        }

            .footer__widget-link li a:hover::before {
                -webkit-transform-origin: left top;
                -ms-transform-origin: left top;
                transform-origin: left top;
                -webkit-transform: scale(1,1);
                -ms-transform: scale(1,1);
                transform: scale(1,1)
            }

.footer__widget-link-two li {
    color: var(--tg-color-gray-4)
}

    .footer__widget-link-two li a {
        color: var(--tg-color-gray-4)
    }

.footer__instagram .list-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px
}

    .footer__instagram .list-wrap a img {
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -o-border-radius: 10px;
        -ms-border-radius: 10px;
        border-radius: 10px
    }

.footer__newsletter span {
    display: block;
    margin-bottom: 20px
}

.footer__newsletter-form {
    position: relative
}

    .footer__newsletter-form input {
        width: 100%;
        -webkit-border-radius: 100px;
        -moz-border-radius: 100px;
        -o-border-radius: 100px;
        -ms-border-radius: 100px;
        border-radius: 100px;
        background: #F4F6FC;
        padding: 15px 60px 15px 25px;
        height: 54px
    }

    .footer__newsletter-form button {
        width: 48px;
        height: 48px;
        position: absolute;
        right: 4px;
        top: 50%;
        transform: translateY(-50%);
        background: var(--tg-theme-primary);
        color: var(--tg-color-white-default);
        border: none;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -o-border-radius: 50%;
        -ms-border-radius: 50%;
        border-radius: 50%
    }

        .footer__newsletter-form button:hover {
            background: var(--tg-theme-secondary)
        }

.footer__newsletter-two span {
    color: var(--tg-color-gray-4)
}

.footer__social .list-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 12px
}

    .footer__social .list-wrap li a {
        width: 40px;
        height: 40px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        background: var(--tg-color-gray-8);
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -o-border-radius: 50%;
        -ms-border-radius: 50%;
        border-radius: 50%;
        color: var(--tg-body-color);
        justify-content: center
    }

        .footer__social .list-wrap li a svg {
            width: 16px;
            height: 16px
        }

        .footer__social .list-wrap li a:hover {
            background: var(--tg-theme-primary);
            color: var(--tg-color-white-default)
        }

.footer__social-two .list-wrap {
    justify-content: flex-end
}

@media (max-width:767.98px) {
    .footer__social-two .list-wrap {
        justify-content: center
    }
}

.footer__social-three .title {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px
}

.footer__social-three .list-wrap li a {
    background: var(--tg-color-white-default);
    border: 1px solid #ADADAD
}

    .footer__social-three .list-wrap li a:hover {
        background: var(--tg-theme-primary);
        color: var(--tg-color-white-default);
        border-color: var(--tg-theme-primary)
    }

.footer__social-four .list-wrap li a {
    color: var(--tg-color-white-default);
    border: 2px solid #494A67;
    background: #fff0
}

    .footer__social-four .list-wrap li a:hover {
        border-color: var(--tg-theme-primary)
    }

.footer__bottom {
    background: var(--tg-color-white-default);
    border-top: 1px solid var(--tg-border-8);
    padding: 40px 0
}

.footer__bottom-two {
    border-top: 1px solid #232349;
    padding: 25px 0 50px 0
}

@media (max-width:767.98px) {
    .footer__bottom-two {
        padding: 25px 0
    }
}

.footer__bottom-three {
    border-top: 1px solid #D7DBEB;
    padding: 40px 0
}

@media (max-width:767.98px) {
    .footer__bottom-three {
        padding: 25px 0
    }
}

@media (max-width:991.98px) {
    .footer__bottom-four .copyright__content-two {
        margin-bottom: 15px
    }
}

@media (max-width:991.98px) {
    .footer__bottom-four .footer__social-two .list-wrap {
        justify-content: center
    }
}

.footer__bottom-five {
    background: #040534;
    padding: 42px 0
}

@media (max-width:767.98px) {
    .footer__bottom-five {
        padding: 28px 0
    }
}

@media (max-width:767.98px) {
    .footer__bottom-logo {
        text-align: center;
        margin-bottom: 20px
    }
}

@media (max-width:991.98px) {
    .footer__bottom-logo-two {
        text-align: center;
        margin-bottom: 15px
    }
}

.footer__inquiry {
    padding: 100px 0 65px;
    border-bottom: 1px solid #141543
}

.footer__inquiry-content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 30px 50px
}

@media (max-width:1199.98px) {
    .footer__inquiry-content {
        gap: 30px
    }
}

@media (max-width:991.98px) {
    .footer__inquiry-content {
        gap: 20px;
        flex-wrap: wrap;
        text-align: center;
        margin-bottom: 20px
    }
}

.footer__inquiry-content .title {
    color: var(--tg-color-white-default);
    font-size: 40px;
    margin-bottom: 0;
    font-weight: 300;
    width: 41%;
    flex: 0 0 auto
}

@media (max-width:991.98px) {
    .footer__inquiry-content .title {
        width: 100%
    }
}

.footer__inquiry-content .title span {
    font-weight: 600;
    display: block
}

.footer__inquiry-content p {
    color: var(--tg-color-gray-4);
    margin-bottom: 0;
    font-weight: 500
}

@media (max-width:991.98px) {
    .footer__inquiry-btn {
        text-align: center !important
    }
}

.footer__shape-wrap img {
    position: absolute;
    z-index: -1
}

    .footer__shape-wrap img:nth-child(1) {
        right: 0;
        top: 0
    }

    .footer__shape-wrap img:nth-child(2) {
        left: 0;
        bottom: 0
    }

    .footer__shape-wrap img:nth-child(3) {
        right: 4%;
        bottom: 14px
    }

@media (max-width:767.98px) {
    .footer__shape-wrap img:nth-child(3) {
        right: 5%;
        bottom: 60px;
        max-width: 100px
    }
}

.footer__shape-wrap-two img {
    position: absolute;
    z-index: -1
}

    .footer__shape-wrap-two img:nth-child(1) {
        left: 0;
        top: 0
    }

@media (max-width:1500px) {
    .footer__shape-wrap-two img:nth-child(1) {
        max-width: 200px
    }
}

.footer__shape-wrap-two img:nth-child(2) {
    bottom: 0;
    left: 0;
    mix-blend-mode: luminosity;
    opacity: .5
}

@media (max-width:1500px) {
    .footer__shape-wrap-two img:nth-child(2) {
        max-width: 130px
    }
}

.footer__shape-wrap-two img:nth-child(3) {
    right: 0;
    bottom: 0;
    mix-blend-mode: luminosity;
    opacity: .3
}

@media (max-width:1500px) {
    .footer__shape-wrap-two img:nth-child(3) {
        max-width: 160px
    }
}

.footer__shape-wrap-three img {
    position: absolute;
    z-index: -1
}

    .footer__shape-wrap-three img:nth-child(1) {
        bottom: 0;
        left: 0;
        mix-blend-mode: luminosity;
        opacity: .5
    }

@media (max-width:1500px) {
    .footer__shape-wrap-three img:nth-child(1) {
        max-width: 130px
    }
}

.footer__shape-wrap-three img:nth-child(2) {
    right: 0;
    bottom: 0;
    mix-blend-mode: luminosity;
    opacity: .3
}

@media (max-width:1500px) {
    .footer__shape-wrap-three img:nth-child(2) {
        max-width: 160px
    }
}

.footer__shape-wrap-four img {
    position: absolute;
    z-index: -1
}

    .footer__shape-wrap-four img:nth-child(1) {
        left: 0;
        top: 120px
    }

@media (max-width:1500px) {
    .footer__shape-wrap-four img:nth-child(1) {
        top: 25px
    }
}

.footer__shape-wrap-four img:nth-child(2) {
    left: 0;
    bottom: 0
}

.footer__shape-wrap-four img:nth-child(3) {
    right: -96px;
    bottom: 270px
}

@media (max-width:1500px) {
    .footer__shape-wrap-four img:nth-child(3) {
        bottom: 140px
    }
}

.footer__shape-wrap-four img:nth-child(4) {
    right: 15%;
    bottom: 28%
}

@media (max-width:991.98px) {
    .footer__shape-wrap-four img:nth-child(4) {
        display: none
    }
}

.copyright__content {
    text-align: center
}

    .copyright__content p {
        margin-bottom: 0;
        font-size: 15px
    }

@media (max-width:767.98px) {
    .copyright__content-two {
        text-align: center;
        margin-bottom: 25px
    }
}

.copyright__content-two p {
    color: #878BA8;
    margin-bottom: 0;
    font-size: 15px
}

.copyright__content-three p {
    margin-bottom: 0;
    font-size: 15px;
    text-align: right
}

@media (max-width:767.98px) {
    .copyright__content-three p {
        text-align: center
    }
}

.copyright__content-four p {
    margin-bottom: 0;
    font-size: 15px;
    text-align: center;
    color: #878BA8
}

.tg-btn-lavender {
    background: #E46107;
    color: #fff
}

    .tg-btn-lavender::after {
        background: #fff
    }

    .tg-btn-lavender::before {
        background: #7093ff
    }

    .tg-btn-lavender:hover {
        background: var(--tg-heading-color) !important;
        color: var(--tg-color-white-default) !important
    }

        .tg-btn-lavender:hover::after {
            background: var(--tg-color-white-default)
        }

.features__icon i {
    color: #000
}

.tg-btn svg {
    transition: all 0.3s ease-out 0s
}

.tg-btn-eight::after {
    content: "";
    position: absolute;
    right: 37px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--tg-color-white-default);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s
}

.tg-btn-new {
    background: #E46107;
    border-radius: 8px;
    padding: 17px 10px;
    --arrow-hover-move-x: 110%;
    --arrow-hover-move-y: 100%;
    gap: 22px
}

    .tg-btn-new svg path:nth-of-type(1) {
        transform: translateX(0) translateY(0)
    }

    .tg-btn-new svg path:nth-of-type(2) {
        transform: translateX(calc(-1 * var(--arrow-hover-move-x))) translateY(var(--arrow-hover-move-y))
    }

    .tg-btn-new:hover, .tg-btn-new:focus-visible {
        background: #7093ff;
        color: var(--tg-color-white-default);
        border-color: #7093ff
    }

        .tg-btn-new:hover svg path:nth-of-type(1), .tg-btn-new:focus-visible svg path:nth-of-type(1) {
            transform: translateX(var(--arrow-hover-move-x)) translateY(calc(-1 * var(--arrow-hover-move-y)))
        }

        .tg-btn-new:hover svg path:nth-of-type(2), .tg-btn-new:focus-visible svg path:nth-of-type(2) {
            transform: translateX(0) translateY(0)
        }

    .tg-btn-new::before {
        display: none
    }

    .tg-btn-new::after {
        content: "";
        position: absolute;
        right: 33px;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 18px;
        background: var(--tg-color-white-default);
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s
    }

.services-active-three-prev {
    transform: rotate(-180deg)
}

.testimonial__content-four .section__title span, .testimonial__content-four .section__title h2, .testimonial__content-four p, .services__area-twelve .section__title h2, .services__area-twelve p {
    color: #241571 !important
}

.testimonial__nav-eight .services-active-three-prev, .testimonial__nav-eight .services-active-three-next {
    color: #E46107 !important
}

    .testimonial__nav-eight .services-active-three-prev:hover, .testimonial__nav-eight .services-active-three-next:hover {
        background-color: #E46107 !important;
        color: white !important
    }

.project__area-five h3 {
    color: #E46107;
    text-align: center
}

.hidden {
    display: none
}

.empty {
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -o-border-radius: 30px;
    -ms-border-radius: 30px;
    border-radius: 30px;
    border: 1px solid var(--tg-heading-color)
}

.benefit__area-two .section__title, .features__area-four .section__title {
    margin-top: 40px;
    margin-bottom: 64px
}

.benefit__icon-two .fa-house-chimney, .benefit__icon-two .fa-spray-can-sparkles, .benefit__icon-two .fa-helmet-safety, .benefit__icon-two .fa-faucet, .benefit__icon-two .fa-sink, .benefit__icon-two .fa-laptop-code, .benefit__icon-two .fa-mobile-screen, .benefit__icon-two .fa-cart-arrow-down, .benefit__icon-two .fa-pen-ruler, .benefit__icon-two .fa-hexagon-nodes {
    font-size: 50px !important
}

.benefit__icon-two .fa-screwdriver-wrench, .benefit__icon-two .fa-broom, .benefit__icon-two .fa-bolt, .benefit__icon-two .fa-wrench, .benefit__icon-two .fa-gauge-high, .benefit__icon-two .fa-code {
    font-size: 25px !important;
    position: absolute;
    bottom: 0;
    right: 13px !important;
    border-radius: 100%;
    background: #fff;
    padding: 2px
}

.benefit__icon-two .fa-code {
    font-size: 13px !important;
    bottom: 21px;
    left: 9px !important
}

.benefit__icon-two .fa-wrench {
    bottom: 7px
}

.benefit__icon-two .fa-bolt {
    bottom: 13px;
    right: 17px !important;
    padding: 0
}

.benefit__icon-two .fa-gauge-high {
    top: 0;
    left: -3px !important;
    padding: 0
}

.services__details-quality img {
    width: auto;
    height: 185px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
    object-fit: cover
}

.sidebar__cat-list .list-wrap li .active {
    background: var(--tg-theme-primary);
    border-color: var(--tg-theme-primary);
    color: var(--tg-color-white-default)
}

.tgmenu__nav .logo img {
    height: 55px;
    width: auto
}

.cta__area-two .tg-btn-new:hover, .cta__area-two .tg-btn-new:focus-visible {
    background: #7093ff !important;
    color: var(--tg-color-white-default) !important;
    border-color: #7093ff !important
}

.comment-form .checkbox-grp input {
    width: 18px;
    margin-right: 9px;
    height: 18px;
    cursor: pointer;
    flex: 0 0 auto;
    margin-top: 3px
}

.form-check-input {
    padding: 0
}

    .form-check-input:checked {
        background-color: var(--tg-heading-color);
        border-color: var(--tg-heading-color)
    }

.LittleWidget {
    margin-left: 30px;
    margin-bottom: 30px
}

.experience__wrap .count {
    font-size: 23px;
    margin-bottom: 5px;
    color: var(--tg-color-white-default);
    line-height: .8
}

.pricing__list .list-wrap li span svg {
    color: var(--tg-theme-primary);
    font-size: 22px;
    position: relative;
    top: 4px
}

.tooltip {
    max-width: 220px;
    box-shadow: 5px 5px 5px 0 rgb(0 0 0 / .41)
}

.tooltip-inner {
    background-color: #ced2df;
    border: 1px solid var(--tg-heading-color);
    border-radius: 5px;
    max-width: max-content;
    padding: 8px;
    color: #000000d9;
    font-weight: 600;
    text-align: left
}

.tooltip.show {
    opacity: unset
}

.emptyParent {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px
}

.empty {
    border: 2px solid #000;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 5rem;
    font-weight: 600;
    color: #333;
    background-color: #fff;
    height: 285px;
    width: 1349px
}

    .empty span {
        transform: rotate(-20deg)
    }

.tgmenu__action {
    position: relative;
    left: 0px
}

.longMenu {
    text-align: center
}

.copyright__content-two br {
    display: none
}

.services__details-quality .imgDiv {
    padding: .25rem
}

.cta__area-eight.footer {
    margin-top: 80px
}

.faq__area-four.pricing {
    padding-bottom: 100px
}

.accordion h3 {
    margin-top: 1rem;
    margin-bottom: 1rem
}

#accordionExample2 h3 {
    margin-top: 0
}

.banner__area-seven {
    background-image: url(/assets/img/bg/h12_banner_bg.webp)
}

.custom-c .navbar-fixed-top, .custom-c .navbar-fixed-bottom {
    position: fixed;
    right: 0;
    z-index: 1030;
    bottom: 0
}

.custom-c .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
    width: 500px
}

.custom-c .navbar-fixed-top .navbar-collapse, .custom-c .navbar-fixed-bottom .custom-c .navbar-collapse {
    max-height: 340px
}

.custom-c .navbar {
    position: relative;
    min-height: 50px;
    margin-bottom: 20px;
    border: 1px solid #fff0
}

.custom-c .navbar-default {
    padding: 10px 0
}

    .custom-c .navbar-default .navbar-collapse, .custom-c .navbar-default .navbar-form {
        border-color: #e7e7e7
    }

    .custom-c .navbar-default .navbar-text {
        color: #fff;
        padding: 0 45px 0 45px;
        margin: 0
    }

.custom-c .navbar-toggle {
    display: none
}

.custom-c .navbar-right {
    margin-bottom: 10px
}

.custom-c .AcceptBtn {
    color: #fff;
    background-color: #241571
}

.custom-c .RejectBtn {
    color: #fff;
    background-color: #e46107
}

.custom-c .cookies-form {
    background-color: #F2F2F2;
    padding: 10px;
    border-radius: 50px;
    border: 1px solid #e46107;
    font-size: 12px
}

.custom-c p {
    color: #000
}

.custom-c .link {
    color: #000
}

    .custom-c .link:hover {
        color: #241572
    }

.custom-c .cookies-form span {
    display: block;
    font-size: 10px
}

.custom-c .cookies-form a {
    width: 135px
}

.innovLogo {
    margin-bottom: 12px;
    width: 170px
}

footer .innovLogo {
    margin-bottom: 10px;
    width: 100px
}

.tgmenu__action-ten > ul li.header-search {
    padding-right: 10px
}

.innovai-sec.sep {
    height: 400px
}

.innovai-sec {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI",sans-serif;
    background: #020617;
    color: #fff;

    canvas {
        position: absolute;
        inset: 0
    }

    .bg-glow {
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 30% 50%,#2563eb,transparent 50%),radial-gradient(circle at 70% 30%,#9333ea,transparent 50%);
        filter: blur(40px);
        opacity: .6
    }

    .content {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 100%;
        max-width: 1200px;
        margin: auto;
        padding: 40px
    }

    .left {
        max-width: 550px;
        animation: fadeUp 1s ease
    }

    .logo {
        width: auto;
        height: 70px
    }

    .tag {
        margin-top: 10px;
        opacity: .6;
        display: block
    }

    h1 {
        font-size: 52px;
        margin: 20px 0;
        line-height: 1.2;
        color: #fff
    }

    p {
        opacity: .8;
        margin-bottom: 15px
    }

    .glass {
        margin-top: 20px;
        padding: 25px;
        background: rgb(255 255 255 / .06);
        border: 1px solid rgb(255 255 255 / .1);
        backdrop-filter: blur(20px);
        border-radius: 20px
    }

    .btn {
        display: inline-block;
        margin-top: 20px;
        padding: 12px 28px;
        background: linear-gradient(90deg,#06b6d4,#3b82f6);
        border-radius: 30px;
        color: #fff;
        text-decoration: none;
        transition: 0.3s
    }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 40px rgb(59 130 246 / .5)
        }

    .right {
        width: 400px;
        height: 400px;
        position: relative
    }

    .orb {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: radial-gradient(circle,#3b82f6,transparent);
        filter: blur(100px);
        animation: pulse 4s infinite alternate
    }

    @keyframes pulse {
        100% {
            transform: scale(1.2);
            opacity: .7
        }
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(40px)
        }

        to {
            opacity: 1;
            transform: translateY(0)
        }
    }

    @media (max-width:900px) {
        .content {
            flex-direction: column;
            text-align: center
        }

        h1 {
            font-size: 36px
        }

        .right {
            display: none
        }
    }
}

.work__area .section__title {
    margin-bottom: 30px
}

.services__area-twelve .section__content {
    margin-bottom: 10px
}

.container {
    padding-left: 12px;
    padding-right: 12px
}

.row {
    --bs-gutter-x: 24px
}

.gutter-y-30 {
    --bs-gutter-y: 30px
}

.gutter-y-24 {
    --bs-gutter-y: 24px
}

.gutter-y-20 {
    --bs-gutter-y: 20px
}

.gx-0 {
    --bs-gutter-x: 0
}

.gutter-20 {
    --bs-gutter-x: 20px
}

.gutter-24 {
    --bs-gutter-x: 24px
}

.p-relative {
    position: relative
}

.custom-container {
    max-width: 1754px
}

@media (max-width:1800px) {
    .custom-container {
        max-width: 1680px
    }
}

@media (max-width:1500px) {
    .custom-container {
        max-width: 1320px
    }
}

@media (max-width:1199.98px) {
    .custom-container {
        max-width: 960px
    }
}

@media (max-width:991.98px) {
    .custom-container {
        max-width: 720px
    }
}

@media (max-width:767.98px) {
    .custom-container {
        max-width: 100%
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .custom-container {
        max-width: 540px
    }
}

.custom-container-two {
    max-width: 1664px
}

@media (max-width:1800px) {
    .custom-container-two {
        max-width: 1570px
    }
}

@media (max-width:1500px) {
    .custom-container-two {
        max-width: 1320px
    }
}

@media (max-width:1199.98px) {
    .custom-container-two {
        max-width: 960px
    }
}

@media (max-width:991.98px) {
    .custom-container-two {
        max-width: 720px
    }
}

@media (max-width:767.98px) {
    .custom-container-two {
        max-width: 100%
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .custom-container-two {
        max-width: 540px
    }
}

.custom-container-three {
    max-width: 1640px
}

@media (max-width:1800px) {
    .custom-container-three {
        max-width: 1570px
    }
}

@media (max-width:1500px) {
    .custom-container-three {
        max-width: 1320px
    }
}

@media (max-width:1199.98px) {
    .custom-container-three {
        max-width: 960px
    }
}

@media (max-width:991.98px) {
    .custom-container-three {
        max-width: 720px
    }
}

@media (max-width:767.98px) {
    .custom-container-three {
        max-width: 100%
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .custom-container-three {
        max-width: 540px
    }
}

.custom-container-four {
    max-width: 1876px
}

@media (max-width:1800px) {
    .custom-container-four {
        max-width: 1570px
    }
}

@media (max-width:1500px) {
    .custom-container-four {
        max-width: 100%
    }
}

@media (max-width:1199.98px) {
    .custom-container-four {
        max-width: 960px
    }
}

@media (max-width:991.98px) {
    .custom-container-four {
        max-width: 720px
    }
}

@media (max-width:767.98px) {
    .custom-container-four {
        max-width: 100%
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .custom-container-four {
        max-width: 540px
    }
}

.custom-container-five {
    max-width: 1548px
}

@media (max-width:1800px) {
    .custom-container-five {
        max-width: 1548px
    }
}

@media (max-width:1500px) {
    .custom-container-five {
        max-width: 1320px
    }
}

@media (max-width:1199.98px) {
    .custom-container-five {
        max-width: 960px
    }
}

@media (max-width:991.98px) {
    .custom-container-five {
        max-width: 720px
    }
}

@media (max-width:767.98px) {
    .custom-container-five {
        max-width: 100%
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .custom-container-five {
        max-width: 540px
    }
}

.include-bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat
}





.pseudo-link {
    cursor: pointer;
    color: inherit;
    text-decoration: none;
    display: inline
}

    .pseudo-link:hover {
        color: var(--tg-theme-primary);
        text-decoration: none
    }

.custom-c .cookies-form button {
    width: 135px
}

.challenge__area .row, .strategic__area .row {
    --bs-gutter-x: 0
}

.index {
    .services__area-twelve, .platform-showcase {
        .button-row {
            display: flex;
            gap: 12px;
            justify-content: center
        }

        a svg:not(.svg-inline--fa), button svg:not(.svg-inline--fa) {
            width: 20px;
            height: 20px
        }

        button {
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.15s ease
        }

            button:active {
                transform: scale(.94)
            }

            button:disabled {
                opacity: .4;
                cursor: default
            }

        .outlined {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: #fff0;
            color: #fff;
            border: 2px solid rgb(255 255 255 / .6)
        }

            .outlined:hover {
                background: rgb(255 255 255 / .12);
                border-color: #fff;
                color: var(--tg-theme-primary)
            }

        .corner-outlined {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: #fff0;
            color: #241571;
            border: 2px solid #241571
        }

            .corner-outlined:hover {
                border: 2.4px solid #241571;
                background: rgb(255 255 255 / .12);
                border-color: #241571;
                color: var(--tg-theme-primary)
            }

        .corner-outlined {
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            cursor: pointer;
            transition: background 0.15s ease,border-color 0.15s ease
        }

        .services-active-three-prev, .services-active-three-next {
            transform: none
        }
    }
}



@media screen and (min-width:320px) and (max-width:480px) and (orientation:portrait) {
    .index {
        .innovLogo {
            margin-bottom: 3px;
            width: 90px
        }

        .section__content p {
            margin-bottom: 10px
        }

        .features__area {
            margin-top: -80px
        }

        .innovai-sec {
            .content {
                padding: 40px 10px
            }

            h1 {
                font-size: 22px
            }

            .glass {
                padding: 25px 2px
            }
        }
    }

    .footer__contact .list-wrap {
        columns: 1
    }

    .custom-c .navbar-collapse.collapse {
        display: inline !important
    }

    .custom-c p br {
        display: none
    }

    .custom-c .cookies-form {
        padding-left: 0;
        padding-right: 0
    }

    .banner__area-seven {
        background-image: url(/assets/img/bg/EmptyImg.png)
    }

    .tg-header__area {
        padding: 0 0
    }

    .tg-header__area-six {
        padding: 10px 0
    }

    .banner__bg-six {
        min-height: 500px;
        padding: 100px 0 100px
    }

    .banner__content-seven .title {
        font-size: 20px
    }

    .banner__content-seven p {
        font-size: 15px
    }

    .banner__area-seven .col-lg-7 {
        padding-left: 5px;
        padding-right: 5px
    }

    .features__item {
        padding: 20px 20px
    }

    .about__inner-wrap-eight {
        justify-content: center
    }

    .services__content-thirteen {
        padding: 16px 10px 16px 10px;
        gap: 10px
    }

        .services__content-thirteen .content-left {
            gap: 10px
        }

            .services__content-thirteen .content-left .icon {
                font-size: 45px
            }

        .services__content-thirteen .arrow {
            width: 55px;
            height: 55px
        }

    .testimonial__shape-three img {
        right: 0%;
        width: 90px
    }

    .testimonial__nav-six {
        justify-content: center
    }

    .section__title .title, .section__title .sub-title {
        text-align: center
    }

    .footer__contact ul {
        columns: 2
    }

    .tgmobile__menu {
        width: 255px
    }

        .tgmobile__menu .nav-logo {
            padding: 10px 7px
        }

        .tgmobile__menu .social-links ul {
            padding: 30px 25px 25px
        }

    .longMenu {
        text-align: start
    }

        .longMenu br {
            display: none
        }

    .tg-header__area.sticky-menu {
        padding: 10px 0
    }

    .copyright__content-two br {
        display: block
    }

    .copyright__content-two span {
        display: none
    }

    .about__content-eight p {
        text-align: center
    }

    .breadcrumb__content-two .title {
        font-size: 29px
    }

    .benefit__item-two {
        padding: 20px 10px 20px
    }

    .pt-80 {
        padding-top: 40px
    }

    .benefit__area-two .section__title, .features__area-four .section__title {
        margin-top: 0;
        margin-bottom: 40px
    }

    .section-pb-130 {
        padding-bottom: 40px
    }

    .features__divider {
        margin: 40px 0
    }

    .section-py-130 {
        padding: 40px 0
    }

    .section-pt-70 {
        padding-top: 0
    }

    .services__details-wrap {
        padding-top: 20px
    }

    .services__details-quality .imgDiv {
        text-align: center
    }

    .benefit__item-two span {
        min-width: 62.5px
    }

    .cta__area-eight.footer {
        margin-top: 40px
    }

    .breadcrumb__area {
        padding: 50px 0
    }

    .LittleWidget {
        margin-left: 0;
        margin-bottom: 0
    }

    .contact__area {
        padding: 50px 0 50px
    }

    .contact__form-wrap {
        margin-left: 0;
        margin-top: 0
    }

    .project__area-five .mt-90 {
        margin-top: 30px
    }

    .empty {
        font-size: 40px;
        height: 156px
    }

    .project__content-five {
        padding: 10px 0 5px
    }

    .pricing__box {
        height: auto;
        padding: 30px 10px 30px
    }

    .faq__area-four.pricing {
        padding-bottom: 30px
    }

    .cta__inner-wrap-two {
        padding: 45px 20px
    }

    .about__images img:nth-child(2) {
        width: 300px
    }

    .experience__wrap {
        padding: 30px 10px 200px 20px
    }

    .comment-respond {
        padding: 35px 17px 35px
    }

    .section__content p, .testimonial__content-four p, .faq__area-four .section__title h2, .faq__area-four .section__title p {
        text-align: center
    }

    footer .innovLogo {
        margin-bottom: 5px;
        width: 60px
    }

    .benefit__icon-two .fa-screwdriver-wrench, .benefit__icon-two .fa-wrench {
        right: 19px !important
    }

    .benefit__icon-two .fa-broom {
        right: 24px !important
    }

    .benefit__icon-two .fa-bolt {
        right: 29px !important
    }

    .features__area-four {
        text-align: center;

        .features__icon-two {
            margin-left: auto;
            margin-right: auto
        }
    }
}

@media (min-width:768px) and (max-width:991.98px) and (orientation:landscape) {
    .innovLogo {
        margin-bottom: 10px;
        width: 130px
    }

    .tg-header__area-twelve .tgmenu__wrap {
        padding: 5px 20px
    }

    .tg-header__area.tg-header__area-six, .tg-header__area.tg-header__area-twelve.sticky-menu {
        padding: 0 0 !important
    }

    .about__img-wrap-four {
        display: none
    }

    .section__content {
        margin-bottom: 10px
    }

    .features__area {
        margin-top: -50px
    }

    .tgmenu__action {
        position: relative;
        left: 0
    }

    .banner__area-seven {
        background-image: url(/assets/img/bg/EmptyImg.png)
    }

    .banner__bg-six {
        min-height: 470px;
        padding: 20px 0 20px
    }

    .tg-header__area {
        padding: 0 0
    }

    .section__title .title, .section__title .sub-title {
        text-align: center
    }

    .tg-header__area.sticky-menu {
        padding: 10px 0
    }

    .banner__bg-six {
        min-height: 450px;
        padding: 20px 0 20px
    }

    .features__item {
        padding: 10px 10px
    }

    .about__inner-wrap-eight {
        justify-content: center
    }

    .counter__content-two .count {
        font-size: 30px
    }

    .counter__icon {
        padding: 10px 0 0 10px
    }

    .counter__item-three {
        gap: 10px
    }

    .about__img-wrap-four img:nth-child(1) {
        width: 250px
    }

    .about__img-wrap-four img:nth-child(2) {
        width: 150px
    }

    .experience__wrap-six {
        gap: 10px;
        right: -16%;
        top: 16.5%;
        padding: 10px 10px
    }

    .section-py-130 {
        padding: 40px 0
    }

    .section__title .title {
        font-size: 26px
    }

    .testimonial__shape-three img {
        right: 0%;
        width: 160px
    }

    .testimonial__content-four p, .testimonial__content-four h2 {
        text-align: center
    }

    .testimonial__nav-six {
        justify-content: center
    }

    .about__content-eight p {
        text-align: center
    }

    .section__content p {
        text-align: center
    }

    .breadcrumb__area-two {
        padding: 30px 0 30px
    }

    .services__details-thumb-two img {
        min-height: 220px
    }

    .section-pb-130 {
        padding-bottom: 40px
    }

    .benefit__area-two .section__title, .features__area-four .section__title {
        margin-top: 0;
        margin-bottom: 20px
    }

    .features__divider {
        margin: 40px 0
    }

    .pt-80 {
        padding-top: 40px
    }

    .benefit__item-two {
        padding: 30px 15px 25px
    }

    .benefit__area-two .plum {
        margin-top: 40px;
        margin-bottom: 61px
    }

    .tgmobile__menu .nav-logo {
        padding: 4px 10px
    }

    .tgmobile__menu .close-btn {
        right: 60px;
        top: 20px
    }

    .longMenu {
        text-align: start
    }

        .longMenu br {
            display: none
        }

    .section-pt-70 {
        padding-top: 0
    }

    .services__details-wrap {
        padding-top: 20px
    }

    .services__details-quality .row .imgDiv:nth-child(1), .services__details-quality .row .imgDiv:nth-child(3) {
        text-align: end
    }

    .services__details-quality .imgDiv img {
        height: 150px
    }

    .benefit__item-two span {
        min-width: 62.5px
    }

    .breadcrumb__area {
        padding: 20px 0
    }

    .services__sidebar {
        margin-top: 40px
    }

    .sidebar__cat-list ul {
        display: grid;
        grid-template-rows: repeat(3,min-content);
        grid-auto-flow: column
    }

        .sidebar__cat-list ul li {
            margin-left: 5px;
            margin-right: 5px
        }

    .cta__area-eight.footer {
        margin-top: 20px
    }

    .LittleWidget {
        margin-left: 0;
        margin-bottom: 0
    }

    .contact__area {
        padding: 50px 0 50px
    }

    .contact__form-wrap {
        margin-left: 0;
        margin-top: 0
    }

    .project__area-five .mt-90 {
        margin-top: 30px
    }

    .empty {
        font-size: 40px;
        height: 156px
    }

    .pricing__box {
        height: 1000px;
        padding: 30px 10px 30px
    }

    .faq__area-four.pricing {
        padding-bottom: 30px
    }

    .challenge__content p, .challenge__content ul {
        margin-left: 10px
    }

    .strategic__area p, .strategic__area .progress__wrap {
        margin-right: 10px
    }

    .faq__area-four .section__title h2, .faq__area-four .section__title p {
        text-align: center
    }

    footer .innovLogo {
        margin-bottom: 5px;
        width: 60px
    }

    .benefit__icon-two .fa-screwdriver-wrench, .benefit__icon-two .fa-wrench {
        right: 19px !important
    }

    .benefit__icon-two .fa-broom {
        right: 24px !important
    }

    .benefit__icon-two .fa-bolt {
        right: 29px !important;
        bottom: 10px
    }

    .benefit__icon-two .fa-gauge-high {
        top: -4px;
        left: -3px !important
    }

    .challenge__thumb, .strategic__thumb, .benefit__img-two, .features__img-two, .faq__img-two {
        text-align: center;

        img {
            width: 70%
        }
    }
}

@media (min-width:576px) and (max-width:767.98px) and (orientation:landscape) {
    footer .innovLogo {
        margin-bottom: 5px;
        width: 60px
    }

    .innovLogo {
        margin-bottom: 5px;
        width: 110px
    }

    .tg-header__area-twelve .tgmenu__wrap {
        padding: 5px 20px
    }

    .tg-header__area.tg-header__area-six, .tg-header__area.tg-header__area-twelve.sticky-menu {
        padding: 0 0 !important
    }

    .about__img-wrap-four {
        display: none
    }

    .section__content {
        margin-bottom: 10px
    }

    .features__area {
        margin-top: -50px
    }

    .tgmenu__action {
        position: relative;
        left: 0
    }

    .banner__area-seven {
        background-image: url(/assets/img/bg/EmptyImg.png)
    }

    .banner__bg-six {
        min-height: 470px;
        padding: 20px 0 20px
    }

    .tg-header__area {
        padding: 0 0
    }

    .tg-header__area-six {
        padding: 10px 0
    }

    .section__title .title, .section__title .sub-title {
        text-align: center
    }

    .tg-header__area.sticky-menu {
        padding: 10px 0
    }

    .banner__bg-six {
        min-height: 470px;
        padding: 20px 0 20px
    }

    .features__item {
        padding: 10px 10px
    }

    .about__inner-wrap-eight {
        justify-content: center
    }

    .counter__content-two .count {
        font-size: 30px
    }

    .counter__icon {
        padding: 10px 0 0 10px
    }

    .counter__item-three {
        gap: 10px
    }

    .about__img-wrap-four img:nth-child(1) {
        width: 250px
    }

    .about__img-wrap-four img:nth-child(2) {
        width: 150px
    }

    .experience__wrap-six {
        gap: 10px;
        right: -16%;
        top: 16.5%;
        padding: 10px 10px
    }

    .section-py-130 {
        padding: 40px 0
    }

    .section__title .title {
        font-size: 26px
    }

    .testimonial__shape-three img {
        right: 0%;
        width: 160px
    }

    .testimonial__content-four p, .testimonial__content-four h2 {
        text-align: center
    }

    .testimonial__nav-six {
        justify-content: center
    }

    .about__content-eight p {
        text-align: center
    }

    .section__content p {
        text-align: center
    }

    .breadcrumb__area-two {
        padding: 30px 0 30px
    }

    .services__details-thumb-two img {
        height: 200px;
        min-height: 220px
    }

    .section-pb-130 {
        padding-bottom: 40px
    }

    .benefit__area-two .section__title, .features__area-four .section__title {
        margin-top: 0;
        margin-bottom: 20px
    }

    .features__divider {
        margin: 40px 0
    }

    .pt-80 {
        padding-top: 40px
    }

    .benefit__item-two {
        padding: 30px 15px 25px
    }

    .benefit__area-two .plum {
        margin-top: 40px;
        margin-bottom: 61px
    }

    .tgmobile__menu .nav-logo {
        padding: 0 10px
    }

    .tgmobile__menu .close-btn {
        right: 60px;
        top: 15px
    }

    .longMenu {
        text-align: start
    }

        .longMenu br {
            display: none
        }

    .section-pt-70 {
        padding-top: 0
    }

    .services__details-wrap {
        padding-top: 20px
    }

    .services__details-quality .row .imgDiv:nth-child(1), .services__details-quality .row .imgDiv:nth-child(3) {
        text-align: end
    }

    .services__details-quality .imgDiv img {
        height: 150px
    }

    .benefit__item-two span {
        min-width: 62.5px
    }

    .breadcrumb__area {
        padding: 20px 0
    }

    .services__sidebar {
        margin-top: 40px
    }

    .cta__area-eight.footer {
        margin-top: 20px
    }

    .LittleWidget {
        margin-left: 0;
        margin-bottom: 0
    }

    .contact__area {
        padding: 50px 0 50px
    }

    .contact__form-wrap {
        margin-left: 0;
        margin-top: 0
    }

    .project__area-five .mt-90 {
        margin-top: 30px
    }

    .empty {
        font-size: 40px;
        height: 156px
    }

    .pricing__box {
        height: auto;
        padding: 30px 10px 30px
    }

    .faq__area-four.pricing {
        padding-bottom: 30px
    }

    .tg-header__area-twelve .tgmenu__wrap {
        background: var(--tg-color-white-default);
        padding: 5px 20px
    }

    .banner__content-seven .title {
        font-size: 25px
    }

    .satisfied-clients {
        padding: 20px 5px
    }

    .about__img-wrap-four {
        display: none
    }

    .features__item-top .title a br {
        display: none
    }

    .footer__contact ul {
        columns: 1
    }

    .faq__area-four .section__title h2, .faq__area-four .section__title p {
        text-align: center
    }

    footer .innovLogo {
        margin-bottom: 5px;
        width: 60px
    }

    .about__area-eight {
        text-align: center;

        .img {
            width: 50%
        }
    }

    .testimonial-active-five {
        height: 270px
    }

    .challenge__thumb, .strategic__thumb, .benefit__img-two, .features__img-two, .faq__img-two {
        text-align: center;

        img {
            width: 70%
        }
    }

    .benefit__icon-two .fa-screwdriver-wrench, .benefit__icon-two .fa-wrench {
        right: 19px !important
    }

    .benefit__icon-two .fa-broom {
        right: 24px !important
    }

    .benefit__icon-two .fa-bolt {
        right: 29px !important;
        bottom: 10px
    }

    .benefit__icon-two .fa-gauge-high {
        top: -4px;
        left: -3px !important
    }
}

@media screen and (min-width:765px) and (max-width:1000px) and (orientation:portrait) {
    .features__item {
        padding: 30px 20px
    }

    .innovLogo {
        margin-bottom: 6px;
        width: 130px
    }

    footer .innovLogo {
        margin-bottom: 3px !important;
        width: 80px !important
    }

    .features__area {
        margin-top: -50px
    }

    .section__content {
        margin-bottom: 10px
    }

    .banner__area-seven {
        background-image: url(/assets/img/bg/EmptyImg.png)
    }

    .banner__bg-six {
        min-height: 470px;
        padding: 20px 0 20px
    }

    .tgmenu__action {
        position: relative;
        left: 0
    }

    .tg-header__area {
        padding: 0 0
    }

    .experience__wrap-six {
        top: 15.5%;
        padding: 5px 5px;
        right: -12%
    }

        .experience__wrap-six .count {
            font-size: 35px
        }

    .section__title .title, .about__content-eight p, .section__title .sub-title {
        text-align: center
    }

    .about__inner-wrap-eight {
        justify-content: center
    }

    .counter__content-two .count {
        font-size: 34px
    }

    .counter__item-three {
        gap: 10px
    }

    .testimonial__shape-three img {
        right: 0%;
        width: 200px
    }

    .testimonial__nav-eight {
        justify-content: center
    }

    .longMenu {
        text-align: start
    }

        .longMenu br {
            display: none
        }

    .challenge__content p, .challenge__content ul {
        margin-left: 15px
    }

    .strategic__area p, .strategic__area .progress__wrap {
        margin-right: 10px
    }

    .section__title .title {
        font-size: 30px
    }

    .benefit__item-two {
        padding: 30px 18px 25px
    }

    .benefit__area-two .section__title, .features__area-four .section__title {
        margin-bottom: 60px
    }

    .section-pb-130 {
        padding-bottom: 80px
    }

    .section-py-130 {
        padding: 60px 0
    }

    .pt-80 {
        padding-top: 40px
    }

    .tg-header__area.tg-header__area-six {
        padding: 10px 0
    }

    .breadcrumb__area-two {
        padding: 30px 0 30px
    }

    .services__sidebar {
        margin-top: 0
    }

    .services__details-quality .row .imgDiv:nth-child(1), .services__details-quality .row .imgDiv:nth-child(3) {
        text-align: end
    }

    .LittleWidget {
        margin-left: 0;
        margin-bottom: 0
    }

    .contact__form-wrap {
        margin-left: 0;
        margin-top: 0
    }

    .empty {
        border: 2px solid #000;
        border-radius: 30px;
        height: 257px;
        width: 555px;
        font-size: 4rem
    }

    .pricing__box {
        height: 1100px
    }

    .section__content p {
        text-align: center
    }

    .sidebar__cat-list ul {
        display: grid;
        grid-template-rows: repeat(3,min-content);
        grid-auto-flow: column
    }

        .sidebar__cat-list ul li {
            margin-left: 5px;
            margin-right: 5px
        }

    .platform-card {
        flex-basis: calc((100% - var(--ps-space-between)) / 1.5)
    }

    .faq__img-two.mt-2 img {
        margin-top: 20px
    }
}

@media screen and (min-width:1024px) and (max-width:1194px) and (orientation:landscape) {
    footer .innovLogo {
        margin-bottom: 3px;
        width: 70px
    }

    .innovLogo {
        margin-bottom: 8px;
        width: 140px
    }

    .innovai-sec {
        h1 {
            font-size: 37px
        }
    }

    .tgmenu__action {
        position: relative;
        left: 0
    }

    .tgmenu__nav .logo img {
        height: 45px
    }

    .tg-header__area-twelve .tgmenu__wrap {
        padding: 10px 10px
    }

    .tg-header__area-twelve .tgmenu__navbar-wrap ul {
        margin: 0 0 0 5px
    }

    .tgmenu__navbar-wrap ul li a {
        padding: 25px 5px
    }

    .tgmenu__action-ten > ul li {
        margin-left: 0
    }

        .tgmenu__action-ten > ul li.header-btn .tg-btn {
            padding: 10px 10px
        }

    .tg-btn-new::after {
        right: 25px
    }

    .section__title .title {
        font-size: 28px
    }

    .tg-header__area-twelve.sticky-menu .tgmenu__wrap {
        padding: 0 10px
    }

    .experience__wrap-six {
        right: -12%;
        top: 16%;
        padding: 16px 18px
    }

    .satisfied-clients {
        padding: 27px 15px
    }

    .tgmenu__navbar-wrap ul {
        margin: 0 0 0 20px
    }

    .header-search {
        display: none
    }

    .tgmenu__action-ten {
        margin-right: 0
    }

    .benefit__item-two {
        padding: 27px 5px 22px;
        gap: 2px
    }

    .benefit__area-two .section__title, .features__area-four .section__title {
        margin-top: 20px;
        margin-bottom: 40px
    }

    .section-py-130 {
        padding: 80px 0
    }

    .section-pb-130 {
        padding-bottom: 80px
    }

    .challenge__list {
        margin-bottom: 10px
    }

    .breadcrumb__area-two {
        padding: 30px 0 30px
    }

    .benefit__area-two.startup .section__title {
        margin-top: 27px;
        margin-bottom: 47px
    }

        .benefit__area-two.startup .section__title .title, .benefit__area-two.startup .section__title .sub-title {
            font-size: 26px
        }

    .benefit__area-two.startup .benefit__item-two {
        gap: 10px;
        padding: 15px 5px 15px
    }

    .benefit__area-two.startup .benefit__icon-two .fa-laptop-code, .benefit__area-two.startup .benefit__icon-two .fa-mobile-screen, .benefit__area-two.startup .benefit__icon-two .fa-cart-arrow-down, .benefit__area-two.startup .benefit__icon-two .fa-pen-ruler, .benefit__area-two.startup .benefit__icon-two .fa-hexagon-nodes {
        font-size: 40px !important
    }

    .benefit__area-two.startup .benefit__icon-two .fa-code {
        font-size: 10px !important;
        bottom: 19px;
        left: 7px !important
    }

    .benefit__area-two.startup .benefit__content-two .title {
        font-size: 18px
    }

    .features__area-four.startup .features__item-two {
        padding: 20px 10px 10px
    }

    .sidebar__cat-list .list-wrap li a {
        padding: 2px 0 2px 9px
    }

    .services__sidebar {
        margin-top: 175px
    }

    .contact__form-wrap {
        margin-left: 0;
        margin-top: 0
    }

    .LittleWidget {
        margin-left: 0;
        margin-bottom: 0
    }

    .contact__form-wrap {
        margin-left: 0;
        margin-top: 0
    }

    .empty {
        height: 227px;
        width: 491px;
        font-size: 4rem;
        border: 2px solid #000;
        border-radius: 30px
    }

    .pricing__box {
        height: 950px
    }

    .copyright__content-two span {
        display: none
    }

    .sidebar__cat-list .list-wrap li a span {
        margin-right: 1px
    }

    .tgmenu__action-ten > ul li.header-contact {
        display: none
    }
}

@media screen and (min-width:1195px) and (max-width:1280px) and (orientation:landscape) {
    .header-contact {
        display: none
    }

    .tgmenu__navbar-wrap ul li a {
        padding: 25px 7px
    }

    .satisfied-clients {
        padding: 27px 20px
    }

    .breadcrumb__area-two {
        padding: 30px 0 30px
    }

    .services__sidebar {
        margin-right: 0
    }

    .sidebar__cat-list .list-wrap li a {
        padding: 8px 3px 8px 5px
    }

    .empty {
        height: 227px;
        width: 533px;
        font-size: 4rem;
        border: 2px solid #000;
        border-radius: 30px
    }

    .tg-header__area-twelve .tgmenu__wrap {
        padding: 10px 10px
    }

    .tg-header__area-twelve .tgmenu__navbar-wrap ul {
        margin: 0 0 0 10px
    }

    .tgmenu__action-ten > ul li.header-btn .tg-btn {
        padding: 16px 7px
    }

    .pricing__box {
        padding: 45px 10px 50px;
        height: 1250px
    }
}

@media screen and (min-width:1728px) and (max-width:2047px) {
    .empty {
        height: 333px;
        width: 720px;
        border: 2px solid #000;
        border-radius: 30px
    }
}

@media screen and (min-width:2048px) and (max-width:2048px) {
    .empty {
        height: 394px;
        width: 853px;
        border: 2px solid #000;
        border-radius: 30px
    }
}

@media screen and (min-width:1024px) and (max-width:1280px) and (orientation:landscape) {
    .tgmenu__navbar-wrap ul li a {
        padding: 12px 6px;
        font-size: 12px
    }

    .tgmenu__nav .logo img {
        height: 45px;
        width: auto
    }

    .tgmenu__action-ten > ul li.header-btn .tg-btn {
        padding: 15px 6px;
        gap: 8px
    }

    .tg-btn-new::after {
        right: 21px
    }

    .features__item {
        padding: 10px 16px
    }

    .satisfied-clients {
        padding: 27px 20px
    }

    .about__inner-wrap-eight .about__list-item {
        padding: 20px 15px 20px 15px
    }

    .cta__inner-wrap-two {
        padding: 65px 11px;

        .tg-btn-new {
            gap: 10px
        }

            .tg-btn-new::after {
                right: 25px
            }
    }

    .tgmenu__navbar-wrap ul {
        margin: 0 0 0 30px
    }

    .services__details-thumb-two img {
        max-height: 400px
    }

    .challenge__content {
        padding: 20px 0 5px 35px
    }

    .breadcrumb__area-two {
        padding: 30px 0 60px
    }

    .benefit__area-two {
        .section__title .title {
            font-size: 26px;
            margin-bottom: 54px
        }

        .benefit__content-two .title {
            font-size: 16px
        }
    }

    .section-pb-130 {
        padding-bottom: 80px
    }

    .section-py-130 {
        padding: 80px 0
    }

    .services__sidebar {
        margin-top: 0
    }

    .contact__area {
        padding: 85px 0 50px
    }

    .empty {
        font-size: 4rem;
        height: 230px;
        width: 500px;
        border-radius: 30px
    }

    .pricing__box {
        height: 950px
    }

    .faq__wrap.faq__wrap-four.mt-2 {
        margin-top: 15px !important
    }
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h6, p, .p, span, .span, li, .tooltip-inner {
    text-wrap: balance
}
