@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --green-color: #A4D65E;
    --black-color: #13294B;
    --white-color: #ffffff;
    --blue-color: #407EC9;
    --gray-color: #EAEAEA;
}

.homepage-redesign {
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.homepage-redesign * {
    margin: 0;
}

.btn {
    position: relative;
    border-radius: 15px;
    text-align: center;
    text-transform: uppercase;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 37px;
    overflow: hidden;
}

.btn span {
    font-size: 20px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    color: var(--black-color);
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #4388b5;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
    z-index: 0;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn:hover::before {
    transform: scaleX(1);
}

.btn:hover span {
    color: var(--white-color);
}

.btn-green {
    background-color: var(--green-color);
    border: 1px solid var(--white-color);
}

.navigation__mobile-menu {
    display: none;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger-box {
    width: 40px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: var(--white-color);
    border-radius: 4px;
    position: absolute;
    transition: all 0.5s ease-in-out;
}

.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

.hamburger--stand-r .hamburger-inner {
    transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}

.hamburger--stand-r .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r.is-active .hamburger-inner {
    transform: rotate(-90deg);
    background-color: transparent;
    transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}

.hamburger--stand-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.homepage-redesign ol,
.homepage-redesign ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.homepage-redesign a {
    text-decoration: none;
}

#logos { scroll-margin-top: 500px; }

.wrapper {
    max-width: 1296px;
    margin: auto;
    padding: 0 15px;
    width: 100%;
}

.navigation {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 999;
}
.logged-in .navigation{
    top: 32px;
}

.navigation .wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);
    background: linear-gradient(90.00deg, rgba(19, 41, 75, 1), rgba(55.94628143310547, 88.39132690429688, 138.5336456298828, 1) 50%, rgba(19, 41, 75, 1) 100%);
    padding: 14px 20px;
    gap: 40px;
}

.navigation__left, .navigation__right {
    display: flex;
    gap: 30px;
}

.banner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    padding: 70px 58px 65px;
    min-height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
}

.navigation a {
    color: var(--white-color);
    font-size: 18px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0;
}

.navigation a:hover {
    color: var(--white-color) !important;
}

.navigation:hover .navigation-block {
    bottom: -60px;
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease-in-out;
}

.navigation-block {
    position: absolute;
    background-color: #3f43d3;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 20px 40px;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    transition: all 0.5s ease-in-out;
    z-index: -1;
}

.navigation-block .navigation-block__list {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.banner__title {
    display: flex;
    align-items: center;
    color: var(--green-color);
    font-size: clamp(100px, 12vw, 200px);
    font-weight: 900;
    letter-spacing: 0;
    gap: 5px;
    margin-bottom: 5px;
}

.banner__title span {
    display: flex;
    color: var(--white-color);
    font-size: clamp(42px, 7.7vw, 100px);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 80%;
    max-width: 200px;
}

.banner__sub-title {
    color: var(--white-color);
    font-size: clamp(32px, 5.4vw, 70px);
    font-weight: 500;
    line-height: clamp(52px, 5.4vw, 82px);
    letter-spacing: 0;
    margin-bottom: 25px;
}

.banner__text {
    color: var(--white-color);
    font-size: clamp(20px, 3.08vw, 26px);
    font-weight: 500;
    line-height: 31px;
    letter-spacing: 0;
    max-width: 670px;
    margin-bottom: 37px;
}

.banner__gallery-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.banner__gallery {
    margin-top: 90px;
}

.plan-action {
    padding: 40px 0;
    background: linear-gradient(90.00deg, rgba(19, 41, 75, 1), rgba(51.231048583984375, 82.15711212158203, 129.95191955566406, 1) 50%, rgba(19, 41, 75, 1) 100%);
    color: var(--white-color);
}

.plan-action .wrapper {
    display: flex;
    align-items: center;
    gap: 48px;
}

.plan-action__left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 0 0 416px;
}

