html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}nav ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}ins{background-color:#ff9;color:#000;text-decoration:none}mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle;padding:0}.clearfix:after {content:'';display:block;clear:both;}a,input,button,select,textarea,textarea:focus,input:focus{outline:none;}input,button,select,textarea{border-radius:0;box-shadow:none;}textarea{overflow:auto;resize:none;}:required{box-shadow:none}button::-moz-focus-inner{border:none}html{-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}input[disabled],textarea[disabled],select[disabled='disabled']{-webkit-opacity:1}

@font-face {
    font-family: 'Bebas Neue';
    src: url('../fonts/BebasNeueRegular.woff2') format('woff2'),
         url('../fonts/BebasNeueRegular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.woff2') format('woff2'),
        url('../fonts/Roboto-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Italic.woff2') format('woff2'),
        url('../fonts/Roboto-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Light.woff2') format('woff2'),
        url('../fonts/Roboto-Light.woff') format('woff');
    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-LightItalic.woff2') format('woff2'),
        url('../fonts/Roboto-LightItalic.woff') format('woff');
    font-weight: 200;
    font-style: italic;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Bold.woff2') format('woff2'),
        url('../fonts/Roboto-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-BoldItalic.woff2') format('woff2'),
        url('../fonts/Roboto-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    line-height: 1.2;
    min-width: 320px;
}

a {
    text-decoration: none;
}

.justify {
    text-align: justify;
}

.dropdown {
    text-align: left;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    box-shadow: 0 4px 12px 0 rgba(32, 32, 36, .15);
    min-width: 120px;
    position: absolute;
    z-index: 99;
    top: 100%;
    right: -8px;
    margin-top: 30px;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}
.dropdown:before {
    content: '';
    background: #fff;
    border-top: 1px solid;
    border-left: 1px solid;
    border-color: #e5e5e5;
    width: 13px; 
    height: 13px; 
    position: absolute;
    top: -7px;
    right: 18px;
-webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
        transform: rotate(45deg);
}
.active .dropdown {
    margin-top: 20px;
    opacity: 1;
    visibility: visible;
}
.dropdown ul {
    max-height: 322px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
.dropdown li {
    font-size: 14px;
    display: block;
}
.dropdown li:not(:last-child) {
    border-bottom: 1px solid #dad9d9;
}
.dropdown li.title {
    display: none;
}
.dropdown li.active {
    position: relative;
}
.dropdown li.active:after {
    content: '';
    background: url('../img/drop-active.svg') no-repeat;
    background-size: contain;
    width: 16px;
    height: 10px;
    position: absolute;
    top: 0; bottom: 0;
    right: 10px;
    margin: auto;
}
.dropdown li a {
    display: block;
}
.dropdown li.active, .dropdown li a {
    color: #000;
    padding: 20px;
    padding-right: 50px;
}
.dropdown li a:hover {
    color: #f65151;
}

.totop {
    background: url('../img/go-to-top-icon.svg') no-repeat;
    background-size: contain;
    width: 70px;
    height: 70px;
    position: fixed;
    z-index: 9;
    right: 30px;
    bottom: 30px;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    transition: 0.5s;
}
.totop.vis {
    opacity: 0.5;
    visibility: visible;
}

.wrap {
    max-width: 960px;
    padding-left: 20px;
    padding-right: 20px;
    margin: auto;
}

#main {
    background: url('../img/main.jpg') no-repeat center top;
    height: 676px;
    padding-top: 272px;
    box-sizing: border-box;
}
#main .text {
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    width: 580px;
    max-width: 100%;
    padding: 14px 30px;
    box-sizing: border-box;
    margin: auto;
}
#main .text .head {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    line-height: 1;
}
#main .text .head a {
    color: #fff;
}
#main .text .sub {
    font-size: 18px;
    margin-top: -5px;
    margin-bottom: 5px;
}

