/* ======================================================================== */
/* Style Zeroing */

* {
    /* Zeroing of indents and fields at all elements */
    margin: 0;
    padding: 0;
    /* To include borders and internal margins in the size of the element. */
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /* Tap Highlight Color in Sensor Devices */
    -webkit-tap-highlight-color: transparent;
    /* Reset animations and transitions when loading */
    transition: all 0.3s ease;
    animation: none;
    /* Removing text selection when interacting */

    /* user-select: none; */
}

/* Page Titles and paragraphs */
h1,
h2,
h3,
h4,
h5,
h6,
p {
    padding: 0;
    margin: 0;
    font-size: inherit;
    font-weight: 400;
}

/* Links and Buttons */
a,
button {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    outline: none;
    background: unset;
    padding: 0;
    border: unset;
}

body {
    overflow-x: hidden;
}

/* Inputs, Buttons and Textareas */
/* Removing indents and borders on interactive elements */
input,
button,
textarea {
    font-family: inherit;
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
}

/* List */
ul {
    padding: 0;
    margin: 0;
}

ol li {
    appearance: auto;
}

ol li::marker {
    display: none;
}

/* Abbreviation */
abbr {
    cursor: text;
    text-decoration: none;
    margin: 0;
    padding: 0;
    border: none;
}

/* Addiitional Tags */
code,
var,
address,
kbd,
samp {
    font-family: unset;
    font-style: normal;
    margin: 0;
    padding: 0;
    color: unset;
}

/* Main html and body */
html,
body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    /* Controlling smooth scrolling */
    scroll-behavior: smooth;
}

body {
    /* Makes text smoother and clearer, especially on retina displays. */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Changed Main Page Scroll-Bar */
html::-webkit-scrollbar {
    width: 10px;
}

html::-webkit-scrollbar-track {
    background-color: #fff;
}

html::-webkit-scrollbar-thumb {
    background-color: #5925dc;
    border-radius: 6px;
    border: 1px solid #aeb2d5;
}

html::-webkit-scrollbar-thumb:hover {
    background-color: #7547ea;
}

.big_Container {
    overflow: hidden;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

a:hover {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:focus {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}

input::-ms-clear {
    display: none;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

ul li {
    list-style: none;
}

:focus,
:active {
    outline: none;
}

a:focus,
a:active {
    outline: none;
}

nav,
header,
main,
footer,
aside {
    display: block;
}

/* For off resizing textarea */
textarea {
    resize: none;
}

/* Removing arrows from input fields */
/* WebKit Browsers (Google Chrome and more) */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

/* All Browsers */
input[type="number"] {
    appearance: none !important;
    -moz-appearance: none !important;
    -webkit-appearance: none !important;
}

img {
    /* Unable to drag and drop images */
    -webkit-user-drag: none;
    user-drag: none;
    /* Set consistent dimensions for all images (Object Fit) */
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

/* Section */
section > h2[aria-hidden="true"] {
    display: none;
}

/* ======================================================================== */
/* Additional Short Zeroing Style */
/* Page Main Manrope Font */
* {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
}

/* Global CSS Variables */
:root {
    --translateY: translateY(0);
}

/* ======================================================================== */
/* ======================================================================== */
/* Page Styles */
/* Header */
/* Header - Preheader */
.preheader {
    background-color: #000;
    padding: 7px 0;
    position: relative;
    z-index: 10;
    min-height: 50px;
}

.preheader__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.preheader__contacts {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    row-gap: 5px;
}

.preheader__contacts div:not(:last-child) {
    margin: 0 15px 0 0;
}

.preheader__contacts div span {
    white-space: nowrap;
}

.preheader__address span::before {
    content: "";
    position: absolute;
    display: block;
    width: 14px;
    height: 20px;
    background-image: url("../img/icons/location.svg");
    background-repeat: no-repeat;
    margin: 0 0 0 -24px;
}

.preheader__address span {
    display: flex;
    align-items: center;
    line-height: 24px;
    color: #ffffff;
}

.preheader__address span {
    padding: 0 0 0 24px;
}

.preheader__mail {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 5;
}

.preheader__mail a span {
    padding: 0 0 0 28.42px;
}

.preheader__mail a::before {
    content: "";
    position: absolute;
    display: block;
    width: 18.42px;
    height: 14px;
    background-image: url("../img/icons/mail.svg");
    background-repeat: no-repeat;
}

.preheader__mail a {
    display: flex;
    align-items: center;
    line-height: 24px;
    color: #ffffff;
}

.preheader__mail:hover a {
    color: #0297d8;
}

.preheader__mail:hover a::before {
    filter: invert(49%) sepia(59%) saturate(4304%) hue-rotate(171deg)
        brightness(95%) contrast(98%);
}

.preheader__links {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.preheader__link:not(:last-child) {
    margin: 0 15px 0 0;
}

.preheader__item {
    line-height: 21px;
    color: #ffffff;
    padding: 7px 28px 7px 18px;
    border: 1px solid #ffffff;
    border-radius: 40px;
    display: flex;
    align-items: center;
    min-height: 36px !important;
    transition: all 0.3s ease;
}

.preheader__item span {
    padding: 0 0 0 33px;
}

.preheader__item::before {
    content: "";
    position: absolute;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    width: 24px;
    height: 24px;
}

.preheader__link:nth-child(1) .preheader__item::before {
    background-image: url("../img/icons/whatsapp.svg");
}

.preheader__link:nth-child(2) .preheader__item::before {
    background-image: url("../img/icons/telegram.svg");
}

/* Header Styles */
.header {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transform: var(--translateY);
}

header.header._show {
    transition: transform 0.5s ease, opacity 1s ease 0.3s;
}

div.header__frame {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.header__logo {
    display: block;
    z-index: 10;
}

.header__image {
    display: flex;
    align-items: center;
    height: 45px;
    width: 100%;
    max-width: 208px;
    overflow: hidden;
}

.header__image img {
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: 100%;
}

.header__nav {
    flex: 0 1 calc(730px - 16px);
    width: 100%;
    margin: 0 0 0 30px;
    position: relative;
}

.header__menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -8px;
    row-gap: 5px;
}

.header__item {
    position: relative;
    top: 0;
    left: 0;
}

.header__item > a {
    font-weight: 500;
    line-height: 24px;
    color: #050505;
    border-radius: 5px;
    padding: 12px 8px;
    position: relative;
    z-index: 5;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.header__item_bold a {
    font-weight: 600;
}

.header__item:hover > a,
.sub-menu__item:hover > a {
    color: #0297d8;
    transition: color 0.3s ease;
}

.header__sub-arrow {
    content: "";
    opacity: 0;
    visibility: hidden;
    position: absolute;
    bottom: -10px;
    left: -12px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 6px solid #0297d8;
    transition: opacity 0.1s ease, visibility 0.1s ease, transform 0.3s ease;
}

.sub-menu {
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    position: absolute;
    transform: translateX(-10px);
    top: 34px;
    left: 0;
    padding: 25px;
    border: 3px solid #0297d8;
    background-color: #fff;
    border-radius: 0 10px 10px 10px;
    min-width: 350px;
    z-index: 10;
}

.sub-menu._sub-active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: all 0.3s ease;
}

.sub-menu__item {
    margin: 0 0 25px 0;
}

.sub-menu__item:last-child {
    margin: 0;
}

.sub-menu__item a {
    position: relative;
    white-space: nowrap;
    padding: 0 0 0 10px;
    line-height: 24px;
    display: flex;
    align-items: center;
    min-height: 24px;
    font-weight: 500;
    z-index: 10;
}

.sub-menu__item a span {
    margin: 0 0 0 10px;
}

.sub-menu__item a::before,
.sub-menu__item a::after {
    content: "";
    position: absolute;
    top: 0;
    left: -6px;
    width: 2px;
    display: block;
}

.sub-menu__item a::before {
    background-color: #0297d8;
    height: 100%;
}

.sub-menu__item a::after {
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 0 solid transparent;
    border-left: 0 solid #0297d8;
    border-bottom: 0 solid transparent;
    transition: all 0.2s ease;
}

.sub-menu__item a:hover::after {
    border-top: 5px solid transparent;
    border-left: 10px solid #0297d8;
    border-bottom: 5px solid transparent;
    transition: all 0.2s ease;
}

.sub-menu__icon {
    width: 24px;
    height: 24px;
}

.sub-menu__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.header__arrow-down {
    display: none;
    position: absolute;
    top: 50%;
    right: -12px;
    width: 7px;
    height: 7px;
    border: 2px solid #050505;
    border-left: 0;
    border-top: 0;
    transform: translate(0, -50%) rotate(45deg);
    transition: all 0.3s ease;
}

.header__arrow-down._arrow-down-active {
    transform: rotate(-135deg);
    border: 2px solid #00adb8;
    border-left: 0;
    border-top: 0;
    transition: all 0.3s ease;
}

.header__phone {
    flex: 0 0 168px;
    z-index: 10;
}

.header__phone a,
.header__phone button {
    text-align: center;
}

.header__phone a,
.header__phone button {
    display: block;
    font-size: 18px;
    line-height: 27px;
    transition: color 0.3s ease;
    width: 100%;
}

.header__phone a {
    font-weight: 500;
    color: #050505;
    margin: 0 0 8px 0;
}

.header__phone a:hover {
    color: #00adb8;
    transition: color 0.3s ease;
}

.header__phone button {
    font-weight: 600;
    text-decoration-line: underline;
    color: #000;
}

.header__phone button:hover {
    color: #00adb8;
    text-decoration-line: none;
    transition: color 0.2s ease;
}

/* Main For All Pages */
.main__container {
    margin: 132.6px 0 0 0;
}

/* index.html */
/* Webstructure */
.main__web {
    padding: 33px 0 25px 0;
}

.web {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        87deg,
        rgba(0, 0, 0, 1) 0%,
        rgba(8, 9, 43, 1) 20%,
        rgba(24, 19, 81, 1) 62%,
        rgba(25, 15, 54, 1) 85%
    );
    background-size: 200% 200%;
    background-position: center;
    background-attachment: fixed;
    animation: gradientMove 13s ease infinite, bgShow 0.5s ease;
}

/* Webstructure Pulse Elements */
.pulse-circle {
    position: absolute;
    transition: transform 0.2s ease;
}

.pulse-circle__1 {
    top: 10%;
    left: 41%;
}

.pulse-circle__2 {
    bottom: 30%;
    right: 15%;
}

.pulse-icon {
    background-image: url("../img/web/pulse.svg");
    background-repeat: no-repeat;
    background-size: auto;
    display: block;
    position: absolute;
    animation: Pulse 1s ease infinite;
    width: 185px;
    height: 185px;
}

/* --------------------------- */
.top-web {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-web__content {
    flex: 0 1 500px;
    width: 100%;
    margin: 0 15px 0 0;
    z-index: 5;
}

.top-web__time {
    display: flex;
    align-items: center;
    margin: 0 0 40px 0;
}

.top-web__date time,
.top-web__read span {
    line-height: 133%;
    letter-spacing: 0.02em;
    color: #fafafa;
}

.top-web__date {
    background-image: url("../img/icons/calendar.svg");
    background-repeat: no-repeat;
    background-size: 20px;
    margin: 0 35px 0 0;
    padding: 0 0 0 30px;
}

.top-web__read {
    background-image: url("../img/icons/time.svg");
    background-repeat: no-repeat;
    background-size: 20px;
    padding: 0 0 0 30px;
}

.top-web__title {
    margin: 0 0 26px 0;
}

.top-web__title h1 {
    font-weight: 600;
    font-size: 36px;
    line-height: 54px;
    letter-spacing: 0.02em;
    color: #fafafa;
    text-transform: uppercase;
}

.top-web__desc {
    margin: 0 0 35px 0;
}

.top-web__desc p {
    font-size: 18px;
    line-height: 175%;
    color: #fafafa;
}

.top-web__buttons {
    display: flex;
    align-items: center;
}

.top-web__btn {
    font-weight: 600;
    line-height: 26px;
    color: #fafafa;
    border-radius: 29px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-web__btn:first-child {
    margin: 0 9px 0 0;
}

.top-web__blue {
    max-width: 280px;
    background-color: #0297d8;
    border: 1px solid transparent;
}

.top-web__gray {
    max-width: 194px;
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid transparent;
}

/* Planet */
.top-web__image {
    /* max-width: 456px;
  max-height: 442px; */
    max-width: 100%;
    height: 100%;
    position: relative;
    animation: float 25s ease infinite alternate;
}

.top-web__image img {
    object-fit: contain;
    transition: transform 0.1s ease-in-out;
}

#planet {
    transition: transform 0.2s ease;
}

#planet._show {
    transition: transform 0.2s ease, opacity 1.5s ease 0.6s;
}

/* Stars */
.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: twinkling 5s infinite alternate;
}

.star:nth-child(odd) {
    animation-duration: 7s;
}

.stars-container {
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    top: 0;
    left: 0;
    animation: moveStars 50s linear infinite alternate;
}

.stars-container::before,
.stars-container::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;
    background-size: 3px 3px;
    opacity: 0.5;
}

.stars-container::after {
    top: 50%;
    background-size: 2px 2px;
    opacity: 0.2;
}

/* ----------- */
.web__bottom {
    margin: 67px 0 0 0;
}

.bottom-web__list {
    display: flex;
    justify-content: space-between;
    height: 98px;
}

.item-web {
    text-align: center;
    width: 100%;
    height: 100%;
    position: relative;
    flex: 0 1 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.item-web__title abbr,
.item-web__title {
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    color: #ffffff;
    margin: 0 0 6px 0;
}

.item-web__subtitle a {
    font-size: 18px;
    line-height: 27px;
    color: #0297d8;
}

.item-web__subtitle a:hover {
    text-decoration: underline;
}

/* About */
.main__about {
    padding: 100px 0;
}

.about__container {
    display: flex;
    justify-content: space-between;
}

.about__content {
    flex: 0 0 560px;
    width: 100%;
}

.about__title {
    margin: 16px 0 0 0;
}

.about__title h2 span {
    background: linear-gradient(
        90deg,
        rgba(65, 173, 233, 1) 23%,
        rgba(49, 71, 164, 1) 98%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.about__desc {
    margin: 40px 0 0 0;
}

.about__button {
    margin: 30px 0 0 0;
}

.about__image {
    max-width: 580px;
    width: 100%;
    height: 458px;
    border-radius: 20px;
}

.about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: inherit;
}

/* Services */
.main__services {
    padding: 60px 0 0 0;
}

.services {
    background-color: #f6fcff;
}

.services__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.services__title {
    margin: 16px 0 0 0;
}

.services__body {
    margin: 40px 0 0 0;
}

.services-main__frame {
    padding: 50px 40px;
    background-color: #ffffff;
    border-radius: 32px 32px 0px 0px;
    max-width: 1300px;
    width: 100%;
    min-height: 0;
    margin: 0 auto;
}

.services-main__list {
    margin: 0 -15px 0 0;
    display: flex;
    justify-content: space-between;
}

.service {
    background: linear-gradient(
        90deg,
        rgba(51, 82, 171, 1) 0%,
        rgba(64, 171, 231, 1) 47%
    );
    margin: 0 15px 0 0;
    padding: 3px 1.5px;
    border-radius: 20px;
    position: relative;
    z-index: 0;
    overflow: hidden;
    transition: all 0.5s ease, opacity 1.5s ease 0.3s !important;
}

.service:hover {
    transform: scale(1.05) translateY(-5px);
    transition: all 0.5s ease, opacity 1.5s ease 0.3s !important;
}

.service:hover::after {
    transform: translate(0);
    transition: all 0.5s ease-in-out;
}

.service:hover .service__details a {
    color: #fff;
    transition: color 0.5s ease;
}

.service:hover .service__details a::before {
    background-color: #fff;
    transition: background-color 0.5s ease;
}

.service::after {
    content: "";
    background-color: #0297d8;
    display: block;
    width: 100%;
    position: absolute;
    transition: all 0.3s ease-in-out;
    bottom: 0;
    left: 0;
    border-radius: 0 0 20px 20px;
    transform: translateY(100%);
    height: 60px;
}

.service__frame {
    padding: 21px 14px;
    border-radius: inherit;
    max-width: 290px;
    width: 100%;
    background-color: #fff;
}

.service__title h3,
.service__title h3 abbr {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #050505;
}

.service__desc {
    margin: 14px 0 14px 0;
}

.service__details {
    margin: 11px 0 0 0;
    position: relative;
    z-index: 5;
    display: inline-block;
}

.service__details a {
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.02em;
    color: #0297d8;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.service__details:before {
    content: "";
    display: block;
    border: 2px solid #fff;
    border-left: 0;
    border-top: 0;
    position: absolute;
    top: 53%;
    right: 0;
    width: 6px;
    height: 6px;
    background-repeat: no-repeat;
    transform: translate(0, -50%) rotate(-45deg);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.service__details:hover::before {
    transform: translate(115%, -50%) rotate(-45deg);
    opacity: 1;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Video */
.main__video {
    margin: 50px 0 0 0;
}

.video__frame {
    width: 100%;
    height: 600px;
    position: relative;
    top: 0;
    left: 0;
    cursor: pointer;
}

.video__frame video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    transform: scale(1);
}

.video__frame .video__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.video__frame .video__overlay .video__play-btn {
    width: 120px;
    height: 120px;
    background-color: #fff;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.video__frame .video__overlay .video__play-btn:hover {
    transform: scale(1.03);
    transition: transform 0.3s ease;
}

.video__frame .video__overlay .video__play-btn .video__play-btn-icon {
    width: 0;
    height: 0;
    border-left: 40px solid #0297d8;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    transition: transform 0.3s ease;
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-55%, -50%);
}

.video__frame .video__overlay .video__play-btn.play .video__play-btn-icon {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video__frame .video__overlay .video__play-btn.play .video__pause-btn-icon {
    opacity: 1;
    transition: opacity 0.3s ease 0.1s;
}

.video__frame .video__overlay .video__play-btn::before {
    content: "";
    position: absolute;
    top: 5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 5px solid transparent;
    border-top-color: #fff;
    border-radius: 50%;
    transform: rotate(0deg);
    z-index: 1;
}

.video__frame .video__overlay .video__play-btn.active::before {
    transform: rotate(360deg);
    top: -5px;
    border-top-color: #0297d8;
    transition: transform 0.7s ease-in-out 0.25s, top 0.3s ease,
        border-top-color 0.3s ease;
}

.video__frame .video__overlay .video__pause-btn-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    opacity: 0;
}

.video__frame .video__overlay .video__pause-btn-icon .video__pause-btn-bar {
    width: 12px;
    height: 40px;
    background-color: #0297d8;
    margin: 0 5px;
    transition: transform 0.5s ease;
}

/* Skills */
.main__skills {
    padding: 100px 0 0 0;
}

.skills__content {
    width: 100%;
}

.skills__title {
    max-width: 655px;
    width: 100%;
    margin: 0 auto;
}

.skills__title h2 {
    text-align: center;
}

.skills__body {
    margin: 40px 0 0 0;
}

.menu-skills {
    display: flex;
    flex-direction: column;
}

.menu-skills__wrapper {
    display: flex;
    justify-content: center;
}

.menu-skills__box {
    scroll-behavior: smooth;
    overflow: auto;
    padding: 10px 0 20px 0;
    max-width: 800px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    scrollbar-width: 7px;
    /* scrollbar-color: #fff rgba(102,39,247,1); */
}

.menu-skills__box::-webkit-scrollbar {
    height: 7px;
}

.menu-skills__box::-webkit-scrollbar-track {
    background-color: #fff;
    border: 1px solid #5925dc;
    border-radius: 3px;
}

.menu-skills__box::-webkit-scrollbar-thumb {
    background-image: linear-gradient(
        87deg,
        rgba(102, 39, 247, 1) 0%,
        rgba(21, 208, 215, 1) 47%
    );
    border-radius: 3px;
}

.menu-skills__tab {
    margin: 0 25px 0 0;
}

.menu-skills__tab:last-child {
    margin: 0;
}

.menu-skills__tab span,
.menu-skills__tab span abbr {
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    color: #050505;
    white-space: nowrap;
    position: relative;
    padding: 0 0 2px 0;
}

.menu-skills__tab span:hover abbr,
.menu-skills__tab.tab-on span abbr,
.menu-skills__tab span:hover,
.menu-skills__tab.tab-on span {
    cursor: pointer;
    color: #0297d8;
}

.menu-skills__tab span:hover::after,
.menu-skills__tab.tab-on span::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #0297d8;
    display: block;
    width: 100%;
    height: 2px;
}

.menu-skills__body {
    margin: 30px 0 0 0;
    width: 100%;
}

.item-skills {
    display: none;
    justify-content: center;
    animation: movingTabs 0.5s ease;
}

.item-skills.con-on {
    display: flex;
}

.item-skills__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -30px;
    width: 100%;
}

.item-skills__item {
    flex: 0 1 calc(17.5% - 60px);
    height: 94px;
    margin: 0 30px 60px 30px;
}

.item-skills__item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* Trust */
.main__trust {
    margin: 100px 0 0 0;
}

.trust {
    position: relative;
}

.trust__container {
    display: flex;
    justify-content: space-between;
}

.trust__image {
    position: relative;
}

.trust__image-wrapper {
    max-width: 560px;
    height: 497px;
    width: 100%;
    border-radius: 20px;
}

.trust__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: inherit;
}

.success {
    position: absolute;
    background: #0297d8;
    border-radius: 20px;
    width: 204px;
    height: 185px;
    padding: 15px;
    z-index: 10;
    right: -100px;
    bottom: 80px;
    transition: transform 0.3s ease !important;
    cursor: default;
}

.success._hide {
    animation: paused;
}

div.success._show {
    transition: opacity 1s ease 2s, transform 0.3s ease !important;
    animation: scale 1s ease 2s;
}

.success__logo {
    background-color: #fff;
    border-radius: 15px;
    padding: 7px;
    width: 43px;
    height: 39px;
    display: flex;
    justify-content: start;
    align-items: center;
}

.success__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.success__title {
    text-align: center;
}

.success__title span {
    font-weight: 600;
    font-size: 40px;
    line-height: 60px;
    text-align: center;
    color: #ffffff;
}

.success__subtitle p {
    font-weight: 600;
    font-size: 14px;
    line-height: 28px;
    color: #eaecf0;
    text-align: center;
}

.trust__content {
    display: flex;
    flex-direction: column;
    align-items: start;
    flex: 0 0 520px;
    width: 100%;
    margin: 0 0 0 15px;
}

.trust__menu {
    margin: 40px 0 0 0;
}

.trust__list {
    display: flex;
    flex-direction: column;
}

.trust__item {
    margin: 0 0 28px 0;
}

.trust__item:last-child {
    margin: 0;
}

.trust__item span {
    display: flex;
    align-items: center;
    font-size: 24px;
    line-height: 30px;
    height: 43px;
    color: #050505;
    position: relative;
    padding: 0 0 0 55px;
}

.trust__item span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    display: block;
    width: 43px;
    height: 43px;
}

.trust__item-1 span::before {
    background-image: url("../img/icons/success.svg");
}

.trust__item-2 span::before {
    background-image: url("../img/icons/proffesionalizm.svg");
}

.trust__item-3 span::before {
    background-image: url("../img/icons/honesty.svg");
}

.trust__item-4 span::before {
    background-image: url("../img/icons/operative.svg");
}

.trust__item-5 span::before {
    background-image: url("../img/icons/loyality.svg");
}

.trust__item-6 span::before {
    background-image: url("../img/icons/result.svg");
}

/* Works */
.main__works {
    padding: 100px 0 0 0;
}

.works__container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.works__content {
    width: 100%;
    text-align: center;
}

.works__title {
    margin: 16px 0 0 0;
}

.works__body {
    margin: 40px 0 0 0;
}

.body-works__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 -20px;
}

