@font-face {
    font-family: 'Neucha';
    src: url('../fonts/Neucha.ttf');
}

@font-face {
    font-family: 'Oswald';
    src: url('../fonts/Oswald.ttf');
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat.ttf');
}

html {
    overflow-x: hidden;
}

body {
    min-width: 320px;
    overflow-x: hidden;
}

* {
    appearance: none !important;
    outline: none !important;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.none {
    display: none;
}

.full-navigation,
.mob-navigation,
.footer__menu {
    display: none!important;
}

.inner-container {
    position: relative;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

.content-wrapper {
    width: 100%;
}

.content-wrapper__title {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    text-transform: uppercase;
    color: #1C1C1C;
    padding: 0px 15px;
    margin-top: 0;
}

.colored-text {
    color: #3ADCFF;
    font-weight: 700;
}


/* global button style */

.button {
    display: block;
    background-color: #FF6D69;
    color: #fff;
    font-size: 16px;
    padding: 10px 15px;
    font-family: 'Neucha';
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: none;
}

.button:hover {
    cursor: pointer;
}


/* global button style end */

header .content-wrapper {
    background: url(../images/header-mob.png) no-repeat bottom right;
    height: 480px;
    position: relative;
}

header .content-wrapper .header_bcg {
    background: linear-gradient(to right, #f7f7f7 61%, #FFF 19%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

header .content-wrapper .header_bcg::before {
    content: url('../images/white-triangle.png');
    position: absolute;
    bottom: 200px;
    left: 35px;
}

header .content-wrapper .header_bcg::after {
    content: url('../images/vector-mob.svg');
    position: absolute;
    bottom: 115px;
    right: 170px;
}

.first-line {
    padding: 15px;
}

.first-line>* {
    float: left;
}


/* nav */

.full-navigation {
    display: none;
}

.mob-navigation {
    position: relative;
    margin-top: 5px;
}

#menuToggle {
    display: block;
    position: relative;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
}

#menuToggle a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
}

#menuToggle a:hover {
    color: tomato;
}

#menuToggle input {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
    -webkit-touch-callout: none;
}

#menuToggle span {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
    background: #3ADCFF;
    z-index: 1;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.55s ease;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 5px) 100%, 0 100%, 0 5px);
}

#menuToggle span:nth-child(3) {
    width: 60%;
}

#menuToggle span:nth-child(4) {
    width: 75%;
}

#menuToggle span:first-child {
    transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
}

body.is-mmenu #menuToggle span {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: #fff;
    clip-path: none;
}

body.is-mmenu #menuToggle span:nth-child(4) {
    width: 100%;
}

body.is-mmenu #menuToggle span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

body.is-mmenu #menuToggle span:nth-last-child(2) {
    transform: rotate(-45deg) translate(0, -1px);
}

#menu {
    z-index: 1024;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 25px 15px;
    background: #1C1C1C;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    opacity: 0;
    visibility: hidden;
    transform-origin: 0% 0%;
    transform: translate(-100%, 0);
    transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: flex-start;
}

#menu .logo {
    font-family: 'Neucha';
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-right: auto;
    margin-top: 0;
    margin-left: 0;
}

.menu__close {
    width: 18px;
    height: 18px;
}

#menu ul li {
    margin: 0 8px;
}

#menu ul {
    padding: 75px 0 0 54px;
    width: 100%;
    font-family: 'Oswald';
    font-style: normal;
    font-weight: bold;
    font-size: 22px;
    line-height: 28px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0;
    list-style: none;
    height: 100%;
}

#menu ul a {
    color: #FFFFFF;
    text-decoration: none;
}

#menu ul li.is-active a {
    color: #3ADCFF;
}

#menu li {
    padding: 10px 0;
    font-size: 22px;
}

body.is-mmenu {
    overflow: hidden;
    height: 100vh;
}

body.is-mmenu #menu {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
}

body.is-mmenu #menuToggle ul {
    transform: none;
}