.plan-action__right {
    flex: 1 1 auto;
    box-shadow: inset 0 0 20px 0 rgba(0, 0, 0, 0.25);
    aspect-ratio: 832 / 365;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.plan-action__right img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.plan-action__btn {
    max-width: 300px;
}

.plan-action__text {
    font-size: 18px;
    line-height: 21px;
    letter-spacing: 0;
}

.plan-action__title {
    font-size: clamp(32px, 5.63vw, 60px);
    font-weight: 900;
    line-height: 85%;
    letter-spacing: 0;
}

.plan-action__title span {
    display: block;
    font-size: clamp(24px, 3.08vw, 40px);
    font-weight: 400;
}

.make-press-releases {
    padding: 90px 24px;
}

.make-press-releases .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    color: var(--black-color);
    letter-spacing: 0;
}

.make-press-releases__title {
    font-size: clamp(24px, 3.08vw, 40px);
    font-weight: 500;
    line-height: clamp(24px, 3.08vw, 47px);
}

.make-press-releases__sub-title {
    font-size: clamp(24px, 3.08vw, 40px);
    line-height: clamp(30px, 3.08vw, 47px);
    font-weight: 900;
}

.make-press-releases__sub-text {
    font-size: 18px;
    line-height: 21px;
}

.make-press-releases__icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

.why_ereleases{
    padding: 40px 0;
    background: linear-gradient(90.00deg, rgba(19, 41, 75, 1), rgba(51.231048583984375, 82.15711212158203, 129.95191955566406, 1) 50%, rgba(19, 41, 75, 1) 100%);
    color: var(--white-color);
}

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

.why_ereleases__title {
    font-size: clamp(24px, 3.08vw, 40px);
    font-weight: 500;
    line-height: clamp(24px, 3.08vw, 47px);
}

.why_ereleases__content ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: disc;
    padding: 0 15px;
}

.why_ereleases__content ul li{
    font-size: 18px;
    text-align: justify;
}

.why_ereleases__content ul li::marker{
    color: var(--green-color);
}

.resource{
    padding: 40px 0;
}

.resource .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.resource ul{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
    row-gap: 15px;
    padding: 0 15px;
    list-style: disc;
}

.resource ul li {
    font-size: 18px;
    text-align: justify;
    color: var(--black-color);
}

.resource ul li::marker{
    color: var(--black-color);
}

.resource ul li a{
    color: var(--black-color);
    text-decoration: underline;
}

.resource__title{
    font-size: clamp(24px, 3.08vw, 40px);
    font-weight: 500;
    line-height: clamp(24px, 3.08vw, 47px);
}