.item-works {
    flex: 0 1 calc(50% - 40px);
    width: 100%;
    height: 100%;
    border: 1px solid #aeb2d5;
    border-radius: 20px;
    margin: 0 20px 40px 20px;
    overflow: hidden;
    -webkit-box-shadow: 21px 25px 50px -15px rgba(102, 52, 241, 0.53);
    -moz-box-shadow: 21px 25px 50px -15px rgba(102, 52, 241, 0.53);
    box-shadow: 21px 25px 50px -15px rgba(102, 52, 241, 0.53);
}

.item-works__frame {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.item-works__link {
    display: block;
    width: 100%;
    height: 326px;
}

.item-works__image {
    flex: 0 1 100%;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.item-works__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px 20px 0 0;
    transition: transform 0.5s ease;
}

.item-works:hover .item-works__image img {
    transform: scale(1.03);
    transition: transform 0.5s ease;
}

.item-works__content {
    position: relative;
    top: 0;
    left: 0;
}

.item-works__content::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    display: block;
    background-color: #0297d8;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.item-works:hover .item-works__content::after {
    transform: translate(0);
    transition: transform 0.5s ease;
}

.item-works__desc {
    padding: 27.5px 30px 27.5px 30px;
}

.item-works__desc a {
    text-align: start;
    font-weight: 600;
    font-size: 24px;
    line-height: 133%;
    letter-spacing: 0.02em;
    color: #050505;
    position: relative;
    z-index: 5;
    transition: color 0.3s ease;
}

.item-works:hover .item-works__desc a {
    color: #fff;
    transition: color 0.5s ease;
}

.item-works__desc a:hover {
    text-decoration: underline;
}

.works__btn-frame {
    margin: 17.5px 0 0 0;
    width: 100%;
}

.works__button {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Tarif */
.main__tarif {
    padding: 60px 0 67px 0;
    margin: 100px 0 0 0;
}

.tarif {
    background-color: #f4f3ff;
    border-radius: 4px;
}

.tarif__container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tarif__title {
    margin: 16px 0 0 0;
    text-align: center;
}

.tarif__content {
    width: 100%;
    text-align: center;
}

.tarif__body {
    margin: 48px 0 0 0;
    width: 100%;
}

.tarif__frame {
    width: 100%;
}

.tarif__list {
    display: flex;
    justify-content: space-between;
    margin: 0 -12px;
}

.item-tarif {
    background-color: #ffffff;
    border-radius: 20px;
    flex: 0 1 calc(33.333% - 24px);
    margin: 0 12px;
    padding: 40px 25.835px;
}

.item-tarif:hover {
    transition: all 0.5s ease;
    background-color: #0297d8;
}

.item-tarif:hover .item-tarif__title,
.item-tarif:hover .item-point__text {
    transition: color 0.3s ease;
    color: #fff;
}

.item-tarif._show {
    transition: all 0.5s ease, opacity 1s ease 0.3s !important;
}

.item-tarif__title {
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    text-align: center;
    color: #050505;
}

.item-tarif__points {
    margin: 40px 0 0 0;
}

.item-point {
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
}

.item-point:last-child {
    margin: 0;
}

.item-point__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 32px;
    padding: 8px;
    width: 32px;
    height: 32px;
    background-color: #e8edfb;
    border-radius: 100px;
}

.item-point__text {
    line-height: 24px;
    color: #050505;
    margin: 0 0 0 17px;
}

.item-tarif__btn_frame {
    margin: 44px 0 0 0;
}

.item-tarif__button {
    display: flex;
    justify-content: center;
    align-items: center;
}

a.item-tarif__btn {
    display: inline-block;
    font-size: 18px;
    color: #0297d8;
    padding: 11px 63px;
    max-width: 339px;
    text-align: center;
    border-radius: 29px;
    position: relative;
    background: #fff;
    border: 1px solid #0297d8;
    height: 48px;
    z-index: 1;
}

/* CallBack */
.main__callback {
    margin: 100px 0;
}

.callback__frame {
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000000;
    border-radius: 20px;
}

.callback__content {
    margin: 0 15px 0 0;
    flex: 0 1 685px;
    width: 100%;
}

div.callback__title h2 {
    margin: 26px 0 0 0;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 7px 7px 10px rgba(255, 255, 255, 0.5);
}

.callback__btn-frame {
    margin: 26px 0 0 0;
}

a.callback__btn {
    font-size: 16px;
    line-height: 26px;
    color: #ffffff;
    background: #0297d8;
    border-radius: 29px;
}

.callback__image {
    max-width: 195px;
    width: 100%;
    height: auto;
    animation: float 10s linear infinite alternate;
}

.callback__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Footer */
.footer {
    background-color: #f4f3ff;
    border-radius: 4px;
    position: relative;
}

.footer::before,
.footer::after {
    content: "";
    width: 100%;
    height: 1px;
    display: block;
    position: absolute;
    left: 0;
    background-color: rgba(174, 178, 213, 0.7);
}

.footer:before {
    top: 0;
}

.footer:after {
    bottom: 50px;
}

