body {
    margin: 0;

    background-color: #fff;

    font-family: 'PT Sans', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #585858;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

}


body.no-scroll,
body.show-nav {
    overflow: hidden;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

p {
    margin: 0 0 10px;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.img {
    display: block;
    max-width: 100%;
    height: auto;
}

.text-center {
    text-align: center;
}


/* Page */

.page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
}

/*  Container */
.container {
    width: 100%;
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 15px;
}


/* Header */
.header {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background .2s linear;
}

.header--dark,
body.show-nav .header {
    background-color: rgba(0, 0, 0, 0.8);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}




/* Burger */

.burger {
    width: 30px;
    height: 23px;
    position: relative;
    padding: 0;
    background: none;
    border: 0;

    font-size: 0;
    color: transparent;

    display: none;
}

.burger:focus {
    outline: none;
}

.burger__line {
    display: block;
    width: 30px;
    height: 2px;
    margin: 3px 0;

    background-color: #fff;

    transition: transform .2s ease-out;
}

.burger__line:nth-child(1) {
    width: 20px;
    margin-left: auto;
}

.burger__line:nth-child(1),
.burger__line:nth-child(3) {
    transform-origin: right;
    transition: width .2s ease-out;
}

.burger.active .burger__line:nth-child(1),
.burger.active .burger__line:nth-child(3) {
    width: 0;
}

.burger.active .burger__line:nth-child(2),
.burger.active .burger__line:nth-child(4) {
    position: absolute;
    left: 0;
    top: 50%;

    transform-origin: center;
}

.burger.active .burger__line:nth-child(2) {
    transform: rotate(45deg);
}

.burger.active .burger__line:nth-child(4) {
    transform: rotate(-45deg);
}

/*  Nav  */
.nav {
    display: flex;
    font-size: 16px;
    height: 100%;
}

.nav__link {
    display: flex;
    align-items: center;
    padding: 0 15px;
    color: #fff;
    text-decoration: none;

    transition: background .2s linear;
}

.nav__link:not(.active):hover {
    text-decoration: underline;
}


.nav__link.active {
    background-color: #004AF2;
}

/* Intro */

.intro {
    margin-bottom: 30px;
    position: relative;

}

.intro__inner-arrows {
    position: absolute;
    bottom: 30px;
    left: 430px;
}

.intro__inner {
    height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.intro__slider-btn {
    width: 0;
    height: 0;
    padding: 0;
    margin: 0 5px;
    color: transparent;
    font-size: 0;
    cursor: pointer;

    background: none;
}

.intro__slider-btn:focus {
    outline: 0;
}

.intro__slider-btn-prev {

    border-style: solid;
    border-width: 10px 10px 10px 0;
    border-color: transparent #fff transparent transparent;
}

.intro__slider-btn-next {
    border-style: solid;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #fff;
    }

.intro--text {
    height: 350px;
      background: #000 url("../img/text-bg.jpg") no-repeat center;
    background-size: cover;
}

.intro--blog {
    height: 350px;
      background: #000 url("../img/blog-bg.jpg") no-repeat center;
    background-size: cover;
}

.intro__slider {
    width: 100%;
    height: 100%;
    overflow: hidden;

    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;


    background: #04222a url(../img/slider/slide-1.jpg) no-repeat center;
    background-size: cover;
}

.intro__slider.slider-item {
    display: none;
}

.intro__slider.slick-initialized.slider-item {
    display: block;
}

.intro__slider .slick-list,
.intro__slider .slick-track {
    height: 100%;
}

.intro__slider-item {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.intro__slider-photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;

}

.intro__text {
    text-align: right;
    margin-bottom: 45px;
}

.intro__countries {
    font-size: 16px;
    color: #fff;
}

.intro__title {
    position: relative;

    font-size: 110px;
    font-family: 'Lato', sans-serif;
    line-height: 0.9;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
}

.intro__title-amp {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);

    font-size: 170px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, 0.2);
}



/* request-form */

.request-form {
    width: 100%;
    max-width: 400px;
    background-color: #004AF2;

    border-radius: 5px;
    overflow: hidden;
}

.request-form--right {
    margin-left: auto;
}

.request-form--intro {
    position: relative;
    bottom: -30px;
}