.icons__icon {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.icons__description {
    max-width: 210px;
}

.make-press-releases__btn {
    margin-top: 15px;
}

.erl-new-footer {
    padding: 50px 0 19px;
    background-color: rgba(19, 41, 75, 1);
}

.erl-new-footer a,
.erl-new-footer li {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0;
    text-align: left;
}

.footer__title {
    color: var(--green-color);
    font-size: 18px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
}

.erl-new-footer a:hover {
    color: var(--white-color) !important;
}

.footer__social {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 110px;
}

.footer__social a:first-child {
    grid-column-start: 1;
    grid-column-end: 3;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 49px;
    margin-bottom: 21px;
    border-bottom: 1px solid #D9D9D9;
}

.erl-new-footer__bottom p {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
    text-align: center;
}

.erl-new-footer__bottom p a {
    color: var(--green-color);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    text-decoration-color: var(--green-color);
}

.erl-new-footer__bottom p a:hover {
    color: var(--green-color) !important;
}

.erl-new-footer__bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__navigation {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer__column {
    display: flex;
    flex-direction: column;
    width: calc(20% - 30px);
    gap: 15px;
}

.footer__title-hidden {
    opacity: 0;
    visibility: hidden;
}

.attention {
    padding: 94px 0 0;
}

.attention__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.attention__media {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 16px;
    overflow: hidden;
    min-width:0;
    min-height:0;
}

.attention__media > *{ min-width:0; min-height:0; }

.attention__block {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.attention__block--first {
    grid-column: 1 / 4;
    grid-row: 1 / 5;
}

.attention__block--second {
    grid-column: 4 / 6;
    grid-row: 1 / 3;
    background-color: var(--green-color);
    border-radius: 16px;
    width: 100%;
    max-width: 170px;
}

.attention__block--third {
    grid-column: 1 / 4;
    grid-row: 5 / 7;
}

.attention__block--forth {
    grid-column: 4 / 7;
    grid-row: 3 / 7;
}

.attention__title {
    font-size: clamp(24px, 2.7vw, 35px); /* (35 / 1296) * 100 = 2.76vw */
    font-weight: 500;
    line-height: clamp(115%, 2.7vw, 130%);
    color: var(--black-color);
    transform:translateX(-135px);
    margin-bottom: 50px;
    margin-top: 15px;
    will-change: transform;
}

.attention__title span {
    font-weight: 900;
    font-size: clamp(28px, 3.62vw, 47px);
    letter-spacing: 1.8px;
    color: var(--green-color);
}

.attention__content .accent {
    color: #A4D65E;
    font-weight: 800;
}

.attention__content p {
    font-size: clamp(18px, 3.1vw, 20px);
    line-height: 130%;
}

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

.stand {
    padding: 45px 0 45px;
}

.stand__block {
    display: flex;
    gap: 15px;
}

.stand__block-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 0 0 480px;
}

.stand__title {
    margin-bottom: 20px;
    max-width: 1230px;
    border-top: 1px solid var(--green-color);
    padding-top: 35px;
}

.stand__block-link {
    align-self: flex-start;
}

.stand__block-right {
    display: flex;
    gap: 17px;
    flex: 1 1 auto;
    margin-top: -50px;
}

.stand__block-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.stand__block-picture {
    aspect-ratio: 682 / 351;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    flex: 1 1 auto;
}

.stand__title p {
    font-size: clamp(24px, 3.01vw, 40px);
    font-weight: 500;
    line-height: clamp(120%, 3.01vw, 140%);
    color: var(--black-color);
}

.stand__title p span {
    font-weight: 900;
    font-size: clamp(28px, 4.62vw, 60px);
    line-height: clamp(40px, 4.62vw, 70px);
}

.stand__block-div {
    width: 145px;
    height: 167px;
    border-radius: 16px;
    background-color: var(--black-color);
    align-self: flex-end;
}

.meet {
    padding: 45px 15px 39px;
    color: var(--white-color);
}

.meet .wrapper {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 35px 25px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    border-radius: 36px;
}

.meet__subtitle {
    font-weight: 500;
    line-height: 100%;
    font-size: clamp(24px, 3.08vw, 40px);
}

.meet p {
    max-width: 895px;
    margin: auto;
    font-size: 18px;
    line-height: 130%;
}

.meet__title {
    font-size: clamp(32px, 4.62vw, 60px);
    font-weight: 900;
    line-height: clamp(100%, 4.62vw, 130%);
    letter-spacing: 0;
    color: var(--green-color);
}

.numbers {
    padding-bottom: 32px;
}

.numbers__item {
    font-size: clamp(32px, 5.17vw, 80px);
    font-weight: 700;
    line-height: clamp(100%, 6.17vw, 130%);
    letter-spacing: 0.02em;
    color: var(--green-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.numbers__item span {
    font-size: 22px;
    color: var(--black-color);
    line-height: 110%;
    letter-spacing: 0;
    max-width: 140px;
    font-weight: 500;
}

.numbers .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.provides {
    margin-bottom: 100px;
    padding: 0 15px;
}

.provides .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 42px;
    padding: 46px 25px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 36px;
}

.provides p {
    font-size: 18px;
    color: var(--white-color);
    line-height: 130%;
    font-weight: 400;
}

.noticed {
    margin-bottom: 90px;
}

.noticed-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid var(--green-color);
    padding-bottom: 6px;
}

.noticed-top__title h2 {
    font-size: clamp(24px, 3.08vw, 40px);
    font-weight: 500;
    color: var(--black-color);
}

.noticed-top__title h2 strong {
    font-weight: 900;
    font-size: clamp(32px, 4.62vw, 60px);
    line-height: 130%;
}

.noticed-top__title {
    max-width: 498px;
}

.noticed-top__description {
    max-width: 500px;
    font-size: 18px;
    line-height: 130%;
    color: var(--black-color);
}

.swiper__noticed {
    height: 495px;
    margin-left: auto;
    margin-right: 0;
    padding-left: calc((100vw - 1296px) / 2 + 7.5px);
    width: 100vw;
    overflow: hidden;
    padding-top: 30px;
    padding-bottom: 44px;
}

.swiper-slide__noticed {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.swiper-slide__title {
    font-size: clamp(24px, 2.31vw, 30px);
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 0;
    color: var(--blue-color);
}

.swiper-slide__description {
    font-size: 18px;
    line-height: 120%;
    color: var(--black-color);
    flex-grow: 1;
}

.swiper-slide__images {
    width: 370px;
    height: 262px;
    object-fit: cover;
    border-radius: 16px;
}

.swiper__noticed .swiper-button-prev,
.swiper__noticed .swiper-button-next {
    top: 27%;
    width: 70px;
    height: 40px;
    background-color: rgba(193, 208, 226, 1);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    color: var(--white-color);
    border-radius: 6px;
    transition: all .3s ease-in-out;
}

.swiper__noticed .swiper-button-prev:hover,
.swiper__noticed .swiper-button-next:hover {
    background-color: var(--blue-color);
}

.swiper__noticed .swiper-button-prev {
    left: calc((100vw - 1296px) / 2 - 15px);
}

.swiper__noticed .swiper-button-next {
    right: 15px;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 22px;
    font-weight: 700;
}

.noticed__btn {
    text-align: center;
}

.testimonials {
    display: flex;
    justify-content: center;
    margin-bottom: 90px;
    overflow: hidden;
    padding: 0 15px;
}

.swiper-slide__testimonials-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: auto;
    background-color: var(--white-color);
    padding: 32px;
    border-radius: 12px;
    max-width: 618px;
    width: min(100%, 618px);
    min-height: 340px;
}

.testimonials .wrapper {
    border-radius: 36px;
    padding: 60px 15px 60px;
    color: var(--black-color);
    overflow: hidden;
}

.testimonials__stars {
    display: flex;
    gap: 5px;
}

.testimonial__info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial__initial {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--black-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
}

.swiper-slide__title-testimonials {
    font-size: 24px;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: 0;
}

.swiper-slide__description-testimonials {
    font-size: 18px;
    line-height: 120%;
}

.testimonial__client {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
}

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

.testimonial__company {
    color: rgba(30, 30, 30, 0.6);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0;
}

.swiper__testimonials .swiper-wrapper {
    align-items: center;
}

.swiper__testimonials .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper__testimonials .swiper-button-prev,
.swiper__testimonials .swiper-button-next {
    top: 84%;
    transform: translateY(-50%);
    width: 70px;
    height: 40px;
    background-color: var(--blue-color);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    color: var(--white-color);
    border-radius: 6px;
}

.swiper__testimonials {
    overflow: visible;
    padding-bottom: 30px;
}

.swiper__testimonials .swiper-pagination {
    position: absolute;
    bottom: -17px;
    left: 0;
    right: 0;
}

.swiper__testimonials .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.7);
    opacity: 1;
    margin: 0 4px !important;
}