#menu {
    text-align: center;
    color: #fff;
    background: #000;
    padding: 40px 0;
}
#menu ul.menu > li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 18px;
}
#menu ul.menu > li > a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 37.5px;
    line-height: 1;
    color: #fff;
}
#menu ul.menu > li > a:hover {
    color: #f65151;
}
#menu li.lang {
    position: relative;
}
#menu li.lang img {
    width: 35px;
    height: 35px;
    display: block;
    cursor: pointer;
}

#content {
    padding: 80px 0;
}
#content .head {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 60px;
    text-align: center;
    overflow: hidden;
    margin-bottom: 50px;
}
#content .head span {
    position: relative;
}
#content .head span:before, #content .head span:after {
    content: '';
    background: #000;
    height: 2px;
    width: 200px;
    position: absolute;
    top: 0; bottom: 0;
    margin: auto;
}
#content .head span:after {
    right: 100%;
    margin-right: 90px;
}
#content .head span:before {
    left: 100%;
    margin-left: 90px;
}
#content .sub {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 50px;
    margin-bottom: 10px;
}
#content img {
    max-width: 100%;
}
#content p:not(:last-child) {
    margin-bottom: 20px;
}
#content .big {
    font-size: 24px;
}
#content .cell {
    display: inline-block;
    vertical-align: middle;
    width: calc(50% - 4px);
    box-sizing: border-box;
}
#content .cell.bottom {
    vertical-align: bottom;
}
#content .cell.img {
    padding-right: 50px;
}
#content .cell.text + .cell.img  {
    text-align: right;
    padding-right: 0;
    padding-left: 50px;
}
#content .cell p {
    font-size: 16px;
}
#content .hr {
    background: #000;
    width: 500px;
    max-width: 100%;
    height: 2px;
    margin: 65px auto;
}
#content .hint {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    width: 680px;
    max-width: 100%;
    margin: auto;
    margin-top: 75px;
}
#content .hl {
    font-size: 29px;
    font-weight: 200;
    text-align: center;
    margin-top: 40px;
}
#content .hl b {
    font-weight: bold;
}
#content ul.center {
    width: 590px;
    max-width: 100%;
    margin: auto;
}
#content li {
    list-style: none;
    padding-left: 15px;
    margin-bottom: 10px;
    position: relative;
}
#content li:before {
    content: '*';
    position: absolute;
    left: 0;
}
#content .gallery {
    font-size: 0;
    margin: -7px;
}
#content .gallery .item {
    display: inline-block;
    width: 25%;
    padding: 7px;
    box-sizing: border-box;
    position: relative;
}
#content .gallery .item a {
    border-radius: 5px;
    display: block;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
}
#content .gallery .item a:after {
    content: '';
    background: #000;
    opacity: 0;
    position: absolute;
    left: 0; right: 0;
    top: 0; bottom: 0;
    transition: 0.5s;
}
#content .gallery .item a:hover:after {
    opacity: 0.4;
}
#content .gallery a img {
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    top: 50%; left: 50%;
-webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
}
#content .video {
    width: 920px;
    max-width: 100%;
    margin: auto;
    margin-top: 120px;
}
#content .video iframe {
    max-width: 100%;
}

#contacts {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 50px;
    text-align: center;
    color: #fff;
    background: url('../img/contacts.jpg') no-repeat center top;
    height: 406px;
    padding-top: 122px;
    box-sizing: border-box;
}
#contacts .cap {
    font-size: 60px;
}
#contacts a {
    color: #fff;
}
#contacts a:hover {
    color: #f65151;
}
#contacts p:last-child {
    line-height: 1.5;
}

