@import url("https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@500;700&display=swap");

:root {
    --light: #F7EDE8;
    --light-blue: #EDF3F7;
    --light-gray: #4D4D4D;
    --dark: #000;
    --accent: #CD4631;
}

html {
    /* height: 100%; */
}

body {
    /* height: 100%; */
    font-family: "Montserrat Alternates", sans-serif;
    font-weight: 500;
    margin: 0px;
    line-height: 1.6;
}

/* .site-container {
    min-height: 100%;
    display: flex;
    flex-direction: column;
} */

/* .site-container > main {
    flex: 1 1 auto;
} */

/* header, footer {
    background-color: var(--light);
} */

a {
    text-decoration: none;
}

a,
button {
    transition: all 0.3s ease 0s;
}

button,
input,
textarea {
    font-family: "Montserrat Alternates", sans-serif;
}

button:focus,
input:focus {
    outline: none;
}

.container {
    max-width: 1160px;
    margin: 0px auto;
    padding-left: 15px;
    padding-right: 15px;
}

.btn-primary {
    display: inline-block;
    margin: 0px auto;
    font-size: 14px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    background-color: var(--dark);
    text-transform: uppercase;
    padding: 24px 48px;
    border: none;
    border-radius: 8px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    z-index: 2;
    box-shadow: rgba(0, 0, 0, 0.25) 3px 3px 0px 0px;
}

.btn-primary:hover {
    background-color: var(--accent);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 0px 0px;
}

.page-section {
    padding-top: 140px;
    padding-bottom: 140px;
}

.page-section-bg {
    background-color: var(--light-blue);
}

.page-section__title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1.1px;
    margin-top: 0px;
    margin-bottom: 20px;
    text-align: center;
}

.page-section__description {
    color: var(--light-gray);
    font-size: 23px;
    margin-bottom: 0px;
    text-align: center;
}

/* Header */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 124px;
    padding-top: 24px;
}

.header>nav {
    flex-grow: 1;
}

.header__nav {
    display: flex;
    align-items: center;
    list-style-type: none;
    padding-left: 0px;
    gap: 60px;
}

.header__link {
    color: var(--dark);
    font-weight: 700;
}

.header__link:hover {
    color: var(--accent);
}

.header .btn-primary {
    padding: 12px 24px;
}

main {
    background-color: var(--light);
    padding-bottom: 147px;
    position: relative;
}

main::before {
    content: "";
    display: block;
    background-image: url("../images/decor.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: clamp(50px, 26vw, 326px);
    height: 349px;
    position: absolute;
    left: 0px;
    top: 260px;
}

/* Main */

.main {
    text-align: center;
}

.main__title {
    font-size: 96px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -3.84px;
}

.main__description {
    line-height: 160%;
    max-width: 766px;
    margin: 0px auto;
}

.main__description._xs {
    max-width: 374px;
    margin-bottom: 60px;
}

.main__title>span {
    color: var(--accent);
}

.supported {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
    padding-top: 45px;
    padding-bottom: 45px;
    padding-right: 73px;
    margin-top: 115px;
}

.supported__text {
    flex-grow: 1;
    font-size: 23px;
    font-weight: 700;
}

.supported__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(20px, 8vw, 113px);
}

.about .page-section__title {
    max-width: 750px;
    margin: 0px auto;
}

.about-text {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 100px;
}

.about-text__col {
    text-align: center;
    max-width: 480px;
}

.about-text__img {
    width: 100%;
    max-width: 275px;
}

.history {
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
}

.history .page-section__title {
    display: inline-block;
    font-size: 36.65px;
    letter-spacing: -0.733px;
    margin: 0 auto 80px;
    position: relative;
}

.history .page-section__title::before {
    content: '';
    display: block;
    width: 120px;
    height: 120px;
    background-image: url(../images/sparkle.svg);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: -70px;
    left: -70px;
}

.history-text {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    color: var(--light-gray);
    gap: 40px;
    padding-bottom: 80px;
    border-bottom: 0.5px solid var(--light-gray);
    text-align: left;
}

.history-text strong {
    color: var(--dark);
}

.history-text a {
    color: inherit;
    border-bottom: 1px solid var(--light-gray);
}

.history-text a:hover {
    border-bottom: 1px solid transparent;
}

