body {
    font-family: Euclid Circular A;
    overflow-x: hidden;
}

a {
    color: #001635;
    text-decoration: none;
}

h1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 108%;
}

h2 {
    color: #000;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 108%;
}

p {
    color: #001635;
    font-size: 17px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 0;
}

article h2 {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 40px;
    margin-top: 80px;
    margin-left: 0;
    color: #161616;
}

article p {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 400;
    color: #161616;
}

article a {
    color: #2A83FF;
    text-decoration: underline !important;
}

article a:hover {
    text-decoration: none !important;
}

article figure {
    margin-top: 40px;
    margin-bottom: 40px;
}

.content ul {
    padding-left: 2rem;
}

.content ul li {
    list-style-type: none;
    position: relative;
    margin-bottom: 6px;
    list-style-position: inside;
    font-size: 20px;
    line-height: 1.4;
}

.content ul li:last-child {
    margin-bottom: 20px;
}

.content ul li:before {
    content: "—";
    position: absolute;
    left: -32px;
}

.content ol {
    list-style-type: none;
    counter-reset: num;
    padding-left: 2rem;
    font-size: 18px;
}

.content ol li {
    position: relative;
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 6px;
}

.content ol li:last-child {
    margin-bottom: 20px;
}

.content ol li:before {
    content: counter(num) '.';
    counter-increment: num;
    display: inline-block;
    position: absolute;
    top: 0px;
    left: -30px;
    text-align: right;
}

blockquote {
    font-style: italic;
    margin: 40px 0;
    padding: 30px 40px;
    line-height: 1.45;
    position: relative;
    color: #383838;
    border-left: 3px dashed #2a83ff;
    background: #EAF4FD;
}

blockquote>* {
    margin: 0 !important;
}

article .accordion {
    --bs-accordion-border-width: 0;
    --bs-accordion-border-radius: 0;
}

article .accordion-item {
    border-top: 1px solid #161616;
    border-bottom: 1px solid #161616;
}

article .accordion-button:not(.collapsed) {
    color: #161616;
}

article .accordion-button {
    padding: 16px 0;
}

article .accordion-header button {
    font-size: 22px;
    font-weight: 600;
}

article .accordion ol {
    list-style-position: inside;
}

article .accordion-body {
    padding: 0 0 20px 0;
}

article .accordion-button:not(.collapsed) {
    background-color: transparent;
}

article .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.article-paragraph {
    margin-bottom: 40px;
}

article code {
    padding: 20px;
    background: #272b2d;
    color: #fff;
    border-radius: 5px;
}

article pre {
    margin-bottom: 20px;
}

.content-accordion {
    margin-bottom: 60px;
}

.paragraph {
    font-weight: 600;
}

.anchor_item {
    font-size: 20px;
}

.anchor_item a {
    color: #161616;
    transition: all .3s;
}

.anchor_item a:hover {
    color: #2A83FF;
}

.content-right {
    padding-left: 40px;
}

.artcile__sidebar {
    position: sticky;
    top: 130px;
}




.mt-s-1 {
    margin-top: 10px;
}

.mt-s-2 {
    margin-top: 20px;
}

.mt-s-4 {
    margin-top: 40px;
}

.mt-s-6 {
    margin-top: 60px;
}


/* Header */

:root header {
    --color-bg: #fff;
    --color-text: #001635;
    --color-accent: #2a83ff;
    --color-black: #17171b;
    --color-burger-line: #001635;
    --color-burger-bg: #fff;
}

.header__overlay {
    position: fixed;
    inset: 0;
    cursor: pointer;
    z-index: 998;
    background: rgb(0 0 0 / 50%);
}

.header__spaceshift {
    height: 104px;
}

/* Бургер меню */
.btn1 {
    position: relative;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    top: 0;
    left: 0;
    transition-duration: 0.5s;
    border-radius: 22px;
    cursor: pointer;
    visibility: visible;
    opacity: 1;
}

.btn1.open {
    background: var(--color-burger-bg);
    visibility: visible;
    opacity: 1;
}

