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

*,
*::after,
*::before {
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

body {
    font-family: 'DM Sans', sans-serif;
}

.container {
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
}

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

.header__logo {
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    font-size: 40px;
    line-height: 50px;
}

.header__nav {
    margin-right: 120px;
}

.header__burger {
    display: none;
}

.header__mobile-nav {
    display: none;
}

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

.header__item-dropdown {
    position: relative;
}

.header__item-dropdown:hover .header__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.header__dropdown {
    position: absolute;
    left: 0;
    width: 220px;
    z-index: 1;
    box-shadow: 0px 4px 10px -5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.header__dropdown-item {
    padding: 16px 20px;
    transition: all 0.3s linear;
    background-color: #fff;
    cursor: pointer;
}

.header__dropdown-item:hover {
    background-color: #e85442;
}

.header__dropdown-item:hover .header__dropdown-link {
    color: #fff;
}

.header__dropdown-item:not(:last-child) {
    border-bottom: 1px solid rgba(223, 223, 223, 0.87);
}

.header__item-link:hover {
    color: #e0a70b;
}

.header__item-link {
    display: block;
    font-size: 16px;
    transition: all 0.2s linear;
    padding: 30px 15px;
}

.header__dropdown-link {
    line-height: 26px;
    font-weight: 400;
    color: #31274b;
    transition: all 0.3s linear;
}

.hero {
    background-color: #f7f5ed;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.contact-header {
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    right: 0;
}

.contact-hero {
    background-image: linear-gradient(
            to bottom,
            rgba(34, 38, 40, 0.97),
            rgba(34, 38, 40, 0.87)
        ),
        url(../img/contact-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: visible;
    padding: 220px 0 140px;
}

.hero__contact-inner {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero__contact-title {
    font-size: 42px;
    color: #fff;
    line-height: 50px;
    font-weight: 900;
    margin-bottom: 20px;
}

.hero__contact-breadcrumbs {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

.hero__contact-breadcrumbs span {
    margin: 0 8px;
}

.hero__inner {
    padding-top: 79px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 120px;
}

.hero__content {
    max-width: 565px;
    display: flex;
    flex-direction: column;
    align-items: start;
    position: relative;
}

.hero__title {
    font-size: 85px;
    line-height: 110%;
    /* font-weight: bold; */
    letter-spacing: -3px;
    color: #3c3c3c;
    margin-bottom: 15px;
}

.hero__title span {
    padding: 0 6px;
    position: relative;
    z-index: 1;
}

.hero__title span::after {
    content: '';
    width: 100%;
    height: 90%;
    left: 0;
    z-index: -1;
    position: absolute;
    background: #ffc48b;
    right: 0;
    margin: auto;
    top: 0;
    bottom: 0;
    border-radius: 10px;
}

.hero__text {
    margin-bottom: 36px;
    font-size: 20px;
    line-height: 30px;
    max-width: 485px;
}

.hero__btn {
    padding: 25px 50px;
    border-radius: 100px;
    background: #e78b06;
    color: #12141d;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.05em;
    text-align: center;
    font-size: 16px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.hero__btn:hover {
    background-color: #2b59ff;
    color: #fff;
}

.hero__img {
    max-width: 565px;
}

.hero__img img {
    width: 100%;
    object-fit: cover;
}

.hero__animation {
    position: absolute;
    bottom: -141px;
    left: -141px;
    z-index: -1;
    animation-name: bubbleMover;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: 9s;
    -webkit-animation-duration: 9s;
}

@keyframes bubbleMover {
    0% {
        transform: translateY(0px) translateX(0) rotate(0);
    }
    30% {
        transform: translateY(30px) translateX(50px) rotate(15deg);
        transform-origin: center center;
    }
    50% {
        transform: translateY(50px) translateX(100px) rotate(45deg);
        transform-origin: right bottom;
    }
    80% {
        transform: translateY(30px) translateX(50px) rotate(15deg);
        transform-origin: left top;
    }
    100% {
        transform: translateY(0px) translateX(0) rotate(0);
        transform-origin: center center;
    }
}

.about__inner {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.about__img {
    margin-top: 15px;
    max-width: 608px;
}

.about__img img {
    width: 100%;
    object-fit: cover;
}

.about__content {
    max-width: 490px;
    margin-left: 50px;
    padding-top: 15px;
}

.about__up-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 17.6px;
    text-transform: uppercase;
    color: #666666;
    margin-bottom: 15px;
    display: none;
}

.about__title {
    /* font-weight: 700; */
    font-size: 45px;
    line-height: 55.5px;
    letter-spacing: -0.02em;
    margin-bottom: 51px;
    color: #3c3c3c;
    padding-top: 30px;
}

.about__title span {
    background: #ffc48b;
    display: inline-block;
    padding: 0 5px;
    border-radius: 10px;
}

.about__text {
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    /* max-width: 395px; */
    line-height: 30px;
    /* padding-left: 30px; */
    max-width: 490px;
}

.solutions {
    background-color: #f7f5ed;
    padding: 153px 0 143px;
}

.solutions__up-title {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #666666;
    text-align: center;
}

.solutions__title {
    font-size: 42px;
    /* font-weight: bold; */
    line-height: 58px;
    margin-bottom: 0;
    /* color: #31274b; */
    text-align: center;
    margin-bottom: 35px;
    color: #3c3c3c;
}

.solutions__title span {
    /* background-color: #feffb3; */
    font-weight: 400;
    padding: 0 6px;
    /* font-weight: bold; */
    background: #ffc48b;
    border-radius: 10px;
}

.swiper {
    width: 100%;
}

.solutions__item {
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #fff;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    min-height: 479px;
    border: 1px solid #ffc48b;
}

.solutions__item:hover {
    /* border-color: #12141d; */
    border: 1px solid #c66406;
}

.solutions__item:hover .solutions__content-title a:after {
    width: 100%;
}

.solutions__img-block {
    width: 100%;
    text-align: left;
    margin-bottom: 40px;
}

.solutions__img-block img {
    width: 150px;
    height: 150px;
}

.solutions__content-title {
    /* color: #12141d; */
    /* font-weight: 700; */
    font-size: 24px;
    line-height: 26.4px;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    color: #3c3c3c;
}

.solutions__content-title a {
    position: relative;
}

.solutions__content-title a:after {
    content: '';
    width: 0;
    height: 2px;
    background-color: #3c3c3c;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.5s;
}

.solutions__content-text {
    font-size: 16px;
    color: #666666;
    line-height: 30px;
    word-wrap: break-word;
}

.solutions__swiper {
    position: relative;
}

.swiper-pagination {
    bottom: -45px !important;
}

.swiper-pagination-bullet {
    background-color: #12141d;
    opacity: 1;
    cursor: pointer;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #e85442;
}

.contact__inner {
    display: flex;
    align-items: start;
    padding-top: 35px;
}

.contact__left {
    max-width: 523px;
    margin-right: 130px;
}

.contact__right {
    flex: 1;
}

.contact__left-uptitle {
    color: #666666;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.contact__left-title {
    /* font-weight: 700; */
    font-size: 42px;
    line-height: 58px;
    /* color: #31274b; */
    margin-bottom: 30px;
    color: #3c3c3c;
}

.contact__left-title span {
    /* background-color: #feffb3; */
    font-weight: 400;
    padding: 0px 5px;
    background: #ffc48b;
    border-radius: 10px;
}

.contact__accordion-item:not(:last-child) {
    margin-bottom: 30px;
}

.contact__accordion-head {
    padding: 18px 20px;
    background-color: #f7f5ed;
    border-radius: 10px;
    cursor: pointer;
    font-size: 18px;
    line-height: 30px;
    /* font-weight: 700; */
    color: #31274b;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.contact__accordion-head:hover {
    background-color: #2b59ff;
    color: #fff;
}

.contact__accordion-item.active .contact__accordion-head {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    background-color: #2b59ff;
    color: #fff;
}

.contact__accordion-body {
    background-color: #2b59ff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.1s ease-out;
}

.contact__accordion-text {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 30px;
    padding: 0 20px 16px;
}

.contact__right-title {
    /* color: #010d12; */
    line-height: 1;
    font-size: 36px;
    margin-bottom: 20px;
    /* font-weight: 700; */
    color: #3c3c3c;
}

.contact__right-input {
    padding: 20px;
    background: transparent;
    border: 1px solid #d7d7d7;
    margin-bottom: 20px;
    border-radius: 5px;
    line-height: 1;
    font-size: 15px;
    color: #31274b;
    outline: none;
    width: 250px;
}

.contact__right-input:focus {
    border: 1px solid #ffc48b;
}

.contact__right-input + .contact__right-input {
    margin-left: 15px;
}

.contact__right-form {
    width: 100%;
}

.contact__right-inputs {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact__right-textarea {
    padding: 20px;
    background: transparent;
    border: 1px solid #d7d7d7;
    border-radius: 5px;
    line-height: 1;
    font-size: 15px;
    color: #31274b;
    outline: none;
    font-family: 'DM Sans', sans-serif;
    resize: none;
    width: 100%;
    margin-bottom: 20px;
}

.contact__right-textarea:focus {
    border: 1px solid #ffc48b;
}

.contact__right-button {
    padding: 15px 40px;
    border-radius: 5px;
    transition: 0.4s;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-align: center;
    font-size: 16px;
    color: #fff;
    background-color: #e85442;
    outline: none;
    border: none;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
}

.contact__right-button:hover {
    background-color: #31274b;
}

.contact__right-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.contact__right-socials li:not(:last-child) {
    margin-right: 5px;
}

.contact__right-socials li:hover {
    opacity: 0.9;
    cursor: pointer;
}

.contact__right-instagram {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #262626;
    border-radius: 10%;
    transition: all 0.2s linear;
}

.contact__right-twitter {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1da1f2;
    border-radius: 10%;
    transition: all 0.2s linear;
}

.contact__right-twitter img {
    width: 25px;
    height: 25px;
}

.contact__right-youtube {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #cd201f;
    border-radius: 10%;
    transition: all 0.2s linear;
}

.contact__right-youtube img {
    width: 25px;
    height: 25px;
}

.contact__footer-line {
    margin: 40px auto 15px;
    height: 20px;
    width: 100%;
    mask-size: 20px 100%;
    mask-repeat: repeat-x;
    background-color: #000;
    mask-image: url(../img/divider.svg);
    max-width: 1170px;
}

.latest__header {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.latest__header-left {
    max-width: 565px;
}

.latest__header-right {
    flex: 1;
    text-align: center;
}

.latest__header-uptitle {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    color: #2b59ff;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-align: center;
}

.latest__header-title {
    font-size: 42px;
    /* font-weight: bold; */
    line-height: 58px;
    margin-bottom: 0;
    /* color: #31274b; */
    text-align: center;
    color: #3c3c3c;
}

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

.latest__item {
    box-shadow: 10px 4px 60px rgba(0, 0, 0, 0.07);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 30px;
    margin-right: 10px;
    margin-left: 10px;
    max-width: 363px;
}

.latest__item-img {
    width: 100%;
}

.latest__item-img img {
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.latest__item-content {
    background-color: #fff;
    padding: 30px;
}

.latest__item-top {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.latest__item-tag {
    background-color: #2b59ff;
    padding: 9px 15px;
    border-radius: 5px;
    font-size: 14px;
    color: #fff;
    line-height: 1;
    margin-right: 20px;
    cursor: pointer;
    transition: all 0.2s linear;
}

.latest__item-tag:hover {
    color: #000;
}

.latest__item-tag--green {
    background-color: #47ed76;
}

.latest__item-tag--red {
    background-color: #e85442;
}

.latest__item-date {
    font-size: 16px;
    color: #12141d;
    cursor: pointer;
    transition: all 0.2s linear;
}

.latest__item-date:hover {
    color: #2b59ff;
}

.latest__item-link {
    /* font-weight: 700; */
    font-size: 24px;
    color: #12141d;
    text-decoration: underline;
    transition: all 0.4s;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 3em;
    line-height: 1.5em;
    width: 300px;
    margin-bottom: 20px;
}

.latest__item-link:hover {
    color: #2b59ff;
    text-decoration: none;
}

.latest__item-bottom-link {
    color: #666666;
    text-decoration: underline;
    font-size: 16px;
    transition: all 0.2s linear;
}

.latest__item-bottom-link:hover {
    color: #2b59ff;
}

.latest__socials {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.latest__instagram {
    width: 50px;
    height: 50px;
    /* background-color: #262626; */
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    cursor: pointer;
    opacity: 1;
    transition: all 0.2s ease;
}

.latest__instagram:hover {
    opacity: 0.9;
}

.latest__twitter {
    width: 50px;
    height: 50px;
    /* background-color: #1da1f2; */
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 2px;
    cursor: pointer;
    opacity: 1;
    transition: all 0.2s ease;
}

.latest__twitter:hover {
    opacity: 0.9;
}

.latest__twitter img {
    width: 24px;
    height: 25px;
}

.latest__youtube {
    width: 50px;
    height: 50px;
    background-color: #cd201f;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    cursor: pointer;
    opacity: 1;
    transition: all 0.2s ease;
}

.latest__youtube:hover {
    opacity: 0.9;
}

.latest__youtube img {
    width: 24px;
    height: 25px;
}

.footer {
    background-color: #222628;
    color: #bbbbbb;
    padding-top: 100px;
}

.footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 90px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__top-uptitle {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.footer__top-title {
    font-family: 'DM Sans';
    font-weight: 700;
    font-size: 45px;
    letter-spacing: -0.02em;
    color: #fff;
}

.footer__top-left {
    max-width: 465px;
}

.footer__top-form {
    display: flex;
    align-items: start;
}

.footer__form-block {
    width: 310px;
    margin-right: 20px;
}

.footer__form-input {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.73);
    border-radius: 0;
    color: #fff;
    padding: 17px 0;
    font-size: 18px;
    line-height: 19px;
    font-weight: normal;
    padding-top: 0;
    outline: none;
    width: 100%;
    margin-bottom: 10px;
}

.footer__form-input::placeholder {
    color: #bebcbe;
    font-size: 18px;
    line-height: 19px;
}

.footer__form-text {
    color: #c3c3c3;
    font-size: 14px;
}

.footer__form-btn {
    background-color: #e85442;
    padding: 19px 50px;
    border-radius: 100px;
    line-height: 1.4;
    font-family: 'DM Sans';
    font-weight: 600;
    letter-spacing: 0.05em;
    text-align: center;
    font-size: 16px;
    color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    transition: all 0.2s linear;
}

.footer__form-btn:hover {
    color: #000;
    background-color: #fff;
}

.footer__latest {
    padding-top: 100px;
    display: flex;
    padding-bottom: 100px;
}

.footer__posts {
    margin-right: 100px;
}

.footer__posts-title {
    font-weight: 700;
    font-size: 24px;
    color: #fff;
    margin-bottom: 35px;
    letter-spacing: 0.5px;
}

.footer__posts-item {
    display: flex;
    align-items: center;
}

.footer__posts-item:not(:last-child) {
    margin-bottom: 20px;
}

.footer__posts-img {
    width: 100px;
    height: 75px;
    margin-right: 15px;
}

.footer__posts-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.footer__posts-link {
    display: block;
    font-size: 16px;
    color: #bbbbbb;
    line-height: 23px;
    font-weight: 600;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 1.5em;
    width: 500px;
    transition: all 0.2s ease;
}

.footer__posts-link:hover {
    color: #e85442;
}

.footer__posts-content {
    max-width: 500px;
}

.footer__posts-date {
    color: #bbbbbb;
    font-size: 14px;
}

.footer__links-item {
    font-size: 16px;
    color: #bbbbbb;
    margin: 25px 0;
    transition: all 0.4s ease;
}

.footer__links-link {
    display: flex;
    align-items: center;
}

.footer__links-link span {
    opacity: 0;
    color: #e85442;
    transition: all 0.4s ease;
    margin-right: 0;
}

.footer__links-item:first-child {
    margin-top: 0;
}

.footer__links-item:hover {
    color: #e85442;
}

.footer__links-item:hover .footer__links-link span {
    opacity: 1;
    margin-right: 10px;
}

.footer__bottom {
    background: #15191b;
    padding: 20px 0;
}

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

.footer__copyright {
    font-size: 16px;
    color: #fff;
}

.footer__up-btn {
    outline: none;
    border: none;
    background-color: #e85442;
    padding: 10px;
    border-radius: 100%;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.footer__up-btn:hover {
    background-color: #fff;
    color: #000;
}

.info {
    padding: 90px 0;
}

.info .contact__right-input {
    width: 50%;
}

.info__inner {
    display: flex;
    justify-content: space-between;
}

.info__left {
    padding: 30px;
    box-shadow: 0px 0px 33px 0px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    margin-right: 30px;
    max-width: 440px;
}

.info__left-item {
    display: flex;
    align-items: center;
}

.info__left-icon {
    margin-right: 25px;
    min-width: 90px;
    min-height: 80px;
    background-color: #e85442;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    color: #fff;
    font-size: 35px;
}

.info__left-item:not(:last-child) {
    margin-bottom: 40px;
}

.info__left-title {
    color: #2f1010;
    font-size: 22px;
    font-weight: bold;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.info__left-text {
    color: #212529;
    line-height: 25px;
}


.testimonials {
    background-color: #fff;
    padding-bottom: 138px;
    padding-top: 100px;
}

.section__up-title {
    color: #2B59FF;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-align: center;
}

.section__title {
    font-size: 42px;
    line-height: 58px;
    margin-bottom: 0;
    text-align: center;
    color: #3c3c3c;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.section__title span {
    background: #ffc48b;
    display: inline-block;
    padding: 0 5px;
    border-radius: 10px;
}

.testimonials__swiper {
    max-width: 880px;
    padding: 0 15px;
    margin: 0 auto;
    position: relative;
}

.testimonials__swiper-slide {
    display: flex;
    align-items: center;
    background-color: #F7F5ED;
    border-radius: 20px;
    padding: 50px 37px;
}

.testimonials__swiper-avatar {
    margin-right: 22px;
}

.testimonials__swiper-avatar img {
    display: block;
    object-fit: cover;
    border-radius: 90px;
}

.testimonials__swiper-text {
    color: #666666;
    font-size: 16px;
    line-height: 35px;
    margin-bottom: 13px;
}

.testimonials__swiper-author {
    font-size: 16px;
    color: #666666;
}
.testimonials__swiper-ellipse {
    position: absolute;
    top: -157px;
    right: -60px;
    z-index: 1;
}

.plan {
    background-color: #F7F5ED;
    padding: 100px 0;
}

.plan__inner {
    display: flex;
    justify-content: space-between;
}

.plan__item {
    max-width: 214px;
}

.plan__item-banner {
    padding: 28px 27px 46px;
    border-radius: 20px;
    box-shadow: 10px 4px 60px 0 rgba(0, 0, 0, 7%);
    margin-bottom: 40px;
    border-right: 2px solid #ccc;
    border-bottom: 2px solid #ccc;
    box-shadow: 10px 4px 15px 0 rgba(111, 111, 111, 0.19);
}

.plan__item-banner-basic {
    background-color: #ECF2FA;
    /* box-shadow: #d5d5d5 2px 2px; */
}

.plan__item-banner-standart {
    background-color: #fff;
    /* box-shadow: #d5d5d5 2px 2px; */
}

.plan__item-banner-gold {
    background-color: #FFC48B;
    /* box-shadow: #d5d5d5 2px 2px; */
}

.plan__item-banner-premium {
    background-color: #D7D7D7;
    /* box-shadow: #d5d5d5 2px 2px; */
}

.plan__item-banner-platinum {
    background-color: #101C3A;
    /* box-shadow: #d5d5d5 2px 2px; */
    position: relative;
}

.plan__item-banner-platinum::after {
    content: 'Best';
    position: absolute;
    top: -11px;
    right: -16px;
    color: #101C3A;
    background-color: #47ED76;
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    padding: 8px 10px;
    border-radius: 10px;
}

.plan__item-banner-platinum .plan__item-name {
    color: #fff;
}

.plan__item-banner-platinum .plan__item-price {
    color: #fff;
}

.plan__item-banner-platinum .plan__item-info {
    color: #fff;
}

.plan__item-banner-platinum .plan__item-info span {
    color: #fff;
}

.plan__item-name {
    color: #101C3A;
    font-size: 32px;
    margin-bottom: 20px;
}

.plan__item-price {
    color: #3C3C3C;
    font-size: 32px;
    margin-bottom: 35px;
}

.plan__item-info {
    color: #101C3A;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 30px;
}

.plan__item-info span{
    font-size: 24px;
    color: #101C3A;
}

.plan__item-btn {
    margin-top: 21px;
    outline: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.8px;
    border-radius: 100px;
    padding: 15px 0;
    background-color: #E85442;
    border: none;
    width: 100%;
    cursor: pointer;
    transition: all .2s linear;
}

.plan__item-btn:hover {
    background-color: #31274b;
}

.plan__item-features {
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    color: #3C3C3C;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #666666;
    padding-bottom: 20px;
    margin-bottom: 29px;
}

.plan__item-features-text {
    max-width: 170px;
}

.plan__item-item {
    display: flex;
    align-items: start;

    font-size: 14px;
}

.plan__item-item:not(:last-child) {
    margin-bottom: 22px;
}

.plan__item-item img {
    margin-right: 10px;
}

.plan__item-item-partners {
    display: block;
}

.plan__item-partners {
    padding-left: 27px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
}

.plan__item-partners-item {
    display: flex;
    align-items: center;
    justify-content: center;   
}

.plan__item-more {
    padding-left: 27px;
    color: #666666;
    font-size: 14px;
    line-height: 14px;
    margin-top: 15px;
}

.popup {
    z-index: 1000;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    backdrop-filter: blur(10px);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s linear;
    pointer-events: none;
    visibility: hidden;
}

.popup.active {
    backdrop-filter: blur(10px);
    opacity: 1;
    pointer-events: all;
    visibility: visible;
    cursor: pointer;

}

.popup__inner {
    background-color: #FFC48B;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 10px 0 60px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.popup__form-input {
    outline: none;
    border: none;
    margin-bottom: 20px;
    width: 400px;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #dd8734;
}

.popup__form-input::placeholder {
    color: #000;
    font-family: 'DM Sans', sans-serif;
}

.popup__form-textarea {
    margin-bottom: 20px;
    border-radius: 10px;
    padding: 15px;
    border: none;
    border: 1px solid #dd8734;
}

.popup__form-textarea::placeholder {
    color: #000;
    font-family: 'DM Sans', sans-serif;
}

.popup__form-btn {
    border-radius: 10px;
    outline: none;
    border: none;
    padding: 15px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    cursor: pointer;
    background-color: #E85442;
    color: #fff;
    transition: all .2s linear;
    opacity: 1;
}

.popup__form-btn:hover {
    opacity: .8;
}

@media (max-width: 1300px) {
    .plan__inner {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px 0;
    }
    .plan__item {
        justify-self: center;
    }
}

@media (max-width: 1208px) {
    .solutions__img-block {
        text-align: center;
    }

}

@media (max-width: 1100px) {
    .contact__left {
        margin-right: 60px;
    }
    .latest__items {
        grid-template-columns: repeat(2, 1fr);
    }
    .latest__item {
        max-width: 100%;
    }
    .latest__item-link {
        width: 100%;
    }
    .footer__form-block {
        width: 240px;
    }
    .testimonials__swiper-ellipse {
        max-width: 257px;
        right: 0;
    }
}

@media (max-width: 1000px) {
    .header__mobile-nav {
        display: block;
        position: absolute;
        top: -600%;
        left: 0;
        right: 0;
        background-color: #1d2c38;
        z-index: 1000;
        transition: all 0.2s ease;
    }
    .header__mobile-nav.active {
        top: 50px;
    }
    .header__container {
        position: relative;
    }
    .header__nav {
        display: none;
    }
    .header__burger {
        display: block;
        width: 33px;
        height: 20px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .header__burger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #fff;
    }

    .header__burger span::after {
        content: '';
        display: block;
        width: 100%;
        height: 2px;
        background-color: #fff;
        position: absolute;
        left: 0;
        bottom: 0;
    }

    .header__burger span::before {
        content: '';
        display: block;
        width: 100%;
        height: 2px;
        background-color: #fff;
        position: absolute;
        left: 0;
        top: 0;
    }
    .header__mobile-link {
        display: block;
        padding: 15px;
        color: #fff;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 14px;
    }
    .plus-btn {
        font-size: 24px;
        font-weight: 700;
        transform: rotateZ(0);
        transition: all 0.2s ease;
    }

    .plus-btn.active {
        transform: rotateZ(135deg);
    }

    .header__mobile-dropdown {
        padding-left: 15px;
        transition: max-height 0.3s ease;
        overflow: hidden;
        max-height: 0;
    }
    .header__mobile-dropdown-link {
        display: block;
        padding: 15px;
        color: #fff;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        font-size: 14px;
        transition: all 0.2s ease;
    }
    .header__mobile-dropdown-link:hover {
        background-color: #e85442;
    }
    .contact__left {
        margin-right: 0;
        margin: 0 auto;
        margin-bottom: 30px;
        max-width: 750px;
    }
    .contact__right {
        margin: 0 auto;
    }
    .contact__inner {
        flex-direction: column;
    }
    .contact__right-form {
        text-align: center;
    }
    .contact__left-uptitle {
        text-align: center;
    }
    .contact__left-title {
        text-align: center;
    }
    .contact__right-title {
        text-align: center;
    }
    .footer__form-btn {
        padding: 14px 24px;
    }
    .footer__posts {
        margin-right: 0;
    }
    .footer__top-left {
        max-width: 320px;
    }
    .info__left {
        padding: 30px;
        box-shadow: 0px 0px 33px 0px rgba(0, 0, 0, 0.1);
        border-radius: 15px;
        margin-right: 30px;
        max-width: 350px;
    }
}

@media (max-width: 800px) {
    .hero__inner {
        flex-direction: column;
        align-items: center;
        padding-bottom: 80px;
    }
    .hero__img {
        margin-top: 40px;
    }
    .hero__content {
        max-width: none;
        width: 100%;
        text-align: center;
    }
    .hero__text {
        max-width: 100%;
    }
    .hero__btn {
        margin-left: auto;
        margin-right: auto;
    }
    .hero__title {
        font-size: 52px;
        margin-right: auto;
        margin-left: auto;
    }
    .about__inner {
        flex-direction: column;
        padding-bottom: 30px;
    }
    .about__img {
        margin: 20px auto 30px;
        max-width: 400px;
    }
    .about__content {
        margin-left: 0;
        margin: 0 auto;
        text-align: center;
    }
    .about__title {
        margin-bottom: 25px;
        font-size: 32px;
    }
    .about__text {
        padding: 0;
        max-width: 100%;
    }
    .solutions__swiper {
        max-width: 500px;
        margin: 0 auto;
    }
    .solutions {
        padding: 100px 0;
    }
    .solutions__title {
        font-size: 32px;
    }
    .contact__left-title {
        font-size: 32px;
    }
    .latest__header-title {
        font-size: 32px;
        line-height: 32px;
        margin-bottom: 20px;
    }
    .latest__header {
        flex-direction: column;
    }
    .latest__items {
        grid-template-columns: repeat(1, 1fr);
    }
    .footer__top {
        flex-direction: column;
    }
    .footer__top-left {
        max-width: 100%;
        margin-bottom: 30px;
    }
    .footer__top-right {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .footer__top-form {
        display: flex;
    }
    .footer__form-block {
        width: 310px;
    }
    .footer__latest {
        flex-direction: column;
    }
    .footer__posts-items {
        margin-bottom: 20px;
    }
    .footer__posts-link {
        width: 100%;
        height: auto;
        display: block;
        overflow: visible;
        transition: all 0.2s ease;
    }
    .footer__posts-img img {
        width: 100px;
        height: 75px;
    }
    .footer {
        padding-top: 50px;
    }
    .footer__latest {
        padding-bottom: 50px;
    }
    .footer__posts {
        margin-bottom: 30px;
    }
    .info__inner {
        flex-direction: column;
    }
    .info__left {
        margin-right: 0;
        max-width: 100%;
        margin-bottom: 30px;
    }
    .info__left-item {
        flex-direction: column;
        align-items: start;
    }
    .info__left-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .info {
        padding: 45px 0;
    }
    .testimonials__swiper-slide {
        padding: 25px 15px;
        flex-direction: column;
    }

    .testimonials__swiper-avatar {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .section__title {
        font-size: 32px;
    }

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

@media (max-width: 600px) {
    .contact__right {
        width: 100%;
    }
    .contact__right-input {
        width: 50%;
    }
    .footer__top-form {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .footer__form-block {
        margin-right: 0;
        margin-bottom: 20px;
        width: 100%;
    }
    .plan__inner {
        grid-template-columns: repeat(1, 1fr);
    }
    .popup__form-input {
        width: 300px;
    }
}

@media (max-width: 450px) {
    .contact__right-inputs {
        flex-direction: column;
    }
    .contact__right-input {
        margin: 0 !important;
        margin-bottom: 20px !important;
        width: 100%;
    }
    .contact__right-title {
        font-size: 32px;
    }
    .latest__item-tag {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .latest__item-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .info .contact__right-input {
        width: 100%;
    }
    .popup__form-input {
        width: 250px;
    }
}
