*,
*::after,
*::before {
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
body {
    line-height: 1;
    height: 100%;
    font-family: "Montserrat", sans-serif;
}

/* general styles */

:root {
    font-size: 16px;

    --color-blue: #3169fe;
    --color-gray: #f6f7fa;
    --color-deep-gray: #eef3f7;
    --color-white: #ffffff;
    --color-light-black: #0c1837;
    --color-black: #000000;
    --color-dark-blue: #4c4f70;
    --color-orange: #ff6b61;

    --radius: 30px;
    --border-gray: 1px solid #9ba9b4;
}

html,
body {
    height: 100%;
}

body::-webkit-scrollbar {
    width: 12px;
}

body::-webkit-scrollbar-track {
    background: var(--color-white);
}

body::-webkit-scrollbar-thumb {
    background-color: var(--color-blue);
}

html {
    scroll-behavior: smooth;
}

.wrapper {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

section {
    width: 100%;
}

.container {
    max-width: 1167px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    text-decoration: none;
    color: var(--color-white) !important;
    padding: 16px 30px;

    font-size: 1rem;
    line-height: 100%;

    border-radius: var(--radius);
}

.btn-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    text-decoration: none;
    color: var(--color-white) !important;
    padding: 16px 30px;

    font-size: 1rem;
    line-height: 100%;

    border-radius: var(--radius);
}

.btn__wrapper {
    cursor: pointer;
}

.btn-orange {
    background-color: var(--color-orange);
    transition: all 0.2s ease-in-out;
}

.btn-orange:hover {
    background-color: #ff4437;
    transform: scale(1.03);
}

.section__title {
    font-size: 2.25rem;
    color: var(--color-dark-blue);
    font-weight: 700;
    line-height: 140%;
}

/* general styles end */

/* header */

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

    padding: 50px 0;
    background-color: inherit;
    z-index: 3;
}

/* header end */

/* welcome */

.welcome {
    height: 100vh;

    display: flex;
    align-items: center;
}

.welcome__menu {
    min-height: 100%;

    display: flex;
    flex-direction: column;
    align-items: flex-end;

    flex: 30%;

    padding-right: 75px;

    background-color: var(--color-gray);
}

.logo {
    padding-top: 50px;
    max-width: 170px;
    display: flex;
    justify-content: flex-end;
    padding-right: 50px;
}

.welcome__nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    height: 100%;

    margin-top: 170px;
}

.welcome__link {
    text-align: left;

    color: var(--color-black) !important;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    line-height: 140%;

    max-width: 170px;

    margin-bottom: 60px;

    transition: color 0.2s ease-in-out;
}

.welcome__link:hover {
    color: var(--color-blue);
}

.welcome__content {
    height: 100%;
    flex: 70%;
    background-color: var(--color-blue);

    display: flex;
    align-items: center;

    padding-left: 55px;

    color: var(--color-white);
}

.welcome__wrapper {
    display: flex;
    flex-direction: column;
}

.welcome__header {
    display: flex;
    align-items: center;
}

.welcome__header h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 130%;

    max-width: 700px;

    margin-right: 35px;
}

.welcome__benefits {
    max-width: 916px;

    display: flex;
    justify-content: space-between;

    padding: 70px 0;
}

.welcome__benefit__item {
    width: 100%;
    max-width: 31%;

    display: flex;
}

.welcome__benefit__item p {
    margin-left: 10px;

    font-size: 1.3125rem;
    line-height: 130%;
}

.welcome__benefit__item img {
    width: 16px;
    height: 26px;
}

.burger-btn {
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 10002;
    overflow: hidden;

    display: none;

    cursor: pointer;
}
.burger-btn span {
    width: 30px;
    height: 3px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--color-blue);
    transition: all 0.5s;
}

.menu .welcome__link {
    text-align: center;
}

.burger-btn span:nth-of-type(2) {
    top: calc(50% - 8px);
}
.burger-btn span:nth-of-type(3) {
    top: calc(50% + 8px);
}