.swiper__testimonials .swiper-pagination-bullet-active {
    width: 70px;
    height: 12px;
    border-radius: 2px;
    background: var(--blue-color);
    opacity: 1;
}

.swiper__testimonials .swiper-button-prev {
    left: 3%;
}

.swiper__testimonials .swiper-button-next {
    right: 3%;
}

.services {
    margin-bottom: 90px;
}

.services-wrapper {
    border: 2px solid var(--blue-color);
    border-radius: 40px;
    padding: 60px 15px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.services-wrapper__table {
    max-width: 1130px;
}

.services-wrapper__top h2 {
    max-width: 720px;
    font-size: clamp(24px, 3.08vw, 40px);
    color: var(--black-color);
    margin: 0 auto 30px;
    text-align: center;
    font-weight: 400;
    line-height: 130%;
}

.services-wrapper__top h2 span strong {
    font-weight: 900;
}

.col__title {
    font-size: 18px;
    font-weight: 900;
    color: var(--black-color);
    line-height: 130%;

}

.col__title-feature {
    text-align: right;
    max-width: 200px;
}

.compare__grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(4, 1fr);
    gap: 16px;
    align-items: start;
}

.col {
    display: flex;
    flex-direction: column;
    gap: 68px;
    background: var(--gray-color);
    border-radius: 10px;
    padding: 30px 22px;
}

