* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	text-decoration: none;
}

ul {
	list-style: none;
}

body {
	font-family: "Raleway", sans-serif;
}

img {
	max-width: 100%;
}

.btn-reset {
	border: none;
	padding: 0;
	background-color: transparent;
	cursor: pointer;
}

a:focus, button:focus, input:focus, textarea:focus, label:focus, select:focus {
	outline: 3px solid #E59E10;
	outline-offset: 3px;
}

.accent-color {
    color: #E59E10;
    font-weight: 700;
}

.lock {
	overflow: hidden;
}

.container {
	max-width: 1175px;
	margin: 0 auto;
	padding: 0 20px;
}

.header__burger {
    display: none;
}

.hero {
    overflow: hidden;
    position: relative;
    padding-top: 35px;
    padding-bottom: 50px;
    background: -o-radial-gradient(50% 50%, 102.15% 102.15%, rgba(255, 255, 255, 0) 0%, #C1ECE9 100%);
    background: radial-gradient(102.15% 102.15% at 50% 50%, rgba(255, 255, 255, 0) 0%, #C1ECE9 100%);
}

.hero::before {
    position: absolute;
    content: "";
    z-index: 10;
    right: 0;
    top: -55px;
    background-image: url("../images/leg.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 495px;
    height: 826px;
}

.hero__container {
    position: relative;
    z-index: 100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.hero__top {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 50px;
}

.hero--two .hero__top {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: center;
}

.logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.logo__link {
    margin-right: 20px;
    padding: 2px 20px;
    background-color: #079B91;
    border-radius: 0px 24px 24px 23px;
    font-weight: 400;
    font-size: 36px;
    line-height: 48px;
    color: #FFFFFF;
}

.logo__text {
    max-width: 135px;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #E59E10;
}

.nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.nav__item:not(:last-child) {
    margin-right: 35px;
}

.nav__link {
    font-weight: 400;
    font-size: 20px;
    color: #033330;
}

.link {
	position: relative;
	padding-bottom: 4px;
}

.link::before{
	content: "";
	bottom: 0;
	left: 0;
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: #E59E10;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	-webkit-transform: scaleX(0);
			-ms-transform: scaleX(0);
					transform: scaleX(0);
}

.link:hover:before{
	-webkit-transform: scaleX(1);
			-ms-transform: scaleX(1);
					transform: scaleX(1);
}

.hero__info {
    position: relative;
}

.hero__heading {
    margin-bottom: 60px;
    max-width: 700px;
    font-weight: 400;
    font-size: 40px;
    line-height: 48px;
    color: #033330;
}

.hero__img {
    position: absolute;
    left: 75%;
    top: 110px;
}

.hero__descr {
    margin-bottom: 30px;
    padding: 16px 49px;
    max-width: 370px;
    background-color: rgba(5, 153, 142, 0.2);
    border-radius: 0px 24px 24px 23px;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #033330;
}

.hero__list {
    margin-bottom: 45px;
    max-width: 560px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.hero__item {
    position: relative;
    padding-left: 45px;
    margin-right: 10px;
    margin-bottom: 10px;
    width: 44.7%;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #033330;
}

.hero__item::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background-image: url("../images/check.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 36px;
    height: 32px;
}

.hero__item:nth-child(2n) {
    margin-right: 0;
}

.hero__attention {
    max-width: 535px;
    padding-left: 20px;
    position: relative;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    color: #E59E10;
}

.hero__attention::before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    background-image: url("../images/attention.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 9px;
    height: 48px;
}

.form {
    max-width: 270px;
    background: #FFFFFF;
    -webkit-box-shadow: 8px 8px 10px rgb(50 56 21 / 16%);
            box-shadow: 8px 8px 10px rgb(50 56 21 / 16%);
    border-radius: 0px 20px 20px 20px;
}

.form_top {
    margin-bottom: 30px;
    padding: 16px 18px;
    background-color: #079B91;
    border-radius: 0px 20px 20px 20px;
}

.form__descr {
    padding-right: 15px;
    margin-bottom: 15px;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
}

.form__descr span {
    font-weight: 700;
}

.form__price {
    text-align: center;
    width: 100%;
    padding: 6px 13px;
    background-color: #FFFFFF;
    border-radius: 0px 20px 20px 20px;
}

.price-old {
    display: inline-block;
    margin-right: 8px;
    font-weight: 400;
    font-size: 20px;
    -webkit-text-decoration-line: line-through;
            text-decoration-line: line-through;
    color: #EB5757;
    opacity: 0.4;
}

.price-new {
    font-weight: 700;
    font-size: 26px;
    color: #EB5757;
}

.price--green {
    background-color: rgba(5, 153, 142, 0.2);
    margin-bottom: 25px;
}

.price--green span {
    color: #033330;
}

.form__inputs {
    padding: 16px 18px;
    padding-top: 0;
}

.input {
    margin-bottom: 15px;
    padding-left: 15px;
    width: 100%;
    height: 40px;
    background-color: #FCFCFC;
    border: 1px solid #E0E0E0;
    border-radius: 0px 10px 10px 10px;
    font-weight: 400;
    font-size: 18px;
}

.form__select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.input::-webkit-input-placeholder {
    color: #BDBDBD;
}

.input::-moz-placeholder {
    color: #BDBDBD;
}

.input:-ms-input-placeholder {
    color: #BDBDBD;
}

.input::-ms-input-placeholder {
    color: #BDBDBD;
}

.input::placeholder {
    color: #BDBDBD;
}

.form__total {
    display: inline-block;
    margin-bottom: 4px;
    font-weight: 400;
    font-size: 18px;
    color: #333333;
}

.form__btn {
    padding: 8px 15px;
    width: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(#CF3C3C), to(#EB5757));
    background: -o-linear-gradient(top, #CF3C3C 0%, #EB5757 100%);
    background: linear-gradient(180deg, #CF3C3C 0%, #EB5757 100%);
    border-radius: 0px 10px 10px 10px;
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.killer {
    padding-top: 100px;
    padding-bottom: 60px;
}

.killer .section-title {
    margin-bottom: 30px;
}

.section-title {
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    text-align: center;
    color: #033330;
    text-transform: uppercase;
}

.section-title--current {
    color: #EB5757;
}

.killer__descr {
    margin-bottom: 30px;
    font-weight: 500;
    font-size: 32px;
    line-height: 48px;
    text-align: center;
    color: #333333;
}

.killer__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 20px;
}

.killer__list--mob,
.comments__list--mob {
    display: none !important;
}

.killer__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 48%;
    margin-right: 15px;
    margin-bottom: 25px;
}

.killer__item:nth-child(2n) {
    margin-right: 0;
}

.killer__img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    max-width: 176px;
    font-size: 0;
    border: 5px solid #EB5757;
    border-radius: 20px;
    overflow: hidden;
}

.killer__img  img {
    width: 100%;
    height: 220px;
    -o-object-fit: cover;
       object-fit: cover;
}

.killer__title {
    padding-left: 15px;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 24px;
    color: #EB5757;
}

.killer-info__item {
    max-width: 330px;
    padding-left: 30px;
    margin-bottom: 15px;
    position: relative;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #000000;
}

.killer-info__item:last-child {
    margin-bottom: 0;
}

.killer-info__item::before {
    position: absolute;
    content: "";
    left: 0;
    top: 10px;
    width: 24px;
    height: 4px;
    background-color: #EB5757;
}

.killer__desc-bottom {
    padding: 36px 56px;
    -webkit-filter: drop-shadow(0px 0px 30px rgba(235, 87, 87, 0.48));
            filter: drop-shadow(0px 0px 30px rgba(235, 87, 87, 0.48));
    border-radius: 20px;
    background-image: url("../images/killer-desc-bg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    font-weight: 700;
    font-size: 32px;
    line-height: 48px;
    color: #FFFFFF;
}

.killer__desc-bottom span {
    display: block;
    max-width: 750px;
}

.symptoms {
    padding-top: 30px;
    padding-bottom: 30px;
}

.symptoms .section-title {
    padding: 0 140px;
    margin-bottom: 30px;
}

.symptoms__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.symptoms__list {
    margin-right: 10px;
    max-width: 700px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.symptoms__item {
    max-width: 330px;
    width: 330px;
    position: relative;
    padding-left: 45px;
    margin-bottom: 25px;
    margin-right: 15px;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #000;
}

.symptoms__item::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background-image: url("../images/sypm-item.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 32px;
    height: 32px;
}

.symptoms__item:nth-child(2n) {
    margin-right: 0;
}

.symptoms__item  span {
    font-weight: 700;
}

.symptoms__img {
    max-width: 415px;
    margin-top: -50px;
}

.why {
    position: relative;
    padding-top: 50px;
    padding-bottom: 40px;
    background-image: url("../images/why-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.why::before {
    position: absolute;
    content: "";
    z-index: 10;
    left: 0;
    top: 0;
    background-image: url("../images/foot.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 311px;
    height: 454px;
}

.why__container {
    position: relative;
    z-index: 99;
}

.why .section-title {
    padding: 0 180px;
    margin-bottom: 60px;
}

.why__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.why__img {
    margin-right: 15px;
    position: relative;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    max-width: 340px;
}

.why__image {
    width: 100%;
}

.why__emblem {
    position: absolute;
    right: -15px;
    top: -15px;
}

.why__text {
    max-width: 700px;
}

.why__descr {
    position: relative;
    margin-bottom: 50px;
    padding: 24px 70px 24px 40px;
    border: 2px solid #033330;
    border-radius: 0px 20px 20px 20px;
    font-weight: 700;
    font-size: 20px;
    line-height: 32px;
    color: #033330;
}

.why__flower {
    width: 160px;
    position: absolute;
    bottom: -50px;
    right: -35px;
}

.why__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.why__item {
    max-width: 330px;
    position: relative;
    padding-left: 45px;
    margin-bottom: 25px;
    margin-right: 15px;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #000000;
}

.why__item span {
    font-weight: 700;
}

.why__item::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background-image: url("../images/check.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 36px;
    height: 32px
}

.why__order {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.why__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 867px;
}

.why__form .form_top {
    max-width: 270px;
    background-color: #E59E10;
    margin-bottom: 0;
}

.why__form .form__inputs {
    padding: 16px 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.why__form  .input,
.why__form .form__btn {
    width: 236px;
}

.why__form  .input {
    margin-bottom: 15px;
}

.input-marg {
    margin-bottom: 0 !important;
}


.why__order__img {
    width: 200px;
    margin-left: -30px;
}

.effects {
    padding-top: 60px;
    padding-bottom: 30px;
}

.effects__container,
.application__container,
.questions__container,
.profecionals__container,
.receiving__container {
    border-bottom: 1px solid #033330;
    padding-bottom: 80px;
}

.effects .section-title {
    margin-bottom: 60px;
}

.effects__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start
}

.effects__item {
    position: relative;
    padding: 15px;
    height: 248px;
    max-width: 270px;
    background-color: #05998E;
    border-radius: 0px 20px 20px 20px;
}

.effects__item::before {
    position: absolute;
    content: "";
    right: -70px;
    top: -60px;
    z-index: 99;
    background-image: url("../images/arrow-right.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 130px;
    height: 120px
}

.effects__item:last-child:before {
    content: none;
}

.effects__img {
    font-size: 0;
    margin-bottom: 15px;
    border-radius: 0px 20px 20px 20px;
    overflow: hidden;
    max-width: 240px;
}

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

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

.components {
    padding-top: 30px;
    padding-bottom: 30px;
}

.components__container {
    position: relative;
}

.components .section-title {
    margin-bottom: 60px;
}

.components__img {
    position: absolute;
    top: 25%;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}

.components__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.components__item {
    margin-right: 50px;
    margin-bottom: 50px;
    max-width: 368px;
}

.components__item:nth-child(2n) {
    margin-right: 0;
}

.components__item:nth-child(2n) .components__title {
    text-align: right;
    max-width: 100%;
}

.components__image {
    margin-bottom: 30px;
    border-radius: 0px 24px 24px 23px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 16px 30px;
}

.components__image--one {
    background-image: url("../images/components-1.png");
}
.components__image--two {
    background-image: url("../images/components-2.png");
}
.components__image--three {
    background-image: url("../images/components-3.png");
}
.components__image--four {
    background-image: url("../images/components-4.png");
}

.components__title {
    max-width: 260px;
    font-weight: 700;
    font-size: 23px;
    line-height: 24px;
    color: #FFFFFF;
}

.components__descr {
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    color: #333333;
}

.recomends {
    position: relative;
    padding-top: 30px;
    padding-bottom: 30px;
    background-image: url("../images/care-bg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.recomends__wrap {
    max-width: 850px;
}

.wrap__top {
    padding: 40px;
    padding-bottom: 20px;
    background-color: #FFFFFF;
    -webkit-box-shadow: 8px 8px 10px rgb(50 56 21 / 16%);
            box-shadow: 8px 8px 10px rgb(50 56 21 / 16%);
    border-radius: 0px 20px 0 0px;
}

.wrap__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 30px 40px;
    padding-bottom: 20px;
    background-color: #FFAB00;
    -webkit-box-shadow: 8px 8px 10px rgb(50 56 21 / 16%);
            box-shadow: 8px 8px 10px rgb(50 56 21 / 16%);
    border-radius: 0px 0 20px 20px;
}

.recomends__title {
    margin-bottom: 8px;
    font-weight: 400;
    font-size: 32px;
    color: #033330;
}

.recomends__title span {
    font-weight: 700;
}

.recomends__descr {
    margin-bottom: 40px;
    font-weight: 400;
    font-size: 18px;
    color: #333333;
    opacity: 0.5;
}

.recomends__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.recomends__item {
    max-width: 370px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 15px;
    margin-bottom: 30px;
}

.recomends__item:nth-child(2n) {
    margin-right: 0;
}

.recomends__img {
    margin-right: 20px;
    font-size: 0;
    position: relative;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    max-width: 120px;
    border-radius: 0px 20px 20px 20px;
    overflow: hidden;
}

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

.recomends__img::before {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    content: url("../images/v.svg");
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: #ffbc33;
    border-radius: 0px 10px 10px 10px;
}

.recomends__text {
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #596427;
}

.checklist {
    margin-right: 25px;
    max-width: 515px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.checklist__item {
    max-width: 245px;
    position: relative;
    padding-left: 45px;
    margin-bottom: 25px;
    margin-right: 15px;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
}

.checklist__item:nth-child(2n) {
    margin-right: 0;
}

.checklist__item::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background-image: url(../images/check-white.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 36px;
    height: 32px;
}

.wrap__bottom  img {
    width: 150px;
}

.recomends__doctor {
    width: 540px;
    position: absolute;
    right: 135px;
    bottom: 0;
}

.application {
    padding-top: 40px;
    padding-bottom: 40px;
}

.application .section-title {
    margin-bottom: 30px;
}

.application__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    counter-reset: section;
}

.application__item {
    position: relative;
    width: 49%;
    margin-right: 15px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0px 20px 20px 20px;
    overflow: hidden;
}

.application__item::before {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    counter-increment: section;
    content: counters(section,".");
    position: absolute;
    left: 0;
    top: 0;
    width: 88px;
    height: 88px;
    background-color: #FFAB00;
    border-radius: 0px 20px 20px 20px;
    font-weight: 700;
    font-size: 56px;
    color: #FFFFFF;
}

.application__item--one {
    background-image: url("../images/application-1.jpg");
}

.application__item--two {
    background-image: url("../images/application-2.jpg");
}

.application__item:nth-child(2n) {
    margin-right: 0;
}

.application__descr {
    padding: 15px 40px;
    padding-top: 110px;
    font-weight: 700;
    font-size: 20px;
    line-height: 32px;
    color: #FFFFFF;
}

.questions {
    padding-top: 40px;
    padding-bottom: 40px;
}

.questions .section-title {
    margin-bottom: 30px;
}

.questions__item {
    padding: 40px 0;
    border-bottom: 1px solid #033330;
}

.questions__item:first-child {
    padding-top: 0;
}

.questions__item:last-child {
    border-bottom: none;
}

.questions__title {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 20px;
    line-height: 32px;
    color: #033330;
}

.questions__title::before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background-color: #FFAB00;
}

.questions__descr {
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    color: #333333;
}

.profecionals {
    padding-top: 40px;
    padding-bottom: 40px;
}

.profecionals .section-title {
    margin-bottom: 40px;
}

.profecionals__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.profecionals__left {
    max-width: 695px;
    margin-right: 30px;
}

.profecionals__descr {
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    color: #333333;
}

.profecionals__title {
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 20px;
    color: #FFAB00;
}

.profecionals__info {
    max-width: 540px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #033330;
}

.profecionals__info span {
    font-weight: 700;
}

.profecionals__right {
    font-size: 0;
    -webkit-box-shadow: 8px 8px 10px rgb(50 56 21 / 16%);
            box-shadow: 8px 8px 10px rgb(50 56 21 / 16%);
    border-radius: 0px 20px 20px 20px;
    overflow: hidden;
}

.receiving {
    padding-top: 40px;
    padding-bottom: 40px;
}

.receiving .section-title {
    margin-bottom: 40px;
}

.receiving__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    counter-reset: section;
}

.receiving__item {
    position: relative;
    width: 32.33%;
    margin-right: 15px;
    padding: 15px;
    background-color: #05998E;
    border-radius: 0px 20px 20px 20px;
}

.receiving__item::before {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    counter-increment: section;
    content: counters(section,".");
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: #FFAB00;
    border-radius: 0px 10px 10px 10px;
    font-weight: 700;
    font-size: 28px;
    color: #FFFFFF;
}

.receiving__item:last-child {
    margin-right: 0;
}

.receiving__img {
    margin-bottom: 15px;
    font-size: 0;
    border-radius: 0px 20px 20px 20px;
    overflow: hidden;
}

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

.comments {
    padding-top: 40px;
    padding-bottom: 80px;
}

.comments .section-title {
    margin-bottom: 40px;
}

.comments__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.comments__item {
    width: 32.33%;
    height: auto;
    margin-right: 15px;
    -webkit-box-shadow: 8px 8px 10px rgb(50 56 21 / 16%);
            box-shadow: 8px 8px 10px rgb(50 56 21 / 16%);
    border-radius: 0px 20px 20px 20px;
}

.comments__item:last-child {
    margin-right: 0;
}

.comments__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 25px;
}

.comments__img {
    font-size: 0;
    margin-right: 25px;
    border-radius: 0px 20px 20px 20px;
    overflow: hidden;
}

.comments__name {
    font-weight: 700;
    font-size: 24px;
    color: #033330;
}

.comments__descr {
    padding: 25px;
    padding-top: 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #333333;
}

.hero--two.hero::before {
    top: 0;
    width: 540px;
    height: 785px;
}

.polytic__wrapper {
	padding-top: 65px;
}

.polytic {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.credentials__info {
    width: 100%;
    color: #033330;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 10px;
}

.credentials__info p {
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
}

.credentials__links span {
    color: #033330;
    margin: 0 15px;
}

.credentials__link {
    display: inline-block;
    color: #033330;
    -webkit-transition: color 0.5s;
    -o-transition: color 0.5s;
    transition: color 0.5s;
}

.credentials__link:hover {
    color: #E59E10;
    -webkit-transition: color 0.5s;
    -o-transition: color 0.5s;
    transition: color 0.5s;
}

@media (max-width: 1500px) {
    .hero::before {
        top: 100px;
        width: 405px;
        height: 635px;
        right: -50px;
    }
    .hero .form {
        position: relative;
        z-index: 100;
    }
    .nav__item:not(:last-child) {
        margin-right: 35px;
    }
    .nav__link {
        font-size: 18px;
    }
    .killer__img {
        max-width: 160px;
    }
    .killer__img img {
        height: 195px;
    }
    .killer__title {
        font-size: 22px;
        margin-bottom: 8px;
    }
    .killer-info__item {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 10px;
    }
    .why::before {
        content: none;
    }
    .why__img {
        max-width: 300px;
    }
    .why__emblem {
        width: 70px;
        right: 50px;
    }
    .why__text {
        max-width: 800px;
    }
    .why__flower {
        width: 120px;
        right: 10px;
        bottom: -35px;
    }
    .why__item {
        max-width: 315px;
        font-size: 17px;
        margin-bottom: 15px;
    }
    .why__order {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .why__form .form__inputs {
        padding: 15px 30px;
    }
    .effects__item {
        padding: 10px;
        max-width: 230px;
    }
    .effects__item::before {
        right: -88px;
    }
    .components__img {
        width: 230px;
    }
    .components__item {
        margin-right: 35px;
        margin-bottom: 35px;
        max-width: 360px;
    }
    .components__descr {
        font-size: 18px;
        line-height: 28px;
    }
    .recomends__wrap {
        max-width: 800px;
    }
    .wrap__top {
        padding: 35px;
        padding-bottom: 15px;
    }
    .wrap__bottom {
        padding: 25px 35px;
    }
    .recomends__list {
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }
    .recomends__item {
        max-width: 345px;
    }
    .recomends__img {
        max-width: 105px;
        margin-right: 15px;
    }
    .recomends__text {
        font-size: 18px;
        line-height: 22px;
    }
    .checklist__item {
        font-size: 18px;
        line-height: 22px;
    }
    .wrap__bottom img {
        width: 130px;
    }
    .recomends__doctor {
        width: 400px;
        right: 30px;
    }
    .application__list {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .application__descr {
        font-size: 18px;
        line-height: 28px;
        padding: 15px 35px;
        padding-top: 80px;
    }
    .application__item {
        width: 40%;
    }
    .application__item::before {
        width: 60px;
        height: 60px;
        font-size: 32px;
    }
    .profecionals__wrap {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .profecionals__descr {
        font-size: 18px;
        line-height: 30px;
    }
    .profecionals__right {
        width: 320px;
    }
    .hero--two.hero::before {
        width: 405px;
        height: 635px;
    }
}

@media (max-width: 1024px) {
    .container {
        max-width: 964px;
    }
    .hero::before {
        content: none;
    }
    .logo__link {
        padding: 2px 20px;
        font-size: 32px;
        margin-right: 20px;
    }
    .hero__img {
        width: 280px;
        left: auto;
        right: -180px;
    }
    .hero__attention {
        margin-bottom: 25px;
    }
    .form {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        max-width: 100%;
    }
    .form_top {
        margin-bottom: 0;
    }
    .form__descr {
        font-size: 18px;
        line-height: 22px;
    }
    .form__inputs {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        padding-top: 16px;
    }
    .hidden {
        display: none;
    }
    .form .input {
        width: 230px;
        margin-bottom: 15px;
    }
    .form .input-marg-mob {
        margin-bottom: 0;
    }
    .form__btn {
        width: 230px;
        font-size: 22px;
    }
    .killer {
        padding-top: 40px;
    }
    .section-title {
        font-size: 34px;
        line-height: 40px;
    }
    .killer__descr {
        font-size: 28px;
        line-height: 44px;
    }
    .killer__desc-bottom {
        padding: 20px 30px;
        font-size: 26px;
        line-height: 33px;
    }
    .killer__desc-bottom span {
        max-width: 655px;
    }
    .symptoms .section-title {
        padding: 0 100px;
    }
    .symptoms__item {
        max-width: 290px;
        margin-right: 10px;
        padding-left: 30px;
        font-size: 16px;
        line-height: 22px;
    }
    .symptoms__item::before {
        width: 24px;
        height: 24px;
    }
    .symptoms__img {
        max-width: 275px;
    }
    .why__img {
        max-width: 210px;
    }
    .why__emblem {
        width: 55px;
        right: 10px;
    }
    .why__form .form__inputs {
        padding: 16px 18px;
    }
    .why__form .form__btn {
        width: 230px;
    }
    .why__order__img {
        width: 140px;
        margin-left: -15px;
    }
    .effects__item {
        max-width: 215px;
    }
    .effects__descr {
        font-size: 16px;
        line-height: 22px;
    }
    .components__item {
        max-width: 325px;
    }
    .components__image {
        margin-bottom: 20px;
        padding: 14px 22px;
    }
    .components__title {
        font-size: 20px;
        line-height: 20px;
    }
    .components__descr {
        font-size: 16px;
        line-height: 24px;
    }
    .components__img {
        top: 35%;
        width: 165px;
    }
    .recomends__wrap {
        max-width: 100%;
    }
    .recomends__doctor {
        display: none;
    }
    .wrap__bottom {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .checklist {
        margin-right: 70px;
    }
    .application__list {
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }
    .application__item {
        width: 47%;
    }
    .application__item::before {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
    .application__descr {
        padding: 15px 20px;
        padding-top: 65px;
    }
    .profecionals__left {
        max-width: 640px;
    }
    .comments__item {
        width: 31.33%;
    }
    .comments__descr {
        padding: 20px;
    }
}

@media (max-width: 991px) {
    .hero__container,
    .hero .form {
        z-index: auto;
    }
    .lock {
        overflow: hidden;
    }
    .overlay {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 100;
        opacity: 0;
        visibility: hidden;
    }
    .overlay.open {
        opacity: 1;
        visibility: visible;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }
    .nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: fixed;
        right: 0;
        top: 0;
        max-width: 300px;
        width: 80%;
        height: 100vh;
        z-index: 120;
        -webkit-box-shadow: -5px 0 15px -5px rgb(0 0 0 / 80%);
        box-shadow: -5px 0 15px -5px rgb(0 0 0 / 80%);
        background-color: #033330;
        -webkit-transform: translateX(150vw);
        -ms-transform: translateX(150vw);
        transform: translateX(150vw);
        overflow-x: hidden;
        overflow-y: auto;
    }
    .nav.open {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }
    .nav.close {
		-webkit-transform: translateX(110%);
				-ms-transform: translateX(110%);
						transform: translateX(110%);
		-webkit-transition: all 0.3s;
		-o-transition: all 0.3s;
		transition: all 0.3s;
    }
    .nav__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 0;
        padding-top: 20%;
        position: relative;
    }
    .nav__item:not(:last-child) {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .nav__link {
        color: #FFFFFF;
    }
    .btn-close {
        position: absolute;
        right: 30px;
        top: 20px;
        width: 34px;
        height: 34px;
    }
    .btn-close__line {
        position: relative;
        display: block;
        width: 2px;
        height: 100%;
        background: #FFFFFF;
        border-radius: 20px;
    }
    .btn-close__line:nth-child(1) {
        left: 16px;
        top: 0;
        position: absolute;
        -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
                transform: rotate(45deg);
    }
    .btn-close__line:nth-child(2) {
        right: 15px;
        top: 0;
        position: absolute;
        -webkit-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
                transform: rotate(-45deg);
    }
    .burger {
        width: 48px;
        height: 48px;
        background: #079B91;
        border-radius: 0px 9px 9px 10px;
        position: relative;
    }
    .burger__line {
        position: absolute;
        right: 9px;
        width: 60%;
        height: 4px;
        background-color: #FFFFFF;
        border-radius: 10px;
    }
    .burger__line:nth-child(1) {
        top: 9px;
    }
    .burger__line:nth-child(2) {
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 60%;
    }
    .burger__line:nth-child(3) {
        bottom: 9px;
        width: 60%;
    }
    .hero {
        overflow: hidden;
    }
    .hero__img {
        width: 230px;
        right: -30px;
    }
    .form_top {
        padding: 13px 15px;
    }
    .form__descr {
        font-size: 16px;
        line-height: 21px;
    }
    .price-old {
        font-size: 22px;
    }
    .price-new {
        font-size: 30px;
    }
    .form__inputs {
        padding: 13px 15px;
    }
    .form .input,
    .form__btn,
    .why__form .form__btn {
        width: 215px;
    }
    .why .section-title {
        margin-bottom: 30px;
    }
    .why__img {
        max-width: 165px;
    }
    .why__text {
        max-width: 100%;
    }
    .why__descr {
        margin-bottom: 25px;
        padding: 20px 30px 20px 25px;
        font-size: 18px;
        line-height: 28px;
    }
    .why__flower {
        width: 100px;
        right: 20px;
        bottom: -25px;
    }
    .why__list {
        margin-bottom: 15px;
    }
    .why__order__img {
        display: none;
    }
    .profecionals__left {
        max-width: 590px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 710px;
    }
    .hero__top {
        margin-bottom: 30px;
    }
    .hero__heading {
        margin-top: 0;
        margin-bottom: 40px;
        font-size: 36px;
        line-height: 42px;
    }
    .hero__list {
        max-width: 485px;
    }
    .hero__item {
        font-size: 16px;
        width: 43.7%;
    }
    .hero__img {
        width: 160px;
        right: -15px;
    }
    .hero__attention {
        font-size: 20px;
        line-height: 26px;
    }
    .form_top,
    .form__inputs {
        padding: 9px;
    }
    .form__descr {
        font-size: 15px;
    }
    .form .input,
    .form__btn {
        width: 180px;
    }
    .section-title {
        font-size: 32px;
        line-height: 38px;
    }
    .killer .section-title {
        margin-bottom: 15px;
    }
    .killer__descr {
        font-size: 22px;
        line-height: 28px;
    }
    .killer__list,
    .comments__list {
        display: none;
    }

    .killer__list--mob,
    .comments__list--mob {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        max-width: 300px;
        margin: 0 auto;
        margin-bottom: 25px;
    }
    .killer__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        max-width: 100%;
        width: 100%;
    }
    .killer__img {
        max-width: 100%;
        margin-bottom: 8px;
    }
    .killer-info__item {
        padding-left: 15px;
    }
    .killer-info__item::before {
        width: 5px;
        height: 5px;
    }
    .comments {
        padding-bottom: 35px;
    }
    .comments__list--mob {
        padding-bottom: 35px;
    }
    .comments__item {
        border: 1px solid #05998E;
        -webkit-box-shadow: none;
                box-shadow: none;
        max-width: 100%;
        width: 300px;
    }
    .owl-dots {
        position: absolute;
        z-index: 1000;
        bottom: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 15px;
    }
    .owl-dots .owl-dot {
        width: 32px;
        height: 8px;
        margin: 0 5px;
        border-radius: 3px;
        border-radius: 30px;
        background-color: rgba(117, 130, 57, 0.3) !important;
        display: inline-block;
    }
    .owl-dots .owl-dot.active {
        background-color: #033330 !important;
    }
    .killer__title {
        padding-left: 0;
        text-align: center;
    }
    .killer__desc-bottom {
        padding: 12px 15px;
        font-size: 22px;
        line-height: 28px;
    }
    .killer__desc-bottom span {
        max-width: 555px;
    }
    .symptoms .section-title {
        padding: 0 15px;
        margin-bottom: 35px;
    }
    .symptoms__info {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .symptoms__list {
        max-width: 70%;
        margin-right: 0;
    }
    .symptoms__item {
        max-width: 100%;
        margin-right: 0;
    }
    .symptoms__img {
        -webkit-box-ordinal-group: 0;
            -ms-flex-order: -1;
                order: -1;
        margin-top: 0;
        margin-bottom: 25px;
    }
    .why .section-title {
        padding: 0 85px;
    }
    .why__info {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .why__img {
        max-width: 215px;
        margin-bottom: 20px;
    }
    .why__emblem {
        width: 70px;
        right: -5px;
    }
    .why__item {
        max-width: 285px;
        font-size: 16px;
    }
    .why__item:nth-child(2n) {
        margin-right: 0;
    }
    .why__form .form__inputs {
        padding: 9px;
    }
    .why__form .form__btn {
        width: 180px;
    }
    .effects__list {
        margin: 0 auto;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        max-width: 70%;
    }
    .effects__item {
        padding: 15px;
        max-width: 100%;
        width: 300px;
        margin-bottom: 40px;
    }
    .effects__item::before {
        top: auto;
        bottom: -75px;
        right: -65px;
        -webkit-transform: rotate(90deg);
            -ms-transform: rotate(90deg);
                transform: rotate(90deg);
    }
    .effects__item:last-child {
        margin-bottom: 0;
    }
    .effects__img {
        max-width: 100%;
    }
    .effects__descr {
        font-size: 18px;
        line-height: 24px;
    }
    .components .section-title {
        margin-bottom: 30px;
    }
    .components__img {
        position: static;
        -webkit-transform: translateX(0);
            -ms-transform: translateX(0);
                transform: translateX(0);
        display: block;
        margin: 0 auto;
        margin-bottom: 30px;
    }
    .components__list {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        max-width: 70%;
        margin: 0 auto;
    }
    .components__item {
        max-width: 300px;
        margin-right: 0;
    } 
    .components__title {
        max-width: 240px;
    }
    .recomends__item {
        max-width: 275px;
    }
    .recomends__title {
        font-size: 28px;
    }
    .recomends__descr {
        margin-bottom: 30px;
    }
    .recomends__img {
        max-width: 90px;
        margin-right: 10px;
    }
    .recomends__text {
        font-size: 16px;
        line-height: 20px;
    }
    .checklist {
        margin-right: 15px;
    }
    .checklist__item {
        max-width: 200px;
        padding-left: 35px;
        font-size: 16px;
        line-height: 18px;
    }
    .checklist__item::before {
        width: 28px;
        height: 25px;
    }
    .application__descr {
        padding: 15px 15px;
        padding-top: 55px;
        font-size: 16px;
        line-height: 22px;
    }
    .application__item::before {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }
    .questions__title {
        line-height: 28px;
    }
    .questions__descr {
        font-size: 16px;
        line-height: 26px;
    }
    .profecionals__wrap {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .profecionals__right {
        -webkit-box-ordinal-group: 0;
            -ms-flex-order: -1;
                order: -1;
        margin-bottom: 25px;
    }
    .profecionals__left {
        max-width: 100%;
    }
    .receiving__descr {
        font-size: 16px;
        line-height: 22px;
    }
    .effects__container, .application__container, .questions__container, .profecionals__container, .receiving__container {
        padding-bottom: 50px;
    }
}

@media (max-width: 680px) {
    .container {
        max-width: 360px;
    }
    .hero__top {
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
    }
    .logo {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }
    .logo__link {
        padding: 2px 14px;
        font-size: 24px;
        margin-right: 0px;
        margin-bottom: 8px;
    }
    .logo__text {
        max-width: 150px;
    }
    .hero__img {
        position: static;
    }
    .hero__heading {
        margin-bottom: 0;
    }
    .hero__img {
        display: block;
        margin: 0 auto;
        width: 280px;
    }
    .hero__list {
        max-width: 100%;
    }
    .hero__item {
        margin-right: 0;
        margin-bottom: 18px;
        width: 75%;
    }
    .hero__item:last-child {
        margin-bottom: 0;
    }
    .hero__attention::before {
        top: 5px;
        -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
                transform: translateY(0);
    }
    .form {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .form_top {
        margin-bottom: 30px;
        padding: 16px 18px;
    }
    .form__descr {
        font-weight: 400;
        font-size: 20px;
        line-height: 24px;
    }
    .form__inputs {
        display: block;
        padding: 16px 18px;
        padding-top: 0;
    }
    .input {
        margin-bottom: 15px;
        width: 100% !important;
    }
    .form__btn {
        width: 100%;
        margin-top: 15px;
    }
    .section-title {
        font-size: 28px;
        line-height: 34px;
    }
    .killer__descr {
        font-size: 20px;
        line-height: 26px;
    }
    .killer__desc-bottom {
        font-size: 16px;
        background-position: 75% center;
    }
    .killer__desc-bottom span {
        max-width: 275px;
    }
    .symptoms .section-title {
        padding: 0;
    }
    .why .section-title {
        padding: 0 20px;
    }
    .why__form .form_top {
        max-width: 100%;
    }
    .why__form .form__inputs {
        display: block;
    }
    .why__form .form__inputs {
        padding: 16px 18px;
    }
    .why__form .form__btn {
        width: 100%;
    }
    .hidden {
        display: block;
    }
    .form__total {
        margin-top: 15px;
    }
    .effects {
        padding-top: 30px;
    }
    .effects__item::before {
        right: -20px;
    }
    .effects .section-title {
        margin-bottom: 30px;
    }
    .effects__list,
    .components__list,
    .symptoms__list {
        max-width: 100%;
    }
    .recomends {
        padding-bottom: 60px;
    }
    .recomends__title {
        font-size: 22px;
    }
    .recomends__descr {
        font-size: 15px;
    }
    .wrap__bottom {
        position: relative;
    }
    .wrap__bottom img {
        width: 100px;
        position: absolute;
        bottom: -40px;
        right: -15px;
    }
    .application__item {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
    .application__item:last-child {
        margin-bottom: 0;
    }
    .application__descr {
        padding: 35px 15px;
        padding-top: 55px;
    }
    .questions {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .profecionals__right {
        width: 240px;
    }
    .profecionals__left {
        margin-right: 0;
    }
    .receiving__list {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .receiving__item {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
    .receiving__item:last-child {
        margin-bottom: 0;
    }
    .credentials__links {
        text-align: center;
    }
    .credentials__link {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .credentials__link:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 400px) {
    .nav {
        justify-content: flex-start;
        padding-left: 35px;
    }
    .btn-close {
        top: 12px;
        right: 12px;
    }
}

footer {
    padding: 30px 0;
    text-align: center;
    font-size: 14px;
}
footer a {
    display: block;
    margin: 15px 0;
    text-decoration: none;
    color:#333;
}
footer img {
   width: auto;
}
footer p {
    padding: 0;
    margin: 0;
}