.footer__frame {
    padding: 50px 0 40px 0;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.footer__column {
    flex: 0 1 21%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.footer__logo a {
    display: block;
    max-width: 208px;
    width: 100%;
    height: 45px;
}

.footer__logo a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.footer__nav,
.footer__main-nav {
    margin: 20px 0 0 0;
}

.footer__list {
    display: flex;
    flex-direction: column;
    align-items: start;
    text-align: start;
}

.footer__item {
    margin: 0 0 12px 0;
}

.footer__item:last-child {
    margin: 0;
}

.footer__item a {
    font-weight: 500;
    line-height: 24px;
    color: #050505;
    transition: color 0.3s ease;
}

.footer__link:hover .footer__icon-frame img {
    animation: Shake 0.5s linear;
}

.footer__item:hover a {
    color: #027cb1;
    transition: color 0.3s ease;
}

.footer__contacts .footer__item a address {
    display: flex;
    align-items: center;
}

.footer__contacts .footer__item a address span {
    margin: 0 0 0 8px;
}

.footer__share {
    margin: 30px 0 0 0;
    display: flex;
    justify-content: space-between;
}

.footer__follow {
    padding: 25px 0 0 0;
    margin: 0 15px 0 0;
    border-top: 1px solid rgba(174, 178, 213, 0.4);
}

.follow {
    flex: 0 1 220px;
    display: flex;
    flex-direction: column;
}

.follow__list {
    margin: 20px 0 0 0;
    display: flex;
    align-items: center;
}

.follow__item {
    margin: 0 14px 0 0;
    transition: all 0.3s ease;
}

.follow__item:last-child {
    margin: 0;
}

.follow__item:hover .follow__icon-frame,
.footer__item:hover .footer__icon-frame {
    background: #027cb1;
    transition: all 0.3s ease;
}

.footer__technical-news {
    padding: 25px 0 0 0;
    border-top: 1px solid rgba(174, 178, 213, 0.4);
}

.technical-news__title span {
    font-weight: 600;
    line-height: 24px;
    color: #0297d8;
}

.technical-news__input {
    margin: 15px 0 0 0;
    display: flex;
    align-items: center;
    position: relative;
    flex: 0 1 500px;
}

.technical-news__input input,
.technical-news__input input::placeholder {
    font-size: 14px;
    line-height: 23px;
    color: rgba(5, 5, 5, 0.9);
    transition: all 0.5s ease;
}

.technical-news__input input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #050505;
    background: transparent;
    padding: 0 0 2px 0;
}

.technical-news__input input:focus,
.technical-news__input input:focus::placeholder {
    font-size: 18px;
    padding: 0 0 5px 0;
    transition: all 0.5s ease;
}

.technical-news__input button {
    position: absolute;
    top: 0;
    right: 0;
    width: 15px;
    height: 15px;
}

.footer__copyright {
    padding: 14px 0;
}

.copyright {
    width: 100%;
}

.copyright__frame {
    width: 100%;
    text-align: center;
}

.copyright__content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright__content span {
    font-weight: 500;
    font-size: 13px;
    line-height: 160.69%;
    color: #050505;
}

.copyright__content span:first-child {
    font-weight: 700;
}

.copyright__content span:nth-child(2) {
    width: 1px;
    height: 10px;
    background-color: #050505;
    margin: 0 3px;
}

/* Other Pages */
/* vacancies.html - web block */
.main__cube-web {
    height: 100%;
    padding: 55px 0 20px 0;
}

.main__cube-web .top-web__content {
    flex: 0 1 785px;
}

.main__cube-web .top-web__title h2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 48px;
    letter-spacing: 0.02em;
    color: #fafafa;
}

.main__cube-web .top-web__desc p {
    font-size: 18px;
}

.main__cube-web .web__bottom {
    margin: 0;
}

/* vacancies.html - vacancies block */
.main__vacancies {
    margin: 100px 0 0 0;
}

.vacancies {
    width: 100%;
}

.vacancies__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.vacancies__tab-title {
    margin: 0 0 16px 0;
}

.vacancies__body {
    margin: 60px 0 0 0;
}

.vacancies__item {
    padding: 40px 0;
}

.vacancies__item::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background-color: rgba(174, 178, 213, 0.5);
}

.item-vacancie {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.item-vacancie__title {
    flex: 0 0 315px;
    margin: 0 10px 0 0;
}

.item-vacancie__title h3 {
    font-weight: 600;
    font-size: 25px;
    line-height: 133%;
    letter-spacing: 0.02em;
    color: #050505;
    width: 100%;
}

.item-vacancie__body {
    max-width: 740px;
    width: 100%;
}

.item-vacancie__body p {
    font-size: 18px;
    line-height: 175%;
    color: #050505;
}

.item-vacancie__view {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0 0 0;
}

.item-vacancie__view-link a {
    font-weight: 600;
    font-size: 20px;
    line-height: 175%;
    text-decoration-line: underline;
    color: #0297d8;
    white-space: nowrap;
    position: relative;
    transition: color 0.5s ease;
}

.item-vacancie__view-link a::after {
    content: "";
    position: absolute;
    top: 45%;
    right: 0;
    transform: translate(-45%, 0) rotate(-45deg);
    opacity: 0;
    display: block;
    width: 7px;
    height: 7px;
    border: 2px solid #027cb1;
    border-left: 0;
    border-top: 0;
    transition: right 0.5s ease, opacity 0.5s ease;
}

.item-vacancie__view-link a:hover {
    color: #027cb1;
    transition: color 0.5s ease;
}

.item-vacancie__view-link a:hover::after {
    opacity: 1;
    right: -15px;
    transition: right 0.5s ease, opacity 0.5s ease;
}

.item-vacancie__term span,
.item-vacancie__term time {
    font-weight: 600;
    line-height: 175%;
    color: #e62023;
    white-space: nowrap;
}

/* vacancies.html - presentation block */
.main__presentation {
    margin: 100px 0;
}

.presentation__frame {
    padding: 39px 73px 39px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000000;
    border-radius: 20px;
}

div.presentation__title {
    margin: 0 0 25px 0;
}

div.presentation__title h2 {
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    text-transform: uppercase;
    color: #fff;
}

.presentation__desc {
    margin: 0 5px 38px 0;
    max-width: 665px;
    width: 100%;
}

.presentation__desc p {
    font-weight: 500;
    font-size: 22px;
    line-height: 30px;
    color: #ffffff;
}

.presentation__image {
    animation: float 15s ease infinite alternate;
    max-width: 212px;
    width: 100%;
    height: auto;
}

.presentation__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.presentation__btn-frame {
    width: 100%;
}

/* vacanciesItem.html - aside share block */
.aside-share {
    position: absolute;
    top: 0;
    left: -25px;
}

.aside-share__frame {
    width: 100%;
    height: 100%;
    max-width: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.aside-share__text {
    display: block;
    width: 100%;
    transform: rotate(-180deg);
    margin: 0 0 30px 0;
    writing-mode: vertical-rl;
    display: flex;
    align-items: center;
}

.aside-share__text p {
    font-size: 18px;
    line-height: 133%;
    color: #050505;
}

.aside-share__decor span {
    display: block;
    height: 80px;
    width: 1px;
    background-color: #050505;
    margin: 0 0 30px 0;
}

.aside-share__links li:not(:last-child) {
    margin: 0 0 30px 0;
}

.aside-share__item:hover .aside-share__icon-frame {
    background: #027cb1;
    transition: background-color 0.3s ease;
}

.aside-share__icon-frame {
    transition: background-color 0.3s ease;
}

/* vacanciesItem.html - vacancie desctiption block */
.main__vacancie-desc {
    margin: 100px 0;
}

.vacancie-desc__container {
    position: relative;
}

.vacancie-desc__frame {
    margin: 0 0 0 105px;
}

.vacancie-desc__term {
    width: 100%;
}

.vacancie-desc__term span,
.vacancie-desc__term time {
    font-weight: 700;
    font-size: 20px;
    line-height: 175%;
    color: #e62023;
    text-align: start;
}

.vacancie-desc__points {
    margin: 40px 0 0 0;
}

.points-vacancie__list {
    max-width: 830px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.points-vacancie__item {
    position: relative;
    flex: 0 1 50%;
    padding: 0 0 0 28px;
    margin: 0 0 20px 0;
}

.points-vacancie__item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: block;
    width: 13px;
    height: 19px;
    background-image: url("../img/icons/save.svg");
    background-repeat: no-repeat;
}

.points-vacancie__point span {
    font-size: 16px;
    line-height: 133%;
    text-align: center;
    letter-spacing: 0.02em;
    color: #050505;
}

.points-vacancie__point span:first-child {
    font-weight: 600;
}

.points-vacancie__point span:last-child {
    font-weight: 400;
    margin: 0 0 0 8px;
}

.vacancie-desc__description {
    margin: 50px 0 0 0;
}

.vacancie-desc__title {
    width: 100%;
}

.vacancie-desc__title h2 {
    font-weight: 600;
    font-size: 22px;
    line-height: 133%;
    letter-spacing: 0.02em;
    color: #050505;
}

.vacancie-desc__list {
    margin: 25px 0 0 0;
    padding: 0 0 0 30px;
    max-width: 700px;
    width: 100%;
}

.vacancie-desc__list li {
    list-style: disc;
}

.vacancie-desc__item {
    font-size: 18px;
    line-height: 177%;
    letter-spacing: 0.025em;
    color: #050505;
}

.vacancie-desc__skills {
    margin: 35px 0 0 0;
}

.skills-vacancie__skills {
    font-weight: 600;
    font-size: 18px;
    line-height: 177%;
    letter-spacing: 0.025em;
    color: #050505;
    margin: 0 10px 0 0;
    white-space: nowrap;
}

.skills-vacancie {
    display: flex;
}

.skills-vacancie__list {
    max-width: 700px;
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.skills-vacancie__item {
    font-weight: 500;
    font-size: 18px;
    line-height: 177%;
    letter-spacing: 0.025em;
    color: #050505;
    position: relative;
    margin: 0 5px 0 0;
}

.skills-vacancie__item:not(:last-child)::after {
    content: ",";
    margin: 0 5px 0 0;
}

.skills-vacancie__item:last-child::after {
    content: ".";
    margin: 0;
}

/* vacanciesItem.html - response block */
.response {
    background-color: #fafafa;
    padding: 50px 0;
}

.response__frame {
    width: 100%;
}

.response__content {
    width: 100%;
}

.response__title h2 {
    text-align: center;
    margin: 0 0 25px 0;
}

.response__desc p {
    font-size: 18px;
    line-height: 133%;
    text-align: center;
    letter-spacing: 0.02em;
    color: #050505;
}

.response__form {
    margin: 50px 0 0 0;
}

.form-response {
    max-width: 1014px;
    width: 100%;
    margin: 50px auto 0 auto;
}

.form-response label {
    font-size: 18px;
    line-height: 27px;
    color: rgba(5, 5, 5, 0.7);
    margin: 0 0 8px 0;
}

.form-response input,
.form-response textarea {
    background: #fafafa;
    border: 1px solid #aeb2d5;
    border-radius: 5px;
    height: 60px;
    width: 100%;
    padding: 11px;
    font-size: 18px;
    line-height: 27px;
    color: rgba(5, 5, 5, 0.7);
}

.form-response__textarea {
    margin: 0 0 40px 0;
}

.form-response__textarea textarea {
    height: 200px;
}

.form-response__file {
    position: relative;
    background-color: #fafafa;
    border: 1.5px dashed #027cb1;
    border-radius: 5px;
    width: 100%;
    height: 100%;
    transition: background-color 0.5s ease !important;
    margin: 0 0 40px 0;
}

.file._show {
    transition: background-color 0.5s ease, transform 1s ease, opacity 1s ease !important;
}

.form-response__file:hover {
    background-color: #027cb1;
    transition: background-color 0.5s ease;
}

.form-response__file:hover .file__size span,
.form-response__file:hover .file__main span {
    color: #fff;
    transition: color 0.5s ease, border 0.5s ease;
}

.form-response__file:hover .file__icon {
    border: 2px solid rgba(255, 255, 255, 1);
}

.form-response__file:hover .file__icon::before,
.form-response__file:hover .file__icon._pin::before,
.form-response__file:hover .file__delete::before {
    transform: translate(-50%, -50%) scale(1.1);
    transition: background-image 0.5s ease, transform 0.5s ease;
}

.form-response__file:hover .file__icon::before {
    background-image: url("../img/icons/fileWhite.svg");
}

.form-response__file:hover .file__icon._pin::before {
    background-image: url("../img/icons/pinWhite.svg");
}

.form-response__file:hover .file__delete::before {
    transform: translate(-50%, -50%) scale(1);
    background-image: url("../img/icons/deleteWhite.svg");
}

.form-response__file:hover .file__name span {
    color: #fff !important;
    transition: color 0.5s ease;
}

.form-response__file input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.form-response__file label {
    position: relative;
    z-index: 5;
    margin: 0;
    cursor: pointer;
    display: block;
    width: 100%;
    height: 100%;
    transition: background-color 0.3s ease;
    padding: 24.5px 25px 24.5px 30.5px;
}

.form-response__file input {
    padding: 0;
}

.form-response__file .file__main {
    display: flex;
    align-items: center;
}

.form-response__file .file__main span {
    font-size: 18px;
    line-height: 27px;
    color: rgba(5, 5, 5, 0.9);
    transition: color 0.5s ease;
}

.form-response__file span.file-main__text {
    display: none;
    padding: 0 5px 0 0;
    color: rgba(5, 5, 5, 0.7);
}

.form-response__file span.file-main__text._active {
    display: block;
}

.form-response__file .file__icon {
    position: relative;
    display: block;
    width: 55px;
    height: 55px;
    flex: 0 0 55px;
    border: 2px solid rgba(144, 144, 144, 0.3);
    border-radius: 100%;
    margin: 0 30.5px 0 0;
    transition: border 0.5s ease, transform 0.5s ease;
}

.form-response__file .file__icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 13px;
    height: 25px;
    background-image: url("../img/icons/file.svg");
    background-size: contain;
    background-repeat: no-repeat;
    transition: background-image 0.5s ease, transform 0.5s ease;
}

.form-response__file .file__icon._pin::before {
    background-image: url("../img/icons/pin.svg");
    width: 25px;
    transition: background-image 0.5s ease, transform 0.5s ease;
}

.form-response__file .file__size {
    text-align: end;
    position: absolute;
    bottom: 15px;
    right: 25px;
}

.form-response__file .file__size span {
    font-size: 14px;
    line-height: 21px;
    color: rgba(5, 5, 5, 0.9);
    transition: color 0.5s ease;
}

.form-response__file .file__delete {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    transition: transform 0.5s ease;
    z-index: 5;
    cursor: pointer;
}

.form-response__file .file__delete._active {
    display: block;
}

.form-response__file .file__delete::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 30px;
    height: 30px;
    background-image: url("../img/icons/delete.svg");
    background-size: contain;
    background-repeat: no-repeat;
    transition: background-image 0.5s ease;
}

.form-response__file .file__delete:hover::before {
    background-image: url("../img/icons/deleteRed.svg");
    transition: background-image 0.5s ease;
}

.form-response__checkbox {
    margin: 0 0 40px 0;
}

.checkbox__label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    line-height: 21px;
    color: #050505;
    user-select: none;
}

