* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*:before,
*:after {
    box-sizing: border-box;
}

img {
    border: none;
}

img.rounded {
    border-radius: var(--radius);
    width: 100%;
}

textarea {
    overflow: auto;
}

input,
textarea,
input:active,
textarea:active {
    -webkit-border-radius: var(--radius);
    border-radius: var(--radius);
    outline: none transparent !important;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
    -moz-outline: none !important;
    border: 1px solid var(--color_gray);
    padding: 5px 20px;
}

input[type=submit],
button[type=submit],
input[type=reset],
button[type=reset] {
    -webkit-appearance: none;
    appearance: none;
}

input[type=checkbox],
input[type=radio] {
    -webkit-appearance: auto;
    appearance: auto;
}

input,
textarea,
input:active,
textarea:active,
select {
    -webkit-border-radius: var(--radius);
    border-radius: var(--radius);
    outline: none transparent !important;
    box-shadow: none;
    -moz-outline: none !important;
    border: 1px solid var(--color_gray);
    padding: 5px 20px;
}

:focus {
    outline: none;
}

:hover,
:active {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
}

::-ms-clear {
    display: none;
}

/*---------------  Main styles ---------------*/

:root {
    --scroll_width: 17px;
    --radius: 16px;
    --font_family: 'Montserrat', 'Arial', sans-serif;
    --font_header: 'CaptureIt', 'Arial', sans-serif;
    --color_href: #FFAE35;
    --color_hover: #FFFFFF;
    --color_black: #090808;
    --color_gray: #888888;
    --color_light_gray: #EEEEEE;
    --color_green: #3D844A;
    --color_light: #fff0db;

}

.clear {
    clear: both;
}

.left {
    float: left;
}

.right {
    float: right;
}

img.right {
    margin: 20px 0 50px 50px;
}

html {
    height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    color: #000;
    font: 16px/24px var(--font_family);
    height: 100.1%;
}

body.lock {
    overflow: hidden;
}

.wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.main {
    flex: 1 0 auto;
}

.cont {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0;
}

section .cont {
    width: 100%;
    position: relative;
}

section .cont.cont_small {
    width: 700px;
}

.small_page footer .cont,
.cont.big {
    width: 100%;
    max-width: 1290px;
}

section .cont.big {
    width: unset;
}

.compensate-for-scrollbar {
    margin-right: 0 !important;
}

.lozad {
    transition: .5s linear;
    opacity: 0;
}

.lozad.loaded {
    opacity: 1;
}

.flex {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.flexgrid {
    display: flex;
    justify-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.flex.center {
    justify-content: center !important;
}

.button {
    background-color: var(--color_hover);
    color: var(--color_black);
    display: flex;
    border-radius: var(--radius);
    transition: all .3s;
    width: fit-content;
    cursor: pointer;
    padding: 10px 20px;
    border: 1px solid var(--color_gray);
    border-radius: var(--radius);
    text-decoration: none !important;
}

.button:hover,
.button.btn-success:hover {
    background-color: var(--color_black);
    color: var(--color_hover);
}

.button.btn-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c;
}

.button.rpad {
    margin-right: 133px;
}

.big_button {
    background-color: var(--color_href);
    font: 32px var(--font_header);
    justify-content: center;
    padding: 15px 25px;
    color: var(--color_black);
}

.big_button:hover {
    background-color: var(--color_hover);
    color: var(--color_black);
}

::-webkit-input-placeholder {
    color: rgba(59, 85, 96, .3);
}

:-moz-placeholder {
    color: rgba(59, 85, 96, .3);
}

:-ms-input-placeholder {
    color: rgba(59, 85, 96, .3);
}

/* element styles */

a {
    text-decoration: none;
    color: var(--color_black);
    transition: color .3s;
}

a:focus,
a:hover {
    color: var(--color_href);
    text-decoration: none;
}

h1,
h2,
.h1,
.h2,
h4,
.h4 {
    font-family: var(--font_header);
    color: var(--color_black);
    font-size: 50px;
    border-bottom: 3px solid var(--color_href);
    padding-bottom: 4px;
    margin-top: 0;
}

h4,
.h4 {
    font-size: 28px;
    border-bottom: unset;
    padding-bottom: 4px;
}

.content h4 {
    margin-top: 30px;
}

ul,
li {
    list-style: none;
    margin-bottom: 0;
}

ul li::before {
    content: "\2022";
    /* Add content: \2022 is the CSS Code/unicode for a bullet */
    color: var(--color_green);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.content ul {
    padding-left: 20px;
}



nav ul li::before {
    content: "";
    display: none;
}

.header_top {
    background-color: var(--color_green);
    font-size: 14px;
}

.header_top .cont {
    justify-content: center;
    padding: 6px 0;
}

.header_top a {
    color: var(--color_hover);
}

.header_top a:hover {
    color: var(--color_light);
}

.header_top a i {
    margin-right: 5px;
}

.header_top .shop_link {
    margin-right: 30px;
}

.header_top .social a {
    margin-right: 15px;
}

.header,
.footer {
    background-color: var(--color_black);
    padding: 20px 0;
    transition: all .3s;
}

.header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color_black);
    z-index: 500;
    margin-top: 0;
    padding: 8px 0;
}

