* {
    box-sizing: border-box;
}

html,
body {
    min-width: 320px;
    margin: 0;
    padding: 0;
    height: 100%;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

html {
    font-size: 62.5%;
}

#root {
    min-width: 320px;
    border-top: 8px solid #ff4056;
}

body {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 400;
    min-width: 320px;
    font-family: 'Barlow', sans-serif;
    color: #323647;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    outline: none;
    cursor: pointer;
    -webkit-text-decoration-skip: objects;
}

a:active,
a:focus,
a:hover {
    outline: 0;
}

.button {
    cursor: pointer;
    display: inline-block;
    border-radius: 30px;
    font-weight: 500;
    font-size: 1.8rem;
}
.button--standard {
    line-height: 26px;
    padding: 16px 30px;
}

.button--small {
    font-size: 1.4rem;
    line-height: 18px;
    padding: 9px 25px;
}

.button--primary:hover {
    background: #d93447;
}

.button--primary {
    transition: background .3s ease-in;
    background: #d93447 linear-gradient(to right, #ff4056, #ff596c);
    box-shadow: 0 10px 20px 0 rgba(255, 64, 86, 0.2);
    color: #fff;
}

.button--secondary {
    color: #ff4056;
    border: 2px solid #ff4056;
    transition: all .2s ease-in;
}

.button--standard.button--secondary {
    padding-top: 14px;
    padding-bottom: 14px;
}

.button--small.button--secondary {
    padding-top: 7px;
    padding-bottom: 7px;
}
.button--secondary:hover {
    color: #d93447;
    border: 2px solid #d93447;
}


.cookie-modal-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    display: block;
    width: 100vw;
    height: 100vh;
    padding: 0;
    background-color: rgba(0,0,0,.72);
    border: none;
}

.cookie-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    overflow-x: hidden;
    overflow-y: visible;
    background-color: #fff;
    transform: translate(-50%,-50%);
    padding: 40px;
    max-height: calc(100% - 160px);
}

.cookie-modal-wrapper.hidden {
    display: none;
}

.cookie-modal h2 {
    margin-top: 0;
    line-height: 1.25;
}

.cookie-modal p {
    margin-bottom: 40px;
    margin-top: 0;
    line-height: 1.5;
}

.cookie-modal button {
    box-shadow: none;
    border: 0;
}

.cookie-modal a.button,
.cookie-modal button  {
    min-width: 140px;
    text-align: center;
}

.cookie-modal a:not(.button) {
    text-decoration: underline;
    color: #323647;
}

.cookie-modal a:not(.button):hover {
    color: #629e14;
}

.cookie-modal-actions {
    display: flex;
    justify-content: space-between;
}

.cookie-see-details {
    color: #565244;
    text-transform: uppercase;
    font-size: 18px;
}

.cookie-modal-configuration-control {
    position: relative;
    flex-basis: 50%;
    margin-bottom: 10px;
}

.cookie-modal-configuration-control input {
    display: none;
}

.cookie-modal-configuration-control label {
    padding-left: 30px;
    position: relative;
}

.cookie-modal-configuration-control > span {
    position: absolute;
    width: 20px;
    height: 20px;
    left: 0;
    display: block;
    border: solid 2px #dcdee6;
    border-radius: 4px;
    transition: .1s ease-out;
}

.cookie-modal-configuration-control input:checked + span {
    border-color: #ff4056;
}

.cookie-modal-configuration-control input:checked + span span:first-child {
    width: 7px;
    height: 2px;
    top: 8px;
    left: 2px;
    background: #ff4056;
    position: absolute;
    transition: .1s ease-out;
    transform: rotate(45deg);
}

.cookie-modal-configuration-control input:checked + span span:last-child {
    width: 2px;
    height: 9px;
    top: 4px;
    left: 10px;
    background: #ff4056;
    position: absolute;
    transition: .1s ease-out;
    transform: rotate(45deg);
}

.cookie-modal-configuration {
    flex-wrap: wrap;
    padding-top: 40px;
    margin-top: 40px;
    display: flex;
    border-top: 1px solid #dcdee6;
}

.cookie-modal .cookie-modal-actions .btn-accept {
    width: 140px;
    margin: 0;
}

