@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Manrope:200,300,regular,500,600,700,800&display=swap");

*, *::before, *::after {
    margin: 0;
    padding: 0;
    border: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

li {
    list-style: none;
}

a {
    color: inherit;
}

a:link, a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

img {
    vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: inherit;
    font-size: inherit;
}

input, button, textarea {
    font-family: inherit;
    font-size: inherit;
}

button {
    cursor: pointer;
    color: inherit;
    background-color: inherit;
}

body {
    line-height: 1;
    overflow-x: hidden;
}

.large-container {
    max-width: 1710px;
    padding: 0px 15px;
    margin: 0 auto;
}

.auto-container {
    position: static;
    max-width: 1320px;
    padding: 0px 15px;
    margin: 0 auto
}

.widget1 {
    max-width: 450px;
    width: 100%;
    height: 550px;
    -webkit-animation: scrollToTop 10s linear infinite;
    animation: scrollToTop 10s linear infinite
}

@media (max-width: 1000px) {
    .widget1 {
        max-width:600px;
        margin: 0 auto
    }
}

@-webkit-keyframes scrollToTop {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    to {
        -webkit-transform: translateY(-320px);
        transform: translateY(-320px)
    }
}

@keyframes scrollToTop {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    to {
        -webkit-transform: translateY(-320px);
        transform: translateY(-320px)
    }
}

.widget1__row {
    margin: 36px 0;
    border-radius: 12px;
    background: #28292c;
    -webkit-box-shadow: 0px 2px 10px 0px rgba(28,28,28,0.08);
    box-shadow: 0px 2px 10px 0px rgba(28,28,28,0.08);
    padding: 18px 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.widget1__row:first-child {
    margin: 0 0 36px
}

.widget1__name {
    width: 200px
}

.widget1__name-logotypes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 50px;
    width: 100%;
    place-items: center;
    margin: 0 0 5px
}

.widget1__name-logotype {
    display: inline-block;
    width: 20px;
    height: 20px
}

.widget1__name-title {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    line-height: 25.6px
}

.widget1__buy {
    margin: 0 50px 0 0
}

.widget1__buy,.widget1__sell {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    width: 100px
}

.widget1__buy-title,.widget1__sell-title,.widget1__buy-price,.widget1__sell-price {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 25.6px
}

.widget1__buy-price,.widget1__sell-price {
    position: relative
}

.widget1__buy-price.red,.widget1__sell-price.red {
    color: #f24725
}

.widget1__buy-price.red::before,.widget1__sell-price.red::before {
    content: '▼';
    position: absolute;
    top: 0;
    left: -15px;
    font-size: 12px
}

.widget1__buy-price.red::after,.widget1__sell-price.red::after {
    content: '▼';
    position: absolute;
    top: 0;
    right: -15px;
    font-size: 12px
}

.widget1__buy-price.green,.widget1__sell-price.green {
    color: #32cf8e
}

.widget1__buy-price.green::before,.widget1__sell-price.green::before {
    content: '▲';
    position: absolute;
    top: 0;
    left: -15px;
    font-size: 12px
}

.widget1__buy-price.green::after,.widget1__sell-price.green::after {
    content: '▲';
    position: absolute;
    top: 0;
    right: -15px;
    font-size: 12px
}

.widget2 {
    background: #28292c;
    padding: 0 20px;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-shadow: 0 2px 10px 0 rgba(28,28,28,0.08);
    box-shadow: 0 2px 10px 0 rgba(28,28,28,0.08)
}

@media (max-width: 1200px) {
    .widget2 {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

@media (max-width: 600px) {
    .widget2 {
        padding:0
    }
}

.widget2__column {
    padding: 40px 20px;
    position: relative;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%
}

.widget2__column--1::after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    width: 2px;
    height: 80%;
    content: '';
    background: #212025
}

@media (max-width: 1200px) {
    .widget2__column--1 {
        padding:40px 20px 0
    }
}

@media (max-width: 600px) {
    .widget2__column--1 {
        padding:20px 5px 0
    }
}

@media (max-width: 1200px) {
    .widget2__column--2 {
        padding:0 5px 20px
    }
}

@media (max-width: 600px) {
    .widget2__column--2 {
        padding:0 5px 20px
    }
}

.widget2__topbar {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-gap: 10px;
    place-items: center;
    margin: 0 0 25px
}

@media (max-width: 1200px) {
    .widget2__topbar--2 {
        display:none
    }
}

.widget2__topbar-column-title {
    color: #fff;
    font-size: 16px;
    line-height: 25.6px;
    text-align: center;
    font-weight: 400
}

.widget2__column-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-gap: 10px;
    place-items: center;
    margin: 0 0 10px
}

.widget2__column-row-item {
    background: #212025;
    font-size: 16px;
    font-weight: 500;
    height: 53px;
    line-height: 25.6px;
    text-align: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    color: #fff;
    position: relative
}

@media (max-width: 600px) {
    .widget2__column-row-item {
        height:70px
    }
}

@media (max-width: 600px) {
    .widget2__column-row-item--1 {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.widget2__column-row-item--2.red,.widget2__column-row-item--3.red {
    color: #f24725
}

.widget2__column-row-item--2.red::before,.widget2__column-row-item--2.red::after,.widget2__column-row-item--3.red::before,.widget2__column-row-item--3.red::after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 12px
}

@media (max-width: 600px) {
    .widget2__column-row-item--2.red::before,.widget2__column-row-item--2.red::after,.widget2__column-row-item--3.red::before,.widget2__column-row-item--3.red::after {
        display:none
    }
}

.widget2__column-row-item--2.red::before,.widget2__column-row-item--3.red::before {
    content: '▼';
    left: 10px
}

.widget2__column-row-item--2.red::after,.widget2__column-row-item--3.red::after {
    content: '▼';
    right: 10px
}

.widget2__column-row-item--2.green,.widget2__column-row-item--3.green {
    color: #32cf8e
}

.widget2__column-row-item--2.green::before,.widget2__column-row-item--2.green::after,.widget2__column-row-item--3.green::before,.widget2__column-row-item--3.green::after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 12px
}

@media (max-width: 600px) {
    .widget2__column-row-item--2.green::before,.widget2__column-row-item--2.green::after,.widget2__column-row-item--3.green::before,.widget2__column-row-item--3.green::after {
        display:none
    }
}

.widget2__column-row-item--2.green::before,.widget2__column-row-item--3.green::before {
    content: '▲';
    left: 10px
}

.widget2__column-row-item--2.green::after,.widget2__column-row-item--3.green::after {
    content: '▲';
    right: 10px
}

.widget2__column-row-item-image-wrapper {
    margin: 0 10px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media (max-width: 600px) {
    .widget2__column-row-item-image-wrapper {
        margin:0 0 5px
    }
}

.widget2__column-row-item-image-wrapper img:first-child {
    margin: 0 5px 0 0
}

.widget2__column-row-item-image {
    display: inline-block;
    width: 20px;
    height: 20px
}

.widget2__column-row-item-text {
    display: inline-block;
    margin: 2px 0 0
}

.swiper {
    width: 100%;
    padding: 0 15px;
    position: relative !important
}

.swiper-wrapper {
    height: auto !important
}

.swiper-pagination {
    margin-top: 60px;
    position: relative !important;
    width: 100% !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 16px;
    z-index: 100 !important
}

.swiper-pagination-label {
    -webkit-transition: font-weight 0.5s;
    -o-transition: font-weight 0.5s;
    transition: font-weight 0.5s;
    border-radius: 40px;
    padding: 15px 40px;
    width: 260px;
    border: 3px solid transparent;
    cursor: pointer;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    text-align: center;
    color: var(--color-black-grey);
    text-transform: none
}

@media (max-width: 767px) {
    .swiper-pagination-label {
        margin:0 3px;
        padding: 8px;
        font-size: 14px
    }
}

.swiper-pagination-label.active {
    font-weight: 600;
    font-size: 20px;
    padding: 15px 10px;
    border: 3px solid #fff;
    text-transform: uppercase
}

@media (max-width: 767px) {
    .swiper-pagination-label.active {
        margin:0 3px;
        padding: 8px;
        font-size: 14px
    }
}

.swiper-pagination-label:hover {
    -webkit-transition: font-size 0.3s;
    -o-transition: font-size 0.3s;
    transition: font-size 0.3s;
    text-transform: uppercase;
    font-size: 20px;
    border: 3px solid #fff;
    padding: 15px 10px
}

@media (max-width: 767px) {
    .swiper-pagination-label:hover {
        margin:0 3px;
        padding: 8px;
        font-size: 14px
    }
}

#particles-js {
    background: #212025;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

#particles-js-2 {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.iti {
    width: 100%;
    z-index: 10;
    position: relative
}

.lang-switcher {
    margin: 0 0 0 32px
}

@media (max-width: 1100px) {
    .lang-switcher {
        margin:0 0 100px
    }
}

.lang-switcher__active-lang {
    position: relative
}

.lang-switcher__active-lang::after {
    position: absolute;
    right: 51%;
    bottom: -8px;
    left: 51%;
    height: 2px;
    content: '';
    background: #00e3e9;
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: left, right;
    -o-transition-property: left, right;
    transition-property: left, right
}

.lang-switcher__active-lang:hover .lang-switcher__other-langs {
    max-height: 200px
}

.lang-switcher__active-lang:hover::after {
    right: 0;
    left: 0
}

.lang-switcher__langs-item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.lang-switcher__langs-item span {
    display: inline-block;
    color: #fff;
    line-height: 25.6px;
    margin: 0 0 0 5px
}

.lang-switcher__other-langs {
    position: absolute;
    overflow-y: hidden;
    top: 180%;
    left: 50%;
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
    width: 120%;
    background: #28292c;
    border-radius: 10px;
    -webkit-box-shadow: 0 2px 10px 0 rgba(28,28,28,0.08);
    box-shadow: 0 2px 10px 0 rgba(28,28,28,0.08);
    -webkit-transition: max-height 0.4s cubic-bezier(0.4, 0.25, 0.3, 1);
    -o-transition: max-height 0.4s cubic-bezier(0.4, 0.25, 0.3, 1);
    transition: max-height 0.4s cubic-bezier(0.4, 0.25, 0.3, 1);
    max-height: 0
}

.lang-switcher__other-langs a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px 24px;
    position: relative;
    z-index: 1000
}

.lang-switcher__other-langs a:hover span {
    color: #00e3e9
}

.lang-switcher__other-langs a:hover::after {
    bottom: 50%;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(0,227,233,0.2);
    -webkit-transition: width 0.4s ease-out, background 0.15s ease-in 0.2s, height 0.15s ease-in 0.2s, bottom 0.15s ease-in 0.2s;
    -o-transition: width 0.4s ease-out, background 0.15s ease-in 0.2s, height 0.15s ease-in 0.2s, bottom 0.15s ease-in 0.2s;
    transition: width 0.4s ease-out, background 0.15s ease-in 0.2s, height 0.15s ease-in 0.2s, bottom 0.15s ease-in 0.2s
}

.lang-switcher__other-langs a::after {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 0;
    content: '';
    background: #00e3e9;
    -webkit-transition: height 0.15s ease-in, bottom 0.15s ease-in, background 0.15s ease-out 0.15s, width 0.4s ease-out 0.15s;
    -o-transition: height 0.15s ease-in, bottom 0.15s ease-in, background 0.15s ease-out 0.15s, width 0.4s ease-out 0.15s;
    transition: height 0.15s ease-in, bottom 0.15s ease-in, background 0.15s ease-out 0.15s, width 0.4s ease-out 0.15s;
    -webkit-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%)
}

.lang-switcher__other-langs span {
    display: inline-block;
    color: #fff;
    line-height: 25.6px;
    margin: 0 0 0 15px;
    width: 35px;
    -webkit-transition: all 0.15s cubic-bezier(0.4, 0.25, 0.3, 1);
    -o-transition: all 0.15s cubic-bezier(0.4, 0.25, 0.3, 1);
    transition: all 0.15s cubic-bezier(0.4, 0.25, 0.3, 1)
}

.news-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 30px;
    margin-top: 30px
}

.news-list__item {
    width: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 10px
}

@media (max-width: 1230px) {
    .news-list__item {
        width:45%
    }
}

@media (max-width: 820px) {
    .news-list__item {
        width:90%
    }
}

.news-list__item-left {
    margin-right: 10px
}

.news-list__item-left img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 80px;
    height: 80px;
    border-radius: 10px
}

.news-list__item-right {
    -webkit-box-flex: 3;
    -ms-flex: 3;
    flex: 3
}

.news-list__item-right a {
    display: block;
    color: #f2f2f2;
    font-size: 17px;
    line-height: 20px;
    font-weight: bold
}

.news-list__item-right span {
    color: #e5e5e5;
    opacity: 0.8;
    font-size: 12px;
    line-height: 15px
}

.tradingview-widget-container {
    position: fixed;
    bottom: 0;
    z-index: 1000;
    background-color: var(--color-black-grey)
}

.header {
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0px;
    z-index: 999;
    width: 100%;
    background-color: #fff;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease
}

.header-top {
    position: relative;
    width: 100%;
    background: #212226;
    padding: 16px 0px;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s
}

._header-scroll .header-top {
    padding: 0;
    opacity: 0;
    visibility: hidden;
    height: 0
}

@media (max-width: 479.98px) {
    .header-top {
        padding:10px 0px
    }
}

.header-top .top-inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 560px
}

@media (max-width: 1460px) {
    .header-top .top-inner {
        padding-left:0px
    }
}

.header-top .info-list li a {
    position: relative;
    display: inline-block;
    color: #fff
}

.header-top .info-list li i {
    position: absolute;
    left: 0px;
    top: 5px;
    font-size: 18px
}

.header-top .info-list li:last-child {
    margin: 0px !important
}

.clearfix::after {
    display: block;
    clear: both;
    content: ""
}

.icon-1:before {
    content: "\e900";
    color: var(--violet-color)
}

.top-inner__email {
    color: #fff;
    font-family: "Inter";
    font-weight: 300;
    padding-left: 32px
}

@media (max-width: 1460px) {
    .top-inner__email {
        padding-left:15px
    }
}

@media (max-width: 487px) {
    .top-inner__email {
        padding-left:10px
    }
}

.header .outer-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
    min-height: 80px
}

.logo-box {
    position: relative;
    padding: 41px 0px 41px 0px;
    margin-top: -60px;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
    z-index: 1
}

.logo-box img {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    margin-left: -20px
}

@media (max-width: 1000px) {
    .logo-box img {
        -webkit-transform:scale(0.7);
        -ms-transform: scale(0.7);
        transform: scale(0.7);
        margin-left: -70px
    }
}

@media (max-width: 930px) {
    .logo-box img {
        -webkit-transform:scale(0.6);
        -ms-transform: scale(0.6);
        transform: scale(0.6);
        margin-left: -95px
    }
}

@media (max-width: 700px) {
    .logo-box img {
        -webkit-transform:scale(0.4);
        -ms-transform: scale(0.4);
        transform: scale(0.4);
        margin-left: -140px
    }
}

@media (max-width: 450px) {
    .logo-box img {
        margin-left:-150px
    }
}

._header-scroll .logo-box {
    padding: 15px 40px 30px 10px;
    margin-top: 0px
}

@media (max-width: 1000px) {
    ._header-scroll .logo-box {
        padding:15px 40px 15px 0px
    }
}

@media (max-width: 930px) {
    ._header-scroll .logo-box {
        padding:15px 40px 15px 0px
    }
}

@media (max-width: 700px) {
    ._header-scroll .logo-box {
        padding:10px 40px 10px 0px
    }
}

@media (max-width: 450px) {
    ._header-scroll .logo-box {
        padding:7px 40px 7px 0px
    }
}

.logo-box h5 {
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s
}

._header-scroll .logo-box h5 {
    font-size: 24px
}

@media (max-width: 1460px) {
    .logo-box {
        margin-top:-0px;
        padding: 8px 10px 9px
    }
}

@media (max-width: 930px) {
    .logo-box {
        width:320px;
        padding: 8px 15px 8px 0px
    }
}

@media (max-width: 700px) {
    .logo-box {
        padding:8px 0px;
        width: 235px
    }
}

@media (max-width: 450px) {
    .logo-box {
        width:225px;
        padding: 8px 0px
    }
}

@media (min-width: 1460px) {
    .header .outer-box .logo-box .shape {
        position:absolute;
        top: 0px;
        right: -24px;
        width: 24px;
        height: 100%;
        background: var(--violet-color);
        -webkit-clip-path: polygon(100% 0%, 0% 50%, 100% 100%, 0 100%, 0 50%, 0 0);
        clip-path: polygon(100% 0%, 0% 50%, 100% 100%, 0 100%, 0 50%, 0 0)
    }

    .header .outer-box .logo-box:after {
        position: absolute;
        content: "";
        top: 0px;
        right: -32px;
        width: 32px;
        height: 100%;
        background: var(--violet-color);
        -webkit-clip-path: polygon(100% 0%, 25% 50%, 100% 100%, 0 100%, 0 50%, 0 0);
        clip-path: polygon(100% 0%, 25% 50%, 100% 100%, 0 100%, 0 50%, 0 0);
        opacity: 0.15
    }
}

.header .outer-box .logo-box:before {
    position: absolute;
    content: "";
    background: var(--violet-color);
    width: 5000px;
    height: 100%;
    top: 0px;
    right: 0px;
    z-index: -1;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s
}

.menu__logo {
    display: none
}

@media (max-width: 1460px) {
    .menu__logo {
        position:relative;
        font-size: 25px;
        font-weight: 700;
        color: aliceblue;
        margin: 0px;
        -webkit-transition: all 500ms ease;
        -o-transition: all 500ms ease;
        transition: all 500ms ease;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 5px;
        border-bottom: 1px solid rgba(255,255,255,0.1)
    }
}

@media (max-width: 1460px) {
    .menu__logo img {
        max-width:100%;
        padding-right: 45px;
        position: relative;
        z-index: 5
    }
}

.menu__logo--close-btn {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 18px;
    z-index: 5
}

.menu__logo--close-btn::before,.menu__logo--close-btn::after {
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: white
}

.menu__logo--close-btn::before {
    top: calc(50% - 1px);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.menu__logo--close-btn::after {
    bottom: calc(50% - 1px);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

@media (max-width: 1460px) {
    .menu__body {
        position:fixed;
        z-index: 10;
        width: 300px;
        height: 100vh;
        right: -100%;
        top: 0;
        overflow: auto;
        -webkit-transition: right 0.3s;
        -o-transition: right 0.3s;
        transition: right 0.3s;
        background: #141417
    }

    .menu__body::before {
        content: "";
        position: fixed;
        right: -100%;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        opacity: 0.3;
        -webkit-transition: all 900ms ease;
        -o-transition: all 900ms ease;
        transition: all 900ms ease;
        background-color: #000;
        pointer-events: none;
        -webkit-transition: right 0.2s;
        -o-transition: right 0.2s;
        transition: right 0.2s
    }

    .menu-open .menu__body {
        right: 0
    }

    .menu-open .menu__body::before {
        right: 0
    }
}

@media (max-width: 500px) {
    .menu__body {
        width:100%
    }
}

@media (max-width: 1460px) {
    .menu__list {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 20px
    }
}

.menu__item {
    font-size: 20px
}

@media (max-width: 1460px) {
    .menu__item {
        border-bottom:1px solid rgba(255,255,255,0.1)
    }
}

.icon-menu {
    display: none
}

@media (max-width: 1460px) {
    .icon-menu {
        display:block;
        position: relative;
        width: 50px;
        height: 36px;
        z-index: 5;
        background-color: black;
        padding: 11px
    }
}

@media (max-width: 1460px) and (any-hover: none) {
    .icon-menu {
        cursor:default
    }
}

@media (max-width: 1460px) {
    .icon-menu span,.icon-menu::before,.icon-menu::after {
        content:"";
        -webkit-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        right: 7px;
        position: absolute;
        width: 70%;
        height: 2px;
        background-color: white
    }

    .icon-menu::before {
        top: 8px
    }

    .icon-menu::after {
        bottom: 8px
    }

    .icon-menu span {
        top: calc(50% - 1px)
    }
}

.header--menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media (min-width: 1460px) {
    .menu__list {
        display:-webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px;
        row-gap: 5px
    }
}

@media (min-width: 1460px) and (max-width: 1460px) {
    .menu__list {
        -webkit-column-gap:20px;
        -moz-column-gap: 20px;
        column-gap: 20px
    }
}

@media (min-width: 1460px) and (max-width: 1100px) {
    .menu__list {
        -webkit-column-gap:10px;
        -moz-column-gap: 10px;
        column-gap: 10px
    }
}

.menu__link {
    position: relative;
    display: block;
    cursor: pointer;
    font-size: 18px;
    line-height: 26px;
    padding-top: 37px;
    padding-bottom: 37px;
    font-weight: 500;
    opacity: 1;
    color: #141417;
    z-index: 1;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

@media (any-hover: hover) {
    .menu__link:hover {
        color:var(--violet-color)
    }
}

@media (max-width: 1460px) {
    .menu__link {
        color:white;
        padding: 10px 25px;
        font-size: 15px;
        text-transform: uppercase
    }
}

@media (any-hover: hover) {
    .menu__item--first:hover .sub-menu {
        opacity:1;
        visibility: visible;
        pointer-events: all
    }
}

@media (max-width: 1460px) {
    .sub-menu-open-1 .menu__item--first .menu-icn-arrow {
        -webkit-transform:rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg)
    }
}

.menu .menu__item--arrow .menu__link {
    padding-right: 20px
}

.menu .menu-icn-arrow {
    position: absolute;
    top: 37px;
    right: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s
}

@media (max-width: 1460px) {
    .menu .menu-icn-arrow {
        top:10px;
        right: 15px;
        z-index: 5
    }
}

.menu .menu-icn-arrow path {
    fill: black
}

@media (max-width: 1460px) {
    .menu .menu-icn-arrow path {
        fill:white
    }
}

@media (any-hover: hover) {
    .menu__item--second:hover .sub-menu {
        opacity:1;
        visibility: visible;
        pointer-events: all
    }
}

@media (max-width: 1460px) {
    .sub-menu-open-2 .menu__item--second .menu-icn-arrow {
        -webkit-transform:rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg)
    }
}

.menu__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    padding-left: 50px
}

