/* Vars */
:root {
    --main: #1A1CB1;
    --secondary: #DEF2C2;
    --third: #FCEEBB;
    --dark: #222222;
}

/* Fonts */
@font-face {
    font-family: "Ermilov";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/Ermilov-bold.woff2") format("woff2"), url("../fonts/Ermilov-bold.woff") format("woff")
}

@font-face {
    font-family: "Osnova Pro";
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url("../fonts/OsnovaProLight.woff2") format("woff2"), url("../fonts/OsnovaProLight.woff") format("woff")
}

@font-face {
    font-family: "Osnova Pro";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/OsnovaPro.woff") format("woff2"), url("../fonts/OsnovaPro.woff") format("woff")
}

@font-face {
    font-family: "Osnova Pro";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("../fonts/OsnovaProMedium.woff2") format("woff2"), url("../fonts/OsnovaProMedium.woff") format("woff")
}

@font-face {
    font-family: "Osnova Pro";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/OsnovaPro-Bold.woff2") format("woff2"), url("../fonts/OsnovaPro-Bold.woff") format("woff")
}

/* Default styles */
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0
}

*:active,
*:focus {
    outline: none
}

input,
textarea {
    font-family: inherit;
    resize: none
}

b {
    font-weight: 700;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0
}

a {
    text-decoration: none;
    display: inline-block;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

button {
    border: none;
    cursor: pointer
}

body {
    font-family: "Osnova Pro", Arial, Helvetica, sans-serif;
    overflow-x: hidden;
    font-size: 18px;
    margin: 0;
    color: #fff;
    background: #06040A;
}

body::-webkit-scrollbar,
body::-webkit-scrollbar-thumb {
    width: 10px;
    background: var(--main);
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .2);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .2);
    background-color: #06040A;
}

.container {
    margin: 0 auto;
    max-width: 1270px;
    width: 100%;
    padding: 0 15px;
}

.title {
    text-transform: uppercase;
    font-size: 70px;
    line-height: 120%;
    font-family: Ermilov;
}

.btn {
    padding: 12px 20px 12px 40px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 50px;
    background-color: var(--main);
    color: #fff;
    font-weight: 700;
    font-family: Ermilov;
    font-size: 18px;
    transition: 0.3s ease;
}

.btn:hover {
    background: #fff;
    color: #000;
}

.btn span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #F4F3F2;
    border-radius: 50%;
    transition: 0.3s ease;
    position: relative;
    left: 0;
}

.btn path {
    transition: 0.3s ease;
}

.btn:hover span {
    background-color: var(--main);
    left: 3px;
}

.btn:hover path {
    fill: #fff;
}

@media screen and (max-width: 992px) {
    .title {
        font-size: 60px;
    }
}