.btn1 .icon-left {
    transition-duration: 0.5s;
    position: absolute;
    width: 16px;
    height: 2px;
    top: 19px;
    background-color: var(--color-burger-line);
    left: 9px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.btn1.open .icon-left {
    transition-duration: 0.3s;
    background: transparent;
}

.btn1 .icon-left:before {
    transition-duration: 0.3s;
    position: absolute;
    width: 16px;
    height: 2px;
    background-color: var(--color-burger-line);
    content: "";
    top: -8px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.btn1.open .icon-left:before {
    transform: rotateZ(45deg) scaleX(1.1) translate(2.5px, 2px);
}

.btn1 .icon-left:after {
    transition-duration: 0.3s;
    position: absolute;
    width: 16px;
    height: 2px;
    background-color: var(--color-burger-line);
    content: "";
    top: 8px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.btn1.open .icon-left:after {
    transform: rotateZ(-45deg) scaleX(1.1) translate(2.5px, -2px);
}

.btn1 .icon-right {
    transition-duration: 0.3s;
    position: absolute;
    width: 16px;
    height: 2px;
    top: 19px;
    background-color: var(--color-burger-line);
    left: 21px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.btn1.open .icon-right {
    transition-duration: 0.3s;
    background: transparent;
}

.btn1 .icon-right:before {
    transition-duration: 0.3s;
    position: absolute;
    width: 16px;
    height: 2px;
    background-color: var(--color-burger-line);
    content: "";
    top: -8px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.btn1.open .icon-right:before {
    transform: rotateZ(-45deg) scaleX(1.1) translate(-3.5px, 1px);
}

.btn1 .icon-right:after {
    transition-duration: 0.3s;
    position: absolute;
    width: 16px;
    height: 2px;
    background-color: var(--color-burger-line);
    content: "";
    top: 8px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.btn1.open .icon-right:after {
    transform: rotateZ(45deg) scaleX(1.1) translate(-3.5px, -1px);
}

@media screen and (min-width: 993px) {
    .btn1 {
        display: none;
    }
}

/* Конец бургер меню */

header.header__container {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    transition: 0.3s ease;
    overflow: hidden;
    background: var(--color-bg);
}

header.header__container.main-header--bg_scroll {
    background: var(--color-bg);
}

header.header__container.main-header--bg_click {
    background: var(--color-bg);
}

header.header__container.out {
    transform: translateY(-100%);
}

header.header__container.open.out {
    transform: none;
}

header.header__container.open {
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

li.header__item:hover,
li.header__item:hover::after {
    color: var(--color-accent);
}

.menu__wrapper {
    display: flex;
    visibility: hidden;
    max-height: 0;
    padding: 0;
    transition: .3s ease;
    flex-direction: column;
    gap: 30px;
}

.menu__wrapper.menu__wrapper_active {
    opacity: 1;
    visibility: visible;
    max-height: 100vh;
    padding: 46px 0;
}

.menu-main ul li {
    font-size: 16px;
    margin-bottom: 12px;
}

.menu-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.header__topbar {
    padding: 8px 0;
    background: #EFF2FF;
}

.top__bar-right {
    display: flex;
    justify-content: flex-end;
    gap: 32px;
    color: #001635;
    font-size: 14px;
    font-weight: 500;
}

.button-arrow {
    color: #3155FF;
    font-size: 16px;
    font-weight: 500;
}

.top__bar-right .button-arrow {
    font-size: 14px;
}

.button-arrow:after {
    content: '';
    background-image: url(../images/arrow-right.svg);
    width: 13px;
    height: 9px;
    margin-left: 5px;
    display: inline-block;
    background-size: cover;
    background-repeat: no-repeat;
    vertical-align: middle;
    top: 0;
    position: relative;
}

.button-arrow2 {
    color: #CDD1E5;
    font-size: 16px;
    font-weight: 500;
}

.button-arrow2:after {
    content: '';
    background-image: url(../images/arrow-white.svg);
    width: 13px;
    height: 9px;
    margin-left: 5px;
    display: inline-block;
    background-size: cover;
    background-repeat: no-repeat;
    vertical-align: middle;
    top: -1px;
    position: relative;
}

.phonenumber {
    display: flex;
}

.phone-icon {
    margin-right: 6px;
}

.button {
    padding: 15px 20px;
    border-radius: 10px;
    background: #3155FF;
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

.header-button {
    padding: 10px 20px;
}

.menwrapper {
    display: flex;
    padding: 18px 0;
    justify-content: space-between;
    align-items: center;
    border-bottom: 0.1px solid transparent;
    border-image: linear-gradient(0.25turn, rgba(0, 22, 53, 0.00), rgba(0, 50, 120, 0.3), rgba(0, 22, 53, 0.00));
    border-image-slice: 1;
}

.header__items-container ul {
    display: flex;
    gap: 36px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.56px;
    text-transform: uppercase;
}

.dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.dropdown:after {
    content: '';
    background-image: url(../images/dropdown.svg);
    width: 10px;
    height: 5px;
    margin-left: 6px;
    display: inline-block;
    background-size: cover;
    background-repeat: no-repeat;
    vertical-align: middle;
    top: -2px;
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    width: 100%;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Footer */

footer {
    margin-top: 100px;
}

.footer__container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

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

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

.footer__contacts {
    color: #000;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-decoration-line: underline;
}

.footer__column h3 {
    font-weight: 600;
    margin-bottom: 20px;
}

.footer__column ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.footer__column .social-links {
    flex-direction: row;
}

.footer__column:last-child {
    margin-right: 40px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.footer__copyright {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
}

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

.copyright__links {
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    text-decoration-line: underline;
}

.copyright__links ul {
    display: flex;
    gap: 24px;
}

.line-sepreator {
    width: 100%;
    height: 1px;
    background: #E3E3E3;
}

/* Main Page */

.banner_slider {
    border-radius: 10px;
    overflow: hidden;
}

.main-block-item {

    background-size: cover;
    padding: 58px 46px;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.main-block-item p {
    color: rgba(255, 255, 255, 0.50);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.main-block-item h1 {
    color: #FFF;
    width: 492px;
    margin: 50px 0 70px 0;
}

.slider-next {
    position: absolute;
    background-image: url('../images/arrow-next.svg');
    width: 30px;
    height: 30px;
    bottom: 0;
    right: 0;
    margin-right: 30px;
    margin-bottom: 26px;
    opacity: 1;
}

.carousel-buttons-wrapper {
    display: flex;
    gap: 22px;
    align-items: center;
}

.slider-col {
    position: relative;
}

.slick-dots {
    position: absolute;
    display: flex !important;
    justify-content: flex-end;
    position: absolute;
    bottom: 38px;
    right: 0;
    margin-right: 88px;
}

.slick-dots button {
    font-size: 0;
    padding: 0;
}

.slick-dots li {
    width: 6px;
    height: 6px;
    margin-right: 6px;
    margin-left: 6px;
    border-radius: 10px;
    border-top: 0px;
    border-bottom: 0px;
    background-color: #D9D9D9;
    opacity: 0.3;
    cursor: pointer;
}

.slick-dots .slick-active {
    opacity: 1;
}

.feature-post {
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.feature-post-wrapper {
    background: linear-gradient(214deg, #BDE7FF 13.61%, rgba(222, 255, 255, 0.00) 147.19%);
    padding: 35px 30px;
    height: 100%;
    border-radius: 10px;
}

.feature-post-wrapper h3 {
    color: rgba(0, 22, 53, 0.50);
    font-size: 20px;
    font-weight: 500;
    line-height: 108%;
    margin-bottom: 26px;
}

.feature-post-list li {
    display: flex;
    align-items: center;
    padding: 18px 0;
    border-top: 0.1px solid transparent;
    border-image: linear-gradient(0.25turn, rgba(0, 22, 53, 0.00), rgba(67, 165, 255, 0.3), rgba(0, 22, 53, 0.00));
    border-image-slice: 1;
    color: #001635;
    font-size: 17px;
    font-weight: 500;
}

.feature-post-list li::after {
    content: '';
    background-image: url(../images/arrow-blue.svg);
    width: 9px;
    height: 15px;
    margin-left: 40px;
    display: inline-block;
    background-size: cover;
    background-repeat: no-repeat;
    vertical-align: middle;
    top: -2px;
    position: relative;
}

#products {
    margin-top: 16px;
}

.product-wrapper {
    padding: 35px 46px;
    border-radius: 10px;
    background-size: cover;
    background-repeat: no-repeat;
}

.product-title {
    color: rgba(0, 22, 53, 0.50);
    font-size: 20px;
    font-weight: 500;
    line-height: 108%;
    margin-bottom: 7px;
}

.product-name {
    width: 200px;
    color: #001635;
    font-size: 32px;
    font-weight: 500;
    line-height: 108%;
}

#about {
    margin: 100px 0;
}

.about__wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.about__title {
    color: #001635;
    font-size: 40px;
    font-weight: 400;
    line-height: 108%;
    letter-spacing: 0.8px;
    margin-left: 24px;
}

.about__title span {
    background: linear-gradient(90deg, rgba(42, 131, 255, 0.3) 1.48%, rgba(42, 131, 255, 0.00) 102.44%);
    padding: 0 8px;
    border-left: 3px solid #2A83FF;
    line-height: 100%;
    position: relative;
    top: 4px;
}

.about__title span a {
    position: relative;
    top: -4px;
}

.about__descr {
    display: flex;
    align-items: flex-start;
}

.about__descr img {
    max-width: 30px;
}

.about__descr p {
    color: rgba(0, 22, 53, 0.70);
    font-size: 24px;
    font-weight: 400;
    margin-top: 10px;
    margin-left: 15px;
    width: 530px;
}

#collections {
    margin-bottom: 100px;
}

.title__wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.title__wrapper span {
    height: 28px;
    width: 1px;
    background: rgba(0, 0, 0, 0.30);
}

.collection-wrapper {
    padding: 22px 22px;
    background: #BDE7FF;
    border-radius: 10px;
    height: 226px;
}

.collection-title {
    color: rgba(0, 22, 53, 0.50);
    font-size: 18px;
    font-weight: 400;
    line-height: 108%;
    margin-bottom: 10px;
}

.collection-name {
    color: #001635;
    font-size: 24px;
    font-weight: 400;
    line-height: 108%;
    letter-spacing: 0.48px;
}

.categories-wrapper {
    padding: 16px 22px;
    background: #1A1A1A;
    border-radius: 10px;
    height: 162px;
}

.categories-name {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 108%;
    letter-spacing: 0.48px;
}

#categories {
    margin-top: 100px;
}

#courses {
    margin-top: 100px;
}

#articles {
    margin-top: 100px;
}

#videos {
    margin-top: 100px;
}

#networking {
    margin-top: 100px;
}

.networking-col {
    padding: 35px 56px;
    border-radius: 10px;
    background-size: cover;
    background-repeat: no-repeat;
}

.networking-subtitle {
    color: rgba(0, 0, 0, 0.50);
    font-size: 20px;
    font-weight: 500;
    line-height: 108%;
    margin-bottom: 8px;
}

.networking-title {
    color: #000;
    font-size: 32px;
    font-weight: 500;
    line-height: 108%;
}

#networking .left-col {
    background-image: url(../images/network-left.png);
}

#networking .right-col {
    background-image: url(../images/network-right.png);
}

#feedback {
    margin-top: 100px;
}

#faq {
    margin-top: 100px;
}

#leadform {
    margin-top: 100px;
}

#related_articles {
    margin-top: 100px;
}