@media (max-width: 1460px) {
    .menu__buttons {
        padding-left:40px
    }
}

@media (max-width: 1100px) {
    .menu__buttons {
        padding-left:30px
    }
}

@media (max-width: 767.98px) {
    .menu__buttons {
        display:none
    }
}

.menu__button {
    padding: 13px 30px
}

@media (min-width: 1460px) {
    .menu .sub-menu {
        opacity:0;
        visibility: hidden;
        position: absolute;
        left: inherit;
        top: 100%;
        width: 230px;
        pointer-events: none;
        z-index: 100;
        background: var(--secondary-color);
        border-radius: 0px;
        transition: all 500ms ease;
        -moz-transition: all 500ms ease;
        -webkit-transition: all 500ms ease;
        -ms-transition: all 500ms ease;
        -o-transition: all 500ms ease
    }
}

@media (max-width: 1460px) {
    .menu .sub-menu {
        opacity:0;
        visibility: hidden;
        display: none;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s
    }
}

.menu .sub-menu__item:not(:last-child) {
    border-bottom: 1px solid rgba(255,255,255,0.1)
}

.menu .sub-menu__link {
    position: relative;
    display: block;
    padding: 10px 25px;
    line-height: 24px;
    font-weight: 600;
    font-size: 16px;
    text-transform: capitalize;
    text-align: left;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    color: white
}

@media (any-hover: hover) {
    .menu .sub-menu__link:hover {
        padding-left:35px;
        color: var(--violet-color)
    }
}

@media (max-width: 1460px) {
    .menu .sub-menu__link {
        padding:10px 45px
    }
}

.sub-menu-open-1 .menu .sub-menu--1 {
    opacity: 1;
    visibility: visible;
    display: block
}

.sub-menu-open-2 .menu .sub-menu--2 {
    opacity: 1;
    visibility: visible;
    display: block
}

.menu .button {
    background-color: var(--violet-color);
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    position: relative;
    color: #fff;
    text-align: center;
    padding: 13px 30px;
    z-index: 1;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.menu .button::after,.menu .button::before {
    content: "";
    position: absolute;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--secondary-color);
    -webkit-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -o-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: scale(0) rotate(0);
    -ms-transform: scale(0) rotate(0);
    transform: scale(0) rotate(0);
    z-index: -1
}

.menu .button:hover:before {
    border-radius: 0;
    -webkit-transform: scale(1) rotate(-180deg);
    -ms-transform: scale(1) rotate(-180deg);
    transform: scale(1) rotate(-180deg)
}

.menu .button:hover:after {
    border-radius: 0;
    -webkit-transform: scale(1) rotate(180deg);
    -ms-transform: scale(1) rotate(180deg);
    transform: scale(1) rotate(180deg)
}

.menu .button--login {
    color: #0a0f20;
    border: 1px solid #0a0f20;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-color: #fff
}

@media (any-hover: hover) {
    .menu .button--login:hover {
        color:white
    }
}

.contact-info {
    color: #ffffff;
    position: relative;
    z-index: 5
}

.contact-info__title {
    font-size: 20px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px
}

.contact-info__list {
    position: relative;
    z-index: 5
}

.contact-info__item {
    position: relative;
    z-index: 5;
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.5
}

.contact-info__item:not(:last-child) {
    margin-bottom: 8px
}

.menu__contact-info {
    display: none
}

@media (max-width: 1460px) {
    .menu__contact-info {
        display:block;
        padding: 120px 30px 20px 30px
    }
}

.menu__login-button {
    display: none
}

@media (max-width: 1460px) {
    .menu__login-button {
        margin-top:20px;
        display: block;
        text-align: center;
        padding: 10px 20px;
        background-color: #3498db;
        color: #fff;
        text-decoration: none;
        border-radius: 5px;
        -webkit-transition: background-color 0.3s ease;
        -o-transition: background-color 0.3s ease;
        transition: background-color 0.3s ease;
        margin: 20px auto 0
    }
}

@media (max-width: 1460px) and (any-hover: hover) {
    .menu__login-button:hover {
        background-color:#2980b9
    }
}

.login-box-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.footer {
    background: var(--secondary-color)
}

.footer__top {
    background-color: var(--violet-color)
}

.top-footer {
    position: relative
}

.top-footer::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-image: url("/images/shape/shape-5.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center
}

.top-footer__auto-container {
    padding-top: 55px;
    padding-bottom: 55px
}

@media (min-width: 1050px) {
    .top-footer__auto-container {
        display:-webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 10px
    }
}

@media (max-width: 767px) {
    .top-footer__auto-container {
        padding-top:35px;
        padding-bottom: 35px
    }
}

.top-footer__title {
    position: relative;
    display: block;
    font-size: 40px;
    line-height: 52px;
    color: #fff;
    font-weight: 800
}

@media (min-width: 1050px) {
    .top-footer__title {
        max-width:500px
    }
}

@media (max-width: 1050px) {
    .top-footer__title {
        margin-bottom:30px
    }
}

@media (max-width: 767px) {
    .top-footer__title {
        margin-bottom:25px;
        font-size: 30px;
        line-height: 40px
    }
}

.top-footer__input-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px
}

@media (max-width: 600px) {
    .top-footer__input-box {
        -ms-flex-wrap:wrap;
        flex-wrap: wrap
    }
}

.top-footer__input {
    position: relative;
    height: 60px;
    background: rgba(255,255,255,0.15);
    border: 1px solid transparent;
    font-size: 16px;
    color: #fff;
    padding: 10px 30px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

@media (max-width: 1050px) {
    .top-footer__input {
        -webkit-box-flex:1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto
    }
}

.top-footer__input::-webkit-input-placeholder {
    color: #fff
}

.top-footer__input::-moz-placeholder {
    color: #fff
}

.top-footer__input:-ms-input-placeholder {
    color: #fff
}

.top-footer__input::-ms-input-placeholder {
    color: #fff
}

.top-footer__input::placeholder {
    color: #fff
}

.top-footer__input:focus {
    outline: none;
    border: 1px solid #fff
}

.top-footer__button {
    background-color: var(--secondary-color)
}

.top-footer__button::after,.top-footer__button::before {
    background-color: #fff
}

@media (max-width: 600px) {
    .top-footer__button {
        -webkit-box-flex:1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto
    }
}

@media (any-hover: hover) {
    .top-footer__button:hover {
        color:var(--secondary-color)
    }
}

.middle-footer {
    position: relative;
    padding: 110px 0px 113px 0px;
    color: #fff
}

@media (min-width: 767px) {
    .middle-footer::before {
        content:"";
        position: absolute;
        left: 0px;
        bottom: 0px;
        width: 193px;
        height: 540px;
        background-repeat: no-repeat;
        background-image: url("/images/shape/shape-8.png")
    }

    .middle-footer::after {
        content: "";
        position: absolute;
        right: 0px;
        bottom: 0px;
        width: 209px;
        height: 550px;
        background-image: url("/images/shape/shape-9.png");
        background-repeat: no-repeat
    }
}

@media (max-width: 991px) {
    .middle-footer {
        padding-bottom:83px
    }
}

@media (max-width: 767) {
    .middle-footer {
        padding:80px 0px 50px 0px
    }
}

.middle-footer__body {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
    row-gap: 20px
}

@media (max-width: 1000px) {
    .middle-footer__body {
        grid-template-columns:repeat(2, 1fr);
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px
    }
}

@media (max-width: 757px) {
    .middle-footer__body {
        grid-template-columns:1fr;
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px
    }
}

.middle-footer__logo {
    color: #f0f8ff;
    font-family: "Manrope";
    font-size: 28px;
    font-weight: 700;
    line-height: 33.6px
}

.middle-footer__description {
    font-family: "Inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px
}

.middle-footer__title {
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: 28px
}

.middle-footer__title:not(:last-child) {
    margin-bottom: 25px
}

.list-footer__item:not(:last-child) {
    margin-bottom: 10px
}

.list-footer__link {
    position: relative;
    padding-left: 15px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    display: inline-block;
    line-height: 1.5;
    font-weight: 500
}

@media (any-hover: hover) {
    .list-footer__link:hover {
        color:var(--violet-color)
    }

    .list-footer__link:hover::before {
        background: var(--violet-color)
    }
}

.list-footer__link::before {
    position: absolute;
    content: "";
    background: #fff;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    left: 0px;
    top: 11px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.bottom-footer {
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    padding: 30px 0px;
    color: #fff
}

.bottom-footer__copyright {
    position: relative;
    color: #fff;
    font-family: "Inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.bottom-footer__link {
    color: var(--violet-color)
}

@media (any-hover: hover) {
    .bottom-footer__link:hover {
        text-decoration:underline
    }
}

.section-1__slider {
    width: 100%;
    height: 100vh
}

.section-1__swiper-slide {
    padding-top: 100px;
    width: 100%;
    height: 100vh
}

.section-1__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 8000ms linear;
    -o-transition: all 8000ms linear;
    transition: all 8000ms linear
}

.section-1__image::before {
    content: "";
    position: absolute;
    background: #000;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    opacity: 0.5;
    z-index: 1;
    pointer-events: none
}

.section-1__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.section-1 .swiper-slide-active .section-1__image {
    -webkit-transform: scale(1.25);
    -ms-transform: scale(1.25);
    transform: scale(1.25)
}

.section-1__content-box {
    position: relative;
    z-index: 10;
    min-height: 70vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.section-1__title {
    font-size: 70px;
    line-height: 74px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
    opacity: 0;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
    -webkit-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    max-width: 540px
}

@media (max-width: 767px) {
    .section-1__title {
        font-size:40px;
        line-height: 50px;
        margin-bottom: 20px
    }
}

.section-1__title span {
    color: var(--violet-color)
}

.section-1 .swiper-slide-active .section-1__title {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 700ms;
    -o-transition-delay: 700ms;
    transition-delay: 700ms
}

.section-1__text {
    font-size: 18px;
    line-height: 32px;
    color: #fff;
    opacity: 0;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
    -webkit-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease
}

@media (max-width: 767px) {
    .section-1__text {
        font-size:16px
    }

    .section-1__text:not(:last-child) {
        margin-bottom: 22px
    }
}

.swiper-slide-active .section-1__text {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms
}

.section-1__text:not(:last-child) {
    margin-bottom: 32px
}

.section-1__button {
    opacity: 0;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
    -webkit-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease
}

.swiper-slide-active .section-1__button {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 1300ms;
    -o-transition-delay: 1300ms;
    transition-delay: 1300ms
}

.button {
    background-color: var(--violet-color);
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    position: relative;
    color: #fff;
    text-align: center;
    padding: 13px 30px;
    z-index: 1;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.button::after,.button::before {
    content: "";
    position: absolute;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--secondary-color);
    -webkit-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -o-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: scale(0) rotate(0);
    -ms-transform: scale(0) rotate(0);
    transform: scale(0) rotate(0);
    z-index: -1
}

.button:hover:before {
    border-radius: 0;
    -webkit-transform: scale(1) rotate(-180deg);
    -ms-transform: scale(1) rotate(-180deg);
    transform: scale(1) rotate(-180deg)
}

.button:hover:after {
    border-radius: 0;
    -webkit-transform: scale(1) rotate(180deg);
    -ms-transform: scale(1) rotate(180deg);
    transform: scale(1) rotate(180deg)
}

.button--login {
    color: #0a0f20;
    border: 1px solid #0a0f20;
    background-color: #fff
}

@media (any-hover: hover) {
    .button--login:hover {
        color:white
    }
}

.pattern-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center
}

@media (min-width: 900px) {
    .pattern-1 {
        position:absolute;
        top: 0px;
        right: 200px;
        width: 616px;
        height: 100vh;
        background-size: cover;
        background-repeat: no-repeat;
        z-index: 1;
        -webkit-animation: service_hexagon_2 15s infinite linear;
        animation: service_hexagon_2 15s infinite linear
    }
}

.pattern-2 {
    position: absolute;
    left: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 86px;
    height: 234px;
    background-repeat: no-repeat;
    z-index: 1
}

@media only screen and (max-width: 991px) {
    .pattern-layer {
        display:none
    }
}

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


@-webkit-keyframes service_hexagon_2 {
    0% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg)
    }

    100% {
        -webkit-transform: rotateY(360deg);
        transform: rotateY(360deg)
    }
}

@keyframes service_hexagon_2 {
    0% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg)
    }

    100% {
        -webkit-transform: rotateY(360deg);
        transform: rotateY(360deg)
    }
}

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

@-webkit-keyframes service_hexagon {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

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

@keyframes service_hexagon {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

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

@-webkit-keyframes animateBubble {
    0% {
        margin-top: 20%
    }

    100% {
        margin-top: -30%
    }
}

@keyframes animateBubble {
    0% {
        margin-top: 20%
    }

    100% {
        margin-top: -30%
    }
}

@-webkit-keyframes sideWays {
    0% {
        margin-left: 0
    }

    100% {
        margin-left: 25px
    }
}

@keyframes sideWays {
    0% {
        margin-left: 0
    }

    100% {
        margin-left: 25px
    }
}

.feature-section {
    position: relative;
    padding-top: 20px
}

.feature-section__inner-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    -webkit-box-shadow: 0px 20px 60px 10px #00000012;
    box-shadow: 0px 20px 60px 10px #00000012;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s
}

.feature-section__inner-container.element-animation {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px)
}

.feature-section__inner-container.element-show {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
}

.feature-block-one__title {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    margin-bottom: 15px
}

.feature-block-one__text {
    color: var(--text-color);
    line-height: 1.5
}

.inner-box {
    padding: 50px 40px;
    background: #fff;
    z-index: 1;
    position: relative
}

.inner-box::before {
    position: absolute;
    content: "";
    background: var(--violet-color);
    width: 100%;
    height: 0%;
    left: 0px;
    top: 0px;
    z-index: -1;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.inner-box:hover:before {
    height: 100%
}

.inner-box:hover .icon-box {
    background: rgba(255,255,255,0.2) !important
}

.feature-block-one .inner-box:hover p {
    color: #fff
}

.feature-block-one .inner-box p {
    position: relative;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.icon-box {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    font-size: 40px;
    color: #fff;
    background: var(--violet-color);
    border-radius: 50%;
    margin-bottom: 25px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.about-section {
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px
}

@media (max-width: 767.98px) {
    .about-section {
        padding-top:70px;
        padding-bottom: 70px
    }
}

.about-section .pattern-layer2 {
    display: none
}

@media (min-width: 1300px) {
    .about-section .pattern-layer2 {
        display:block;
        position: absolute;
        top: 60px;
        right: -224px;
        width: 394px;
        height: 394px;
        border-radius: 50%;
        border: 1px solid #e9e9e9
    }

    .about-section .pattern-layer2::before {
        position: absolute;
        content: "";
        background: #f2f2f2;
        width: 38px;
        height: 38px;
        left: 29px;
        top: 52px;
        border-radius: 50%
    }
}

.rotate-me {
    animation-name: rotateme;
    animation-duration: 24s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: rotateme;
    -webkit-animation-duration: 24s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear
}

.rotate-me {
    animation-name: rotateme;
    animation-duration: 24s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: rotateme;
    -webkit-animation-duration: 24s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: rotateme;
    -moz-animation-duration: 24s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: rotateme;
    -ms-animation-duration: 24s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: rotateme;
    -o-animation-duration: 24s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear
}

@keyframes rotateme {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes rotateme {
    from {
        -webkit-transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg)
    }
}

.about-us-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 20px
}

@media (max-width: 1300px) {
    .about-us-block {
        -webkit-box-pack:center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.about-us-block__image-column {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%
}

@media (max-width: 1300px) {
    .about-us-block__image-column {
        -webkit-box-flex:0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto
    }
}

.about-us-block__content-column {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%
}

@media (max-width: 1300px) {
    .about-us-block__content-column {
        -webkit-box-flex:0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%
    }
}

.image__block-one {
    position: relative
}

@media (min-width: 1200px) {
    .image__block-one {
        margin-right:40px;
        padding-right: 90px
    }
}

.image-box {
    position: relative
}

@media (min-width: 1300px) {
    .image-shape {
        position:absolute;
        z-index: -1;
        left: -108px;
        top: 110px;
        width: 200px;
        height: 200px;
        background-repeat: no-repeat;
        -webkit-animation: zoom-fade 8s infinite linear;
        animation: zoom-fade 8s infinite linear
    }
}

@-webkit-keyframes zoom-fade {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9)
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    100% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9)
    }
}

@keyframes zoom-fade {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9)
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    100% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9)
    }
}

.about-us {
    position: relative;
    overflow: hidden
}

@media (any-hover: hover) {
    .about-us__image:hover::before {
        -webkit-animation:shine 1s;
        animation: shine 1s
    }
}

.about-us__image::before {
    content: "";
    position: absolute;
    top: 0;
    left: -85%;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: -o-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255,255,255,0)), to(rgba(255,255,255,0.3)));
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 100%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg)
}

.rating-box {
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    width: 100%;
    margin: 30px 0px
}

@media (min-width: 650px) {
    .rating-box {
        position:absolute;
        left: 0px;
        top: 60px;
        background: #fff;
        width: 220px;
        padding: 24px 20px;
        text-align: center;
        z-index: 1
    }
}

.rating {
    margin-bottom: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.rating h6 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    color: var(--title-color)
}

.icon-9 {
    color: #ffba09
}

.experience-box {
    background-color: var(--violet-color);
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px
}

@media (min-width: 650px) {
    .experience-box {
        position:absolute;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        right: -75px;
        bottom: 95px;
        width: 180px;
        height: 180px;
        text-align: center;
        background: var(--violet-color);
        border-radius: 50%;
        padding: 15px 20px;
        z-index: 1
    }

    .experience-box::before {
        position: absolute;
        content: "";
        width: 290px;
        height: 290px;
        border-radius: 50%;
        left: -55px;
        top: -55px;
        border: 20px solid rgba(255,255,255,0.5)
    }
}

.experience-box__title {
    font-size: 54px;
    line-height: 70px;
    color: #fff
}

.experience-box__sub-title {
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    font-weight: 600
}

@media (min-width: 1300px) {
    .about-us-content__content-box {
        margin-left:40px
    }
}

@media (max-width: 1300px) {
    .about-us-content__content-box {
        padding-left:10px;
        padding-right: 10px
    }
}

.about-us-content__label {
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--violet-color)
}

.about-us-content__title {
    display: block;
    font-size: 40px;
    line-height: 52px;
    font-weight: 800;
    margin-bottom: 20px
}