@media screen and (min-width: 1920px) {
    #main, #contacts {
        background-size: 100% auto;
        background-position: center 10%;
    }
}
@media screen and (max-width: 1024px) {
    #content .cell.bottom {
        vertical-align: middle;
    }
}
@media screen and (max-width: 768px) {
    body {
        font-size: 15px;
    }
    .justify {
        text-align: left;
    }
    body.no-scroll {
        position: fixed;
        overflow: hidden;
    }
    .dropdown {
        -webkit-transition: none;
        transition: none;
    }
    .active .dropdown {
        border: none;
        border-radius: 0;
        min-width: 320px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin-top: 0;
-webkit-transform: none;
    -ms-transform: none;
        transform: none;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .active .dropdown:before {
        display: none;
    }
    .active .dropdown li.title {
        font-size: 19px;
        font-weight: bold;
        color: #000;       
        display: block;
        padding: 20px;
        position: relative;
    }
    .active .dropdown li.title span {
        width: 40px;
        height: 100%;
        position: absolute;
        right: 0; top: 0;
        cursor: pointer;
    }
    .active .dropdown li.title span:before, .active .dropdown li.title span:after {
        content: '';
        background: #000;
        position: absolute;
        top: 0; bottom: 0;
        margin: auto;
        right: 10px;
        width: 20px;
        height: 2px;
-webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
        transform: rotate(45deg);   
    }
    .active .dropdown li.title span:after {
-webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
        transform: rotate(-45deg); 
    }
    .wrap {
        padding-left: 10px;
        padding-right: 10px;
    }
    #main {
        background-image: url('../img/main-mob.jpg');
        background-size: 100%;
        padding: 30px 0;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
-webkit-align-items: center;
     -ms-flex-align: center;
        align-items: center;
    }
    #main .wrap {
        max-width: 100%;
        box-sizing: border-box;
    }
    #main .text {
        padding: 14px;
    }
    #main .text .head {
        font-size: 50px;
    }
    #main .text .sub {
        font-size: 16px;
        margin-top: 0;
    }
    #menu {
        padding: 20px 0;
    }
    #menu ul.menu > li > a {
        font-size: 21px;
    }
    #menu ul.menu > li {
        margin: 0 10px;
    }
    #content {
        padding: 40px 0;
    }
    #content .head {
        font-size: 41px;
        margin-bottom: 30px;
    }
    #content .head span:before {
        margin-left: 20px;
    }
    #content .head span:after {
        margin-right: 20px;
    }
    #content .row {
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
-webkit-flex-direction: column;
    -ms-flex-direction: column;
        flex-direction: column;
    }
    #content .cell.img {
-ms-flex-order: 1;
 -webkit-order: 1;
         order: 1;
        margin: 30px 0;
    }
    #content .cell {
        display: block;
        width: auto;
    }
    #content .cell p {
        font-size: 15px;
    }
    #content .big {
        font-size: 21px;
    }
    #content .cell.img, #content .cell.text + .cell.img {
        padding: 0;
        text-align: center;
    }
    #content .hr {
        display: none;
    }
    #content .hint {
        font-size: 14px;
        margin-top: 10px;
    }
    #contacts {
        font-size: 26px;
        background-size: auto 100%;
        height: 200px;
        padding-top: 50px;
    }
    #contacts .cap {
        font-size: 30px;
    }
    #content .hl {
        font-size: 20px;
    }
    #content .gallery .item {
        width: 33.33%;
    }
    #content .video {
        margin-top: 50px;
    }
    #content .sub {
        font-size: 30px;
    }
    #content .video iframe {
        height: 300px;
    }
}
@media screen and (max-width: 480px) {
    #menu ul.menu > li:first-child {
        margin-left: 0;
    }
    #menu ul.menu > li:last-child {
        margin-right: 0;
    }
    #menu li.lang img {
        width: 23px;
        height: 23px;
    }
    #menu ul.menu > li {
        margin: 0 7px;
    }
    #menu ul.menu > li > a {
        font-size: 17px;
    }
    #content .cell.img {
        margin-left: -10px;
        margin-right: -10px;
    }
    #content .cell.img img {
        width: 100%;
    }
    #content .gallery .item {
        width: 50%;
    }
    #content .video iframe {
        height: 180px;
    }
}