.burger-btn.active span:nth-of-type(1) {
    display: none;
}
.burger-btn.active span:nth-of-type(2) {
    background-color: var(--color-blue);
    top: 50%;
    transform: translate(-50%, 0%) rotate(45deg);
}
.burger-btn.active span:nth-of-type(3) {
    background-color: var(--color-blue);
    top: 50%;
    transform: translate(-50%, 0%) rotate(-45deg);
}

.hidden {
    overflow: hidden;
}

.welcome__mobile img {
    display: none;
}

.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px 30px;
    padding-top: 121px;
    background: var(--color-white);
    transform: translateX(100%);
    transition: transform 0.5s;

    z-index: 100;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
}

.mobile-menu__nav a {
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;

    color: var(--color-black) !important;
    text-decoration: none;
}

.mobile-menu__nav a:last-child {
    margin-bottom: 0px;
}

.mobile-menu__info {
    display: flex;
    flex-direction: column;
}

.mobile-menu__social a {
    margin-right: 25px;
}

.mobile-menu__phone {
    margin: 40px 0;

    font-weight: 700;
    font-size: 22px;
    line-height: 100%;
    color: #000000;
    letter-spacing: 0.01em;
}

.mobile-menu__contacts {
    display: flex;
    flex-direction: column;
}

.mobile-menu__contacts a {
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;

    color: #000000 !important;

    text-decoration: none;
}

.mobile-menu__contacts a:last-child {
    margin-top: 20px;
}

.menu.active {
    transform: translateX(0);
}

@media (max-width: 1024px) {
    :root {
        font-size: 14px;
    }

    .welcome__header h1 {
        font-size: 1.5rem;
    }

    .welcome__header img {
        display: none;
    }

    .welcome__menu {
        padding-right: unset;
    }

    .welcome__benefit__item p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .logo {
        padding-right: 15px;
    }

    .welcome__content {
        padding-left: 25px;
    }

    .welcome__nav {
        margin-top: 100px;
        align-items: flex-end;
        padding-right: 35px;
    }

    .welcome__link {
        text-align: right;
    }

    .welcome__benefits {
        flex-direction: column;
    }

    .welcome__benefit__item {
        margin-bottom: 20px;
    }

    .burger-btn {
        display: block;
    }
}

@media (max-width: 560px) {
    .welcome__menu {
        display: none;
    }

    .welcome {
        height: 120vh;
    }

    .welcome__content {
        padding-left: 0;
        flex: 100%;

        padding: 0 10px;
    }

    .welcome__wrapper {
        padding-top: 180px;
        padding-bottom: 75px;
        height: 100%;
        align-items: center;
        justify-content: space-around;
    }

    .welcome__header {
        flex-direction: column;
    }

    .welcome__header img {
        margin-top: 20px;
        display: block;
    }

    .welcome__header h1 {
        margin-right: 0;
        text-align: center;
        font-size: 36px;
        font-weight: 700;
        line-height: 120%;
    }

    .welcome__benefits {
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
        padding-top: 40px;
        padding-bottom: 20px;
    }

    .welcome__benefit__item {
        /* justify-content: center; */
        margin-top: 30px;
        width: 100%;
        max-width: 350px;
    }

    .welcome__benefit__item p {
        max-width: 324px;
        font-size: 21px;
        line-height: 130%;
        color: #ffffff;
    }
}

/* welcome end */

/* description */

.description {
    padding: 120px 0;
}

.description.gray,
.top.gray {
    background-color: var(--color-deep-gray);
    padding: 30px 0;
}

.description .container {
    display: flex;
    flex-direction: column;
}

.description__content {
    display: flex;
    justify-content: space-between;

    margin-bottom: 70px;
}

.description__content.gray {
    margin-bottom: 0;
}

.description__content.consultation {
    flex-wrap: wrap;
}

.description__info {
    max-width: 668px;

    display: flex;
    flex-direction: column;
}

.description__info__text {
    display: flex;
    flex-direction: column;

    margin-top: 30px;
}

.description__info__text p {
    color: #363636;
    line-height: 162%;
}