.nav-mob-img {
    position: absolute;
    right: 0;
    bottom: 0;
}


/* nav end */


/* logo */

.logo {
    font-size: 20px;
    margin-left: 12px;
    margin-top: 5px;
    font-family: 'Neucha';
    text-decoration: none;
    color: #000;
    text-transform: uppercase;
}


/* logo end */


/*  header button style */

.button {
    float: right;
}


/* header button style end */

.second-line {
    padding: 0 15px;
}

.second-line__title {
    font-size: 1.25em;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    margin: 35px auto;
    font-family: 'Oswald';
    line-height: 1.4em;
    position: relative;
}

.second-line__title .pseudo-container {
    position: relative;
}

.second-line__title .pseudo-container::before {
    content: url('../images/title-circle-head-mob.png');
    position: absolute;
    top: 0;
    left: -8px;
    height: 42px;
    width: 42px;
    z-index: -1;
}

.second-line__desc {
    font-size: 0.83em;
    text-align: center;
    font-family: 'Montserrat';
    line-height: 17px;
    padding: 0 15px;
}


/* svg-icons block */

.svg-icons {
    padding-top: 30px;
}

.svg-icons .content-wrapper {
    padding: 0;
}

.svg-icons__wrapper {
    display: flex;
    flex-wrap: wrap;
}

.svg-icons .content-wrapper .content-wrapper__title {
    position: relative;
}

.svg-icons .content-wrapper .content-wrapper__title::after {
    content: url('../images/triangle.png');
    position: absolute;
    height: 29px;
    width: 29px;
    top: -10px;
    right: 25px;
}