.cookie-modal .btn-see-details {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 0;
    padding-top: 0;
    line-height: 32px;
}

.cookie-modal .button {
    margin: 0;
}

.cookie-modal-options {
    display: none;
}

.cookie-modal-options.expanded {
    display: block;
}

.cookie-modal-button-wrapper {
    text-align: right;
    margin-top: 30px;
}

@media screen and (min-width: 1540px) {
    .cookie-modal {
        max-width: 33%;
        width: auto;
    }
}

@media screen and (max-width: 1010px) {
    .cookie-modal {
        width: 75%;
    }
}

@media screen and (max-width: 768px) {
    .cookie-modal {
        width: 90%;
    }
}

@media screen and (max-width: 562px) {
    .cookie-modal-actions {
        flex-direction: column-reverse;
    }

    .cookie-modal .cookie-modal-actions .btn-accept {
        width: 100%;
    }

    .cookie-modal .cookie-modal-actions a {
        margin-top: 20px;
        text-align: center;
    }

    .cookie-modal-actions button:last-of-type {
        margin-bottom: 20px;
    }

    .cookie-modal {
        padding: 20px 10px;
        margin-top: -40px;
    }

    .cookie-modal p {
        font-size: 16px;
    }

    .cookie-modal-button-wrapper {
        display: flex;
        flex-direction: column;
    }
}

@media screen and (max-height: 450px) {
    .cookieModal {
        max-height: calc(100% - 80px);
    }
}

.header {
    text-align: center;
    min-height: 100vh;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-image: url('./images/header-background.jpg');
    position: relative;
}

.header::after {
    content: '';
    background-image: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0));
    position: absolute;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

.header__container {
    position: relative;
    padding: 48px 56px 427px 76px;
    z-index: 3;
}

.header h1 {
    font-size: 10rem;
    line-height: 110px;
    font-weight: 600;
    color: #484b61;
    margin: 200px auto 0;
}


.header p {
    margin: 49px 0 57px;
    font-size: 3.8rem;
    line-height: 52px;
    font-weight: 300;
    color: #484b61;
}

.header__buttons a {
    margin: 0 18px;
}

.nav {
    width: 100%;
    height: 139px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background-color: #fff;
}

.nav__holder {
    display: block;
    position: relative;
    height: 139px;
    padding: 42px 76px 0 56px;
}

.nav::after {
    content: '';
    display: table;
    clear: both;
}

.nav__hamburger {
    display: none;
}

.nav__holder > img {
    width: 240px;
    float: left;
}

.nav__holder::before,
.nav__holder::after {
    content: '';
    position: absolute;
    display: block;
    left: 50%;
    background-color: #fff;
    transform: translateX(-50%);
}

.nav__holder::before {
    width: 366px;
    z-index: 2;
    height: 105px;
    bottom: -75px;
    border-radius: 8px;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.15);
}

.nav__holder::after {
    bottom: 0;
    width: 386px;
    height: 85px;
    z-index: 3;
}

.nav__logos {
    width: 222px;
    z-index: 4;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 59px;
}

.nav__logos img {
    width: 100%;
}

.nav a {
    margin-left: 20px;
}

.nav__buttons {
    margin-top: 15px;
    float: right;
}

.steps {
    max-width: calc(100% - 60px);
    position: relative;
    z-index: 4;
    width: 1180px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 35px 60px 0 rgba(28, 30, 37, 0.08);
    margin: -272px auto 0;
    padding: 62px 15px 111px;
    text-align: center;
}
.steps h2 {
    font-size: 3.8rem;
    line-height: 62px;
    color: #484b61;
    font-weight: 600;
    margin: 0 auto 36px;
}
.steps h2 br {
    display: none;
}
.steps ul {
    font-size: 0;
}
.steps li {
    width: 33.3333%;
    display: inline-block;
    vertical-align: middle;
}
.steps img {
    display: block;
    margin: 0 auto;
}
.steps p {
    color: #484b61;
    z-index: 2;
    font-size: 2rem;
    font-weight: 600;
    position: relative;
    margin: 0;
    padding: 0 5px;
    line-height: 20px;
}
.steps__images {
    position: relative;
}
.steps__description {
    margin: 60px 0 0;
    position: relative;
}
.steps__description li {
    position: relative;
}
.steps__description li::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    font-size: 14rem;
    opacity: .5;
    font-weight: 700;
}
.steps__description li:first-of-type::before {
    content: '1';
    color: #ffe64e;
}
.steps__description li:nth-of-type(2)::before {
    content: '2';
    color: #52d183;
}
.steps__description li:last-of-type::before {
    content: '3';
    color: #59ccdd;
}
.steps__dots {
    display: none;
}
.main {
    overflow-x: hidden;
    position: relative;
    padding: 154px 0 113px;
}
.waves {
    position: absolute;
    top: -375px;
    left: 50%;
    transform: translateX(-50%);
    width: 1141px;
    height: 1141px;
}
.wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 1;
    border: 1px solid rgba(0,0,0,0.2);
    animation-name: waveAnimation;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-out;
    transform: scale(.1);
}

