:root {
    --secondary: #989DA6;
    --dark: #273043;
    --white: #ffffff;
    --grey: #A2A4AA;
}

.mt128 {
    margin-top: 128px;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
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: inherit;
    vertical-align: baseline;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

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

body {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    overflow: scroll;
    font-family: 'Gilroy';
    padding-top: 100px;
}

a {
    text-decoration: none;
}

p {
    margin-bottom: 0 !important;
}

button {
    outline: none;
    border: none;
    cursor: pointer;
}

img {
    width: 100%;
}



@font-face {
    font-family: Gilroy-ExtraBold;
    src: url("fonts/Gilroy-ExtraBold.ttf");
    font-size: 24px;
    line-height: 36px;
}

@font-face {
    font-family: Gilroy-Bold;
    src: url("fonts/Gilroy-Bold.ttf");
    font-size: 28px;
    line-height: 36px;
}

@font-face {
    font-family: Gilroy-Medium;
    src: url("fonts/Gilroy-Bold.ttf");
    font-size: 24px;
    line-height: 36px;
    font-weight: 200;
}

@font-face {
    font-family: Gilroy-SemiBold;
    src: url("fonts/Gilroy-SemiBold.ttf");
    font-size: 24px;
    line-height: 36px;
}

@font-face {
    font-family: Gilroy-Regular;
    src: url("fonts/Gilroy-Regular.ttf");
    font-size: 18px;
    line-height: 22px;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    background: #FFFFFF;
}

.nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.nav__logo {
    position: relative;
    z-index: 3;
}

.nav__logo img {
    max-width: 200px;
    width: 100%;
}

.nav__body {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.nav__list {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
}

.nav__burger {
    display: none;
}

.nav__item {
    list-style-type: none;
    margin-left: 40px;
}

.nav__link {
    font-family: Gilroy-SemiBold;
    font-style: normal;
    font-size: 16px;
    text-decoration: none;
    color: #181A20;
}

.nav__link:hover {
    color: #181A20;
}

.nav__btn {
    max-width: 122px;
    width: 100%;
    font-weight: 400;
    color: #FFFFFF;
    padding: 14px 20px;
    border-radius: 15px;
    background: #246BFD;
}

.nav__burger.active:after {
    transform: rotate(-45deg);
    bottom: 9px;
}

.nav__burger.active:before {
    transform: rotate(45deg);
    top: 9px;
}

.nav__burger.active span {
    transform: scale(0);
}

.nav__apps {
    display: flex;
    margin-left: 40px;
}

@media (max-width: 992px) {
    .nav__burger {
        display: block;
        position: relative;
        width: 30px;
        height: 20px;
        position: relative;
        z-index: 3;
    }

    .nav__burger:before,
    .nav__burger:after {
        content: "";
        background-color: #606c80;
        position: absolute;
        width: 100%;
        height: 2px;
        left: 0;
        transition: all 0.3 ease 0s;
    }

    .nav__burger:before {
        top: 0;
    }

    .nav__burger:after {
        bottom: 0;
    }

    .nav__burger span {
        position: absolute;
        background-color: #606c80;
        left: 0;
        width: 100%;
        height: 2px;
        top: 9px;
        transition: all 0.3 ease 0s;
    }

    .nav__menu {
        display: none;
        position: fixed;
        top: 3%;
        left: 0;
        width: 100%;
        height: 65%;
        border-radius: 10px;
        background: #fff;
        padding: 100px 0 0;
    }

    .nav__menu ul {
        margin-left: 60px;
    }

    .nav__menu.active {
        top: 20px;
        display: block;
    }

    .nav__list {
        display: block;
        margin-left: 30px;
    }

    .nav__list li {
        margin: 0px 0px 20px 0px;
    }

    .nav__list:hover {
        padding-top: 0px;
        padding-bottom: 5px;
    }

    .nav__apps {
        margin-left: 0px;
    }
}

.footer {
    border-top: 2px solid #F2F2F2;
    padding-top: 50px;
    padding-bottom: 30px;
}

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

.footer__menu {
    display: flex;
}

.footer__menu_title {
    font-family: Gilroy-Medium;
    font-size: 18px;
    line-height: 22px;
    color: #273043;
}

.footer__menu_list {
    margin-right: 52px;
}

.footer__menu_list a {
    text-decoration: none;
    color: #273043;
}

.footer__menu_list li {
    margin-bottom: 16px;
}

.footer__menu_item {
    font-family: Gilroy-Regular, sans-serif;
    font-size: 16px;
    line-height: 22px;
    color: #273043;
}

.footer__block_icons {
    display: flex;
    justify-content: end;
    align-items: center;
}

.footer__block_icons .block-icon {
    margin-left: 14px;
}

.footer__block_text {
    max-width: 180px;
    width: 100%;
    font-family: Gilroy-Regular;
    font-size: 14px;
    line-height: 22px;
    text-align: right;
    color: #273043;
    opacity: 0.5;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .footer__body {
        flex-direction: column;
    }

    .footer__block {
        max-width: 180px;
        width: 100%;
        display: flex;
        justify-content: end;
        flex-direction: column;
    }

    .footer__menu_list {
        margin-right: 15;
    }
}

.header {
    background: linear-gradient(295.43deg, rgba(154, 204, 198, 0.17) 20.14%, rgba(97, 97, 97, 0) 103.96%);
}

.header__body {
    display: flex;
    justify-content: space-between;
    padding-top: 82px;
    padding-bottom: 20px;
}

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

.header__title {
    max-width: 555px;
    width: 100%;
    font-family: Gilroy-ExtraBold;
    font-size: 48px;
    line-height: 64px;
    color: var(--dark);
}

.header__text {
    max-width: 570px;
    width: 100%;
    font-family: Gilroy-Regular;
    font-size: 24px;
    line-height: 36px;
    color: var(--dark);
}

.header__icons {
    display: flex;
    margin-top: 63px;
}

.header__icon {
    margin-right: 21px;
}

.header__icon img {
    max-width: 166px;
    width: 100%;
    height: 46px;
}

.header__images {
    max-width: 524px;
    width: 100%;
}

@media (max-width: 1200px) {
    .header__title {
        font-size: 44px;
    }

    .header__text {
        font-size: 20px;
    }

    .header__images {
        max-width: 400px;
        width: 100%;
    }
}

@media (max-width: 992px) {
    .header__body {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .header__images {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .header__text {
        margin-bottom: 20px !important;
    }

    .header__icons {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .header__title {
        font-size: 40px;
    }

    .header__text {
        font-size: 18px;
    }

    .header__icon img {
        max-width: 128px;
        width: 100%;
        height: 40px;
    }
}

@media (max-width: 500px) {
    .header__body {
        padding-top: 40px;
    }

    .header__title {
        font-size: 32px;
        text-align: center;
    }

    .header__text {
        font-size: 16px;
        text-align: center;
    }
}

.benefits {
    margin-top: 128px;
}

.benefits__title {
    font-family: Gilroy-SemiBold;
    font-size: 36px;
    line-height: 42px;
    text-align: center;
}

.benefits__body {
    display: flex;
    flex-direction: column;
    margin-top: 64px;
}

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

.benefits__body_block {
    max-width: 580px;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 100px 48px;
    background: #FDFDFF;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
}

.benefits__body_block .block-icon {
    margin-right: 36px;
}

.benefits__body_block .block-text {
    font-family: Gilroy-Regular;
    font-size: 22px;
    line-height: 28px;
    max-width: 365px;
    width: 100%;
    color: var(--dark);
}

@media (max-width: 1400px) {
    .benefits__body_block {
        max-width: 480px;
        width: 100%;
        padding: 77px 48px;
    }
}

@media (max-width: 1200px) {
    .benefits {
        margin-top: 80px;
        margin-bottom: 30px;
    }

    .benefits__title {
        font-size: 32px;
    }

    .benefits__body_block {
        max-width: 580px;
        width: 100%;
        height: 120px;
        padding: 77px 48px;
        margin-bottom: 20px;
    }

    .benefits__body_box {
        flex-direction: column;
        margin-bottom: 0;
    }
}

@media (max-width: 600px) {
    .benefits__body_block {
        padding: 65px 20px;
    }

    .benefits__body_block .block-text {
        font-size: 18px;
    }

    .benefits__title {
        font-size: 28px !important;
    }
}

@media (max-width: 480px) {
    .benefits__body_block {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        flex-direction: column;
        height: 186px;
        padding: 30px;
        margin-bottom: 20px;
    }

    .benefits__body_block .block-icon {
        max-width: 44px;
        width: 100%;
        height: 44px;
        margin-right: 0;
    }

    .benefits__body_block .block-text {
        text-align: center;
        margin-top: 10px;
    }
}

.works {
    background: #273043;
    padding-bottom: 128px;
    position: relative;
}

.works__title {
    position: relative;
    font-family: Gilroy-SemiBold;
    font-size: 36px;
    line-height: 42px;
    color: #ffffff;
    text-align: center;
    padding-top: 62px;
    padding-bottom: 96px;
    margin-bottom: 0;
}

.works__block {
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
    margin-bottom: 40px;
    padding-left: 20px;
}

.works__block_step {
    font-family:Gilroy-Regular;
    font-size: 16px;
    line-height: 19px;
    color: var(--secondary);
}

.works__block_subtitle {
    font-family: Gilroy-Regular;
    font-size: 28px;
    line-height: 36px;
    color: var(--white);
}

.works__block_text {
    max-width: 440px;
    width: 100%;
    font-family: Gilroy-Regular;
    font-size: 20px;
    line-height: 28px;
    color: var(--grey);
}

.works__steps {
    display: flex;
    position: relative;
}

.works__steps_text {
    margin-left: 150px;
}

.works__body {
    display: flex;
    justify-content: space-between;
    height: 2144px;
}

.works__steps_img {
    position: sticky;
    top: 120px;
    max-width: 300px;
    margin-right: 100px;
    width: 100%;
    height: fit-content;
}

.works__images {
    max-width: 200px;
    width: 100%;
    display: none;
}

.step_img2 {
    display: none;
}

.step_img3 {
    display: none;
}

.step_img4 {
    display: none;
}

.step_img5 {
    display: none;
}

@media (max-width: 1200px) {
    .works__steps_img {
        margin-right: 0;
    }

    .works__steps_text {
        margin-left: 0;
    }
}

@media (max-width: 992px) {
    .works__body {
        flex-direction: column;
    }

    .step_img1 {
        display: none;
    }

    .step_img2 {
        display: none;
    }

    .step_img3 {
        display: none;
    }

    .step_img4 {
        display: none;
    }

    .step_img5 {
        display: none;
    }

    .works__steps_img {
        display: none;
    }

    .works__steps {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .works__block {
        padding-bottom: 0;
        padding-left: 0;
        margin-bottom: -96px;
    }

    .works__title {
        font-size: 30px;
        padding-bottom: 0;
    }

    .works__steps_text {
        text-align: center;
        margin-bottom: 15px;
    }

    .works__block_text {
        margin-top: 8px;
    }

    .works__images {
        display: block;
    }

    .works__block_subtitle {
        margin-top: 8px;
    }

    .works__body {
        height: 3079px;
    }
}

@media (max-width: 600px) {
    .works__body {
        height: 2930px;
    }

    .works__block_subtitle {
        font-size: 24px;
    }

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

@media (max-width: 472px) {
    .works__block {
        padding-top: 80px;
    }

    .works__body {
        height: 2712px;
    }
}

.mobile {
    padding-top: 120px;
    padding-bottom: 30px;
}

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

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

.mobile__body_block .mobile_title {
    max-width: 459px;
    width: 100%;
    font-family: Gilroy-ExtraBold;
    font-style: normal;
    font-weight: normal;
    font-size: 58px;
    line-height: 68px;
}

.mobile__body_block .mobile_text {
    max-width: 463px;
    width: 100%;
    font-family: Gilroy-Regular;
    font-size: 18px;
    line-height: 22px;
    margin-top: 34px;
}

.mobile__body_block .mobile__icons {
    display: flex;
    margin-top: 36px;
}

.mobile__body_block .mobile__icons .mobile_icon {
    margin-right: 20px;
}

.mobile__body_block .mobile_img {
    margin-top: 60px;
}

.mobile__images img {
    max-width: 574px;
    width: 100%;
}

@media (max-width: 1200px) {
    .mobile__body_block .mobile_title {
        font-size: 54px;
    }

    .mobile__body_block .mobile_img {
        max-width: 382px;
        width: 100%;
    }

    .mobile__images img {
        max-width: 413px;
        width: 100%;
    }
}

@media (max-width: 992px) {
    .mobile {
        padding-top: 50px;
    }

    .mobile__body_block .mobile_title {
        font-size: 42px;
    }

    .mobile__body_block .mobile_img {
        display: none;
    }

    .mobile__body_block .mobile_text {
        max-width: 350px;
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .mobile__body {
        flex-direction: column;
    }

    .mobile__body_block {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }

    .mobile__body_block .mobile_title {
        font-size: 28px;
        text-align: center;
    }

    .mobile__body_block .mobile_text {
        text-align: center;
    }

    .mobile__body_block .mobile__icons {
        margin-bottom: 30px;
    }

    .mobile__images img {
        max-width: 300px;
    }
}

.readmore {
    background: #F4F5F6;
    padding-top: 50px;
    margin-bottom: 50px;
}

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

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

.readmore__block_title {
    font-family: Gilroy-SemiBold;
    font-size: 38px;
    line-height: 44px;
    color: #12022F;
}

.readmore__block_text {
    max-width: 445px;
    width: 100%;
    font-family: Gilroy-Regular;
    font-weight: normal;
    font-size: 18px;
    line-height: 28px;
    color: #273043;
    margin-top: 20px;
    margin-bottom: 38px;
}

.readmore__block_btn {
    font-family: Gilroy-Medium;
    max-width: 220px;
    width: 100%;
    background: #1B998B;
    color: #FFFFFF;
    text-decoration: none;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
}

.readmore__block_btn:hover {
    color: #FFFFFF;
}

.readmore__images {
    max-width: 336px;
    width: 100%;
    margin-right: 100px;
}

@media (max-width: 992px) {
    .readmore__images {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .readmore__body {
        flex-direction: column;
    }

    .readmore__images {
        max-width: 280px;
        width: 100%;
    }

    .readmore__block {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }

    .readmore__block_title {
        font-size: 30px;
    }

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

    .readmore__block_btn {
        margin-bottom: 20px;
    }
}

.blog {
    padding-top: 80px;
}

.blog__title {
    max-width: 527px;
    width: 100%;
    font-family: Gilroy-Bold, sans-serif;
    font-size: 28px;
    line-height: 36px;
    text-transform: capitalize;
    color: #273043;
}

.blog__body {
    display: flex;
    justify-content: space-between;
    margin-top: 48px;
}

.blog__body_block {
    max-width: 382px;
    width: 100%;
}

.blog__content {
    position: relative;
    height: 467px;
    background: #F1F5F6;
    padding: 28px;
    margin-top: 52px;
    margin-bottom: 48px;
}
.blog__img {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 679px;
    width: 100%;
    height: 467px;
}
.body_block-title {
    max-width: 469px;
    width: 100%;
    font-family: Gilroy-Bold;
    font-size: 20px;
    line-height: 28px;
    color: #273043;
    margin-top: 16px;
}

.body_block-date {
    font-family: Gilroy-Medium;
    font-size: 16px;
    line-height: 24px;
    text-transform: capitalize;
    color: #686868;
    margin-top: 12px;
}

.body_block-text {
    max-width: 469px;
    width: 100%;
    font-family: Gilroy-Medium;
    font-size: 16px;
    line-height: 24px;
    color: #292929;
    margin-top: 12px;
}
.blog__btn {
    width: 100%;
    padding: 15px;
    background: #F1F5F6;
    border-radius: 12px;
    font-family: Gilroy-Medium;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    letter-spacing: -0.36px;
    color: #292929;
    margin-bottom: 40px;
}

.content-more {
    transition: height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 150ms;
}
.morecontent span {
    display: none;
}
.morelink {
    font-family: Gilroy-Medium;
    font-size: 16px;
    line-height: 24px;
    color: #1B998B;
    transition: 3s ;
}
.blog__body_more {
    display: none;
    margin-bottomuwvawrvs: 40px;
}
.help__search {
    position: relative;
    background-image: url("");
    padding-top: 80px;
    padding-bottom: 128px;
}
.help__search_form {

}
.help__search_title {
    font-family: Gilroy-Bold;
    font-size: 28px;
    line-height: 36px;
    color: #273043;
    text-align: center;
    margin-bottom: 48px;
}
.help__search_input {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}
.help__search_input input{
    max-width: 746px;
    width: 100%;
    padding: 22px;
    padding-right: 61px;
    outline: none;
    font-family: Gilroy-Medium;
    background: #FDFDFF;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
}
.help__search_input input:hover  {
    border: 1px solid #1B998B;
}
.help__search_input input::placeholder {
    font-family: Gilroy-Medium;
    font-size: 18px;
    line-height: 28px;
    display: flex;
    align-items: center;
    color: #000000;
    opacity: 0.5;
}
.help__search_btn {
    position: absolute;
    top: 17px;
    right: 46px;
    background: none;
    cursor: pointer;
}
.help__content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-bottom: 64px;
    padding-top: 40px;
}
.help__content_block {
    max-width: 280px;
    width: 100%;
    padding: 34px 18px 26px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #FDFDFF;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
}
.help__content_title{
    font-family: Gilroy-SemiBold;
    font-size: 24px;
    line-height: 32px;
    color: #273043;
    margin-top:12px;
}
.help__content_text {
    font-family: Gilroy-Medium;
    font-size: 16px;
    line-height: 30px;
    color: #273043;
    margin-top: 9px;
}
.faqs {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #F1F5F6;
}
.faqs__title {
    font-family: Gilroy-Bold;
    font-size: 28px;
    line-height: 36px;
    text-transform: capitalize;
    color: #273043;
    text-align: center;
}
.accordion {
    width: 100%;
    margin: 0 auto;
}
.accordion-item {
    background: #FDFDFF;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    margin-bottom: 10px;
}
.accordionTitle {
    font-family: Gilroy-Medium;
    font-size: 24px;
    line-height: 32px;
    color: #273043;
    padding: 20px;
    position: relative;
    border-radius: 16px;
    font-style: normal;
    font-weight: 500;
    background: #FDFDFF;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
    transition: ease-in-out 0.2s all;
    cursor: pointer;
}
.accordion-txt {
    max-width: 700px;
    width: 100%;
    font-family: Gilroy-Regular;
    font-size: 18px;
    line-height: 26px;
    color: #273043;
}
.accordionTitleActive {
    box-shadow:none;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}
.accordionTitle:before,
.accordionTitle:after {
    content:'';
    position: absolute;
    border-radius: 16px;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.accordionTitle:before {
    width: 100%;
    background-color: #c9d6df;
}
.accordionTitle:after {
    padding: 8px 8px 0px 0px;
}
.accordionTitle:hover::after {
    width: 100%;
}
.accordionTitleActive:after {
    content:'';
    position: absolute;
    height: 2px;
    border-radius: 16px;
    transition: ease-in-out 0.6s all;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.accIcon {
    float: right;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.accIcon:before,
.accIcon:after {
    content:'';
    position: absolute;
    border-radius:16px;
    background-color:#1B998B;
    transition: ease 0.3s all;
}
.accIcon:before {
    width: 2px;
    height: 24px;
}
.accIcon:after {
    width: 24px;
    height: 2px;
}
.accordionTitle:hover .accIcon:before,
.accordionTitle:hover .accIcon:after {
    background: #1B998B;
}
.accIcon.anime.accIcon:before {
    transform: rotate(90deg);
}
.accordion-text {

}
.accordion .accordion-item .accordion-text {
    opacity: 0;
    height: 0;
    padding: 0px 20px;
    position: relative;
    line-height: 24px;
    font-size: 16px;
    font-weight: 200;
    transition: all 0.6s cubic-bezier(.42,.2,.08,1);
    overflow: hidden;
    background: #F8F8F8;
    letter-spacing: 0.5px;
}
.accordion .accordion-item .accordion-text.show {
    font-family: Gilroy-Regular;
    font-size: 18px;
    line-height: 26px;
    color: #273043;
    background: #FDFDFF;
    opacity: 1;
    height: auto;
    padding: 0 20px 20px 20px;
    position: relative;
    z-index: 0;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
}
.accordion-item:last-of-type {
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
}
.accordion-item:first-of-type {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}
.info {
    padding-top: 32px;
    padding-bottom: 52px;
}
.info h5 {
    font-family: Gilroy-Bold;
    font-size: 28px;
    line-height: 36px;
    text-transform: capitalize;
    color: #273043;
    text-align: center;
    margin-bottom: 40px;
}
.mt20px {
    margin-top: 20px;
}

.tabs {
    /*position: relative;*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    max-width: 500px;
    width: 100%;
    font-family: Gilroy-Bold;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    text-transform: capitalize;
    color: #273043;
    list-style-type: none;
    overflow-x: auto;
    margin-top: 52px;
}
.tab-hr {
    border: 1px solid #D9D9D9;
    margin-top: -1px;
}
.tabs a {
    display: block;
    padding: 10px;
    text-decoration: none;
    text-transform: capitalize;
    border-bottom: 2px solid transparent;
    position: relative;
    color: #273043;
    margin-bottom: 0;
}
.tab-link.activeTab {
    color: #1B998B;
}
.tabs a.activeTab::after {
    content: '';
    width: 100%;
    height: 3px;
    background-color: #1B998B;
    position: absolute;
    bottom: -2px;
    left: 0;
    color: #1B998B;
    border-radius: 4px;
}
.tab-panel {
    padding: 10px;
    font-size: 14px;
}
.tab-panel h4 {
    max-width: 430px;
    width: 100%;
    font-family: Gilroy-SemiBold;
    font-size: 22px;
    line-height: 24px;
    color: #273043;
    margin-bottom: 2px;
}
.tab-panel p {
    font-family: Gilroy-SemiBold;
    font-weight: 200px;
    font-size: 16px;
    line-height: 24px;
    color: #454851;
    opacity: .9;
    margin-bottom: 30px !important;
}
.tab-panel h3 {
    font-family: Gilroy-SemiBold;
    font-size: 18px;
    line-height: 24px;
    color: #000000 !important;
    opacity: 2;
}
.tab-panel ul li {
    font-family: Gilroy-SemiBold;
    font-weight: 200px;
    font-size: 16px;
    line-height: 24px;
    color: #454851;
    opacity: .9;
    margin-bottom: 15px !important;
    margin-left: 15px !important;
}
.tab-panel ul li span{
    font-family: Gilroy-SemiBold;
    font-size: 18px;
    line-height: 24px;
    color: #000000 !important;
    opacity: 2;
}


.pricing {
    padding-top: 80px;
    padding-bottom: 96px;
    background: #F1F5F6;
}
.pricing__title {
    font-family: Gilroy-Bold;
    font-size: 28px;
    line-height: 26px;
    text-transform: capitalize;
    color: #273043;
    text-align: center;
}
.pricing__subtitle {
    font-family: Gilroy-SemiBold;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    color: #273043;
    text-align: center;
    margin-top: 32px;
}
.pricing__content {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    margin-top: 30px;
}
.pricing__content_title {
    font-family: Gilroy-Medium;
    font-size: 20px;
    line-height: 28px;
    color: #273043;
}
.pricing__content_block {
    display: flex;
    align-items: center;
}
.pricing__content_icon {
    max-width: 24px;
    width: 100%;
    height: 24px;
}
.pricing__content_text {
    font-family: Gilroy-SemiBold;
    font-size: 20px;
    line-height: 23px;
    display: flex;
    align-items: center;
    color: #1B998B;
    margin-left: 12px;
}
.pricing__body_block {
    max-width: 276px;
    width: 100%;
    padding: 38px;
    background: #FDFDFF;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.pricing__body_block .body_block-title {
    font-family: Gilroy-SemiBold;
    font-size: 50px;
    line-height: 59px;
    text-align: center;
    color: #273043;
}
.pricing__body_block .body_block-text {
    font-family: Gilroy-SemiBold;
    font-size: 30px;
    line-height: 35px;
    text-align: center;
    color: #273043;
    opacity: 0.8;
}
.pricing__body_block .body_block-btn {
    max-width: 104px;
    width: 100%;
    padding: 0 20px 0 20px;
    background: #F1F5F6;
    border-radius: 30px;
    font-family: Gilroy-SemiBold;
    font-size: 28px;
    line-height: 40px;
    color: #1B998B;
    margin-top: 15px;
}
.pricing__body {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 28px;
}
.pricing-green {
    background: #CEECE9;
}
.pricing-light {
    color: #FFFFFF !important;
}
.pricing_light-bg {
    background: #FDFDFF;;
}
.pricing_green-text {
    color: #FFFFFF !important;
    opacity: 0.8 !important;
}
@media (max-width: 1400px) {
    .blog__content-texts {
        position: relative !important;
        z-index: 2 !important;
    }
    .blog__body_block {
        max-width: 290px;
        width: 100%;
    }
    .blog__img img{
        opacity: .6;
        z-index: 1;
    }
}
@media (max-width: 992px) {
    .help__content {
        flex-direction: column;
    }
    .help__content_block {
        margin-bottom: 20px;
        padding: 13px 18px 7px;
    }
    .help__content_title {
        font-size: 16px;
    }
    .nav__menu ul {
        margin-left: 20px;
    }
    .blog__img {
        max-width: 696px;
    }
    .blog__img img{
        opacity: .4;
        z-index: 1;
    }
    .blog__body {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin: 0 auto;
    }
    .blog__title {
        padding-bottom: 30px;
        margin: 0 auto;
    }
    .blog__body_block {
        max-width: 464px;
        width: 100%;
        margin-bottom: 30px;
    }
    .pricing__body_block {
        max-width: 175px;
        width: 100%;
        padding: 15px;
    }
    .pricing__body_block .body_block-title {
        font-size: 33px;
    }
    .pricing__body_block .body_block-btn {
        max-width: 78px;
        width: 100%;
        font-size: 21px;
    }
    .pricing__body_block .body_block-text {
        font-size: 20px;
    }
}
@media (max-width: 768px) {
    .blog__img {
        display: none;
    }
    .blog__content {
        height: max-content;
    }
    .pricing__body {
        flex-direction: column;
    }
    .pricing__body_block {
        max-width: 275px;
        width: 100%;
        padding: 34px;
        margin-bottom: 20px;
    }
    .pricing__body_block .body_block-title {
        font-size: 33px;
    }
    .pricing__body_block .body_block-btn {
        max-width: 78px;
        width: 100%;
        font-size: 21px;
    }
    .pricing__body_block .body_block-text {
        font-size: 20px;
    }
}
@media (max-width: 425px) {
    .accordionTitle {
        font-size: 16px;
    }
}