.history-text p {
    margin: 0;
}

.history-text p+p {
    margin-top: 40px;
}

.founder {
    text-align: center;
}

.founder .page-section__title {
    display: inline-block;
    font-size: 36.65px;
    letter-spacing: -0.733px;
    margin: 0 auto 80px;
    position: relative;
}

.founder .page-section__title::before {
    content: '';
    display: block;
    width: 120px;
    height: 120px;
    background-image: url(../images/scribble.svg);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: -70px;
    right: -70px;
}


.founder-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
    text-align: left;
}

.founder-card__col {
    display: flex;
    align-items: end;
    gap: 20px;
    font-size: 14px;
    padding: 16px;
    border-radius: 8px;
    border: 2px solid var(--dark);
    box-shadow: 10px 10px 0px 0px #000;
    color: var(--light-gray);
    position: relative;
}

.founder-card__col:first-child::before,
.founder-card__col:last-child::before {
    content: '';
    display: block;
    width: 100px;
    height: 100px;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 20px;
    right: 30px;
}

.founder-card__col:first-child::before {
    background-image: url(../images/founder/smile.svg);
}

.founder-card__col:last-child::before {
    background-image: url(../images/founder/star.svg);
}

.founder-card__thumb {
    position: relative;
    overflow: hidden;
    flex-basis: 259px;
}

.founder-card__info {
    flex-basis: calc(100% - 279px);
}

.founder-card__name {
    font-size: 36.65px;
    color: var(--dark);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.7px;
    margin-top: 0;
    margin-bottom: 0;
    padding-right: 20px;
}

.founder-card__social {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--light-gray);
}

.founder-card__social span {
    margin-right: 9px;
}

.founder-card__social a {
    display: block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: cover;
}

.founder-card__social a:hover {
    transform: scale(1.1);
}

/* .founder-card__social a._tt {
    background-image: url(../images/social/tiktok.svg);
}

.founder-card__social a._tw {
    background-image: url(../images/social/twitter.svg);
}

.founder-card__social a._in {
    background-image: url(../images/social/instagram.svg);
} */



/* Feedback */

.feedback {
    background-color: var(--light);
    border-radius: 8px;
    text-align: center;
    padding: 50px;
    margin-top: 120px;
}

.feedback__text {
    font-size: 37px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.7px;
    max-width: 700px;
    margin: 0px auto 40px;
    position: relative;
}

.feedback__text::before {
    content: "";
    display: block;
    width: 42px;
    height: 32px;
    margin: 0px auto 50px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url("../images/blockquote.svg");
}

.feedback-box {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin: 0px auto;
}

.feedback__author {
    margin-left: 10px;
}

.feedback__role {
    position: relative;
    padding-left: 30px;
    font-weight: 700;
    margin-left: 10px;

    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: left;
}

/* .feedback__role::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("../images/feedback/icon.png");
    position: absolute;
    top: calc(50% - 10px);
    left: 0px;
} */

/* Blog */

.blog {
    text-align: center;
}

.acticle {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
    margin-top: 100px;
    margin-bottom: 100px;
    text-align: left;
}

.article__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 8px;
    border: 2px solid var(--dark);
    background: rgb(255, 255, 255);
    box-shadow: rgb(0, 0, 0) 0px 0px 0px 0px;
    padding: 16px;
    transition: all 0.3s ease 0s;
}

.article__item:hover {
    box-shadow: rgb(0, 0, 0) 10px 10px 0px 0px;
}

.article__thumb {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 320px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.article__thumb img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.article__category {
    font-size: 14px;
    font-weight: 700;
    color: var(--light-gray);
    text-transform: uppercase;
}

.article__category:hover {
    color: var(--accent);
}

.article__title {
    color: var(--dark);
    font-size: 36.65px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.733px;
    margin-top: 6px;
    margin-bottom: 20px;
}

.article__title>a {
    color: inherit;
}

.article__title:hover {
    color: var(--accent);
}


.article__text p {
    font-size: 14px;
    font-weight: 500;
    color: var(--light-gray);
}

.article__info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--light-gray);
    font-size: 12px;
    padding-top: 20px;
    gap: 10px;
}