.wave--2 {
    transform: scale(.12);
    animation-delay: 1s;
}
.wave--3 {
    transform: scale(.14);
    animation-delay: 2s;
}
.wave--4 {
    transform: scale(.16);
    animation-delay: 3s;
}
.wave--5 {
    transform: scale(.18);
    animation-delay: 4s;
}

@keyframes waveAnimation {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}
.main__icon {
    width: 60px;
    display: block;
    margin: 0 auto;
}
.main h2 {
    text-align: center;
    font-weight: 600;
    font-size: 3.8rem;
    line-height: 62px;
    margin: 82px auto 104px;
    color: #484b61;
}
.main__container {
    width: 1180px;
    margin: 0 auto;
    max-width: calc(100% - 60px);
    text-align: center;
}
.main ul {
    font-size: 0;
    padding-bottom: 75px;
}
.main ul img {
    width: 96px;
    margin: 0 auto;
}
.main li {
    width: 187px;
    display: inline-block;
    vertical-align: top;
    position: relative;
    z-index: 2;
}
.main li p {
    position: absolute;
    top: 95%;
    left: 0;
    right: 0;
    width: 100%;
    font-size: 1.8rem;
    line-height: 24px;
    margin: 0;
}

.main__info {
    text-align: center;
    font-size: 2.4rem;
    line-height: 34px;
    margin: 70px auto 45px;
}
.main__info br {
    display: none;
}
.main hr {
    margin: 45px auto 0;
    display: block;
    height: 2px;
    background-color: #dcdee6;
    border: 0;
    outline: 0;
}
.main__footer {
    padding: 118px 0 0;
}
.main__footer img {
    width: 64px;
    margin-right: 39px;
    display: inline-block;
    vertical-align: middle;
}
.main__footer p {
    margin: 0;
    display: inline-block;
    vertical-align: top;
    font-size: 3.8rem;
    line-height: 52px;
    font-weight: 600;
    color: #484b61;
}
.main__footer span {
    display: inline-block;
    vertical-align: top;
    font-size: 6.4rem;
    font-weight: 600;
    line-height: 52px;
    margin-right: 22px;
}
.main__decoration {
    position: absolute;
}
.main__decoration--1 {
    width: 398px;
    right: 115px;
    top: -162px;
}
.main__decoration--2 {
    width: 328px;
    left: 0;
    bottom: 67px;
}
.map {
    background-color: #ccc;
    width: 100%;
    height: 800px;
    max-height: 100vh;
}
.footer {
    background-color: #323647;
    color: #797d94;
    padding: 62px 0 72px;
}
.footer__content {
    max-width: calc(100% - 60px);
    width: 1180px;
    padding: 0 0 32px;
    margin: 0 auto;
    border-bottom: 2px solid rgba(255,255,255,0.2);
}
.footer__content::after {
    content: '';
    display: table;
    clear: both;
}
.footer__contact {
    margin: 0;
    float: left;
    display: none;
}
.footer__links {
    float: right;
    padding-top: 12px;
}
.footer__links::after {
    content: '';
    display: table;
    clear: both;
}
.footer__links li {
    float: right;
    margin: 0 10px 12px;
}
.footer__links a {
    font-size: 1.6rem;
    line-height: 24px;
    color: #b0b3bf;
    font-weight: 600;
    text-decoration: none;
}
.footer__links a:hover {
    text-decoration: underline;
}
.footer__contact > span {
    color: #797d94;
    font-size: 2.4rem;
    display: block;
    margin: 0 0 20px;
}
.footer__contact a {
    text-decoration: none;
    position: relative;
    display: inline-block;
    color: #fff;
}
.footer__contact svg {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}
.footer__contact a:hover span {
    text-decoration: underline;
}
.footer__contact a svg {
    width: 20px;
    height: 16px;
    transform: translateY(-2px);
}
.footer__info {
    max-width: calc(100% - 60px);
    position: relative;
    padding: 34px 0 0;
    width: 1180px;
    margin: 0 auto;
}
.footer__info::after {
    content: '';
    display: table;
    clear: both;
}
.footer__info > p {
    color: rgba(255,255,255,0.3);
    margin: 0;
    float: left;
    font-size: 1.6rem;
    line-height: 24px;
}
.footer__info > p a {
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
}
.footer__info > p > span {
    display: inline-block;
    vertical-align: middle;
}
.footer__info > p img {
    width: 150px;
    height: auto;
}
.footer__social {
    margin-top: 0px;
    float: right;
    font-size: 1.6rem;
}
.footer__social > span {
    opacity: .3;
    color: #fff;
    display: inline-block;
    vertical-align: middle;
}
.footer__social ul {
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
}
.footer__social li {
    list-style-type: none;
    display: inline-block;
    vertical-align: middle;
    margin-left: 24px;
}
.footer__social li svg {
    transition: transform .3s ease-in;
}
.footer__social li svg {
    width: 48px;
    height: 48px;
}
.footer__social li:hover svg {
    transform: scale(1.2);
}
.footer__social a {
    display: block;
}