.col--features {
    background: transparent;
    padding: 30px 0 0 35px;
    margin-right: 10px;
}

.col--brand {
    text-align: center;
}

.col--highlight {
    background: var(--green-color);
}

.marks {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.marks svg {
    width: 40px;
    height: 40px;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 61px;
}

.features li {
    text-align: right;
    font-weight: 600;
    font-size: 18px;
    line-height: 130%;
    color: var(--black-color);
}

.works {
    margin-bottom: 90px;
}

.works-wrapper-top h2 {
    font-size: clamp(24px, 3.08vw, 40px);
    line-height: 130%;
    font-weight: 400;
}

.works-wrapper-top h2 strong {
    font-size: clamp(32px, 4.62vw, 60px);
    font-weight: 900;
}

.works__title {
    font-size: 18px;
    line-height: 130%;
    color: var(--black-color);
    max-width: 502px
}

.works-wrapper-top {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--green-color);
    margin-bottom: 39px;
}

.works-wrapper-bottom {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    align-items: center;
}

.works-wrapper-bottom__left {
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    height: 450px;
}

.works__btn {
    margin-bottom: 20px;
    align-self: center;
}

.works-wrapper-bottom__left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    border-radius: 16px;
}

.works-wrapper-bottom__left,
.works-wrapper-bottom__right {
    flex: 1 1 calc(50% - 50px);
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.step__number {
    width: 60px;
    height: 60px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    background: var(--blue-color);
    color: var(--white-color);
    font-weight: 500;
    font-size: clamp(24px, 3.08vw, 40px);
}

.step__block {
    display: flex;
    align-items: center;
    gap: 20px;
}

.step__number {
    flex: 0 0 auto;
}

.step__text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    color: var(--black-color);
    line-height: 130%;
}

.step__title {
    font-size: 24px;
    font-weight: 500;
}

.step__description {
    font-size: 18px;
}

.step__svg {
    margin-left: 50px;
}

.step__block-second {
    margin-left: 65px;
}

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

.services {
    padding: 0 15px;
}

@media (max-width: 1366px) {
    .swiper__noticed .swiper-button-prev {
        left: 15px;
    }

    .swiper__noticed .swiper-button-prev, .swiper__noticed .swiper-button-next {
        top: 24%;
    }

    .attention__title {
        transform:none;
    }
}

@media (max-width: 1280px) {
    .col {
        padding: 30px 10px;
        gap: 40px;
    }

    .swiper__noticed .swiper-button-prev, .swiper__noticed .swiper-button-next {
        top: 30%;
    }
}

@media (max-width: 1200px) {
    .navigation__left, .navigation__right {
        gap: 25px;
    }
}

@media (max-width: 1150px) {
    .navigation__left, .navigation__right {
        gap: 20px;
    }
    .navigation a {
        font-size: 16px;
    }
    .navigation .wrapper a svg{
        width: 150px;
    }
}