.about-us-content__text-box {
    margin-bottom: 40px;
    color: var(--text-color);
    line-height: 28px
}

.about-us-content__achievements-box {
    margin-bottom: 45px
}

.achievements-box__title {
    color: #141417;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 10px
}

.achievements-box__text {
    color: #676767;
    font-family: "Inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px
}

.achievements-box__single-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px
}

.achievements-box__single-item:not(:last-child) {
    margin-bottom: 23px
}

.achievements-box__single-item .icon-box {
    width: 70px;
    height: 70px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70px;
    flex: 0 0 70px;
    background-color: #f2e5ff
}

.achievements-box__single-item .icon-11,.achievements-box__single-item .icon-10 {
    color: var(--violet-color)
}

@-webkit-keyframes shine {
    100% {
        left: 125%
    }
}

@keyframes shine {
    100% {
        left: 125%
    }
}

.our-services-section {
    position: relative;
    background: #f6f6f6;
    padding-top: 120px;
    padding-bottom: 90px
}

.our-services-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/images/background/service-bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.03;
    pointer-events: none
}

@media (max-width: 767px) {
    .our-services-section {
        padding:65px 0px 40px 0px
    }
}

.our-services-section__block-header {
    text-align: center
}

.our-services-section__block-header:not(:last-child) {
    margin-bottom: 60px
}

.our-services-section__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px
}

@media (max-width: 1000px) {
    .our-services-section__cards {
        grid-template-columns:repeat(3, 1fr)
    }
}

@media (max-width: 767px) {
    .our-services-section__cards {
        grid-template-columns:repeat(2, 1fr)
    }
}

@media (max-width: 500px) {
    .our-services-section__cards {
        grid-template-columns:1fr
    }
}

.our-services-section__card {
    padding: 35px 30px 30px 30px;
    position: relative;
    overflow: hidden;
    background-color: #fff;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s
}

.element-animation .our-services-section__card {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px)
}

.element-show .our-services-section__card {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
}

.our-services-section__card:nth-child(1) {
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s
}

.our-services-section__card:nth-child(2) {
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s
}

.our-services-section__card:nth-child(3) {
    -webkit-transition-delay: 0.4s;
    -o-transition-delay: 0.4s;
    transition-delay: 0.4s
}

.our-services-section__card:nth-child(4) {
    -webkit-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s
}

.our-services-section__card:nth-child(5) {
    -webkit-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s
}

.our-services-section__card:nth-child(6) {
    -webkit-transition-delay: 0.7s;
    -o-transition-delay: 0.7s;
    transition-delay: 0.7s
}

.our-services-section__card:nth-child(7) {
    -webkit-transition-delay: 0.8s;
    -o-transition-delay: 0.8s;
    transition-delay: 0.8s
}

.our-services-section__card:nth-child(8) {
    -webkit-transition-delay: 0.9s;
    -o-transition-delay: 0.9s;
    transition-delay: 0.9s
}