.svg-icons__item {
    width: calc(100% / 2 - 31px);
    text-align: center;
    padding: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.svg-icons__item:nth-child(2n+1) {
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.svg-icons__item:nth-child(5) {
    border-bottom: 0;
}

.svg-icons__item .text {
    display: block;
    font-size: 13px;
    font-family: 'Montserrat';
    line-height: 17px;
    margin-top: 15px;
}

.svg-icons__item .text br {
    display: none;
}

.svg-icons__item.svg-icons__item--another {
    display: flex;
    align-items: center;
    background-color: #FF6D69;
    font-family: 'Neucha';
    font-size: 20px;
    line-height: 22px;
    text-align: center;
    color: #fff;
    text-decoration: none;
}

.svg-icons__img {
    background: linear-gradient(to top, #f7f7f7 68%, #fff 22%);
}

.svg-icons__img-mob {
    display: block;
    margin: 0 auto;
}

.svg-icons__img-full {
    display: none;
}


/* svg-icons block end*/


/* index-form */

.index-form .content-wrapper {
    position: relative;
    background-color: #3ADCFF;
}

.index-form .content-wrapper__title {
    font-size: 22px;
    line-height: 32px;
    color: #fff;
}

.index-form .content-wrapper {
    display: flex;
    flex-direction: column;
}

.index-form .inner-container {
    padding-top: 46px;
}

.index-form .horse {
    display: flex;
    align-self: flex-end;
    width: 1100px;
    margin-bottom: -43px;
    margin-top: -30px;
}

.index-form .woman {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 592px;
}

.index-form .content-wrapper__title .title__sub-second {
    display: none;
}

.index-form .points {
    position: absolute;
    top: -25px;
    width: 10px;
    height: 55px;
}

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

.index-form .form .c-name {
    width: 100%;
    max-width: 260px;
    text-align: center;
    padding: 10px 15px;
    margin-bottom: 10px;
    border: 0;
}

.index-form .form .button {
    width: 100%;
    max-width: 145px;
    border: 0;
    padding: 10px 25px;
}


/* index-form end*/


/* clients-review */

.clients-review .content-wrapper {
    background: linear-gradient(to right, #f7f7f7 60%, #FFF 20%);
    position: relative;
}

.clients-review .content-wrapper::before {
    content: url('../images/triangle-2.png');
    position: absolute;
    top: 38px;
    right: 20px;
}

.clients-review .content-wrapper::after {
    content: url('../images/plus.png');
    position: absolute;
    bottom: 145px;
    right: 0;
}

.clients-review .gargoyle {
    background: url(../images/gargoyle1.png) no-repeat;
    background-position: 0 100%;
}

.gargoyle__text {
    padding: 100px 10px 0 100px;
    position: relative;
}

.gargoyle__text .title {
    display: block;
    font-family: 'Oswald';
    font-style: normal;
    font-weight: bold;
    font-size: 21px;
    line-height: 26px;
    text-transform: uppercase;
    color: #1C1C1C;
    margin-bottom: 15px;
}

.gargoyle__text .title .colored-text {
    color: #FF6D69
}

.gargoyle__text .desc {
    display: block;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 10px;
    line-height: 14px;
    padding-left: 15px;
    max-width: 140px;
}

.two-columns {
    display: flex;
    padding: 85px 15px 0px;
    align-items: flex-end;
    position: relative;
}

.two-columns__item {
    position: relative;
    background: #ff6d69;
    color: #fff;
    padding: 10px;
    margin-bottom: -15px;
}

.two-columns__item.two-columns__item_padding {
    padding: 20px 10px;
    margin-left: 10px;
}

.two-columns__item .img {
    position: absolute;
    left: 3px;
    bottom: 0;
    mix-blend-mode: multiply;
}

.two-columns__item .title,
.two-columns__item .desc {
    display: block;
    position: relative;
}

.two-columns__item .title {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 46px;
    text-transform: uppercase;
}

.two-columns__item .desc {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 10px;
    line-height: 14px;
}


/* clients-review end*/


/* causes */

.causes {
    padding-top: 50px;
}

.causes .content-wrapper {
    background: url(../images/causes-mob.png) no-repeat;
    background-position: 100% 17%;
    position: relative;
}

.causes .content-wrapper__title {
    text-align: left;
    padding-right: 35px;
    position: relative;
}

.causes .content-wrapper__title::before {
    content: url('../images/orange-triangle.png');
    position: absolute;
    left: 20px;
    bottom: -45px;
}

.causes__vector {
    position: absolute;
    right: 135px;
    top: 200px;
    max-width: 99px;
}

.causes__vector .vector__item {
    width: 100%;
}

.causes__items {
    display: flex;
    flex-wrap: wrap;
    margin-top: 315px;
    position: relative;
}

.causes__item {
    padding: 30px 63px 30px 30px;
    background: #f7f7f7;
    margin: 0 15px 10px;
    height: 125px;
    width: 100%;
}

.causes__item .title {
    font-family: 'Neucha';
    font-style: normal;
    font-weight: normal;
    font-size: 22px;
    line-height: 46px;
    position: relative;
    z-index: 0;
}

.causes__item .title::before {
    content: '';
    position: absolute;
    display: block;
    left: 0;
    bottom: 12px;
    width: 83px;
    height: 8px;
    background: #3ADCFF;
    z-index: -1;
}

.causes__item .desc {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 17px;
}


/* causes end */


/* getting */

.getting {
    padding: 0 0 40px;
}

.getting .content-wrapper {
    position: relative;
    overflow: inherit;
}

.getting .content-wrapper .content-wrapper__inner .inner__title {
    text-align: left;
    position: relative;
    text-transform: uppercase;
    padding: 0 15px;
}

.getting .content-wrapper .content-wrapper__inner .inner__title::before {
    content: url('../images/title-circle.png');
    position: absolute;
    left: 0;
    top: -7px;
    width: 42px;
    height: 42px;
}

.getting .content-wrapper .getting__img {
    display: none;
}

.getting__items {
    display: flex;
    flex-wrap: wrap;
    background: url(../images/getting-img.png) no-repeat top right;
    padding: 298px 15px 0;
}

.getting__item {
    padding: 30px 25px;
    margin-bottom: 10px;
    color: #fff;
    background: #3ADCFF;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.04);
    height: 125px;
    width: 100%;
}

.getting__item .title {
    font-family: 'Neucha';
    font-style: normal;
    font-weight: normal;
    font-size: 22px;
    line-height: 46px;
    text-transform: uppercase;
    position: relative;
    z-index: 0;
}

.getting__item .title::before {
    content: '';
    position: absolute;
    display: block;
    left: 0;
    bottom: 12px;
    width: 30px;
    height: 8px;
    background: #FF6D69;
    z-index: -1;
}

.getting__item .desc {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 17px;
}

.getting__item .desc .colored-text {
    color: #fff;
}

.getting .content-wrapper .getting_bcg {
    z-index: -1;
    position: absolute;
    height: 91%;
    width: 100%;
    background: linear-gradient(to left, #f7f7f7 66%, #fff 24%);
    top: 125px;
    right: 0;
}


/* getting end */


/* discussion */

.index-form--discussion .content-wrapper::before {
    content: url('../images/dots.png');
    position: absolute;
    top: -25px;
    right: 30px;
}

.index-form--discussion .content-wrapper::after {
    content: url('../images/plus-2.png');
    position: absolute;
    bottom: 85px;
    right: 0;
}

.index-form--discussion .content-wrapper .content-wrapper__title {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: bold;
    font-size: 22px;
    line-height: 32px;
    text-align: center;
    text-transform: uppercase;
    padding: 0 35px;
    color: #fff;
    position: relative;
}

.index-form--discussion .content-wrapper .content-wrapper__title::before {
    content: url('../images/orange-triangle-2.png');
    position: absolute;
    top: 25px;
    left: 15px;
    height: 28px;
    width: 28px;
}

.index-form--discussion .content-wrapper .content-wrapper__title .title__sub-second {
    display: none;
}

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

.discussion__form .name,
.discussion__form .phone {
    border: 0;
    border-bottom: 1px solid #fff;
    background: transparent;
    color: #fff;
    padding: 10px;
    margin-bottom: 15px;
}

.discussion__form .name:focus,
.discussion__form .phone:focus {
    outline: none;
}

.discussion__form .name::-webkit-input-placeholder,
.discussion__form .phone::-webkit-input-placeholder {
    color: #fff;
}

.discussion__form .name::-moz-placeholder,
.discussion__form .phone::-moz-placeholder {
    color: #fff;
}

.discussion__form .button {
    width: 100%;
    max-width: 145px;
    border: 0;
    padding: 10px 25px;
    margin-top: 10px;
    margin-bottom: 15px;
}

.license {
    display: block;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 15px;
    text-align: center;
    color: #FFFFFF;
}


/* discussion end */


/* footer */

.footer {
    background: #1c1c1c;
}

.footer .content-wrapper {
    padding: 45px 0 0 0;
}

.footer__logo {
    display: block;
    text-align: center;
    margin: 0 auto 25px;
    max-width: 90px;
    font-family: 'Neucha';
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 24px;
    color: #fff;
    text-transform: uppercase;
}

.footer__menu {
    padding: 0 15px;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.footer__menu .menu__item {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: #AFAFAF;
    text-decoration: none;
}

.footer__menu .menu__item:hover {
    color: #fff;
    text-decoration: none;
}

.footer__socials {
    text-align: center;
    margin: 38px 0 15px;
}

.footer__copyright {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 15px;
    text-align: center;
    color: #AFAFAF;
    padding: 0 50px;
}

.footer__img {
    background: url(../images/angel.png) no-repeat center bottom;
    height: 122px;
    margin: 30px auto 0;
}


/* footer end */


/* Modal */

.view-modal {
    z-index: 1024;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    transform-origin: center;
    transform: scale(.98);
    transition: 300ms ease-in-out;
}

body.is-modal .view-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.view-modal__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .25);
}

.view-modal__wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    box-sizing: border-box;
}

.view-modal__wrapper:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.view-modal__body {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 60px 40px 50px 40px;
    text-align: left;
    background-color: #fff;
    box-sizing: border-box;
}

.view-modal__body::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 64%;
    background: rgba(0, 0, 0, 0.03);
}

.view-modal__close {
    z-index: 2;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.view-modal__title {
    margin-bottom: 40px;
    font-family: 'Neucha';
    font-style: normal;
    font-weight: normal;
    font-size: 48px;
    color: #1C1C1C;
}

.view-modal__body__img.full {
    position: absolute;
    bottom: 0;
    right: 0;
}

.view-modal__body__img.mob {
    display: none;
}


/* Form */

.view-form {
    position: relative;
    z-index: 1;
}

.view-form__field {
    width: 100%;
    max-width: 275px;
    height: 44px;
    margin: 0 0 16px 0;
    padding: 13px 9px;
    border: none;
    border-bottom: 1px solid #1C1C1C;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    color: #5E5E5E;
    box-sizing: border-box;
    background: transparent;
}

.view-form__description {
    margin: 0 0 55px 0;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 10px;
    line-height: 12px;
    color: #5E5E5E;
}

.view-form__buttons {
    display: flex;
    flex-wrap: wrap;
}

.view-form__buttons .button {
    float: none;
    min-width: 190px;
    height: 50px;
    font-size: 20px;
    line-height: 22px;
    text-transform: capitalize;
}

@media (max-width: 600px) {
    .view-modal__wrapper:before {
        display: none;
    }
    .view-modal__body {
        width: 100%;
        height: 100%;
        padding: 45px 30px;
    }
    .view-modal__title {
        font-size: 36px;
        margin-bottom: 16px;
    }
    .view-form__buttons {
        margin-top: 8px;
        justify-content: center;
    }
    .view-form__buttons .button {
        min-width: 144px;
        height: 38px;
    }
    .view-form__description {
        margin-top: 15px;
        text-align: center;
        font-size: 12px;
        line-height: 15px;
        text-align: center;
        color: #6A6A6A;
    }
    .view-form__field {
        font-size: 15px;
        color: #1C1C1C;
    }
    .view-modal__body__img.mob {
        display: block;
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translate(-50%, 0);
    }
    .view-modal__body__img.full {
        display: none;
    }
}

@media (min-width: 768px) {
    .lg-hide {
        display: none;
    }
}

@media (max-width: 767px) {
    .sm-hide {
        display: none;
    }
}

@media (min-width: 435px) {
    .index-form {
        height: 358px;
    }
    .index-form--discussion {
        height: 100%;
    }
    .index-form .content-wrapper {
        height: 100%;
    }
    .index-form .inner-container {
        z-index: 2;
    }
    .index-form .horse {
        position: absolute;
        bottom: 0;
        right: 0;
        margin: 0;
        width: unset;
    }
}

@media (min-width: 576px) {
    header .content-wrapper .header_bcg {
        background: linear-gradient(to right, #f7f7f7 50%, #FFF 50%);
    }
    header .content-wrapper .header_bcg::after {
        content: url('../images/vector-mob.svg');
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
    .second-line__title {
        font-size: 2.25em;
    }
    .second-line__desc {
        font-size: 1.2em;
    }
    .svg-icons__item.svg-icons__item--another {
        justify-content: center;
    }
    .clients-review .content-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 25px;
    }
    .clients-review .gargoyle {
        background: url(../images/gargoyle-full.png) no-repeat;
        background-size: 180px;
        background-position: 15px 100%;
    }
    .clients-review .gargoyle .gargoyle__text {
        padding: 130px 10px 0 100px;
    }
    .causes .content-wrapper__title {
        font-size: 28px;
        padding-right: 235px;
    }
    .causes .causes__items {
        margin-top: 70px;
    }
    .causes .causes__items .causes__item {
        width: 40%;
    }
    .getting .getting__items {
        background: url(../images/getting-img.png) no-repeat top center;
    }
    .footer__menu {
        margin: 0 auto;
        max-width: 432px;
    }
}

@media (min-width: 768px) {
    header .content-wrapper {
        background: url(../images/header-full.png) no-repeat bottom right;
        background-size: 40%;
    }
    header .content-wrapper .header_bcg {
        background: linear-gradient(to left, #f7f7f7 50%, #FFF 50%);
    }
    .second-line__title {
        font-size: 2em;
        text-align: left;
        padding: 1em 9em 0 2em;
    }
    .second-line__title::before {
        top: 140px;
        left: 170px;
    }
    .second-line__desc {
        font-size: 1.2em;
        padding: 0 16em 0 3em;
        text-align: left;
        line-height: 1.2em;
    }
    .index-form .points {
        height: unset;
        width: unset;
        left: -38px;
        top: 34px;
    }
    .causes .causes__items .causes__item {
        width: 55%;
    }
}

@media (min-width: 992px) {
    .first-line {
        padding: 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .first-line>* {
        float: none
    }
    .full-navigation {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0;
        padding: 0;
        list-style: none;
    }
    .full-navigation .full-navigation__item {
        margin: 0 35px;
    }
    .full-navigation .full-navigation__item .item__link {
        font-family: 'Montserrat';
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 17px;
        color: #1C1C1C;
        text-decoration: none;
        position: relative;
        z-index: 0;
        padding: 0 5px;
    }
    .full-navigation .full-navigation__item .item__link::before {
        position: absolute;
        content: '';
        width: 0;
        height: 8px;
        background: #3ADCFF;
        bottom: 0;
        left: 0;
        z-index: -1;
        transition: 300ms ease;
    }
    .full-navigation .full-navigation__item .item__link:hover::before {
        width: 100%;
        z-index: -1;
    }
    .mob-navigation {
        display: none;
    }
    .clearfix:before,
    .clearfix:after {
        content: none;
        display: inherit;
    }
    .causes .content-wrapper__title {
        padding-right: 35px;
    }
    .index-form .points {}
}

@media (min-width: 1200px) {
    header .content-wrapper {
        background: url(../images/header-full.png) no-repeat bottom right;
        height: 664px;
    }
    .first-line {
        padding: 15px 150px;
    }
    .logo {
        font-size: 24px;
    }
    .second-line__title {
        font-family: 'Oswald';
        font-style: normal;
        font-weight: normal;
        font-size: 3em;
        padding: 2.1em 0 0 3.2em;
        line-height: 1.14em;
        text-transform: uppercase;
        color: #1C1C1C;
        margin: 0;
        text-align: left;
        max-width: 500px;
    }
    .second-line__desc {
        font-size: 1.13em;
        padding: 2em 0em 0 9em;
        max-width: 360px;
    }
    .svg-icons {
        padding-top: 88px;
    }
    .svg-icons .svg-icons__items .content-wrapper__title {
        font-size: 36px;
        line-height: 46px;
        padding: 55px 460px 0 96px;
        text-align: left;
    }
    .svg-icons .svg-icons__items .content-wrapper__title::after {
        content: url('../images/triangle-full.png');
        width: 58px;
        top: auto;
        right: 165px;
        bottom: 0;
    }
    .svg-icons-w-img {
        display: flex;
        flex-direction: row-reverse;
    }
    .svg-icons__img {
        background: transparent;
        display: flex;
    }
    .svg-icons__img-mob {
        display: none;
    }
    .svg-icons__img-full {
        display: block;
    }
    .svg-icons__wrapper {
        padding: 0 0 0 50px;
    }
    .svg-icons__item {
        text-align: left;
        padding-left: 0;
        padding: 30px 30px 30px 0;
    }
    .svg-icons__item .text {
        font-size: 17px;
        line-height: 21px;
    }
    .svg-icons__item .text br {
        display: block;
    }
    .svg-icons__item:nth-child(2n+2) .img,
    .svg-icons__item:nth-child(2n+2) .text {
        margin-left: 63px;
    }
    .svg-icons__item.svg-icons__item--another {
        padding: 15px;
        justify-content: center;
    }
    .index-form {
        height: 358px;
    }
    .index-form .inner-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
        padding-top: 0;
    }
    .index-form .points {
        top: 34px;
        left: -38px;
    }
    .index-form .horse {
        position: absolute;
    }
    .index-form .content-wrapper__title {
        display: flex;
        font-size: 36px;
        line-height: 46px;
        text-align: left;
        padding: 0;
    }
    .index-form .content-wrapper__title .title__sub-first {
        max-width: 470px;
    }
    .index-form .content-wrapper__title .title__sub-second {
        display: block;
        font-family: 'Montserrat';
        font-style: normal;
        font-weight: 500;
        font-size: 18px;
        line-height: 30px;
        text-transform: none;
    }
    .index-form .form {
        display: flex;
        justify-content: flex-start;
        flex-direction: row;
        align-items: center;
    }
    .index-form .form .c-name {
        max-width: 407px;
        text-align: left;
        padding: 20px 15px;
        margin-bottom: 0;
    }
    .index-form .form .button {
        max-width: 232px;
        padding: 20px 25px;
        margin-left: 32px;
    }
    .clients-review .content-wrapper {
        display: flex;
        flex-direction: row-reverse;
        padding: 75px 0;
    }
    .clients-review .content-wrapper::before {
        content: url('../images/triangle-2-full.png');
        position: absolute;
        top: 26px;
        right: unset;
        left: 36px;
    }
    .clients-review .content-wrapper::after {
        content: url('../images/plus-full.png');
        bottom: 80px;
    }
    .clients-review .two-columns {
        padding-top: 130px;
    }
    .clients-review .gargoyle {
        background: url(../images/gargoyle-full.png) no-repeat;
        width: 45%;
    }
    .gargoyle__text {
        padding: 50px 210px 0 130px;
    }
    .clients-review .gargoyle__text .title {
        font-size: 36px;
        line-height: 46px;
    }
    .clients-review .gargoyle__text .desc {
        font-size: 14px;
        line-height: 20px;
        max-width: 200px;
        margin-top: 50px;
    }
    .clients-review .two-columns {
        width: 50%;
        justify-content: center;
    }
    .clients-review .two-columns__item {
        padding: 10px 40px;
        max-width: 200px;
        margin-bottom: 0;
    }
    .clients-review .two-columns__item.two-columns__item_padding {
        padding: 18px 50px;
    }
    .clients-review .two-columns .title {
        font-size: 28px;
        line-height: 46px;
    }
    .clients-review .two-columns .desc {
        font-size: 15px;
        line-height: 18px;
    }
    .causes {
        padding-top: 0;
    }
    .causes .content-wrapper {
        background: url(../images/causes-full.png) no-repeat;
        background-position: 100% 17%;
        position: relative;
        padding-top: 158px;
    }
    .causes .content-wrapper__title {
        font-size: 36px;
        line-height: 46px;
        max-width: 480px;
        margin-left: 150px;
    }
    .causes .content-wrapper__title::before {
        content: url(../images/orange-triangle-full.png);
        position: absolute;
        left: unset;
        bottom: -20px;
        right: -20px;
    }
    .causes .causes__vector {
        max-width: unset;
        right: 290px;
        top: 310px;
    }
    .causes .causes__items {
        margin-top: 50px;
        margin-left: 150px;
    }
    .causes .causes__items .causes__item {
        width: 200px;
        margin-bottom: 0;
        padding: 30px 30px 30px 20px;
    }
    .causes .causes__items .causes__item .title {
        font-size: 28px;
        line-height: 46px;
    }
    .causes .causes__items .causes__item .desc {
        font-size: 15px;
        line-height: 21px;
    }
    .getting {
        padding: 0;
    }
    .getting .content-wrapper {
        display: flex;
        flex-direction: row-reverse;
    }
    .getting .content-wrapper .content-wrapper__inner {
        margin-right: 135px;
    }
    .getting .content-wrapper .content-wrapper__inner .inner__title {
        font-size: 36px;
        line-height: 46px;
        text-align: right;
        margin-top: 200px;
        margin-bottom: 65px;
        z-index: 1;
    }
    .getting .content-wrapper .content-wrapper__inner .inner__title::before {
        content: url(../images/title-circle-full.png);
        left: unset;
        top: -25px;
        right: 392px;
        z-index: -1;
    }
    .getting .content-wrapper .getting__items {
        background: none;
        padding-top: 0;
        justify-content: center;
    }
    .getting .content-wrapper .getting__items .getting__item {
        width: 215px;
        margin: 0 0 0 30px;
        padding: 23px 19px;
        height: unset;
        min-height: 172px;
        margin-bottom: 15px;
    }
    .getting .content-wrapper .getting__items .getting__item .title {
        font-size: 32px;
        line-height: 46px;
    }
    .getting .content-wrapper .getting__items .getting__item .desc {
        font-size: 14px;
        line-height: 21px;
    }
    .getting .content-wrapper .getting__img {
        display: block;
        margin-right: auto;
        width: 100%;
        max-width: 416px;
    }
    .getting .content-wrapper .getting_bcg {
        background: linear-gradient(to right, #f7f7f7 55%, #fff 45%);
        left: 0;
        top: unset;
        right: unset;
        bottom: 0;
        height: 78%;
    }
    .discussion .content-wrapper::after {
        bottom: unset;
        top: 35px;
        right: 30px;
    }
    .index-form--discussion .content-wrapper::before {
        content: url('../images/dots-full.png');
        top: -65px;
        left: 50%;
        right: unset;
    }
    .index-form--discussion .content-wrapper .content-wrapper__title {
        display: flex;
    }
    .index-form--discussion .content-wrapper .content-wrapper__title::before {
        content: url(../images/orange-triangle-full.png);
        width: 58px;
        height: 58px;
        left: -33px;
        top: 8px;
    }
    .index-form--discussion .content-wrapper .content-wrapper__title .title__sub-first {
        font-size: 36px;
        line-height: 46px;
        text-align-last: left;
        text-align: left;
        max-width: 315px;
    }
    .index-form--discussion .content-wrapper .content-wrapper__title .title__sub-second {
        display: inline;
        font-family: 'Montserrat';
        font-style: normal;
        font-weight: 500;
        font-size: 18px;
        line-height: 30px;
        text-transform: none;
        max-width: 414px;
        text-align: left;
    }
    .index-form--discussion .content-wrapper .discussion__form {
        flex-direction: row;
        justify-content: normal;
    }
    .discussion__form .name,
    .discussion__form .phone {
        margin: 0 25px 0 0;
    }
    .index-form--discussion .content-wrapper .discussion__form .button {
        max-width: 233px;
        padding: 19px 30px;
        margin: 38px 0 0;
    }
    .index-form--discussion .content-wrapper .license {
        text-align: left;
        margin-top: -13px;
    }
    .index-form--discussion .woman {
        position: absolute;
        right: -30px;
        bottom: 0;
    }
}

@media (min-width: 1400px) {
    .second-line__title {
        font-family: 'Oswald';
        font-style: normal;
        font-weight: normal;
        font-size: 4em;
        padding: 3.1em 7em 0 4.2em;
        max-width: unset;
    }
    .second-line__title .pseudo-container::before {
        content: url('../images/title-circle-head.png');
        position: absolute;
        top: -8px;
        left: -26px;
        height: 88px;
        width: 88px;
        z-index: -1;
    }
    header .content-wrapper .header_bcg::after {
        bottom: 55px;
    }
    .second-line__desc {
        font-size: 18px;
        line-height: 30px;
        text-align: left;
        padding: 40px 600px 0 270px;
        max-width: unset;
    }
    .second-line__desc .none {
        display: inline;
    }
    .svg-icons__wrapper {
        padding: 0 130px;
    }
}