.faq__inner {
    padding: 48px 46px;
    border-radius: 10px;
    background: #1A1A1A;
    display: flex;
    position: relative;
}

.faq__form {
    width: 100%;
    margin-right: 10%;
}

.faq__form h2 {
    color: #FFF;
    font-size: 36px;
    font-weight: 500;
    line-height: 108%;
    margin-left: 0;
    margin-bottom: 24px;
}

.faq__form .faq__descr {
    color: #FFF;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 24px;
}

.faq__form input {
    width: 100%;
}

.input {
    border-radius: 10px;
    border: 1px solid #494949;
    width: 100% !important;
    padding: 16px 20px;
    color: #BDBDBD;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 14px;
}

.faq__form .button {
    width: 100%;
    margin-top: 10px;
    padding: 16px 16px;
}

.leadform__wrapper .button {
    width: 100%;
    margin-top: 10px;
    padding: 16px 16px;
}

.modal-body .wpcf7-response-output {
    color: #001635;
}

.wpcf7-response-output {
    color: white;
    font-size: 14px;
    font-weight: 300;
    margin: 20px 0 0 0 !important;
}

.wpcf7-not-valid-tip {
    display: none;
}

.wpcf7-not-valid {
    border-color: #dc3545;
}

form.invalid .wpcf7-response-output {
    border-color: #dc3545 !important;
}

.wpcf7-spinner {
    display: none;
}

.manager {
    margin-top: 56px;
    display: flex;
    margin-right: 10px;
}

.manager__photo {
    display: flex;
    align-items: flex-end;
}

.manager__photo .photo__main {
    width: 65px;
    border-radius: 50px;
    border: 1px solid #FFF;
}

.manager__photo .photo__icon {
    position: relative;
    left: -23px;
    top: 12px;
}