.header.sticky .header_menu_item._small {
    display: block !important;
}

.header .header_logo img {
    transition: all .2s;
}

.header.sticky .header_logo img {
    height: 32px;
}

.header .cont.flex {
    justify-content: space-between;
    align-items: center;
}

.header_menu_item {
    margin-right: 15px;
    padding-right: 15px;
    line-height: 10px;
    border-right: 1px solid var(--color_hover);
}

.header_menu_item:last-child {
    padding-right: 0;
    margin-right: 0;
    border: unset;
}

.header_menu_item a {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    color: var(--color_hover);
    text-align: left;
}

.header_menu_item.active a {
    color: var(--color_href);
}

.header_menu_item a:hover {
    color: var(--color_href);
}

.top_sponsors {
    background-color: var(--color_black);
}

.top_sponsors .cont {
    justify-content: space-evenly;
    padding: 20px 0;
    align-items: center;
}

.top_sponsors .cont img {
    height: 60px;
}

.top_sponsors .cont.flex a:first-child img {
    height: 80px;
}


.footer {
    padding: 30px 0;
}

.footer .header_menu_item {
    line-height: 1em;
    margin-right: unset;
    padding-right: unset;
    border: unset;
}

.footer .header_menu_item a {
    padding: 7px 0 10px;
}

.footer_copyright {
    color: var(--color_gray);
    margin-top: 10px;
    font-size: 14px;
}

.footer .social a {
    margin-right: 20px;
}

.footer .privacy {
    color: var(--color_light_gray);
    font-size: 12px;
}

section.pad {
    padding: 60px 0 0;
}

section.padb {
    padding-bottom: 60px;
}

section.yellow {
    padding: 40px;
}

section.gray {
    background-color: var(--color_light_gray);
    padding: 40px;
}

.card {
    padding: 20px 40px;
    border-radius: var(--radius);
    margin-bottom: 30px;
}

.light_yellow {
    background-color: var(--color_light);
}

.gray {
    background-color: var(--color_light_gray);
}

.yellow {
    background-color: var(--color_href);
}



/* mobile menu */
.nav-burger {
    display: none;
}

.nav-burger {
    cursor: pointer;
    background: var(--color_href);
    box-sizing: border-box;
    background-clip: content-box;
    width: 22px;
    height: 24px;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    position: absolute;
    right: 15px;
    top: 15px;
}