.request-form__header {
    background-color: #033FC9;
    padding: 20px 30px;
}

.request-form__title {
    margin-bottom: 5px;
    font-family: 'Lato', sans-serif;
    font-size: 30px;
    font-weight: 900;
    color: #fff;
}

.request-form__text {
    font-size: 16px;
    color: #fff;
}

.request-form__content {
    padding: 30px;
}




/* Form */

.form__group {
    margin-bottom: 25px;
}

.input {
    display: block;
    width: 100%;
    padding-bottom: 12px;
    padding-left: 50px;

    border-radius: 0;
    appearance: none;
    box-shadow: none;

    background: none;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, .25);


    font-family: 'PT sans', sans-serif;
    font-size: 16px;
    color: #fff;
    transition: border-color 0.2s linear;
}

.input::placeholder {
        color: #fff;

}

.input:focus {
    outline: none;
    border-bottom-color: #fff;
}

.input--user {
    background: url(../img/user-icon.svg) left 15px top 5px no-repeat;
}

.input--phone {
    background: url(../img/phone-icon.svg) left 15px top 5px no-repeat;
}

.input--email {
    background: url(../img/mail-icon.svg) left 15px top 6px no-repeat;
}

.input--dark {
    color: #2C2C2C;
    border-bottom-color: #E8E8E8;
}

.input--dark::placeholder {
    color: #2C2C2C;
}

.input--dark:focus {
    border-bottom-color: #000;
}

.input--dark.input--user {
    background-image: url(../img/user-black-icon.svg);
}

.input--dark.input--phone {
    background-image: url(../img/team/phone-black-icon.svg);
}

.input--dark.input--email  {
    background-image: url(../img/team/mail-black-icon.svg);
}


/* Btn */

.btn {
    display: inline-block;
    vertical-align: middle;
    padding: 15px 45px;
    position: relative;
    overflow: hidden;

    font-family: 'PT Sans', sans-serif;
    font-size: 18px;
    line-height: 1.1;
    color: #fff;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    text-decoration: none;

    background: #333;
    border: 0;
    border-radius: 5px;

    transition: background .2s linear;
}

.btn:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;

    background-color: #000;
    opacity: 0;

    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;

    transition: opacity .2s linear;
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn:hover:before {
    opacity: .15;
}

.btn--block {
    display: block;
    width: 100%;
}

.btn--orange {
    background-image: linear-gradient(to right, #FF903E, #FF2C2C);
}

.btn--shadow {
    box-shadow: 0 10px 15px rgba(0, 0, 0, .2);
}


/* Section */

.section {
    padding: 60px 0;
}

.section--last {
    margin-bottom: 60px;
}

.section--map {
    background: url(../img/map.svg) no-repeat left 30px top 130px;
}

.section--grey {
    background-color: #F9F9F9;
}

.section__title {
    margin-bottom: 40px;
    font-family: 'Lato', sans-serif;
    font-size: 45px;
    line-height: 1.2;
    font-weight: 900;
    color: #2C2C2C;
}

.section__title span {
    color: #0D53F2;
}

/* Services*/
.services {
    display: flex;
    flex-wrap: wrap;
    padding: 25px 0 50px;
    position: relative;

    background-color: #fff;
    border-right: 5px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, .2);
}

.services__main-title {
    font-family: 'Lato', sans-serif;
    font-size: 90px;
    font-weight: 900;
    line-height: 1;
    color: rgba(44, 44, 44, .05);

    position: absolute;
    bottom: 12px;
    right: 30px;
    z-index: 1;

}

.services__item {
    display: flex;
    flex-direction: column;
    width: 25%;
    padding:0 25px;
    margin-bottom: 30px;

    position: relative;
    z-index: 2;
}

.services__title {
    margin-bottom: 20px;
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    line-height: 1.2;
    color: #2C2C2C;
    font-weight: 900;
}

.services__text {
    font-size: 16px;
    color: #585858;
}

.services__footer {
    margin-top: auto;
}

.services__link {
    display: inline-block;
    color: #004AF2;
    font-size: 16px;
    text-decoration: none;
}

.services__link:after {
    content: "";
    display: block;
    width: 10px;
    height: 2px;
    margin-top: 5px;

    background-color: #004AF2;
    transition: width .1s linear;
}