.our-services-section__card::before {
    position: absolute;
    content: "";
    background: var(--violet-color);
    width: 100%;
    height: 0%;
    left: 0px;
    top: 0px;
    z-index: 0;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

@media (any-hover: hover) {
    .our-services-section__card:hover::before {
        height:100%
    }
}

.our-services-section .our-services-section__card:hover::before {
    height: 100%
}

.our-services-section .our-services-section__card:hover .our-services-section__icon {
    color: #fff
}

.our-services-section .our-services-section__card:hover .our-services-section__items {
    color: #fff
}

.our-services-section .our-services-section__card:hover .our-services-section__item::before {
    background-color: #fff
}

.our-services-section__icon {
    position: relative;
    color: var(--violet-color);
    display: inline-block;
    font-size: 40px;
    margin-bottom: 24px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.our-services-section__title {
    position: relative;
    color: #141417;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    text-transform: capitalize
}

.our-services-section__title:not(:last-child) {
    margin-bottom: 20px
}

.our-services-section__items {
    position: relative
}

.our-services-section__item {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 32px;
    padding-left: 16px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.our-services-section__item::before {
    position: absolute;
    content: "";
    background: #676767;
    width: 5px;
    height: 5px;
    left: 0px;
    top: 13px;
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.block-header-our-services__label {
    color: var(--violet-color);
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 700
}

.block-header-our-services__title {
    color: #141417;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: 52px
}

@media (max-width: 767px) {
    .block-header-our-services__title {
        font-size:32px;
        line-height: 40px
    }
}

.fun-fact {
    margin-top: -60px;
    position: relative
}

.fun-fact__body {
    display: grid;
    grid-template-columns: repeat(3, 1fr)
}

@media (max-width: 1000px) {
    .fun-fact__body {
        grid-template-columns:repeat(2, 1fr)
    }
}

@media (max-width: 750px) {
    .fun-fact__body {
        grid-template-columns:1fr
    }
}

.funfact-box {
    position: relative;
    padding: 54px 30px 50px 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px
}

.count-outer {
    color: #fff;
    padding-top: 5px;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 52px;
    margin-bottom: 5px
}

.funfact-box__text {
    color: #fff;
    font-family: "Inter";
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px
}

.funfact-block-one--white {
    background-color: #fff
}

.funfact-block-one--white .icon-box {
    background-color: rgba(235,41,44,0.1)
}

.funfact-block-one--white .funfact-box__text {
    color: #676767
}

.funfact-block-one--white .count-outer {
    color: #222
}

.funfact-block-one--dark {
    background-color: #0a0f20;
    color: white
}

.funfact-block-one--dark .icon-box {
    background: rgba(255,255,255,0.07)
}

.funfact-block-one--purple {
    background-color: var(--violet-color);
    color: white
}

.funfact-block-one--purple .icon-box {
    background: rgba(255,255,255,0.15)
}

@media (max-width: 1000px) {
    .funfact-block-one--purple {
        grid-column:span 2
    }
}

@media (max-width: 750px) {
    .funfact-block-one--purple {
        grid-column:span 1
    }
}

.icon-21 {
    color: var(--violet-color)
}

.icon-22 {
    color: white
}

.icon-23 {
    color: white
}

.our-clients {
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
    background: #f6f6f6
}

.our-clients::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/images/background/testimonial-bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.05;
    pointer-events: none
}

@media (max-width: 767px) {
    .our-clients {
        padding:70px 0px 70px 0px
    }
}

.our-clients__block-header {
    text-align: center;
    margin-bottom: 60px
}

.our-clients__swiper-slide {
    position: relative;
    display: block;
    background: #fff;
    padding: 0px 30px 40px 30px;
    margin-top: 45px
}

.our-clients__image {
    position: relative;
    z-index: 5;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: -45px auto 15px;
    text-align: center;
    border-radius: 50%
}

.our-clients__image img {
    border-radius: 50%
}

.our-clients__title {
    color: #141417;
    text-align: center;
    font-family: "Manrope";
    font-size: 20px;
    font-weight: 700;
    line-height: 28px
}

.our-clients__position {
    color: #676767;
    text-align: center;
    font-family: "Inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 10px
}

.our-clients__rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 13px
}

.our-clients__rating .icon-26 {
    color: #ffb13d
}

.our-clients__text {
    color: #676767;
    text-align: center;
    font-family: "Inter";
    font-size: 16px;
    font-weight: 400;
    line-height: 28px
}

.block-header-our-clients__label {
    color: var(--violet-color);
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 700
}

.block-header-our-clients__title {
    color: #141417;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: 52px
}

@media (max-width: 767px) {
    .block-header-our-clients__title {
        font-size:32px;
        line-height: 40px
    }
}

.handle-preloader {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-items: center;
    display: -webkit-box;
    display: flex;
    display: -ms-flexbox;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999999;
    background: #0e1d40
}

.preloader-close {
    position: fixed;
    z-index: 99999999;
    font-size: 14px;
    background: #fff;
    color: red;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    right: 30px;
    top: 30px;
    font-weight: 400
}

.handle-preloader .animation-preloader {
    position: absolute;
    z-index: 100
}

.handle-preloader .animation-preloader .spinner {
    -webkit-animation: spinner 1s infinite linear;
    animation: spinner 1s infinite linear;
    border-radius: 50%;
    height: 150px;
    margin: 0 auto 45px auto;
    width: 150px
}

.handle-preloader .animation-preloader .txt-loading {
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
    -webkit-animation: letters-loading 4s infinite;
    animation: letters-loading 4s infinite;
    content: attr(data-text-preloader);
    left: 0;
    opacity: 0;
    top: 0;
    position: absolute
}

.handle-preloader .animation-preloader .txt-loading .letters-loading {
    font-family: var(--title-font);
    font-weight: 500;
    letter-spacing: 15px;
    display: inline-block;
    position: relative;
    font-size: 60px;
    line-height: 60px;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(255,255,255,0.3)
}

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

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

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

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
    -webkit-animation-delay: 1s;
    animation-delay: 1s
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
    -webkit-animation-delay: 1.4s;
    animation-delay: 1.4s
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(9):before {
    -webkit-animation-delay: 1.6s;
    animation-delay: 1.6s
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(10):before {
    -webkit-animation-delay: 1.8s;
    animation-delay: 1.8s
}

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

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(11):before {
    -webkit-animation-delay: 2.2s;
    animation-delay: 2.2s
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(12):before {
    -webkit-animation-delay: 2.4s;
    animation-delay: 2.4s
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(13):before {
    -webkit-animation-delay: 2.6s;
    animation-delay: 2.6s
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(14):before {
    -webkit-animation-delay: 2.8s;
    animation-delay: 2.8s
}

.handle-preloader .loader-section {
    background-color: #ffffff;
    height: 100%;
    position: fixed;
    top: 0;
    width: calc(50% + 1px)
}

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

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
    color: #ffffff
}

.handle-preloader .animation-preloader .spinner {
    border: 3px solid #ffffff;
    border-top-color: rgba(255,255,255,0.5)
}

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

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

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

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

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

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

@media screen and (max-width: 767px) {
    .handle-preloader .animation-preloader .spinner {
        height:8em;
        width: 8em
    }
}

@media screen and (max-width: 500px) {
    .handle-preloader .animation-preloader .spinner {
        height:7em;
        width: 7em
    }

    .handle-preloader .animation-preloader .txt-loading .letters-loading {
        font-size: 30px;
        letter-spacing: 10px
    }
}

.header {
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0px;
    z-index: 999;
    width: 100%;
    background-color: #fff;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease
}

.header-top {
    position: relative;
    width: 100%;
    background: #212226;
    padding: 16px 0px;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s
}

._header-scroll .header-top {
    padding: 0;
    opacity: 0;
    visibility: hidden;
    height: 0
}

@media (max-width: 479.98px) {
    .header-top {
        padding:10px 0px
    }
}

.header-top .top-inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 560px
}

@media (max-width: 1460px) {
    .header-top .top-inner {
        padding-left:0px
    }
}

.header-top .info-list li a {
    position: relative;
    display: inline-block;
    color: #fff
}

.header-top .info-list li i {
    position: absolute;
    left: 0px;
    top: 5px;
    font-size: 18px
}

.header-top .info-list li:last-child {
    margin: 0px !important
}

.clearfix::after {
    display: block;
    clear: both;
    content: ""
}

.icon-1:before {
    content: "\e900";
    color: var(--violet-color)
}

.top-inner__email {
    color: #fff;
    font-family: "Inter";
    font-weight: 300;
    padding-left: 32px
}

@media (max-width: 1460px) {
    .top-inner__email {
        padding-left:15px
    }
}

@media (max-width: 487px) {
    .top-inner__email {
        padding-left:10px
    }
}

.header .outer-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
    min-height: 80px
}

.logo-box {
    position: relative;
    padding: 41px 0px 41px 0px;
    margin-top: -60px;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
    z-index: 1
}

.logo-box img {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    margin-left: -20px
}

@media (max-width: 1000px) {
    .logo-box img {
        -webkit-transform:scale(0.7);
        -ms-transform: scale(0.7);
        transform: scale(0.7);
        margin-left: -70px
    }
}

@media (max-width: 930px) {
    .logo-box img {
        -webkit-transform:scale(0.6);
        -ms-transform: scale(0.6);
        transform: scale(0.6);
        margin-left: -95px
    }
}

@media (max-width: 700px) {
    .logo-box img {
        -webkit-transform:scale(0.4);
        -ms-transform: scale(0.4);
        transform: scale(0.4);
        margin-left: -140px
    }
}

@media (max-width: 450px) {
    .logo-box img {
        margin-left:-150px
    }
}

._header-scroll .logo-box {
    padding: 15px 40px 30px 10px;
    margin-top: 0px
}

@media (max-width: 1000px) {
    ._header-scroll .logo-box {
        padding:15px 40px 15px 0px
    }
}

@media (max-width: 930px) {
    ._header-scroll .logo-box {
        padding:15px 40px 15px 0px
    }
}

@media (max-width: 700px) {
    ._header-scroll .logo-box {
        padding:10px 40px 10px 0px
    }
}

@media (max-width: 450px) {
    ._header-scroll .logo-box {
        padding:7px 40px 7px 0px
    }
}

.logo-box h5 {
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s
}

._header-scroll .logo-box h5 {
    font-size: 24px
}

@media (max-width: 1460px) {
    .logo-box {
        margin-top:-0px;
        padding: 8px 10px 9px
    }
}

@media (max-width: 930px) {
    .logo-box {
        width:320px;
        padding: 8px 15px 8px 0px
    }
}

@media (max-width: 700px) {
    .logo-box {
        padding:8px 0px;
        width: 235px
    }
}

@media (max-width: 450px) {
    .logo-box {
        width:225px;
        padding: 8px 0px
    }
}

@media (min-width: 1460px) {
    .header .outer-box .logo-box .shape {
        position:absolute;
        top: 0px;
        right: -24px;
        width: 24px;
        height: 100%;
        background: var(--violet-color);
        -webkit-clip-path: polygon(100% 0%, 0% 50%, 100% 100%, 0 100%, 0 50%, 0 0);
        clip-path: polygon(100% 0%, 0% 50%, 100% 100%, 0 100%, 0 50%, 0 0)
    }

    .header .outer-box .logo-box:after {
        position: absolute;
        content: "";
        top: 0px;
        right: -32px;
        width: 32px;
        height: 100%;
        background: var(--violet-color);
        -webkit-clip-path: polygon(100% 0%, 25% 50%, 100% 100%, 0 100%, 0 50%, 0 0);
        clip-path: polygon(100% 0%, 25% 50%, 100% 100%, 0 100%, 0 50%, 0 0);
        opacity: 0.15
    }
}

.header .outer-box .logo-box:before {
    position: absolute;
    content: "";
    background: var(--violet-color);
    width: 5000px;
    height: 100%;
    top: 0px;
    right: 0px;
    z-index: -1;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s
}

.menu__logo {
    display: none
}

@media (max-width: 1460px) {
    .menu__logo {
        position:relative;
        font-size: 25px;
        font-weight: 700;
        color: aliceblue;
        margin: 0px;
        -webkit-transition: all 500ms ease;
        -o-transition: all 500ms ease;
        transition: all 500ms ease;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 5px;
        border-bottom: 1px solid rgba(255,255,255,0.1)
    }
}

@media (max-width: 1460px) {
    .menu__logo img {
        max-width:100%;
        padding-right: 45px;
        position: relative;
        z-index: 5
    }
}

.menu__logo--close-btn {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 18px;
    z-index: 5
}

.menu__logo--close-btn::before,.menu__logo--close-btn::after {
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: white
}

.menu__logo--close-btn::before {
    top: calc(50% - 1px);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.menu__logo--close-btn::after {
    bottom: calc(50% - 1px);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

@media (max-width: 1460px) {
    .menu__body {
        position:fixed;
        z-index: 10;
        width: 300px;
        height: 100vh;
        right: -100%;
        top: 0;
        overflow: auto;
        -webkit-transition: right 0.3s;
        -o-transition: right 0.3s;
        transition: right 0.3s;
        background: #141417
    }

    .menu__body::before {
        content: "";
        position: fixed;
        right: -100%;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        opacity: 0.3;
        -webkit-transition: all 900ms ease;
        -o-transition: all 900ms ease;
        transition: all 900ms ease;
        background-color: #000;
        pointer-events: none;
        -webkit-transition: right 0.2s;
        -o-transition: right 0.2s;
        transition: right 0.2s
    }

    .menu-open .menu__body {
        right: 0
    }

    .menu-open .menu__body::before {
        right: 0
    }
}

@media (max-width: 500px) {
    .menu__body {
        width:100%
    }
}

@media (max-width: 1460px) {
    .menu__list {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 20px
    }
}

.menu__item {
    font-size: 20px
}

@media (max-width: 1460px) {
    .menu__item {
        border-bottom:1px solid rgba(255,255,255,0.1)
    }
}

.icon-menu {
    display: none
}

@media (max-width: 1460px) {
    .icon-menu {
        display:block;
        position: relative;
        width: 50px;
        height: 36px;
        z-index: 5;
        background-color: black;
        padding: 11px
    }
}

@media (max-width: 1460px) and (any-hover: none) {
    .icon-menu {
        cursor:default
    }
}

@media (max-width: 1460px) {
    .icon-menu span,.icon-menu::before,.icon-menu::after {
        content:"";
        -webkit-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        right: 7px;
        position: absolute;
        width: 70%;
        height: 2px;
        background-color: white
    }

    .icon-menu::before {
        top: 8px
    }

    .icon-menu::after {
        bottom: 8px
    }

    .icon-menu span {
        top: calc(50% - 1px)
    }
}

.header--menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media (min-width: 1460px) {
    .menu__list {
        display:-webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px;
        row-gap: 5px
    }
}

@media (min-width: 1460px) and (max-width: 1460px) {
    .menu__list {
        -webkit-column-gap:20px;
        -moz-column-gap: 20px;
        column-gap: 20px
    }
}

@media (min-width: 1460px) and (max-width: 1100px) {
    .menu__list {
        -webkit-column-gap:10px;
        -moz-column-gap: 10px;
        column-gap: 10px
    }
}

.menu__link {
    position: relative;
    display: block;
    cursor: pointer;
    font-size: 18px;
    line-height: 26px;
    padding-top: 37px;
    padding-bottom: 37px;
    font-weight: 500;
    opacity: 1;
    color: #141417;
    z-index: 1;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

@media (any-hover: hover) {
    .menu__link:hover {
        color:var(--violet-color)
    }
}

@media (max-width: 1460px) {
    .menu__link {
        color:white;
        padding: 10px 25px;
        font-size: 15px;
        text-transform: uppercase
    }
}

@media (any-hover: hover) {
    .menu__item--first:hover .sub-menu {
        opacity:1;
        visibility: visible;
        pointer-events: all
    }
}

@media (max-width: 1460px) {
    .sub-menu-open-1 .menu__item--first .menu-icn-arrow {
        -webkit-transform:rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg)
    }
}

.menu .menu__item--arrow .menu__link {
    padding-right: 20px
}

.menu .menu-icn-arrow {
    position: absolute;
    top: 37px;
    right: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s
}

@media (max-width: 1460px) {
    .menu .menu-icn-arrow {
        top:10px;
        right: 15px;
        z-index: 5
    }
}

.menu .menu-icn-arrow path {
    fill: black
}

@media (max-width: 1460px) {
    .menu .menu-icn-arrow path {
        fill:white
    }
}

@media (any-hover: hover) {
    .menu__item--second:hover .sub-menu {
        opacity:1;
        visibility: visible;
        pointer-events: all
    }
}

@media (max-width: 1460px) {
    .sub-menu-open-2 .menu__item--second .menu-icn-arrow {
        -webkit-transform:rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg)
    }
}

.menu__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    padding-left: 50px
}

@media (max-width: 1460px) {
    .menu__buttons {
        padding-left:40px
    }
}

@media (max-width: 1100px) {
    .menu__buttons {
        padding-left:30px
    }
}

@media (max-width: 767.98px) {
    .menu__buttons {
        display:none
    }
}

.menu__button {
    padding: 13px 30px
}

@media (min-width: 1460px) {
    .menu .sub-menu {
        opacity:0;
        visibility: hidden;
        position: absolute;
        left: inherit;
        top: 100%;
        width: 230px;
        pointer-events: none;
        z-index: 100;
        background: var(--secondary-color);
        border-radius: 0px;
        transition: all 500ms ease;
        -moz-transition: all 500ms ease;
        -webkit-transition: all 500ms ease;
        -ms-transition: all 500ms ease;
        -o-transition: all 500ms ease
    }
}

@media (max-width: 1460px) {
    .menu .sub-menu {
        opacity:0;
        visibility: hidden;
        display: none;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s
    }
}

.menu .sub-menu__item:not(:last-child) {
    border-bottom: 1px solid rgba(255,255,255,0.1)
}

.menu .sub-menu__link {
    position: relative;
    display: block;
    padding: 10px 25px;
    line-height: 24px;
    font-weight: 600;
    font-size: 16px;
    text-transform: capitalize;
    text-align: left;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    color: white
}

@media (any-hover: hover) {
    .menu .sub-menu__link:hover {
        padding-left:35px;
        color: var(--violet-color)
    }
}

@media (max-width: 1460px) {
    .menu .sub-menu__link {
        padding:10px 45px
    }
}

.sub-menu-open-1 .menu .sub-menu--1 {
    opacity: 1;
    visibility: visible;
    display: block
}

.sub-menu-open-2 .menu .sub-menu--2 {
    opacity: 1;
    visibility: visible;
    display: block
}

.menu .button {
    background-color: var(--violet-color);
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    position: relative;
    color: #fff;
    text-align: center;
    padding: 13px 30px;
    z-index: 1;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.menu .button::after,.menu .button::before {
    content: "";
    position: absolute;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--secondary-color);
    -webkit-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -o-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: scale(0) rotate(0);
    -ms-transform: scale(0) rotate(0);
    transform: scale(0) rotate(0);
    z-index: -1
}

.menu .button:hover:before {
    border-radius: 0;
    -webkit-transform: scale(1) rotate(-180deg);
    -ms-transform: scale(1) rotate(-180deg);
    transform: scale(1) rotate(-180deg)
}

.menu .button:hover:after {
    border-radius: 0;
    -webkit-transform: scale(1) rotate(180deg);
    -ms-transform: scale(1) rotate(180deg);
    transform: scale(1) rotate(180deg)
}

.menu .button--login {
    color: #0a0f20;
    border: 1px solid #0a0f20;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-color: #fff
}

@media (any-hover: hover) {
    .menu .button--login:hover {
        color:white
    }
}

.contact-info {
    color: #ffffff;
    position: relative;
    z-index: 5
}

.contact-info__title {
    font-size: 20px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px
}

.contact-info__list {
    position: relative;
    z-index: 5
}

.contact-info__item {
    position: relative;
    z-index: 5;
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.5
}

.contact-info__item:not(:last-child) {
    margin-bottom: 8px
}

.menu__contact-info {
    display: none
}

.contact-background {
    background-image: url('/images/resource/contact-1.jpg');
    background-size: cover;
    background-position: center;
    padding: 50px 0;
}

.thank-you-background {
    background-image: url('/images/resource/contact-1.jpg');
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
  }
 
  .thank-you-container {
    text-align: center;
    background: rgba(127, 0, 255, 0.8); /* Using #7f00ff as rgba */
    padding: 20px;
    border-radius: 10px;
    height:fit-content;
    max-width: 90%; /* Ensure it doesn't overflow the screen */
    margin: 0 auto;
  }
  
  .thank-you-container h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #ffffff;
  }
  
  .thank-you-container p {
    font-size: 1.25rem;
    color: #ffffff;
  }
  
  @media (max-width: 600px) {
    .thank-you-container h1 {
      font-size: 1.1rem;
    }
    .thank-you-container p {
      font-size: 1rem;
    }
  }
  
@media (max-width: 1460px) {
    .menu__contact-info {
        display:block;
        padding: 120px 30px 20px 30px
    }
}

.menu__login-button {
    display: none
}

@media (max-width: 1460px) {
    .menu__login-button {
        margin-top:20px;
        display: block;
        text-align: center;
        padding: 10px 20px;
        background-color: #3498db;
        color: #fff;
        text-decoration: none;
        border-radius: 5px;
        -webkit-transition: background-color 0.3s ease;
        -o-transition: background-color 0.3s ease;
        transition: background-color 0.3s ease;
        margin: 20px auto 0
    }
}

@media (max-width: 1460px) and (any-hover: hover) {
    .menu__login-button:hover {
        background-color:#2980b9
    }
}

.login-box-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.footer {
    background: var(--secondary-color)
}

.footer__top {
    background-color: var(--violet-color)
}

.top-footer {
    position: relative
}

.top-footer::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-image: url("/images/shape/shape-5.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center
}

.top-footer__auto-container {
    padding-top: 55px;
    padding-bottom: 55px
}

@media (min-width: 1050px) {
    .top-footer__auto-container {
        display:-webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 10px
    }
}

@media (max-width: 767px) {
    .top-footer__auto-container {
        padding-top:35px;
        padding-bottom: 35px
    }
}

.top-footer__title {
    position: relative;
    display: block;
    font-size: 40px;
    line-height: 52px;
    color: #fff;
    font-weight: 800
}

@media (min-width: 1050px) {
    .top-footer__title {
        max-width:500px
    }
}

@media (max-width: 1050px) {
    .top-footer__title {
        margin-bottom:30px
    }
}

@media (max-width: 767px) {
    .top-footer__title {
        margin-bottom:25px;
        font-size: 30px;
        line-height: 40px
    }
}

.top-footer__input-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px
}

@media (max-width: 600px) {
    .top-footer__input-box {
        -ms-flex-wrap:wrap;
        flex-wrap: wrap
    }
}

.top-footer__input {
    position: relative;
    height: 60px;
    background: rgba(255,255,255,0.15);
    border: 1px solid transparent;
    font-size: 16px;
    color: #fff;
    padding: 10px 30px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

@media (max-width: 1050px) {
    .top-footer__input {
        -webkit-box-flex:1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto
    }
}

.top-footer__input::-webkit-input-placeholder {
    color: #fff
}

.top-footer__input::-moz-placeholder {
    color: #fff
}

.top-footer__input:-ms-input-placeholder {
    color: #fff
}

.top-footer__input::-ms-input-placeholder {
    color: #fff
}

.top-footer__input::placeholder {
    color: #fff
}

.top-footer__input:focus {
    outline: none;
    border: 1px solid #fff
}

.top-footer__button {
    background-color: var(--secondary-color)
}

.top-footer__button::after,.top-footer__button::before {
    background-color: #fff
}

@media (max-width: 600px) {
    .top-footer__button {
        -webkit-box-flex:1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto
    }
}

@media (any-hover: hover) {
    .top-footer__button:hover {
        color:var(--secondary-color)
    }
}

.middle-footer {
    position: relative;
    padding: 110px 0px 113px 0px;
    color: #fff
}

@media (min-width: 767px) {
    .middle-footer::before {
        content:"";
        position: absolute;
        left: 0px;
        bottom: 0px;
        width: 193px;
        height: 540px;
        background-repeat: no-repeat;
        background-image: url("/images/shape/shape-8.png")
    }

    .middle-footer::after {
        content: "";
        position: absolute;
        right: 0px;
        bottom: 0px;
        width: 209px;
        height: 550px;
        background-image: url("/images/shape/shape-9.png");
        background-repeat: no-repeat
    }
}

@media (max-width: 991px) {
    .middle-footer {
        padding-bottom:83px
    }
}

@media (max-width: 767) {
    .middle-footer {
        padding:80px 0px 50px 0px
    }
}

.middle-footer__body {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
    row-gap: 20px
}

@media (max-width: 1000px) {
    .middle-footer__body {
        grid-template-columns:repeat(2, 1fr);
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px
    }
}

@media (max-width: 757px) {
    .middle-footer__body {
        grid-template-columns:1fr;
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px
    }
}

.middle-footer__logo {
    color: #f0f8ff;
    font-family: "Manrope";
    font-size: 28px;
    font-weight: 700;
    line-height: 33.6px
}

.middle-footer__description {
    font-family: "Inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px
}

.middle-footer__title {
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: 28px
}

.middle-footer__title:not(:last-child) {
    margin-bottom: 25px
}

.list-footer__item:not(:last-child) {
    margin-bottom: 10px
}

.list-footer__link {
    position: relative;
    padding-left: 15px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    display: inline-block;
    line-height: 1.5;
    font-weight: 500
}

@media (any-hover: hover) {
    .list-footer__link:hover {
        color:var(--violet-color)
    }

    .list-footer__link:hover::before {
        background: var(--violet-color)
    }
}

.list-footer__link::before {
    position: absolute;
    content: "";
    background: #fff;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    left: 0px;
    top: 11px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.bottom-footer {
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    padding: 30px 0px;
    color: #fff
}

.bottom-footer__copyright {
    position: relative;
    color: #fff;
    font-family: "Inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.bottom-footer__link {
    color: var(--violet-color)
}

@media (any-hover: hover) {
    .bottom-footer__link:hover {
        text-decoration:underline
    }
}

@font-face {
    font-family: "icomoon";
    src: url("/fonts/icomoon.eot?jade8u");
    src: url("/fonts/icomoon.eot?jade8u#iefix") format("embedded-opentype"),url("/fonts/icomoon.ttf?jade8u") format("truetype"),url("/fonts/icomoon.woff?jade8u") format("woff"),url("/fonts/icomoon.svg?jade8u#icomoon") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: block
}

[class^="icon-"],[class*=" icon-"] {
    font-family: "icomoon" !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.icon-1:before {
    content: "\e900"
}

.icon-2:before {
    content: "\e901"
}

.icon-3:before {
    content: "\e902"
}

.icon-4:before {
    content: "\e903"
}

.icon-5:before {
    content: "\e904"
}

.icon-6:before {
    content: "\e905"
}

.icon-7:before {
    content: "\e906"
}

.icon-8:before {
    content: "\e907"
}

.icon-9:before {
    content: "\e908"
}

.icon-10:before {
    content: "\e909"
}

.icon-11:before {
    content: "\e90a"
}

.icon-12:before {
    content: "\e90b"
}

.icon-13:before {
    content: "\e90c"
}

.icon-14:before {
    content: "\e90d"
}

.icon-15:before {
    content: "\e90e"
}

.icon-16:before {
    content: "\e90f"
}

.icon-17:before {
    content: "\e910"
}

.icon-18:before {
    content: "\e911"
}

.icon-19:before {
    content: "\e912"
}

.icon-20:before {
    content: "\e913"
}

.icon-21:before {
    content: "\e914"
}

.icon-22:before {
    content: "\e915"
}

.icon-23:before {
    content: "\e916"
}

.icon-24:before {
    content: "\e917"
}

.icon-25:before {
    content: "\e918"
}

.icon-26:before {
    content: "\e919"
}

.icon-27:before {
    content: "\e91a"
}

.icon-28:before {
    content: "\e91b"
}

.icon-29:before {
    content: "\e91c"
}

.icon-30:before {
    content: "\e91d"
}

.icon-31:before {
    content: "\e91e"
}

.icon-32:before {
    content: "\e91f"
}

.icon-33:before {
    content: "\e920"
}

.icon-34:before {
    content: "\e921"
}

.icon-35:before {
    content: "\e922"
}

.icon-36:before {
    content: "\e923"
}

.icon-37:before {
    content: "\e924"
}

.icon-38:before {
    content: "\e925"
}

.icon-39:before {
    content: "\e926"
}

.icon-40:before {
    content: "\e927"
}

.icon-41:before {
    content: "\e928"
}

.icon-42:before {
    content: "\e929"
}

.icon-43:before {
    content: "\e92a"
}

.icon-44:before {
    content: "\e92b"
}

.icon-45:before {
    content: "\e92c"
}

.icon-46:before {
    content: "\e92d"
}

.icon-47:before {
    content: "\e92e"
}

.article-section__title {
    position: relative;
    font-family: var(--title-font);
    font-weight: 700;
    color: var(--title-color);
    line-height: 28px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    font-size: 32px
}

@media (max-width: 767px) {
    .article-section__title {
        font-size:27px
    }
}

@media (max-width: 489px) {
    .article-section__title {
        font-size:24px
    }
}

.article-section__text {
    font-size: 16px;
    font-family: var(--text-font);
    color: var(--text-color);
    font-weight: 400;
    line-height: 28px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.article-section__sub-title {
    font-size: 28px;
    line-height: 28px;
    position: relative;
    font-family: var(--title-font);
    font-weight: 700;
    color: var(--title-color);
    margin: 0px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

@media (max-width: 767px) {
    .article-section__sub-title {
        font-size:25px
    }
}

@media (max-width: 489px) {
    .article-section__sub-title {
        font-size:22px
    }
}

.article-section__ol-list {
    padding-left: 20px;
    margin-bottom: 1rem
}

.article-section__ol-item {
    font-size: 16px;
    font-family: var(--text-font);
    color: var(--text-color);
    line-height: 28px
}

.article-section__ul-list {
    margin-bottom: 13px
}

.article-section__ul-item {
    font-size: 16px;
    line-height: 28px;
    font-family: var(--text-font);
    color: var(--text-color)
}

.testimonials {
    padding-top: 120px;
    padding-bottom: 120px
}

@media (max-width: 767px) {
    .testimonials {
        padding-top:90px;
        padding-bottom: 90px
    }
}

.testimonials__auto-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr)
}

@media (max-width: 1000px) {
    .testimonials__auto-container {
        grid-template-columns:1fr;
        row-gap: 20px
    }
}

.testimonials__right {
    grid-column: span 2
}

.left-testimonials {
    padding-right: 50px
}

.left-testimonials__label {
    color: var(--violet-color);
    color: #7f00ff;
    margin-bottom: 15px;
    font-family: "Manrope";
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    text-transform: uppercase
}

.left-testimonials__title {
    font-family: var(--title-font);
    font-size: 40px;
    color: var(--title-color);
    font-weight: 700;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    margin-bottom: 17px
}

@media (max-width: 767px) {
    .left-testimonials__title {
        font-size:34px
    }
}

@media (max-width: 489px) {
    .left-testimonials__title {
        font-size:30px
    }
}

.left-testimonials__text {
    font-family: var(--text-font);
    color: var(--text-color);
    font-weight: 400;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.left-testimonials__navigation {
    display: none
}

@media (min-width: 1200px) {
    .left-testimonials__navigation {
        display:-webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 20px;
        padding-top: 40px
    }
}

.left-testimonials__swiper-button-prev {
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 78px;
    background: #fff;
    text-align: center;
    font-size: 24px;
    color: var(--title-color);
    -webkit-box-shadow: 0px 5px 40px 20px rgba(0,0,0,0.05);
    box-shadow: 0px 5px 40px 20px rgba(0,0,0,0.05);
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    cursor: pointer
}

@media (any-hover: hover) {
    .left-testimonials__swiper-button-prev:hover {
        background-color:var(--violet-color)
    }

    .left-testimonials__swiper-button-prev:hover span {
        color: #fff
    }
}

.left-testimonials__swiper-button-next {
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 78px;
    background: #fff;
    text-align: center;
    font-size: 24px;
    color: var(--title-color);
    -webkit-box-shadow: 0px 5px 40px 20px rgba(0,0,0,0.05);
    box-shadow: 0px 5px 40px 20px rgba(0,0,0,0.05);
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    cursor: pointer
}

@media (any-hover: hover) {
    .left-testimonials__swiper-button-next:hover {
        background-color:var(--violet-color)
    }

    .left-testimonials__swiper-button-next:hover span {
        color: #fff
    }
}

.right-testimonials__swiper-wrapper {
    padding: 12px
}

.right-testimonials__swiper-slide {
    background-color: #fff;
    -webkit-box-shadow: 0px 10px 40px 0px rgba(0,0,0,0.05);
    box-shadow: 0px 10px 40px 0px rgba(0,0,0,0.05);
    padding: 40px 40px 40px 40px;
    margin: 10px
}

.right-testimonials__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px
}

.right-testimonials__image img {
    border-radius: 50%
}

.right-testimonials__title {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: var(--title-color);
    margin: 0px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.right-testimonials__position {
    font-size: 16px;
    line-height: 22px;
    color: #676767
}

.right-testimonials__rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
    margin-bottom: 15px
}

.right-testimonials__rating i {
    color: #ffb13d
}

.right-testimonials__text {
    font-family: var(--text-font);
    color: var(--text-color);
    font-weight: 400;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    line-height: 28px
}

.contacts-wrap {
    padding-top: 150px;
    padding-bottom: 120px
}

@media (max-width: 767.98px) {
    .contacts-wrap {
        padding-top:90px;
        padding-bottom: 70px
    }
}

.contact-us__block-header {
    text-align: center;
    margin-bottom: 70px
}

.contact-us__label {
    color: #7f00ff;
    text-align: center;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    text-transform: uppercase;
    margin-bottom: 15px
}

.contact-us__title {
    color: #141417;
    font-family: Manrope;
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: 52px
}

@media (max-width: 767px) {
    .contact-us__title {
        font-size:36px
    }
}

@media (max-width: 489px) {
    .contact-us__title {
        font-size:32px
    }
}

.our-contacts {
    margin-bottom: 90px
}

.our-contacts__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 30px
}

@media (max-width: 867px) {
    .our-contacts__items {
        grid-template-columns:repeat(2, 1fr)
    }
}

@media (max-width: 589px) {
    .our-contacts__items {
        grid-template-columns:repeat(1, 1fr)
    }
}

.our-contacts__img {
    margin-bottom: 5px
}

.our-contacts__img i {
    font-size: 22px
}

.our-contacts__sub-title {
    font-family: var(--title-font);
    font-weight: 700;
    color: var(--title-color);
    margin: 0px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    font-size: 32px
}

@media (max-width: 767px) {
    .our-contacts__sub-title {
        font-size:28px
    }
}

@media (max-width: 567px) {
    .our-contacts__sub-title {
        font-size:26px
    }
}

.our-contacts__text {
    font-family: var(--text-font);
    color: var(--text-color);
    font-weight: 400;
    margin: 0px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    line-height: 28px
}

.our-contacts__text a {
    color: var(--bs-link-color)
}

.map-section {
    text-align: left
}

.map-section iframe {
    width: 70vw;
    height: 50vh
}

:root {
    --theme-color: #eb292c;
    --secondary-color: #0a0f20;
    --pink-color: #ffc0cb;
    --violet-color: #7f00ff;
    --crimson-color: #dc143c;
    --orange-color: #ffa500;
    --text-color: #676767;
    --title-color: #141417;
    --text-font: "Inter", sans-serif;
    --title-font: "Manrope", sans-serif;
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-black: #000;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-primary-rgb: 13, 110, 253;
    --bs-secondary-rgb: 108, 117, 125;
    --bs-success-rgb: 25, 135, 84;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 255, 193, 7;
    --bs-danger-rgb: 220, 53, 69;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 33, 37, 41;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-color-rgb: 33, 37, 41;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #212529;
    --bs-body-bg: #fff;
    --bs-border-width: 1px;
    --bs-border-style: solid;
    --bs-border-color: #dee2e6;
    --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
    --bs-border-radius: 0.375rem;
    --bs-border-radius-sm: 0.25rem;
    --bs-border-radius-lg: 0.5rem;
    --bs-border-radius-xl: 1rem;
    --bs-border-radius-2xl: 2rem;
    --bs-border-radius-pill: 50rem;
    --bs-link-color: #0d6efd;
    --bs-link-hover-color: #0a58ca;
    --bs-code-color: #d63384;
    --bs-highlight-bg: #fff3cd
}

body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: var(--text-font)
}

h1,h2,h3,h4,h5,h6,button {
    font-family: var(--title-font)
}

.page-title {
    text-align: center;
    padding-top: 160px;
    font-family: var(--title-font);
    font-weight: 700;
    color: var(--title-color);
    font-size: 40px;
    margin-bottom: 25px
}

@media (max-width: 767px) {
    .page-title {
        font-size:30px;
        padding-top: 135px
    }
}

@media (max-width: 489px) {
    .page-title {
        font-size:27px;
        padding-top: 125px
    }
}

.scroll-to-top {
    position: fixed;
    right: 0px;
    bottom: 100px;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    z-index: 99
}

@media (max-width: 767px) {
    .scroll-to-top {
        right:-25px
    }
}

.scroll-to-top .visible {
    visibility: visible !important;
    opacity: 1 !important
}

.scroll-to-top .scroll-top-inner {
    opacity: 0;
    visibility: hidden
}

.scroll-to-top .scroll-top-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    -o-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s
}

.scroll-to-top .scroll-bar {
    width: 50px;
    height: 2px;
    margin-right: 10px;
    position: relative
}

.scroll-to-top .scroll-bar:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #f4244f;
    opacity: 0.3
}