.article__tags {
    font-size: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.article__tags>a {
    color: var(--light-gray);
    padding: 6px 12px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
}

.article__tags>a:hover {
    color: var(--accent);
}

.article__date {
    font-weight: 700;
}

.main-blog {
    position: relative;
    padding-bottom: 117px;
}

.main-blog__search {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: -32px;
    margin-left: 20px;
    margin-right: 20px;
}

.form-search {
    width: 100%;
    max-width: 570px;
    position: relative;
    margin: 0px auto;
}

.form-search input {
    width: 100%;
    font-size: 16px;
    border: 2px solid var(--dark);
    border-radius: 8px;
    box-shadow: rgb(129, 173, 200) 6px 6px 0px 0px;
    box-sizing: border-box;
    transition: all 0.3s ease 0s;
    padding: 24px 24px 24px 88px;
}

.form-search input:focus {
    box-shadow: rgb(129, 173, 200) 0px 0px 0px 0px;
}

.form-search button {
    display: block;
    width: 24px;
    height: 24px;
    background-image: url("../images/search.svg");
    background-color: transparent;
    padding: 0;
    border: none;
    position: absolute;
    left: 40px;
    top: calc(50% - 12px);
}

.form {
    position: relative;
    border-top: 1px solid var(--light-gray);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
    max-width: 766px;
    margin: 60px auto 0px;
    padding-top: 40px;
}

.wpcf7 form.sent .wpcf7-response-output {
    margin: 0;
    padding: 0;
    position: absolute;
    font-size: 26px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    width: 100%;
    height: 100%;
    border-color: #46b450;
    background-color: rgba(70, 180, 80, 0.7);
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: red;
    grid-column: 2 span;
    margin: 0;
}

.form__item p {
    margin: 0;
}


.form__label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    cursor: pointer;
}

.form__label span {
    color: var(--accent);
}

.form__input,
.form__textarea {
    width: 100%;
    font-size: 16px;
    padding: 19px 20px;
    border: 2px solid var(--dark);
    border-radius: 8px;
    box-sizing: border-box;
    transition: all 0.3s ease 0s;
}

.form__input:focus,
.form__textarea:focus {
    border: 2px solid var(--accent);
}

.form__textarea {
    resize: none;
    min-height: 165px;
    height: 165px;
}

.form ._100 {
    grid-column: 1 / 3;
}

.wpcf7-form ._100 {
    grid-column: 1 / 3;
}

.form__btn {
    display: flex;
    align-items: center;
    margin: 20px;
}

.form__btn p {
    translate: 28px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.form__btn p .btn-primary {
    margin: 0;
}

/* Post */

.main-article {
    padding-top: 80px;
}

.main-article__top {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--light-gray);
    margin-bottom: 70px;
}

.main-article__back {
    color: var(--light-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-article__back::before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background-image: url("../images/arrow-back.svg");
    background-repeat: no-repeat;
}

.main-article__info {
    font-size: 14px;
    text-align: center;
}

.main-article__category {
    color: var(--accent);
    font-weight: 700;
    letter-spacing: -1.1px;
}

.main-article__title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1.1px;
    max-width: 700px;
    margin: 20px auto 50px;
}

.main-article__tags {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
}

.main-article__tags>a {
    color: var(--light-gray);
    padding: 6px 12px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
}

.main-article__tags>a:hover {
    color: var(--accent);
}

.post__thumb {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 500px;
}

.post__thumb img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.post-body {
    color: var(--light-gray);
    margin-top: 140px;
    padding-bottom: 140px;
    position: relative;
}

.post-body::before {
    content: '';
    display: block;
    width: 146px;
    height: 146px;
    background-repeat: no-repeat;
    background-image: url(../images/start-post.svg);
    background-size: cover;
    position: absolute;
    top: -100px;
    left: -100px;
}

.post-body h1,
.post-body h2,
.post-body h3,
.post-body h4,
.post-body h5,
.post-body h6 {
    color: #292F36;
    line-height: 1.4;
    font-weight: 700;
    color: var(--dark);
}

.post-body h1 {
    font-size: 40px;
    margin-bottom: 80px;
}

.post-body h2 {
    font-size: 37px;
    margin-bottom: 75px;
}

.post-body h3 {
    font-size: 34px;
    margin-bottom: 60px;
}

.post-body h4 {
    font-size: 30px;
    margin-bottom: 50px;
}