@media screen and (max-width: 1599px) {
    .main__decoration {
        transform: scale(0.6);
    }
    .main__decoration--1 {
        right: 15px;
        transform-origin: 100% 100%;
    }
    .main__decoration--2 {
        transform-origin: 0 100%;
    }
}

@media screen and (min-width: 768px) {
    .steps__images li:first-of-type img {
        width: 190px;
    }
    .steps__images li:nth-of-type(2) img {
        width: 180px;
    }
    .steps__images li:last-of-type img {
        width: 211px;
    }
    .main li:first-of-type {
        margin-right: -71px;
        transform: translateY(-300px);
    }
    .main li:nth-of-type(2) {
        transform: translateY(-40px);
    }
    .main li:nth-of-type(3) {
        margin-left: 75px;
        margin-right: 75px;
    }
    .main li:nth-of-type(4) {
        transform: translateY(-40px);
    }
    .main li:last-of-type {
        margin-left: -71px;
        transform: translateY(-300px);
    }
}

@media screen and (min-width: 992px) and (max-width: 1023px) {
    .main li:nth-of-type(3) {
        margin-left: 50px;
        margin-right: 50px;
    }
}

@media screen and (max-height: 830px), screen and (max-width: 1366px) {
    .header__container {
        padding: 30px 50px 350px;
    }

    .header h1 {
        margin-top: 295px;
        font-size: 8rem;
        line-height: 85px;
    }

    .header p {
        font-size: 3.4rem;
        line-height: 46px;
        margin: 30px 0 45px;
    }

    .steps {
        padding-top: 30px;
        padding-bottom: 80px;
    }
}

