/* Base styles */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    background-repeat: no-repeat;
}

:root {
    --main-color: #6899D8;
    --orange-main-color: #FA6334;
    --orange-secondary-color: #FF8A65;
}

input {
    width: 100%;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
textarea,
select,
option {
    outline: none;
    border: none;
    cursor: pointer;
    background: none;
}

a {
    text-decoration: none;
    color: inherit;
    display: inline-flex;
}

li {
    list-style: none;
}

span {
    font-family: inherit;
}

section {
    margin-top: 130px;
}

section:first-child {
    margin-top: 0;
}

section:last-child {
    margin-bottom: 130px;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
}

.mobile-br {
    display: none;
}
a:hover {
     text-decoration: none !important;
}

@media(max-width: 1439px) {
    section {
        margin-top: 120px;
    }

    section:last-child {
        margin-bottom: 120px;
    }
}

@media(max-width: 1023px) {
    section {
        margin-top: 110px;
    }

    section:last-child {
        margin-bottom: 110px;
    }
}

@media(max-width: 767px) {
    .mobile-br {
        display: block;
    }

    section {
        margin-top: 85px;
    }

    section:last-child {
        margin-bottom: 85px;
    }
}

@media(max-width: 479px) {
    section {
        margin-top: 75px;
    }

    section:last-child {
        margin-bottom: 75px;
    }

    .container {
        padding: 0 20px;
    }
}

/* BTNS */

a.orange-btn, .orange-btn {
    background: var(--orange-main-color);
    height: 70px;
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 4px;
    transition: .3s all;
    width: 100%;
}

@media(any-hover: hover) {
    a.orange-btn:hover, .orange-btn:hover {
        background: var(--orange-secondary-color);
    }
}

/* ARROW LINK */

.arrow-link {
    display: flex;
    gap: 6px;
    align-items: center;
}

.arrow-link * {
    transition: .3s all;
}

.arrow-link__text {
    font-size: 18px;
    font-weight: 600;
    line-height: 21.6px;
    letter-spacing: 0.01em;
    color: var(--main-color);
    border: 1px solid transparent;
}

.arrow-link__chevron {
    transition: .3s all;
}

@media(any-hover: hover) {
    .arrow-link:hover .arrow-link__text {
        color: #0056B3;
        border-bottom: 1px solid #0056B3;
    }

    .arrow-link:hover .arrow-link__chevron {
        margin-left: 5px;
    }
}

/* TYPOGRAPHY */

.title {
    font-weight: 600;
    line-height: 110.00000000000001%;
    letter-spacing: 1%;
}

.title--white {
    color: #fff;
}

.title--black {
    color: #000;
}

.item-title {
    display: flex;
    align-items: center;
    gap: 23px;
}

.item-title__number {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    background: var(--orange-main-color);
    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    color: #fff;
}

.item-title__text {
    font-weight: 600;
    font-size: 28px;
    line-height: 120%;
    color: var(--orange-main-color);
}

@media(max-width: 767px) {
    .item-title {
        gap: 16px;
    }

    .item-title__number {
        width: 40px;
        height: 40px;
    }

    .item-title__text {
        font-size: 24px;
    }
}

@media(max-width: 767px) {
    .item-title__text {
        font-size: 20px;
    }
}

/* BLUE PLATE */

.blue-plate {
    border: solid var(--main-color);
    border-radius: 45px;
    font-weight: 500;
    line-height: 100%;
    color: var(--main-color);
    width: fit-content;
}

/* PROMO */

.promo {
    padding: 100px 0 158px;
    background-image: url(/tpls/images/events/sales/easy_start/promo/bg-1920.png);
    background-position: center;
    background-size: cover;
}

.promo__wrapper {
    max-width: 828px;
}

.promo__title {
    font-size: 68px;
}

.promo__deadline {
    margin-top: 48px;
    font-weight: 500;
    font-size: 35px;
    line-height: 100%;
    color: #fff;
}

.promo__price {
    margin-top: 12px;
    display: flex;
    align-items: flex-end;
    gap: 28px;
}

.promo__price-new {
    padding: 10px 25px;
    font-size: 55px;
    border-width: 4px;
}

.promo__price-old {
    font-weight: 500;
    font-size: 28px;
    line-height: 100%;
    color: #C2C2C2;
    text-decoration: line-through;
}

.promo__btn {
    margin-top: 142px;
    max-width: 345px;
}

@media(max-width: 1919px) {
    .promo {
        padding-bottom: 108px;
        background-image: url(/tpls/images/events/sales/easy_start/promo/bg-1440.png);
    }
}

@media(max-width: 1439px) {
    .promo {
        padding-bottom: 181px;
        background-image: url(/tpls/images/events/sales/easy_start/promo/bg-1024.png);
    }

    .promo__wrapper {
        max-width: 707px;
    }

    .promo__title {
        font-size: 58px;
    }

    .promo__price {
        gap: 12px;
    }

    .promo__price-new {
        padding: 10px 36.5px;
        font-size: 45px;
    }

    .promo__btn {
        margin-top: 112px;
    }
}

@media(max-width: 1023px) {
    .promo {
        padding-top: 80px;
        padding-bottom: 247px;
        background-image: url(/tpls/images/events/sales/easy_start/promo/bg-768.png);
    }

    .promo__wrapper {
        max-width: 100%;
    }

    .promo__deadline {
        margin-top: 42px;
        font-size: 28px;
    }

    .promo__price-new {
        padding: 10px 44.5px;
        font-size: 38px;
    }

    .promo__price-old {
        font-size: 24px;
    }

    .promo__btn {
        margin-top: 80px;
    }
}

@media(max-width: 767px) {
    .promo {
        padding: 70px 0 30px;
        background-image: url(/tpls/images/events/sales/easy_start/promo/bg-480.png);
    }

    .promo__title {
        font-size: 36px;
    }

    .promo__deadline {
        margin-top: 34px;
        font-size: 24px;
    }

    .promo__price {
        gap: 18px;
    }

    .promo__price-new {
        font-size: 28px;
        padding: 10px 35.5px;
    }

    .promo__price-old {
        font-size: 18px;
    }

    .promo__btn {
        margin-top: 334px;
        max-width: 100%;
    }
}

@media(max-width: 479px) {
    .promo {
        padding: 60px 0 20px;
        background-image: url(/tpls/images/events/sales/easy_start/promo/bg-360.png);
    }

    .promo__title {
        font-size: 28px;
    }

    .promo__deadline {
        margin-top: 30px;
        font-size: 18px;
    }

    .promo__price {
        gap: 18px;
    }

    .promo__price-new {
        font-size: 24px;
        padding: 10px 26px;
    }

    .promo__btn {
        margin-top: 302px;
    }
}

/* OFFER */

@media(min-width: 1441px) {
    .offer {
        margin-top: 143px;
    }
}

.offer__title {
    font-size: 50px;
}

.offer__items {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 65px;
}

.offer__item-title {
    margin-bottom: 30px;
}

.offer__systems,
.offer__implem {
    display: grid;
    gap: 20px;
}

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

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

.offer__support {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 27px;
}

.offer__support-descr {
    flex: 1;
    font-weight: 400;
    font-size: 20px;
    line-height: 110.00000000000001%;
    letter-spacing: 1%;
    color: #000;
}

@media(max-width: 1439px) {
    .offer__title {
        font-size: 36px;
    }

    .offer__title br {
        display: none;
    }

    .offer__systems,
    .offer__implem {
        grid-template-columns: repeat(2, 1fr);
    }

    .offer__systems {
        grid-auto-rows: minmax(265px, 1fr);
    }
}

@media(max-width: 1023px) {
    .offer__implem {
        grid-template-columns: repeat(1, 1fr);
    }

    .offer__support-chats {
        display: none;
    }
}

@media(max-width: 767px) {
    .offer__title {
        font-size: 28px;
    }

    .offer__systems {
        grid-template-columns: repeat(1, 1fr);
        grid-auto-rows: minmax(268px, 1fr);
    }
}

@media(max-width: 479px) {
    .offer__title {
        font-size: 25px;
    }

    .offer__systems {
        grid-auto-rows: minmax(313px, 1fr);
    }

    .offer__support {
        padding: 20px 17px;
    }
}

/* CARD */

.card {
    background: #fff;
    box-shadow: 0px 8px 16px 0px #3232470F,
    0px 0px 8px 0px #32324721;
    border-radius: 10px;
}

.card:not(.card.offer__support) {
    padding: 30px 27px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.card__title {
    font-weight: 600;
    font-size: 20px;
    line-height: 141%;
    text-transform: capitalize;
    color: #000;
}

.card__descr {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 1%;
    color: #000;
}

.card__descr--margin {
    margin: 20px 0 60px;
}

.card__link {
    margin-top: auto;
}

.card__list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.card__list-item {
    position: relative;
    padding-left: 24px;
    min-height: 40px;
    display: flex;
    align-items: center;
}

.card__list-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    border-radius: 6px;
    background: var(--orange-main-color);
}

.card__warn {
    padding-top: 16px;
    margin-top: auto;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 1%;
    color: #807E7E;
}

.card__tags {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.card__tag {
    padding: 10px;
    border-width: 2px;
    font-size: 14px;
}

/* CTA */

.cta__wrapper {
    border-radius: 20px;
    background-image: url(/tpls/images/events/sales/easy_start/cta/bg-1920&1440.png);
    padding: 40px 46px 127px 46px;
    background-size: contain;
    background-position: center top;
}

.cta__title {
    font-size: 50px;
}

.cta__items {
    margin-top: 34px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta__item {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #fff;
    position: relative;
    padding-left: 21px;
}

.cta__item::before {
    content: "";
    position: absolute;
    top: 6.5px;
    left: 0;
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
}

.cta__btn {
    margin-top: 54px;
    max-width: 345px;
}

@media(max-width: 1439px) {
    .cta__wrapper {
        background-image: url(/tpls/images/events/sales/easy_start/cta/bg-1024.png);
        background-size: cover;
        padding: 32px;
        padding-bottom: 76px;
    }

    .cta__title {
        font-size: 36px;
    }

    .cta__items {
        margin-top: 32px;
    }

    .cta__btn {
        margin-top: 44px;
    }
}

@media(max-width: 1023px) {
    .cta__wrapper {
        background-image: url(/tpls/images/events/sales/easy_start/cta/bg-768.png);
        background-position: left top;
        padding: 32px 30px 61px 30px;
    }

    .cta__title {
        max-width: 512px;
    }

    .cta__item {
        font-size: 16px;
    }
}

@media(max-width: 767px) {
    .cta__wrapper {
        background-image: url(/tpls/images/events/sales/easy_start/cta/bg-480.png);
        background-position: center;
        padding: 30px 20px;
    }

    .cta__title {
        font-size: 28px;
    }

    .cta__items {
        margin-top: 30px;
    }

    .cta__btn {
        max-width: 100%;
        margin-top: 50px;
    }
}

@media(max-width: 767px) {
    .cta__wrapper {
        padding: 24px 15px;
    }

    .cta__title {
        font-size: 25px;
    }

    .cta__items {
        margin-top: 25px;
        gap: 8px;
    }

    .cta__item {
        font-size: 14px;
    }

    .cta__item::before {
        top: 4.5px;
    }

    .cta__btn {
        margin-top: 41px;
    }
}

/* WEBINAR */

.webinar__wrapper {
    border-radius: 20px;
    background-image: url(/tpls/images/events/sales/easy_start/webinar/bg-1920&1440.png);
    padding: 50px 45px 148px 45px;
    background-size: cover;
    background-position: center top;
}

.webinar__content {
    max-width: 545px;
}

.webinar__free {
    padding: 10px 22px;
    border-width: 2px;
    font-size: 25px;
}

.webinar__title {
    margin-top: 18px;
    font-size: 50px;
}

.webinar__subtitle {
    margin-top: 38px;
    font-weight: 500;
    font-size: 36px;
    line-height: 110.00000000000001%;
    color: #fff;
}

.webinar__descr {
    margin-top: 18px;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #fff;
}

a.webinar__btn, .webinar__btn {
    margin-top: 54px;
    max-width: 345px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.webinar__img {
    display: none;
}

@media(max-width: 1439px) {
    .webinar__wrapper {
        background-image: url(/tpls/images/events/sales/easy_start/webinar/bg-1024.png);
        padding: 32px;
        padding-bottom: 88px;
    }

    .webinar__content {
        max-width: 425px;
    }

    .webinar__free {
        font-size: 18px;
    }

    .webinar__title {
        margin-top: 16px;
        font-size: 36px;
    }

    .webinar__subtitle {
        margin-top: 32px;
        font-size: 24px;
    }

    .webinar__descr {
        margin-top: 16px;
    }
}

@media(max-width: 1023px) {
    .webinar__wrapper {
        background-image: url(/tpls/images/events/sales/easy_start/webinar/bg-768.png);
        padding: 30px;
    }

    .webinar__img-768 {
        display: block;
    }

    .webinar__content {
        margin-top: 33px;
        max-width: 100%;
    }

    a.webinar__btn, .webinar__btn {
        margin-top: 58px;
    }
}

@media(max-width: 767px) {
    .webinar__wrapper {
        padding: 30px 20px;
    }

    .webinar__img-480 {
        display: block;
    }

    .webinar__img-768 {
        display: none;
    }

    .webinar__free {
        padding: 10px 14px;
        font-size: 14px;
    }

    .webinar__title {
        font-size: 28px;
    }

    .webinar__subtitle {
        margin-top: 30px;
    }

    a.webinar__btn, .webinar__btn {
        margin-top: 54px;
        max-width: 100%;
    }
}

@media(max-width: 479px) {
    .webinar__wrapper {
        background-image: url(/tpls/images/events/sales/easy_start/webinar/bg-768.png);
        padding: 20px 15px;
    }

    .webinar__free {
        padding: 10px 14px;
        font-size: 14px;
    }

    .webinar__title {
        font-size: 25px;
    }

    .webinar__subtitle {
        margin-top: 27px;
    }

    a.webinar__btn, .webinar__btn {
        margin-top: 50px;
    }
}