.post-body h5 {
    font-size: 28px;
    margin-bottom: 40px;
}

.post-body h6 {
    font-size: 24px;
    margin-bottom: 35px;
}

.post-body a {
    color: inherit;
    border-bottom: 1px solid var(--light-gray);
}

.post-body a:hover {
    border-bottom: 1px solid transparent;
}

.post-body b,
.post-body strong {
    font-weight: 700;
}

.post-body hr {
    margin-top: 100px;
    margin-bottom: 100px;
    border: none;
    color: var(--light-gray);
    background-color: var(--light-gray);
    height: 1px;
}

.post-body ul,
.post-body ol {
    padding-left: 0;
    list-style-type: none;
    margin-top: 24px;
    margin-bottom: 90px;
}

.post-body ol {
    counter-reset: item;
}

.post-body ul>li,
.post-body ol>li {
    position: relative;
    padding-left: 56px;
}

.post-body ul>li::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: var(--accent);
    position: absolute;
    top: 8px;
    left: 0;
}

.post-body ol>li::before {
    content: '';
    content: counter(item) '.';
    counter-increment: item;
    color: var(--accent);
    line-height: 1.6;
    font-weight: 700;
    position: absolute;
    top: 2px;
    left: 0;
}

.post-body ul>li+li,
.post-body ol>li+li {
    margin-top: 32px;
}

.post-body figure {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 365px;
    border-radius: 8px;
    margin: 44px 0;
}

.post-body figure img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.post-body blockquote {
    display: block;
    text-align: center;
    font-size: 37px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.7px;
    margin: 100px auto;
    padding: 40px 150px 50px 150px;
    border-radius: 8px;
    background-color: var(--light);
    position: relative;
    color: var(--dark);
}

.post-body blockquote::before {
    content: "";
    display: block;
    width: 42px;
    height: 32px;
    margin: 0px auto 50px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url("../images/blockquote.svg");
}

/* About */

.main-about {
    position: relative;
    padding-bottom: 230px;
}

.main-about__stat {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: -100px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1160px;
    margin: 0 auto;
}

.main-about__item {
    text-align: center;
    color: var(--light-gray);
    background-color: #fff;
    border: 2px solid var(--dark);
    border-radius: 8px;
    box-shadow: 6px 6px 0px 0px #CD4631;
    padding: 40px 20px 50px 20px;
}

.main-about__count {
    font-size: 60px;
    font-weight: 700;
    color: var(--dark);
    margin-top: 0;
    margin-bottom: 20px;
}

.main-about__count span {
    color: var(--accent);
}

.main-about__title {
    margin: 0;
}

/* Footer */

footer {
    border-top: 1.5px solid var(--dark);
    padding-bottom: 77px;
}

.footer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.footer__top {
    grid-column: 1 / 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 80px;
    padding-bottom: 60px;
    border-bottom: 0.5px solid var(--dark);
}

.footer-platform {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 29px;
}

.footer-platform__text {
    flex-grow: 1;
    color: var(--light-gray);
}

.footer-platform__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 23px;
    max-height: 22px;
}

.footer-platform__link>img {
    width: auto;
    height: 100%;
    display: block;
    max-height: 22px;
}

.footer__copyright {
    font-size: 12px;
    margin: 0px;
    color: var(--light-gray);
}

.footer__copyright>a {
    color: var(--accent);
}

.footer__copyright>a:hover {
    color: var(--light-gray);
}

.footer-links {
    font-size: 12px;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}

.footer-links>a {
    color: var(--light-gray);
    position: relative;
}

.footer-links>a:hover {
    color: var(--accent);
}

.footer-links>a+a::before {
    content: '';
    display: block;
    width: 2px;
    height: 2px;
    background-color: var(--light-gray);
    border-radius: 100%;
    position: absolute;
    left: -12px;
    top: calc(50% - 1px);
}

.graph-modal__container {
    max-width: 500px;
    padding: 30px;
}

.graph-modal__title {
    margin: 0;
    font-size: 25px;
    margin-bottom: 20px;
}

.graph-modal__input {
    width: 100%;
    font-size: 16px;
    padding: 15px;
    border: 2px solid var(--dark);
    border-radius: 8px;
    margin-bottom: 10px;
}