.scroll-to-top .scroll-bar .bar-inner {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background-color: #383b43
}

.scroll-to-top .scroll-bar-text {
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    color: var(--violet-color);
    text-shadow: 0px 1px 0px #fff;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.scroll-to-top .scroll-bar-text:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1)
}

li {
    list-style: none
}

a {
    color: inherit
}

a:link,a:visited {
    text-decoration: none
}

a:hover {
    text-decoration: none
}

img {
    vertical-align: top
}

h1,h2,h3,h4,h5,h6 {
    font-weight: inherit;
    font-size: inherit
}

input,button,textarea {
    font-family: inherit;
    font-size: inherit
}

button {
    cursor: pointer;
    color: inherit;
    background-color: inherit
}

body {
    line-height: 1;
    overflow-x: hidden
}

.large-container {
    max-width: 1710px;
    padding: 0px 15px;
    margin: 0 auto
}

.auto-container {
    position: static;
    max-width: 1320px;
    padding: 0px 15px;
    margin: 0 auto
}

.widget1 {
    max-width: 450px;
    width: 100%;
    height: 550px;
    -webkit-animation: scrollToTop 10s linear infinite;
    animation: scrollToTop 10s linear infinite
}

@media (max-width: 1000px) {
    .widget1 {
        max-width:600px;
        margin: 0 auto
    }
}

@-webkit-keyframes scrollToTop {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    to {
        -webkit-transform: translateY(-320px);
        transform: translateY(-320px)
    }
}

@keyframes scrollToTop {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    to {
        -webkit-transform: translateY(-320px);
        transform: translateY(-320px)
    }
}

.widget1__row {
    margin: 36px 0;
    border-radius: 12px;
    background: #28292c;
    -webkit-box-shadow: 0px 2px 10px 0px rgba(28,28,28,0.08);
    box-shadow: 0px 2px 10px 0px rgba(28,28,28,0.08);
    padding: 18px 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.widget1__row:first-child {
    margin: 0 0 36px
}

.widget1__name {
    width: 200px
}

.widget1__name-logotypes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 50px;
    width: 100%;
    place-items: center;
    margin: 0 0 5px
}

.widget1__name-logotype {
    display: inline-block;
    width: 20px;
    height: 20px
}

.widget1__name-title {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    line-height: 25.6px
}

.widget1__buy {
    margin: 0 50px 0 0
}

.widget1__buy,.widget1__sell {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    width: 100px
}

.widget1__buy-title,.widget1__sell-title,.widget1__buy-price,.widget1__sell-price {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 25.6px
}

.widget1__buy-price,.widget1__sell-price {
    position: relative
}

.widget1__buy-price.red,.widget1__sell-price.red {
    color: #f24725
}

.widget1__buy-price.red::before,.widget1__sell-price.red::before {
    content: '▼';
    position: absolute;
    top: 0;
    left: -15px;
    font-size: 12px
}

.widget1__buy-price.red::after,.widget1__sell-price.red::after {
    content: '▼';
    position: absolute;
    top: 0;
    right: -15px;
    font-size: 12px
}

.widget1__buy-price.green,.widget1__sell-price.green {
    color: #32cf8e
}

.widget1__buy-price.green::before,.widget1__sell-price.green::before {
    content: '▲';
    position: absolute;
    top: 0;
    left: -15px;
    font-size: 12px
}

.widget1__buy-price.green::after,.widget1__sell-price.green::after {
    content: '▲';
    position: absolute;
    top: 0;
    right: -15px;
    font-size: 12px
}

.widget2 {
    background: #28292c;
    padding: 0 20px;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-shadow: 0 2px 10px 0 rgba(28,28,28,0.08);
    box-shadow: 0 2px 10px 0 rgba(28,28,28,0.08)
}

@media (max-width: 1200px) {
    .widget2 {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

@media (max-width: 600px) {
    .widget2 {
        padding:0
    }
}

.widget2__column {
    padding: 40px 20px;
    position: relative;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%
}

.widget2__column--1::after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    width: 2px;
    height: 80%;
    content: '';
    background: #212025
}

@media (max-width: 1200px) {
    .widget2__column--1 {
        padding:40px 20px 0
    }
}

@media (max-width: 600px) {
    .widget2__column--1 {
        padding:20px 5px 0
    }
}

@media (max-width: 1200px) {
    .widget2__column--2 {
        padding:0 5px 20px
    }
}

@media (max-width: 600px) {
    .widget2__column--2 {
        padding:0 5px 20px
    }
}

.widget2__topbar {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-gap: 10px;
    place-items: center;
    margin: 0 0 25px
}

@media (max-width: 1200px) {
    .widget2__topbar--2 {
        display:none
    }
}

.widget2__topbar-column-title {
    color: #fff;
    font-size: 16px;
    line-height: 25.6px;
    text-align: center;
    font-weight: 400
}

.widget2__column-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-gap: 10px;
    place-items: center;
    margin: 0 0 10px
}

.widget2__column-row-item {
    background: #212025;
    font-size: 16px;
    font-weight: 500;
    height: 53px;
    line-height: 25.6px;
    text-align: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    color: #fff;
    position: relative
}

@media (max-width: 600px) {
    .widget2__column-row-item {
        height:70px
    }
}

@media (max-width: 600px) {
    .widget2__column-row-item--1 {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.widget2__column-row-item--2.red,.widget2__column-row-item--3.red {
    color: #f24725
}

.widget2__column-row-item--2.red::before,.widget2__column-row-item--2.red::after,.widget2__column-row-item--3.red::before,.widget2__column-row-item--3.red::after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 12px
}

@media (max-width: 600px) {
    .widget2__column-row-item--2.red::before,.widget2__column-row-item--2.red::after,.widget2__column-row-item--3.red::before,.widget2__column-row-item--3.red::after {
        display:none
    }
}

.widget2__column-row-item--2.red::before,.widget2__column-row-item--3.red::before {
    content: '▼';
    left: 10px
}

.widget2__column-row-item--2.red::after,.widget2__column-row-item--3.red::after {
    content: '▼';
    right: 10px
}

.widget2__column-row-item--2.green,.widget2__column-row-item--3.green {
    color: #32cf8e
}

.widget2__column-row-item--2.green::before,.widget2__column-row-item--2.green::after,.widget2__column-row-item--3.green::before,.widget2__column-row-item--3.green::after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 12px
}

@media (max-width: 600px) {
    .widget2__column-row-item--2.green::before,.widget2__column-row-item--2.green::after,.widget2__column-row-item--3.green::before,.widget2__column-row-item--3.green::after {
        display:none
    }
}

.widget2__column-row-item--2.green::before,.widget2__column-row-item--3.green::before {
    content: '▲';
    left: 10px
}

.widget2__column-row-item--2.green::after,.widget2__column-row-item--3.green::after {
    content: '▲';
    right: 10px
}

.widget2__column-row-item-image-wrapper {
    margin: 0 10px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media (max-width: 600px) {
    .widget2__column-row-item-image-wrapper {
        margin:0 0 5px
    }
}

.widget2__column-row-item-image-wrapper img:first-child {
    margin: 0 5px 0 0
}

.widget2__column-row-item-image {
    display: inline-block;
    width: 20px;
    height: 20px
}

.widget2__column-row-item-text {
    display: inline-block;
    margin: 2px 0 0
}

.swiper {
    width: 100%;
    padding: 0 15px;
    position: relative !important
}

.swiper-wrapper {
    height: auto !important
}

.swiper-pagination {
    margin-top: 60px;
    position: relative !important;
    width: 100% !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 16px;
    z-index: 100 !important
}

.swiper-pagination-label {
    -webkit-transition: font-weight 0.5s;
    -o-transition: font-weight 0.5s;
    transition: font-weight 0.5s;
    border-radius: 40px;
    padding: 15px 40px;
    width: 260px;
    border: 3px solid transparent;
    cursor: pointer;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    text-align: center;
    color: var(--color-black-grey);
    text-transform: none
}

@media (max-width: 767px) {
    .swiper-pagination-label {
        margin:0 3px;
        padding: 8px;
        font-size: 14px
    }
}

.swiper-pagination-label.active {
    font-weight: 600;
    font-size: 20px;
    padding: 15px 10px;
    border: 3px solid #fff;
    text-transform: uppercase
}

@media (max-width: 767px) {
    .swiper-pagination-label.active {
        margin:0 3px;
        padding: 8px;
        font-size: 14px
    }
}

.swiper-pagination-label:hover {
    -webkit-transition: font-size 0.3s;
    -o-transition: font-size 0.3s;
    transition: font-size 0.3s;
    text-transform: uppercase;
    font-size: 20px;
    border: 3px solid #fff;
    padding: 15px 10px
}

@media (max-width: 767px) {
    .swiper-pagination-label:hover {
        margin:0 3px;
        padding: 8px;
        font-size: 14px
    }
}

#particles-js {
    background: #212025;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

#particles-js-2 {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.iti {
    width: 100%;
    z-index: 10;
    position: relative
}

.lang-switcher {
    margin: 0 0 0 32px
}

@media (max-width: 1100px) {
    .lang-switcher {
        margin:0 0 100px
    }
}

.lang-switcher__active-lang {
    position: relative
}

.lang-switcher__active-lang::after {
    position: absolute;
    right: 51%;
    bottom: -8px;
    left: 51%;
    height: 2px;
    content: '';
    background: #00e3e9;
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: left, right;
    -o-transition-property: left, right;
    transition-property: left, right
}

.lang-switcher__active-lang:hover .lang-switcher__other-langs {
    max-height: 200px
}

.lang-switcher__active-lang:hover::after {
    right: 0;
    left: 0
}

.lang-switcher__langs-item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.lang-switcher__langs-item span {
    display: inline-block;
    color: #fff;
    line-height: 25.6px;
    margin: 0 0 0 5px
}

.lang-switcher__other-langs {
    position: absolute;
    overflow-y: hidden;
    top: 180%;
    left: 50%;
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
    width: 120%;
    background: #28292c;
    border-radius: 10px;
    -webkit-box-shadow: 0 2px 10px 0 rgba(28,28,28,0.08);
    box-shadow: 0 2px 10px 0 rgba(28,28,28,0.08);
    -webkit-transition: max-height 0.4s cubic-bezier(0.4, 0.25, 0.3, 1);
    -o-transition: max-height 0.4s cubic-bezier(0.4, 0.25, 0.3, 1);
    transition: max-height 0.4s cubic-bezier(0.4, 0.25, 0.3, 1);
    max-height: 0
}

.lang-switcher__other-langs a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px 24px;
    position: relative;
    z-index: 1000
}

.lang-switcher__other-langs a:hover span {
    color: #00e3e9
}

.lang-switcher__other-langs a:hover::after {
    bottom: 50%;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(0,227,233,0.2);
    -webkit-transition: width 0.4s ease-out, background 0.15s ease-in 0.2s, height 0.15s ease-in 0.2s, bottom 0.15s ease-in 0.2s;
    -o-transition: width 0.4s ease-out, background 0.15s ease-in 0.2s, height 0.15s ease-in 0.2s, bottom 0.15s ease-in 0.2s;
    transition: width 0.4s ease-out, background 0.15s ease-in 0.2s, height 0.15s ease-in 0.2s, bottom 0.15s ease-in 0.2s
}

.lang-switcher__other-langs a::after {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 0;
    content: '';
    background: #00e3e9;
    -webkit-transition: height 0.15s ease-in, bottom 0.15s ease-in, background 0.15s ease-out 0.15s, width 0.4s ease-out 0.15s;
    -o-transition: height 0.15s ease-in, bottom 0.15s ease-in, background 0.15s ease-out 0.15s, width 0.4s ease-out 0.15s;
    transition: height 0.15s ease-in, bottom 0.15s ease-in, background 0.15s ease-out 0.15s, width 0.4s ease-out 0.15s;
    -webkit-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%)
}

.lang-switcher__other-langs span {
    display: inline-block;
    color: #fff;
    line-height: 25.6px;
    margin: 0 0 0 15px;
    width: 35px;
    -webkit-transition: all 0.15s cubic-bezier(0.4, 0.25, 0.3, 1);
    -o-transition: all 0.15s cubic-bezier(0.4, 0.25, 0.3, 1);
    transition: all 0.15s cubic-bezier(0.4, 0.25, 0.3, 1)
}

.news-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 30px;
    margin-top: 30px
}

.news-list__item {
    width: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 10px
}

@media (max-width: 1230px) {
    .news-list__item {
        width:45%
    }
}

@media (max-width: 820px) {
    .news-list__item {
        width:90%
    }
}

.news-list__item-left {
    margin-right: 10px
}

.news-list__item-left img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 80px;
    height: 80px;
    border-radius: 10px
}

.news-list__item-right {
    -webkit-box-flex: 3;
    -ms-flex: 3;
    flex: 3
}

.news-list__item-right a {
    display: block;
    color: #f2f2f2;
    font-size: 17px;
    line-height: 20px;
    font-weight: bold
}

.news-list__item-right span {
    color: #e5e5e5;
    opacity: 0.8;
    font-size: 12px;
    line-height: 15px
}

.tradingview-widget-container {
    position: fixed;
    bottom: 0;
    z-index: 1000;
    background-color: var(--color-black-grey)
}

.header {
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0px;
    z-index: 999;
    width: 100%;
    background-color: #fff;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease
}

.header-top {
    position: relative;
    width: 100%;
    background: #212226;
    padding: 16px 0px;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s
}

._header-scroll .header-top {
    padding: 0;
    opacity: 0;
    visibility: hidden;
    height: 0
}

@media (max-width: 479.98px) {
    .header-top {
        padding:10px 0px
    }
}

.header-top .top-inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 560px
}

@media (max-width: 1460px) {
    .header-top .top-inner {
        padding-left:0px
    }
}

.header-top .info-list li a {
    position: relative;
    display: inline-block;
    color: #fff
}

.header-top .info-list li i {
    position: absolute;
    left: 0px;
    top: 5px;
    font-size: 18px
}

.header-top .info-list li:last-child {
    margin: 0px !important
}

.clearfix::after {
    display: block;
    clear: both;
    content: ""
}

.icon-1:before {
    content: "\e900";
    color: var(--violet-color)
}

.top-inner__email {
    color: #fff;
    font-family: "Inter";
    font-weight: 300;
    padding-left: 32px
}

@media (max-width: 1460px) {
    .top-inner__email {
        padding-left:15px
    }
}

@media (max-width: 487px) {
    .top-inner__email {
        padding-left:10px
    }
}

.header .outer-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
    min-height: 80px
}

.logo-box {
    position: relative;
    padding: 41px 0px 41px 0px;
    margin-top: -60px;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
    z-index: 1
}

.logo-box img {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    margin-left: -20px
}

@media (max-width: 1000px) {
    .logo-box img {
        -webkit-transform:scale(0.7);
        -ms-transform: scale(0.7);
        transform: scale(0.7);
        margin-left: -70px
    }
}

@media (max-width: 930px) {
    .logo-box img {
        -webkit-transform:scale(0.6);
        -ms-transform: scale(0.6);
        transform: scale(0.6);
        margin-left: -95px
    }
}

@media (max-width: 700px) {
    .logo-box img {
        -webkit-transform:scale(0.4);
        -ms-transform: scale(0.4);
        transform: scale(0.4);
        margin-left: -140px
    }
}

@media (max-width: 450px) {
    .logo-box img {
        margin-left:-150px
    }
}

._header-scroll .logo-box {
    padding: 15px 40px 30px 10px;
    margin-top: 0px
}

@media (max-width: 1000px) {
    ._header-scroll .logo-box {
        padding:15px 40px 15px 0px
    }
}

@media (max-width: 930px) {
    ._header-scroll .logo-box {
        padding:15px 40px 15px 0px
    }
}

@media (max-width: 700px) {
    ._header-scroll .logo-box {
        padding:10px 40px 10px 0px
    }
}

@media (max-width: 450px) {
    ._header-scroll .logo-box {
        padding:7px 40px 7px 0px
    }
}

.logo-box h5 {
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s
}

._header-scroll .logo-box h5 {
    font-size: 24px
}

@media (max-width: 1460px) {
    .logo-box {
        margin-top:-0px;
        padding: 8px 10px 9px
    }
}

@media (max-width: 930px) {
    .logo-box {
        width:320px;
        padding: 8px 15px 8px 0px
    }
}

@media (max-width: 700px) {
    .logo-box {
        padding:8px 0px;
        width: 235px
    }
}

@media (max-width: 450px) {
    .logo-box {
        width:225px;
        padding: 8px 0px
    }
}

@media (min-width: 1460px) {
    .header .outer-box .logo-box .shape {
        position:absolute;
        top: 0px;
        right: -24px;
        width: 24px;
        height: 100%;
        background: var(--violet-color);
        -webkit-clip-path: polygon(100% 0%, 0% 50%, 100% 100%, 0 100%, 0 50%, 0 0);
        clip-path: polygon(100% 0%, 0% 50%, 100% 100%, 0 100%, 0 50%, 0 0)
    }

    .header .outer-box .logo-box:after {
        position: absolute;
        content: "";
        top: 0px;
        right: -32px;
        width: 32px;
        height: 100%;
        background: var(--violet-color);
        -webkit-clip-path: polygon(100% 0%, 25% 50%, 100% 100%, 0 100%, 0 50%, 0 0);
        clip-path: polygon(100% 0%, 25% 50%, 100% 100%, 0 100%, 0 50%, 0 0);
        opacity: 0.15
    }
}

.header .outer-box .logo-box:before {
    position: absolute;
    content: "";
    background: var(--violet-color);
    width: 5000px;
    height: 100%;
    top: 0px;
    right: 0px;
    z-index: -1;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s
}

.menu__logo {
    display: none
}

@media (max-width: 1460px) {
    .menu__logo {
        position:relative;
        font-size: 25px;
        font-weight: 700;
        color: aliceblue;
        margin: 0px;
        -webkit-transition: all 500ms ease;
        -o-transition: all 500ms ease;
        transition: all 500ms ease;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 5px;
        border-bottom: 1px solid rgba(255,255,255,0.1)
    }
}

@media (max-width: 1460px) {
    .menu__logo img {
        max-width:100%;
        padding-right: 45px;
        position: relative;
        z-index: 5
    }
}

.menu__logo--close-btn {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 18px;
    z-index: 5
}

.menu__logo--close-btn::before,.menu__logo--close-btn::after {
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: white
}