.checkbox__label input[type="checkbox"] {
    display: none;
}

.checkbox__checkmark {
    display: inline-block;
    position: relative;
    width: 23px;
    height: 23px;
    flex: 0 0 23px;
    background-color: #fff;
    border: 1px solid #027cb1;
    border-radius: 2px;
    margin-right: 20px;
    transition: background-color 0.5s ease;
}

.checkbox__label input[type="checkbox"]:checked + .checkbox__checkmark {
    background-color: #027cb1;
}

.checkbox__checkmark:after {
    content: "";
    opacity: 0;
    visibility: hidden;
    position: absolute;
    background-image: url("../img/icons/check.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 17.82px;
    height: 13.1px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.checkbox__label input[type="checkbox"]:checked + .checkbox__checkmark:after {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.form-response__btn {
    max-width: 100% !important;
}

.form-response__inputs {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.form-response__textarea {
    display: flex;
    flex-direction: column;
}

.form-response__input {
    display: flex;
    flex-direction: column;
    flex: 0 1 calc(50% - 30px);
    margin: 0 15px 40px 15px;
}

.phone input {
    margin: 0;
}

.phone__selected {
    position: relative;
}

.phone__selected div {
    display: flex;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    min-width: 105px;
    height: 100%;
    border-right: 1px solid #aeb2d5;
    cursor: pointer;
    transition: background-color 0.5s ease;
    overflow: hidden;
}

.phone__selected div:hover {
    transition: background-color 0.5s ease;
    background-color: rgba(0, 0, 0, 0.15);
}

.phone__selected div #arrowDown {
    content: "";
    position: absolute;
    top: 46%;
    right: 5px;
    transform: translateY(-46%) rotate(45deg);
    display: block;
    width: 8px;
    height: 8px;
    border: 1px solid rgba(5, 5, 5, 0.7);
    border-left: 0;
    border-top: 0;
    margin: 0 5px;
    transition: transform 0.3s ease;
}

.phone__selected div._active #arrowDown {
    transform: translateY(-46%) rotate(225deg);
    transition: transform 0.3s ease;
}

.phone__selected div #flag {
    margin: 0 0 0 10px;
}

.phone__selected div #phone-code {
    margin: 0 25px 0 5px;
}

.phone__selected input[type="tel"] {
    padding: 11px 11px 11px 130px;
}

#phone-code {
    line-height: 24px;
    letter-spacing: 0.055em;
    font-size: 18px;
    line-height: 27px;
    color: rgba(5, 5, 5, 0.7);
}

.phone__select {
    position: relative;
}

.phone__select .phone__options {
    position: absolute;
    top: 70px;
    left: 0;
    z-index: 10;
    width: 100%;
    display: block;
    background-color: #fff;
    border-radius: 0 0 5px 5px;
    display: none;
}

.phone__select .phone__options._active {
    display: block;
}

.phone__select .phone__options::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 15px;
    display: block;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 6px solid #aeb2d5;
}

.phone__select .phone__options ul {
    border: 1px solid #aeb2d5;
    border-top: 0;
    border-radius: 0 0 5px 5px;
    max-height: 300px;
    height: 100%;
    width: 100%;
    overflow: auto;
}

.phone__select .phone__options ul::-webkit-scrollbar {
    width: 8px;
}

.phone__select .phone__options ul::-webkit-scrollbar-track {
    background-color: #fff;
}

.phone__select .phone__options ul::-webkit-scrollbar-thumb {
    background-color: #5925dc;
    border-radius: 6px;
    border: 1px solid #aeb2d5;
}

.phone__select .phone__options ul::-webkit-scrollbar-thumb:hover {
    background-color: #7547ea;
}

.phone__select .phone__options ul li {
    padding: 11px;
    cursor: pointer;
    transition: background-color 0.5s ease;
}

.phone__select .phone__options ul li:not(:last-child) {
    border-bottom: 1px solid #aeb2d5;
}

.phone__select .phone__options ul li:hover {
    transition: background-color 0.5s ease;
    background-color: rgba(0, 0, 0, 0.15);
}

.phone__select .phone__options ul li._hide {
    display: none;
}

.phone__select .phone__options input {
    position: relative;
    z-index: 5;
    border-radius: 5px 5px 0 0;
}

.phone__select .phone__options ul li div span {
    font-size: 18px;
    line-height: 27px;
    color: rgba(5, 5, 5, 0.7);
}

.phone__select .phone__options input {
    border: 2px solid #aeb2d5;
}

.phone__select .phone__options input::placeholder {
    font-size: 18px;
    line-height: 27px;
    color: #aeb2d5;
}

.phone__select .phone__options ul li div span {
    color: rgba(5, 5, 5, 0.7);
    margin: 0 0 0 10px;
}

.phone__select .phone__options ul li,
.phone__select .phone__options ul li div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* blog.html - blog block */
.main__blogs {
    margin: 50px 0 74px 0;
}

.blogs__frame,
.blogs__tabs,
.blogs__box {
    width: 100%;
}

.blogs__tab {
    position: relative;
    font-weight: 700;
    font-size: 16px;
    line-height: 133%;
    letter-spacing: 0.02em;
    color: rgba(5, 5, 5, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    max-width: 188px;
    height: 50px;
    margin: 0 20px 0 0;
    transition: all 0.3s ease;
}

.blogs__tab:last-child {
    margin: 0;
}

.blogs__tab::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    padding: 3px;
    background: linear-gradient(
        90deg,
        rgba(51, 82, 171, 1) 0%,
        rgba(64, 171, 231, 1) 47%
    );
    background-position: 200% 200%;
    background-clip: border-box;
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}

.blogs__tab:hover,
.blogs__tab._tab-on {
    background-color: #0297d8;
    color: #fff;
    transition: all 0.3s ease;
}

.blogs__tab._tab-on::after,
.blogs__tab:hover:after {
    background-image: none;
}

.blogs__line {
    width: 100% !important;
    height: 1px !important;
    background-color: rgba(5, 5, 5, 0.1) !important;
    margin: 50px 0;
}

.blogs__body {
    display: none;
}

.blogs__body._con-on {
    display: block;
    animation: movingTabs 1s ease;
}

.blogs__body-con {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 -20px;
}

.blogs__item {
    margin: 0 20px 40px 20px;
}

.item-blog {
    border-radius: 15px;
    max-width: 590px;
    width: 100%;
    flex: 0 1 calc(50% - 40px);
    overflow: hidden;
    cursor: pointer;
    display: block;
}

.item-blog:hover .item-blog__image img {
    transform: scale(1.03);
    transition: transform 0.5s ease;
}

.item-blog:hover .item-blog__content::after {
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.item-blog:hover .item-blog__category span,
.item-blog:hover .item-blog__date time,
.item-blog:hover .item-blog__desc p {
    color: #fff;
    transition: color 0.5s ease;
}

.item-blog:hover .item-blog__category {
    border: 1px solid #fff;
    transition: border 0.5s ease;
}

.item-blog__image {
    border-radius: 15px 15px 0px 0px;
    width: 100%;
    height: 300px;
}

.item-blog__image img {
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.item-blog__content {
    position: relative;
    z-index: 5;
    background: #fcfcff;
    border-width: 0px 1px 1px 1px;
    border-style: solid;
    border-color: rgba(5, 5, 5, 0.2);
    border-radius: 0px 0px 15px 15px;
    padding: 20px 24px 25px 24px;
}

.item-blog__content::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #0297d8;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(101%);
    transition: transform 0.5s ease;
    z-index: -1;
}

.item-blog__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 25px 0;
}

.item-blog__category {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    width: 74px;
    height: 30px;
    transition: border 0.5s ease;
}

.item-blog__category span {
    font-size: 14px;
    line-height: 133%;
    letter-spacing: 0.02em;
    color: rgba(5, 5, 5, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    transition: color 0.5s ease;
}

.item-blog__date time {
    font-size: 14px;
    line-height: 133%;
    letter-spacing: 0.02em;
    color: rgba(5, 5, 5, 0.7);
    transition: color 0.5s ease;
}

.item-blog__desc p {
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.02em;
    color: #050505;
    transition: color 0.5s ease;
}

/* blogitem.html - blogitem block */
.main__blogitem {
    margin: 100px 0;
}

.blogitem__container {
    display: flex;
    position: relative;
}

.blogitem__frame {
    display: flex;
    align-items: start;
    margin: 0 0 0 105px;
}

.blogitem__content {
    max-width: 740px;
    width: 100%;
    margin: 0 30px 0 0;
}

.blogitem__content p {
    font-size: 18px;
    line-height: 167%;
    text-align: justify;
    color: #050505;
    margin: 0 0 12px 0;
}

.blogitem__content p:last-child {
    margin: 0;
}

/* blogitem.html - blogcon block */
.main__blogcon {
    margin: 0 0 100px 0;
}

.blogcon__content {
    text-align: center;
    margin: 0 0 110px 0;
}

.blogcon__tab-title {
    margin: 0 0 16px 0;
}

.blogcon__rec {
    margin: 0 -20px;
}

.rec-blogcon {
    display: flex;
    justify-content: space-between;
}

/* about.html - values block*/
.main__values {
    margin: 100px 0;
}

.values__frame {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.values__image {
    position: relative;
    max-width: 570px;
    width: 100%;
    border-radius: 15px;
    margin: 0 15px 0 0;
    overflow: hidden;
    background-image: url("../img/values/businessValues.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.values__image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 5, 5, 0.7);
    border-radius: inherit;
}

.values__image img {
    width: 100%;
    display: block;
    height: auto;
    border-radius: inherit;
}

.values__image-con {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    padding: 70px 50px;
    z-index: 5;
}

.values__image-con .values__title h2 {
    font-weight: 600;
    font-size: 32px;
    line-height: 1.8;
    color: #fcfcff;
    margin: 0 0 45px 0;
}

.values__image-con .values__desc p {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.67;
    letter-spacing: 0.03em;
    color: #f5f5f5;
}

.values__content {
    max-width: 570px;
    width: 100%;
}

.approach__tab-title,
.view__tab-title {
    margin: 0 0 16px 0;
}

.approach__desc p,
.view__desc p {
    font-weight: 500;
    font-size: 26px;
    line-height: 167%;
    color: #050505;
}

.values__content > div:first-child {
    margin: 0 0 65px 0;
}

/* about.html - partners block */
.main__partners {
    padding: 60px 0;
}

.partners {
    background-color: #f4f3ff;
}

.partners__title {
    margin: 0 0 40px 0;
}

.partners__title h2 {
    text-align: center;
}

.partners__body ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 -20px;
}

.partners__body ul li {
    display: inline-block;
    flex: 0 1 calc(33.333% - 40px);
    margin: 0 20px 85px 20px;
    border-radius: 20px;
}

.partners__body ul li img {
    border-radius: inherit;
}

/* about.html - reviews block */
.main__reviews {
    margin: 100px 0;
}

.reviews__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 40px 0;
}

.reviews__arrow-frame {
    width: 52px;
    height: 16px;
    cursor: pointer;
}

.reviews__arrow-frame span {
    background-image: url("../img/icons/arrow.svg");
    transition: background-image 0.5s ease;
    background-repeat: no-repeat;
    display: block;
    width: 100%;
    height: 100%;
}

.reviews__arrow-frame:hover span {
    background-image: url("../img/icons/arrowBlue.svg");
    transition: background-image 0.5s ease;
}

.reviews__arrow-frame span.reviews__arrow-next {
    transform: rotate(180deg);
}

.reviews__title h2 {
    text-align: center;
}

.reviews__list {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.reviews__list ul {
    display: flex;
    justify-content: space-between;
    margin: 0 -24px;
    transition: transform 0.5s ease;
}

.reviews__list ul li {
    flex: 0 0 calc(50% - 48px);
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 20px;
    padding: 30px;
    margin: 0 24px;
}

.user-review {
    display: flex;
    align-items: center;
    margin: 0 0 30px 0;
}

.user-review__inf {
    margin: 0 0 0 35px;
}

.user-review__name h3 {
    font-weight: 600;
    font-size: 20px;
    line-height: 179.02%;
    letter-spacing: 0.02em;
    color: #050505;
}

.user-review__job p {
    font-size: 15px;
    line-height: 179.02%;
    letter-spacing: 0.02em;
    color: #050505;
}

.review__text p {
    font-size: 18px;
    line-height: 179.02%;
    color: #050505;
}

/* contacts.html - contacts block */
.main__contacts {
    margin: 100px 0;
}

.item-contacts__title h2 {
    font-size: 25px !important;
    line-height: 38px !important;
}

.item-contacts__inf address,
.item-contacts__inf a {
    font-size: 18px;
    line-height: 160.69%;
    display: flex;
    align-items: center;
    letter-spacing: 0.01em;
    color: #050505;
}

.contacts__list ul {
    display: flex;
    justify-content: space-between;
}

.contacts__list ul li {
    width: 100%;
    height: 100%;
    position: relative;
    flex: 0 1 33.333%;
    padding: 25px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contacts__list ul li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background-color: #aeb2d5;
    display: block;
    width: 1px;
    height: 100%;
}

.item-contacts__title {
    margin: 0 0 25px 0;
    text-align: center;
}

.item-contacts__inf {
    position: relative;
}

.item-contacts__inf address::before,
.item-contacts__inf a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 25px;
    height: 25px;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-size: 25px 25px;
}

.item-contacts__inf {
    padding: 0 0 0 39px;
}

.item-contacts__inf a {
    display: block;
    transition: color 0.3s ease;
}

.item-contacts__address address::before {
    background-image: url("../img/icons/locationContacts.svg");
}

.item-contacts__mail a::before {
    background-image: url("../img/icons/mailContacts.svg");
    transition: all 0.3s ease;
}

.item-contacts__tel a::before {
    background-image: url("../img/icons/phoneContacts.svg");
    transition: all 0.3s ease;
}

.item-contacts__inf:hover.item-contacts__mail a::before {
    background-image: url("../img/icons/mailContactsBlue.svg");
    transition: all 0.3s ease;
}

.item-contacts__inf:hover.item-contacts__tel a::before {
    background-image: url("../img/icons/phoneContactsBlue.svg");
    transition: all 0.3s ease;
}

.item-contacts__inf:hover a {
    color: #5925dc;
    transition: color 0.3s ease;
}

/* contacts.html - questions-block */
.main__questions-block {
    margin: 0 0 100px 0;
}

.questions-block__content {
    text-align: center;
    margin: 0 0 40px 0;
}

.questions-block__body {
    margin: 0 84px;
}

.questions-block__block {
    margin: 0 0 20px 0;
}

.questions-block__block:last-child {
    margin: 0;
}

.block-question {
    border-bottom: 1px solid #aeb2d5;
    overflow: hidden;
}

.block-question__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0 0 20px 0;
}