.nav-burger:before,
.nav-burger:after {
    content: "";
    position: absolute;
    background: var(--color_href);
    height: 2px;
    width: 100%;
    right: 0;
    will-change: rotate;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.nav-burger:before {
    top: -10px;
    width: 30px;
}

.nav-burger:after {
    bottom: -10px;
    width: 16px;
}

.nav-burger.active {
    background: transparent;
    background-clip: content-box;
}

.nav-burger.active:before {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    top: 0;
    width: 110%;
}

.nav-burger.active:after {
    bottom: 0;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    width: 110%;
}

.overlay {
    position: static;
    background: var(--color_black);
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transform-origin: right top;
    transform: none;
    visibility: visible;
    transition: all 0.4s ease-in-out;
    overflow: visible;
}

.locked {
    overflow: hidden;
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 50px;
    }

    100% {
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
    }
}

.video_container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    margin: 20px auto;
}

.video_container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* pages styles */

.header_line.flex {
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 40px;
}

.schedule_block {
    width: 100%;
    height: 600px;
    overflow-y: auto;
    border-top: 2px solid var(--color_black);
    border-bottom: 1px solid var(--color_black);
    position: relative;
}

.schedule_block::-webkit-scrollbar {
    width: 10px;
}

.schedule_block::-webkit-scrollbar-thumb {
    background-color: var(--color_href);
    border-radius: 5px;
}

.schedule_item {
    height: 60px;
    color: var(--color_black);
    border-bottom: 1px solid var(--color_light_gray);
    align-items: center;
    align-content: center;
    justify-content: space-between;
    transition: all .2s;
    position: relative;
}

.schedule_item._was {
    background-color: var(--color_light_gray);
    opacity: .4;
}

.schedule_item:hover {
    color: var(--color_black);
    background-color: var(--color_light);
}

.schedule_item .event_name {
    font: 28px var(--font_header);
    width: 450px;
}

.schedule_item .event_name img {
    display: none;
    height: 32px;
    margin-left: 10px;
}

.schedule_item._series .event_name {
    color: var(--color_green);
}

.schedule_item._series .event_name img {
    display: block;
}

.schedule_item._uts .event_name {
    color: var(--color_gray);
}

.schedule_item .event_region {
    font-weight: 500;
    width: auto;
    text-align: left;
    width: 340px;
}

.schedule_item .event_dates {
    width: 150px;
    text-align: right;
    padding-right: 20px;
}

.schedule_item .now_tooltip {
    width: 122px;
    height: 83px;
    background: url(/assets/images/front/now_tooltip.png) no-repeat;
    position: absolute;
    z-index: 50;
    text-align: center;
    font-size: 14px;
    line-height: 18px;
    padding: 14px;
    left: 350px;
    top: -48px;
}

section.news {
    height: 690px;
}

section.photos {
    height: 540px;
}

.photo_page .flexgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
}

.photo_page .item {
    background-color: var(--color_light_gray);
    border-radius: var(--radius);
    padding: 8px 8px 15px;
    transition: all .3s;
}

.photo_page .item img {
    border-radius: var(--radius);
    object-fit: cover;
    width: 250px;
    height: 150px;
}

.photo_page .item .name {
    color: var(--color_gray);
    margin-top: 10px;
    font-weight: 500;
}

.photo_page .item:hover {
    background-color: var(--color_black);
}

.photo_page .item:hover .name {
    color: var(--color_hover);
}

.video_page .flexgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

.video_page .item {
    background-color: var(--color_light_gray);
    border-radius: var(--radius);
    padding: 8px;
    transition: all .3s;
}

.video_page .item img {
    border-radius: var(--radius);
    object-fit: cover;
    width: 315px;
    height: 180px;
}

.video_page .item .name {
    color: var(--color_gray);
    margin-top: 10px;
    font-weight: 500;
}

.video_page .item:hover {
    background-color: var(--color_black);
}

.video_page .item:hover .name {
    color: var(--color_hover);
}

.contacts_block a {
    display: flex;
    align-items: center;
    line-height: 20px;
}

.contacts_block .contacts_text {
    margin-bottom: 40px;
}