.menu__logo--close-btn::before {
    top: calc(50% - 1px);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.menu__logo--close-btn::after {
    bottom: calc(50% - 1px);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

@media (max-width: 1460px) {
    .menu__body {
        position:fixed;
        z-index: 10;
        width: 300px;
        height: 100vh;
        right: -100%;
        top: 0;
        overflow: auto;
        -webkit-transition: right 0.3s;
        -o-transition: right 0.3s;
        transition: right 0.3s;
        background: #141417
    }

    .menu__body::before {
        content: "";
        position: fixed;
        right: -100%;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        opacity: 0.3;
        -webkit-transition: all 900ms ease;
        -o-transition: all 900ms ease;
        transition: all 900ms ease;
        background-color: #000;
        pointer-events: none;
        -webkit-transition: right 0.2s;
        -o-transition: right 0.2s;
        transition: right 0.2s
    }

    .menu-open .menu__body {
        right: 0
    }

    .menu-open .menu__body::before {
        right: 0
    }
}

@media (max-width: 500px) {
    .menu__body {
        width:100%
    }
}

@media (max-width: 1460px) {
    .menu__list {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 20px
    }
}

.menu__item {
    font-size: 20px
}

@media (max-width: 1460px) {
    .menu__item {
        border-bottom:1px solid rgba(255,255,255,0.1)
    }
}

.icon-menu {
    display: none
}

@media (max-width: 1460px) {
    .icon-menu {
        display:block;
        position: relative;
        width: 50px;
        height: 36px;
        z-index: 5;
        background-color: black;
        padding: 11px
    }
}

@media (max-width: 1460px) and (any-hover: none) {
    .icon-menu {
        cursor:default
    }
}

@media (max-width: 1460px) {
    .icon-menu span,.icon-menu::before,.icon-menu::after {
        content:"";
        -webkit-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        right: 7px;
        position: absolute;
        width: 70%;
        height: 2px;
        background-color: white
    }

    .icon-menu::before {
        top: 8px
    }

    .icon-menu::after {
        bottom: 8px
    }

    .icon-menu span {
        top: calc(50% - 1px)
    }
}

.header--menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media (min-width: 1460px) {
    .menu__list {
        display:-webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px;
        row-gap: 5px
    }
}

@media (min-width: 1460px) and (max-width: 1460px) {
    .menu__list {
        -webkit-column-gap:20px;
        -moz-column-gap: 20px;
        column-gap: 20px
    }
}

@media (min-width: 1460px) and (max-width: 1100px) {
    .menu__list {
        -webkit-column-gap:10px;
        -moz-column-gap: 10px;
        column-gap: 10px
    }
}

.menu__link {
    position: relative;
    display: block;
    cursor: pointer;
    font-size: 18px;
    line-height: 26px;
    padding-top: 37px;
    padding-bottom: 37px;
    font-weight: 500;
    opacity: 1;
    color: #141417;
    z-index: 1;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

@media (any-hover: hover) {
    .menu__link:hover {
        color:var(--violet-color)
    }
}

@media (max-width: 1460px) {
    .menu__link {
        color:white;
        padding: 10px 25px;
        font-size: 15px;
        text-transform: uppercase
    }
}

@media (any-hover: hover) {
    .menu__item--first:hover .sub-menu {
        opacity:1;
        visibility: visible;
        pointer-events: all
    }
}

@media (max-width: 1460px) {
    .sub-menu-open-1 .menu__item--first .menu-icn-arrow {
        -webkit-transform:rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg)
    }
}

.menu .menu__item--arrow .menu__link {
    padding-right: 20px
}

.menu .menu-icn-arrow {
    position: absolute;
    top: 37px;
    right: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s
}

@media (max-width: 1460px) {
    .menu .menu-icn-arrow {
        top:10px;
        right: 15px;
        z-index: 5
    }
}

.menu .menu-icn-arrow path {
    fill: black
}

@media (max-width: 1460px) {
    .menu .menu-icn-arrow path {
        fill:white
    }
}

@media (any-hover: hover) {
    .menu__item--second:hover .sub-menu {
        opacity:1;
        visibility: visible;
        pointer-events: all
    }
}

@media (max-width: 1460px) {
    .sub-menu-open-2 .menu__item--second .menu-icn-arrow {
        -webkit-transform:rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg)
    }
}

.menu__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    padding-left: 50px
}

@media (max-width: 1460px) {
    .menu__buttons {
        padding-left:40px
    }
}

@media (max-width: 1100px) {
    .menu__buttons {
        padding-left:30px
    }
}

@media (max-width: 767.98px) {
    .menu__buttons {
        display:none
    }
}

.menu__button {
    padding: 13px 30px
}

@media (min-width: 1460px) {
    .menu .sub-menu {
        opacity:0;
        visibility: hidden;
        position: absolute;
        left: inherit;
        top: 100%;
        width: 230px;
        pointer-events: none;
        z-index: 100;
        background: var(--secondary-color);
        border-radius: 0px;
        transition: all 500ms ease;
        -moz-transition: all 500ms ease;
        -webkit-transition: all 500ms ease;
        -ms-transition: all 500ms ease;
        -o-transition: all 500ms ease
    }
}

@media (max-width: 1460px) {
    .menu .sub-menu {
        opacity:0;
        visibility: hidden;
        display: none;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s
    }
}

.menu .sub-menu__item:not(:last-child) {
    border-bottom: 1px solid rgba(255,255,255,0.1)
}

.menu .sub-menu__link {
    position: relative;
    display: block;
    padding: 10px 25px;
    line-height: 24px;
    font-weight: 600;
    font-size: 16px;
    text-transform: capitalize;
    text-align: left;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    color: white
}

@media (any-hover: hover) {
    .menu .sub-menu__link:hover {
        padding-left:35px;
        color: var(--violet-color)
    }
}

@media (max-width: 1460px) {
    .menu .sub-menu__link {
        padding:10px 45px
    }
}

.sub-menu-open-1 .menu .sub-menu--1 {
    opacity: 1;
    visibility: visible;
    display: block
}

.sub-menu-open-2 .menu .sub-menu--2 {
    opacity: 1;
    visibility: visible;
    display: block
}

.menu .button {
    background-color: var(--violet-color);
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    position: relative;
    color: #fff;
    text-align: center;
    padding: 13px 30px;
    z-index: 1;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.menu .button::after,.menu .button::before {
    content: "";
    position: absolute;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--secondary-color);
    -webkit-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -o-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: scale(0) rotate(0);
    -ms-transform: scale(0) rotate(0);
    transform: scale(0) rotate(0);
    z-index: -1
}

.menu .button:hover:before {
    border-radius: 0;
    -webkit-transform: scale(1) rotate(-180deg);
    -ms-transform: scale(1) rotate(-180deg);
    transform: scale(1) rotate(-180deg)
}

.menu .button:hover:after {
    border-radius: 0;
    -webkit-transform: scale(1) rotate(180deg);
    -ms-transform: scale(1) rotate(180deg);
    transform: scale(1) rotate(180deg)
}

.menu .button--login {
    color: #0a0f20;
    border: 1px solid #0a0f20;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-color: #fff
}

@media (any-hover: hover) {
    .menu .button--login:hover {
        color:white
    }
}

.contact-info {
    color: #ffffff;
    position: relative;
    z-index: 5
}

.contact-info__title {
    font-size: 20px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px
}

.contact-info__list {
    position: relative;
    z-index: 5
}

.contact-info__item {
    position: relative;
    z-index: 5;
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.5
}

.contact-info__item:not(:last-child) {
    margin-bottom: 8px
}

.menu__contact-info {
    display: none
}

@media (max-width: 1460px) {
    .menu__contact-info {
        display:block;
        padding: 120px 30px 20px 30px
    }
}

.menu__login-button {
    display: none
}

@media (max-width: 1460px) {
    .menu__login-button {
        margin-top:20px;
        display: block;
        text-align: center;
        padding: 10px 20px;
        background-color: #3498db;
        color: #fff;
        text-decoration: none;
        border-radius: 5px;
        -webkit-transition: background-color 0.3s ease;
        -o-transition: background-color 0.3s ease;
        transition: background-color 0.3s ease;
        margin: 20px auto 0
    }
}

@media (max-width: 1460px) and (any-hover: hover) {
    .menu__login-button:hover {
        background-color:#2980b9
    }
}

.login-box-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.footer {
    background: var(--secondary-color)
}

.footer__top {
    background-color: var(--violet-color)
}

.top-footer {
    position: relative
}

.top-footer::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-image: url("/images/shape/shape-5.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center
}

.top-footer__auto-container {
    padding-top: 55px;
    padding-bottom: 55px
}

@media (min-width: 1050px) {
    .top-footer__auto-container {
        display:-webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 10px
    }
}

@media (max-width: 767px) {
    .top-footer__auto-container {
        padding-top:35px;
        padding-bottom: 35px
    }
}

.top-footer__title {
    position: relative;
    display: block;
    font-size: 40px;
    line-height: 52px;
    color: #fff;
    font-weight: 800
}

@media (min-width: 1050px) {
    .top-footer__title {
        max-width:500px
    }
}

@media (max-width: 1050px) {
    .top-footer__title {
        margin-bottom:30px
    }
}

@media (max-width: 767px) {
    .top-footer__title {
        margin-bottom:25px;
        font-size: 30px;
        line-height: 40px
    }
}

.top-footer__input-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px
}

@media (max-width: 600px) {
    .top-footer__input-box {
        -ms-flex-wrap:wrap;
        flex-wrap: wrap
    }
}

.top-footer__input {
    position: relative;
    height: 60px;
    background: rgba(255,255,255,0.15);
    border: 1px solid transparent;
    font-size: 16px;
    color: #fff;
    padding: 10px 30px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

@media (max-width: 1050px) {
    .top-footer__input {
        -webkit-box-flex:1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto
    }
}

.top-footer__input::-webkit-input-placeholder {
    color: #fff
}

.top-footer__input::-moz-placeholder {
    color: #fff
}

.top-footer__input:-ms-input-placeholder {
    color: #fff
}

.top-footer__input::-ms-input-placeholder {
    color: #fff
}

.top-footer__input::placeholder {
    color: #fff
}

.top-footer__input:focus {
    outline: none;
    border: 1px solid #fff
}

.top-footer__button {
    background-color: var(--secondary-color)
}

.top-footer__button::after,.top-footer__button::before {
    background-color: #fff
}

@media (max-width: 600px) {
    .top-footer__button {
        -webkit-box-flex:1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto
    }
}

@media (any-hover: hover) {
    .top-footer__button:hover {
        color:var(--secondary-color)
    }
}

.middle-footer {
    position: relative;
    padding: 110px 0px 113px 0px;
    color: #fff
}

@media (min-width: 767px) {
    .middle-footer::before {
        content:"";
        position: absolute;
        left: 0px;
        bottom: 0px;
        width: 193px;
        height: 540px;
        background-repeat: no-repeat;
        background-image: url("/images/shape/shape-8.png")
    }

    .middle-footer::after {
        content: "";
        position: absolute;
        right: 0px;
        bottom: 0px;
        width: 209px;
        height: 550px;
        background-image: url("/images/shape/shape-9.png");
        background-repeat: no-repeat
    }
}

@media (max-width: 991px) {
    .middle-footer {
        padding-bottom:83px
    }
}

@media (max-width: 767) {
    .middle-footer {
        padding:80px 0px 50px 0px
    }
}

.middle-footer__body {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
    row-gap: 20px
}

@media (max-width: 1000px) {
    .middle-footer__body {
        grid-template-columns:repeat(2, 1fr);
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px
    }
}

@media (max-width: 757px) {
    .middle-footer__body {
        grid-template-columns:1fr;
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px
    }
}

.middle-footer__logo {
    color: #f0f8ff;
    font-family: "Manrope";
    font-size: 28px;
    font-weight: 700;
    line-height: 33.6px
}

.middle-footer__description {
    font-family: "Inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px
}

.middle-footer__title {
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: 28px
}

.middle-footer__title:not(:last-child) {
    margin-bottom: 25px
}

.list-footer__item:not(:last-child) {
    margin-bottom: 10px
}

.list-footer__link {
    position: relative;
    padding-left: 15px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    display: inline-block;
    line-height: 1.5;
    font-weight: 500
}

@media (any-hover: hover) {
    .list-footer__link:hover {
        color:var(--violet-color)
    }

    .list-footer__link:hover::before {
        background: var(--violet-color)
    }
}

.list-footer__link::before {
    position: absolute;
    content: "";
    background: #fff;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    left: 0px;
    top: 11px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.bottom-footer {
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    padding: 30px 0px;
    color: #fff
}

.bottom-footer__copyright {
    position: relative;
    color: #fff;
    font-family: "Inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.bottom-footer__link {
    color: var(--violet-color)
}

@media (any-hover: hover) {
    .bottom-footer__link:hover {
        text-decoration:underline
    }
}

.section-1__slider {
    width: 100%;
    height: 100vh
}

.section-1__swiper-slide {
    padding-top: 100px;
    width: 100%;
    height: 100vh
}

.section-1__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 8000ms linear;
    -o-transition: all 8000ms linear;
    transition: all 8000ms linear
}

.section-1__image::before {
    content: "";
    position: absolute;
    background: #000;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    opacity: 0.5;
    z-index: 1;
    pointer-events: none
}

.section-1__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.section-1 .swiper-slide-active .section-1__image {
    -webkit-transform: scale(1.25);
    -ms-transform: scale(1.25);
    transform: scale(1.25)
}

.section-1__content-box {
    position: relative;
    z-index: 10;
    min-height: 70vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.section-1__title {
    font-size: 70px;
    line-height: 74px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
    opacity: 0;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
    -webkit-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    max-width: 540px
}

@media (max-width: 767px) {
    .section-1__title {
        font-size:40px;
        line-height: 50px;
        margin-bottom: 20px
    }
}

.section-1__title span {
    color: var(--violet-color)
}

.section-1 .swiper-slide-active .section-1__title {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 700ms;
    -o-transition-delay: 700ms;
    transition-delay: 700ms
}

.section-1__text {
    font-size: 18px;
    line-height: 32px;
    color: #fff;
    opacity: 0;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
    -webkit-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease
}

@media (max-width: 767px) {
    .section-1__text {
        font-size:16px
    }

    .section-1__text:not(:last-child) {
        margin-bottom: 22px
    }
}

.swiper-slide-active .section-1__text {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms
}

.section-1__text:not(:last-child) {
    margin-bottom: 32px
}

.section-1__button {
    opacity: 0;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
    -webkit-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease
}

.swiper-slide-active .section-1__button {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 1300ms;
    -o-transition-delay: 1300ms;
    transition-delay: 1300ms
}

.button {
    background-color: var(--violet-color);
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    position: relative;
    color: #fff;
    text-align: center;
    padding: 13px 30px;
    z-index: 1;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.button::after,.button::before {
    content: "";
    position: absolute;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--secondary-color);
    -webkit-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -o-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: scale(0) rotate(0);
    -ms-transform: scale(0) rotate(0);
    transform: scale(0) rotate(0);
    z-index: -1
}

.button:hover:before {
    border-radius: 0;
    -webkit-transform: scale(1) rotate(-180deg);
    -ms-transform: scale(1) rotate(-180deg);
    transform: scale(1) rotate(-180deg)
}

.button:hover:after {
    border-radius: 0;
    -webkit-transform: scale(1) rotate(180deg);
    -ms-transform: scale(1) rotate(180deg);
    transform: scale(1) rotate(180deg)
}

.button--login {
    color: #0a0f20;
    border: 1px solid #0a0f20;
    background-color: #fff
}

@media (any-hover: hover) {
    .button--login:hover {
        color:white
    }
}

.pattern-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center
}

@media (min-width: 900px) {
    .pattern-1 {
        position:absolute;
        top: 0px;
        right: 200px;
        width: 616px;
        height: 100vh;
        background-size: cover;
        background-repeat: no-repeat;
        z-index: 1;
        -webkit-animation: service_hexagon_2 15s infinite linear;
        animation: service_hexagon_2 15s infinite linear
    }
}

.pattern-2 {
    position: absolute;
    left: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 86px;
    height: 234px;
    background-repeat: no-repeat;
    z-index: 1
}

@media only screen and (max-width: 991px) {
    .pattern-layer {
        display:none
    }
}

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

@-webkit-keyframes service_hexagon_2 {
    0% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg)
    }

    100% {
        -webkit-transform: rotateY(360deg);
        transform: rotateY(360deg)
    }
}

@keyframes service_hexagon_2 {
    0% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg)
    }

    100% {
        -webkit-transform: rotateY(360deg);
        transform: rotateY(360deg)
    }
}

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


@-webkit-keyframes service_hexagon {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

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

@keyframes service_hexagon {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

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

@-webkit-keyframes animateBubble {
    0% {
        margin-top: 20%
    }

    100% {
        margin-top: -30%
    }
}

@keyframes animateBubble {
    0% {
        margin-top: 20%
    }

    100% {
        margin-top: -30%
    }
}

@-webkit-keyframes sideWays {
    0% {
        margin-left: 0
    }

    100% {
        margin-left: 25px
    }
}

@keyframes sideWays {
    0% {
        margin-left: 0
    }

    100% {
        margin-left: 25px
    }
}

.feature-section {
    position: relative;
    padding-top: 20px
}

.feature-section__inner-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    -webkit-box-shadow: 0px 20px 60px 10px #00000012;
    box-shadow: 0px 20px 60px 10px #00000012;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s
}

.feature-section__inner-container.element-animation {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px)
}

.feature-section__inner-container.element-show {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
}

.feature-block-one__title {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    margin-bottom: 15px
}

.feature-block-one__text {
    color: var(--text-color);
    line-height: 1.5
}

.inner-box {
    padding: 50px 40px;
    background: #fff;
    z-index: 1;
    position: relative
}

.inner-box::before {
    position: absolute;
    content: "";
    background: var(--violet-color);
    width: 100%;
    height: 0%;
    left: 0px;
    top: 0px;
    z-index: -1;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.inner-box:hover:before {
    height: 100%
}

.inner-box:hover .icon-box {
    background: rgba(255,255,255,0.2) !important
}

.feature-block-one .inner-box:hover p {
    color: #fff
}

.feature-block-one .inner-box p {
    position: relative;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.icon-box {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    font-size: 40px;
    color: #fff;
    background: var(--violet-color);
    border-radius: 50%;
    margin-bottom: 25px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.about-section {
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px
}

@media (max-width: 767.98px) {
    .about-section {
        padding-top:70px;
        padding-bottom: 70px
    }
}

.about-section .pattern-layer2 {
    display: none
}

@media (min-width: 1300px) {
    .about-section .pattern-layer2 {
        display:block;
        position: absolute;
        top: 60px;
        right: -224px;
        width: 394px;
        height: 394px;
        border-radius: 50%;
        border: 1px solid #e9e9e9
    }

    .about-section .pattern-layer2::before {
        position: absolute;
        content: "";
        background: #f2f2f2;
        width: 38px;
        height: 38px;
        left: 29px;
        top: 52px;
        border-radius: 50%
    }
}

.rotate-me {
    animation-name: rotateme;
    animation-duration: 24s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: rotateme;
    -webkit-animation-duration: 24s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear
}

.rotate-me {
    animation-name: rotateme;
    animation-duration: 24s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: rotateme;
    -webkit-animation-duration: 24s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: rotateme;
    -moz-animation-duration: 24s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: rotateme;
    -ms-animation-duration: 24s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: rotateme;
    -o-animation-duration: 24s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear
}

@keyframes rotateme {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes rotateme {
    from {
        -webkit-transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg)
    }
}

.about-us-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 20px
}

@media (max-width: 1300px) {
    .about-us-block {
        -webkit-box-pack:center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.about-us-block__image-column {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%
}

@media (max-width: 1300px) {
    .about-us-block__image-column {
        -webkit-box-flex:0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto
    }
}

.about-us-block__content-column {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%
}

@media (max-width: 1300px) {
    .about-us-block__content-column {
        -webkit-box-flex:0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%
    }
}

.image__block-one {
    position: relative
}

@media (min-width: 1200px) {
    .image__block-one {
        margin-right:40px;
        padding-right: 90px
    }
}

.image-box {
    position: relative
}

@media (min-width: 1300px) {
    .image-shape {
        position:absolute;
        z-index: -1;
        left: -108px;
        top: 110px;
        width: 200px;
        height: 200px;
        background-repeat: no-repeat;
        -webkit-animation: zoom-fade 8s infinite linear;
        animation: zoom-fade 8s infinite linear
    }
}

@-webkit-keyframes zoom-fade {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9)
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    100% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9)
    }
}

@keyframes zoom-fade {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9)
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    100% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9)
    }
}

.about-us {
    position: relative;
    overflow: hidden
}

@media (any-hover: hover) {
    .about-us__image:hover::before {
        -webkit-animation:shine 1s;
        animation: shine 1s
    }
}

.about-us__image::before {
    content: "";
    position: absolute;
    top: 0;
    left: -85%;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: -o-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255,255,255,0)), to(rgba(255,255,255,0.3)));
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 100%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg)
}

.rating-box {
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    width: 100%;
    margin: 30px 0px
}

@media (min-width: 650px) {
    .rating-box {
        position:absolute;
        left: 0px;
        top: 60px;
        background: #fff;
        width: 220px;
        padding: 24px 20px;
        text-align: center;
        z-index: 1
    }
}

.rating {
    margin-bottom: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.rating h6 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    color: var(--title-color)
}

.icon-9 {
    color: #ffba09
}

.experience-box {
    background-color: var(--violet-color);
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px
}

@media (min-width: 650px) {
    .experience-box {
        position:absolute;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        right: -75px;
        bottom: 95px;
        width: 180px;
        height: 180px;
        text-align: center;
        background: var(--violet-color);
        border-radius: 50%;
        padding: 15px 20px;
        z-index: 1
    }

    .experience-box::before {
        position: absolute;
        content: "";
        width: 290px;
        height: 290px;
        border-radius: 50%;
        left: -55px;
        top: -55px;
        border: 20px solid rgba(255,255,255,0.5)
    }
}

.experience-box__title {
    font-size: 54px;
    line-height: 70px;
    color: #fff
}

.experience-box__sub-title {
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    font-weight: 600
}

@media (min-width: 1300px) {
    .about-us-content__content-box {
        margin-left:40px
    }
}

@media (max-width: 1300px) {
    .about-us-content__content-box {
        padding-left:10px;
        padding-right: 10px
    }
}