.services__link:hover {
    color: #FF3E2F;
}

.services__link:hover:after {
    width: 100%;
    background-color: #FF3E2F;
}


/* Clients */

.clients {
    display: flex;
    margin-bottom: 60px;
}

.clients__logos {
    width: 60%;
}

.clients__reviews {
    width: 40%;
}

.clients__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.clients__list li {
    margin-right: 50px;
    margin-bottom: 40px;
}

.clients-love {
    display: inline-block;
    margin-left: 40px;
    min-height: 47px;
    padding-top: 5px;

    font-size: 18px;
    color: #464646;

    background: url(../img/heart.svg) no-repeat left 20px top;
 }

/* Reviews */

.reviews {
    position: relative;
    height: 200px;

    background: url(../img/ajax-loader.gif) no-repeat center;
}

.reviews.slick-initialized {
    background: none;
    height: auto;

}

.reviews:before,
.reviews:after {
    content: "";
    display: block;
    width: 10px;
    height: 100%;

    position: absolute;
    top: 0;
    z-index: 3;
}

.reviews:before {
    left: 0;
    background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
}
.reviews:after {
    right: 0;
     background-image: linear-gradient(to left, #fff, rgba(255, 255, 255, 0));
}

.reviews .slick-list {
    z-index: 2;
    padding-top: 20px;
}

.reviews .slick-dots {
    width: 100%;
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: -20px;
    left: 0;
    z-index: 3;
}

.reviews .slick-dots li {
    margin: 0 8px;
}

.reviews .slick-dots li.slick-active button {
    background: #004AF2;
    box-shadow: 0 0 0 5px rgba(0, 74, 242, .11);

}

.reviews .slick-dots button {
    display: block;
    width: 10px;
    height: 10px;

    padding: 0;
    background: #DBDBDB;
    border: 0;
    border-radius: 50%;

    cursor: pointer;

    color: transparent;
    font-size: 0;

    transition: background-color .2s linear, border-color .2s linear;
}

.reviews .slick-dots button:focus {
    outline: 0;
}

.reviews__item {
    display: none;
    padding: 0 10px;
}



.reviews__header {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;

    margin-bottom: 30px;
}

.reviews__header:before {
    content: "";
    width: 92px;
    height: 126px;

    background: url(../img/lines.svg) no-repeat;
    position: absolute;
    top: -14px;
    left: 0px;
    z-index: 1;
}

.reviews__header-content {
    flex-grow: 1;
    padding-left: 20px;
    font-family: 'Lato', sans-serif;
}

.reviews__photo {
    width: 100px;
    height: 100px;
    position: relative;
    z-index: 2;

    border: 5px solid #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
    border-radius: 50%;

}

.reviews__name {
    font-size: 18px;
    color: #2c2c2c;
    font-weight: 900;
}

.reviews__company {
    font-size: 16px;
    color: #2c2c2c;
}

.reviews__content {
    font-size: 16px;
    color: #585858;
    line-height: 1.8;
    font-family: 'PT sans', sans-serif;
}

.reviews__content p {
    margin-bottom: 20px;
}

.reviews__content p:first-line {
    text-indent: 20px;
}


/* Benefits */

.benefits {
    display: flex;
}

.benefits__col {
    width: 100%;
}

.benefits-list {
    width: 100%;
    max-width: 370px;
    padding-left: 50px;
    position: relative;

    background-image: linear-gradient(to bottom, #fff 40%, #A5A5A5 40%);
    background-size: 2px 35px;
    background-repeat: repeat-y;
    background-position: left 12px top;

}

.benefits-list:before,
.benefits-list:after {
    content: "";
    display: block;
    width: 26px;
    height: 36px;

    background-repeat: no-repeat;
    background-color: #fff;

    position: absolute;
    left: 0;
    z-index: 1;
}

.benefits-list:before {
    background-image: url(../img/pin-start.svg);
    top: 0;
}

.benefits-list:after {
   background-image: url(../img/pin-end.svg);
    bottom: 0;
}

.benefits-list__item:not(:last-child) {
    margin-bottom: 35px;

}

.benefits-list__title {
    margin-bottom: 12px;

    font-family: 'Lato', sans-serif;
    font-size: 21px;
    line-height: 1.2;
    color: #2C2C2C;
    font-weight: 900;
}

.benefits-list__text {
    font-family: 'PT sans', sans-serif;
    font-size: 16px;
    color: #585858;
}



/* Team */

.team {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.team__col {
    width: 33.33333%;
    padding: 0 15px;
    margin-bottom: 30px;
}

.team__photo {
    box-shadow: 10px 5px 13px rgba(0, 0, 0, .16);
    margin-bottom: 13px;
}

.team__name {
    margin-bottom: 5px;

    font-family: 'Lato', sans-serif;
    color: #2C2C2C;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.2;
}

.team__prof {
    margin-bottom: 11px;
    font-size: 16px;
    color: #585858;
}

.team__contacts {
    font-size: 14px;
    color: #585858;
}

.team__contacts li {
    margin-bottom: 9px;
}

.team__contacts a {
    color: inherit;
    text-decoration: none;
}

.team__contacts a:hover {
    text-decoration: underline;
}

.team__contacts-icon {
    width: 16px;
    height: auto;
    margin-right: 7px;
}


/* Mission */

.mission-title {
    font-family: 'Lato', sans-serif;
    font-size: 90px;
    font-weight: 900;
    line-height: 1;
    color: rgba(0, 0, 0, .05);
    text-align: center;
    text-transform: uppercase;
}


.mission {
    position: relative;
    margin-top: -25px;

    padding: 60px 30px;
    margin-bottom: 30px;

    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, .16);
    font-family: 'Lato', sans-serif;

    text-align: center;

}

.mission:before,
.mission:after {
    content: "";
    display: block;
    width: 41.66666%;
    height: 2px;
    position: absolute;
    bottom: 0;
    z-index: 1;
}
.mission:before {
    background-color: #004AF2;
    right: 50%;
}

.mission:after {
    background-color: #FC2C2B;
    left: 50%;

}

.mission__title {
    margin-bottom: 5px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    color: #004AF2;
}

.mission__subtitle {
    font-size: 21px;
    color: #585858;
}


/* Articles */


.articles {
    display: flex;
    justify-content: space-between;
    margin: 0 -15px 30px;
}

.articles--column {
    flex-direction: column;
    margin-bottom: 75px;
}

.articles--column
.articles__item {
    max-width: none;
    margin-bottom: 45px;
}

.articles--column
.articles__item:last-child {
    margin-bottom: 0;
}

.articles__item {
    width: 100%;
    max-width: 500px;
    margin-bottom: 20px;
    padding: 0 15px;
}

.articles__title {
    margin-bottom: 15px;

    font-size: 24px;
    font-weight: 700;
    color: #2C2C2C;
}

.articles__title a {
    color: inherit;
    text-decoration: none;
}

.articles__title a:hover {
    text-decoration: underline;
}

.articles__text {
    font-size: 16px;
    color: #585858;
    margin-bottom: 15px;
}

.articles__date {
    display: block;

    font-style: 12px;
    color: #6E6E6E;
}



/* Footer */


.footer {
    margin-top: auto;
    padding: 40px;
    background-color: #F9F9F9;
    background-image:
        url(../img/tire-left.svg),
        url(../img/tire-right.svg);
    background-repeat: no-repeat;
    background-position: left -50px bottom -80px, right -50px bottom -80px;
    text-align: center;
}

.footer__contacts {
    margin: 25px 0;

    text-align: center;
    font-weight: 700;
    font-size: 12px;
    font-style: normal;
    color: #585858;

}

.footer__contacts p {
    margin: 0 0 5px;
}

.footer__contacts a {
    color: inherit;
    text-decoration: none;
}

.footer__contacts a:hover {
    text-decoration: underline;
}

.footer__nav {
    font-size: 12px;

}

.footer__nav a {
    margin: 0 5px;
    color: #004AF2;
    text-decoration: none;
}

.footer__nav a:hover {
    text-decoration: underline;
}



/* Modals */

.modal {
    display: none;

    width: 100%;
    height: 100%;
    padding: 40px 15px;
    overflow: auto;

    background-color: rgba(0, 0, 0, .9);

    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
}

.modal.show {
    display: block;
}

.modal__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100%;
}

.modal__content {
    width: 100%;
    max-width: 400px;
    padding: 25px;
    position: relative;

    background-color: #fff;
    opacity: 0;

    transform: scale(0.5);

    transition: transform .2s ease-out, opacity .2s ease-out;

}

.modal__header {
    text-align: center;
    margin-bottom: 25px;
}

.modal__icon {
     margin-bottom: 10px;
}

.modal__title {
    margin-bottom: 10px;
    color: #004AF2;
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.2;
}

.modal__text {
    font-size: 16px;
    color: #2C2C2C;
    text-align: center;
}

.modal__footer {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #E8E8E8;

    text-align: center;
}

.modal__footer-title {
    margin-bottom: 10px;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: #2C2C2C;
}

.modal__contacts {
    font-size: 14px;
    color: #2C2C2C;
    font-style: normal;
}

.modal__contacts p {
    margin-bottom: 3px;
}

.modal__contacts a {
    color: inherit;
    text-decoration: none;
}

.modal__contacts a:hover {
    text-decoration: underline;
}

.modal__close {
    width: 20px;
    height: 20px;
    padding: 0;

    background: none;
    border: none;
    cursor: pointer;

    position: absolute;
    top: -20px;
    right: -30px;
    z-index: 1;

    transition: transform .2s linear;
}

.modal__close:hover {
    transform: rotate(180deg);
}

.modal__close img {
    display: block;
}



/* Main */

.main {
    display: flex;
    margin: 0 -15px;
}

.main__col {
    width: 50%;
    padding: 0 15px;
}



/* Text */

.text {
    margin-bottom: 50px;
    max-width: 890px;

    font-size: 18px;
    color: #585858;
    line-height: 1.5;
}

.text p {
    margin-bottom: 20px;
}

.text h2,
.text h3,
.text h4,
.text h5,
.text h6 {
    margin-bottom: 20px;
    font-weight: 700;
    color: #2C2C2C;
}

.text h2 {
    font-size: 27px;
}

.text h3 {
    font-size: 24px;
}

.text h3 {
    font-size: 24px;
}

.text h4 {
    font-size: 21px;
}

.text h5 {
    font-size: 18px;
}

.text h6 {
    font-size: 16px;
}

.text ul,
.text ol {
    margin-bottom: 20px;
}

.text ol {
    list-style: decimal;
    list-style-position: inside;
}

.text hr {
    display: block;
    width: 100%;
    height: 1px;
    margin: 40px 0;

    border: 0;
    background-color: #d1d1d1;
}


.text img{
    display: block;
    max-width: 100%;
    height: auto;
}

.text a {
    text-decoration: none;
    color: #004AF2;
}

.text a:hover {
    text-decoration: underline;
}



/* Media =======
======================== */

@media (max-width: 991px) {


/*  Intro  */

    .intro__title {
        font-size: 90px;
    }

    .intro__title-amp {
        font-size: 120px;

        right: auto;
        left: 50%;
        transform: translate3d(-50%, -50%, 0);
    }

    .intro--blog,
    .intro--text {
        height: 250px;
    }

    .intro__inner-arrows {
        display: none;
    }



/*  Section  */
    .section__title {
        text-align: center;
    }

    .section--map {
        background-position: center top 130px;
    }



/*  Services  */

    .services__item {
        width: 50%;
    }

/*  Clients  */

    .clients {
        flex-direction: column;
        margin-bottom: 60px;
    }

    .clients__logos,
    .clients__reviews {
        width: 100%;
    }

    .clients__list {
        justify-content: center;
    }

    .clients__logos {
        margin-bottom: 50px;
    }

    .clients__list li {
        max-width: 130px;
    }

  /*  Footer  */

    .footer {
    background-size: 330px auto;
    background-position: left -30px bottom -30px, right -30px bottom -30px;
    }

    .main__col--left {
        width: 55%;
    }
    .main__col--right {
        width: 45%;
    }

}





@media (max-width: 767px){


/*  header__inner  */

    .header__inner {
        height: 50px;
    }

/*  nav  */

      .nav {
        display: none;
        width: 100%;
        flex-direction: column;
        min-height: calc(100vh - 50px);
        overflow: auto;
        padding-top: 9px;

        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1;

        background-color: rgba(0, 0, 0, .85);

          transform: translateX(100%);
          transition: transform .2s ease-out;
    }

    .nav.show {
        display: block;
        transform: translateX(0);
}

    .nav__link {
        display: block;
        padding: 10px 15px;
        text-align: right;
    }

    .burger {
        display: block;
    }



/*  Intro  */

    .intro {
        margin-bottom: 0;
    }

    .intro__inner {
        flex-direction: column;
        align-items: center;
        height: auto;
        padding-top: 75px;
        padding-bottom: 25px;
    }

    .intro__text {
        order: 1;
        width: 100%;
        margin-bottom: 25px;

        text-align: center;
    }

     .intro__title {
        font-size: 70px;
    }

    .intro__title-amp {
        font-size: 100px;

    }




 /*  reaquest form  */

    .request-form--intro {
        order: 2;
        position: static;
    }

    .request-form--right {
        margin: 30px auto 0;
        display: none;
    }


/*  Benefits  */
    .benefits {
        flex-direction: column;
        max-width: 600px;
        margin: 0 auto;

    }
    .benefits__col {
        width: 100%;
    }

    .benefits-list {
        margin-bottom: 30px;
        max-width: none;
    }


/*  Team  */
    .team {
        flex-direction: column;
    }

    .team__col {
        width: 100%;
    }

    .team__col:last-child {
        margin-bottom: 0;

    }
    .team__item {
        max-width: 370px;
        margin: 0 auto;
    }

/*  Mission  */
    .mission {
        padding: 40px 20px;
        margin-top: -16px;

    }

    .mission-title {
        font-size: 70px;
    }

    .mission__title {
        font-size: 24px;
    }
    .mission__subtitle {
        font-size: 18px;
    }

/*  Articles  */

    .articles {
        flex-wrap: wrap;
    }

    .articles__item {
        max-width: none;
    }

    /*  Footer  */

    .footer {
    background-size: 250px auto;
    background-position: left -20px bottom -30px, right -20px bottom -30px;
    }

/*  Main  */

    .main {
        flex-direction: column;
    }

    .main__col {
        width: 100%;
    }

    .articles--column {
        margin-bottom: 30px;
    }

}


@media (max-width: 575px) {

      .intro__title {
        font-size: 60px;
    }

    .intro__title-amp {
        font-size: 90px;
    }


/*  Services  */

    .services {
        padding-top: 55px;
        padding-bottom: 10px;
    }

    .services__main-title {
        font-size: 60px;

        text-align: center;
        width: 100%;
        bottom: auto;
        right: auto;
        top: 20px;

    }

   .services__item {
        width: 100%;
    }


/*  Section  */

    .section__title {
        font-size: 35px;
    }

    .section {
        padding: 30px 0;
    }
    .section--last {
        margin-bottom: 30px;
    }



/*  reauest form  */

    .request-form__header,
    .request-form__content {
        padding: 20px;
    }

    .request-form__title {
        font-size: 25px;
    }

/*  Clients  */

    .clients__list {
        margin: 0 -15px;
    }


    .clients__list li {
        max-width: none;
        width: 33.33333%;
        margin-right: 0;
        padding: 0 15px;
        }

    .clients__list-logo {
        margin: 0 auto;
    }

    .clients-love {
        display: block;
        margin-top: 20px;
    }



    /*  Mission  */
    .mission {
        padding: 30px 20px;
        margin-top: -10px;
    }

    .mission-title {
        font-size: 70px;
    }

    .mission__title {
        font-size: 20px;
    }

    .mission__subtitle {
        font-size: 16px;
    }

 /*  Footer  */

    .footer {
    background-position: left -120px bottom -50px, right -120px bottom -50px;
    }

 /*  Modal  */

    .modal__close {
        right: 0;
        top: -30px;
    }



}



@media (max-width: 320px) {
    .intro__title {
        font-size: 40px;
    }

    .intro__title-amp {
        font-size: 50px;
    }

    .intro__inner {
        padding-top: 65px;
    }

    /*  request form  */

    .request-form__header,
    .request-form__content {
        padding: 15px;
    }

    .mission-title {
    font-size: 40px;
    }

}
















