* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    list-style: none;
    font-family: 'PT Sans', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 22px;
    text-decoration: none;
    color: var(--first-text-color);
}

:root {
    --first-text-color: #2A2A2A;
    --second-text-color: #2C4916;
    --input-text-color: #0C101D;
}

a {
    cursor: pointer;
}

body,
html {
    overflow-x: hidden;
}

html.no-scroll {
    overflow: hidden;
}

.title {
    font-weight: 700;
    font-size: 48px;
    line-height: 59px;
    font-family: "Montserrat";
}

.title_center {
    text-align: center;
}

.container {
    width: 1530px;
    margin: 0 auto;
}

.btn {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px !important;
    text-align: center;
    color: #FFFFFF !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #02A83A 0%, #282E28 100%) !important;
    box-shadow: 7px 4px 21px rgba(140, 247, 90, 0.25);
    border-radius: 2px !important;
    border: none !important;
    cursor: pointer;
    transition-duration: .2s;
}

.btn:hover {
    opacity: .9;
}

input[type="tel"] {
    background: rgba(2, 168, 58, 0.1);
    border: 1px solid #223531;
    border-radius: 2px;
    font-size: 16px;
    line-height: 20px;
    color: var(--input-text-color);
    padding: 10px 10px 10px 20px;
}

.items {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.items li {
    font-size: 16px;
    line-height: 21px;
    position: relative;
    padding: 0 0 0 30px;
}

.items li:before {
    content: "";
    width: 24px;
    height: 24px;
    background-image: url('../image/items.svg');
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
}

.items_white-icons li:before {
    background-image: url('../image/items_white.svg');
}

.header .container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#header-fixed.fixed {
    position: fixed;
    top: 0;
    z-index: 10;
}

.header .header__inner {
    background: #223433;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.13);
}

.header__logo {
    width: 134px;
}

.header__logo img {
    width: 100%;
}

.header__contacts {
    display: flex;
    align-items: center;
    gap: 45px;
}

.header__contacts a:not(.header__signin) {
    font-size: 14px;
    line-height: 18px;
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    position: relative;
    padding: 0 0 0 30px;
}

.header__contacts a:not(.header__signin):before {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    background-size: contain;
    background-repeat: no-repeat;
}

.header__signin {
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    color: #FFFFFF;
}

.header__mail:before {
    background-image: url('../image/email.svg');
}

.header__phone:before {
    background-image: url('../image/phone.svg');
}

.header > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    padding-bottom: 15px;
}

.header__burger {
    display: none;
}

.header__menu ul {
    display: flex;
    gap: 50px;
}

.header__form {
    display: flex;
    gap: 20px;
}

.header__form .btn {
    width: 204px;
    height: 53px;
}

.header__form input[type="tel"] {
    width: 268px;
    height: 53px;
}

.banner__title {
    margin: 0 0 30px 0;
}

.banner__subtitle {
    font-size: 17px;
    line-height: 22px;
    margin: 0 0 60px 0;
}

.banner b {
    font-weight: 900;
    color: #2C4916;
}

.banner__desc p {
    font-size: 17px;
    line-height: 22px;
}

.banner__desc p:nth-child(1) {
    margin: 0 0 30px 0;
}

.banner__desc span {
    margin: 5px 0 0 0;
    font-size: 12px;
    line-height: 16px;
}

.banner__inner {
    padding: 100px 0 200px 0;
    background: url('../image/first-banner.png') no-repeat;
    background-size: contain;
    background-position: calc(100% - 100px);
    position: relative;
}

.banner__items {
    position: absolute;
    top: 100px;
    right: 0;
}

.get {
    margin: 0 0 190px 0;
}

.get__title {
    margin: 0 0 50px 0;
}

.get__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 1270px;
    margin: 0 auto;
}

.get__inner .get__col:nth-child(1) {
    padding: 0 50px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.get__subtitle {
    font-weight: 600;
    font-size: 25px;
    line-height: 30px;
    margin: 0 0 30px 0;
    color: var(--second-text-color);
}

.get__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.get__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 38px 15px 15px 15px;
    background: #FFFFFF;
    box-shadow: 0px 4px 24px rgba(25, 168, 2, 0.1);
    border-radius: 10px;
    min-height: 200px;
}

.get__item img {
    margin: 0 0 20px 0;
}