@media (max-width: 1024px) {
    .meet {
        padding: 30px 15px 30px;
    }

    .stand {
        padding: 30px 0 30px;
    }

    .stand__block-div {
        display: none;
    }

    .stand__block {
        flex-wrap: wrap;
        gap: 30px;
    }

    .stand__block-right {
        margin-top: 0;
    }

    .attention {
        padding: 30px 0 0;
    }

    .attention__content {
        gap: 15px;
    }

    .attention__title {
        margin-bottom: 0;
        margin-top: 0;
    }

    .banner__gallery-block {
        gap: 15px;
    }

    .numbers .wrapper {
        gap: 15px;
    }

    .swiper__noticed .swiper-button-prev, .swiper__noticed .swiper-button-next {
        top: 38%;
    }

    .swiper__testimonials .swiper-button-prev {
        left: 0;
    }

    .noticed-top__title {
        max-width: 400px;
    }

    .testimonials {
        margin-bottom: 30px;
    }

    .swiper__testimonials .swiper-button-next {
        right: 0;
    }

    .features {
        gap: 50px;
    }

    .marks {
        gap: 50px;
    }

    .marks svg {
        width: 30px;
        height: 30px;
    }

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

    .compare__grid {
        gap: 10px;
        grid-template-columns: 2fr repeat(4, 1fr);
    }

    .col__title {
        font-size: 16px;
    }

    .make-press-releases__icons {
        gap: 30px;
    }

    .plan-action .wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .plan-action__left, .stand__block-left {
        flex: 1 1 auto;
        max-width: 100%;
    }

    .plan-action__right, .stand__block-picture {
        aspect-ratio: 16 / 9;
    }

    .attention__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .attention__media {
        max-width: 560px;
        margin: 0 auto;
    }

    .works-wrapper-bottom__left, .works-wrapper-bottom__right {
        flex: 1 1 auto;
    }

    .works-wrapper-bottom__left {
        height: auto;
        aspect-ratio: 16 / 9;
        order: 2;
    }

    .works-wrapper-bottom__right {
        order: 1;
    }

    .services-wrapper {
        padding: 30px 15px 30px;
    }

    .services {
        margin-bottom: 30px;
    }

    .col {
        gap: 30px;
    }

    .services-wrapper,
    .services-wrapper__table {
        overflow-x: visible;
    }

    .compare__grid {
        position: relative;
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(260px, 80%);
        overflow-x: auto;
        overscroll-behavior-x: contain;
        -webkit-overflow-scrolling: touch;
        gap: 10px;
        padding: 0 10px 8px;
        scroll-snap-type: x proximity;
        scrollbar-width: thin;
    }

    .compare__grid .col {
        min-width: 150px;
        scroll-snap-align: start;
    }

    .compare__grid .col--features {
        position: sticky;
        left: 0;
        z-index: 5;
        background: var(--white-color);
        min-width: 250px;
        margin-right: 0;
        padding: 30px 10px 21px 10px;
        box-shadow: 8px 0 12px -8px rgba(0, 0, 0, .15);
    }

    .features li,
    .col__title-feature {
        text-align: left;
    }

    .services-wrapper__table {
        max-width: 100%;
    }
}

@media (max-width: 1023px) {
    .navigation .wrapper {
        padding: 5px 15px;
        gap: 15px;
    }

    .logged-in .navigation {
        top: 32px;
    }

    .logged-in .navigation__mobile-menu {
        top: 33px;
    }

    .navigation__mobile-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        left: 0;
        top: 0;
        transform: translateX(-150vw);
        overflow-x: hidden;
        overflow-y: auto;
        background-color: var(--black-color);
        box-shadow: 5px 0 15px -5px rgba(255, 255, 255, 0.8);
        z-index: 100;
        width: 80%;
        max-width: 260px;
        height: 100vh;
        transition: all .3s ease-in-out;
    }

    .navigation__mobile-menu.open {
        transform: translateX(0);
    }

    .navigation__mobile-menu li a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid #fff;
        font-size: 18px;
    }

    .navigation__mobile-menu li:first-child a {
        padding-top: 30px;
    }

    .hamburger {
        display: block;
    }

    .navigation__left,
    .navigation__right {
        display: none;
    }

    .navigation {
        top: 0;
    }

    .navigation-block {
        display: none;
    }

    .navigation .wrapper {
        justify-content: space-between;
        border-radius: 0;
    }
}

@media (max-width: 768px) {
    .banner {
        padding: 42px 35px 40px;
    }

    .banner__sub-title {
        margin-bottom: 15px;
    }

    .numbers__item {
        flex-wrap: wrap;
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .numbers__item span {
        max-width: 100%;
        width: 100%;
    }

    .swiper__noticed .swiper-button-prev {
        left: 30px;
    }

    .swiper__noticed .swiper-button-next {
        right: 30px;
    }

    .noticed {
        margin-bottom: 30px;
    }

    .noticed-top {
        flex-wrap: wrap;
    }

    .noticed-top__description {
        max-width: 100%;
    }

    .noticed-top__title {
        max-width: 100%;
    }

    .swiper__noticed {
        padding-left: 15px;
        padding-right: 15px;
        height: auto;
        padding-bottom: 30px;
    }

    .swiper__testimonials .swiper-button-next,
    .swiper__testimonials .swiper-button-prev {
        display: none;
    }

    .swiper-slide__title-testimonials {
        font-size: 20px;
    }

    .swiper-slide__description-testimonials {
        font-size: 16px;
    }

    .swiper-slide__testimonials-content {
        gap: 15px;
        margin: auto;
        background-color: var(--white-color);
        padding: 32px;
        border-radius: 12px;
        max-width: 100%;
        width: 100%;
        min-height: auto;
    }
    .resource ul {
        grid-template-columns: 1fr;
    }
}

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

    .banner__gallery-block li {
        width: calc(33.333% - 15px);
    }
}

