@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700');

.btn-main
{
    position: relative;
    z-index: 55;

    display: block;

    width: 20px;
    height: 16px;
    padding: 0;

    cursor: pointer;

    border: 0 none;
    outline: none;
    background-color: transparent;
}

.btn-main__line
{
    position: absolute;
    top: 50%;
    right: 0;

    display: block;

    width: 20px;
    height: 2px;

    transition: .4s;

    background-color: #fff;
}

.btn-main__line:first-child
{
    margin-top: -8px;
}

.btn-main__line:nth-child(2)
{
    margin-top: -1px;
}

.btn-main__line:last-child
{
    margin-top: 6px;
}

.btn-main.open span:first-child
{
    margin-top: -1px;

    -webkit-transform: rotate(225deg);
            transform: rotate(225deg);
}

.btn-main.open span:nth-child(2)
{
    -webkit-transform: scale(0);
            transform: scale(0);
}

.btn-main.open span:last-child
{
    margin-top: -1px;

    -webkit-transform: rotate(-225deg);
            transform: rotate(-225deg);
}

*
{
    box-sizing: border-box;
}

body
{
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.35;

    margin: 0;

    color: #2f304b;
}

body input,
body button,
body textarea,
body select,
body optgroup
{
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
}

a
{
    transition: color .4s;
    text-decoration: none;

    color: #2f304b;
}

.container
{
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
}

.wrap
{
    position: relative;
}

.main-wrap
{
    overflow: hidden;
}