.manager__info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.manager__name {
    color: #FFF;
    font-size: 22px;
    font-weight: 500;
}

.manager__position {
    color: #CFE3FF;
    font-size: 13px;
    font-weight: 400;
}

.faq__accordeon {
    width: 100%;
}

.faq__accordeon h3 {
    color: #FFF;
    font-size: 24px;
    font-weight: 400;
    line-height: 108%;
    width: 280px;
    margin-bottom: 20px;
}

.faq__accordeon .accordion {
    --bs-accordion-bg: transparent;
}

.faq__accordeon .accordion-item {
    background-color: transparent;
    border-top: 0.2px solid transparent;
    border-image: linear-gradient(0.25turn, rgba(255, 255, 255, 0.00), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.00));
    border-image-slice: 1;
}

.faq__accordeon .accordion-item h2 {
    margin-left: 0;
}

.faq__accordeon .accordion-button {
    color: #FFF;
    font-size: 17px;
    font-weight: 500;
    padding: 20px 0;
}

.faq__accordeon .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: #FFF;
    box-shadow: none;
}

.faq__accordeon .accordion-button:focus {
    box-shadow: none;
}

.faq__accordeon .accordion-body {
    padding: 0 0 30px 0;
    color: #FFF;
    font-size: 14px;
    font-weight: 300;
}

.faq__accordeon .accordion-button::after {
    background-image: url(../images/plus-icon.svg);
}

.faq__accordeon .accordion-button:not(.collapsed)::after {
    background-image: url(../images/plus-icon.svg);
}

.courses__slider-wrapper {
    display: flex;
    position: relative;
}

.courses__slider {
    width: 100%;
}

.course__item {
    background: #F5F6FA;
    border-radius: 10px;
}

.course__item a {
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-height: 248px;
}

.course-info {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 24px;
    justify-content: space-between;
}

.course-info-left {
    display: flex;
    flex-direction: column;
}

.course-title p {
    color: #001635;
    font-size: 12px;
    font-weight: 400;
}

.course-name {
    color: #001635;
    font-size: 20px;
    font-weight: 600;
    margin-top: 6px;
    margin-bottom: 20px;
}

.course-descr {
    color: rgba(0, 22, 53, 0.60);
    font-size: 12px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.course-mentor {
    border-radius: 10px;
    width: 100px;
    height: 100px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url('../images/askar-mentor.jpg');
}

.course-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: auto;
}

.course-price {
    font-size: 24px;
    font-weight: 600;
}

.course-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.course-tag-item {
    border-radius: 5px;
    background: #FFF;
    padding: 4px 7px;
    color: #001635;
    font-size: 8px;
    font-weight: 500;
    text-transform: uppercase;
}


.articles__slider-wrapper {
    display: flex;
    position: relative;
}

.articles__slider {
    width: 100%;
}

.article__item {
    width: 380px;
    background: #F5F6FA;
    border-radius: 10px;
    margin-right: 16px;
}

.postlist .article__item,
.similar_records .article__item {
    width: auto;
    margin-right: 0px;
}

.article__item .article_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 274px;
    border-radius: 10px;
    overflow: hidden;
}

.article-info {
    padding: 20px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    flex-direction: column;
}

.article-name {
    color: #001635;
    font-size: 18px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.article-readtime {
    color: rgba(0, 0, 0, 0.50);
    font-size: 12px;
    font-weight: 500;
}

.article-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}




.feedback__slider-wrapper {
    display: flex;
    position: relative;
}

.feedback__slider {
    width: 100%;
}

.feedback__item {
    width: 380px;
    background: #F5F6FA;
    border-radius: 10px;
    margin-right: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    min-height: 340px !important;
}


.feedback-autor {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 32px;
}

.feedback-autor-right {
    display: flex;
    flex-direction: column;
}

.feedback-name {
    color: #001635;
    font-size: 24px;
    font-weight: 500;
    line-height: 108%;
    margin-bottom: 8px;
}

.feedback-potok {
    color: rgba(0, 22, 53, 0.50);
    font-size: 14px;
    font-weight: 500;
    line-height: 120%;
}

.feedback-text {
    color: #001635;
    font-size: 14px;
    font-weight: 400;
    line-height: 135%;
    margin-bottom: 16px;
}

.feedback-photo {
    border-radius: 10px;
    width: 68px;
    height: 68px;
    background-size: cover;
    background-repeat: no-repeat;
}

.feedback-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feedback-video {}

.next,
.article_next,
.feedback_next {
    cursor: pointer;
    position: absolute;
    display: block;
    z-index: 999;
    width: 30px;
    height: 30px;
    right: 8px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url('../images/arrownext.svg');
}

#articles .slick-list,
#feedback .slick-list,
#courses .slick-list {
    overflow: visible !important;
}

#articles .slick-slide:not(.slick-active),
#feedback .slick-slide:not(.slick-active),
#courses .slick-slide:not(.slick-active) {
    opacity: 0.4;
}

#articles .slick-cloned,
#feedback .slick-cloned,
#courses .slick-cloned {
    display: none !important;
}


/* Comunity Page */

#breadcrumbs {
    margin-top: 30px;
    margin-bottom: 32px;
}

.kama_breadcrumbs {
    color: #001635;
    font-size: 13px;
    font-weight: 300;
}

.kama_breadcrumbs span:first-child {
    font-weight: 500;
}

.hero__wrapper {
    border-radius: 10px;
    background: #1A1A1A;
    position: relative;
    display: flex;
    justify-content: flex-end;
    overflow: hidden;
}

#hero {
    margin-bottom: 60px;
}

.hero__content {
    z-index: 1;
    padding: 46px 42px;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
    margin-right: -324px;
}