.graph-modal__input.just-validate-error-field {
    border: 2px solid red;
}

.graph-modal__button {
    width: 100%;
    padding: 13px 48px;
}

.wys-content {
    text-align: left;
}


@media (max-width: 1400px) {
    .post-body::before {
        display: none;
    }
}

@media (max-width: 1200px) {

    .main-blog::before,
    .main-about::before {
        display: none;
    }

    .main-about__stat {
        max-width: 700px;
    }

    .founder-card {
        grid-template-columns: repeat(1, 1fr);
        max-width: 500px;
        margin: 0 auto;
    }

    .founder-card__thumb {
        height: 400px;
    }
}

@media (max-width: 900px) {
    .header {
        gap: clamp(30px, 11vw, 100px);
    }

    .header .btn-primary {
        display: none;
    }

    .header>nav {
        flex-grow: inherit;
    }

    main::before {
        width: clamp(50px, 20vw, 180px);
        top: clamp(150px, 21vw, 200px);
    }

    .main__title {
        font-size: clamp(40px, 9vw, 80px);
    }

    .supported {
        flex-direction: column;
        gap: 10px;
        padding-right: 0;
    }

    .supported__list img {
        height: clamp(20px, 4vw, 40px);
    }

    .supported__text {
        margin-top: 0;
    }

    .about-text {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        margin: 100px auto 0;
    }

    .about-text__img {
        max-width: clamp(40px, 19vw, 200px);
    }

    .acticle {
        grid-template-columns: repeat(1, 1fr);
    }

    .post__thumb {
        height: 60vw;
    }

    .post-body blockquote {
        padding: 40px 80px 50px 80px;
    }

    .main-about {
        padding-bottom: 80px;
    }

    .main-about__stat {
        position: inherit;
        left: inherit;
        right: inherit;
        bottom: inherit;
        grid-template-columns: repeat(1, 1fr);
        margin-top: 50px;
        max-width: 400px;
    }

    .main-about__item {
        padding: 10px 10px 20px 10px;
    }

    .history {
        padding-top: 0;
    }

    .main-about__count {
        font-size: 30px;
        margin-bottom: 0;
    }

    .footer-platform {
        flex-direction: column;
        align-items: start;
        gap: 10px;
    }

    .footer-platform__text {
        margin-top: 0;
    }
}