.block-question__title h3 {
    font-size: 25px;
    line-height: 38px;
    letter-spacing: 0.03em;
    color: #050505;
}

.block-question__title span {
    position: relative;
    display: block;
    width: 25px;
    height: 25px;
    transition: transform 0.5s ease;
}

.block-question__title span::before,
.block-question__title span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 100%;
    background-color: #5925dc;
}

.block-question__title span::after {
    transform: translateY(0) rotate(-90deg);
    top: 0;
}

.block-question__title span::before {
    transition: transform 0.5s ease, top 0.5s ease;
}

.block-question__title._active span {
    transform: rotate(360deg);
    transition: transform 0.5s ease;
}

.block-question__title._active span::before {
    transform: translateY(0) rotate(-90deg);
    top: 0;
    transition: transform 0.5s ease, top 0.5s ease;
}

.block-question__body {
    max-height: 0px;
    opacity: 0;
    visibility: hidden;
    margin: 0;
    transition: all 0.5s ease;
}

.block-question__body._active {
    opacity: 1;
    visibility: visible;
    margin: 0 0 20px 0;
    transition: all 0.5s ease;
}

.block-question__body p {
    font-weight: 300;
    line-height: 166%;
    color: #050505;
    max-width: 940px;
    width: 100%;
}

/* services.html - types block */
.main__types {
    margin: 100px 0 60px 0;
}

.types__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0 42px 0;
}

.types__tab-title {
    margin: 0 0 16px 0;
}

.types__title {
    margin: 0 0 30px 0;
}

.types__desc {
    max-width: 1000px;
    width: 100%;
}

div.types__desc p {
    text-align: center;
    line-height: 24px;
    letter-spacing: 0.02em;
}

.blocks-types {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
}

.types-block {
    flex: 1 1 calc(50% - 40px);
    margin: 0 20px 40px 20px;
    display: flex;
    flex-direction: column;
}

.types-block__title {
    margin: 0 0 16px 0;
}

.types-block__title h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.02em;
    color: #050505;
}

.types-block__paragraph {
    flex: 1;
}

.types-block__paragraph p {
    line-height: 25px;
    letter-spacing: 0.04em;
    color: #050505;
}

.types-block__workers {
    background-color: #5925dc;
    border-radius: 20px;
    width: 100%;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.types-block__workers p {
    display: inline-block;
    font-weight: 700;
    font-size: 22px;
    line-height: 33px;
    text-align: center;
    color: #ffffff;
    max-width: 340px;
    width: 100%;
    padding: 0 10px;
}

/* service.html - prices block */
.main__prices {
    margin: 0 0 100px 0;
}

.prices__container {
    max-width: 1380px;
    margin: 0 auto;
    width: 100%;
    padding: 0 10px;
}

.prices__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 660px;
    width: 100%;
    margin: 0 auto 40px auto;
    text-align: center;
}

.prices__tab-title {
    margin: 0 0 16px 0;
}

.prices__body {
    position: relative;
}

.slider-prices {
    position: relative;
    max-width: 1220px;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.slider-prices__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    background-color: rgba(232, 237, 251, 0.6);
    border-radius: 100%;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.2s ease;
}

.slider-prices__arrow:hover {
    background-color: #5925dc;
    transition: background-color 0.2s ease;
}

.slider-prices__arrow:hover span {
    border: 2px solid #fff;
    border-left: 0;
    border-top: 0;
    transition: border 0.2s ease;
}

.slider-prices__prev {
    left: 0;
}

.slider-prices__next {
    right: 0;
}

.slider-prices__arrow span {
    display: block;
    width: 15px;
    height: 15px;
    border: 2px solid rgba(89, 37, 220, 0.4);
    border-left: 0;
    border-top: 0;
    transition: border 0.2s ease;
}

.slider-prices__prev span {
    transform: translateX(3px) rotate(135deg);
}

.slider-prices__next span {
    transform: translateX(-3px) rotate(-45deg);
}

.slider-prices__body {
    display: flex;
    transition: transform 300ms ease;
    margin: 0 -12px;
}