.contacts_block a:hover i {
    color: var(--color_href);
}

.contacts_block i {
    font-size: 20px;
    color: var(--color_gray);
    margin-right: 10px;
    transition: all .3s;
    text-decoration: none !important;
}

.contacts_block i.nounder:before {
    text-decoration: underline;
    text-underline-position: under;
    text-decoration-color: #fff;
}

.contacts_block .button {
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--color_hover);
    width: 200px;
    border: unset;
    text-align: center;
    justify-content: center;
}

.contacts_block .button i {
    color: var(--color_hover);
}

.contacts_block .button:hover {
    background-color: var(--color_black);
}


.contacts_block .tg_button {
    background-color: #0077FF;
}

.contacts_block .vk_button {
    background-color: #3190EB;
}

.docs_card a {
    text-underline-position: under;
    text-decoration: underline;
    display: flex;
}

.content a {
    text-underline-position: under;
    text-decoration: underline;
}

.docs_card a:before {
    content: "\f1c1";
    font-family: 'Font Awesome 5 Pro';
    font-weight: 400;
    color: #F40F02;
    margin-right: 10px;
    text-decoration: underline;
    text-decoration-color: var(--color_light);
}

ul.categories_icons li:before {
    content: "";
}

ul.categories_icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, 220px);
    gap: 30px;
    margin: 20px 0;
    justify-content: left;
}


ul.categories_icons li {
    position: relative;
    background-color: var(--color_hover);
    border-radius: var(--radius);
    width: 220px;
    height: 250px;
    text-align: center;
}

ul.categories_icons li img {
    margin-top: 50px;
}

ul.categories_icons li .name {
    font-weight: 500;
    position: absolute;
    font-size: 20px;
    left: 32px;
    bottom: 20px;
}

.part_item {
    display: flex;
    margin-bottom: 20px;
}

.part_item .num {
    background-color: var(--color_hover);
    font-size: 22px;
    font-weight: 500;
    display: flex;
    border-radius: var(--radius);
    height: 40px;
    width: 40px;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex: 0 0 40px;
}

.series_icon {
    margin-left: 10px;
}

table.caption tr:hover {
    background-color: var(--color_light);
}

.event.top_banner {
    position: relative;
    height: 400px;
}


.event .container-fluid {
    background-size: cover;
    height: 400px;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(50%);
    -webkit-filter: brightness(50%);
    position: absolute;
}

.header_line.flex {
    margin-bottom: 20px;
}

.alert-danger {
    background-color: #dc3545 !important;
    color: #fff;
}

.alert-success {
    background-color: #28a745 !important;
    color: #fff;
}

.alert {
    padding: 10px;
    margin: 30px 0;
    border-radius: var(--radius);
    border: 1px solid transparent;
    position: relative;
    width: 100%;
}

.event .header_line h1 {
    color: var(--color_hover);
    border: unset;
    margin: 40px 0 0;
    text-shadow: 0 0 5px black;
}

.event .title_date {
    color: var(--color_hover);
    font-size: 24px;
    line-height: 30px;
}

.event .brand_container {
    flex-direction: column;
    width: fit-content;
    justify-content: center;
}

.event .logo_container {
    margin-top: 20px;
}

.event .logo_container img {
    height: 100px;
    margin: 0 5px;
}

.event .sign_container {
    margin: 15px auto 0;
}

.event .sign_container img {
    width: 250px;
}

.event .main_logo img {
    max-height: 110px;
    margin-right: 10px;
    max-width: 141px;
}

.event_menu {
    height: 400px;
}

.event_menu .inner_menu {
    background-color: rgba(61, 132, 74, 0.7);
    height: 400px;
    flex-direction: column;
    justify-content: center;
}