.main__visual
{
    position: relative;

    overflow: hidden;

    background: linear-gradient(to bottom, #292a54 0%, #363775 100%);
}

.main__visual:before
{
    position: absolute;

    width: 790px;
    height: 857px;

    content: '';

    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: left center;
    background-size: contain;
}

.main__visual--front:before
{
    background-image: url('../img/pattern_front.svg');
}

.main__visual--about:before
{
    background-image: url('../img/pattern_about.svg');
}

.main__visual--services:before
{
    background-image: url('../img/pattern_services.svg');
}

.main__visual--products:before
{
    background-image: url('../img/pattern_products.svg');
}

.main__visual--experience:before
{
    background-image: url('../img/pattern_experience.svg');
}

.main__visual--contacts:before
{
    background-image: url('../img/pattern_contacts.svg');
}

.top-title
{
    font-weight: 600;
    line-height: 1.1;

    margin: 0;

    letter-spacing: .05em;
    text-transform: uppercase;

    color: #fff;
}

.top-title__green
{
    color: #71cc5d;
}

.top-title__red
{
    color: #ff706d;
}

.top-title__blue
{
    color: #2a97fc;
}

.top-title span
{
    display: block;
}

.content__extra
{
    margin-top: 30px;
}

.page-title
{
    font-weight: bold;

    margin-bottom: 2em;

    color: #fc575a;
}

.description ul
{
    padding: 0;

    list-style: none;
}

.description ul li
{
    position: relative;

    padding-left: 32px;
}

.description ul li:first-child 
{
	margin-top: 1em;
}


.description ul li:not(:last-child)
{
    margin-bottom: 10px;
}

.description ul li:before
{
    position: absolute;
    top: 8px;
    left: 0;

    width: 16px;
    height: 2px;

    content: '';

    background-color: #fc575a;
}


div > ul.level2 > li:before
{
	display:none;
}

div > ul.level2 > li
{
	padding-left:0;
}

.tagline
{
    font-weight: bold;

    color: #fc575a;
}

.pro-box__qty
{
    font-weight: bold;
    line-height: 1;

    padding: .15em 0;

    color: #fff;
    text-shadow: 0 -1px 1px #ff706d, 0 -1px 1px #ff706d, 0 1px 1px #ff706d, 0 1px 1px #ff706d, -1px 0 1px #ff706d, 1px 0 1px #ff706d, -1px 0 1px #ff706d, 1px 0 1px #ff706d, -1px -1px 1px #ff706d, 1px -1px 1px #ff706d, -1px 1px 1px #ff706d, 1px 1px 1px #ff706d, -1px -1px 1px #ff706d, 1px -1px 1px #ff706d, -1px 1px 1px #ff706d, 1px 1px 1px #ff706d;
}

.pro-box__label
{
    font-weight: bold;

    color: #fc575a;
}

.map
{
    min-height: 400px;

    background-color: #f5f5f5;
}

.header
{
    position: absolute;
    z-index: 10;
    top: 0;
    right: 0;
    left: 0;
}

.header__wrap
{
    display: flex;

    justify-content: flex-start;
    align-items: center;
}

.logo
{
    position: relative;
    z-index: 60;

    display: block;
    overflow: hidden;

    text-indent: -9999px;

    background-image: url('../img/logo_main.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.h-nav__list
{
    padding: 0;

    list-style: none;
}

.h-link
{
    font-weight: 500;

    text-transform: uppercase;
}

.accordion__term
{
    font-weight: bold;

    position: relative;

    margin-bottom: .75em;
    padding-left: 32px;

    cursor: pointer;
    transition: .4s;
    text-decoration: underline;
}

.accordion__term:before,
.accordion__term:after
{
    position: absolute;
    top: 8px;
    left: 0;

    width: 16px;
    height: 2px;

    content: '';
    transition: .4s;

    background-color: #ff706d;
}

.accordion__term:after
{
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
}

.accordion__term.open
{
    text-decoration: none;

    color: #ff706d;
}

.accordion__term.open:after
{
    -webkit-transform: rotate(0);
            transform: rotate(0);
}

.accordion__description
{
    display: none;
    overflow: hidden;

    margin: 0 0 .75em 32px;
    padding: 0;
}

.accordion__description .description
{
    margin-top: -.5em;
}

@media (min-width: 480px)
{
    .row
    {
        display: flex;

        margin: -15px;

        justify-content: flex-start;
        align-items: stretch;
        flex-wrap: wrap;
    }

    .row--aic
    {
        align-items: center;
    }

    .row--aife
    {
        align-items: flex-end;
    }

    .col
    {
        max-width: 100%;
        padding: 15px;

        flex: 1 1 100%;
        flex-grow: 1;
    }

    .col--fourth
    {
        max-width: 50%;

        flex-basis: 50%;
    }

    .col--fifth
    {
        max-width: 50%;

        flex-basis: 50%;
    }

    .col--sixth
    {
        max-width: 50%;

        flex-basis: 50%;
    }

    .top-title
    {
        font-size: 40px;
    }
}

@media (min-width: 768px)
{
    .col--third
    {
        max-width: 50%;

        flex-basis: 50%;
    }

    .col--fifth
    {
        max-width: 33.33333%;

        flex-basis: 33.33333%;
    }

    .col--sixth
    {
        max-width: 33.33333%;

        flex-basis: 33.33333%;
    }

    .container
    {
        width: 750px;
    }

    .wrap
    {
        padding-right: 30px;
        padding-left: 30px;
    }

    .top-title
    {
        font-size: 55px;
    }

    .page-title
    {
        font-size: 23px;
    }

    .description
    {
        font-size: 15px;
    }

    .tagline
    {
        font-size: 36px;
    }

    .pro-box__qty
    {
        font-size: 120px;
    }

    .pro-box__label
    {
        font-size: 23px;
    }

    .logo
    {
        width: 192px;
        height: 60px;
    }

    .accordion
    {
        font-size: 15px;
    }
}

@media (min-width: 992px)
{
    .col--half
    {
        max-width: 50%;

        flex-basis: 50%;
    }

    .col--fourth
    {
        max-width: 25%;

        flex-basis: 25%;
    }

    .col--fifth
    {
        max-width: 25%;

        flex-basis: 25%;
    }

    .col--sixth
    {
        max-width: 25%;

        flex-basis: 25%;
    }

    .container
    {
        width: 970px;
    }

    .header__btn
    {
        display: none;
    }

    .h-nav__list
    {
        display: flex;

        margin: 0 -10px;

        justify-content: flex-start;
        align-items: center;
    }

    .h-nav__item
    {
        padding: 0 10px;
    }

    .h-link
    {
        font-size: 15px;
        line-height: 1.45;
    }
}

@media (min-width: 1200px)
{
    .col--third
    {
        max-width: 33.33333%;

        flex-basis: 33.33333%;
    }

    .col--fifth
    {
        max-width: 20%;

        flex-basis: 20%;
    }

    .col--sixth
    {
        max-width: 20%;

        flex-basis: 20%;
    }

    .container
    {
        width: 1170px;
    }

    .wrap--container
    {
        max-width: 1340px;
    }

    .main__wrap
    {
        display: flex;

        max-width: 1340px;

        justify-content: flex-start;
        align-items: stretch;
    }

    .main__col
    {
        max-width: 50%;
        padding-top: 170px;

        flex: 1 0 50%;
    }

    .main__visual
    {
        min-height: 100vh;
    }

    .main__visual:before
    {
        top: 0;
        left: 0;
    }

    .main__main
    {
        padding-bottom: 50px;
    }

    .header
    {
        padding: 44px 0;
    }

    .header__logo,
    .header__nav
    {
        max-width: 50%;

        flex: 1 0 50%;
    }

    .h-link
    {
        color: #2f304b;
    }

    .h-link:hover,
    .h-link--active
    {
        color: #ff706d;
    }
}

@media (min-width: 1340px)
{
    .col--sixth
    {
        max-width: 16.66666%;

        flex-basis: 16.66666%;
    }

    .container
    {
        width: 1340px;
    }

    .main__main
    {
        padding-right: 20px;
        padding-left: 50px;
    }

    .top-title
    {
        font-size: 65px;
    }

    .h-nav
    {
        padding-left: 50px;
    }

    .h-nav__list
    {
        margin: 0 -14px;
    }

    .h-nav__item
    {
        padding: 0 14px;
    }
}

@media (max-width: 1199px)
{
    .main__visual
    {
        padding-top: 120px;
        padding-bottom: 20px;
    }

    .main__visual:before
    {
        top: 50%;
        left: 0;

        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
    }

    .main__main
    {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .header
    {
        padding: 24px 0;
    }

    .header__logo
    {
        margin-right: auto;
    }

    .h-link
    {
        color: #fff;
    }
}

@media (max-width: 991px)
{
    .h-nav
    {
        position: fixed;
        top: 0;
        left: 100%;

        width: 100%;
        height: 100vh;
        padding-top: 108px;

        transition: .4s;

        background: linear-gradient(to bottom, #292a54 0%, #363775 100%);
    }

    .h-nav.open
    {
        left: 0;
    }

    .h-nav__list
    {
        margin: 0;
    }

    .h-link
    {
        font-size: 20px;
        line-height: 2;
    }
}

@media (max-width: 767px)
{
    .wrap
    {
        padding-right: 15px;
        padding-left: 15px;
    }

    .main__main
    {
        padding-top: 20px;
        padding-bottom: 30px;
    }

    .page-title
    {
        font-size: 15px;
    }

    .description
    {
        font-size: 13px;
    }

    .tagline
    {
        font-size: 15px;
    }

    .pro-box__qty
    {
        font-size: 110px;
    }

    .pro-box__label
    {
        font-size: 15px;
    }

    .logo
    {
        width: 128px;
        height: 40px;
    }

    .h-nav
    {
        padding-top: 88px;
    }

    .accordion
    {
        font-size: 13px;
    }
}

@media (max-width: 479px)
{
    .col
    {
        padding-bottom: 15px;
    }

    .top-title
    {
        font-size: 32px;
    }
}

/*# sourceMappingURL=sourcemaps/main.css.map */
