:root {
    --ttx-body-font-family: 'Montserrat', sans-serif;
    --ttx-heading-font-family: 'Unbounded', sans-serif;
    --ttx-primary-color: #6cdad3;
    --ttx-secondary-color: #029c9d;
    --ttx-body-font-color: #BEBEBE;
    --ttx-heading-font-color: #ffffff;
    --ttx-paragraph-color: #e7e7e7;
    --ttx-body-font-size: 16px;
    --ttx-body-font-weight: 400;
    --ttx-heading-font-weight: 700;
    --ttx-primary-body-background: #494c5c;
    --ttx-secondary-body-background: #83a1c5;
    --ttx-black-bg: #1e2028;
    --ttx-blue: #0d6efd;
    --ttx-indigo: #6610f2;
    --ttx-purple: #6f42c1;
    --ttx-pink: #d63384;
    --ttx-red: #dc3545;
    --ttx-orange: #fd7e14;
    --ttx-yellow: #ffc107;
    --ttx-green: #198754;
    --ttx-teal: #20c997;
    --ttx-cyan: #0dcaf0;
    --ttx-white: #ffffff;
    --ttx-black: #141416;
    --ttx-gray: #E3E3E3;
    --black-bg: #1A1A1C;
}

body {
    font-family: var(--ttx-body-font-family);
    font-weight: var(--ttx-body-font-weight);
    font-size: var(--ttx-body-font-size);
    line-height: 30px;
    color: var(--ttx-body-font-color);
    font-style: normal;
}

.section-title {
    position: relative;
    display: block;
    margin-top: -8px;
    padding-bottom: 55px;
}

.section-title h5 {
    color: var(--ttx-primary-color);
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.section-title h2 {
    color: var(--ttx-white);
    font-size: 48px;
    line-height: 1.2em;
    margin: 12px 0 0;
}

ul,
li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

img {
    max-width: 100%;
    transition: all 0.3s ease-out 0s;
}

a,
button {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    text-decoration: none;
}

a:focus,
button:focus {
    text-decoration: none;
    outline: none;
    box-shadow: none;
}

a:hover,
.footer -menu li a:hover {
    color: var(--ttx-primary-color);
    text-decoration: none;
}

a,
button {
    color: var(--ttx-primary-color);
    outline: medium none;
    text-decoration: none;
}

button:focus,
input:focus,
input:focus {
    outline: 0
}

h2,
h3,
h4,
h5 {
    font-family: var(--ttx-heading-font-family);
    color: var(--ttx-heading-font-color);
    margin-top: 0px;
    margin-bottom: 0;
    font-style: normal;
    line-height: 1.2em;
    font-weight: var(--ttx-heading-font-weight);
    text-transform: inherit;
}

h2 a {
    color: inherit;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

p {
    font-size: var(--ttx-body-font-size);
    font-weight: var(--ttx-body-font-weight);
    line-height: 30px;
    color: var(--ttx-paragraph-color);
    margin-bottom: 0;
}

label {
    color: var(--ttx-body-font-color);
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
}

*::-moz-selection {
    background: var(--ttx-primary-color);
    color: var(--ttx-white);
    text-shadow: none;
}

::-moz-selection {
    background: var(--ttx-primary-color);
    color: var(--ttx-white);
    text-shadow: none;
}

::selection {
    background: var(--ttx-primary-color);
    color: var(--ttx-white);
    text-shadow: none;
}

*::-moz-placeholder {
    color: var(--ttx-body-font-color);
    font-size: var(--ttx-body-font-size);
    opacity: 1;
}

.container {
    max-width: 1320px;
    padding-left: 15px;
    padding-right: 15px;
}

.row {
    --bs-gutter-x: 30px;
}

.fix {
    overflow: hidden
}

#preloader {
    background-color: #fff;
    height: 100%;
    width: 100%;
    position: fixed;
    margin-top: 0px;
    top: 0px;
    z-index: 999;
}

#loading-center {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 75px;
    display: inline-block;
    vertical-align: middle;
}

.loader .loader-outter {
    position: absolute;
    border: 2px solid var(--ttx-primary-color);
    border-left-color: transparent;
    border-bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-animation: loader-outter 1s cubic-bezier(.42, .61, .58, .41) infinite;
    animation: loader-outter 1s cubic-bezier(.42, .61, .58, .41) infinite;
}

.loader .loader-inner {
    position: absolute;
    border: 4px solid var(--ttx-primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    left: calc(50% - 20px);
    top: calc(50% - 20px);
    border-right: 0;
    border-top-color: transparent;
    -webkit-animation: loader-inner 1s cubic-bezier(.42, .61, .58, .41) infinite;
    animation: loader-inner 1s cubic-bezier(.42, .61, .58, .41) infinite;
}

@-webkit-keyframes loader-outter {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loader-outter {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes loader-inner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@keyframes loader-inner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

.button-style-1 {
    gap: 15px;
    z-index: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 40px;
    border-radius: 5px;
    padding: 10px 30px;
    position: relative;
    display: inline-flex ;
    align-items: center;
    justify-content: center;
    color: var(--ttx-black);
    text-transform: uppercase;
    overflow: hidden;
    letter-spacing: 1.28px;
    background-color: var(--ttx-primary-color);
    font-family: var(--ttx-heading-font-family);
}

.button-style-1:before,
.button-style-1:after {
    content: " ";
    display: block;
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    background-color: var(--ttx-secondary-color);
}

.button-style-1:before {
    transform: translateX(-100%);
    z-index: -1;
}

.button-style-1:hover:before {
    transform: translateX(0);
    transition: transform 350ms ease;
}

.button-style-1:after {
    z-index: -1;
    transform: translateX(100%);
    transition: none;
    transition: transform 350ms ease;
}

.button-style-1:hover:after {
    opacity: -1;
    transform: translateX(0);
    transition: transform 350ms 360ms ease;
}

.button-style-1:hover {
    color: var(--ttx-white);
    box-shadow: 0px 0px 20px #459A9C;
}

.button-style-1.secondary-white {
    background-color: var(--ttx-primary-body-background);
    color: var(--ttx-white);
}

.secondary-white:before,
.secondary-white:after {
    background-color: var(--ttx-white);
}

.button-style-1.secondary-white:hover {
    color: var(--ttx-black);
}

[type=button]:disabled, [type=reset]:disabled, [type=submit]:disabled, button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.body-dark-bg {
    background-color: var(--ttx-primary-body-background);
}

.nav-logo img {
    width: 150px;
}

.mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    padding-right: 30px;
    max-width: 100%;
    height: 100vh;
    z-index: 99;
    border-radius: 0px;
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -ms-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86)e;
    -o-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
}

.mobile-menu .nav-logo {
    position: relative;
    padding: 30px 25px;
    text-align: left;
}

.mobile-menu-visible {
    overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.menu-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -webkit-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.5);
}

.mobile-menu-visible .menu-backdrop {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .menu-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    background: var(--ttx-white);
    padding: 0px 0px;
    z-index: 5;
    box-shadow: -9px 0 14px 0px rgb(0 0 0 / 6%);
}

.mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .close-btn {
    position: absolute;
    right: 15px;
    top: 28px;
    line-height: 30px;
    width: 35px;
    text-align: center;
    font-size: 20px;
    color: #292b37;
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
}

.mobile-menu-visible .mobile-menu .close-btn {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.mobile-menu .navigation {
    position: relative;
    display: block;
    width: 100%;
    float: none;
    margin: 0;
    padding: 0;
}

.mobile-menu .navigation li {
    position: relative;
    display: block;
    border-top: 1px solid rgb(0 0 0 / 10%);
}

.mobile-menu .navigation:last-child {
    border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.mobile-menu .navigation li>a {
    position: relative;
    display: block;
    line-height: 24px;
    padding: 10px 60px 10px 25px;
    font-size: 16px;
    font-weight: 700;
    color: var(--ttx-black);
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: none;
}

.mobile-menu .navigation li>a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.menu-area .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
    color: var(--ttx-white);
    display: none;
    padding: 29px 0 30px;
    z-index: 1;
}

.mobile-menu .contact-info {
    position: relative;
    display: flex;
    align-items: center;
    padding: 30px 25px 0px;
}

.mobile-menu .contact-info .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: var(--ttx-primary-color);
    border-radius: 50%;
}

.mobile-menu .contact-info .icon-box span {
    position: relative;
    display: inline-block;
    color: var(--ttx-white);
    font-size: 15px;
    line-height: 15px;
}

.mobile-menu .contact-info p {
    margin: 0;
    margin-left: 15px;
}

.mobile-menu .contact-info p a {
    color: var(--ttx-black);
}

.mobile-menu .contact-info p a:hover {
    color: var(--ttx-primary-color);
}

@keyframes menu_sticky {
    0% {
        margin-top: -90px;
    }

    50% {
        margin-top: -50px;
    }

    100% {
        margin-top: 0;
    }
}

.sticky-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin: auto;
    background: #1a1a1c85;
    -webkit-animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
    -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    border-radius: 0;
    z-index: 99;
    animation-name: menu_sticky;
    animation-duration: 0.60s;
    animation-timing-function: ease-out;
    transition: all .25s ease-in-out;
    filter: unset;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.sticky-menu .navbar-wrap ul li a {
    padding: 35px 0;
}

.main-header {
    position: relative;
    display: block;
    width: 100%;
    z-index: 99;
}

.menu-wrap {
    position: relative;
    display: block;
}

.menu-area__inner {
    position: relative;
    display: block;
}

.menu-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo-box-one {
    position: relative;
    display: flex;
}

.logo-box-one a {
    position: relative;
    display: inline-block;
}

.logo-box-one a img {
    width: 150px;
}

.navbar-wrap {
    position: relative;
}

.navbar-wrap ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 0;
    margin: 0 0 0 auto;
}

.navbar-wrap ul li {
    position: relative;
    display: block;
    list-style: none;
}

.navbar-wrap ul li+li {
    margin-left: 30px;
}

.navbar-wrap ul li a {
    position: relative;
    display: block;
    color: var(--ttx-white);
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    padding: 45px 0;
    z-index: 1;
}

.navbar-wrap>ul>li:hover>a {
    color: var(--ttx-primary-color);
}

.menu-nav__right {
    position: relative;
    display: block;
}

.contact-info-box-one {
    position: relative;
    display: flex;
    align-items: center;
}

.contact-info-box-one .icon {
    position: relative;
    display: block;
}

.contact-info-box-one .icon img {
    width: 50px;
}

.contact-info-box-one .text {
    position: relative;
    margin-left: 15px;
    padding-top: 14px;
    flex: 1;
}

.contact-info-box-one .text p {
    color: var(--ttx-white);
    font-size: 15.2px;
    line-height: 10px;
    margin: 0 0 5px;
}

.contact-info-box-one .text a {
    color: var(--ttx-white);
    font-size: 22.5px;
    line-height: 25px;
    font-weight: 800;
    font-family: var(--ttx-heading-font-color);
}

.contact-info-box-one .text a:hover {
    color: var(--ttx-primary-color);
}

.main-header-block {
    position: absolute;
    top: 0;
    left: 0;
}

.banner {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.banner__single {
    position: relative;
    display: block;
    padding: 282px 0 295px;
}

.banner .shape {
    position: absolute;
    left: 0;
    right: 0;
    height: 30px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.banner__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--ttx-black-bg);
    background-blend-mode: luminosity;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    transition: transform 7000ms ease, opacity 1500ms ease-in;
    transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    z-index: -1;
}

.banner .swiper-slide-active .banner__bg {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.banner__bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #141416;
    opacity: 0.80;
}

.banner__bg:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(20, 20, 22, 0.00) 0%, #141416 100%);
}

.banner__content {
    position: relative;
    display: block;
    text-align: center;
    padding-top: 70px;
}

.banner__content .big-title {
    position: relative;
    display: block;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(-120px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-120px);
    transform: perspective(400px) rotateY(0deg) translateY(-120px);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    z-index: 10;
}

.banner .swiper-slide-active .banner__content .big-title {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 700ms;
    -moz-transition-delay: 700ms;
    -ms-transition-delay: 700ms;
    -o-transition-delay: 700ms;
    transition-delay: 700ms;
}

.banner__content .big-title h2 {
    color: var(--ttx-white);
    font-size: 80px;
    line-height: 1.1em;
    font-weight: 800;
    text-transform: uppercase;
}

.banner__content .big-title h2 a.button-style-1{
    top: -15px;
    position: relative;
    border-radius: 30px;
}