@media (max-width: 480px) {
    .stand__block-link {
        align-self: center;
    }

    .stand__title {
        padding-top: 30px;
    }

    .attention__title span {
        letter-spacing: normal;
    }

    .banner__text {
        max-width: 100%;
    }

    .banner__text {
        margin-bottom: 30px;
    }

    .banner {
        padding: 25px;
    }

    .meet__title {
        margin-bottom: 15px;
    }

    .stand__block-picture {
        border-radius: 16px;
    }

    .meet {
        padding: 0 15px 30px;
    }

    .meet .wrapper {
        border-radius: 16px;
    }

    .numbers {
        padding-bottom: 30px;
    }

    .swiper__noticed {
        padding-bottom: 15px;
    }

    .provides .wrapper {
        border-radius: 16px;
        padding: 25px;
    }

    .swiper__noticed .swiper-button-prev, .swiper__noticed .swiper-button-next {
        top: 35%;
        width: 50px;
        height: 30px;
    }

    .swiper-button-prev:after, .swiper-button-next:after {
        font-size: 18px;
    }

    .swiper__noticed .swiper-button-prev {
        left: 20px;
    }

    .swiper__noticed .swiper-button-next {
        right: 20px;
    }

    .testimonials .wrapper {
        border-radius: 16px;
        padding: 30px 15px 30px;
    }

    .services-wrapper {
        border-radius: 16px;
    }

    .swiper-slide__testimonials-content {
        padding: 25px;
    }

    .plan-action__right {
        border-radius: 16px;
    }

    .swiper__testimonials .swiper-pagination {
        bottom: -4px;
    }

    .compare__grid .col--features {
        min-width: 150px;
    }

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

    .features {
        gap: 24px;
    }

    .footer__column {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .erl-new-footer a,
    .erl-new-footer li {
        text-align: center;
    }

    .footer__title-hidden {
        display: none;
    }

    .footer__social {
        max-width: 100%;
        justify-content: center;
        grid-template-columns: repeat(5, 1fr);
        align-self: center;
        gap: 15px;
    }

    .footer__social a:first-child {
        grid-column-start: 1;
        grid-column-end: 2;
    }

    .footer__social a svg {
        width: 40px;
        height: 40px;
    }

    .erl-new-footer {
        padding: 30px 0 19px;
    }

    .make-press-releases {
        padding: 30px 0;
    }

    .make-press-releases__icons {
        flex-wrap: wrap;
        gap: 15px;
    }

    .icons__icon {
        width: 100%;
    }

    .icons__description {
        max-width: 100%;
    }

    .plan-action {
        text-align: center;
    }

    .plan-action__left, .stand__block-left {
        align-items: center;
    }

    .btn {
        border-radius: 10px;
        height: 45px;
        padding: 0 30px;
        max-width: 100%;
    }

    .step__title {
        font-size: 22px;
    }

    .step__description {
        font-size: 16px;
    }

    .step__number {
        width: 50px;
        height: 50px;
    }

    .step__number span {
        top: 0;
    }

    .step__block-third .step__number span {
        top: -3px;
    }

    .works {
        margin-bottom: 30px;
    }

    .works-wrapper-top {
        gap: 15px;
        margin-bottom: 30px;
    }

    .works__btn {
        margin-bottom: 10px;
    }

    .provides {
        margin-bottom: 30px;
    }
}

@media (max-width: 420px) {
    .step__title {
        font-size: 20px;
    }

    .works-wrapper-bottom__left, .works-wrapper-bottom__right {
        gap: 10px;
    }

    .step__svg {
        margin-left: 40px;
    }
}