@media (max-width: 600px) {
    main {
        padding-bottom: 100px;
    }

    main::before {
        display: none;
    }

    .page-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .page-section__title {
        font-size: 30px;
    }

    .page-section__description {
        font-size: 18px;
    }

    .supported {
        margin-top: 50px;
    }

    .supported__list img {
        height: clamp(15px, 4vw, 30px);
    }

    .feedback {
        margin-top: 80px;
    }

    .feedback__text {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .feedback__text::before {
        margin-bottom: 30px;
    }

    .feedback__role {
        display: none;
    }

    .acticle {
        margin-top: 50px;
        margin-bottom: 30px;
    }

    .article__thumb {
        height: 50vw;
    }

    .article__title {
        font-size: 22px;
    }

    .article__category {
        font-size: 12px;
    }

    .article__info {
        flex-direction: column;
        align-items: start;
        gap: 14px;
    }

    .form {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
        grid-column: 1 span;
    }

    .form ._100,
    .footer__top {
        grid-column: 1 / 2;
    }

    .wpcf7-form ._100,
    .footer__top {
        grid-column: 1 / 2;
    }

    .main-blog {
        padding-bottom: 80px;
    }

    .main-article {
        padding-top: 40px;
    }

    .main-article__top {
        margin-bottom: 50px;
    }

    .main-article__title {
        font-size: 40px;
    }

    .post__thumb {
        height: 40vw;
    }

    .post-body h1 {
        font-size: 25px;
        margin-bottom: 50px;
    }

    .post-body h2 {
        font-size: 22px;
        margin-bottom: 40px;
    }

    .post-body h3 {
        font-size: 20px;
        margin-bottom: 38px;
    }

    .post-body h4 {
        font-size: 18px;
        margin-bottom: 36px;
    }

    .post-body h5 {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .post-body h6 {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .post-body hr {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .post-body ul,
    .post-body ol {
        padding-left: 0;
        list-style-type: none;
        margin-top: 24px;
        margin-bottom: 50px;
    }

    .post-body ol {
        counter-reset: item;
    }

    .post-body ul>li,
    .post-body ol>li {
        position: relative;
        padding-left: 30px;
    }

    .post-body ul>li::before {
        content: '';
        display: block;
        width: 8px;
        height: 8px;
        border-radius: 100%;
        background-color: var(--accent);
        position: absolute;
        top: 8px;
        left: 0;
    }

    .post-body ol>li::before {
        content: '';
        content: counter(item) '.';
        counter-increment: item;
        color: var(--accent);
        line-height: 1.6;
        font-weight: 700;
        position: absolute;
        top: 2px;
        left: 0;
    }

    .post-body ul>li+li,
    .post-body ol>li+li {
        margin-top: 25px;
    }

    .post-body figure {
        position: relative;
        overflow: hidden;
        width: 100%;
        height: 60vw;
        border-radius: 8px;
        margin: 44px 0;
    }

    .post-body blockquote {
        font-size: 22px;
        padding: 40px 20px;
        margin: 50px auto;
    }

    .post-body blockquote::before {
        margin: 0px auto 30px;
    }

    .post-body {
        margin-top: 50px;
        padding-bottom: 50px;
    }

    .history .page-section__title::before,
    .founder .page-section__title::before {
        display: none;
    }

    .history-text {
        grid-template-columns: repeat(1, 1fr);
    }

    .main-about__stat {
        max-width: 250px;
    }

    .founder-card__thumb {
        display: none;
    }

    .founder-card__col:first-child::before,
    .founder-card__col:last-child::before {
        width: 50px;
        height: 50px;
    }

    .footer {
        grid-template-columns: repeat(1, 1fr);
        text-align: center;
    }

    .footer__top {
        flex-direction: column;
        gap: 30px;
    }

    .footer-platform {
        align-items: center;
    }

    .footer-links {
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 375px) {
    body {
        font-size: 14px;
    }

    .btn-primary {
        font-size: 12px;
        padding: 18px 30px;
    }

    .header {
        padding-top: 10px;
    }

    /* .header-logo img,
    .footer-logo img {
        width: 60px;
    } */
     .custom-logo-link .custom-logo {
        width: 60px;
        height: 60px;
    }

    .header__nav {
        gap: 30px;
    }

    main {
        padding-bottom: 50px;
    }

    .main__title {
        letter-spacing: -2px;
    }

    .main__description._xs {
        margin-bottom: 30px;
    }

    .supported__text {
        font-size: 14px;
        margin-bottom: 0;
    }

    .supported {
        padding-top: 30px;
        padding-bottom: 30px;
        gap: 20px;
    }

    .about-text {
        grid-template-columns: repeat(1, 1fr);
        margin: 50px auto 0;
    }

    .about-text__img {
        max-width: 100px;
    }

    .history .page-section__title {
        margin: 0 auto 30px;
    }

    .history-text {
        gap: 20px;
    }

    .history-text p+p {
        margin-top: 20px;
    }

    .history .page-section__title,
    .founder .page-section__title,
    .founder-card__name {
        font-size: 28px;
    }

    .founder-card__info {
        flex-basis: 100%;
        margin-top: 50px;
    }

    .feedback {
        padding: 30px 20px;
    }

    .article__thumb {
        margin-bottom: 20px;
    }

    .article__text {
        font-size: 12px;
    }

    .main-article__top {
        font-size: 12px;
    }

    .main-article__back {
        gap: 0;
    }

    .main-article__title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .main-article__tags {
        font-size: 12px;
    }

    .main-article__tags>a {
        padding: 4px 10px;
        border-radius: 4px;
    }

    .page-section__title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .page-section__description {
        font-size: 14px;
    }

    .form {
        margin: 30px auto 0px;
    }

    .form__label {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .form__input,
    .form__textarea {
        font-size: 14px;
        padding: 15px;
    }

    .form-search button {
        left: 20px;
    }

    .form-search input {
        padding: 18px 24px 18px 60px;
    }

    footer {
        padding-bottom: 30px;
    }

    .footer__top {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .footer-platform {
        font-size: 12px;
    }

    .footer-platform__link img {
        height: clamp(15px, 4vw, 30px);
    }
}