.services {
    position: relative;
    display: block;
    padding: 120px 0 0px;
    z-index: 1;
    background: rgb(21,21,23);
    background: -moz-linear-gradient(180deg, rgba(21,21,23,1) 0%, rgba(73,76,92,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(21,21,23,1) 0%, rgba(73,76,92,1) 100%);
    background: linear-gradient(180deg, rgba(21,21,23,1) 0%, rgba(73,76,92,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#151517",endColorstr="#494c5c",GradientType=1);
}

.services__single {
    position: relative;
    display: block;
    background-color: var(--ttx-black-bg);
    padding: 40px;
    border-radius: 5px;
    margin-bottom: 30px;
    z-index: 1;
    transition: all .3s ease-in-out;
}

.services__single::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    height: 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background-color: var(--ttx-black-bg);
    border-bottom: 1px solid var(--ttx-primary-color);
    opacity: 0;
    visibility: hidden;
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
    -webkit-transform: scalex(0) translateZ(100px);
    transform: scalex(0) translateZ(100px);
    -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
    transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
    transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
    transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
    z-index: -1;
}

.services__single:hover::before {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scalex(1) translateZ(1px);
    transform: scalex(1) translateZ(1px);
}

.services__single-title {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.services__single-title .icon {
    position: relative;
    display: block;
    width: 80px;
    line-height: 0;
}

.services__single-title .icon span {
    position: relative;
    display: inline-block;
    color: var(--ttx-white);
    font-size: 50px;
    line-height: 50px;
    transition: all 300ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.services__single:hover .services__single-title .icon span {
    transform: scale(0.9);
    color: var(--ttx-primary-color);
}

.services__single-title h3 {
    font-size: 22px;
    line-height: 27px;
}

.services__single-content {
    position: relative;
    display: block;
    padding-top: 30px;
}

.services__single:hover {
    margin-top: -5px;
}

.about {
    padding: 90px 0 120px;
}

.about__img {
    position: relative;
    display: block;
    padding-right: 55px;
    z-index: 1;
}

.about__shape1 {
    position: absolute;
    top: 40px;
    left: 0;
    z-index: -1;
}

.about__shape1 img {
    filter: contrast(0.1);
    opacity: 0.40;
}

.about__img-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 110px;
    height: 110px;
    margin-left: -50px;
    margin-top: 20px;
    z-index: 2;
    border-radius: 7px;
    background-color: var(--ttx-primary-body-background);
    padding-top: 19px;
    text-align: center;
}

.about__img-icon img {
    width: 70px;
    height: 70px;
    position: relative;
}

.about__img-top {
    position: relative;
    display: block;
    padding-left: 55px;
}

.about__img-top ul {
    position: relative;
    display: flex;
    align-items: flex-end;
    margin-left: -5px;
    margin-right: -5px;
}

.about__img-top ul li {
    position: relative;
    display: block;
    float: left;
    padding: 0 5px 0;
    margin-bottom: 10px;
}

.about__single-img-box {
    position: relative;
    display: block;
    z-index: 1;
}

.about__img-top li:nth-child(1) .about__single-img-box::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    bottom: 0px;
    right: 0px;
    background-color: var(--ttx-primary-color);
    border-radius: 60px 0px 0px 0px;
    z-index: -1;
}

.about__single-img-box .inner {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.about__img-top li:nth-child(1) .about__single-img-box .inner {
    width: 206px;
}

.about__single-img-box .inner img {
    width: 100%;
    filter: url(data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale);
    -webkit-filter: grayscale(100%);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.about__single-img-box .inner img:hover {
    filter: none;
    -webkit-filter: none;
}

.about__img-top li:nth-child(1) .about__single-img-box .inner img {
    border-radius: 50px 0px 0px 0px;
}

.about__img-top li:nth-child(1) .about__single-img-box .inner::before img {
    border-radius: 60px 0px 0px 0px;
}

.about__img-top li:nth-child(2) .about__single-img-box .inner img {
    border-radius: 80px 10px;
}

.about__img-bottom {
    position: relative;
    display: block;
    padding-right: 50px;
}

.about__img-bottom ul {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-left: -5px;
    margin-right: -5px;
}

.about__img-bottom ul li {
    position: relative;
    display: block;
    float: left;
    padding: 0 5px 0;
}

.about__img-bottom ul li:nth-child(1) .about__single-img-box .inner img {
    border-radius: 50px 10px;
}

.about__img-bottom ul li:nth-child(2) .about__single-img-box .inner img {
    border-radius: 10px;
    border-bottom-right-radius: 80px;
}

.about__content {
    position: relative;
    display: block;
    padding-top: 30px;
}

.about__content .section-title {
    padding-bottom: 37px;
}

.about__content-text {
    position: relative;
    display: block;
}

.about__content-text .bottom-text {
    position: relative;
    display: block;
    padding-top: 42px;
}

.drone-block {
    position: relative;
    display: block;
    padding: 0px 0px 90px;
    z-index: 1;

    background-color: #060606;
    min-height: 100vh;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.7) 20%, transparent 30%), radial-gradient(circle, rgba(255, 255, 255, 0.7) 20%, transparent 30%), radial-gradient(circle, rgba(255, 255, 255, 0.7) 20%, transparent 30%),
        radial-gradient(circle, rgba(255, 255, 255, 0.7) 20%, transparent 30%), radial-gradient(circle, rgba(255, 255, 255, 0.7) 20%, transparent 30%), radial-gradient(circle, rgba(255, 255, 255, 0.7) 20%, transparent 30%),
        radial-gradient(circle, rgba(255, 255, 255, 0.7) 20%, transparent 30%), radial-gradient(circle, rgba(255, 255, 255, 0.7) 20%, transparent 30%), radial-gradient(circle, rgba(255, 255, 255, 0.7) 20%, transparent 30%),
        radial-gradient(circle, rgba(255, 255, 255, 0.7) 20%, transparent 30%), radial-gradient(circle, rgba(255, 255, 255, 0.7) 20%, transparent 30%), radial-gradient(circle, rgba(255, 255, 255, 0.7) 20%, transparent 30%),
        radial-gradient(circle, rgba(255, 255, 255, 0.7) 20%, transparent 30%), radial-gradient(circle, rgba(255, 255, 255, 0.7) 20%, transparent 30%), radial-gradient(circle, rgba(255, 255, 255, 0.7) 20%, transparent 30%),
        radial-gradient(circle, rgba(255, 255, 255, 0.7) 20%, transparent 30%), radial-gradient(circle, rgba(255, 255, 255, 0.7) 20%, transparent 30%), radial-gradient(circle, rgba(255, 255, 255, 0.7) 20%, transparent 30%);
    background-size: 4px 4px, 3px 3px, 5px 5px, 3px 3px, 6px 6px, 4px 4px, 5px 5px, 4px 4px, 6px 6px, 3px 3px, 5px 5px, 4px 4px, 3px 3px, 6px 6px, 5px 5px, 4px 4px, 5px 5px, 6px 6px;
    background-position: 20% 10%, 5% 20%, 10% 75%, 22% 35%, 30% 30%, 40% 50%, 45% 20%, 65% 20%, 85% 30%, 98% 90%, 20% 80%, 50% 80%, 75% 80%, 89% 75%, 90% 95%, 60% 70%, 65% 40%, 90% 20%;
    background-repeat: no-repeat;
    animation: night_stars ease-in 0.3s infinite;
}

@keyframes night_stars {
    to {
        background-image: radial-gradient(circle, rgba(255, 255, 255, 0.7) 20%, transparent 30%), radial-gradient(circle, #fff 20%, transparent 30%), radial-gradient(circle, rgba(255, 255, 255, 0.7) 20%, transparent 30%),
            radial-gradient(circle, rgba(255, 255, 255, 0.7) 20%, transparent 30%), radial-gradient(circle, #fff 20%, transparent 30%), radial-gradient(circle, rgba(255, 255, 255, 0.7) 20%, transparent 30%),
            radial-gradient(circle, rgba(255, 255, 255, 0.7) 20%, transparent 30%), radial-gradient(circle, #fff 20%, transparent 30%), radial-gradient(circle, rgba(255, 255, 255, 0.7) 20%, transparent 30%),
            radial-gradient(circle, #fff 20%, transparent 30%), radial-gradient(circle, rgba(255, 255, 255, 0.7) 20%, transparent 30%), radial-gradient(circle, #fff 20%, transparent 30%),
            radial-gradient(circle, rgba(255, 255, 255, 0.7) 20%, transparent 30%), radial-gradient(circle, rgba(255, 255, 255, 0.7) 20%, transparent 30%), radial-gradient(circle, #fff 20%, transparent 30%),
            radial-gradient(circle, rgba(255, 255, 255, 0.7) 20%, transparent 30%), radial-gradient(circle, #fff 20%, transparent 30%), radial-gradient(circle, #fff 20%, transparent 30%);
    }
}

.drone-block__top {
    position: relative;
    display: block;
    padding: 0px 0px 250px;
    background: rgb(73, 76, 92);
    background: -moz-linear-gradient(180deg, rgba(73, 76, 92, 1) 0%, rgba(6, 6, 6, 1) 80%);
    background: -webkit-linear-gradient(180deg, rgba(73, 76, 92, 1) 0%, rgba(6, 6, 6, 1) 80%);
    background: linear-gradient(180deg, rgba(73, 76, 92, 1) 0%, rgba(6, 6, 6, 1) 80%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#494c5c", endColorstr="#060606", GradientType=1);
}

.drone-block__bottom {
    position: relative;
    display: block;
    padding: 0px 0px 50px;
    background: rgb(73, 76, 92);
    background: -moz-linear-gradient(180deg, rgba(6, 6, 6, 1) 0%, rgba(73, 76, 92, 1) 80%);
    background: -webkit-linear-gradient(180deg, rgba(6, 6, 6, 1) 0%, rgba(73, 76, 92, 1) 80%);
    background: linear-gradient(180deg, rgba(6, 6, 6, 1) 0%, rgba(73, 76, 92, 1) 80%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#494c5c", endColorstr="#060606", GradientType=1);
}

.drone_img {
    position: absolute;
    top: 20%;
    height: 300px;
    right: 0;
}

.quadrocopter_and_camera_img {
    position: absolute;
    top: 60%;
    width: 200px;
    height: auto;
    z-index: 0;
    right: 10%;
    opacity: .7;
}

.drone_list ul {
    position: relative;
    display: block;
}

.drone_list ul li {
    position: relative;
    display: block;
    padding-left: 26px;
    margin-bottom: 15px;
}

.drone_list ul li:last-child {
    margin-bottom: 0;
}

.drone_list ul li .icon-box {
    position: absolute;
    top: 2px;
    left: 0;
}

.drone_list ul li .icon-box span {
    position: relative;
    display: inline-block;
    color: var(--ttx-secondary-color);
    font-size: 19px;
}

.drone_list ul li p {
    color: var(--ttx-white);
    font-size: var(--ttx-body-font-size);
    line-height: 27px;
    font-family: var(--ttx-heading-font-family);
}

.drone_list ul li p span {
    font-weight: 700;
}

.modal__window {
    border-radius: 5px;
    padding: 30px 30px;
}

.modal__styled {
    font-size: 16px;
    line-height: 1.5;
}

.modal__styled img {
    display: block;
    margin-bottom: 0.8em;
    max-width: 100%;
}

.modal__styled button {
    background-color: #000;
    color: #fff;
    border: none;
    font-weight: bold;
    margin: 1em 0;
    padding: 10px 30px;

}

.modal__window--form {
    width: 440px;
    max-width: 100%;
    background: linear-gradient(216.25deg, #FFFFFF 0%, #F3F3F3 100%), #FCFCFC;
    box-shadow: 0px 0px 6px rgba(51, 66, 94, 0.5);
    padding: 40px 30px;
}

.modal__header {
    color: #2E3C56;
    font-weight: 600;
    font-size: 26px;
    line-height: 36px;
    text-align: center;
    font-family: var(--ttx-heading-font-family);
}

.modal__subheader {
    margin-bottom: 30px;
    color: #2E3C56;
    font-weight: 500;
    font-size: 19px;
    line-height: 23px;
    text-align: center;
}

.formitem {
    padding-bottom: 24px;
    position: relative;
}

.formitem input {
    display: block;
    outline: none;
    background: #FFFFFF;
    border: 1px solid var(--ttx-body-font-color);
    box-sizing: border-box;
    color: var(--ttx-primary-body-background);
    font-size: 16px;
    box-sizing: border-box;
    font-weight: 400;
    font-style: normal;
    padding-left: 30px;
    padding-right: 20px;
    border-radius: 5px;
    transition: all 500ms ease;
    width: 100%;
    height: 70px;
}

.formitem input:focus {
    border-color: #9d9fa3;
}

.modal .agree__bottom {
    justify-content: space-between;
    padding-bottom: 24px;
}

.cta .agree__bottom {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    padding-top: 13px;
    align-items: normal;
    align-content: normal;
}

.formcheckbox {
    position: relative;
    display: block;
    cursor: pointer;
}

.formcheckbox input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
}

.modal .formcheckbox input+span {
    display: flex;
    height: 21px;
    color: var(--ttx-primary-body-background);
    font-size: 12px;
    line-height: 21px;
    position: relative;
    align-items: center;
    user-select: none;
}

.cta .formcheckbox input+span {
    display: flex;
    height: 21px;
    color: var(--ttx-white);
    font-size: 12px;
    line-height: 21px;
    position: relative;
    align-items: center;
    user-select: none;
}

.modal .formcheckbox input:checked+span {
    color: var(--ttx-primary-body-background);
}

.cta .formcheckbox input:checked+span {
    color: var(--ttx-white);
}

.checkplace {
    display: flex;
    background: var(--ttx-white);
    border: 1px solid #DDE0E6;
    box-sizing: border-box;
    width: 18px;
    height: 18px;
    margin-right: 1rem;
}

.checkplace img {
    display: block;
    max-width: 90%;
    max-height: 95%;
    margin: auto;
    opacity: 0;
}

.formcheckbox input:checked+span .checkplace {
    border-color: #9d9fa3;
}

.formcheckbox input:checked+span .checkplace img {
    opacity: 1;
}

.formsubmit {
    text-align: center;
}

.modal__shadow {
    position: fixed;
    border: none;
    display: block;
    width: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 98;
    opacity: 0;
    transition: opacity 0.15s ease;
    background-color: black;
}

.modal__shadow--show {
    pointer-events: auto;
    opacity: 0.6;
}

.modal {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 1;
    pointer-events: none;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    z-index: 99;
    visibility: hidden;
}

.modal--active {
    opacity: 1;
}

.modal--active {
    pointer-events: auto;
    visibility: visible;
}

.modal__wrap {
    flex-shrink: 0;
    flex-grow: 0;
    width: 100%;
    min-height: 100%;
    margin: auto;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
}

.modal__window {
    margin: 50px 0;
    box-sizing: border-box;
    flex-shrink: 0;
    flex-grow: 0;
    background: #fff;
    max-width: 400px;
    overflow: visible;
    transition: transform 0.2s ease 0s, opacity 0.2s ease 0s;
    transform: scale(0.9);
    opacity: 0;
}

.modal--active .modal__window {
    transform: scale(1);
    opacity: 1;
}

.modal__close {
    position: absolute;
    z-index: 10;
    top: 13px;
    right: 13px;
    display: block;
    width: 18px;
    height: 18px;
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' stroke='%23000' stroke-linecap='square' stroke-miterlimit='50' stroke-width='2' d='M22 2L2 22'/%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='square' stroke-miterlimit='50' stroke-width='2' d='M2 2l20 20'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    border: none;
    font-size: 0;
    cursor: pointer;
    outline: none;
}

.content-list-box-single {
    position: relative;
    display: block;
    padding: 20px;
}

.content-list-box-single ul {
    position: relative;
    display: block;
}

.content-list-box-single ul li {
    position: relative;
    display: block;
    padding-left: 45px;
    margin-bottom: 15px;
}

.content-list-box-single ul li:last-child {
    margin-bottom: 0;
}

.content-list-box-single ul li .icon-box {
    position: absolute;
    top: 2px;
    left: 0;
}

.content-list-box-single ul li .icon-box span {
    position: relative;
    display: inline-block;
    color: var(--ttx-secondary-color);
    font-size: 25px;
}

.content-list-box-single ul li:nth-child(1) .icon-box span {
    color: #ff9c88;
}

.content-list-box-single ul li:nth-child(2) .icon-box span {
    color: #ff7863;
}

.content-list-box-single ul li:nth-child(3) .icon-box span {
    color: #ff4e40;
}

.content-list-box-single ul li p {
    color: var(--ttx-white);
    font-size: var(--ttx-body-font-size);
    font-weight: var(--ttx-body-font-weight);
    line-height: 27px;
    font-family: var(--ttx-heading-font-family);
}

@-webkit-keyframes glitch-anim-2 {
    0% {
        -webkit-clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
        clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
        opacity: 1;
        -webkit-transform: translateZ(0) rotate(-2deg);
        transform: translateZ(0) rotate(-2deg);
    }
    2% {
        -webkit-clip-path: polygon(0 78%, 100% 78%, 100% 100%, 0 100%);
        clip-path: polygon(0 78%, 100% 78%, 100% 100%, 0 100%);
        -webkit-transform: translate(-5px) rotate(-2deg);
        transform: translate(-5px) rotate(-2deg);
    }
    6% {
        -webkit-clip-path: polygon(0 78%, 100% 78%, 100% 100%, 0 100%);
        clip-path: polygon(0 78%, 100% 78%, 100% 100%, 0 100%);
        -webkit-transform: translate(5px) rotate(-2deg);
        transform: translate(5px) rotate(-2deg);
    }
    8% {
        -webkit-clip-path: polygon(0 78%, 100% 78%, 100% 100%, 0 100%);
        clip-path: polygon(0 78%, 100% 78%, 100% 100%, 0 100%);
        -webkit-transform: translate(-5px) rotate(-2deg);
        transform: translate(-5px) rotate(-2deg);
    }
    9% {
        -webkit-clip-path: polygon(0 78%, 100% 78%, 100% 100%, 0 100%);
        clip-path: polygon(0 78%, 100% 78%, 100% 100%, 0 100%);
        -webkit-transform: translate(0) rotate(-2deg);
        transform: translate(0) rotate(-2deg);
    }
    10% {
        -webkit-clip-path: polygon(0 54%, 100% 54%, 100% 44%, 0 44%);
        clip-path: polygon(0 54%, 100% 54%, 100% 44%, 0 44%);
        -webkit-transform: translate3d(5px, 0, 0) rotate(-2deg);
        transform: translate3d(5px, 0, 0) rotate(-2deg);
    }
    13% {
        -webkit-clip-path: polygon(0 54%, 100% 54%, 100% 44%, 0 44%);
        clip-path: polygon(0 54%, 100% 54%, 100% 44%, 0 44%);
        -webkit-transform: translateZ(0) rotate(-2deg);
        transform: translateZ(0) rotate(-2deg);
    }
    13.1% {
        -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
        clip-path: polygon(0 0, 0 0, 0 0, 0 0);
        -webkit-transform: translate3d(5px, 0, 0) rotate(-2deg);
        transform: translate3d(5px, 0, 0) rotate(-2deg);
    }
    15% {
        -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 40%, 0 40%);
        clip-path: polygon(0 60%, 100% 60%, 100% 40%, 0 40%);
        -webkit-transform: translate3d(5px, 0, 0) rotate(-2deg);
        transform: translate3d(5px, 0, 0) rotate(-2deg);
    }
    20% {
        -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 40%, 0 40%);
        clip-path: polygon(0 60%, 100% 60%, 100% 40%, 0 40%);
        -webkit-transform: translate3d(-5px, 0, 0) rotate(-2deg);
        transform: translate3d(-5px, 0, 0) rotate(-2deg);
    }
    20.1% {
        -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
        clip-path: polygon(0 0, 0 0, 0 0, 0 0);
        -webkit-transform: translate3d(5px, 0, 0) rotate(-2deg);
        transform: translate3d(5px, 0, 0) rotate(-2deg);
    }
    25% {
        -webkit-clip-path: polygon(0 85%, 100% 85%, 100% 40%, 0 40%);
        clip-path: polygon(0 85%, 100% 85%, 100% 40%, 0 40%);
        -webkit-transform: translate3d(5px, 0, 0) rotate(-2deg);
        transform: translate3d(5px, 0, 0) rotate(-2deg);
    }
    30% {
        -webkit-clip-path: polygon(0 85%, 100% 85%, 100% 40%, 0 40%);
        clip-path: polygon(0 85%, 100% 85%, 100% 40%, 0 40%);
        -webkit-transform: translate3d(-5px, 0, 0) rotate(-2deg);
        transform: translate3d(-5px, 0, 0) rotate(-2deg);
    }
    30.1% {
        -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
        clip-path: polygon(0 0, 0 0, 0 0, 0 0) rotate(-2deg);
    }
    35% {
        -webkit-clip-path: polygon(0 63%, 100% 63%, 100% 80%, 0 80%);
        clip-path: polygon(0 63%, 100% 63%, 100% 80%, 0 80%);
        -webkit-transform: translate(-5px) rotate(-2deg);
        transform: translate(-5px) rotate(-2deg);
    }
    40% {
        -webkit-clip-path: polygon(0 63%, 100% 63%, 100% 80%, 0 80%);
        clip-path: polygon(0 63%, 100% 63%, 100% 80%, 0 80%);
        -webkit-transform: translate(5px) rotate(-2deg);
        transform: translate(5px) rotate(-2deg);
    }
    45% {
        -webkit-clip-path: polygon(0 63%, 100% 63%, 100% 80%, 0 80%);
        clip-path: polygon(0 63%, 100% 63%, 100% 80%, 0 80%);
        -webkit-transform: translate(-5px) rotate(-2deg);
        transform: translate(-5px) rotate(-2deg);
    }
    50% {
        -webkit-clip-path: polygon(0 63%, 100% 63%, 100% 80%, 0 80%);
        clip-path: polygon(0 63%, 100% 63%, 100% 80%, 0 80%);
        -webkit-transform: translate(0) rotate(-2deg);
        transform: translate(0) rotate(-2deg);
    }
    55% {
        -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 0, 0 0);
        clip-path: polygon(0 10%, 100% 10%, 100% 0, 0 0);
        -webkit-transform: translate3d(5px, 0, 0) rotate(-2deg);
        transform: translate3d(5px, 0, 0) rotate(-2deg);
    }
    60% {
        -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 0, 0 0);
        clip-path: polygon(0 10%, 100% 10%, 100% 0, 0 0);
        opacity: 1;
        -webkit-transform: translateZ(0) rotate(-2deg);
        transform: translateZ(0) rotate(-2deg);
    }
    60.1% {
        -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
        clip-path: polygon(0 0, 0 0, 0 0, 0 0) rotate(-2deg);
        opacity: 1;
    }
    to {
        -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
        clip-path: polygon(0 0, 0 0, 0 0, 0 0) rotate(-2deg);
        opacity: 1;
    }
}

@keyframes glitch-anim-2 {
    0% {
        -webkit-clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
        clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
        opacity: 1;
        -webkit-transform: translateZ(0) rotate(-2deg);
        transform: translateZ(0) rotate(-2deg);
    }
    2% {
        -webkit-clip-path: polygon(0 78%, 100% 78%, 100% 100%, 0 100%);
        clip-path: polygon(0 78%, 100% 78%, 100% 100%, 0 100%);
        -webkit-transform: translate(-5px) rotate(-2deg);
        transform: translate(-5px) rotate(-2deg);
    }
    6% {
        -webkit-clip-path: polygon(0 78%, 100% 78%, 100% 100%, 0 100%);
        clip-path: polygon(0 78%, 100% 78%, 100% 100%, 0 100%);
        -webkit-transform: translate(5px) rotate(-2deg);
        transform: translate(5px) rotate(-2deg);
    }
    8% {
        -webkit-clip-path: polygon(0 78%, 100% 78%, 100% 100%, 0 100%);
        clip-path: polygon(0 78%, 100% 78%, 100% 100%, 0 100%);
        -webkit-transform: translate(-5px) rotate(-2deg);
        transform: translate(-5px) rotate(-2deg);
    }
    9% {
        -webkit-clip-path: polygon(0 78%, 100% 78%, 100% 100%, 0 100%);
        clip-path: polygon(0 78%, 100% 78%, 100% 100%, 0 100%);
        -webkit-transform: translate(0) rotate(-2deg);
        transform: translate(0) rotate(-2deg);
    }
    10% {
        -webkit-clip-path: polygon(0 54%, 100% 54%, 100% 44%, 0 44%);
        clip-path: polygon(0 54%, 100% 54%, 100% 44%, 0 44%);
        -webkit-transform: translate3d(5px, 0, 0) rotate(-2deg);
        transform: translate3d(5px, 0, 0) rotate(-2deg);
    }
    13% {
        -webkit-clip-path: polygon(0 54%, 100% 54%, 100% 44%, 0 44%);
        clip-path: polygon(0 54%, 100% 54%, 100% 44%, 0 44%);
        -webkit-transform: translateZ(0) rotate(-2deg);
        transform: translateZ(0) rotate(-2deg);
    }
    13.1% {
        -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
        clip-path: polygon(0 0, 0 0, 0 0, 0 0);
        -webkit-transform: translate3d(5px, 0, 0) rotate(-2deg);
        transform: translate3d(5px, 0, 0) rotate(-2deg);
    }
    15% {
        -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 40%, 0 40%);
        clip-path: polygon(0 60%, 100% 60%, 100% 40%, 0 40%);
        -webkit-transform: translate3d(5px, 0, 0) rotate(-2deg);
        transform: translate3d(5px, 0, 0) rotate(-2deg);
    }
    20% {
        -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 40%, 0 40%);
        clip-path: polygon(0 60%, 100% 60%, 100% 40%, 0 40%);
        -webkit-transform: translate3d(-5px, 0, 0) rotate(-2deg);
        transform: translate3d(-5px, 0, 0) rotate(-2deg);
    }
    20.1% {
        -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
        clip-path: polygon(0 0, 0 0, 0 0, 0 0);
        -webkit-transform: translate3d(5px, 0, 0) rotate(-2deg);
        transform: translate3d(5px, 0, 0) rotate(-2deg);
    }
    25% {
        -webkit-clip-path: polygon(0 85%, 100% 85%, 100% 40%, 0 40%);
        clip-path: polygon(0 85%, 100% 85%, 100% 40%, 0 40%);
        -webkit-transform: translate3d(5px, 0, 0) rotate(-2deg);
        transform: translate3d(5px, 0, 0) rotate(-2deg);
    }
    30% {
        -webkit-clip-path: polygon(0 85%, 100% 85%, 100% 40%, 0 40%);
        clip-path: polygon(0 85%, 100% 85%, 100% 40%, 0 40%);
        -webkit-transform: translate3d(-5px, 0, 0) rotate(-2deg);
        transform: translate3d(-5px, 0, 0) rotate(-2deg);
    }
    30.1% {
        -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
        clip-path: polygon(0 0, 0 0, 0 0, 0 0) rotate(-2deg);
    }
    35% {
        -webkit-clip-path: polygon(0 63%, 100% 63%, 100% 80%, 0 80%);
        clip-path: polygon(0 63%, 100% 63%, 100% 80%, 0 80%);
        -webkit-transform: translate(-5px) rotate(-2deg);
        transform: translate(-5px) rotate(-2deg);
    }
    40% {
        -webkit-clip-path: polygon(0 63%, 100% 63%, 100% 80%, 0 80%);
        clip-path: polygon(0 63%, 100% 63%, 100% 80%, 0 80%);
        -webkit-transform: translate(5px) rotate(-2deg);
        transform: translate(5px) rotate(-2deg);
    }
    45% {
        -webkit-clip-path: polygon(0 63%, 100% 63%, 100% 80%, 0 80%);
        clip-path: polygon(0 63%, 100% 63%, 100% 80%, 0 80%);
        -webkit-transform: translate(-5px) rotate(-2deg);
        transform: translate(-5px) rotate(-2deg);
    }
    50% {
        -webkit-clip-path: polygon(0 63%, 100% 63%, 100% 80%, 0 80%);
        clip-path: polygon(0 63%, 100% 63%, 100% 80%, 0 80%);
        -webkit-transform: translate(0) rotate(-2deg);
        transform: translate(0) rotate(-2deg);
    }
    55% {
        -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 0, 0 0);
        clip-path: polygon(0 10%, 100% 10%, 100% 0, 0 0);
        -webkit-transform: translate3d(5px, 0, 0) rotate(-2deg);
        transform: translate3d(5px, 0, 0) rotate(-2deg);
    }
    60% {
        -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 0, 0 0);
        clip-path: polygon(0 10%, 100% 10%, 100% 0, 0 0);
        opacity: 1;
        -webkit-transform: translateZ(0) rotate(-2deg);
        transform: translateZ(0) rotate(-2deg);
    }
    60.1% {
        -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
        clip-path: polygon(0 0, 0 0, 0 0, 0 0) rotate(-2deg);
        opacity: 1;
    }
    to {
        -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
        clip-path: polygon(0 0, 0 0, 0 0, 0 0) rotate(-2deg);
        opacity: 1;
    }
}

.secure__header {
    position: relative;
    background-color: var(--ttx-primary-body-background);
    opacity: .3;
}

.secure__image {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.secure__image img {
    max-width: 100%;
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
    width: 100%;
}

.secure__image .secure__image--glitch-effect {
    background-position: top;
    background-repeat: no-repeat;
    background-size: 100%;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
    width: 100%;
}

.secure__image .secure__image-glitch {
    bottom: 0;
    -webkit-clip-path: url(#section-clip);
    clip-path: url(#section-clip);
    left: 0;
    object-fit: cover;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
}

.secure__image .secure__image-glitch-container {
    height: 100%;
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}

.secure__image-layer {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

.secure__image .secure__image--glitch-effect {
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: glitch-anim-2;
    animation-name: glitch-anim-2;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    display: block;
}

.red-label {
    background-color: #ff0000;
    padding: 4px 9px 5px 9px;
    border-radius: 4px;
    font-weight: 700;
}

.contacts-map {
    height: 28rem;
    margin-bottom: 3rem;
    position: relative;
}

.map-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 5px;
    background-color: #fcfcf7;
}

.map {
    width: 100%;
    height: 100%;
}

.map .ymaps-2-1-79-map-copyrights-promo,
.map .ymaps-2-1-79-copyright {
    display: none !important;
}

.map [class*="ymaps-2"][class*="-ground-pane"] {
    filter: grayscale(100%);
    transition: all 0.3s ease;
    -webkit-filter: grayscale(100%);
}

.map:hover [class*="ymaps-2"][class*="-ground-pane"] {
    filter: none;
    -webkit-filter: none;
}

.contacts-info {
    background-color: white;
    position: absolute;
    bottom: 0;
    left: 1rem;
    width: calc(100% - 2rem);
    border-radius: 5px;
}

.contacts-wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    padding: 1rem;
}

.contacts-details {
    width: 50%;
    border-right: 1px solid #efefef;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.address {
    font-size: 0.875rem;
    line-height: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--ttx-primary-body-background);
}

.phone-link {
    font-size: 1.75rem;
    font-weight: 660;
    text-decoration: none;
    transition: all ease 0.24s;
    color: var(--ttx-primary-body-background);
}

.email-link {
    text-decoration: none;
    transition: all ease 0.24s;
    color: var(--ttx-primary-body-background);
}

.messengers {
    width: 50%;
    text-align: center;
    border-radius: 1rem;
}

.messengers-title {
    font-weight: 600;
    color: var(--ttx-primary-body-background);
}

.messengers-links {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    margin-top: 1rem;
    max-width: 26rem;
    margin-left: auto;
    margin-right: auto;
}

.messenger-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all ease 0.24s;
    color: var(--ttx-primary-body-background);
}

.messenger-item:hover, .messenger-item:focus, .messenger-item:active {
    color: var(--ttx-primary-body-background);
}

.messenger-icon {
    width: 55px;
    height: 55px;
    font-size: 35px;
    color: var(--ttx-white);
    border-radius: 10px;
    padding-top: 9px;
    background-color: var(--ttx-primary-body-background);
}

.email-icon {
    background-color: var(--ttx-primary-body-background);
}

.telegram-icon {
    background-color: #24A1DE;
}

.whatsapp-icon {
    background-color: #25D366;
}

.messenger-label {
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 0.1rem;
}

.messenger-divider {
    width: 1px;
    background-color: var(--color__border);
    opacity: 0.5;
}

.donut {
    --donut-size: 300px;
    --donut-border-width: 30px;
    --donut-spacing: 0;
    --donut-spacing-color: 73, 76, 92;
    --donut-spacing-deg: calc(1deg * var(--donut-spacing));
    border-radius: 50%;
    height: var(--donut-size);
    margin: 20px;
    position: relative;
    width: var(--donut-size);
}
.donut__label {
    left: 50%;
    line-height: 1.5;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
}

.donut__label__heading {
    color: var(--ttx-white);
    font-size: 20px;
    font-weight: 700;
    padding: 0 20px;
}

.donut__label__sub {
    color: var(--ttx-white);
    font-size: 100px;
    position: absolute;
    font-weight: 900;
    opacity: 0.2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.donut__slice {
    height: 100%;
    position: absolute;
    width: 100%;
}

.donut__slice::before,
.donut__slice::after {
    border: var(--donut-border-width) solid rgba(0, 0, 0, 0);
    border-radius: 50%;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: rotate(45deg);
    width: 100%;
}

.donut__slice::before {
    border-width: calc(var(--donut-border-width) + 1px);
    box-shadow: 0 0 1px 0 rgba(var(--donut-spacing-color), calc(100 * var(--donut-spacing)));
}

.donut__slice__first {
    --first-start: 0;
}

.donut__slice__first::before {
    border-top-color: rgba(var(--donut-spacing-color), calc(100 * var(--donut-spacing)));
    transform: rotate(calc(360deg * var(--first-start) + 45deg));
}

.donut__slice__first::after {
    border-top-color: #ff6838;
    border-right-color: rgba(255, 104, 56, calc(100 * (var(--first) - 0.25)));
    border-bottom-color: rgba(255, 104, 56, calc(100 * (var(--first) - 0.5)));
    border-left-color: rgba(255, 104, 56, calc(100 * (var(--first) - 0.75)));
    transform: rotate(calc(360deg * var(--first-start) + 45deg + var(--donut-spacing-deg)));
}

.donut__slice__second {
    --second-start: calc(var(--first));
    --second-check: max(calc(var(--second-start) - 0.5), 0);
    -webkit-clip-path: inset(0 calc(50% * (var(--second-check) / var(--second-check))) 0 0);
    clip-path: inset(0 calc(50% * (var(--second-check) / var(--second-check))) 0 0);
}

.donut__slice__second::before {
    border-top-color: rgba(var(--donut-spacing-color), calc(100 * var(--donut-spacing)));
    transform: rotate(calc(360deg * var(--second-start) + 45deg));
}

.donut__slice__second::after {
    border-top-color: #ffc820;
    border-right-color: rgba(255, 200, 32, calc(100 * (var(--second) - 0.25)));
    border-bottom-color: rgba(255, 200, 32, calc(100 * (var(--second) - 0.5)));
    border-left-color: rgba(255, 200, 32, calc(100 * (var(--second) - 0.75)));
    transform: rotate(calc(360deg * var(--second-start) + 45deg + var(--donut-spacing-deg)));
}

.donut__slice__third {
    --third-start: calc(var(--first) + var(--second));
    --third-check: max(calc(var(--third-start) - 0.5), 0);
    -webkit-clip-path: inset(0 calc(50% * (var(--third-check) / var(--third-check))) 0 0);
    clip-path: inset(0 calc(50% * (var(--third-check) / var(--third-check))) 0 0);
}

.donut__slice__third::before {
    border-top-color: rgba(var(--donut-spacing-color), calc(100 * var(--donut-spacing)));
    transform: rotate(calc(360deg * var(--third-start) + 45deg));
}

.donut__slice__third::after {
    border-top-color: #97c95c;
    border-right-color: rgba(151, 201, 92, calc(100 * (var(--third) - 0.25)));
    border-bottom-color: rgba(151, 201, 92, calc(100 * (var(--third) - 0.5)));
    border-left-color: rgba(151, 201, 92, calc(100 * (var(--third) - 0.75)));
    transform: rotate(calc(360deg * var(--third-start) + 45deg + var(--donut-spacing-deg)));
}

.donut__slice__fourth {
    --fourth-start: calc(var(--first) + var(--second) + var(--third));
    --fourth-check: max(calc(var(--fourth-start) - 0.5), 0);
    -webkit-clip-path: inset(0 calc(50% * (var(--fourth-check) / var(--fourth-check))) 0 0);
    clip-path: inset(0 calc(50% * (var(--fourth-check) / var(--fourth-check))) 0 0);
}

.donut__slice__fourth::before {
    border-top-color: rgba(var(--donut-spacing-color), calc(100 * var(--donut-spacing)));
    transform: rotate(calc(360deg * var(--fourth-start) + 45deg));
}

.donut__slice__fourth::after {
    border-top-color: #1cb2f6;
    border-right-color: rgba(28, 178, 246, calc(100 * (var(--fourth) - 0.25)));
    border-bottom-color: rgba(28, 178, 246, calc(100 * (var(--fourth) - 0.5)));
    border-left-color: rgba(28, 178, 246, calc(100 * (var(--fourth) - 0.75)));
    transform: rotate(calc(360deg * var(--fourth-start) + 45deg + var(--donut-spacing-deg)));
}

.donut__slice__fifth {
    --fifth-start: calc(var(--first) + var(--second) + var(--third) + var(--fourth));
    --fifth-check: max(calc(var(--fifth-start) - 0.5), 0);
    -webkit-clip-path: inset(0 calc(50% * (var(--fifth-check) / var(--fifth-check))) 0 0);
    clip-path: inset(0 calc(50% * (var(--fifth-check) / var(--fifth-check))) 0 0);
}

.donut__slice__fifth::before {
    border-top-color: rgba(var(--donut-spacing-color), calc(100 * var(--donut-spacing)));
    transform: rotate(calc(360deg * var(--fifth-start) + 45deg));
}

.donut__slice__fifth::after {
    border-top-color: #1685b8;
    border-right-color: rgba(22, 133, 184, calc(100 * (var(--fifth) - 0.25)));
    border-bottom-color: rgba(22, 133, 184, calc(100 * (var(--fifth) - 0.5)));
    border-left-color: rgba(22, 133, 184, calc(100 * (var(--fifth) - 0.75)));
    transform: rotate(calc(360deg * var(--fifth-start) + 45deg + var(--donut-spacing-deg)));
}
.donut-legend {
    list-style: none;
    padding: 0;
    margin: 20px;
}

.donut-legend li {
    cursor: pointer;
    margin: 10px 0;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.color-box {
    width: 15px;
    height: 15px;
    display: inline-block;
    margin-right: 10px;
    border-radius: 5px;
}

.donut__slice::after {
    transition: all 0.3s ease;
}

.cta {
    position: relative;
    display: block;
    z-index: 1;
}

.cta__inner {
    position: relative;
    display: block;
    background: var(--ttx-black-bg);
    padding: 53px 0px 65px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0px 0px 20px var(--ttx-black-bg);
    z-index: 1;
}

.cta__inner .shape1 {
    position: absolute;
    bottom: 0px;
    right: -30px;
    top: -35px;
    opacity: 0.4;
    z-index: -1;
}

.cta__inner .shape1 img {
    height: 400px;
}

.cta__inner .title-box {
    position: relative;
    display: block;
    margin-bottom: 29px;
}

.cta__inner .title-box h2 {
    color: var(--ttx-white);
    font-size: 41px;
    line-height: 60px;
    font-weight: 700;
}

.cta__inner .title-box span {
    color: var(--ttx-white);
    font-size: 28px;
    line-height: 30px;
    font-weight: 500;
    font-family: var(--ttx-body-font-family);
}

.cta__form {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
    gap: 15px;
}

.cta__form input[type="text"],
.cta__form input[type="tel"] {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    padding: 0 25px;
    padding-right: 30px;
    background: transparent;
    border: 1px solid var(--ttx-white);
    color: var(--ttx-white);
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    border-radius: 5px;
    transition: all 500ms ease;
    font-family: var(--ttx-body-font-family);
    text-transform: none;
    outline: none;
}

.cta__form input::-webkit-input-placeholder {
    color: var(--ttx-white);
}

.cta__form input:-moz-placeholder {
    color: var(--ttx-white);
}

.cta__form input::-moz-placeholder {
    color: var(--ttx-white);
}

.cta__form input:-ms-input-placeholder {
    color: var(--ttx-white);
}

.cta__form button {
    position: relative;
    display: block;
    max-width: 190px;
    width: 100%;
    margin-left: 10px;
    border: none;
}

.working-process__single {
    position: relative;
    display: block;
    background: var(--ttx-black-bg);
    box-shadow: 0px 0px 20px var(--ttx-black-bg);
    padding: 40px 40px 40px;
    border-radius: 5px;
    z-index: 1;
}

.working-process__title {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-left: 8px;
}

.working-process__title .circle {
    position: relative;
    flex-shrink: 0;
    display: block;
    width: 55px;
    height: 55px;
    background: var(--ttx-secondary-color);
    border-radius: 8px;
    overflow: hidden;
    margin-right: 20px;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.working-process__single:hover .working-process__title .circle {
    transform: scale(1.1);
}

.working-process__title .icon {
    position: absolute;
    left: 0px;
    top: 15px;
}

.working-process__title .icon span {
    position: relative;
    display: inline-block;
    color: var(--ttx-white);
    font-size: 60px;
    line-height: 60px;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.working-process__single:hover .working-process__title .icon span {
    transform: scale(0.8);
}

.working-process__title h3 {
    font-size: 17px;
    line-height: 23px;
    font-weight: 500;
}

.working-process__text {
    margin-bottom: 30px;
}

.working-process__big-text {
    position: absolute;
    right: 26px;
    bottom: 21px;
    color: rgba(255, 255, 255, .1);
    font-size: 68px;
    line-height: 0.8em;
    font-weight: 700;
    font-family: var(--ttx-heading-font-family);
}

.footer {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 10;
}

.footer-main {
    position: relative;
    display: block;
    padding-top: 120px;
    padding-bottom: 80px;
}

.footer-bottom {
    border-top: 1px solid #363638;
    padding: 31px 0 30px 0;
}

.copyright-text p {
    margin-bottom: 0;
}

.copyright-menu ul li {
    position: relative;
    display: inline-block;
    margin-right: 30px;
}

.copyright-menu ul li:last-child {
    margin-right: 0;
}

.copyright-menu ul li a {
    position: relative;
    display: block;
    color: var(--ttx-pragraph-color);
}

.copyright-menu ul li a:hover {
    color: var(--ttx-white);
}