.get__item div {
    text-align: center;
}

.get .callback__form {
    margin: 30px auto 0 auto;
    justify-content: center;
}

.about {
    margin: 0 0 130px 0;
    padding: 55px 0;
    background-color: #223433;
    background-image: url('../image/second-banner.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    position: relative;
}

.about .container {
    display: flex;
    justify-content: flex-end;
}

.about__inner {
    width: 50%;
}

.about__title {
    color: white;
    margin: 0 0 30px 0;
}

.about__desc {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 0 30px 0;
}

.about__desc p {
    color: #FFFFFF;
}

.about__items li {
    color: white;
}

.start {
    margin: 0 0 105px 0;
}

.start .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.start__title {
    color: #022714;
    margin: 0 0 50px 0;
}

.start__steps {
    display: flex;
    gap: 120px;
    margin: 0 0 50px 0;
}

.start__steps li {
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
}

.start__steps li:after {
    position: absolute;
    font-weight: 700;
    font-size: 67px;
    line-height: 82px;
    font-family: "Montserrat";
    left: -10px;
    color: rgba(25, 168, 2, 0.2);
    z-index: -1;
}

.start__steps li:nth-child(1):after {
    content: "1";
}

.start__steps li:nth-child(2):after {
    content: "2";
}

.start__steps li:nth-child(3):after {
    content: "3";
}

.start__desc {
    font-size: 20px;
    line-height: 26px;
}

.start__desc b {
    color: var(--second-text-color);
    font-weight: 900;
}

.account {
    margin: 0 0 200px 0;
}

.account .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.account__title {
    font-weight: 600;
    font-size: 25px;
    line-height: 30px;
    margin: 0 0 50px 0;
    text-align: center;
}

.account__title b {
    font-weight: 600;
    font-size: 25px;
    line-height: 30px;
    color: var(--second-text-color);
}

.account__wrapper {
    display: grid;
    grid-template-columns: repeat(3, 315px);
    gap: 45px;
    margin: 0 0 60px 0;
}

.account__wrapper li {
    background: #FFFFFF;
    box-shadow: 0px 4px 24px rgba(103, 182, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    height: 200px;
    position: relative;
}

.account__wrapper img {
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.callback__form {
    display: flex;
    gap: 40px;
}

.callback__form input[type="tel"] {
    width: 390px;
}

.callback__form .btn {
    height: 56px;
    padding: 0 45px;
}

.digit {
    background-image: url('../image/third-banner.png');
    background-repeat: no-repeat;
    height: 550px;
    margin: 0 0 130px 0;
}

.digit .container {
    display: flex;
    align-items: center;
    height: 100%;
}

.digit__title {
    color: white;
}

.digit__wrapper {
    display: grid;
    grid-template-columns: repeat(3, 315px);
    gap: 70px 40px;
}

.digit__wrapper li {
    text-align: center;
    color: white;
}

.digit__wrapper li span {
    font-weight: 700;
    font-size: 67px;
    line-height: 82px;
    color: #19A802;
}

.card {
    margin: 0 0 100px 0;
}

.card .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card__title {
    color: #022714;
    margin: 0 0 35px 0;
}

.card__links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 1260px;
}

.card__links a {
    background: #FFFFFF;
    box-shadow: 0px 4px 24px rgba(103, 182, 255, 0.1);
    border-radius: 10px;
    padding: 15px 30px;
    display: inline-flex;
    flex-direction: column;
    gap: 30px;
    justify-content: space-between;
    transition-duration: .2s;
}

.card__links a:hover {
    box-shadow: 0px 4px 24px rgba(103, 182, 255, 0.25);
}

.card__links a img {
    margin: auto auto;
    max-width: 100%;
}

.card__links a:nth-child(2) {
    grid-column: span 2;
}

.card__links a:nth-child(4) {
    grid-column: span 2;
}

.card__links a:nth-child(5) {
    grid-column: span 2;
}

.card__links a div {
    background: url('../image/arrow.svg') no-repeat;
    background-size: 33px;
    background-position: right;
}

.footer {
    padding: 64px 0 100px 0;
    background: #223433;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.13);   
}

.footer .container {
    display: flex;
    justify-content: space-between;
    gap: 70px;
}

.footer__logo {
    width: 134px;
}

.footer__logo img {
    width: 100%;
}

.footer__btn {
    width: 260px;
    height: 70px;
    box-shadow: 7px 4px 21px rgba(50, 141, 8, 0.15);
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 150px;
}

.footer__contacts a {
    font-size: 14px;
    line-height: 18px;
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    position: relative;
    padding: 0 0 0 30px;
}

.footer__contacts a:before {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    background-size: contain;
    background-repeat: no-repeat;
}

.footer__mail:before {
    background-image: url('../image/email.svg');
}

.footer__phone:before {
    background-image: url('../image/phone.svg');
}

.footer__menu ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    flex-wrap: wrap;
    gap: 15px 70px;
}

.footer__menu a {
    text-decoration-line: underline;
    color: #FFFFFF;
}

.social {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: fixed;
    top: 600px;
    right: 200px;
}

.social a {
    width: 50px;
    height: 50px;
    transition-duration: .2s;
    border-radius: 5px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social a:hover {
    opacity: .8;
}

.social a img {
    width: 100%;
}

.btn-to-up {
    background: var(--second-text-color);
}

.btn-to-up img {
    width: 75% !important
}

.social__callback {
    background: var(--second-text-color);
}

.social__callback img {
    width: 65% !important
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 5;
}

.overlay.active {
    display: block;
}

.menu {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 300px;
    z-index: 10;
    background: white;
    padding: 45px 0;
    right: -300px;
    transition-duration: .2s;
}

.menu.active {
    right: 0;
}

.menu__close {
    width: 25px;
    height: 25px;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
}

.menu__close img {
    width: 100%;
}

.menu__logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #223433;
    margin: 0 0 30px 0;
    padding: 10px;
}

.menu__inner {
    padding: 0 15px;
}

.menu nav ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.menu nav {
    margin: 0 0 30px 0;
}

.menu__contacts {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 0 0 30px 0;
}

.menu__contacts a {
    font-size: 14px;
    line-height: 18px;
    display: inline-flex;
    align-items: center;
    position: relative;
    padding: 0 0 0 30px;
}

.menu__contacts a:before {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    background-size: contain;
    background-repeat: no-repeat;
}

.menu__mail:before {
    background-image: url('../image/email_white.svg');
}

.menu__phone:before {
    background-image: url('../image/phone_white.svg');
}

.menu__btn {
    height: 53px;
    width: 100%;
}

.modal {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.modal.active {
    display: flex;
}

.modal__inner {
    background: #F2F2F2;
    border-radius: 10px;
    padding: 44px;
    position: relative;
    min-width: 680px;
}

.modal__close {
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    top: 20px;
    right: 20px;
    cursor: pointer;
    position: absolute;
}

.modal__close img {
    width: 100%;
}

.modal__title {
    font-weight: 700;
    font-size: 48px;
    line-height: 59px;
    color: #022714;
    margin: 0 0 30px 0;
    font-family: "Montserrat";
}

.modal__subtitle {
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 25px;
    line-height: 30px;
    text-align: center;
    color: #022714;
}

.modal__form {
    display: none;
    flex-direction: column;
}

.modal__form.active {
    display: flex;
}

.modal__form input[type="tel"] {
    background: none;
    border: none;
    border-bottom: 1px solid #223531;
    border-radius: 2px;
    font-size: 16px;
    line-height: 20px;
    color: var(--input-text-color);
    padding: 8px 10px 8px 0;
    height: 36px;
    margin: 0 0 20px 0;
    width: 100%;
}

.modal__label {
    font-weight: 300;
    font-size: 18px;
    line-height: 120%;
    color: #B1B1B1;
}

.modal__form input[type="submit"] {
    width: 170px;
    height: 50px;
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    margin: 30px 0 0 0;
}

.success {
    display: none;
    flex-direction: column;
    align-items: center;
}

.success.active {
    display: flex;
}

.seo-move {
    background-color: #223433;
    display: flex;
    justify-content: center;
    padding: 15px;
}

.seo-move__inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.seo-move img {
    width: 40px;
    height: 40px;
}

.seo-move a {
    cursor: pointer;
    color: #76ae0a !important;
    font-size: 12px;
    text-decoration: none;
}

.seo-move a:hover {
    color: #77dd77 !important;
}

.grecaptcha-badge {
	display: none !important;
}