@media screen and (max-width: 576px) {
    .title {
        font-size: 38px;
    }

    .btn {
        padding: 12px 20px 12px 40px;

        gap: 30px;
        font-size: 16px;
    }

    .btn span {
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 386px) {
    .title {
        font-size: 32px;
    }
}

/* Header */

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding-top: 77px;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__social {
    display: flex;
    gap: 10px;
    align-items: center;
}

.header__btn {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.header__lang {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}

.header__nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header__nav li a {
    color: #fff;
    transition: 0.3s ease;
}

.header__nav li a:hover {
    opacity: 0.7;
}

.header__lang li a {
    text-transform: uppercase;
    color: #8C8C8C;
    transition: 0.3s ease;
}

.header__lang li a:hover {
    color: #fff;
}

.header__lang .current-lang a {
    color: #fff;
    text-decoration: underline;
}

.header__burger {
    display: none;
}

.current-menu-item,
.menu-item {
    position: relative;
}

.current-menu-item.page_item::before,
.menu-item::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    border-radius: 4px;
    background-color: var(--main);
    bottom: -7px;
    pointer-events: none;
}

.menu-item::before {
    background-color: #fff;
    opacity: 0;
    bottom: -15px;
    transition: 0.3s ease;
}

.menu-item:hover::before,
.current-menu-item.page_item::before {
    opacity: 1;
    bottom: -7px;
}

.footer .current-menu-item.page_item::before,
.footer .menu-item::before {
    opacity: 0;
}

@media screen and (max-width: 1200px) {
    .header__nav li a {
        font-size: 16px;
    }

    .header__nav ul {
        gap: 15px;
    }
}

@media screen and (max-width: 992px) {

    .header__nav,
    .header__social,
    .header__btn,
    .header__lang {
        display: none;
    }

    .header__nav--mobile {
        display: block;
    }

    .header__lang--mobile {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    .header__nav ul {
        flex-direction: column;
    }

    .header__burger {
        display: block;
        position: relative;
        top: -3px;
        float: right;
    }

    .header__nav li a {
        font-size: 20px;
    }
}

@media screen and (max-width: 576px) {
    .header {
        padding-top: 45px;
    }

    .current-menu-item.page_item::before {
        height: 3px;
        bottom: -5px;
    }
}

/* Footer */
.footer__top {
    padding-top: 50px;
    padding-bottom: 95px;
    border-top: 1px solid rgba(119, 126, 144, 0.3);
    border-bottom: 1px solid rgba(119, 126, 144, 0.3);
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer__soc {
    margin-top: 15px;
}

.footer__bot {
    padding-top: 24px;
    padding-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__text {
    color: #9096AA;
    margin-top: 30px;
    max-width: 318px;
}

.footer__dev {
    color: #9096AA;
    font-size: 14px;
    font-family: Ermilov;
    font-weight: 400;
}

.footer__dev a {
    color: var(--main);
    text-decoration: underline;
    font-size: 16px;
    transition: 0.3s ease;
}

.footer__dev a:hover {
    color: #fff;
}

.footer__address {
    color: #9096AA;
    margin-top: 26px;
}

.footer__phone {
    margin-top: 15px;
    color: #9096AA;
}

.footer__email {
    margin-top: 26px;
    color: #9096AA;
    display: block;
}

.footer__pay {
    margin-top: 15px;
}

.footer__btn {
    margin-top: 15px;
}

.footer__title {
    text-transform: uppercase;
    font-family: Ermilov;
    font-size: 24px;
    font-weight: 700;
}

.footer__copy {
    color: #9096AA;
    font-size: 14px;
    font-family: Ermilov;
    font-weight: 700;
}

.footer__nav {
    max-width: 232px;
    margin-top: 30px;
}

.footer__nav li:not(:first-child) {
    margin-top: 20px;
}

.footer__nav a {
    color: #9096AA;
    transition: 0.3s ease;
}

.footer__nav a:hover {
    color: #fff;
}

@media screen and (max-width: 992px) {
    .footer__top {
        flex-wrap: wrap;
        gap: 50px 20px;
    }

    .footer__col {
        width: calc(50% - 20px);
    }

}

@media screen and (max-width: 576px) {
    .footer__col {
        width: 100%;
    }

    .footer__bot {
        flex-direction: column;
        gap: 10px;
    }

}

/* Side */
.side {
    height: 100%;
    position: fixed;
    right: -200%;
    top: 0;
    max-width: 350px;
    width: 100%;
    background-color: #06040A;
    border-left: 1px solid rgba(119, 126, 144, 0.3);
    z-index: 9999;
    transition: 0.4s ease;
}

.side.active {
    right: 0;
}

.close__sidebar {
    position: absolute;
    top: 25px;
    right: 25px;
}

@media screen and (max-width: 992px) {
    .side {
        padding: 70px 20px;
    }

    .side .header__social {
        margin-top: 40px;
        display: flex;
        justify-content: center;
    }

    .side .header__btn {
        display: flex;
        justify-content: center;
        margin-top: 50px;
    }
}

/* Hero */
.hero {
    padding-bottom: 100px;
    padding-top: 410px;
    position: relative;
}

.hero::before,
.hero-simple::before {
    content: '';
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.60) 57.81%, rgba(0, 0, 0, 0.00) 100%);
    height: 181px;
    z-index: 1;
}

.hero__earth {
    position: absolute;
    left: 50%;
    z-index: -1;
    transform: translateX(-50%);
    top: -1300px;
}

.hero__btn {
    margin-top: 60px;
}

@media screen and (max-width: 576px) {
    .hero__btn {
        margin-top: 40px;
    }

    .hero {
        padding-top: 250px;
        padding-bottom: 50px;
    }

    .hero__earth {
        width: 440px;
        top: -255px;
    }
}

/* Hero sc */
.hero-sc {
    padding-top: 120px;
    padding-bottom: 0px; /* previos 146 */
    position: relative;
}

.hero-sc.fb {
    padding-top: 296px;
}

.hero-sc .title {
    max-width: 1100px;
    margin-top: 30px;
}

.hero-sc__text {
    margin-top: 30px;
    font-size: 24px;
}

.hero-sc__btn {
    margin-top: 78px;
}

.hero-sc__logos {
    display: flex;
    flex-wrap: wrap;
    gap: 75px; /* &#1042;&#1110;&#1076;&#1089;&#1090;&#1091;&#1087; &#1084;&#1110;&#1078; &#1083;&#1086;&#1075;&#1086;&#1090;&#1080;&#1087;&#1072;&#1084;&#1080;; &#1072;&#1076;&#1072;&#1087;&#1090;&#1091;&#1081;&#1090;&#1077; &#1079;&#1072; &#1087;&#1086;&#1090;&#1088;&#1077;&#1073;&#1086;&#1102; */
    justify-content: center; /* &#1062;&#1077;&#1085;&#1090;&#1088;&#1091;&#1074;&#1072;&#1085;&#1085;&#1103; &#1083;&#1086;&#1075;&#1086;&#1090;&#1080;&#1087;&#1110;&#1074;; &#1084;&#1086;&#1078;&#1085;&#1072; &#1079;&#1084;&#1110;&#1085;&#1080;&#1090;&#1080; &#1085;&#1072; flex-start &#1076;&#1083;&#1103; &#1083;&#1110;&#1074;&#1086;&#1075;&#1086; &#1074;&#1080;&#1088;&#1110;&#1074;&#1085;&#1102;&#1074;&#1072;&#1085;&#1085;&#1103; */
}

.hero-sc__logos img {
    height: auto; /* &#1047;&#1073;&#1077;&#1088;&#1110;&#1075;&#1072;&#1108; &#1087;&#1088;&#1086;&#1087;&#1086;&#1088;&#1094;&#1110;&#1111; */
    max-height: 45px; /* &#1040;&#1085;&#1072;&#1083;&#1086;&#1075;&#1110;&#1095;&#1085;&#1086; &#1074;&#1080;&#1089;&#1086;&#1090;&#1110; &#1083;&#1086;&#1075;&#1086;&#1090;&#1080;&#1087;&#1110;&#1074; &#1091; .hero-sc__top-logo */
}

.hero-sc__logos a {
    display: inline-block; /* &#1047;&#1072;&#1073;&#1077;&#1079;&#1087;&#1077;&#1095;&#1091;&#1108; &#1087;&#1088;&#1072;&#1074;&#1080;&#1083;&#1100;&#1085;&#1077; &#1088;&#1086;&#1079;&#1084;&#1110;&#1097;&#1077;&#1085;&#1085;&#1103; */
}

.hero-sc__top {
    display: flex;
    align-items: center;
}

.hero-sc__top span {
    font-family: Ermilov;
    font-size: 24px;
    font-weight: 700;
    margin-right: 66px;
}

.hero-sc__top-logo {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-sc__planet {
    position: absolute;
    width: 911px;
    height: 911px;
    top: 50%;
    right: -450px;
    transform: translateY(-50%);
    z-index: -1;
}

.hero-sc.fb .hero-sc__planet {
    width: 1559px;
    height: 1559px;
    top: -1200px;
    transform: none;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
}

.hero-sc.fb::before {
    content: '';
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.60) 57.81%, rgba(0, 0, 0, 0.00) 100%);
    height: 181px;
    z-index: 1;
}

.hero-sc__logos img {
    object-fit: contain;
}

@media screen and (min-width: 992px) {
    .hero-sc__logos {
        max-width: 1270px; /* &#1040;&#1085;&#1072;&#1083;&#1086;&#1075;&#1110;&#1095;&#1085;&#1086; .container */
        margin: 0 auto; /* &#1062;&#1077;&#1085;&#1090;&#1088;&#1091;&#1074;&#1072;&#1085;&#1085;&#1103; */
        padding: 0 15px; /* &#1042;&#1110;&#1076;&#1089;&#1090;&#1091;&#1087;&#1080; &#1079; &#1073;&#1086;&#1082;&#1110;&#1074; */
        padding-top: 120px; /* &#1044;&#1086;&#1076;&#1072;&#1108;&#1084;&#1086; &#1074;&#1110;&#1076;&#1089;&#1090;&#1091;&#1087; &#1079;&#1074;&#1077;&#1088;&#1093;&#1091; */
        padding-bottom: 0px; /* &#1044;&#1086;&#1076;&#1072;&#1108;&#1084;&#1086; &#1074;&#1110;&#1076;&#1089;&#1090;&#1091;&#1087; &#1079;&#1085;&#1080;&#1079;&#1091; */
        width: auto; /* &#1053;&#1077; &#1085;&#1072; &#1074;&#1089;&#1102; &#1096;&#1080;&#1088;&#1080;&#1085;&#1091; */
    }
}

@media screen and (max-width: 768px) {
    .hero-sc__logos {
        flex-wrap: wrap;
    }

    .hero-sc__top span {
        margin-right: 25px;
    }
}

@media screen and (max-width: 576px) {
    .hero-sc.fb {
        padding-top: 156px;
    }

    .hero-sc {
        padding-top: 60px;
        padding-bottom: 70px;
    }

    .hero-sc__text {
        font-size: 18px;
    }

    .hero-sc__top-logo img {
        height: 30px;
    }

    .hero-sc__top {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .hero-sc__top span {
        font-size: 18px;
    }

    .hero-sc__logos {
        gap: 20px;
        margin-top: 60px;
    }

    .hero-sc__logos img {
        height: 35px;
    }

    .hero-sc__planet {
        width: 680px;
        height: 680px;
    }
}

/* simple block */
.simple-block {
    background-size: cover;
    background-position: center right;
    padding-top: 221px;
    padding-bottom: 221px;
}

.simple-block .title {
    max-width: 820px;
}

.simple-block__text {
    margin-top: 30px;
    max-width: 820px;
    line-height: 24px;
    line-height: 150%;
}

.simple-block__btn {
    margin-top: 30px;
}

@media screen and (max-width: 576px) {
    .simple-block {
        padding-top: 101px;
        padding-bottom: 101px;
        background-position: 70% 50%;
    }

    .simple-block__text {
        font-size: 16px;
    }
}

/* Team */

.team {
    padding-top: 200px;
    padding-bottom: 90px;
}

.team__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px 20px;
    margin-top: 34px;
}

.team__i img {
    height: 541px;
    object-fit: cover;
    width: 100%;
    border-radius: 20px;
}

.team__i-title {
    font-family: Ermilov;
    font-size: 24px;
    font-weight: 700;
    line-height: 110%;
    margin-top: 23px;
}

.team__i-text {
    margin-top: 8px;
    color: #939393;
    line-height: 24px;
}

@media screen and (max-width: 768px) {
    .team__wrap {
        grid-template-columns: 1fr 1fr;
        gap: 40px 20px;
    }
}

@media screen and (max-width: 576px) {
    .team__wrap {
        grid-template-columns: 1fr;
    }

    .team__i img {
        height: 350px;
    }

    .team {
        padding-top: 100px;
    }
}

/* Contacts */
.contacts {
    padding-top: 339px;
    padding-bottom: 130px;
    position: relative;
}

.contacts::before {
    content: '';
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.60) 57.81%, rgba(0, 0, 0, 0.00) 100%);
    height: 181px;
    z-index: 1;
}