.about-us-content__label {
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--violet-color)
}

.about-us-content__title {
    display: block;
    font-size: 40px;
    line-height: 52px;
    font-weight: 800;
    margin-bottom: 20px
}

.about-us-content__text-box {
    margin-bottom: 40px;
    color: var(--text-color);
    line-height: 28px
}

.about-us-content__achievements-box {
    margin-bottom: 45px
}

.achievements-box__title {
    color: #141417;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 10px
}

.achievements-box__text {
    color: #676767;
    font-family: "Inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px
}

.achievements-box__single-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px
}

.achievements-box__single-item:not(:last-child) {
    margin-bottom: 23px
}

.achievements-box__single-item .icon-box {
    width: 70px;
    height: 70px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70px;
    flex: 0 0 70px;
    background-color: #f2e5ff
}

.achievements-box__single-item .icon-11,.achievements-box__single-item .icon-10 {
    color: var(--violet-color)
}

@-webkit-keyframes shine {
    100% {
        left: 125%
    }
}

@keyframes shine {
    100% {
        left: 125%
    }
}

.our-services-section {
    position: relative;
    background: #f6f6f6;
    padding-top: 120px;
    padding-bottom: 90px
}

.our-services-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/images/background/service-bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.03;
    pointer-events: none
}

@media (max-width: 767px) {
    .our-services-section {
        padding:65px 0px 40px 0px
    }
}

.our-services-section__block-header {
    text-align: center
}

.our-services-section__block-header:not(:last-child) {
    margin-bottom: 60px
}

.our-services-section__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px
}

@media (max-width: 1000px) {
    .our-services-section__cards {
        grid-template-columns:repeat(3, 1fr)
    }
}

@media (max-width: 767px) {
    .our-services-section__cards {
        grid-template-columns:repeat(2, 1fr)
    }
}

@media (max-width: 500px) {
    .our-services-section__cards {
        grid-template-columns:1fr
    }
}

.our-services-section__card {
    padding: 35px 30px 30px 30px;
    position: relative;
    overflow: hidden;
    background-color: #fff;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s
}

.element-animation .our-services-section__card {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px)
}

.element-show .our-services-section__card {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
}

.our-services-section__card:nth-child(1) {
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s
}

.our-services-section__card:nth-child(2) {
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s
}

.our-services-section__card:nth-child(3) {
    -webkit-transition-delay: 0.4s;
    -o-transition-delay: 0.4s;
    transition-delay: 0.4s
}

.our-services-section__card:nth-child(4) {
    -webkit-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s
}

.our-services-section__card:nth-child(5) {
    -webkit-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s
}

.our-services-section__card:nth-child(6) {
    -webkit-transition-delay: 0.7s;
    -o-transition-delay: 0.7s;
    transition-delay: 0.7s
}

.our-services-section__card:nth-child(7) {
    -webkit-transition-delay: 0.8s;
    -o-transition-delay: 0.8s;
    transition-delay: 0.8s
}

.our-services-section__card:nth-child(8) {
    -webkit-transition-delay: 0.9s;
    -o-transition-delay: 0.9s;
    transition-delay: 0.9s
}