@media (max-width: 1180px) {
    .description.gray {
        padding: 0;
        padding-top: 30px;
    }
    .description__content.gray {
        margin-bottom: 30px;
    }
    .author-big-card {
        margin-top: 30px;
    }
}

/* description end */

/* steps */

.steps {
    width: 100%;

    display: flex;
    justify-content: space-between;
}

.step__item {
    max-width: 270px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.step__title {
    font-size: 1.3125rem;
    font-weight: 700;
    line-height: 123%;
    color: var(--color-dark-blue);

    margin-top: 20px;
    margin-bottom: 8px;
}

.step__description {
    color: #363636;
    font-size: 0.875rem;
    line-height: 140%;
}

@media (max-width: 1180px) {
    .container {
        padding: 0 15px;
    }

    .description__content img {
        display: none;
    }

    .description__content .consultation-img {
        display: block;
    }

    .description__info {
        max-width: unset;
        width: 90%;
    }

    .description__info .section__title {
        text-align: left;
    }

    .steps {
        flex-wrap: wrap;
    }

    .step__item {
        margin-bottom: 40px;
    }
}

@media (max-width: 560px) {
    .steps {
        flex-wrap: wrap;
        justify-content: center;
    }

    .step__item:nth-child(even) {
        align-items: flex-end;
    }

    .step__item:nth-child(even) p {
        text-align: end;
    }
}

/* steps end */

/* complex */

.complex {
    padding-top: 100px;
    padding-bottom: 120px;
    background-color: var(--color-gray);
}

.complex .container {
    width: 100%;
    display: flex;
    /* align-items: flex-end; */
    justify-content: space-between;
}

.complex-title {
    max-width: 238px;
}

.complex__wrapper {
    display: flex;
    flex-direction: column;
    margin-left: 30px;
    /* margin-left: 200px; */
}

.complex__item {
    box-sizing: border-box;
    margin-bottom: 20px;

    max-width: 902px;

    padding: 30px 40px;
    background-color: var(--color-white);
    border: var(--border-gray);

    display: flex;
    align-items: stretch;

    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.complex__item:hover {
    transform: scale(1.01);
}

.complex__item:last-child {
    margin-bottom: 0;
}

.complex__info {
    margin-left: 30px;
    display: flex;
    flex-direction: column;
}

.complex__title {
    color: var(--black-color);
    font-weight: 700;
    font-size: 1.3125rem;
    line-height: 130%;

    margin-bottom: 15px;
}

.complex__text {
    color: #2f4152;
    font-size: 0.875rem;
    line-height: 140%;
}

@media (max-width: 1180px) {
    .complex .container {
        flex-direction: column;
        align-items: center;
    }

    .complex-title {
        max-width: unset;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .complex__wrapper {
        margin-left: 0;
    }
}

@media (max-width: 430px) {
    .complex__item img {
        display: none;
    }

    .complex__info {
        margin-left: 0;
    }
}

/* complex end */

/* team */

.team {
    padding-top: 100px;
    padding-bottom: 60px;
}

.team .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team__wrapper {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;

    margin-top: 72px;
}

.team__item {
    width: 269px;
    max-width: 269px;

    display: flex;
    flex-direction: column;
    align-items: center;

    cursor: pointer;
    transition: transform 0.2s ease-in-out;

    margin-bottom: 60px;
}

.team__item:hover {
    transform: scale(1.1);
}

.team__title {
    color: var(--color-dark-blue);
    font-weight: 700;
    line-height: 150%;

    margin-top: 16px;
}

@media (max-width: 1110px) {
    .team .container .section__title {
        text-align: center;
    }

    .team__wrapper {
        justify-content: center;
    }
}

/* team end */

/* question */

.questions {
    padding: 45px 0;
    background-color: var(--color-blue);
    color: var(--color-white);
}

.questions .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.question__title {
    text-align: center;
    font-size: 1.3125rem;
    font-weight: 700;
    line-height: 143%;
}

.question__subtitle {
    line-height: 162%;
    text-align: center;

    margin-top: 16px;
    margin-bottom: 28px;
}

.form__title {
    font-size: 1.5rem;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 20px;
}

.check-list__form {
    display: flex;
    flex-direction: column;
}

.check-list__form .inp {
    border: 1px solid var(--color-black);
    width: 100%;
    margin-top: 20px;
}

.check-list__form input::placeholder {
    color: var(--border-gray);
}

.question__form {
    padding: 0 33px;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.inp {
    flex: 1;

    padding: 19px 20px;
    background-color: inherit;
    border: 1px solid var(--color-white);
    border-radius: 40px;

    margin-right: 8px;
    outline: none;

    color: var(--white-color);
}

.inp:focus {
    border: 1px solid var(--color-orange);
}

.inp::placeholder {
    color: #e0e4f0;
}

.question__form .btn {
    flex: 1;
}

.btn-white {
    padding-top: 18px;
    padding-bottom: 18px;
    background-color: var(--color-white);
    color: #363636 !important;
    border: 0;

    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.btn-white:hover {
    transform: scale(1.01);
}

.politic {
    margin-top: 16px;

    font-size: 0.75rem;
    color: var(--color-white);
    text-align: center;
}

.politic a {
    color: var(--color-white) !important;
    text-decoration: underline !important;
}

@media (max-width: 992px) {
    .question__form {
        flex-direction: column;
    }

    .question__form .inp {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* question end */

/* director */

.director {
    padding-top: 55px;
    background: linear-gradient(
        108.08deg,
        #d4d5d9 22.07%,
        #dcdde0 52.81%,
        #bdbfc6 84.2%
    );
}

.director .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.director__info {
    display: flex;
    flex-direction: column;
}

.director__header {
    font-weight: 700;
    font-size: 30px;
    color: var(--color-dark-blue);
}

.director__title2 {
    margin-bottom: 50px;
    font-size: 30px;
    font-weight: 700;
    line-height: 100%;
    color: #4C4F70;
}

.director__title {
    display: flex;
    align-items: center;
}

.director__title {
    font-size: 2.25rem;
    line-height: 140%;
    font-weight: 700;
}

.director__social {
    display: flex;
    align-items: center;
    margin-left: 15px;
}

.director__social a {
    text-decoration: none;
    margin-left: 15px;
}

.director__who {
    color: #2f4152;
    font-size: 1.5rem;
    line-height: 140%;

    max-width: 425px;

    margin-top: 20px;
    margin-bottom: 25px;
}

.director__social-mobile {
    display: none;
}

.director__about {
    color: #2f4152;
    line-height: 150%;
    max-width: 560px;
}

@media (max-width: 768px) {
    .director__title2 {
        text-align: center;
    }    
    
    .director .container {
        flex-direction: column;
        align-items: center;
    }

    .director__image {
        max-width: 354px;
    }

    .director__header {
        display: block;
        text-align: center;
    }

    .director__title {
        flex-direction: column;
    }

    .director__social {
        display: none;
    }

    .director__who {
        display: flex;
        flex-direction: column;
        align-items: center;

        text-align: center;
    }

    .director__who p {
        max-width: 354px;
        font-size: 24px;
        line-height: 140%;

        margin-bottom: 25px;
    }

    .director__social-mobile {
        display: flex;
        align-items: center;
    }

    .director__social-mobile {
        margin-left: 0;
    }

    .director__social-mobile a:first-child {
        margin-left: 0;
    }

    .director__about {
        max-width: 354px;
        text-align: center;
        margin-bottom: 40px;
    }
}

@media (max-width: 392px) {
    .director__image {
        display: none;
    }
}

/* director end */

/* clients */

.clients {
    padding-top: 90px;
    padding-bottom: 60px;
}

.clients .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.clients__wrapper {
    margin-top: 60px;
    width: 100%;

    display: flex;
    flex-wrap: wrap;
}

.client__item {
    width: 25%;

    display: flex;
    justify-content: center;

    margin-bottom: 40px;

    transition: transform 0.2s ease-in-out;
}

.client__item:hover {
    transform: scale(1.03);
}

.client__item img {
    max-height: 106px;
}

@media (max-width: 1180px) {
    .clients__wrapper {
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .client__item {
        width: auto;
    }

    .section__title {
        text-align: center;
    }
}

@media (max-width: 560px) {
    .clients__wrapper {
        justify-content: center;
    }
}

/* clients end */

/* footer */

.footer {
    background-color: var(--color-black);
    padding: 50px 0;
}

.footer .container {
    display: flex;
    align-items: center;

    justify-content: space-between;
}

.footer__adress {
    display: flex;
    flex-direction: column;
}

.footer__adress a {
    color: var(--color-white) !important;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 150%;
}

.footer__adress .tel {
    color: var(--color-white) !important;
    text-decoration: none !important;
}

.footer__adress a:last-child {
    margin-top: 15px;
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer__contacts a {
    color: var(--color-white) !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.375rem;
    line-height: 100%;

    margin-bottom: 20px;
}

.footer__contacts a {
    margin-left: 15px;
}

@media (max-width: 768px) {
    .footer .container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .footer__adress {
        align-items: center;

        margin: 40px 0;
    }

    .footer__contacts {
        align-items: center;
    }
}

/* footer end */

/* copyright */

.copyright {
    background: #f6f7fa;
    padding: 6px 0;
}

.copyright__policy {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #000 !important;
}

.copyright .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright .container p {
    font-size: 0.875rem;
    color: var(--color-black);
    line-height: 150%;
}

@media (max-width: 400px) {
    .copyright .container p {
        font-size: 0.65rem;
    }

    .copyright .container p:last-child {
        text-align: end;
    }
}

/* copyright end */

#phone {
    letter-spacing: 1px;
}

.button-warning {
    transition: all 0.2s ease-in-out;
    animation: shake 0.5s normal;
}

.input-warning {
    transition: all 0.2s ease-in-out;
    animation: shake 0.5s normal;

    border: 1px solid var(--color-orange);
}

@keyframes shake {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(3px);
    }
    40% {
        transform: translate(-3px);
    }
    60% {
        transform: translate(3px);
    }
    80% {
        transform: translate(-3px);
    }
    100% {
        transform: translate(0);
    }
}

.send-success {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

/* sticky-header */

.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    padding: 16px 0;

    background-color: #f6f7fa;

    animation-name: show-header;
    animation-duration: 0.5s;
}

.sticky-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sticky-header__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;

    max-width: 606px;
    width: 100%;
}

.sticky-header__nav .welcome__link {
    margin: 0;
    max-width: unset;
}

@keyframes show-header {
    0% {
        opacity: 0;
        top: -70px;
    }
    100% {
        opacity: 1;
        top: 0;
    }
}
.welcome__logo img {
    width: 100px;
}
@media (max-width: 768px) {
    .sticky-header {
        background-color: var(--color-white);
        display: block !important;
    }

    .sticky-header__nav {
        display: none;
    }

    .sticky-header__btn {
        display: none;
    }

    .menu {
        background-color: #f6f7fa;
    }
    .welcome__logo img {
        width: 70px;
    }
}

/* sticky-header end */

.none {
    display: none;
}

#callback-form2 .question__title {
    display: flex;
    align-items: center;
}

#callback-form2 .question__title img {
    margin-right: 30px;
}

#openGetCourseForm {
    max-width: 400px;
    max-height: 500px;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: fixed;
    background: #fff;
    display: none;
    padding: 0 30px;
}

#openGetCourseForm.open {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

#closeGetCourseForm {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.lt-block-wrapper {
    padding: 0 !important;
}

#popUpWrapper {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    position: fixed;
    left: 0;
    top: 0;
    display: none;
}
#popUpWrapper.open {
    display: block;
}