.contacts .container {
    position: relative;
    z-index: 2;
}

.contacts__wrap {
    margin-top: 60px;
}

.contacts__i {
    padding-top: 30px;
    padding-bottom: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    border-bottom: 1px solid #4C4A4A;
}

.contacts__i-title {
    font-size: 24px;
    line-height: 28px;
    font-weight: 700;
}

.contacts__i-name {
    font-size: 24px;
    line-height: 28px;
    font-weight: 700;
}

.contacts__i-text {
    color: #888;
    font-size: 18px;
    line-height: 24px;
    margin-top: 15px;
}

.contacts__i-email {
    display: flex;
    align-items: center;
    margin-top: 15px;
    color: #888;
    gap: 15px;
}


@media screen and (max-width: 768px) {
    .contacts__i {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 576px) {
    .contacts__i-text {
        font-size: 16px;
    }

    .contacts__i-name {
        font-size: 18px;
    }

    .contacts__wrap {
        margin-top: 30px;
    }

    .contacts {
        padding-top: 120px;
    }
}

/* video block */
.video-block {
    padding-top: 273px;
    padding-bottom: 273px;
    position: relative;
}

.video-block--full {
    padding: 0;
}

.video-block--full .video-block__video {
    position: relative;
    height: auto;
}

.video-block__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    z-index: -1;
}

.video-block__text {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-top: 15px;
}

@media screen and (max-width: 576px) {
    .video-block {
        padding-top: 173px;
        padding-bottom: 173px;
    }

    .video-block--full {
        padding: 0;
    }

    .video-block__text {
        font-size: 18px;
        line-height: 24px;
    }
}


/* Full Image */

/* Know */
.know {
    padding-top: 160px;
    padding-bottom: 75px;
}

.know .title span {
    color: #2D30FF;
}

.know__text {
    margin-top: 30px;
    color: #D9D9D9;
    font-size: 24px;
    line-height: 116.666%;
    max-width: 1030px;
}

.know__wrap {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    gap: 74px;
}

.know__list li {
    display: flex;
    gap: 15px;
    font-size: 24px;
    margin-top: 33px;
}

.know__list li svg {
    flex: none;
}

.know__l {
    max-width: 556px;
    width: 100%;
}

.know__r {
    max-width: 610px;
    width: 100%;
}

.know__i:not(:first-child) {
    margin-top: 15px;
}

.know__i {
    padding: 20px 40px;
    border-radius: 20px;
    border: 1px solid #000;
    background: #1A1CB1;
}

.know__i-title {
    margin-top: 30px;
    font-family: Ermilov;
    font-size: 24px;
    font-weight: 700;
}

.know__i-sub {
    font-size: 16px;
}

@media screen and (max-width: 768px) {
    .know__wrap {
        flex-direction: column;
    }
}

@media screen and (max-width: 576px) {
    .know {
        padding-top: 70px;
        padding-bottom: 50px;
    }

    .know__list li {
        font-size: 18px;
        margin-top: 15px;
    }

    .know__list li svg {
        width: 24px;
        position: relative;
        bottom: 5px;
    }

    .know__text {
        font-size: 18px;
    }

    .know__wrap {
        gap: 30px;
    }
}

/* Access */
.access {
    padding-top: 75px;
    padding-bottom: 175px;
    position: relative;
}

.access .container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.access__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 28px;
}

.access__grid-i {
    padding: 20px 20px 20px 40px;
    border-radius: 20px;
    border: 1px solid #000;
    background: #262633;
    min-height: 148px;
    line-height: 150%;
    font-size: 24px;
}

.access__wrap {
    max-width: 820px;
    margin-top: 78px;
}

.access__btn {
    margin-top: 50px;
}

.access__planet {
    position: absolute;
    left: -625px;
    top: -100px;
    z-index: -1;
}

@media screen and (max-width: 576px) {
    .access__grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .access__grid-i {
        font-size: 18px;
        min-height: 130px;
    }

    .access__wrap {
        margin-top: 40px;
    }

    .access__planet {
        width: 600px;
        left: -300px;
        top: 27px;
    }

    .access {
        padding-bottom: 75px;
    }
}

/* modules */
.modules {
    padding-top: 175px;
    padding-bottom: 75px;
    position: relative;
}

.modules__wrap {
    max-width: 680px;
    width: 100%;
}

.modules__i {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    gap: 62px;
    border-bottom: 1px solid #222;
    padding-bottom: 15px;
}