.slider-prices__item {
    flex: 0 0 calc(33.333% - 24px);
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.prices__dots {
    margin: 40px -5px 0 -5px;
}

.dots-prices {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    row-gap: 5px;
}

.dots-prices__dot {
    width: 14px;
    height: 14px;
    border: 1px solid #0297d8;
    border-radius: 100%;
    margin: 0 5px;
}

.dots-prices__dot.dots-prices__dot_active {
    background-color: #0297d8;
}

/* ======================================================================== */

/* ======================================================================== */
/* Additional Page Styles
/* Burger Menu basic styles */
.burger-menu__icon {
    display: none;
}

.burger-menu {
    display: none;
}

/* ======================================================================== */

/* ======================================================================== */
/* Attribute Selector */

/* ======================================================================== */

/* ======================================================================== */
/*------------------------------------------------------------------------- */
/* Media Queries
Large desktops and laptops            - media (min-width: 1200px) {} 
Portrait tablets and medium desktops  - media (min-width: 992px) {} and (max-width: 1199px) {}
Portrait tablets and small desktops   - media (min-width: 768px) {} and (max-width: 991px) {}
Landscape phones and portrait tablets - media (max-width: 767px) {}
Landscape phones and smaller          - media (max-width: 480px) {}
Smaller phones                        - media (max-width: 320px) {} */
/*------------------------------------------------------------------------- */
/* Additional Medias */
/* Additional Medias 1350px */
@media (max-width: 1350px) {
    /* Common Blocks at 1350px */
    /* Aside Share at 1350px */
    .aside-share {
        left: 15px;
    }
}

/*------------------------------------------------------------------------- */
/* Media */
/* Portrait tablets and medium desktops 1199px */
@media (max-width: 1199px) {
    /* Trust Block */
    .trust__image-wrapper {
        position: relative;
        z-index: 15;
    }

    .success {
        display: flex;
        align-items: center;
        position: relative;
        top: -25px;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: auto;
        padding: 35px 10px 10px 10px;
    }

    .success div:not(:last-child) {
        margin: 0 10px 0 0;
    }

    .success__title span {
        font-size: 30px;
        line-height: 45px;
    }

    .success__subtitle p {
        font-size: 20px;
    }

    /* Scheme Block */
    .level-scheme__wrapper {
        display: block;
    }

    .level-scheme1 .item-scheme,
    .level-scheme3 .item-scheme {
        margin: 0 0 30px 0;
    }

    .item-scheme {
        flex-direction: column-reverse;
        justify-content: center;
    }

    .item-scheme__text {
        margin: 0;
    }

    .item-scheme__text p {
        text-align: center;
    }

    .level-scheme .item-scheme::after,
    .level-scheme1 .item-scheme:last-child::after {
        right: 50%;
        bottom: -30px;
        top: unset;
        left: unset;
        height: 30px;
        width: 1px;
        transform: translateY(0);
    }

    .level-scheme3 .item-scheme:first-child:before {
        top: -30px;
        height: 30px;
    }

    .level-scheme3 .item-scheme__text {
        max-width: 100%;
    }

    .construction-scheme__level:not(:last-child) {
        margin: 0 0 30px 0;
    }

    .item-scheme__dotted {
        border: 1px solid rgba(252, 252, 255, 0.6);
    }
}

/* Portrait tablets and small desktops 991px*/
@media (max-width: 991px) {
    /* Preheader 991px */
    .preheader__address span,
    .preheader__item span {
        font-size: 12px;
    }

    /* Header 991px */
    .header__item > a {
        font-size: 14px;
        margin: 0 15px;
    }

    .header__phone {
        flex: 0 0 145px;
    }

    .header__phone a {
        margin: 0;
    }

    .header__phone a,
    .header__phone button {
        font-size: 16px;
    }

    .header__phone a,
    .header__phone button {
        text-align: end;
    }

    .header__nav {
        margin: 0 0 0 15px;
    }

    .header__arrow-down {
        display: block;
        right: 0;
    }

    .header__sub-arrow {
        left: 0;
    }

    /* Main Block at 991px */
    .main__container {
        margin: 124.6px 0 0 0;
    }

    /* Webstructure at 991px */
    .web {
        height: 100%;
    }

    .web::after {
        content: "";
        background-color: rgba(0, 0, 0, 0.5);
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
    }

    .top-web__image {
        position: absolute;
        bottom: -20%;
        left: -20%;
        animation: float none;
    }

    .top-web {
        text-align: center;
    }

    .top-web__content {
        flex: 1 1 100%;
        margin: 0;
    }

    .top-web__buttons {
        flex-direction: column;
    }

    .top-web__gray {
        margin: 10px 0 0 0;
    }

    .top-web__btn:first-child {
        margin: 0;
    }

    .top-web__title h1 {
        font-size: 27px;
        line-height: 35px;
    }

    .top-web__title,
    .top-web__desc {
        margin: 0 0 15px 0;
    }

    .web__bottom {
        margin: 45px 0 0 0;
        z-index: 5;
        position: relative;
    }

    .bottom-web__list {
        height: 100%;
        flex-direction: column;
    }

    .bottom-web__list .item-web {
        flex: 1;
        flex-direction: row;
        justify-content: space-between;
        border-bottom: 2px solid #fff;
    }

    .bottom-web__line {
        display: none;
    }

    #planet {
        animation: planetRotate 30s linear infinite;
    }

    .item-web__subtitle a {
        text-decoration: underline;
    }

    /* About at 991px */
    .main__about {
        padding: 35px 0;
    }

    .about__container {
        flex-direction: column;
    }

    .about__content {
        flex: 1;
    }

    .about__desc {
        margin: 20px 0 0 0;
    }

    .about__image {
        margin: 20px 0 0 0;
        max-width: 100%;
        max-height: 100%;
        height: 300px;
    }

    /* Services at 991px */
    .main__services {
        padding: 35px 0 0 0;
    }

    .services-main__list {
        flex-direction: column;
    }

    .service__frame {
        max-width: 100%;
    }

    .service {
        margin: 0 0 15px 0;
    }

    .services-main__list {
        margin: 0;
    }

    .services-main__frame {
        padding: 20px;
    }

    .service:hover {
        transform: scale(1);
    }

    .service__details a {
        color: #fff;
    }

    .service__details a::before {
        background-color: #fff;
    }

    .service::after {
        transform: translateY(0);
    }

    .service__details::before {
        transform: translate(115%, -50%) rotate(-45deg);
        opacity: 1;
    }

    /* Video at 991px */
    .main__video {
        margin: 35px 0 0 0;
    }

    /* Skills at 991px */
    .main__skills {
        padding: 50px 0 0 0;
    }

    .item-skills__item {
        flex: 0 1 calc(33% - 20px);
        margin: 0 10px 30px 10px;
    }

    .skills__menu {
        margin: 25px 0 0 0;
    }

    /* Trust at 991px */
    .main__trust {
        margin: 35px 0 0 0;
    }

    .trust__container {
        flex-direction: column-reverse;
    }

    .trust__image-wrapper {
        max-width: 100%;
    }

    .trust__image {
        margin: 25px 0 0 0;
    }

    .trust__content {
        width: 100%;
        margin: 0;
        flex: 1 1 100%;
        align-items: center;
    }

    .trust__menu {
        margin: 25px 0 0 0;
    }

    .trust__list {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .trust__item {
        flex: 0 1 33.333%;
    }

    .trust__item span {
        font-size: 19px;
    }

    .success {
        display: none;
    }

    /* Works at 991px */
    .main__works {
        padding: 50px 0 0 0;
    }

    .works__body {
        margin: 25px 0 0 0;
    }

    .body-works__list {
        margin: 0 -10px;
    }

    .item-works {
        flex: 0 1 calc(50% - 20px);
        margin: 0 10px 20px 10px;
        webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

    .item-works:hover .item-works__image img {
        transform: scale(1);
        transition: none;
    }

    .item-works:hover .item-works__content::after {
        display: none;
    }

    .item-works:hover .item-works__desc a {
        color: #050505;
        transition: none;
    }

    /* Tarif at 991px */
    .main__tarif {
        padding: 35px 0;
        margin: 35px 0 0 0;
    }

    .tarif__list {
        flex-direction: column;
        margin: 0;
    }

    .item-tarif {
        flex: 1 1 100%;
        margin: 0 0 20px 0;
        padding: 25px 15px;
    }

    .item-tarif:last-child {
        margin: 0;
    }

    .item-tarif__points {
        margin: 20px 0 0 0;
    }

    .item-tarif__points_list {
        display: flex;
        flex-wrap: wrap;
    }

    .item-point {
        flex: 0 1 50%;
    }

    .item-tarif__btn_frame {
        margin: 20px 0 0 0;
    }

    /* CallBack at 991px */
    .main__callback {
        margin: 35px 0;
    }

    /* Common Blocks at 991px */
    .mw-300 {
        max-width: 300px !important;
    }

    .title h2,
    .title h2 span {
        line-height: 40px !important;
    }

    .desc p {
        line-height: 25px !important;
    }

    .aside-share {
        position: relative;
        left: 0;
        display: flex;
        margin: 0 0 25px 0;
    }

    .aside-share__frame {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex: 0 0 300px;
        max-width: 100%;
    }

    .aside-share__text {
        width: auto;
        transform: rotate(0);
        writing-mode: unset;
        display: block;
        margin: 0;
    }

    .aside-share__decor {
        margin: 0 15px 0 0;
    }

    .aside-share__decor span {
        height: 1px;
        width: 50px;
        transform: rotate(0);
        margin: 0;
    }

    .aside-share__links {
        display: flex;
        align-items: center;
    }

    .aside-share__links li:not(:last-child) {
        margin: 0 15px 0 0;
    }

    .aside-share__links li {
        margin: 0 15px 0 0;
    }

    div.questions {
        max-width: 100%;
        padding: 20px;
    }

    .questions__title,
    .questions__desc {
        text-align: center;
    }

    div.questions__desc {
        margin: 0 0 25px 0;
    }

    /* Footer at 991px */
    .footer__frame {
        padding: 35px 0;
    }

    /* Other Pages at 991px */
    /* vacancies.html - web block at 991px */
    .main__cube-web {
        padding: 35px 0 15px 0;
    }

    .main__cube-web .top-web__content {
        margin: 0 auto;
        min-height: 150px;
    }

    .top-web__desc p {
        line-height: 160%;
    }

    /* vacancies.html - vacancies block at 991px */
    .main__vacancies {
        margin: 35px 0;
    }

    .vacancies__body {
        margin: 15px 0 0 0;
    }

    .vacancies__item {
        padding: 15px 0;
    }

    /* vacancies.html - presentation block at 991px */
    .main__presentation {
        margin: 35px 0;
    }

    /* vacanciesItem.html - vacancie description at 991px */
    .main__vacancie-desc {
        margin: 35px 0;
    }

    .vacancie-desc__container {
        display: flex;
        flex-direction: column;
    }

    .vacancie-desc__frame {
        margin: 0;
    }

    .vacancie-desc__points,
    .vacancie-desc__description {
        margin: 20px 0 0 0;
    }

    .points-vacancie__list {
        max-width: 100%;
    }

    .points-vacancie__item {
        flex: 0 0 100%;
        width: 100%;
    }

    .skills-vacancie {
        display: block;
    }

    .skills-vacancie__skills {
        margin: 0 0 15px 0;
    }

    /* vacanciesItem.html - response block at 991px */
    .response {
        padding: 35px 0;
    }

    .response__title h2 {
        margin: 0 0 15px 0;
    }

    .form-response {
        margin: 35px auto 0 auto;
    }

    /* blog.html - blogs block at 991px */
    .main__blogs {
        margin: 35px 0;
    }

    .blogs__box {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 0 30px 0;
    }

    .blogs__tab {
        margin: 0;
        max-width: 100% !important;
        border-radius: 5px;
    }

    .blogs__tab:hover,
    .blogs__tab._tab-on {
        transform: scale(1) !important;
    }

    .blogs__line {
        display: none !important;
    }

    .blogs__item {
        margin: 0 10px 30px 10px;
    }

    .blogs__body-con {
        margin: 0 -10px;
    }

    .item-blog {
        flex: 0 1 calc(50% - 20px);
    }

    /* blogitem.html - blogitem block at 991px */
    .main__blogitem {
        margin: 35px 0;
    }

    .blogitem__container {
        flex-direction: column;
    }

    .blogitem__frame {
        margin: 0;
        flex-direction: column;
    }

    .blogitem__content {
        max-width: 100%;
        margin: 0 0 25px 0;
    }

    /* blogitem.html - blogcon block at 991px */
    .main__blogcon {
        margin: 0 0 35px 0;
    }

    div.blogcon__content {
        margin: 0 0 50px 0;
    }

    .blogcon__rec {
        margin: 0 -10px;
    }

    /* about.html - values block at 991px */
    .main__values {
        margin: 35px 0;
    }

    .values__frame {
        flex-direction: column-reverse;
    }

    .values__image,
    .values__content {
        max-width: 100%;
        text-align: center;
    }

    .values__image {
        margin: 0;
    }

    .values__content > div,
    .values__content > div:first-child {
        margin: 0 0 30px 0;
    }

    /* about.html - partners block at 991px */
    .main__partners {
        padding: 35px 0;
    }

    .partners__body ul li {
        flex: 0 1 calc(50% - 40px);
    }

    /* contacts.html - contacts block at 991px */
    .main__contacts {
        margin: 35px 0;
    }

    .contacts__list ul {
        flex-direction: column;
    }

    .contacts__list ul li {
        border: 1px solid rgba(0, 0, 0, 0.12);
        border-left: 0;
        border-right: 0;
        text-align: center;
    }

    .contacts__list ul li::after,
    .item-contacts__inf address::before,
    .item-contacts__inf a::before {
        display: none !important;
    }

    .item-contacts__inf {
        padding: 0;
    }

    .item-contacts__title {
        margin: 0 0 15px 0;
    }

    /* contacts.html - questions-block at 991px */
    .main__questions-block {
        margin: 0 0 35px 0;
    }

    .questions-block__content {
        margin: 0 0 25px 0;
    }

    .questions-block__body {
        margin: 0;
    }

    /* uslugi.html - scheme block at 991px */
    .level-scheme2 .item-scheme__text-block__frame {
        flex-direction: column;
    }

    .level-scheme2 .item-scheme__text-block:not(:last-child) {
        margin: 0 0 20px 0;
    }

    .item-scheme__text-block::after {
        width: 1px;
        height: 20px;
        top: unset;
        bottom: -20px;
        right: 50%;
        transform: translateX(-50%);
    }

    .level-scheme2 .item-scheme__text-block {
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }

    /* services.html - types block at 991px */
    .blocks-types {
        margin: 0;
    }

    .types-block {
        flex: 1 1 100%;
        margin: 0 0 10px 0;
    }

    .types-block__title {
        margin: 0 0 5px 0;
    }

    .types-block__paragraph {
        margin: 0 0 10px 0;
    }

    /* services.html - prices block at 991px */
    .slider-prices__item {
        flex: 0 0 calc(50% - 24px);
        margin: 0 12px;
    }

    .slider-prices__item .item-tarif__points_list {
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .slider-prices__item .item-point {
        flex: 1 1 100%;
    }

    .slider-prices__item:last-child {
        margin: 0 12px;
    }
}

/* ----------------------------------------------------------------------------- */
/* Landscape phones and portrait tablets */
@media (max-width: 767px) {
    /* _____________________________________________________________________________ */
    /* Preheader at 767px */
    .preheader {
        display: none;
    }

    /* _____________________________________________________________________________ */
    /* _____________________________________________________________________________ */
    /* Header at 767px */
    .header__item:hover > a,
    .sub-menu__item:hover > a {
        color: #fff;
    }

    .header__image {
        max-width: 120px;
    }

    /* Burger Menu */
    /* Header Burger Menu at 767px*/
    .burger-menu {
        display: block;
        box-shadow: 0px 0px 0px 4px rgba(92, 103, 255, 0.3);
        background-color: #0297d8;
        border-radius: 50%;
        width: 45px;
        height: 45px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        transition: 0.3s ease;
        z-index: 10;
        animation: onePulse 2s infinite ease-in-out;
        margin: 0 5px 0 5px;
    }

    .burger-menu._anim-stop {
        animation-play-state: paused;
    }

    .burger-menu__icon {
        display: block;
        position: relative;
        z-index: 4;
        width: 25px;
        height: 20px;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .burger-menu__icon span,
    .burger-menu__icon::before,
    .burger-menu__icon::after {
        position: absolute;
        height: 15%;
        width: 100%;
        background-color: #fff;
        transition: transform 0.3s ease 0s;
        border-radius: 2px;
    }

    .burger-menu__icon::before,
    .burger-menu__icon::after {
        content: "";
        width: 50%;
    }

    .burger-menu__icon::before {
        top: 0;
        left: 0;
        transition: transform 300ms cubic-bezier(0.52, -0.8, 0.52, 0.52);
        transform-origin: left;
    }

    .burger-menu__icon::after {
        bottom: 0;
        right: 0;
        transition: transform 300ms cubic-bezier(0.52, -0.8, 0.52, 0.52);
        transform-origin: right;
    }

    .burger-menu__icon span {
        top: 50%;
        transform: scale(1) translate(0, -50%);
    }

    .burger-menu__icon._cross span {
        transform: rotate(-45deg);
    }

    .burger-menu__icon._cross::before {
        top: 0;
        left: 0;
        transform: rotate(45deg) translate(3px, -2.5px);
    }

    .burger-menu__icon._cross::after {
        bottom: 0;
        right: 0;
        transform: rotate(45deg) translate(-1px, 2.5px);
    }

    /* Header Navigation Menu 767px */
    .menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        padding: 74px 15px 20px 10px;
        transition: left 0.3s ease;
        overflow: auto;
        margin: 0;
    }

    .menu::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        z-index: 25;
        width: 100%;
        min-height: 74px;
        display: block;
        background-color: #fff;
    }

    .menu::after {
        content: "";
        position: fixed;
        top: -100%;
        right: -100%;
        width: 100%;
        height: 100vh;
        z-index: 20;
        display: block;
        transition: all 0.3s ease 0.2s;
        background-color: #0297d8;
        border-radius: 50%;
    }

    .menu._active::after {
        top: 0;
        right: 0;
        border-radius: 0;
    }

    .menu._active {
        left: 0;
        transition: left 0.4s ease 0.3s;
    }

    .header__item {
        width: 100%;
    }

    .header__item > a {
        color: #fff;
        font-size: 22px;
        line-height: 40px;
        font-weight: 600;
        padding: 0;
        margin: 0;
    }

    .header__menu {
        flex-wrap: nowrap;
        flex-direction: column;
        align-items: flex-end;
        padding: 15px 0;
        position: relative;
        z-index: 21;
        margin: 15px 0 0 0;
    }

    .header__menu::after,
    .header__menu::before {
        content: "";
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #fff;
        transform: scale(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .header__menu::before {
        top: 0;
    }

    .menu._active .header__menu::after,
    .menu._active .header__menu::before {
        transform: scale(1);
        transition: transform 0.3s ease 0.4s;
    }

    .sub-menu {
        position: relative;
        top: 0;
        left: 0;
        max-width: 100%;
        width: 100%;
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        overflow: hidden;
        border: 0;
        max-height: 0;
        padding: 0;
        transition: max-height 0.5s ease, padding 0.5s ease 0.2s;
    }

    .sub-menu._sub-active {
        max-height: 1000px;
        padding: 15px 0;
        transition: max-height 1s ease, padding 0.5s ease;
    }

    .sub-menu__item {
        padding: 0 15px;
    }

    .sub-menu__item a span {
        color: #5925dc;
        font-size: 20px;
    }

    .header__arrow-down {
        top: 17px;
        right: 0;
        width: 12px;
        height: 12px;
        border: 2px solid #fff;
        border-left: 0;
        border-top: 0;
        padding: 7px;
        transition: all 0.5s ease;
    }

    .header__arrow-down._arrow-down-active {
        border: 2px solid #fff;
        border-left: 0;
        border-top: 0;
        padding: 5px;
        transition: all 0.5s ease;
    }

    /* Header at 767px*/
    .header__phone {
        flex: unset;
        margin: 0;
    }

    .header__item > a:hover {
        color: #fff;
    }

    .header__phone a,
    .header__phone button {
        font-size: 18px;
    }

    .header__phone a,
    .header__phone button {
        text-align: center;
    }

    /* _____________________________________________________________________________ */
    /* _____________________________________________________________________________ */
    /* Main Container at 767px */
    .main__container {
        margin: 74px 0 0 0;
    }

    .item-web__title abbr {
        font-size: 18px;
    }

    /* _____________________________________________________________________________ */
    /* _____________________________________________________________________________ */
    /* About at 767px */
    .about__image {
        display: none;
    }

    /* _____________________________________________________________________________ */
    /* _____________________________________________________________________________ */
    /* Video at 767px */
    .video__frame {
        height: 330px;
    }

    /* _____________________________________________________________________________ */
    /* _____________________________________________________________________________ */
    /* Skills at 767px */
    .skills {
        box-shadow: none;
    }

    .menu-skills__body {
        margin: 20px 0 0 0;
    }

    /* _____________________________________________________________________________ */
    /* _____________________________________________________________________________ */
    /* Trust at 767px */
    .trust {
        box-shadow: none;
    }

    .trust__image {
        display: none;
    }

    .trust__item {
        display: flex;
        flex: 0 1 50%;
    }

    /* _____________________________________________________________________________ */
    /* _____________________________________________________________________________ */
    /* Works at 767px */
    .body-works__list {
        margin: 0;
    }

    .item-works {
        flex: 1 1 100%;
        margin: 0 0 20px 0;
    }

    /* _____________________________________________________________________________ */
    /* _____________________________________________________________________________ */
    /* Tarif at 767px */
    .item-tarif {
        background-color: #5925dc;
    }

    .item-tarif:hover {
        background-color: #0297d8;
        transform: scale(1) translateY(0);
        transition: none;
    }

    .item-tarif__title,
    .item-point__text {
        color: #fff;
    }

    .item-tarif__button .gradient-btn {
        background-image: linear-gradient(
            87deg,
            rgba(102, 39, 247, 1) 0%,
            rgba(21, 208, 215, 1) 47%
        );
        transition: color 0.5s ease, background-image 0.3s ease,
            transform 0.5s ease;
        background-position: 200% 200%;
        animation: gradient 3s linear infinite alternate;
        color: #fff;
    }

    .item-tarif__points_list {
        margin: 0 -10px;
    }

    .item-point,
    .item-point:last-child {
        flex: 0 1 calc(50% - 20px);
        margin: 0 10px 12px 10px;
    }

    /* _____________________________________________________________________________ */
    /* _____________________________________________________________________________ */
    /* CallBack at 767px */
    .callback__frame {
        padding: 30px 20px;
    }

    /* _____________________________________________________________________________ */
    /* _____________________________________________________________________________ */
    /* Footer at 767px */
    .footer__content {
        flex-direction: column;
    }

    .footer__column {
        align-items: center;
        border: 2px solid #0297d8;
        border-radius: 10px;
        background-color: #fff;
    }

    .footer__item {
        width: 100%;
        display: flex;
        justify-content: center;
        text-align: center;
        margin: 0 0 20px 0;
    }

    .footer__item a,
    .footer__contacts .footer__item a address span {
        font-size: 24px;
    }

    .footer__column {
        margin: 0 0 5px 0;
    }

    .footer__column:last-child {
        margin: 0;
    }

    div.footer__title span:first-child {
        font-size: 26px;
        font-weight: 700;
        transition: color 0.5s ease;
    }

    .footer__title {
        cursor: pointer;
        border-bottom: 0px solid transparent;
        transition: border-bottom 0.3s ease 0.3s, background-color 0.5s ease;
    }

    .footer__title span:nth-child(2) {
        display: block;
        width: 32px;
        height: 32px;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        transition: transform 0.5s ease;
        margin: 0 5px 0 0;
    }

    .footer__title._active span:nth-child(2) {
        transform: translateY(-50%) rotate(225deg);
        transition: transform 0.5s ease;
    }

    .footer__title._active {
        border-bottom: 2px solid #0297d8;
        transition: border-bottom 0s ease 0s, background-color 0.5s ease;
        background-color: #0297d8;
        border-radius: 8px 8px 0 0;
    }

    .footer__title._active span:first-child {
        color: #fff;
        transition: color 0.5s ease;
    }

    .footer__title,
    .footer__nav,
    .footer__main-nav,
    .footer__logo {
        width: 100%;
        text-align: center;
        padding: 15px 0;
    }

    .footer__logo {
        display: flex;
        justify-content: center;
    }

    .footer__nav,
    .footer__main-nav {
        margin: 0;
    }

    .footer__services nav,
    .footer__useful nav,
    .footer__contacts nav {
        max-height: 0px;
        padding: 0;
        overflow: hidden;
        transition: all 0.3s ease, padding 0.5s ease;
    }

    .footer__column .footer__title {
        position: relative;
    }

    .footer__column .footer__title span:nth-child(2)::before,
    .footer__column .footer__title span:nth-child(2)::after {
        content: "";
        background: #0297d8;
        height: 15px;
        width: 3px;
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 14.5px;
        transition: background-color 0.5s ease;
    }

    .footer__column .footer__title span:last-child::after {
        transform: translateY(-50%) rotate(90deg);
    }

    .footer__title._active span:nth-child(2)::before,
    .footer__title._active span:nth-child(2)::after {
        background-color: #fff;
        transition: background-color 0.5s ease;
    }

    .footer__nav._active {
        opacity: 1;
        visibility: visible;
        margin: 15px 0;
        transition: all 0.3s ease;
    }

    .technical-news__input input:focus,
    .technical-news__input input:focus::placeholder {
        padding: 0 0 2px 0;
        font-size: 14px;
    }

    /* _____________________________________________________________________________ */
    /* _____________________________________________________________________________ */
    /* Common Blocks at 767px */
    .title h2,
    .title h2 span {
        font-size: 24px !important;
        line-height: 30px !important;
    }

    .top-web__gray {
        background: rgba(255, 255, 255, 0.3);
    }

    /* _____________________________________________________________________________ */
    /* ----------------------------------------------------------------------------- */
    /* Other Pages at 767px */
    /* ----------------------------------------------------------------------------- */
    /* _____________________________________________________________________________ */
    /* _____________________________________________________________________________ */
    /* vacancies.html */
    /* vacancies.html - vacancies block at 767px */
    .item-vacancie {
        flex-direction: column;
    }

    .item-vacancie__title {
        margin: 0 0 10px 0;
        flex: 1 1 100%;
    }

    .item-vacancie__view {
        margin: 15px 0 0 0;
    }

    /* vacancies.html - presentation block at 767px */
    .presentation__image {
        display: none;
    }

    .presentation__frame {
        padding: 30px 20px;
        justify-content: center;
    }

    .presentation__content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    div.presentation__title h2,
    .presentation__desc p {
        text-align: center;
    }

    .presentation__desc {
        margin: 0 0 38px 0;
    }

    .presentation__button {
        display: flex;
        justify-content: center;
    }

    /* vacanciesItem.html - response block at 767px */
    .vacancie-desc__item,
    .skills-vacancie__item {
        font-size: 16px;
    }

    .vacancie-desc__list {
        padding: 0 0 0 20px;
    }

    .form-response__inputs {
        margin: 0;
    }

    .form-response__input {
        flex: 1 1 100%;
        margin: 0 0 20px 0;
    }

    .form-response__textarea,
    .form-response__checkbox {
        margin: 0 0 20px 0;
    }

    .form-response__file {
        margin: 0 0 25px 0;
    }

    .form-response__file label {
        padding: 40.5px 15px 40.5px 15px;
    }

    .form-response__file .file__icon {
        margin: 0 0 15px 0;
    }

    .form-response__file span.file-main__text._active {
        display: none;
    }

    .form-response__file .file__main {
        flex-direction: column;
        margin: 0 0 10px 0;
    }

    .form-response__file .file__main .file__text {
        text-align: center;
    }

    .form-response label {
        font-size: 16px;
        line-height: 22px;
    }

    /* _____________________________________________________________________________ */
    /* _____________________________________________________________________________ */
    /* blog.html */
    /* blog.html - blogs block at 767px */
    .item-blog {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .blogs__body-con {
        margin: 0;
    }

    .item-blog:hover .item-blog__image img {
        transform: scale(1);
    }

    .item-blog:hover .item-blog__category {
        border: 1px solid rgba(0, 0, 0, 0.2);
    }

    .item-blog:hover .item-blog__category span,
    .item-blog:hover .item-blog__date time,
    .item-blog:hover .item-blog__desc p {
        color: rgba(5, 5, 5, 0.7);
    }

    .item-blog:hover .item-blog__content::after {
        transform: translateY(101%);
    }

    /* _____________________________________________________________________________ */
    /* _____________________________________________________________________________ */
    /* blogItem.html */
    /* blogitem.html - blogcon at 767px */
    .rec-blogcon {
        flex-direction: column;
    }

    /* _____________________________________________________________________________ */
    /* _____________________________________________________________________________ */
    /* about.html */
    /* about.html - values block at 767px */
    .values__image-con {
        padding: 30px;
    }

    .approach__desc p,
    .view__desc p {
        font-size: 20px;
    }

    /* about.html - reviews block at 767px */
    .reviews__list ul {
        margin: 0;
    }

    .reviews__list ul li {
        flex: 0 0 100%;
        margin: 0;
    }

    /* _____________________________________________________________________________ */
    /* _____________________________________________________________________________ */
    /* services.html */
    /* services.html - prcies block at 767px */
    .slider-prices__body {
        margin: 0;
    }

    .slider-prices__item {
        flex: 1 0 100%;
        margin: 0;
        width: 100%;
    }

    .slider-prices__item:last-child {
        margin: 0;
    }

    /* _____________________________________________________________________________ */
}

/* ----------------------------------------------------------------------------- */
/* Landscape phones and smaller 480px */
@media (max-width: 480px) {
    /* Header at 480px */
    .header__phone a,
    .header__phone button {
        font-size: 14px;
        line-height: 1.3;
    }

    .sub-menu__item a {
        white-space: wrap;
        align-items: start;
    }

    .sub-menu__item a::before,
    .sub-menu__item a::after {
        display: none;
    }

    .sub-menu__item {
        padding: 0;
        margin: 0 0 20px 0;
    }

    .sub-menu__item a span {
        font-size: 18px;
    }

    .menu::before {
        min-height: 65px;
    }

    /* Main Container */
    .main__container {
        margin: 65px 0 0 0;
    }

    /* WebStructure at 480px */
    .bottom-web__list .item-web .item-web__title {
        margin: 0;
        font-size: 18px;
    }

    .bottom-web__list .item-web .item-web__subtitle {
        font-size: 15px;
    }

    /* About at 480px */
    .about__tab-title,
    .about__button {
        display: flex;
        justify-content: center;
    }

    .about__title,
    .about__desc {
        text-align: center;
    }

    /* Video at 480px */
    .video__frame {
        height: 250px;
    }

    /* Trust at 480px */
    .trust__item {
        flex: 0 1 100%;
        margin: 0 0 20px 0;
    }

    .trust__list {
        flex-direction: column;
        justify-content: center;
    }

    /* Works at 480px */
    .item-works__link {
        height: 250px;
    }

    .item-works__desc a {
        font-size: 20px;
    }

    .item-works__desc {
        padding: 20px;
    }

    /* Tarif at 480px */
    .item-tarif {
        padding: 15px 10px;
    }

    .item-tarif__points_list {
        flex-direction: column;
        margin: 0;
    }

    .item-point,
    .item-point:last-child {
        flex: 1 1 100%;
        margin: 0 0 12px 0;
    }

    .item-point__text {
        margin: 0 0 0 10px;
    }

    .item-point__text p {
        font-size: 14px;
    }

    .item-tarif__btn_frame {
        margin: 10px 0 0 0;
    }

    /* Callback at 480px */
    .callback__image {
        display: none;
    }

    .callback__content {
        margin: 0;
        flex: 1;
    }

    .callback__tab-title,
    .callback__title h2,
    .callback__button {
        display: flex;
        justify-content: center;
        text-align: center;
    }

    /* Footer at 480px */
    div.footer__title span:first-child {
        font-size: 22px;
    }

    .footer__item {
        margin: 0 0 10px 0;
    }

    .footer__item a,
    .footer__contacts .footer__item a address span {
        font-size: 18px;
    }

    .footer__logo {
        padding: 15px 0 0 0;
    }

    .footer__share {
        flex-direction: column;
    }

    .footer__follow,
    .footer__technical-news {
        padding: 10px 0 0 0;
        margin: 0;
    }

    .follow {
        flex: 1 1 100%;
        align-items: center;
    }

    .follow__list,
    .footer__technical-news {
        margin: 10px 0 0 0;
    }

    .technical-news__title {
        text-align: center;
    }

    /* Other Pages at 480px */
    /* vacancies.html - Vacancies at 480px */
    .item-vacancie__view {
        flex-direction: column;
    }

    .item-vacancie__view-link {
        margin: 0 0 5px 0;
    }

    .item-vacancie__title {
        max-width: 100%;
    }

    .item-vacancie__title h3,
    .item-vacancie__body p {
        text-align: center;
    }

    .item-vacancie__body p {
        line-height: 160%;
        font-size: 16px;
    }

    /* blog.html - blogs at 480px */
    .item-blog__top {
        margin: 0 0 15px 0;
    }

    .item-blog__desc p {
        font-size: 16px;
    }

    .item-blog__image {
        height: 170px;
    }

    /* about.html - partners at 480px */
    .partners__body ul {
        margin: 0;
    }

    .partners__body ul li {
        flex: 1 1 100%;
        margin: 0 0 30px 0;
    }

    /* about.html - reviews at 767px */
    .reviews__list ul li {
        padding: 15px;
    }

    .user-review {
        flex-direction: column;
        margin: 0 0 15px 0;
    }

    .user-review__image {
        margin: 0 0 10px 0;
    }

    .review__text p {
        text-align: center;
    }
}

/* ======================================================================== */
/* Off Hover in Sensor Devices */
@media (hover: none) {
    /* Preheader at hover: none */
    .preheader__mail:hover a {
        color: #ffffff;
        transform: scale(1);
        transition: none;
    }

    .preheader__mail:hover a::before {
        background-image: url("../img/icons/mail.svg");
        transition: none;
        animation: none;
    }

    /* Skills at hover: none */
    .menu-skills__tab span:hover,
    .menu-skills__tab span:hover abbr {
        background: initial;
        background-clip: initial;
        -webkit-background-clip: initial;
        -webkit-text-fill-color: initial;
        color: initial;
        pointer-events: none;
    }

    .menu-skills__tab span:hover::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        background: initial;
        display: block;
        width: initial;
        height: initial;
        pointer-events: none;
    }

    /* Tarif at hover: none */
    .item-tarif__title,
    .item-point__text {
        color: #fff;
    }

    .item-tarif {
        background-color: #0297d8;
    }

    .item-tarif:hover {
        transform: scale(1) translateY(0);
        transition: none;
    }

    /* Works at hover: none */
    .item-works:hover .item-works__image img {
        transform: scale(1);
        transition: none;
    }

    .item-works:hover .item-works__content::after {
        display: none;
    }

    .item-works:hover .item-works__desc a {
        color: #050505;
        transition: none;
    }

    /* Services at hover: none */
    .service:hover {
        transform: scale(1) translateY(0);
    }

    .service::after {
        transform: translate(0);
    }

    .service__details::before {
        transform: translate(115%, -50%) rotate(-45deg);
        opacity: 1;
    }

    .service .service__details a {
        color: #fff;
    }

    .service .service__details a::before {
        background-color: #fff;
    }

    /* Other Pages at hover:none */
    /* blog.html - blogs block */
    .item-blog:hover .item-blog__image img {
        transform: scale(1);
    }

    .item-blog:hover .item-blog__category {
        border: 1px solid rgba(0, 0, 0, 0.2);
    }

    .item-blog:hover .item-blog__category span,
    .item-blog:hover .item-blog__date time,
    .item-blog:hover .item-blog__desc p {
        color: rgba(5, 5, 5, 0.7);
    }

    .item-blog:hover .item-blog__content::after {
        transform: translateY(101%);
    }

    .blogs__tab:hover,
    .blogs__tab._tab-on {
        transform: scale(1) !important;
    }
}

/* ======================================================================== */
/* Supports */
/* If Skills block tab scroll styles supports by Firefox and other browsers */
@supports (scrollbar-width: 7px) {
    .menu-skills__box {
        scrollbar-color: #fff rgba(102, 39, 247, 1);
    }
}

/*------------------------------------------------------------------------- */
/* ======================================================================== */

/* ======================================================================== */
/* Common Blocks */
/* Hide and Show Blocks */
/* Opacity */
._op._hide {
    opacity: 0;
}

._op._show {
    opacity: 1;
    transition: opacity 1s ease;
}

._op3._show {
    transition: opacity 1s ease 0.3s;
}

._op6._show {
    transition: opacity 1s ease 0.6s;
}

/* From Left to Right */
._right._hide {
    opacity: 0;
    transform: translateX(-50px);
}

._right._show {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 1s ease, transform 1s ease;
}

._right3._show {
    transition: opacity 1s ease 0.3s, transform 1s ease 0.3s;
}

._right6._show {
    transition: opacity 1s ease 0.6s, transform 1s ease 0.6s;
}

/* From Right to Left */
._left._hide {
    opacity: 0;
    transform: translateX(50px);
}

._left._show {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 1s ease, transform 1s ease;
}

._left3._show {
    transition: opacity 1s ease 0.3s, transform 1s ease 0.3s;
}

._left6._show {
    transition: opacity 1s ease 0.6s, transform 1s ease 0.6s;
}

/* From Up to Down */
._down._hide {
    opacity: 0;
    transform: translateY(-50px);
}

._down._show {
    opacity: 1;
    transform: none;
    transition: opacity 1s ease, transform 1s ease;
}

._down3._show {
    transition: opacity 1s ease 0.3s, transform 1s ease 0.3s;
}

._down6._show {
    transition: opacity 1s ease 0.6s, transform 1s ease 0.6s;
}

/* From Down to Up */
._up._hide {
    opacity: 0;
    transform: translateY(50px);
}

._up._show {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s ease, transform 1s ease;
}

/* Scale */
._scale._hide {
    opacity: 0;
    transform: scale(0.9);
}

._scale._show {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1s ease, transform 1s ease;
}

._scale3._show {
    transition: opacity 1s ease 0.3s, transform 1s ease 0.3s;
}

/* Sections Height */
.vh100 {
    height: 100vh;
}

/* Container Max Width */
.__container {
    max-width: 1240px;
    padding: 0 10px;
    margin: 0 auto;
    width: 100%;
}

/* Burger menu lock */
._lock {
    overflow: hidden;
}

/* Main Button */
.button {
    width: 100%;
}

.btn {
    background: #0297d8;
    border-radius: 83px;
    max-width: 174px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.btn,
.btn span {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: 0.04em;
    color: #ffffff;
}

/* Blue Button Animation */
.blue-btn {
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
    min-height: 48px;
    border: 1px solid transparent;
}

.blue-btn:hover {
    background-color: #027cb1;
    border: 1px solid #027cb1;
    transition: all 0.3s ease;
}

/* Green Button Animation */
.green-btn {
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100%;
    height: 100%;
    min-height: 48px;
    background-color: #00adb8;
}

.green-btn:hover {
    transform: scale(1.03);
    background-color: #5925dc;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Download Icon */
.dwn span {
    position: relative;
    padding: 0 0 0 31.17px;
}

.dwn span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: block;
    background-image: url("../img/icons/download.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 25px;
    height: 25px;
}

/* Line */
.line {
    display: block;
    width: 1px;
    height: 100%;
    background-color: #454545;
}

/* Tab Title */
.tab-title span {
    font-weight: 700;
    font-size: 12px;
    line-height: 12px;
    text-transform: uppercase;
    color: #0297d8;
    border: 2px solid #0297d8;
    background: #f4f3ff;
    border-radius: 30px;
    text-align: center;
    padding: 2px 16px;
}

/* Block Title */
.title h2,
.title h2 span {
    font-weight: 600;
    font-size: 36px;
    line-height: 54px;
    letter-spacing: 0.02em;
    color: #050505;
}

/* Min Title */
.title-min,
.title-min span {
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    color: rgba(5, 5, 5, 0.9);
}

/* Block Description */
.desc p {
    line-height: 32px;
    color: #050505;
}

/* Blue Icon */
.blue-icon__frame {
    width: 32px;
    height: 32px;
    background: #0297d8;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px;
}

.blue-icon__frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    position: relative;
    z-index: 5;
}

/* Facebook icon */
.facebook-icon {
    padding: 0;
}

.facebook-icon img {
    top: 4px;
    left: 4px;
}

/* BreadCrumbs */
.breadcrumb__frame {
    margin: 7px 0 0 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
}

.breadcrumb li:first-child {
    padding: 0;
}

.breadcrumb li:last-child {
    text-decoration: none;
}

.breadcrumb li a:hover {
    color: #5925dc;
    transition: color 0.3s ease;
}

.breadcrumb li a,
.breadcrumb li {
    transition: color 0.3s ease;
    line-height: 175%;
    text-decoration-line: underline;
    color: rgba(250, 250, 250, 0.9);
}

.breadcrumb li {
    position: relative;
    padding: 0 0 0 15px;
    margin: 0 0 0 5px;
}

.breadcrumb li + li:before {
    content: "";
    width: 5px;
    height: 5px;
    border: 2px solid #fff;
    border-left: 0;
    border-top: 0;
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(-45deg);
}

/* Pagination */
.pagination {
    width: 100%;
}

.pagination ul {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination__arrow {
    width: 15px;
    height: 15px;
    display: block;
    border: 2px solid #3f3f3f;
    border-left: 0;
    border-top: 0;
    transition: border 0.3s ease;
}

.pagination__arrow:hover {
    border: 2px solid #5925dc;
    border-left: 0;
    border-top: 0;
    transition: border 0.3s ease;
}

.pagination__arrow.pagination__prev {
    transform: rotate(135deg);
}

.pagination__arrow.pagination__next {
    transform: rotate(-45deg);
}

.pagination__page {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.01em;
    text-transform: capitalize;
    color: #3f3f3f;
    border: 1px solid #aeb2d5;
    border-radius: 6px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
    margin: 0 12.5px;
    transition: all 0.5s ease;
}

.pagination__page.pagination__arrow-frame {
    border: none;
    border-radius: none;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination__page.pagination__arrow-frame:first-child {
    margin: 0 12.5px 0 0;
}

.pagination__page.pagination__arrow-frame:last-child {
    margin: 0 0 0 12.5px;
}

.pagination__page.pagination__arrow-frame:hover {
    background-color: unset;
    color: unset;
    transition: unset;
}

.pagination__page:hover {
    background-color: #0297d8;
    color: #fff;
    transition: all 0.3s ease;
}

.pagination__page._active {
    background-color: #0297d8;
    color: #fff;
}

/* Questions Block */
.questions {
    max-width: 350px;
    width: 100%;
    background: #f4f3ff;
    border-radius: 20px;
    padding: 32.5px 28px;
}

.questions__title {
    margin: 0 0 20px 0;
}

.questions__title h2 {
    font-weight: 600;
    font-size: 22px;
    line-height: 179.02%;
    color: #050505;
}

.questions__desc {
    margin: 0 0 40px 0;
}

.questions__desc p {
    line-height: 179.02%;
    color: #050505;
}

.questions__btn {
    max-width: 100% !important;
}

/* ======================================================================== */
/* Animations */
/* ------------------------------------------------------------------------ */
/* Page Background Show */
@keyframes bgShow {
    0% {
        background-image: linear-gradient(
            87deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(8, 9, 43, 0) 20%,
            rgba(24, 19, 81, 0) 62%,
            rgba(25, 15, 54, 0) 85%
        );
        opacity: 0;
    }

    100% {
        background-image: linear-gradient(
            87deg,
            rgba(0, 0, 0, 1) 0%,
            rgba(8, 9, 43, 1) 20%,
            rgba(24, 19, 81, 1) 62%,
            rgba(25, 15, 54, 1) 85%
        );
        opacity: 1;
    }
}

/* Burger Menu Pulse */
@keyframes onePulse {
    0% {
        box-shadow: 0px 0px 0px 0px rgba(92, 103, 255, 0.3);
    }

    50% {
        box-shadow: 0px 0px 0px 10px rgba(92, 103, 255, 0.1);
    }

    100% {
        box-shadow: 0px 0px 0px 0px rgba(92, 103, 255, 0.3);
    }
}

/* ------------------------------------------------------------------------ */
/* Pulse */
@keyframes Pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15) skew(10deg);
    }

    100% {
        transform: scale(1);
    }
}

/* ------------------------------------------------------------------------ */
/* Gradient Move */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
        background-size: 150% 150%;
    }

    50% {
        background-position: 100% 50%;
        background-size: 150% 200%;
    }

    100% {
        background-position: 0% 50%;
        background-size: 150% 150%;
    }
}

/* Planet Rotate Animation at 767px */
@keyframes planetRotate {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(20deg) scale(1.2);
    }

    75% {
        transform: rotate(-20deg) scale(1.1);
    }

    100% {
        transform: rotate(0deg) scale(1);
    }
}

/* ------------------------------------------------------------------------ */
/* Skills Block Tabs Animation */
@keyframes movingTabs {
    0% {
        transform: translateX(50px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ------------------------------------------------------------------------ */
/* Trust Success Block Animation */
@keyframes scale {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        transform: scale(1.03);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ------------------------------------------------------------------------ */
/* Technical Button */
@keyframes movingTech {
    0% {
        transform: translateX(5px);
    }

    100% {
        transform: translateX(-5px);
    }
}

/* ------------------------------------------------------------------------ */
/* Stars Twinkling */
@keyframes twinkling {
    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* ------------------------------------------------------------------------ */
/* Stars Moving */
@keyframes moveStars {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-100%);
    }
}

/* ------------------------------------------------------------------------ */
/* Float Animation */
@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-10px, -10px) rotate(5deg);
    }

    50% {
        transform: translate(15px, -5px) rotate(-5deg);
    }

    75% {
        transform: translate(5px, -4.5px) rotate(5deg);
    }

    100% {
        transform: translate(-17px, -3px) rotate(-5deg);
    }
}

/* ------------------------------------------------------------------------ */
/* ======================================================================== */
/* ======================================================================== */
/* Fonts */
/* ------------------------------------------------------------------------ */
/* Poppins */
/* @font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins/Poppins-Bold.eot');
  src: url('../fonts/Poppins/Poppins-Bold.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Poppins/Poppins-Bold.woff2') format('woff2'),
      url('../fonts/Poppins/Poppins-Bold.woff') format('woff'),
      url('../fonts/Poppins/Poppins-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins/Poppins-Light.eot');
  src: url('../fonts/Poppins/Poppins-Light.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Poppins/Poppins-Light.woff2') format('woff2'),
      url('../fonts/Poppins/Poppins-Light.woff') format('woff'),
      url('../fonts/Poppins/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins/Poppins-SemiBold.eot');
  src: url('../fonts/Poppins/Poppins-SemiBold.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Poppins/Poppins-SemiBold.woff2') format('woff2'),
      url('../fonts/Poppins/Poppins-SemiBold.woff') format('woff'),
      url('../fonts/Poppins/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
} */

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins/Poppins-Medium.eot");
    src: url("../fonts/Poppins/Poppins-Medium.eot?#iefix")
            format("embedded-opentype"),
        url("../fonts/Poppins/Poppins-Medium.woff2") format("woff2"),
        url("../fonts/Poppins/Poppins-Medium.woff") format("woff"),
        url("../fonts/Poppins/Poppins-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* @font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins/Poppins-Regular.eot');
  src: url('../fonts/Poppins/Poppins-Regular.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Poppins/Poppins-Regular.woff2') format('woff2'),
      url('../fonts/Poppins/Poppins-Regular.woff') format('woff'),
      url('../fonts/Poppins/Poppins-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins/Poppins-Black.eot');
  src: url('../fonts/Poppins/Poppins-Black.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Poppins/Poppins-Black.woff2') format('woff2'),
      url('../fonts/Poppins/Poppins-Black.woff') format('woff'),
      url('../fonts/Poppins/Poppins-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
} */
/* ------------------------------------------------------------------------ */
/* Manrope */
@font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope/Manrope-Bold.eot");
    src: url("../fonts/Manrope/Manrope-Bold.eot?#iefix")
            format("embedded-opentype"),
        url("../fonts/Manrope/Manrope-Bold.woff2") format("woff2"),
        url("../fonts/Manrope/Manrope-Bold.woff") format("woff"),
        url("../fonts/Manrope/Manrope-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope/Manrope-ExtraBold.eot");
    src: url("../fonts/Manrope/Manrope-ExtraBold.eot?#iefix")
            format("embedded-opentype"),
        url("../fonts/Manrope/Manrope-ExtraBold.woff2") format("woff2"),
        url("../fonts/Manrope/Manrope-ExtraBold.woff") format("woff"),
        url("../fonts/Manrope/Manrope-ExtraBold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope/Manrope-ExtraLight.eot");
    src: url("../fonts/Manrope/Manrope-ExtraLight.eot?#iefix")
            format("embedded-opentype"),
        url("../fonts/Manrope/Manrope-ExtraLight.woff2") format("woff2"),
        url("../fonts/Manrope/Manrope-ExtraLight.woff") format("woff"),
        url("../fonts/Manrope/Manrope-ExtraLight.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope/Manrope-Light.eot");
    src: url("../fonts/Manrope/Manrope-Light.eot?#iefix")
            format("embedded-opentype"),
        url("../fonts/Manrope/Manrope-Light.woff2") format("woff2"),
        url("../fonts/Manrope/Manrope-Light.woff") format("woff"),
        url("../fonts/Manrope/Manrope-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope/Manrope-Medium.eot");
    src: url("../fonts/Manrope/Manrope-Medium.eot?#iefix")
            format("embedded-opentype"),
        url("../fonts/Manrope/Manrope-Medium.woff2") format("woff2"),
        url("../fonts/Manrope/Manrope-Medium.woff") format("woff"),
        url("../fonts/Manrope/Manrope-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope/Manrope-SemiBold.eot");
    src: url("../fonts/Manrope/Manrope-SemiBold.eot?#iefix")
            format("embedded-opentype"),
        url("../fonts/Manrope/Manrope-SemiBold.woff2") format("woff2"),
        url("../fonts/Manrope/Manrope-SemiBold.woff") format("woff"),
        url("../fonts/Manrope/Manrope-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope/Manrope-Regular.eot");
    src: url("../fonts/Manrope/Manrope-Regular.eot?#iefix")
            format("embedded-opentype"),
        url("../fonts/Manrope/Manrope-Regular.woff2") format("woff2"),
        url("../fonts/Manrope/Manrope-Regular.woff") format("woff"),
        url("../fonts/Manrope/Manrope-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ------------------------------------------------------------------------ */
/* ======================================================================== */

/* ================================================================== */
.blogs__tabs-portfolio {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    gap: 40px;
    flex-wrap: wrap;
    padding: 50px 0;
}

.portfolio-image {
    width: 200px;
    height: 200px;
}

.portfolio-image img {
    object-fit: cover;
}

/* ===================================== */

#portfolio-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.hover-card {
    position: relative;
    width: 220px;
    height: 220px;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    margin: 1rem 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hover-card img {
    height: 220px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.hover-card .overlay {
    width: 2%;
    height: 2%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    color: white;
    opacity: 0;
    transition: 0.6s;
}

h2 {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    opacity: 0;
    font-size: 19px;
    transition: 0.6s;
    font-family: rusianFont;
    text-transform: uppercase;
    width: 100%;
}

.hover-card:hover .overlay {
    opacity: 1;
    transform: scale(100);
}

.hover-card:hover h2 {
    opacity: 1;
}

.portfolio-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
}

#portfolio-detail-container {
    padding: 0 80px 0 160px;
    display: flex;
}

.detail-image {
    width: 500px;
    height: 396.44px;
}

.detail-image img {
    object-fit: contain;
    max-width: 100%;
    max-height: 400px;
    height: 100%;
    display: block;
    margin: 0 auto;
}

.detail-text {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.detail-text h3 {
    line-height: 26px;
    margin: 0;
    padding-bottom: 20px;
    color: #333333;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

.detail-text > p:nth-child(3) {
    margin-bottom: 2rem;
}

.detail-text > p:nth-child(4) {
    width: 100%;
    max-width: 540px;
    margin-bottom: 2rem;
}

.detail-text-buttons {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
}

.detail-text-buttons > button {
    padding: 16px;
    width: 170px;
    border-radius: 20px;
    border: 0.8px solid black;
}

.detail-text-buttons > button:first-child {
    color: #fff;
    background-color: #33b5e5;
}
.detail-text-buttons > button:first-child:hover {
    color: #fff;
    background-color: #138496;
    border-color: #117a8b;
}

.detail-text-buttons > button:nth-child(2) {
    color: #fff;
    background-color: #00c851;
}

.detail-text-buttons > button:nth-child(2):hover {
    color: #fff;
    /* background-color: #218838; */
    border-color: #1e7e34;
}

.protfolio-details-box {
    display: flex;
    flex-direction: column;
    gap: 100px;
    align-items: center;
}



.other-works {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.other-works h3 {
    color: #25b8f8;
    font-weight: bold;
    font-size: 36px;
    position: relative;
    text-align: center;
}

.other-works-container {
    display: flex;
    gap: 25px;
    align-items: center;
}

.protfolio-details-box > h3 {
    font-size: 36;
    color: #25b8f8;
    font-weight: bold;
    font-size: 36px;
    position: relative;
    text-align: center;
    
}

.portfolio-description > p {
    width: 100%;
    max-width: 500px;
}

.portfolio-title {
    font-size: 36;
    color: #25b8f8;
    font-weight: bold;
    font-size: 36px;
    position: relative;
    text-align: center;

}