.our-services-section__card::before {
    position: absolute;
    content: "";
    background: var(--violet-color);
    width: 100%;
    height: 0%;
    left: 0px;
    top: 0px;
    z-index: 0;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

@media (any-hover: hover) {
    .our-services-section__card:hover::before {
        height:100%
    }
}

.our-services-section .our-services-section__card:hover::before {
    height: 100%
}

.our-services-section .our-services-section__card:hover .our-services-section__icon {
    color: #fff
}

.our-services-section .our-services-section__card:hover .our-services-section__items {
    color: #fff
}

.our-services-section .our-services-section__card:hover .our-services-section__item::before {
    background-color: #fff
}

.our-services-section__icon {
    position: relative;
    color: var(--violet-color);
    display: inline-block;
    font-size: 40px;
    margin-bottom: 24px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.our-services-section__title {
    position: relative;
    color: #141417;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    text-transform: capitalize
}

.our-services-section__title:not(:last-child) {
    margin-bottom: 20px
}

.our-services-section__items {
    position: relative
}

.our-services-section__item {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 32px;
    padding-left: 16px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.our-services-section__item::before {
    position: absolute;
    content: "";
    background: #676767;
    width: 5px;
    height: 5px;
    left: 0px;
    top: 13px;
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.block-header-our-services__label {
    color: var(--violet-color);
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 700
}

.block-header-our-services__title {
    color: #141417;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: 52px
}

@media (max-width: 767px) {
    .block-header-our-services__title {
        font-size:32px;
        line-height: 40px
    }
}

.fun-fact {
    margin-top: -60px;
    position: relative
}

.fun-fact__body {
    display: grid;
    grid-template-columns: repeat(3, 1fr)
}

@media (max-width: 1000px) {
    .fun-fact__body {
        grid-template-columns:repeat(2, 1fr)
    }
}

@media (max-width: 750px) {
    .fun-fact__body {
        grid-template-columns:1fr
    }
}

.funfact-box {
    position: relative;
    padding: 54px 30px 50px 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px
}

.count-outer {
    color: #fff;
    padding-top: 5px;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 52px;
    margin-bottom: 5px
}

.funfact-box__text {
    color: #fff;
    font-family: "Inter";
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px
}

.funfact-block-one--white {
    background-color: #fff
}

.funfact-block-one--white .icon-box {
    background-color: rgba(235,41,44,0.1)
}

.funfact-block-one--white .funfact-box__text {
    color: #676767
}

.funfact-block-one--white .count-outer {
    color: #222
}

.funfact-block-one--dark {
    background-color: #0a0f20;
    color: white
}

.funfact-block-one--dark .icon-box {
    background: rgba(255,255,255,0.07)
}

.funfact-block-one--purple {
    background-color: var(--violet-color);
    color: white
}

.funfact-block-one--purple .icon-box {
    background: rgba(255,255,255,0.15)
}

@media (max-width: 1000px) {
    .funfact-block-one--purple {
        grid-column:span 2
    }
}

@media (max-width: 750px) {
    .funfact-block-one--purple {
        grid-column:span 1
    }
}

.icon-21 {
    color: var(--violet-color)
}

.icon-22 {
    color: white
}

.icon-23 {
    color: white
}

.our-clients {
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
    background: #f6f6f6
}

.our-clients::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/images/background/testimonial-bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.05;
    pointer-events: none
}

@media (max-width: 767px) {
    .our-clients {
        padding:70px 0px 70px 0px
    }
}

.our-clients__block-header {
    text-align: center;
    margin-bottom: 60px
}

.our-clients__swiper-slide {
    position: relative;
    display: block;
    background: #fff;
    padding: 0px 30px 40px 30px;
    margin-top: 45px
}

.our-clients__image {
    position: relative;
    z-index: 5;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: -45px auto 15px;
    text-align: center;
    border-radius: 50%
}

.our-clients__image img {
    border-radius: 50%
}

.our-clients__title {
    color: #141417;
    text-align: center;
    font-family: "Manrope";
    font-size: 20px;
    font-weight: 700;
    line-height: 28px
}

.our-clients__position {
    color: #676767;
    text-align: center;
    font-family: "Inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 10px
}

.our-clients__rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 13px
}

.our-clients__rating .icon-26 {
    color: #ffb13d
}

.our-clients__text {
    color: #676767;
    text-align: center;
    font-family: "Inter";
    font-size: 16px;
    font-weight: 400;
    line-height: 28px
}

.block-header-our-clients__label {
    color: var(--violet-color);
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 700
}

.block-header-our-clients__title {
    color: #141417;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: 52px
}

@media (max-width: 767px) {
    .block-header-our-clients__title {
        font-size:32px;
        line-height: 40px
    }
}

.handle-preloader {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-items: center;
    display: -webkit-box;
    display: flex;
    display: -ms-flexbox;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999999;
    background: #0e1d40
}

.preloader-close {
    position: fixed;
    z-index: 99999999;
    font-size: 14px;
    background: #fff;
    color: red;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    right: 30px;
    top: 30px;
    font-weight: 400
}

.handle-preloader .animation-preloader {
    position: absolute;
    z-index: 100
}

.handle-preloader .animation-preloader .spinner {
    -webkit-animation: spinner 1s infinite linear;
    animation: spinner 1s infinite linear;
    border-radius: 50%;
    height: 150px;
    margin: 0 auto 45px auto;
    width: 150px
}

.handle-preloader .animation-preloader .txt-loading {
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
    -webkit-animation: letters-loading 4s infinite;
    animation: letters-loading 4s infinite;
    content: attr(data-text-preloader);
    left: 0;
    opacity: 0;
    top: 0;
    position: absolute
}

.handle-preloader .animation-preloader .txt-loading .letters-loading {
    font-family: var(--title-font);
    font-weight: 500;
    letter-spacing: 15px;
    display: inline-block;
    position: relative;
    font-size: 60px;
    line-height: 60px;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(255,255,255,0.3)
}

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

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

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

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
    -webkit-animation-delay: 1s;
    animation-delay: 1s
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
    -webkit-animation-delay: 1.4s;
    animation-delay: 1.4s
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(9):before {
    -webkit-animation-delay: 1.6s;
    animation-delay: 1.6s
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(10):before {
    -webkit-animation-delay: 1.8s;
    animation-delay: 1.8s
}

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

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(11):before {
    -webkit-animation-delay: 2.2s;
    animation-delay: 2.2s
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(12):before {
    -webkit-animation-delay: 2.4s;
    animation-delay: 2.4s
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(13):before {
    -webkit-animation-delay: 2.6s;
    animation-delay: 2.6s
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(14):before {
    -webkit-animation-delay: 2.8s;
    animation-delay: 2.8s
}

.handle-preloader .loader-section {
    background-color: #ffffff;
    height: 100%;
    position: fixed;
    top: 0;
    width: calc(50% + 1px)
}

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

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
    color: #ffffff
}

.handle-preloader .animation-preloader .spinner {
    border: 3px solid #ffffff;
    border-top-color: rgba(255,255,255,0.5)
}

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

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

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

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

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

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

@media screen and (max-width: 767px) {
    .handle-preloader .animation-preloader .spinner {
        height:8em;
        width: 8em
    }
}

@media screen and (max-width: 500px) {
    .handle-preloader .animation-preloader .spinner {
        height:7em;
        width: 7em
    }

    .handle-preloader .animation-preloader .txt-loading .letters-loading {
        font-size: 30px;
        letter-spacing: 10px
    }
}

.header {
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0px;
    z-index: 999;
    width: 100%;
    background-color: #fff;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease
}

.header-top {
    position: relative;
    width: 100%;
    background: #212226;
    padding: 16px 0px;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s
}

._header-scroll .header-top {
    padding: 0;
    opacity: 0;
    visibility: hidden;
    height: 0
}

@media (max-width: 479.98px) {
    .header-top {
        padding:10px 0px
    }
}

.header-top .top-inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 560px
}

@media (max-width: 1460px) {
    .header-top .top-inner {
        padding-left:0px
    }
}

.header-top .info-list li a {
    position: relative;
    display: inline-block;
    color: #fff
}

.header-top .info-list li i {
    position: absolute;
    left: 0px;
    top: 5px;
    font-size: 18px
}

.header-top .info-list li:last-child {
    margin: 0px !important
}

.clearfix::after {
    display: block;
    clear: both;
    content: ""
}

.icon-1:before {
    content: "\e900";
    color: var(--violet-color)
}

.top-inner__email {
    color: #fff;
    font-family: "Inter";
    font-weight: 300;
    padding-left: 32px
}

@media (max-width: 1460px) {
    .top-inner__email {
        padding-left:15px
    }
}

@media (max-width: 487px) {
    .top-inner__email {
        padding-left:10px
    }
}

.header .outer-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
    min-height: 80px
}

.logo-box {
    position: relative;
    padding: 41px 0px 41px 0px;
    margin-top: -60px;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
    z-index: 1
}

.logo-box img {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    margin-left: -20px
}

@media (max-width: 1000px) {
    .logo-box img {
        -webkit-transform:scale(0.7);
        -ms-transform: scale(0.7);
        transform: scale(0.7);
        margin-left: -70px
    }
}

@media (max-width: 930px) {
    .logo-box img {
        -webkit-transform:scale(0.6);
        -ms-transform: scale(0.6);
        transform: scale(0.6);
        margin-left: -95px
    }
}

@media (max-width: 700px) {
    .logo-box img {
        -webkit-transform:scale(0.4);
        -ms-transform: scale(0.4);
        transform: scale(0.4);
        margin-left: -140px
    }
}

@media (max-width: 450px) {
    .logo-box img {
        margin-left:-150px
    }
}

._header-scroll .logo-box {
    padding: 15px 40px 30px 10px;
    margin-top: 0px
}

@media (max-width: 1000px) {
    ._header-scroll .logo-box {
        padding:15px 40px 15px 0px
    }
}

@media (max-width: 930px) {
    ._header-scroll .logo-box {
        padding:15px 40px 15px 0px
    }
}

@media (max-width: 700px) {
    ._header-scroll .logo-box {
        padding:10px 40px 10px 0px
    }
}

@media (max-width: 450px) {
    ._header-scroll .logo-box {
        padding:7px 40px 7px 0px
    }
}

.logo-box h5 {
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s
}

._header-scroll .logo-box h5 {
    font-size: 24px
}

@media (max-width: 1460px) {
    .logo-box {
        margin-top:-0px;
        padding: 8px 10px 9px
    }
}

@media (max-width: 930px) {
    .logo-box {
        width:320px;
        padding: 8px 15px 8px 0px
    }
}

@media (max-width: 700px) {
    .logo-box {
        padding:8px 0px;
        width: 235px
    }
}

@media (max-width: 450px) {
    .logo-box {
        width:225px;
        padding: 8px 0px
    }
}

@media (min-width: 1460px) {
    .header .outer-box .logo-box .shape {
        position:absolute;
        top: 0px;
        right: -24px;
        width: 24px;
        height: 100%;
        background: var(--violet-color);
        -webkit-clip-path: polygon(100% 0%, 0% 50%, 100% 100%, 0 100%, 0 50%, 0 0);
        clip-path: polygon(100% 0%, 0% 50%, 100% 100%, 0 100%, 0 50%, 0 0)
    }

    .header .outer-box .logo-box:after {
        position: absolute;
        content: "";
        top: 0px;
        right: -32px;
        width: 32px;
        height: 100%;
        background: var(--violet-color);
        -webkit-clip-path: polygon(100% 0%, 25% 50%, 100% 100%, 0 100%, 0 50%, 0 0);
        clip-path: polygon(100% 0%, 25% 50%, 100% 100%, 0 100%, 0 50%, 0 0);
        opacity: 0.15
    }
}

.header .outer-box .logo-box:before {
    position: absolute;
    content: "";
    background: var(--violet-color);
    width: 5000px;
    height: 100%;
    top: 0px;
    right: 0px;
    z-index: -1;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s
}

.menu__logo {
    display: none
}

@media (max-width: 1460px) {
    .menu__logo {
        position:relative;
        font-size: 25px;
        font-weight: 700;
        color: aliceblue;
        margin: 0px;
        -webkit-transition: all 500ms ease;
        -o-transition: all 500ms ease;
        transition: all 500ms ease;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 5px;
        border-bottom: 1px solid rgba(255,255,255,0.1)
    }
}

@media (max-width: 1460px) {
    .menu__logo img {
        max-width:100%;
        padding-right: 45px;
        position: relative;
        z-index: 5
    }
}

.menu__logo--close-btn {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 18px;
    z-index: 5
}

.menu__logo--close-btn::before,.menu__logo--close-btn::after {
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: white
}

.menu__logo--close-btn::before {
    top: calc(50% - 1px);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.menu__logo--close-btn::after {
    bottom: calc(50% - 1px);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

@media (max-width: 1460px) {
    .menu__body {
        position:fixed;
        z-index: 10;
        width: 300px;
        height: 100vh;
        right: -100%;
        top: 0;
        overflow: auto;
        -webkit-transition: right 0.3s;
        -o-transition: right 0.3s;
        transition: right 0.3s;
        background: #141417
    }

    .menu__body::before {
        content: "";
        position: fixed;
        right: -100%;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        opacity: 0.3;
        -webkit-transition: all 900ms ease;
        -o-transition: all 900ms ease;
        transition: all 900ms ease;
        background-color: #000;
        pointer-events: none;
        -webkit-transition: right 0.2s;
        -o-transition: right 0.2s;
        transition: right 0.2s
    }

    .menu-open .menu__body {
        right: 0
    }

    .menu-open .menu__body::before {
        right: 0
    }
}

@media (max-width: 500px) {
    .menu__body {
        width:100%
    }
}

@media (max-width: 1460px) {
    .menu__list {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 20px
    }
}

.menu__item {
    font-size: 20px
}

@media (max-width: 1460px) {
    .menu__item {
        border-bottom:1px solid rgba(255,255,255,0.1)
    }
}

.icon-menu {
    display: none
}

@media (max-width: 1460px) {
    .icon-menu {
        display:block;
        position: relative;
        width: 50px;
        height: 36px;
        z-index: 5;
        background-color: black;
        padding: 11px
    }
}

@media (max-width: 1460px) and (any-hover: none) {
    .icon-menu {
        cursor:default
    }
}

@media (max-width: 1460px) {
    .icon-menu span,.icon-menu::before,.icon-menu::after {
        content:"";
        -webkit-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        right: 7px;
        position: absolute;
        width: 70%;
        height: 2px;
        background-color: white
    }

    .icon-menu::before {
        top: 8px
    }

    .icon-menu::after {
        bottom: 8px
    }

    .icon-menu span {
        top: calc(50% - 1px)
    }
}

.header--menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media (min-width: 1460px) {
    .menu__list {
        display:-webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px;
        row-gap: 5px
    }
}

@media (min-width: 1460px) and (max-width: 1460px) {
    .menu__list {
        -webkit-column-gap:20px;
        -moz-column-gap: 20px;
        column-gap: 20px
    }
}

@media (min-width: 1460px) and (max-width: 1100px) {
    .menu__list {
        -webkit-column-gap:10px;
        -moz-column-gap: 10px;
        column-gap: 10px
    }
}

.menu__link {
    position: relative;
    display: block;
    cursor: pointer;
    font-size: 18px;
    line-height: 26px;
    padding-top: 37px;
    padding-bottom: 37px;
    font-weight: 500;
    opacity: 1;
    color: #141417;
    z-index: 1;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

@media (any-hover: hover) {
    .menu__link:hover {
        color:var(--violet-color)
    }
}

@media (max-width: 1460px) {
    .menu__link {
        color:white;
        padding: 10px 25px;
        font-size: 15px;
        text-transform: uppercase
    }
}

@media (any-hover: hover) {
    .menu__item--first:hover .sub-menu {
        opacity:1;
        visibility: visible;
        pointer-events: all
    }
}

@media (max-width: 1460px) {
    .sub-menu-open-1 .menu__item--first .menu-icn-arrow {
        -webkit-transform:rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg)
    }
}

.menu .menu__item--arrow .menu__link {
    padding-right: 20px
}

.menu .menu-icn-arrow {
    position: absolute;
    top: 37px;
    right: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s
}

@media (max-width: 1460px) {
    .menu .menu-icn-arrow {
        top:10px;
        right: 15px;
        z-index: 5
    }
}

.menu .menu-icn-arrow path {
    fill: black
}

@media (max-width: 1460px) {
    .menu .menu-icn-arrow path {
        fill:white
    }
}

@media (any-hover: hover) {
    .menu__item--second:hover .sub-menu {
        opacity:1;
        visibility: visible;
        pointer-events: all
    }
}

@media (max-width: 1460px) {
    .sub-menu-open-2 .menu__item--second .menu-icn-arrow {
        -webkit-transform:rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg)
    }
}

.menu__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    padding-left: 50px
}

@media (max-width: 1460px) {
    .menu__buttons {
        padding-left:40px
    }
}

@media (max-width: 1100px) {
    .menu__buttons {
        padding-left:30px
    }
}

@media (max-width: 767.98px) {
    .menu__buttons {
        display:none
    }
}

.menu__button {
    padding: 13px 30px
}

@media (min-width: 1460px) {
    .menu .sub-menu {
        opacity:0;
        visibility: hidden;
        position: absolute;
        left: inherit;
        top: 100%;
        width: 230px;
        pointer-events: none;
        z-index: 100;
        background: var(--secondary-color);
        border-radius: 0px;
        transition: all 500ms ease;
        -moz-transition: all 500ms ease;
        -webkit-transition: all 500ms ease;
        -ms-transition: all 500ms ease;
        -o-transition: all 500ms ease
    }
}

@media (max-width: 1460px) {
    .menu .sub-menu {
        opacity:0;
        visibility: hidden;
        display: none;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s
    }
}

.menu .sub-menu__item:not(:last-child) {
    border-bottom: 1px solid rgba(255,255,255,0.1)
}

.menu .sub-menu__link {
    position: relative;
    display: block;
    padding: 10px 25px;
    line-height: 24px;
    font-weight: 600;
    font-size: 16px;
    text-transform: capitalize;
    text-align: left;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    color: white
}

@media (any-hover: hover) {
    .menu .sub-menu__link:hover {
        padding-left:35px;
        color: var(--violet-color)
    }
}

@media (max-width: 1460px) {
    .menu .sub-menu__link {
        padding:10px 45px
    }
}

.sub-menu-open-1 .menu .sub-menu--1 {
    opacity: 1;
    visibility: visible;
    display: block
}

.sub-menu-open-2 .menu .sub-menu--2 {
    opacity: 1;
    visibility: visible;
    display: block
}

.menu .button {
    background-color: var(--violet-color);
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    position: relative;
    color: #fff;
    text-align: center;
    padding: 13px 30px;
    z-index: 1;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.menu .button::after,.menu .button::before {
    content: "";
    position: absolute;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--secondary-color);
    -webkit-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -o-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: scale(0) rotate(0);
    -ms-transform: scale(0) rotate(0);
    transform: scale(0) rotate(0);
    z-index: -1
}

.menu .button:hover:before {
    border-radius: 0;
    -webkit-transform: scale(1) rotate(-180deg);
    -ms-transform: scale(1) rotate(-180deg);
    transform: scale(1) rotate(-180deg)
}

.menu .button:hover:after {
    border-radius: 0;
    -webkit-transform: scale(1) rotate(180deg);
    -ms-transform: scale(1) rotate(180deg);
    transform: scale(1) rotate(180deg)
}

.menu .button--login {
    color: #0a0f20;
    border: 1px solid #0a0f20;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-color: #fff
}

@media (any-hover: hover) {
    .menu .button--login:hover {
        color:white
    }
}

.contact-info {
    color: #ffffff;
    position: relative;
    z-index: 5
}

.contact-info__title {
    font-size: 20px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px
}

.contact-info__list {
    position: relative;
    z-index: 5
}

.contact-info__item {
    position: relative;
    z-index: 5;
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.5
}

.contact-info__item:not(:last-child) {
    margin-bottom: 8px
}

.menu__contact-info {
    display: none
}

@media (max-width: 1460px) {
    .menu__contact-info {
        display:block;
        padding: 120px 30px 20px 30px
    }
}

.menu__login-button {
    display: none
}

@media (max-width: 1460px) {
    .menu__login-button {
        margin-top:20px;
        display: block;
        text-align: center;
        padding: 10px 20px;
        background-color: #3498db;
        color: #fff;
        text-decoration: none;
        border-radius: 5px;
        -webkit-transition: background-color 0.3s ease;
        -o-transition: background-color 0.3s ease;
        transition: background-color 0.3s ease;
        margin: 20px auto 0
    }
}

@media (max-width: 1460px) and (any-hover: hover) {
    .menu__login-button:hover {
        background-color:#2980b9
    }
}

.login-box-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.footer {
    background: var(--secondary-color)
}

.footer__top {
    background-color: var(--violet-color)
}

.top-footer {
    position: relative
}

.top-footer::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-image: url("/images/shape/shape-5.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center
}

.top-footer__auto-container {
    padding-top: 55px;
    padding-bottom: 55px
}

@media (min-width: 1050px) {
    .top-footer__auto-container {
        display:-webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 10px
    }
}

@media (max-width: 767px) {
    .top-footer__auto-container {
        padding-top:35px;
        padding-bottom: 35px
    }
}

.top-footer__title {
    position: relative;
    display: block;
    font-size: 40px;
    line-height: 52px;
    color: #fff;
    font-weight: 800
}

@media (min-width: 1050px) {
    .top-footer__title {
        max-width:500px
    }
}

@media (max-width: 1050px) {
    .top-footer__title {
        margin-bottom:30px
    }
}

@media (max-width: 767px) {
    .top-footer__title {
        margin-bottom:25px;
        font-size: 30px;
        line-height: 40px
    }
}

.top-footer__input-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px
}

@media (max-width: 600px) {
    .top-footer__input-box {
        -ms-flex-wrap:wrap;
        flex-wrap: wrap
    }
}

.top-footer__input {
    position: relative;
    height: 60px;
    background: rgba(255,255,255,0.15);
    border: 1px solid transparent;
    font-size: 16px;
    color: #fff;
    padding: 10px 30px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

@media (max-width: 1050px) {
    .top-footer__input {
        -webkit-box-flex:1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto
    }
}

.top-footer__input::-webkit-input-placeholder {
    color: #fff
}

.top-footer__input::-moz-placeholder {
    color: #fff
}

.top-footer__input:-ms-input-placeholder {
    color: #fff
}

.top-footer__input::-ms-input-placeholder {
    color: #fff
}

.top-footer__input::placeholder {
    color: #fff
}

.top-footer__input:focus {
    outline: none;
    border: 1px solid #fff
}

.top-footer__button {
    background-color: var(--secondary-color)
}

.top-footer__button::after,.top-footer__button::before {
    background-color: #fff
}

@media (max-width: 600px) {
    .top-footer__button {
        -webkit-box-flex:1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto
    }
}

@media (any-hover: hover) {
    .top-footer__button:hover {
        color:var(--secondary-color)
    }
}

.middle-footer {
    position: relative;
    padding: 110px 0px 113px 0px;
    color: #fff
}

@media (min-width: 767px) {
    .middle-footer::before {
        content:"";
        position: absolute;
        left: 0px;
        bottom: 0px;
        width: 193px;
        height: 540px;
        background-repeat: no-repeat;
        background-image: url("/images/shape/shape-8.png")
    }

    .middle-footer::after {
        content: "";
        position: absolute;
        right: 0px;
        bottom: 0px;
        width: 209px;
        height: 550px;
        background-image: url("/images/shape/shape-9.png");
        background-repeat: no-repeat
    }
}

@media (max-width: 991px) {
    .middle-footer {
        padding-bottom:83px
    }
}

@media (max-width: 767) {
    .middle-footer {
        padding:80px 0px 50px 0px
    }
}

.middle-footer__body {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
    row-gap: 20px
}

@media (max-width: 1000px) {
    .middle-footer__body {
        grid-template-columns:repeat(2, 1fr);
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px
    }
}

@media (max-width: 757px) {
    .middle-footer__body {
        grid-template-columns:1fr;
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px
    }
}

.middle-footer__logo {
    color: #f0f8ff;
    font-family: "Manrope";
    font-size: 28px;
    font-weight: 700;
    line-height: 33.6px
}

.middle-footer__description {
    font-family: "Inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px
}

.middle-footer__title {
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: 28px
}

.middle-footer__title:not(:last-child) {
    margin-bottom: 25px
}

.list-footer__item:not(:last-child) {
    margin-bottom: 10px
}

.list-footer__link {
    position: relative;
    padding-left: 15px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    display: inline-block;
    line-height: 1.5;
    font-weight: 500
}

@media (any-hover: hover) {
    .list-footer__link:hover {
        color:var(--violet-color)
    }

    .list-footer__link:hover::before {
        background: var(--violet-color)
    }
}

.list-footer__link::before {
    position: absolute;
    content: "";
    background: #fff;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    left: 0px;
    top: 11px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.bottom-footer {
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    padding: 30px 0px;
    color: #fff
}

.bottom-footer__copyright {
    position: relative;
    color: #fff;
    font-family: "Inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.bottom-footer__link {
    color: var(--violet-color)
}

@media (any-hover: hover) {
    .bottom-footer__link:hover {
        text-decoration:underline
    }
}

@font-face {
    font-family: "icomoon";
    src: url("/fonts/icomoon.eot?jade8u");
    src: url("/fonts/icomoon.eot?jade8u#iefix") format("embedded-opentype"),url("/fonts/icomoon.ttf?jade8u") format("truetype"),url("/fonts/icomoon.woff?jade8u") format("woff"),url("/fonts/icomoon.svg?jade8u#icomoon") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: block
}

[class^="icon-"],[class*=" icon-"] {
    font-family: "icomoon" !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.icon-1:before {
    content: "\e900"
}

.icon-2:before {
    content: "\e901"
}

.icon-3:before {
    content: "\e902"
}

.icon-4:before {
    content: "\e903"
}

.icon-5:before {
    content: "\e904"
}

.icon-6:before {
    content: "\e905"
}

.icon-7:before {
    content: "\e906"
}

.icon-8:before {
    content: "\e907"
}

.icon-9:before {
    content: "\e908"
}

.icon-10:before {
    content: "\e909"
}

.icon-11:before {
    content: "\e90a"
}

.icon-12:before {
    content: "\e90b"
}

.icon-13:before {
    content: "\e90c"
}

.icon-14:before {
    content: "\e90d"
}

.icon-15:before {
    content: "\e90e"
}

.icon-16:before {
    content: "\e90f"
}

.icon-17:before {
    content: "\e910"
}

.icon-18:before {
    content: "\e911"
}

.icon-19:before {
    content: "\e912"
}

.icon-20:before {
    content: "\e913"
}

.icon-21:before {
    content: "\e914"
}

.icon-22:before {
    content: "\e915"
}

.icon-23:before {
    content: "\e916"
}

.icon-24:before {
    content: "\e917"
}

.icon-25:before {
    content: "\e918"
}

.icon-26:before {
    content: "\e919"
}

.icon-27:before {
    content: "\e91a"
}

.icon-28:before {
    content: "\e91b"
}

.icon-29:before {
    content: "\e91c"
}

.icon-30:before {
    content: "\e91d"
}

.icon-31:before {
    content: "\e91e"
}

.icon-32:before {
    content: "\e91f"
}

.icon-33:before {
    content: "\e920"
}

.icon-34:before {
    content: "\e921"
}

.icon-35:before {
    content: "\e922"
}

.icon-36:before {
    content: "\e923"
}

.icon-37:before {
    content: "\e924"
}

.icon-38:before {
    content: "\e925"
}

.icon-39:before {
    content: "\e926"
}

.icon-40:before {
    content: "\e927"
}

.icon-41:before {
    content: "\e928"
}

.icon-42:before {
    content: "\e929"
}

.icon-43:before {
    content: "\e92a"
}

.icon-44:before {
    content: "\e92b"
}

.icon-45:before {
    content: "\e92c"
}

.icon-46:before {
    content: "\e92d"
}

.icon-47:before {
    content: "\e92e"
}

.article-section__title {
    position: relative;
    font-family: var(--title-font);
    font-weight: 700;
    color: var(--title-color);
    line-height: 28px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    font-size: 32px
}

@media (max-width: 767px) {
    .article-section__title {
        font-size:27px
    }
}

@media (max-width: 489px) {
    .article-section__title {
        font-size:24px
    }
}

.article-section__text {
    font-size: 16px;
    font-family: var(--text-font);
    color: var(--text-color);
    font-weight: 400;
    line-height: 28px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.article-section__sub-title {
    font-size: 28px;
    line-height: 28px;
    position: relative;
    font-family: var(--title-font);
    font-weight: 700;
    color: var(--title-color);
    margin: 0px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

@media (max-width: 767px) {
    .article-section__sub-title {
        font-size:25px
    }
}

@media (max-width: 489px) {
    .article-section__sub-title {
        font-size:22px
    }
}

.article-section__ol-list {
    padding-left: 20px;
    margin-bottom: 1rem
}

.article-section__ol-item {
    font-size: 16px;
    font-family: var(--text-font);
    color: var(--text-color);
    line-height: 28px
}

.article-section__ul-list {
    margin-bottom: 13px
}

.article-section__ul-item {
    font-size: 16px;
    line-height: 28px;
    font-family: var(--text-font);
    color: var(--text-color)
}

.testimonials {
    padding-top: 120px;
    padding-bottom: 120px
}

@media (max-width: 767px) {
    .testimonials {
        padding-top:90px;
        padding-bottom: 90px
    }
}

.testimonials__auto-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr)
}

@media (max-width: 1000px) {
    .testimonials__auto-container {
        grid-template-columns:1fr;
        row-gap: 20px
    }
}

.testimonials__right {
    grid-column: span 2
}

.left-testimonials {
    padding-right: 50px
}

.left-testimonials__label {
    color: var(--violet-color);
    color: #7f00ff;
    margin-bottom: 15px;
    font-family: "Manrope";
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    text-transform: uppercase
}

.left-testimonials__title {
    font-family: var(--title-font);
    font-size: 40px;
    color: var(--title-color);
    font-weight: 700;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    margin-bottom: 17px
}

@media (max-width: 767px) {
    .left-testimonials__title {
        font-size:34px
    }
}

@media (max-width: 489px) {
    .left-testimonials__title {
        font-size:30px
    }
}

.left-testimonials__text {
    font-family: var(--text-font);
    color: var(--text-color);
    font-weight: 400;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.left-testimonials__navigation {
    display: none
}

@media (min-width: 1200px) {
    .left-testimonials__navigation {
        display:-webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 20px;
        padding-top: 40px
    }
}

.left-testimonials__swiper-button-prev {
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 78px;
    background: #fff;
    text-align: center;
    font-size: 24px;
    color: var(--title-color);
    -webkit-box-shadow: 0px 5px 40px 20px rgba(0,0,0,0.05);
    box-shadow: 0px 5px 40px 20px rgba(0,0,0,0.05);
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    cursor: pointer
}

@media (any-hover: hover) {
    .left-testimonials__swiper-button-prev:hover {
        background-color:var(--violet-color)
    }

    .left-testimonials__swiper-button-prev:hover span {
        color: #fff
    }
}

.left-testimonials__swiper-button-next {
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 78px;
    background: #fff;
    text-align: center;
    font-size: 24px;
    color: var(--title-color);
    -webkit-box-shadow: 0px 5px 40px 20px rgba(0,0,0,0.05);
    box-shadow: 0px 5px 40px 20px rgba(0,0,0,0.05);
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    cursor: pointer
}

@media (any-hover: hover) {
    .left-testimonials__swiper-button-next:hover {
        background-color:var(--violet-color)
    }

    .left-testimonials__swiper-button-next:hover span {
        color: #fff
    }
}

.right-testimonials__swiper-wrapper {
    padding: 12px
}

.right-testimonials__swiper-slide {
    background-color: #fff;
    -webkit-box-shadow: 0px 10px 40px 0px rgba(0,0,0,0.05);
    box-shadow: 0px 10px 40px 0px rgba(0,0,0,0.05);
    padding: 40px 40px 40px 40px;
    margin: 10px
}

.right-testimonials__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px
}

.right-testimonials__image img {
    border-radius: 50%
}

.right-testimonials__title {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: var(--title-color);
    margin: 0px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.right-testimonials__position {
    font-size: 16px;
    line-height: 22px;
    color: #676767
}

.right-testimonials__rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
    margin-bottom: 15px
}

.right-testimonials__rating i {
    color: #ffb13d
}

.right-testimonials__text {
    font-family: var(--text-font);
    color: var(--text-color);
    font-weight: 400;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    line-height: 28px
}

.contacts-wrap {
    padding-top: 150px;
    padding-bottom: 120px
}

@media (max-width: 767.98px) {
    .contacts-wrap {
        padding-top:90px;
        padding-bottom: 70px
    }
}

.contact-us__block-header {
    text-align: center;
    margin-bottom: 70px
}

.contact-us__label {
    color: #7f00ff;
    text-align: center;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    text-transform: uppercase;
    margin-bottom: 15px
}

.contact-us__title {
    color: #141417;
    font-family: Manrope;
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: 52px
}

@media (max-width: 767px) {
    .contact-us__title {
        font-size:36px
    }
}

@media (max-width: 489px) {
    .contact-us__title {
        font-size:32px
    }
}

.our-contacts {
    margin-bottom: 90px
}

.our-contacts__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 30px
}

@media (max-width: 867px) {
    .our-contacts__items {
        grid-template-columns:repeat(2, 1fr)
    }
}

@media (max-width: 589px) {
    .our-contacts__items {
        grid-template-columns:repeat(1, 1fr)
    }
}

.our-contacts__img {
    margin-bottom: 5px
}

.our-contacts__img i {
    font-size: 22px
}

.our-contacts__sub-title {
    font-family: var(--title-font);
    font-weight: 700;
    color: var(--title-color);
    margin: 0px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    font-size: 32px
}

@media (max-width: 767px) {
    .our-contacts__sub-title {
        font-size:28px
    }
}

@media (max-width: 567px) {
    .our-contacts__sub-title {
        font-size:26px
    }
}

.our-contacts__text {
    font-family: var(--text-font);
    color: var(--text-color);
    font-weight: 400;
    margin: 0px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    line-height: 28px
}

.our-contacts__text a {
    color: var(--bs-link-color)
}

.map-section {
    text-align: center
}

.map-section iframe {
    width: 70vw;
    height: 50vh
}

:root {
    --theme-color: #eb292c;
    --secondary-color: #0a0f20;
    --pink-color: #ffc0cb;
    --violet-color: #7f00ff;
    --crimson-color: #dc143c;
    --orange-color: #ffa500;
    --text-color: #676767;
    --title-color: #141417;
    --text-font: "Inter", sans-serif;
    --title-font: "Manrope", sans-serif;
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-black: #000;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-primary-rgb: 13, 110, 253;
    --bs-secondary-rgb: 108, 117, 125;
    --bs-success-rgb: 25, 135, 84;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 255, 193, 7;
    --bs-danger-rgb: 220, 53, 69;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 33, 37, 41;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-color-rgb: 33, 37, 41;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #212529;
    --bs-body-bg: #fff;
    --bs-border-width: 1px;
    --bs-border-style: solid;
    --bs-border-color: #dee2e6;
    --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
    --bs-border-radius: 0.375rem;
    --bs-border-radius-sm: 0.25rem;
    --bs-border-radius-lg: 0.5rem;
    --bs-border-radius-xl: 1rem;
    --bs-border-radius-2xl: 2rem;
    --bs-border-radius-pill: 50rem;
    --bs-link-color: #0d6efd;
    --bs-link-hover-color: #0a58ca;
    --bs-code-color: #d63384;
    --bs-highlight-bg: #fff3cd
}

body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: var(--text-font)
}

h1,h2,h3,h4,h5,h6,button {
    font-family: var(--title-font)
}

.page-title {
    text-align: center;
    padding-top: 160px;
    font-family: var(--title-font);
    font-weight: 700;
    color: var(--title-color);
    font-size: 40px;
    margin-bottom: 25px
}

@media (max-width: 767px) {
    .page-title {
        font-size:30px;
        padding-top: 135px
    }
}

@media (max-width: 489px) {
    .page-title {
        font-size:27px;
        padding-top: 125px
    }
}

.scroll-to-top {
    position: fixed;
    right: 0px;
    bottom: 100px;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    z-index: 99
}

@media (max-width: 767px) {
    .scroll-to-top {
        right:-25px
    }
}

.scroll-to-top .visible {
    visibility: visible !important;
    opacity: 1 !important
}

.scroll-to-top .scroll-top-inner {
    opacity: 0;
    visibility: hidden
}

.scroll-to-top .scroll-top-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    -o-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s
}

.scroll-to-top .scroll-bar {
    width: 50px;
    height: 2px;
    margin-right: 10px;
    position: relative
}

.scroll-to-top .scroll-bar:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #f4244f;
    opacity: 0.3
}

.scroll-to-top .scroll-bar .bar-inner {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background-color: #383b43
}

.scroll-to-top .scroll-bar-text {
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    color: var(--violet-color);
    text-shadow: 0px 1px 0px #fff;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.scroll-to-top .scroll-bar-text:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1)
}

.contact-form-section {
  padding: 50px 0;
  background-color: #f9f9f9;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

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

.contact-form .form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.contact-form .form-group textarea {
  resize: vertical;
  height: 150px;
}

.contact-form .btn-submit {
  display: inline-block;
  background-color: #5cb85c;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form .btn-submit:hover {
  background-color: #4cae4c;
}