.hero__content .top-title {
    color: rgba(255, 255, 255, 0.50);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.hero__content h1 {
    color: #FFF;
    margin: 46px 0;
    width: 680px;
}

.hero__content p {
    color: rgba(255, 255, 255, 0.50);
    font-size: 24px;
    font-weight: 400;
    line-height: 108%;
}

.hero__background {
    position: relative;
    display: inline-block;
    height: auto;
    width: 920px;
    background-size: cover;
    background-position: center;
}

.hero__background:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    background: linear-gradient(81deg, #1A1A1A 15.34%, rgba(0, 0, 0, 0.00) 112.79%);
}

.hero-tags {
    display: flex;
    gap: 10px;
    margin-top: 76px;
}

.hero-tag-item {
    border-radius: 10px;
    background: #FFF;
    padding: 8px 12px;
    color: #1A1A1A;
    font-size: 14px;
    font-weight: 400;
}

.meetup__wrapper {
    border-radius: 10px;
    background: #F5F6FA;
    min-height: 280px;
    padding: 24px 20px 24px 24px;
    display: flex;
    gap: 28px;
}

.meetup-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
}

.meetup-date {
    color: #001635;
    font-size: 14px;
    font-weight: 400;
}

.meetup-title {
    color: #001635;
    font-size: 24px;
    font-weight: 600;
    margin-top: 8px;
    margin-bottom: 12px;
}

.meetup-descr {
    overflow: hidden;
    color: rgba(0, 22, 53, 0.60);
    font-size: 14px;
    font-weight: 400;
    width: 240px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.meetup-tags {
    display: flex;
    gap: 6px;
}

.meetup-tags div {
    color: #001635;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 5px;
    background: #FFF;
}

.meetup-right {
    width: 100%;
}

.meetup-image {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#meetups {
    margin-bottom: 100px;
}


/* b2b Page */

#b2bdescr {
    margin-top: 100px;
}

.descr__wrapper {
    display: flex;
    padding-left: 24px;
}

.descr__left .about__title span {
    left: -11px;
}

.descr__left .about__title {
    margin-left: 0px;
    margin-bottom: 48px;
}

.descr__content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    list-style-position: outside;
}

.descr__content h3 {
    color: #001635;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.descr__content li {
    color: rgba(0, 22, 53, 0.70);
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
}

#partners {
    margin-bottom: 100px;
}

ul.logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

ul.logos img {
    filter: grayscale(100%);
    transition: all 0.2s ease-out;
}

ul.logos img:hover {
    filter: grayscale(0%);
}

#format {
    margin-top: 100px;
}

#format .title__wrapper h2 {
    margin-left: 0;
}

.format__item {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 48px;
}

.format__icon {
    max-width: 72px;
}

.format__descr p {
    color: rgba(0, 22, 53, 0.70);
    font-size: 22px;
    font-weight: 400;
    width: 90%;
}


.leadform__wrapper {
    border-radius: 10px;
    background: #1A1A1A;
    position: relative;
    display: flex;
    justify-content: flex-end;
    overflow: hidden;
}

.leadform__content {
    z-index: 1;
    margin: 46px 60px;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
    width: 446px;
    margin-right: -66px;
}

.leadform__background {
    position: relative;
    display: inline-block;
    height: auto;
    width: 920px;
    background-size: cover;
    background-position: center;
}

.leadform__background:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    background: linear-gradient(81deg, #1A1A1A 15.34%, rgba(0, 0, 0, 0.00) 112.79%);
}

.leadform__content h2 {
    color: #FFF;
    font-size: 36px;
    font-weight: 500;
    line-height: 108%;
    margin-left: 0;
    margin-bottom: 20px;
}

.leadform__content .p {
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 34px;
}

.program__wrapper {
    padding: 28px 32px;
    height: 360px;
    background-size: cover;
    border-radius: 10px;
}

.program-btn{
    background-color: white;
    color: #17171b;
    align-self: flex-end;
}

.program-title {
    color: #FFF;
    font-size: 32px;
    font-weight: 500;
    line-height: 108%;
}

#about .col-md-6:nth-last-child(-n + 2) .program__wrapper {
    height: 200px;
}

.custom-tags {
    font-size: 16px;
    font-weight: 300;
    color: #959595;
}

.custom-tags>* {
    margin-bottom: 6px;
}

.post_tag_layout li:before {
    content: '#';
}

.more-tags a {
    text-decoration: none;
    color: #959595;
    transition: all .3s;
}

.more-tags a:hover {
    color: #2A83FF;
}

.postfilter ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}

.postfilter ul a {
    padding: 8px 12px;
    border: 1px solid rgba(0, 22, 53, 0.20);
    border-radius: 10px;
}

.postfilter ul a.active {
    background: #3155FF;
    border: 1px solid #3155FF;
    color: #fff;
}

.searchrow {
    margin-bottom: 20px;
}

.result-text {
    margin-top: 12px;
}

.search-form__input {
    padding: 8px 12px 8px 40px;
    border-radius: 10px;
    width: 100%;
    background: #F8F8F8 url(../images/searchicon.svg) no-repeat 12px center;
}

.media_header {
    color: #000;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.1;
}

.courses_header {
    color: #000;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 30px;
}

.search_subheader {
    font-size: 20px;
    font-weight: 600;
}

.youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.search_header {
    color: #000;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.1;
}

.postlist {
    position: relative;
}

.loader {
    background: rgba(255, 255, 255, 0.60);
    position: absolute;
    height: 100%;
    width: 100%;
    display: none;
}

.loader svg {
    position: absolute;
    left: 0;
    right: 0;
    width: 80px;
    margin: auto;
    top: 40px;
}

.filter-header {
    color: #001635;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    gap: 6px;
}

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

.filter-group-header {
    color: #001635;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.5;
    margin-bottom: 6px;
}

.filter-list-item input {
    margin-right: 8px;
    width: 14px;
    height: 14px;
    accent-color: #2A83FF;
}