@media screen and (max-width: 1199px) {
    .header {
        min-height: 0;
    }
    .header h1 {
        font-size: 6rem;
        line-height: 65px;
    }
    .header p {
        font-size: 2.8rem;
        line-height: 34px;
        margin: 20px 0 40px;
    }
    .nav__holder {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media screen and (max-width: 1023px) {
    .nav {
        height: 100px;
    }
    .nav__holder {
        padding: 28px 16px 0;
        height: 100px;
    }
    .nav__holder > img {
        width: 180px;
        margin-top: 0;
    }
    .nav__logos {
        width: 150px;
        top: 30px;
    }
    .nav__holder::before {
        width: 230px;
        height: 80px;
        bottom: -50px;
    }
    .nav__holder::after {
        width: 250px;
    }
    .nav__buttons {
        margin-top: 8px;
    }
}

@media screen and (max-width: 991px) {
    .nav {
        height: 60px;
    }
    .nav__holder {
        height: 60px;
        background-color: #fff;
        box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
        border-top: 4px solid #ff4056;
        padding: 16px 10px 0 15px;
    }
    .nav__holder > img {
        width: 88px;
    }
    .nav__logos {
        width: 97px;
        top: 10px;
    }
    .nav__buttons {
        margin-top: -6px;
    }
    .nav__holder::before {
        width: 130px;
        height: 30px;
        bottom: -16px;
    }
    .nav__holder::after {
        width: 150px;
        height: 50px;
    }
    .header__container {
        padding-left: 30px;
        padding-right: 30px;
    }
    .header h1 {
        font-size: 5rem;
        line-height: 55px;
        margin-top: 110px;
    }
    .header p {
        font-size: 2.2rem;
        line-height: 26px;
        margin: 15px 0 30px
    }
    .steps p {
        font-size: 1.8rem;
    }
    .main__footer img {
        margin-right: 25px;
    }
    .main__footer span {
        margin-right: 15px;
    }
    .main__decoration {
        display: none
    }
    .footer {
        padding: 40px 0;
    }
    .footer__contact > span {
        font-size: 2.2rem;
    }
    .footer__links {
        padding-top: 8px;
    }
    .footer__info > p {
        font-size: 1.4rem;
        line-height: 18px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .main h2 {
        margin: 60px auto 44px;
    }
    .main li {
        width: 160px;
    }
    .main li p {
        font-size: 1.4rem;
        line-height: 18px;
    }
    .main li:first-of-type {
        margin-right: -90px;
        transform: translateY(-240px);
    }
    .main li:nth-of-type(3) {
        margin-left: 15px;
        margin-right: 15px;
    }
    .main li:last-of-type {
        margin-left: -90px;
        transform: translateY(-240px);
    }
}

@media screen and (max-width: 767px) {
    .nav {
        position: fixed;
    }
    .nav__buttons a {
        display: block;
        width: 250px;
        text-align: center;
        margin: 0 auto 26px;
    }
    .nav__buttons {
        display: none;
    }
    .isNavShown .nav__buttons {
        display: block;
        position: absolute;
        width: 100%;
        padding: 26px 0 0;
        left: 0;
        right: 0;
        top: 56px;
        margin: 0;
        z-index: 5;
        background-color: #fff;
    }
    .nav__hamburger {
        display: block;
        cursor: pointer;
        width: 30px;
        height: 30px;
        position: absolute;
        top: 14px;
        right: 16px;
    }
    .nav__hamburger svg {
        width: 100%;
    }
    .nav__hamburger svg:last-child,
    .isNavShown .nav__hamburger svg:first-child {
        display: none;
    }
    .nav__hamburger svg:first-child {
        display: block;
    }
    .isNavShown .nav__hamburger svg:last-child {
        display: block;
    }
    .header__container {
        padding: 12px 16px 310px;
    }
    .header h1 {
        font-size: 2.8rem;
        line-height: 32px;
        margin-top: 125px;
    }
    .header p {
        font-size: 1.8rem;
        line-height: 24px;
    }
    .header__buttons a {
        display: block;
        width: 250px;
        margin: 0 auto 16px;
        font-size: 1.6rem;
    }
    .header__buttons .button--primary {
        padding-top: 12px;
        padding-bottom: 12px;
    }
    .header__buttons .button--secondary {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .steps {
        max-width: calc(100% - 32px);
        padding: 33px 15px 15px;
        height: 355px;
    }
    .steps h2 {
        font-size: 2.2rem;
        line-height: 26px;
        font-weight: 400;
        margin-bottom: 20px;
    }
    .steps h2 br {
        display: block;
    }
    .steps__images li {
        height: 114px;
        top: 0;
    }
    .steps__description li {
        height: 80px;
        top: 114px;
    }
    .steps__description li,
    .steps__images li {
        display: block;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0;
        width: 100%;
        pointer-events: none;
        transition: opacity .3s ease-in;
        will-change: opacity;
    }
    .steps__description {
        margin-top: 36px;
    }
    .steps p {
        position: absolute;
        width: 100%;
        display: block;
        font-size: 1.6rem;
        line-height: 18px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    .steps__description li::before {
        font-size: 8rem;
    }
    .slideShown1 .steps__images li:first-child,
    .slideShown1 .steps__description li:first-child {
        opacity: 1;
        pointer-events: auto;
    }
    .slideShown2 .steps__images li:nth-child(2),
    .slideShown2 .steps__description li:nth-child(2) {
        opacity: 1;
        pointer-events: auto;
    }
    .slideShown3 .steps__images li:last-child,
    .slideShown3 .steps__description li:last-child {
        opacity: 1;
        pointer-events: auto;
    }
    .steps img {
        height: 114px;
        width: auto;
    }
    .steps__dots {
        display: block;
        position: absolute;
        bottom: 24px;
        left: 0;
        right: 0;
        width: 100%;
        font-size: 0;
    }
    .steps__dots li {
        margin-left: 6px;
        margin-right: 6px;
        vertical-align: middle;
        display: inline-block;
        width: 8px;
        height: 8px;
        border: 1px solid #dcdee6;
        border-radius: 50%;
        background-color: #fff;
        cursor: pointer;
    }
    .slideShown1 .steps__dots li:first-child,
    .slideShown2 .steps__dots li:nth-child(2),
    .slideShown3 .steps__dots li:last-child {
        background-color: #ff4056;
        border-color: #ff4056;
        box-shadow: 0 2px 4px 0 rgba(255, 64, 86, 0.2);
    }
    .main {
        padding: 50px 0 36px;
    }
    .waves {
        top: -479px;
    }
    .main h2 {
        margin: 21px 0 48px;
        font-size: 2.2rem;
        line-height: 28px;
        font-weight: 400;
    }
    .main ul {
        display: block;
        max-width: 288px;
        margin: 0 auto;
        padding-bottom: 12px;
    }
    .main li {
        text-align: left;
        display: block;
        width: 100%;
        margin-bottom: 30px;
    }
    .main ul img {
        display: inline-block;
        vertical-align: middle;
        width: 68px;
        transform: translate(-8px, 3px);
    }
    .main li p {
        position: static;
        display: inline-block;
        vertical-align: middle;
        width: 220px;
        font-size: 1.6rem;
        line-height: 20px;
    }
    .main__container {
        max-width: calc(100% - 32px);
    }
    .main__info {
        font-size: 1.6rem;
        line-height: 20px;
        margin: 0 0 40px;
    }
    .main__info br {
        display: block;
    }
    .main__footer span {
        vertical-align: middle;
        font-size: 3.4rem;
        line-height: 34px;
    }
    .main__footer {
        padding-top: 36px;
    }
    .main__footer img {
        width: 36px;
    }
    .main__footer p {
        font-weight: 400;
        margin-top: 16px;
        font-size: 2.2rem;
        line-height: 26px;
        display: block;
    }
    .map {
        height: 450px;
    }
    .footer__content {
        max-width: calc(100% - 32px);
    }
    .footer__info {
        padding-top: 87px;
        text-align: center;
        max-width: calc(100% - 32px);
    }
    .footer__contact > span {
        font-size: 1.8rem;
    }
    .footer__contact a {
        font-size: 1.4rem;
    }
    .footer__info > p {
        float: none;
    }
    .footer__info > p img {
        width: 107px;
    }
    .footer__info > p a {
        margin: 0 auto 12px;
    }
    .footer__info > p > span {
        display: block;
    }
    .footer__content {
        padding-bottom: 20px;
    }
    .footer__contact {
        float: none;
        text-align: center;
    }
    .footer__links {
        text-align: left;
        font-size: 0;
        float: none;
        margin-left: auto;
        margin-right: auto;
        width: 328px;
        max-width: 100%;
        padding: 32px 21px 0;
    }
    .footer__links a {
        font-size: 1.4rem;
        line-height: 18px;
    }
    .footer__links li {
        display: inline-block;
        float: none;
    }
    .footer__social {
        margin: 0;
        position: absolute;
        top: 13px;
        left: 0;
        right: 0;
        width: 100%;
        padding-bottom: 13px;
        border-bottom: 2px solid rgba(255,255,255,0.2);
    }
}

@media screen and (max-width: 359px) {
    .nav__logos {
        top: 10px;
        width: 80px;
    }
    .nav__holder::before,
    .nav__holder::after {
        display: none;
    }

    .footer__links {
        padding-left: 0;
        padding-right: 0;
    }
}