.modules__i-title {
    margin-top: 32px;
    max-width: 140px;
    width: 100%;
    font-family: Ermilov;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.modules__acc {
    padding: 30px 40px;
    border-radius: 20px;
    max-width: 483px;
    width: 100%;
    background-color: #06040A;
    transition: background 0.3s ease;
}

.modules__acc.active,
.modules__acc:hover {
    background: #1A1CB1;
}

.modules__acc-name {
    font-family: Ermilov;
    font-size: 24px;
    font-weight: 700;
    max-width: 356px;
    width: 100%;
    line-height: 110%;
}

.modules__acc-panel {
    display: none;
    font-size: 16px;
    transition: all 0.3s ease;
    padding-top: 0;
}

.modules__acc-panel li:not(:first-child) {
    margin-top: 15px;
}

.modules__acc.active .modules__acc-panel {
    padding-top: 30px;
    display: block;
}

.modules__acc-top {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.modules__acc-ic {
    display: flex;
    justify-content: flex-end;
    flex: none;
    max-width: 32px;
    width: 100%;
}

.modules__acc-minus {
    display: none;
    flex: none;
}

.modules__acc-plus {
    display: block;
    flex: none;
}

.modules__acc.active .modules__acc-minus {
    display: block;
}

.modules__acc.active .modules__acc-plus {
    display: none;
}

.modules__planet {
    position: absolute;
    right: -500px;
    top: 0;
    z-index: -1;
}

@media screen and (max-width: 576px) {
    .modules__i {
        flex-direction: column;
        gap: 18px;
        margin-top: 0;
        border: none;
    }

    .modules__planet {
        right: -295px;
        top: 300px;
        width: 640px;
    }

    .modules__acc-name {
        font-size: 18px;
    }

    .modules__acc {
        border: 1px solid #222;
    }

    .modules__wrap {
        margin-top: 15px;
    }

    .modules {
        padding-bottom: 75px;
        padding-top: 50px;
    }
}

/* features */
.features__btn {
    margin-top: 30px;
}

.features__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.features__i {
    border-radius: 20px;
    border: solid 1px #222;

}

.features__i:nth-child(3),
.features__i:nth-child(6) {
    border-right: none;
}

.features__i:nth-child(1),
.features__i:nth-child(4) {
    border-left: none;
}

.features__i-inner {
    padding: 24px;
    background: #06040A;
    height: 100%;
}

.features__i-text {
    margin-top: 32px;
    line-height: 150%;
}

@media screen and (max-width: 768px) {
    .features__wrap {
        grid-template-columns: 1fr 1fr;
    }

    .features__i:nth-child(2),
    .features__i:nth-child(4),
    .features__i:nth-child(6) {
        border-right: none;
        border-left: solid 1px #222;
    }

    .features__i:nth-child(1),
    .features__i:nth-child(3),
    .features__i:nth-child(5) {
        border-left: none;
        border-right: solid 1px #222;
    }
}

@media screen and (max-width: 576px) {
    .features__wrap {
        grid-template-columns: 1fr;
    }

    .features__i:nth-child(1),
    .features__i:nth-child(2),
    .features__i:nth-child(3),
    .features__i:nth-child(4),
    .features__i:nth-child(5),
    .features__i:nth-child(6) {
        border-right: none;
        border-left: none;
    }

    .features__i-text {
        margin-top: 18px;
    }
}

/* Level */
.level {
    padding-top: 80px;
}

.level__i {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 21px;
    margin-top: 35px;
}

.level__i-l {
    border-radius: 20px;
    border: 1px solid #888;
    padding: 30px;
}

.level__i-r {
    border-radius: 20px;
    background: #1A1CB1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.level__i-title {
    font-family: Ermilov;
    font-size: 70px;
    font-weight: 700;
}

.level__i-text {
    margin-top: 30px;
    font-size: 24px;
}

.level__i-subtext {
    margin-top: 8px;
    font-size: 16px;
    color: #616163;
}

.level__i-line {
    display: block;
    height: 1px;
    width: 100%;
    margin-top: 30px;
    background-color: #222;
}

.level__i-list {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 16px;
}

.level__i-item {
    display: flex;
    gap: 8px;
    font-weight: 300;
}

.level__i-item svg {
    flex: none;
}

.level__i-price {
    font-family: Ermilov;
    font-size: 60px;
    display: flex;
    align-items: center;
    font-weight: 700;
}

.level__i-price span {
    padding-left: 10px;
    color: #8B8CD2;
    font-size: 24px;
    font-weight: 400;
    font-family: Osnova Pro;
}

.level__i-sale {
    margin-top: 6px;
    color: #8B8CD2;
    font-size: 36px;
    font-weight: 500;
    position: relative;
}

.level__i-sale::after {
    content: '';
    position: absolute;
    background-color: #8B8CD2;
    height: 2px;
    width: 103px;
    left: -6px;
    top: 20px;
    transform: rotate(14deg);
}

.level__i-note {
    font-weight: 300;
    text-align: justify;
}

.level__i-btn {
    margin-top: 18px;
    width: 100%;
    background: #F4F3F2;
    color: #000;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 72px;
    padding: 12px 20px;
}

.level__i-btn:hover span {
    left: auto;
}

.level__i-btn span {
    position: absolute;
    right: 20px;
    top: 50%;
    left: auto;
    transform: translateY(-50%);
    background: #1A1CB1;
}

@media screen and (max-width: 992px) {
    .level__i-price {
        font-size: 42px;
    }

    .level__i-title {
        font-size: 54px;
    }
}

@media screen and (max-width: 768px) {
    .level__i {
        grid-template-columns: 1fr;
    }

    .level__i-r {
        gap: 40px;
    }
}

@media screen and (max-width: 576px) {
    .level__i-btn {
        height: 55px;
    }

    .level__i-btn span {
        right: 10px;
    }

    .level__i-item {
        font-size: 16px;
    }

    .level__i-list {
        gap: 24px 10px;
    }

    .level__i-text {
        font-size: 18px;
        margin-top: 20px;
    }

    .level__i-title {
        font-size: 42px;
    }

    .level__i-l {
        padding: 18px;
    }

    .level__i-r {
        padding: 18px;
    }

    .level__i {
        margin-top: 60px;
    }
}

@media screen and (max-width: 400px) {
    .level__i-list {
        grid-template-columns: 1fr;
    }
}

/* FAQ */

.faq {
    padding-top: 160px;
    padding-bottom: 142px;
}

.faq__wrap {
    margin-top: 60px;
}

.faq__wrap .modules__acc {
    max-width: 100%;
    border-bottom: 1px solid #222;
    border-radius: 0;
}

.faq__wrap .modules__acc.active,
.faq__wrap .modules__acc:hover {
    border-radius: 20px;
}

.faq__wrap .modules__acc-top {
    justify-content: space-between;
}

.faq__wrap .modules__acc-name {
    max-width: 1103px;
}

@media screen and (max-width: 576px) {
    .faq__wrap .modules__acc {
        border: none;
        border-bottom: 1px solid #222;
    }
}

/* Thanks */
.thanks {
    padding-top: 350px;
    padding-bottom: 350px;
    position: relative;
}

.thanks__text {
    margin-top: 30px;
    font-size: 24px;
    line-height: 28px;
}

.thanks__btn {
    margin-top: 45px;
}

.thanks__planet {
    position: absolute;
    right: -500px;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

@media screen and (max-width: 576px) {
    .thanks__text {
        font-size: 18px;
    }

    .thanks {
        padding-top: 175px;
        padding-bottom: 175px;
    }

    .thanks__planet {
        width: 500px;
        right: -250px;
    }
}


/* Hero simple */
.hero-simple {
    padding-top: 244px;
    padding-bottom: 153px;
    position: relative;
}

.hero-simple .container {
    text-align: center;
}

.hero-simple__text {
    margin-top: 15px;
    font-size: 24px;
    line-height: 28px;
    font-weight: 300;
}

@media screen and (max-width: 576px) {
    .hero-simple__text {
        font-size: 18px;
        line-height: 24px;
    }
}

/* Slider card */

.slider-card {
    padding-bottom: 160px;
    padding-top: 80px;
}

.slider-card__top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 70px;
}

.slider-card__slide img {
    width: 100%;
    height: 492px;
    object-fit: cover;
    border-radius: 20px;
}

.slider-card__swiper {
    margin-top: 78px;
    overflow: initial;
}

.slider-card__slide-title {
    margin-top: 15px;
    font-family: Ermilov;
    font-size: 24px;
    font-weight: 700;
}

.slider-card__slide-text {
    margin-top: 8px;
    color: #939393;
}

@media screen and (max-width: 576px) {
    .slider-card__slide img {
        height: 342px;
    }

    .slider-card__swiper {
        margin-top: 40px;
    }

    .slider-card__slide-title {
        font-size: 18px;
    }

    .slider-card__slide-text {
        font-size: 16px;
    }

    .slider-card__top {
        flex-direction: column;
        gap: 30px;
    }
}

/* Easy block */
.easy-block {
    padding-bottom: 60px;
    padding-top: 120px;
}

.easy-block__text {
    margin-top: 20px;
    font-size: 24px;
    line-height: 28px;
}

.easy-block__btn {
    margin-top: 60px;
}

@media screen and (max-width: 576px) {
    .easy-block__text {
        font-size: 18px;
        line-height: 24px;
    }
}

/* Directions */
.directions {
    padding-top: 200px;
    padding-bottom: 100px;
    position: relative;
}

.directions__wrap {
    margin-top: 202px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.directions__inner {
    max-width: 610px;
    width: 100%;
}

.directions__i {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding-top: 24px;
    padding-bottom: 32px;
    border-bottom: 1px solid #4C4A4A;
}

.directions__i-text {
    font-size: 24px;
    line-height: 28px;
}

.directions__i-num {
    color: #888;
    font-size: 24px;
    line-height: 32px;
}

.directions__name {
    font-family: Ermilov;
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
}

.directions .title {
    margin-top: 30px;
}

.directions__text {
    margin-top: 30px;
    max-width: 1000px;
    font-size: 24px;
    line-height: 28px;
}

.directions__logos {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
}

.directions__logos img {
    height: 40px;
}

.directions__btn {
    margin-top: 36px;
}

.directions__planet {
    position: absolute;
    left: -600px;
    top: 500px;
    z-index: -1;
}

@media screen and (max-width: 576px) {

    .directions__name,
    .directions__text,
    .directions__i-text {
        font-size: 18px;
        line-height: 24px;
    }

    .directions__logos img {
        height: 25px;
    }

    .directions__logos {
        margin-top: 30px;
    }

    .directions__wrap {
        margin-top: 60px;
    }

    .directions__i {
        padding-top: 12px;
        padding-bottom: 16px;
    }

    .directions__planet {
        width: 600px;
        left: -300px;
    }
}

/* Nobel */
.nobel {
    padding-top: 100px;
    padding-bottom: 120px;
}

.nobel .title {
    max-width: 1020px;
}

.nobel__wrap {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.nobel__inner {
    max-width: 715px;
    width: 100%;
}

.nobel__i {
    width: 100%;
    padding-top: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #4C4A4A;
}

.nobel__i-top {
    display: flex;
    gap: 24px;
}

.nobel__i-title {
    font-size: 24px;
    font-weight: 700;
}

.nobel__i-num {
    font-size: 24px;
    color: #888;
}

.nobel__i-text {
    margin-top: 30px;
    color: #888;
    line-height: 24px;
}

.nobel__video {
    margin-top: 32px;
}

.nobel__video video {
    width: 100%;
}

@media screen and (max-width: 768px) {
    .nobel__wrap {
        flex-direction: column;
    }
}

@media screen and (max-width: 576px) {
    .nobel__i-title {
        font-size: 18px;
        line-height: 24px;
    }

    .nobel__i-text {
        font-size: 16px;
    }
}

/* history */
.history-slide {
    height: 720px;
    background-size: cover;
}

.history .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.history__r {
    display: flex;
    align-items: center;
    gap: 69px;
}

.history__arr {
    cursor: pointer;
}

.history__text {
    font-size: 24px;
    line-height: 28px;
    max-width: 721px;
    margin-top: 27px;
}

.history__swiper {
    margin-top: 43px;
}

.history-slide .container {
    height: 100%;
    padding-bottom: 80px;
}

.history-slide__inner {
    display: flex;
    align-items: center;
    gap: 5px;
}

.history-slide__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.history-slide__text span {
    display: inline-block;
    background: #FFF;
    color: #000;
    font-size: 24px;
    font-family: Ermilov;
    font-weight: 700;
    padding: 1px 7px;
}

.history-slide__text span:not(:first-child) {
    margin-top: 5px;
}

@media screen and (max-width: 576px) {
    .history-slide__frame {
        display: none;
    }

    .history-slide__text span {
        font-size: 14px;
    }

    .history-slide {
        height: 370px;
    }

    .history-slide .container {
        padding-bottom: 40px;
    }

    .history .container {
        flex-direction: column;
        gap: 20px;
    }

    .history__text {
        font-size: 18px;
        line-height: 24px;
    }

    .history__arr svg {
        width: 18px;
    }

    .history__r {
        gap: 50px;
    }

    .history-slide .container {
        justify-content: flex-end;
        align-items: flex-start;
    }

    .history__swiper {
        margin-top: 15px;
    }
}

/* Blog post */
.blog-post {
    padding-top: 190px;
    padding-bottom: 121px;
}

.blog-post__back {
    display: flex;
    align-items: center;
    color: #fff;
    gap: 6px;
}

.blog-post__top {
    margin-top: 82px;
    display: flex;
    align-items: center;
}

.blog-post .title {
    margin-top: 60px;
}

.blog-post__cat {
    background-color: var(--main);
    padding: 8px 20px;
    border-radius: 100px;
    margin-right: 30px;
    text-align: center;
}

.blog-post__sep {
    margin-left: 15px;
    margin-right: 15px;
    width: 8px;
    flex: none;
    height: 8px;
    background-color: var(--main);
    border-radius: 50%;
}

.blog-post__desc {
    margin-top: 30px;
    color: #888;
    font-size: 24px;
    max-width: 820px;
}

.blog-post__img {
    margin: 60px auto 0;
    text-align: center;
    max-width: 1062px;
}

.blog-post__img img {
    object-fit: cover;
    width: 100%;
}

.blog-post__img-desc {
    color: #888;
    text-align: center;
    max-width: 1062px;
    margin: 0 auto;
    margin-top: 15px;
}

.blog-post__content {
    margin-top: 90px;
    max-width: 820px;
}

.blog-post__content h2 {
    font-family: Ermilov;
    font-size: 24px;
    margin-top: 90px;
}

.blog-post__content p {
    font-size: 18px;
    line-height: 24px;
    margin-top: 44px;
}

.blog-post__content .wp-block-image {
    margin-top: 60px;
}

.blog-post__bot {
    margin-top: 90px;
    padding-top: 30px;
    border-top: solid 1px #222;
}

.blog-post__author {
    display: flex;
    gap: 30px;
}

.blog-post__author img {
    flex: none;
    border-radius: 50%;
    object-fit: cover;
}

.blog-post__author-name {
    text-transform: uppercase;
    font-family: Ermilov;
    font-size: 16px;
    font-weight: 700;
}

.blog-post__author-desc {
    margin-top: 15px;
    color: #939393;
}

.blog-post__author-wrap {
    max-width: 550px;
}

@media screen and (max-width: 576px) {
    .blog-post__cat {
        font-size: 16px;
        margin-right: 15px;
    }

    .blog-post__date {
        font-size: 16px;
    }

    .blog-post__time {
        font-size: 16px;
    }

    .blog-post__sep {
        width: 5px;
        height: 5px;
    }

    .blog-post .title {
        margin-top: 30px;
    }

    .blog-post {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .blog-post__desc {
        font-size: 18px;
    }

    .blog-post__img img {
        height: auto;
    }

    .blog-post__content p,
    .blog-post__content .wp-block-image {
        margin-top: 30px;
    }

    .blog-post__content h2 {
        margin-top: 60px;
    }
}

/* blog-list */
.blog-list {
    margin-top: 60px;
}

.blog-list__item {
    margin-top: 30px;
}

.blog-list__item-top {
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-list__item-icon {
    border-radius: 8px;
    background: #1A1CB1;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-list__item-title {
    font-family: Ermilov;
    font-size: 24px;
    font-weight: 700;
}

.blog-list__item-desc {
    margin-top: 30px;
    font-size: 24px;
    line-height: 28px;
}

.blog-list__list {
    padding-left: 80px;
}

.blog-list__list-i {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.blog-list__list-i svg {
    flex: none;
    font-size: 18px;
    line-height: 24px;
}

.blog-note {
    margin-top: 90px;
}

.blog-note__container {
    border-radius: 20px;
    background: var(--main);
    padding: 11px 80px 60px 26px;
    display: flex;
    gap: 25px;
}

.blog-note svg {
    flex: none;
}

.blog-note span {
    padding-top: 50px;
    line-height: 24px;
}

@media screen and (max-width: 576px) {

    .blog-list__item-icon {
        width: 45px;
        height: 45px;
    }

    .blog-list__item-icon svg {
        width: 30px;
        height: 30px;
    }

    .blog-list__item-title {
        font-size: 18px;
    }

    .blog-list__list {
        padding-left: 15px;
    }

    .blog-list__list-i {
        gap: 15px;
        font-size: 16px;
    }

    .blog-note svg {
        width: 40px;
        height: 40px;
    }

    .blog-note__container {
        padding: 25px 30px 30px 18px;
    }

    .blog-note__container {
        gap: 15px;
    }

    .blog-note span {
        padding-top: 15px;
    }
}


/* Blog */

.blog-main {
    padding-top: 180px;
    padding-bottom: 160px;
}

.blog-main__text {
    margin-top: 30px;
    max-width: 820px;
    font-size: 24px;
}

.blog-main__top {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    border-bottom: solid 1px #fff;
}

.blog-main__nav-i {
    padding: 8px 20px;
    margin-right: 1px;
    color: #fff;
    border-radius: 8px 8px 0px 0px;
    transition: 0.3s ease;
    position: relative;
    bottom: -1px;
}

.blog-main__nav-i.active,
.blog-main__nav-i:hover {
    background-color: var(--main);
}

.blog-main__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px 20px;
    margin-top: 60px;
}

.blog-main__i {
    width: 100%;
    transition: 0.3s ease;
}

.blog-main__i:hover {
    transform: translateY(-5px);
}

.blog-main__i img {
    width: 100%;
    height: 302px;
    object-fit: cover;
    border-radius: 20px;
}

.blog-main__i-cat {
    margin-top: 30px;
    border-radius: 100px;
    background-color: var(--main);
    color: #fff;
    padding: 8px 20px;
    display: inline-block;
    text-align: center;
}

.blog-main__i-title {
    margin-top: 15px;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    font-family: Ermilov;
}

.blog-main__i-bot {
    display: flex;
    margin-top: 60px;
    align-items: center;
}

.blog-main__i-date {
    color: #fff;
    font-weight: 300;
}

.blog-main__i-sep {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--main);
    margin-right: 15px;
    margin-left: 15px;
}

.blog-main__i-time {
    font-weight: 300;
    color: #fff;
}

.pagination {
    margin-top: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    width: 32px;
    border-radius: 4px;
    border: 1px solid #4C4A4A;
    color: #4C4A4A;
    transition: 0.3s ease;
}

.pagination .current,
.pagination a:hover,
.pagination span:hover {
    border: 1px solid #4200FF;
    color: #4200FF;
}

.pagination a path {
    transition: 0.3s ease;
}

.pagination a:hover path {
    fill: #4200FF;
}

.search-form {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    transition: 0.3s ease;
    max-width: 150px;
    width: 100%;
}

.search-submit {
    background: transparent;
}

.search-field {
    height: 32px;
    background-color: transparent;
    border: solid 1px transparent;
    border: solid 1px #fff;
    outline: none;
    width: 100%;
    opacity: 0;
    transition: 0.3s ease;
    color: #fff;
}

.search-form label {
    width: 100%;
}

.search-form:hover {
    max-width: 250px;
}

.search-form:hover .search-field {
    border: solid 1px #fff;
    opacity: 1;
}

@media screen and (max-width: 992px) {
    .blog-main__wrap {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {
    .blog-main__top {
        flex-direction: column-reverse;
        gap: 10px;
        border-bottom: 0;
    }

    .search-form,
    .search-form:hover {
        max-width: 100%;
    }

    .search-field {
        opacity: 1;
    }

    .blog-main__nav {
        display: flex;
        white-space: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
    }
}


@media screen and (max-width: 576px) {
    .blog-main__wrap {
        grid-template-columns: 1fr;
    }

    .blog-main__i img {
        height: 220px;
    }

    .blog-main__i-title,
    .blog-main__text {
        font-size: 18px;
    }

    .blog-main__i-bot {
        margin-top: 30px;
    }

    .blog-main__i-cat {
        font-size: 16px;
        padding: 6px 15px;
    }

    .blog-main__i-date,
    .blog-main__i-time {
        font-size: 16px;
    }

    .pagination {
        margin-top: 60px;
    }

    .blog-main {
        padding-top: 120px;
        padding-bottom: 80px;
    }

}

.recent-posts {
    padding-bottom: 160px;
}

.recent-posts__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.posts-list {
    padding-top: 140px;
    padding-bottom: 60px;
}

.posts-list__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 40px;
}

.posts-list__i--b {
    padding-top: 32px;
    padding-bottom: 32px;
    position: relative;
    height: 100%;
}

.posts-list__i--b::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 1px;
    background: #222;
    top: 0;
    right: -10px;
}

.posts-list__i--b img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    height: 292px;
}

.posts-list__i-title {
    font-weight: 700;
    margin-top: 12px;
    font-family: Ermilov;
    font-size: 16px;
}

.posts-list__i--b .posts-list__i-title {
    margin-top: 32px;
    font-size: 24px;
}

.posts-list__i--b .btn {
    margin-top: 32px;
    padding-left: 107px;
}

.posts-list__i img {
    max-width: 290px;
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.posts-list__i {
    display: flex;
    gap: 24px;
}

.posts-list__i-date {
    color: var(--main);
    font-family: Ermilov;
    font-size: 14px;
    font-weight: 700;
}

.posts-list__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.posts-list__l {
    border-top: solid 1px #222;
    border-bottom: solid 1px #222;
    margin-right: 10px;
}

.posts-list__r {
    border-top: solid 1px #222;
    border-bottom: solid 1px #222;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.posts-list__sep {
    width: 100%;
    height: 1px;
    background-color: #222;
}

@media screen and (max-width: 992px) {
    .posts-list__i {
        flex-direction: column;
    }

    .posts-list__i {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .posts-list__i--b {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .posts-list__content-t {
        padding-bottom: 10px;
    }
}

@media screen and (max-width: 768px) {
    .posts-list__wrap {
        grid-template-columns: 1fr;
    }

    .posts-list__l {
        margin-right: 0;
    }

    .posts-list__i--b::after {
        display: none;
    }

    .posts-list__r {
        border-top: none;
    }

    .posts-list__i img {
        max-width: 100%;
        height: 292px;
    }

    .posts-list__i--b .btn {
        padding-left: 47px;
    }
}

@media screen and (max-width: 576px) {

    .posts-list__i img,
    .posts-list__i--b img {
        height: 200px;
    }

    .posts-list__i-title,
    .posts-list__i--b .posts-list__i-title {
        font-size: 18px;
        margin-top: 25px;
    }

    .posts-list__wrap {
        gap: 0;
    }

    .posts-list {
        padding-top: 30px;
    }
}

.search-res {
    padding-top: 180px;
    padding-bottom: 80px;
}

.error {
    padding-top: 275px;
    overflow: hidden;
    padding-bottom: 275px;
    position: relative;
}

.error .title {
    max-width: 600px;
    margin-top: 30px;
}

.error__text {
    margin-top: 30px;
}

.error .btn {
    margin-top: 60px;
}

.error__planet {
    position: absolute;
    top: 50%;
    right: -500px;
    z-index: -1;
    transform: translateY(-50%);
}

@media screen and (max-width: 576px) {
    .error {
        padding-top: 120px;
    }

    .error__planet {
        width: 500px;
        right: -211px;
    }
}

.header__list .sub-menu {
    display: flex;
    flex-direction: column;
    display: none;
    position: absolute;
    top: 100%;
    gap: 15px;
    padding: 20px;
    background-color: var(--main);
    width: 200%;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s ease;
    font-size: 16px;
}

.header__list .sub-menu a::before{
    display: none;
}

.sub-menu .current-menu-item.page_item::before, .sub-menu .menu-item::before{
    background-color: #fff;
}

.header__list .sub-menu>li>.sub-menu {
    display: none;
    left: calc(100% + 15px);
    transform: none;
    animation: none;
    top: 0;
}

.header__list .menu-item-has-children .menu-item-has-children>a svg {
    transform: rotate(-90deg);
}

.header__list .menu-item-has-children svg {
    transition: 0.3s ease;
    flex: none;
}

.header__list>.menu-item-has-children:hover svg {
    transform: rotate(-180deg);
}

.header__list>.menu-item-has-children a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__list .menu-item-has-children:hover>.sub-menu {
    display: flex;
}

.header__list>.menu-item-has-children:hover>.sub-menu {
    -webkit-animation: slide-top 0.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-top 0.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}


@-webkit-keyframes slide-top {
    0% {
        -webkit-transform: translate(-50%, 50px);
        transform: translate(-50%, 50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

@keyframes slide-top {
    0% {
        -webkit-transform: translate(-50%, 50px);
        transform: translate(-50%, 50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

@media screen and (max-width: 992px) {
    .header__list .sub-menu {
        position: relative;
        background-color: transparent;
    }

    .header__list .sub-menu{
        width: 100%;
    }

    .header__list .sub-menu a{
        font-size: 16px;
        color: #bfbfbf;
    }

    .header__list .menu-item-has-children svg{
        width: 25px;
        height: 25px;
        padding: 7px;
    }

    .header__list>.menu-item-has-children a {
        justify-content: center;
    }

    .header__list .menu-item-has-children:hover>.sub-menu,
    .header__list .menu-item-has-children::before {
        display: none;
    }

    .header__list .menu-item-has-children.active>.sub-menu {
        display: flex;
    }

    .header__list>.menu-item-has-children:hover>.sub-menu {
        animation: none;
    }

    .header__list .menu-item-has-children .menu-item-has-children>a svg,
    .header__list>.menu-item-has-children:hover svg{
        transform: none;
    }

    .header__list .sub-menu>li>.sub-menu{
        left: 50%;
        transform: translateX(-50%);
    }

    .header__list .menu-item-has-children.active > a svg{
        transform: rotate(-180deg);
    }
}

@media screen and (max-width: 576px) {
    .thanks {
        position: relative; /* &#1047;&#1072;&#1073;&#1077;&#1079;&#1087;&#1077;&#1095;&#1091;&#1108; &#1082;&#1086;&#1085;&#1090;&#1077;&#1082;&#1089;&#1090; &#1076;&#1083;&#1103; &#1072;&#1073;&#1089;&#1086;&#1083;&#1102;&#1090;&#1085;&#1086;&#1075;&#1086; &#1087;&#1086;&#1079;&#1080;&#1094;&#1110;&#1086;&#1085;&#1091;&#1074;&#1072;&#1085;&#1085;&#1103; .thanks__planet */
        padding-bottom: 20px; /* &#1044;&#1086;&#1076;&#1072;&#1090;&#1082;&#1086;&#1074;&#1080;&#1081; &#1087;&#1088;&#1086;&#1089;&#1090;&#1110;&#1088; &#1079;&#1085;&#1080;&#1079;&#1091; &#1076;&#1083;&#1103; &#1090;&#1077;&#1082;&#1089;&#1090;&#1091; &#1090;&#1072; &#1082;&#1085;&#1086;&#1087;&#1082;&#1080; */
    }

    .thanks__planet {
        position: absolute;
        top: 0; /* &#1047;&#1086;&#1073;&#1088;&#1072;&#1078;&#1077;&#1085;&#1085;&#1103; &#1079;&#1074;&#1077;&#1088;&#1093;&#1091; */
        left: 50%;
        transform: translateX(-50%); /* &#1062;&#1077;&#1085;&#1090;&#1088;&#1091;&#1074;&#1072;&#1085;&#1085;&#1103; &#1079;&#1086;&#1073;&#1088;&#1072;&#1078;&#1077;&#1085;&#1085;&#1103; */
        width: 100%; /* &#1047;&#1072;&#1081;&#1084;&#1072;&#1108; &#1074;&#1089;&#1102; &#1096;&#1080;&#1088;&#1080;&#1085;&#1091; &#1085;&#1072; &#1084;&#1086;&#1073;&#1110;&#1083;&#1100;&#1085;&#1080;&#1093; */
        max-width: 300px; /* &#1054;&#1073;&#1084;&#1077;&#1078;&#1077;&#1085;&#1085;&#1103; &#1088;&#1086;&#1079;&#1084;&#1110;&#1088;&#1091;; &#1072;&#1076;&#1072;&#1087;&#1090;&#1091;&#1081;&#1090;&#1077; &#1079;&#1072; &#1087;&#1086;&#1090;&#1088;&#1077;&#1073;&#1086;&#1102; */
    }

    .thanks .container {
        display: block; /* &#1041;&#1083;&#1086;&#1095;&#1085;&#1072; &#1088;&#1086;&#1079;&#1084;&#1110;&#1090;&#1082;&#1072; &#1076;&#1083;&#1103; &#1089;&#1090;&#1077;&#1082;&#1091; &#1077;&#1083;&#1077;&#1084;&#1077;&#1085;&#1090;&#1110;&#1074; */
    }

    .thanks__text,
    .thanks__btn {
        margin-top: 45px; /* &#1042;&#1110;&#1076;&#1089;&#1090;&#1091;&#1087; &#1079;&#1074;&#1077;&#1088;&#1093;&#1091; &#1076;&#1083;&#1103; &#1074;&#1110;&#1076;&#1086;&#1082;&#1088;&#1077;&#1084;&#1083;&#1077;&#1085;&#1085;&#1103; &#1074;&#1110;&#1076; &#1079;&#1086;&#1073;&#1088;&#1072;&#1078;&#1077;&#1085;&#1085;&#1103; */
    }

    .btn.thanks__btn {
        margin-top: 15px; /* &#1044;&#1086;&#1076;&#1072;&#1090;&#1082;&#1086;&#1074;&#1080;&#1081; &#1074;&#1110;&#1076;&#1089;&#1090;&#1091;&#1087; &#1076;&#1083;&#1103; &#1082;&#1085;&#1086;&#1087;&#1082;&#1080; &#1087;&#1110;&#1076; &#1090;&#1077;&#1082;&#1089;&#1090;&#1086;&#1084; */
    }
}

@media screen and (min-width: 576px) and (max-width: 991px) {

    .thanks__text {
        width: 50%; /* &#1055;&#1086;&#1074;&#1085;&#1072; &#1096;&#1080;&#1088;&#1080;&#1085;&#1072; &#1082;&#1086;&#1085;&#1090;&#1077;&#1081;&#1085;&#1077;&#1088;&#1072; &#1085;&#1072; &#1089;&#1077;&#1088;&#1077;&#1076;&#1085;&#1110;&#1093; &#1077;&#1082;&#1088;&#1072;&#1085;&#1072;&#1093; */
        padding-right: 15px; /* &#1052;&#1077;&#1085;&#1096;&#1080;&#1081; &#1074;&#1110;&#1076;&#1089;&#1090;&#1091;&#1087; &#1087;&#1088;&#1072;&#1074;&#1086;&#1088;&#1091;&#1095;; &#1072;&#1076;&#1072;&#1087;&#1090;&#1091;&#1081;&#1090;&#1077; &#1079;&#1072; &#1087;&#1086;&#1090;&#1088;&#1077;&#1073;&#1086;&#1102; */
    }
}

@media screen and (min-width: 992px) {
    
    .thanks__text {
        width: 65%; /* &#1051;&#1110;&#1074;&#1072; &#1082;&#1086;&#1083;&#1086;&#1085;&#1082;&#1072;: 50% &#1096;&#1080;&#1088;&#1080;&#1085;&#1080; &#1082;&#1086;&#1085;&#1090;&#1077;&#1081;&#1085;&#1077;&#1088;&#1072; */
        padding-right: 20px; /* &#1042;&#1110;&#1076;&#1089;&#1090;&#1091;&#1087; &#1087;&#1088;&#1072;&#1074;&#1086;&#1088;&#1091;&#1095; &#1076;&#1083;&#1103; &#1088;&#1086;&#1079;&#1076;&#1110;&#1083;&#1077;&#1085;&#1085;&#1103;; &#1072;&#1076;&#1072;&#1087;&#1090;&#1091;&#1081;&#1090;&#1077; &#1079;&#1072; &#1087;&#1086;&#1090;&#1088;&#1077;&#1073;&#1086;&#1102; */
    }
}

.wp-block-media-text__media img {
    border-radius: 20px; /* &#1047;&#1072;&#1082;&#1088;&#1091;&#1075;&#1083;&#1077;&#1085;&#1085;&#1103; &#1082;&#1091;&#1090;&#1110;&#1074; &#1076;&#1083;&#1103; &#1079;&#1086;&#1073;&#1088;&#1072;&#1078;&#1077;&#1085;&#1100; &#1091; &#1073;&#1083;&#1086;&#1094;&#1110; Media & Text */
}

@media screen and (max-width: 576px) {
    .wp-block-media-text__media img {
        border-radius: 15px; /* &#1051;&#1077;&#1075;&#1082;&#1077; &#1079;&#1084;&#1077;&#1085;&#1096;&#1077;&#1085;&#1085;&#1103; &#1076;&#1083;&#1103; &#1084;&#1086;&#1073;&#1110;&#1083;&#1100;&#1085;&#1080;&#1093;, &#1103;&#1082;&#1097;&#1086; &#1087;&#1086;&#1090;&#1088;&#1110;&#1073;&#1085;&#1086;; &#1086;&#1087;&#1094;&#1110;&#1086;&#1085;&#1072;&#1083;&#1100;&#1085;&#1086; */
    }
}	