.filter-list-item {
    color: #001635;
    font-size: 15px;
    font-weight: 400;
}

.loadmore {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.banner{
    padding: 34px 40px;
}

.sidebar-banner .banner{
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.sidebar-banner .banner h1{
    font-size: 22px;
    margin-bottom: 10px;
}

.sidebar-banner .banner p{
    font-size: 16px;
    margin-bottom: 20px;
}

.artcile__sidebar a{
    text-decoration: none !important;
}

.artcile__sidebar .button{
    border-radius: 0;
    margin-top: 20px;
}



@media (min-width: 1200px) {
    ::-webkit-scrollbar {
        width: 10px;
        height: 0;
        background: #fff;
    }

    ::-webkit-scrollbar-thumb {
        background: #2A83FF;
        background-clip: padding-box;
        border: 2px solid transparent;
        border-radius: 10px;
    }

    ::-webkit-scrollbar-thumb:hover {
        border-width: 1px;
    }
}

@media screen and (max-width: 1399px) {
    .article__item {
        width: 364px;
    }

    .feedback__item {
        width: 364px;
    }
}

@media screen and (max-width: 1199px) {
    body.open-menu {
        height: 100vh;
        min-height: 100vh;
        overflow: hidden;
    }

    header.header__container.open {
        border-bottom-left-radius: 32px;
        border-bottom-right-radius: 32px;
    }

    .menu__wrapper.menu__wrapper_active {
        padding: 46px 10px;
    }

    .main-block-item {
        min-height: 390px;
    }

    h1 {
        font-size: 38px;
    }

    .button {
        font-size: 14px;
    }

    .main-block-item p {
        font-size: 14px;
    }

    .main-block-item h1 {
        margin: 30px 0 50px 0;
        width: 400px;
    }

    .feature-post-wrapper {
        padding: 30px 25px;
    }

    .feature-post-wrapper h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .feature-post-list li {
        padding: 14px 0;
        font-size: 14px;
    }

    .product-wrapper {
        padding: 28px 40px;
    }

    .product-title {
        font-size: 16px;
    }

    .product-name {
        font-size: 24px;
    }

    .about__title {
        font-size: 32px;
        margin-left: 12px;
    }

    .about__descr p {
        font-size: 18px;
        width: 420px;
        margin-top: 6px;
        margin-left: 10px;
    }

    .about__descr img {
        max-width: 24px;
    }

    .article__item {
        width: 304px;
    }

    .feedback__item {
        width: 304px;
    }

    .networking-subtitle {
        font-size: 16px;
    }

    .networking-title {
        font-size: 24px;
    }

    .networking-col {
        padding: 28px 40px;
    }

    .content-right {
        display: none;
    }

    .filter-header {
        margin-bottom: 0;
        cursor: pointer;
    }

    .filter-form {
        padding: 12px 0;
        flex-direction: row;
        justify-content: space-between;
    }

    .courses_header {
        margin-bottom: 16px;
    }

    .mt-s-4 {
        margin-top: 20px;
    }

    .hero__content {
        margin-right: -400px
    }

    .hero__content p {
        font-size: 18px;
    }

    .hero__content h1 {
        margin: 30px 0;
    }

    .hero-tags {
        margin-top: 60px;
    }

    .descr__left .about__title {
        margin-bottom: 32px;
    }

    .descr__content {
        gap: 24px;
    }

    .descr__content h3 {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .descr__content li {
        font-size: 16px;
    }

    .hero__content .top-title {
        font-size: 14px;
    }

    .meetup-descr{
        width: 200px;
    }
}


@media (max-width: 992px) {

    .mt-s-2 {
        margin-top: 10px;
    }

    .mt-s-4 {
        margin-top: 20px;
    }

    .mt-s-6 {
        margin-top: 40px;
    }

    blockquote {
        margin: 30px 0;
        padding: 20px 30px;
    }

    article h2 {
        font-size: 26px;
        margin-bottom: 30px;
        margin-top: 60px;
    }

    article p {
        font-size: 18px;
    }

    .article-paragraph {
        margin-bottom: 20px;
    }

    .anchor_item {
        font-size: 18px;
    }

    article .accordion-header button {
        font-size: 20px;
        font-weight: 600;
    }

    .hero__content h1 {
        width: 470px;
        margin: 24px 0;
    }



    .hero__content p {
        font-size: 14px;
    }

    .content-accordion {
        margin-bottom: 40px;
    }

    .feature-post-wrapper {
        padding: 40px 46px;
    }

    .product-wrapper {
        padding: 30px 40px;
    }

    .product-title {
        font-size: 16px;
    }

    .product-name {
        width: 180px;
        font-size: 28px;
    }

    .faq__inner {
        flex-direction: column;
        gap: 60px;
    }

    .faq__form {
        width: 100%;
    }

    .header__spaceshift {
        height: 62px;
    }

    header.header__container {
        position: fixed;
    }

    header.header__container.open {
        height: fit-content;
        max-height: 100%;
    }

    .header__wrapper {
        justify-content: space-between;
        position: sticky;
        top: 0;
        z-index: 99;
    }

    nav.header__items-container {
        display: none;
    }

    .menu__wrapper {
        max-width: 640px;
    }

    .menu__wrapper.menu__wrapper_active {
        padding: 40px 10px;
        max-height: fit-content;
    }

    .menu-left {
        max-width: 100%;
        height: max-content;
    }

    ul.menu-left__course-direction-list {
        row-gap: 40px;
    }

    li.menu-left__course-direction-item {
        color: var(--color-text);
        font-size: 24px;
    }

    li.menu-left__course-direction-item:after {
        content: '';
        display: block;
        position: relative;
        top: 20px;
        width: 100%;
        height: 1px;
        background: var(--color-border);
    }

    .menu-left__course-direction-link.tablet {
        display: flex;
        width: 100%;
        justify-content: space-between;
    }

    .menu-left__course-direction-link.tablet:after {
        content: '';
        display: block;
        background-image: url(https://static.tildacdn.com/tild3936-6532-4937-b937-313863343630/Arrow_Caret_Down_MD.svg);
        width: 24px;
        height: 24px;
        margin-right: 7px;
        transition: .4s ease;
    }

    .menu-left__course-direction-link.tablet.courses-list_show:after {
        transform: rotateX(-180deg);
    }

    .menu-left__bottom-info {
        display: flex;
        row-gap: 40px;
        flex-direction: column;
    }

    ul.menu-left__bottom-info-list {
        flex-direction: column;
        row-gap: 8px;
    }

    .menu-left__bottom-info a.header__members-btn {
        display: block;
    }

    li.menu-left__bottom-info-link.b2b {
        display: block;
    }

    li.menu-left__bottom-info-link.feedback-students {
        display: none;
    }

    .menu-right {
        display: none;
    }

    nav.menu-right__courses {
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    #allrecords nav.menu-right__courses ul:last-child {
        margin-bottom: 16px;
    }

    .menu-right__heading {
        width: fit-content;
        margin-bottom: 16px;
        text-transform: none;
        margin-top: 24px;
        font-size: 18px;
        line-height: 30px;
        color: var(--color-text);
    }

    ul.menu-right__courses-list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        column-gap: 2%;
        width: 100%;
    }

    li.menu-right__courses-link {
        font-weight: 400;
        text-transform: none;
        width: 100%;
    }

    .menwrapper {
        padding: 10px 0;
    }

    .header__buttons {
        gap: 14px;
        display: flex;
        align-items: center;
    }

    .header__topbar {
        display: none;
    }

    #about {
        margin: 70px 0;
    }

    .about__wrapper {
        flex-direction: column;
        gap: 24px;
    }

    .about__descr p {
        width: 100%;
    }

    .about__descr {
        margin-left: 12px;
    }

    .program-title {
        font-size: 28px;
    }

    .program__wrapper {
        height: 280px;
    }

    #about .col-md-6:nth-last-child(-n + 2) .program__wrapper {
        height: 160px;
    }

    .article__item {
        width: 344px;
    }

    .feedback__item {
        width: 344px;
    }

    .content ol li {
        font-size: 16px;
    }

    h2 {
        font-size: 26px;
        margin-left: 12px
    }

    .button-arrow {
        font-size: 14px;
    }

    .title__wrapper {
        margin-bottom: 0;
    }

    #articles {
        margin-top: 70px;
    }

    #b2bdescr {
        margin-top: 70px;
    }

    #feedback {
        margin-top: 70px;
    }

    #networking {
        margin-top: 70px;
    }

    #faq {
        margin-top: 70px;
    }

    #leadform {
        margin-top: 70px;
    }

    #related_articles {
        margin-top: 70px;
    }

    #format {
        margin-top: 70px;
    }

    .networking-col {
        padding: 30px 40px;
    }

    .faq__inner {
        padding: 30px 40px;
    }

    /* Footer */

    footer {
        margin-top: 70px;
    }

    .footer__container {
        flex-wrap: wrap;
    }

    .f-desc {
        width: 100%;
    }

    .copyright__links ul {
        flex-direction: column;
        gap: 4px;
    }

    .search_header {
        font-size: 24px;
    }

    .result-text p {
        font-size: 14px;
    }

    .search_subheader {
        font-size: 16px;
    }

    #breadcrumbs {
        margin-top: 20px;
        margin-bottom: 22px;
    }

    .format__item {
        gap: 30px;
        margin-bottom: 32px;
    }

    .format__descr p {
        font-size: 18px;
    }

    .format__icon {
        max-width: 60px;
    }

    .leadform__wrapper {
        flex-direction: column;
    }

    .leadform__content {
        width: auto;
        margin: 30px 40px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }

    .hero__content {
        padding: 40px 34px;
    }

    .hero__content h1 {
        font-size: 32px;
    }

    .leadform__content h2 {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .leadform__content .p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .main-block-item {
        padding: 40px 34px;
        min-height: 320px;
    }

    .main-block-item h1 {
        margin: 24px 0 42px 0;
        width: 340px;
    }

    .feature-post-wrapper {
        padding: 30px 34px;
    }

    .feature-post-wrapper h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .feature-post-list li {
        padding: 14px 0;
        font-size: 14px;
    }

    .program__wrapper {
        height: 160px;
        flex-direction: row;
    }

    .article__item {
        width: 254px;
    }

    .article__item a {
        min-height: 252px;
    }

    .article-info {
        padding: 16px;
        gap: 8px;
    }

    .article-image img {
        height: 140px;
    }

    .feedback__item {
        width: 254px;
        min-height: 326px !important;
    }

    .feedback-autor {
        gap: 16px;
        margin-bottom: 20px;
    }

    .feedback-name {
        font-size: 16px;
    }

    .feedback-potok {
        font-size: 12px;
    }

    .feedback-text {
        font-size: 12px;
    }

    .faq__form h2 {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .faq__form .faq__descr {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .footer__column:last-child {
        margin-right: 0px;
    }

    .footer__copyright {
        flex-direction: column;
        gap: 12px;
    }

    .filter-form {
        flex-wrap: wrap;
        gap: 20px 0;
    }

    .filter-group {
        width: 50%;
    }

    .descr__content h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .descr__content li {
        font-size: 14px;
    }

    .descr__left .about__title {
        margin-bottom: 24px;
    }
}

@media (max-width: 576px) {
    .container {
        padding-right: var(--bs-gutter-x);
        padding-left: var(--bs-gutter-x);
        overflow-x: hidden;
    }

    .main-block-item p {
        font-size: 12px;
    }

    .leadform__content{
        margin: 24px 30px;
    }

    h1 {
        font-size: 28px;
    }

    .main-block-item h1 {
        margin: 30px 0 40px 0;
        width: 300px;
    }

    .button {
        padding: 12px 16px;
    }

    .main-block-item {
        background-image: var(--mobile-background) !important;
        padding: 40px 24px;
        min-height: 300px;
    }

    .feature-post-wrapper {
        padding: 30px 24px;
    }

    .feature-post-wrapper h3 {
        font-size: 16px;
    }

    #products {
        margin-top: 12px;
    }

    .product-wrapper {
        padding: 16px 24px;
    }

    .product-title {
        font-size: 12px;
    }

    .product-name {
        width: 120px;
        font-size: 20px;
    }

    .g-2,
    .gy-2 {
        --bs-gutter-y: 12px;
    }

    .g-2,
    .gx-2 {
        --bs-gutter-x: 12px;
    }

    .mt-s-6 {
        margin-top: 30px;
    }

    header.header__container.open {
        border-bottom-left-radius: 24px;
        border-bottom-right-radius: 24px;
    }

    .about__title {
        font-size: 20px;
        margin-left: 6px;
    }

    .about__descr {
        margin-left: 6px;
    }

    .about__descr img {
        max-width: 20px;
    }

    .about__descr p {
        font-size: 14px;
        margin-top: 4px;
        margin-left: 8px;
    }

    .program-title {
        font-size: 20px;
    }

    .program__wrapper {
        height: 80px !important;
    }

    .program-btn{
        align-self: auto;
    }

    #about {
        margin: 60px 0;
    }

    #b2bdescr {
        margin-top: 60px;
    }

    #articles {
        margin-top: 60px;
    }

    #feedback {
        margin-top: 60px;
    }

    #networking {
        margin-top: 60px;
    }

    #faq {
        margin-top: 60px;
    }

    #leadform {
        margin-top: 60px;
    }

    #related_articles {
        margin-top: 60px;
    }

    #format {
        margin-top: 60px;
    }

    footer {
        margin-top: 60px;
    }

    .article__item {
        width: 324px;
    }

    h2 {
        font-size: 20px;
        margin-left: 6px
    }

    .button-arrow {
        font-size: 12px;
        text-wrap: balance;
    }

    .title__wrapper span {
        height: 20px;
    }

    .feedback__item {
        width: 324px;
    }

    .networking-subtitle {
        font-size: 12px;
    }

    .networking-title {
        font-size: 20px;
    }

    .networking-col {
        padding: 16px 24px;
    }

    .faq__inner {
        padding: 24px 30px;
        gap: 48px;
    }

    .manager {
        margin-top: 24px;
    }

    .manager__name {
        font-size: 20px;
    }

    .faq__accordeon h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .accordion-button {
        font-size: 14px;
        padding: 12px 0;
    }

    .footer__desc,
    .copyright,
    .copyright__links {
        font-size: 12px;
    }

    .footer__column {
        display: none;
    }

    .f-desc {
        display: flex !important;
    }

    .footer__container {
        margin-bottom: 30px;
    }

    .filter-header {
        font-size: 16px;
    }

    .filter-form {
        gap: 0;
        padding: 0;
        margin-bottom: 10px;
    }

    .filter-group {
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid #F5F6FA;
    }

    .filter-list {
        display: flex;
    }

    .filter-list-item {
        width: 50%;
        font-size: 13px;
    }

    .filter-list-item input {
        width: 12px;
        height: 12px;
        margin-right: 6px;
    }

    .course__item a {
        min-height: 200px;
    }

    .course-name {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .course-title p {
        font-size: 10px;
    }

    .course-mentor {
        width: 90px;
        height: 90px;
    }

    .course-bottom {
        gap: 14px;
    }

    .course-price {
        font-size: 22px;
    }

    .post_tag_layout {
        flex-wrap: wrap;
    }

    .custom-tags {
        font-size: 12px;
    }

    article p {
        font-size: 16px;
    }

    .article-paragraph {
        margin-bottom: 10px;
    }

    article .accordion-header button {
        font-size: 16px;
        padding: 12px 0;
    }

    .content-accordion {
        margin-bottom: 30px;
    }


    .content ol li:last-child {
        margin-bottom: 4px;
    }

    article h2 {
        font-size: 22px;
        margin-bottom: 24px;
        margin-top: 40px;
    }

    .hero__wrapper {
        flex-direction: column;
    }

    .hero__content {
        padding: 40px 24px;
        margin-right: 0;
    }

    .hero__background {
        height: 200px;
        width: auto;
    }

    .hero__background:after {
        background: linear-gradient(180deg, #1A1A1A -1.66%, rgba(0, 0, 0, 0.00) 52.79%);
    }

    .hero__content h1 {
        font-size: 24px;
        width: auto;
    }

    .hero-tags {
        margin-top: 40px;
    }

    .hero-tag-item {
        border-radius: 6px;
        padding: 4px 8px;
        font-size: 12px;
    }

    .hero__content p {
        font-size: 12px;
    }

    .hero__content .top-title {
        font-size: 12px;
    }

    .format__item {
        gap: 20px;
        margin-bottom: 24px;
    }

    .format__descr p {
        font-size: 16px;
    }

    .format__icon {
        max-width: 40px;
    }

    .meetup__wrapper{
        flex-direction: column;
    }

    .meetup-descr {
        width: 100%;
    }

    .meetup-right{
        height: 200px;
    }

    .meetup-tags{
        margin-top: 20px;
    }
}

@media (max-width: 440px) {
    .header__buttons .button {
        padding: 10px 12px;
        font-size: 12px;
    }
}

@media (max-width: 370px) {
    .header__buttons .button {
        display: none;
    }
}