.top {
    padding-top: 30px;
}

.top__logo {
    width: 100px;
}

.section__title.dark {
    color: var(--color-black);
}

.author-card {
    margin-top: 40px;
    margin-bottom: 40px;
    display: flex;
    gap: 24px;
    width: 100%;
    padding: 20px;
    background-color: var(--color-white);
    border: 1px solid var(--color-dark-blue);
}

.author-card img {
    max-width: 120px;
    object-fit: cover;
}

.author-card__description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.author-card__description__title {
    font-size: 21px;
    color: var(--color-orange);
    font-weight: 700;
}

.author-card__description__text {
    font-size: 14px;
    color: var(--color-light-black);
    font-weight: 400;
}

.author-big-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-black);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.author-big-card__description__title {
    font-weight: 700;
    font-size: 21px;
    color: var(--color-orange);
}

.author-big-card__description__text {
    font-weight: 400;
    font-size: 14px;
}

.author-big-card__description {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    max-width: 350px;
}

@media (max-width: 1180px) {
    .author-card img {
        display: block;
    }
}

@media (max-width: 576px) {
    .author-card {
        flex-wrap: wrap;
    }
}

.description_image {
    max-width: 300px;
}

.points__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    column-gap: 30px;
    row-gap: 60px;
}

.points_item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.points_number {
    font-weight: 200;
    font-size: 48px;
    color: #ff6b61;
}