.event_menu a {
    border-collapse: collapse;
    color: var(--color_hover);
    font: 18px var(--font_header);
    border-top: 1px solid rgba(255, 251, 251, .17);
    border-bottom: 1px solid rgba(255, 251, 251, .17);
    padding: 10px 30px 7px;
    width: 100%;
    transition: all .3s;
    display: block;
}

.event_menu a:hover {
    color: var(--color_black);
    background-color: var(--color_hover);
}

.header_line_button.flex .last {
    margin-left: 15px;
}

.take_part {
    overflow: hidden;
}

.take_part .select_block {
    align-items: center;
}

.take_part .select_block label {
    margin-right: 20px;
    margin-bottom: 0
}

.take_part .row .col-sm-3,
.take_part .row .col-sm-4,
.take_part .row .col-sm-5,
.take_part .row .col-sm-7 {
    padding: 0;
}

.take_part label {
    font-weight: 400;
    margin-top: 6px;
}

.take_part .checkboxes {
    display: flex;
}

p.pilot {
    display: flex;
    padding: 5px 10px;
    width: fit-content;
    background-color: var(--color_black);
    color: var(--color_hover);
    text-transform: uppercase;
}

.event_partners {
    padding: 10px 0;
    border-bottom: 1px solid var(--color_green);
}

.event_partners .cont {
    align-items: center;
}

.event_partners .cont a {
    display: block;
    margin-right: 30px;
    margin-bottom: 10px;
}

.event_partners .cont a img {
    max-height: 60px;
    max-width: 120px;
    min-width: 70px;
}

.event_orgs.photo_page .item {
    padding: 20px;
}

.event_orgs.photo_page .item:hover {
    background-color: var(--color_light);
}

.event_orgs.photo_page .item .name {
    color: var(--color_black);
}

.event_orgs.photo_page .item img {
    height: 250px;
}



/* owl */

.top_slider .owl-carousel,
.top_slider .owl-stage-outer {
    max-height: 100%;
    height: calc(100vh - 260px);
    position: relative;
}

.top_slider .owl-carousel .item {
    display: flex;
    width: 100%;
    height: calc(100vh - 260px);
    position: relative;
}

.owl-carousel .owl-item img {
    object-fit: cover;
}

.owl-carousel .owl-item .owl-lazy {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    width: 100%;
}

.top_slider .owl-carousel .owl-item .owl-lazy {
    filter: brightness(50%);
    -webkit-filter: brightness(50%);
}

.owl-carousel .owl-item div.owl-lazy:not([src]),
.owl-carousel .owl-item div.owl-lazy[src^=""] {
    max-height: 100%;
}

.owl-carousel .slider_caption {
    position: absolute;
    top: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    align-items: center;
    text-align: center;
}

.owl-nav {
    position: relative;
    display: flex;
    width: 120px;
    justify-content: space-between;
}

.top_slider .caption_header {
    font: 56px var(--font_header);
    color: var(--color_hover);
    text-shadow: 0 0 5px black;
}

.top_slider .caption_descr {
    font-size: 20px;
    color: var(--color_hover);
    text-shadow: 0 0 5px black;
}

.top_slider .big_button {
    margin-top: 50px;
}

.news .owl-carousel,
.news .owl-stage-outer,
.photos .owl-carousel,
.photos .owl-stage-outer {
    position: absolute;
}

.news .owl-carousel .item {
    display: flex;
    flex-direction: column;
    background-color: var(--color_light_gray);
    border-radius: var(--radius);
    width: 100%;
    height: 510px;
    position: relative;
    color: var(--color_black);
    padding: 20px;
    transition: all .3s;
}

.news .owl-carousel .item:hover {
    background-color: var(--color_black);
    color: var(--color_hover);
}

.news .owl-carousel .item .owl-lazy {
    height: 260px;
    border-radius: var(--radius);
}

.news .owl-carousel .item .date {
    color: var(--color_gray);
    margin: 20px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid;
}

.photos .owl-carousel,
.news .owl-stage-outer {
    position: absolute;
}

.photos .owl-carousel .item {
    display: flex;
    width: 100%;
    position: relative;
    transition: all .3s;
    background-color: var(--color_light_gray);
    border-radius: var(--radius);
}

.photos .owl-carousel .item .owl-lazy {
    height: 340px;
    border-radius: var(--radius);
}

.videos .owl-carousel .name {
    margin: 20px 0 0;
}

.news.videos .owl-carousel .item {
    height: 350px;
}

.owl-nav .button {
    font-size: 24px;
}

/* fileinput */

.input-file_item {
    position: relative;
    border: 1px solid var(--color_black);
    width: 140px;
    height: 140px;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
}

.input-file_item.face {
    width: 120px;
    height: 160px;
}

.input-file_item.wide {
    width: 160px;
    height: 120px;
}

.input-file_item input {
    opacity: 0;
    position: absolute;
    width: 100%;
    left: 0px;
    cursor: pointer;
    top: 0;
    height: 100%;
    z-index: 10;
}

.input-file_item::before {
    content: '';
    display: block;
    /*padding-bottom: 100%; */
}

.input-file_item::after {
    display: block;
    content: '+';
    font-size: 40px;
    left: 50%;
    top: 50%;
    font-weight: 300;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    position: absolute;
    color: #000;
}

.input-file_item:not(:last-child) {
    margin-right: 20px;
}

.input-file_close {
    color: #FF3A3A;
    font-family: Neumann;
    font-size: 50px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    width: 30px;
    line-height: 27px;
    text-align: center;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    display: block;
    position: absolute;
    cursor: no-drop;
    right: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
    top: 0;
    z-index: 30;
}

._load::after {
    opacity: 0;
}

._load .input-file_close {
    opacity: 1;
}

.input-file_close:hover {
    opacity: 0.6;
    z-index: 11;
}

/* common */

.bordered {
    border-bottom: 1px solid;
}

.text-danger {
    color: #FF3A3A !important;

}

.clickable {
    cursor: pointer;
}

.nomargin {
    margin: 0 !important;
}

.nopadding {
    padding: 0 !important;
}

.mb0 {
    margin-bottom: 0px !important;
}

.mb5 {
    margin-bottom: 5px !important;
}

.mb10 {
    margin-bottom: 10px !important;
}

.mb15 {
    margin-bottom: 15px !important;
}

.mb20 {
    margin-bottom: 20px !important;
}

.mb30 {
    margin-bottom: 30px !important;
}

.mt0 {
    margin-top: 0px !important;
}

.mt5 {
    margin-top: 5px !important;
}

.mt10 {
    margin-top: 10px !important;
}

.mt15 {
    margin-top: 15px !important;
}

.mt20 {
    margin-top: 20px !important;
}

.mt30 {
    margin-top: 30px !important;
}

.mt70 {
    margin-top: 70px !important;
}

.pb0 {
    padding-bottom: 0px !important;
}

.pb5 {
    padding-bottom: 5px !important;
}

.pb10 {
    padding-bottom: 10px !important;
}

.pb15 {
    padding-bottom: 15px !important;
}

.pb20 {
    padding-bottom: 20px !important;
}

.pb30 {
    padding-bottom: 30px !important;
}

.pt0 {
    padding-top: 0px !important;
}

.pt5 {
    padding-top: 5px !important;
}

.pt10 {
    padding-top: 10px !important;
}

.pt15 {
    padding-top: 15px !important;
}

.pt20 {
    padding-top: 20px !important;
}

.pt30 {
    padding-top: 30px !important;
}

.fancybox-content {
    overflow-y: hidden !important;
}

.rutube {
    width: 14px;
    margin-top: -5px;
    margin-right: 30px;
}

footer .rutube {
    margin-right: unset;
    margin-top: 0;
}

img.top_left {
    float: left;
    margin: 0 30px 30px 0;
}

span.subheader {
    font-size:18px;
    font-family: 'Montserrat', sans-serif;
}