.points_item {
    font-weight: 700;
    font-size: 24px;
    color: #4c4f70;
}

.get-manual {
    background-color: var(--color-blue);
    margin: 120px 0;
}

.get-manual__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 60px 0;
}

.get-manual__title {
    font-weight: 700;
    color: var(--color-white);
    font-size: 24px;
    text-align: center;
    max-width: 920px;
    line-height: 130%;
}

.get-manual__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 100px;
}

.get-manual__item {
    display: flex;
    gap: 20px;
}

.get-manual__item__text {
    font-weight: 700;
    font-size: 24px;
    color: var(--color-white);
}

@media (max-width: 992px) {
    .get-manual__content {
        padding: 0;
    }
}

.med-description {
    padding-bottom: 120px;
}

.med-description__wrapper {
    padding: 0 100px;
}

.med-description__content {
    display: flex;
    gap: 30px;
    padding-top: 60px;
    align-items: center;
}

.med-description__title {
    font-weight: 700;
    font-size: 36px;
    color: var(--color-dark-blue);
    text-align: center;
}

.med-description__description {
    font-weight: 400;
    font-size: 24px;
    max-width: 670px;
}

.med-description__logo {
    max-width: 200px;
}

@media (max-width: 992px) {
    .med-description__description {
        text-align: center;
    }
    .med-description__wrapper {
        padding: 0 20px;
    }
    .med-description__content {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.med-description__check-rows {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 60px;
}

.med-description__check-rows__item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.med-description__check-rows_text {
    font-weight: 400;
    font-size: 18px;
    color: var(--color-black);
}

.complex-analysis {
    padding-top: 120px;
}

.complex-analysis__content {
    padding: 60px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    column-gap: 30px;
    row-gap: 60px;
}

.complex-analysis__item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.complex-analysis__item img {
    width: 60px;
}

.complex-analysis__title {
    font-weight: 700;
    font-size: 36px;
    color: var(--color-dark-blue);
}

.complex-analysis__text {
    font-size: 24px;
    color: var(--color-light-black);
}

@media (max-width: 992px) {
    .complex-analysis__title {
        font-size: 30px;
    }
}

.what-we-do {
    padding-bottom: 120px;
}

.what-we-do__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.what-we-do__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    column-gap: 30px;
    row-gap: 30px;
}

.what-we-do__item {
    border: var(--border-gray);
    padding: 30px;
    text-align: center;
    font-size: 18px;
    background-color: transparent;
    color: black;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.what-we-do__item:hover {
    background-color: var(--color-blue);
    color: white;
}

.why-you-need {
    padding-bottom: 120px;
}

.why-you-need__wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.why-you-need__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    column-gap: 70px;
    row-gap: 70px;
    padding: 0 100px;
}

.why-you-need__item {
    display: flex;
    gap: 15px;
    line-height: 150%;
}

.why-you-need__item img{
    width: 60px;
    height: min-content;
}

@media (max-width: 992px) {
    .why-you-need__container {
        padding: 0;
    }
}

@media (max-width: 442px) {
    .why-you-need__container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}
