/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/*

font-weight:

100 – Thin (Hairline)
200 – Extra Light (Ultra Light)
300 – Light
400 – Normal (Regular)
500 – Medium
600 – Semi Bold (Demi Bold)
700 – Bold
800 – Extra Bold (Ultra Bold)
900 – Black (Heavy)

Russo One имеет одну толщину: 400

Мелкий текст: обычно около 12px или 0.75rem.
Основной текст: часто используется размер 16px или 1rem
Подзаголовки: могут варьироваться от 18px до 24px или от 1.125rem до 1.5rem.
Заголовки: для заголовков часто используются размеры 32px, 48px или 2rem, 3rem
Большие заголовки или акцентный текст: 60px или 4rem и выше

*/

body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.container {
    max-width: 1400px;
}

.section_title {
    position: relative;
}

/*  ----------------------------------------------------
Animation Easing
https://matthewlein.com/tools/ceaser
-------------------------------------------------------- */

/*  ----------------------------------------------------
Buttons
-------------------------------------------------------- */

.btn {
    position: relative;
    width: auto;
    font-family: "Russo One", sans-serif;
    font-size: 32px;
    line-height: 1.25;
    text-transform: uppercase;
    margin: 0;
    padding: 1rem 2rem;
    color: var(--color-green);
    background: var(--color-white);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.btn:hover {
    color: var(--color-green);
    background: var(--color-white);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.button_close {
    font-family: Roboto, sans-serif;
    color: var(--color-white);
    background: var(--color-green);
    border-color: var(--color-green);
    font-size: 1em;
    text-transform: uppercase;
    border-radius: 0;
    border: none;
    padding: 12px 30px;
    cursor: pointer;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    outline: 0 !important;
}

.button_close:hover {
    color: var(--color-green);
    background: var(--color-gray-dark);
    border-color: var(--color-gray-dark);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

/*  ----------------------------------------------------
Счетчик обратного отсчета
-------------------------------------------------------- */

#preloader-bg {
position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
 background-color: var(--color-white-light);
 }

#preloader {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 100vw;
    max-height: 100vh;
    z-index: 99999;
}

.loader .loader_outter {
    position: absolute;
    width: 100%;
    height: 110px;
    left: 0;
    top: calc(50% - 55px);
}

.loader_logo {
    position: relative;
    text-align: center;
    margin: 0 auto;
}

.countdown {
    position: relative;
    margin-top: 60px;
    text-align: center;
}

/* countdown */

.countdown div {
    width: auto;
    display: inline-block;
    font-family: Arial, Helvetica, serif;
    font-size: 66px;
    font-variant-numeric: tabular-nums lining-nums;
    color: var(--color-gray-dark);
    text-align: center;
    white-space: nowrap;
    padding: 0;
    margin-right: 30px;
}

.countdown div:last-child {
    margin-right: 0 !important;
}

.countdown div > span {
    display: block;
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 20px;
    color: var(--color-gray);
}

/*  ----------------------------------------------------
Навигационное меню
-------------------------------------------------------- */

.collapsing {
    -webkit-transition: height 0.5s ease;
    -o-transition: height 0.5s ease;
    transition: height 0.5s ease;
}

/* header */

.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 80px;
    background-color: var(--color-white);
    -webkit-box-shadow: 0 3px 6px 3px rgba(0, 0, 0, 0.06);
    box-shadow: 0 3px 6px 3px rgba(0, 0, 0, 0.06);
    width: 100%;
    border: none;
    padding: 0;
    z-index: 999;
}

header.sticked {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.header .logo h1 {
    position: relative;
    display: block;
    font-family: "Russo One", sans-serif;
    font-size: 22px;
    line-height: 1;
    text-align: left;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
    color: var(--color-gray-dark);
    z-index: 150;
    cursor: pointer;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.header .logo h1:hover {
    color: var(--color-green);
}

.header .logo h1 span {
    display: block;
}

.header .container {
    height: 100%;
}

/* navbar */

.navbar {
    position: relative;
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.navbar a {
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 21px;
    line-height: 25px;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
    color: var(--color-green);
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus {
    color: var(--color-gray-dark);
}

.navbar a span {
    display: block;
}

/*  ----------------------------------------------------
Home
-------------------------------------------------------- */

/*
#canvas {
position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
*/

#home {
    position: relative;
    width: 100%;
    max-width: 100vw;
    padding-top: 80px;
    min-height: 100vh;
}

#home::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(../img/home/top_bg.jpg);
    background-repeat: repeat;
    background-position: top;
    background-size: cover;
    background-clip: content-box;
}

#home_cover_logo img {
    position: relative;
    max-width: 185px;
    max-height: 185px;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

#home_cover_text {
    position: relative;
    font-family: "Russo One", sans-serif;
    font-size: 144px;
    font-weight: normal;
    line-height: 1;
    color: var(--color-gray-dark);
    text-transform: uppercase;
}

#home_cover_slogan {
    position: relative;
    font-family: "Noto Sans", sans-serif;
    font-size: 30px;
    font-weight: normal;
    line-height: 1.25;
    color: var(--color-gray-dark);
    text-transform: uppercase;
}

#home_cover_date {
    position: relative;
    font-family: "Russo One", sans-serif;
    font-size: 60px;
    font-weight: normal;
    line-height: 1.25;
    color: var(--color-gray-dark);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

#home_cover_location {
    position: relative;
    font-family: "Noto Sans", sans-serif;
    font-size: 32px;
    font-weight: normal;
    line-height: 1.25;
    color: var(--color-gray-dark);
    text-transform: uppercase;
}

#home_cover_location span {
    font-family: "Russo One", sans-serif;
    font-size: 32px;
    font-weight: normal;
    line-height: 1.25;
}

#home_cover_button {
    position: relative;
}

#home .btn-home {
    position: relative;
    width: auto;
    font-family: "Russo One", sans-serif;
    font-size: 40px;
    line-height: 1;
    text-transform: uppercase;
    margin: 0;
    padding: 30px 50px;
    color: var(--color-green);
    background: var(--color-white);
    border: 1px solid var(--color-gray-light);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#home .btn-home:hover {
    color: var(--color-gray);
    background: var(--color-white);
    border: 1px solid var(--color-gray);
}

/*  ----------------------------------------------------
Heimtextil
-------------------------------------------------------- */

#heimtextil {
    position: relative;
    padding: 0;
    background-color: var(--color-green);
}

/*
#heimtextil .section_header {
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 46px;
    line-height: 1.25;
    text-transform: uppercase;
    color: var(--color-green);
}
*/

#heimtextil .section_subheader {
    font-family: "Russo One", sans-serif;
    font-style: normal;
    font-size: 36px;
    color: var(--color-white);
    text-align: center;
    margin: 0;
}

#heimtextil p {
    font-family: "Noto Sans", sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: 0.03em;
    color: var(--color-gray-dark)
}

#heimtextil .slogan1 {
    white-space: nowrap;
    font-family: "Noto Sans", sans-serif;
    font-style: normal;
    font-weight: 100;
    font-size: 120px;
    line-height: 1.25;
    text-transform: uppercase;
    color: var(--color-white);
}

#heimtextil .slogan2 {
    white-space: nowrap;
    font-family: "Noto Sans", sans-serif;
    font-style: normal;
    font-weight: 100;
    font-size: 120px;
    line-height: 1.25;
    color: var(--color-gray-dark);
}

#heimtextil .slogan3 {
    white-space: nowrap;
    font-family: "Noto Sans", sans-serif;
    font-style: normal;
    font-weight: 100;
    font-size: 70px;
    line-height: 1.25;
    color: var(--color-gray-dark);
}

/*
#heimtextil h2 {
    font-family: "Noto Sans", sans-serif;
    font-style: normal;
    font-weight: 100;
    font-size: 60px;
    line-height: 1.25;
    text-transform: uppercase;
    color: var(--color-white);
}

#heimtextil h3 {
    font-family: "Noto Sans", sans-serif;
    font-style: normal;
    font-weight: 100;
    font-size: 45px;
    line-height: 1.25;
    color: var(--color-white);
}
*/

/*  ----------------------------------------------------
О мероприятии
-------------------------------------------------------- */

#about {
    position: relative;
}

#about .section_title .section_header {
    font-family: "Russo One", sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 46px;
    line-height: 1.25;
    color: var(--color-green);
    text-transform: uppercase;
}

#about .section_title .section_subheader {
    font-family: "Noto Sans", sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 36px;
    line-height: 1.4;
    color: var(--color-gray-dark);
}

#about .section_content p {
    font-family: "Noto Sans", sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.25;
    color: var(--color-gray-dark);
}

#about .section_content p strong {
    font-weight: 500;
}

/*  ----------------------------------------------------
Особенности
-------------------------------------------------------- */

#features {
    position: relative;
}

#features .features_content p {
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 30px;
    line-height: 35px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--color-gray-dark);
}

#features .icon_box .icon_plus {
    position: absolute;
    top: 0;
    left: 0;
    width: 21px;
    height: 31px;
    display: inline-block;
    font-family: "Russo One", sans-serif;
    font-size: 26px;
    line-height: 31px;
    text-transform: uppercase;
    background: var(--color-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-right: 5px;
}

#features .icon_box .icon_box_content h3 {
    display: inline-block;
    font-family: "Russo One", sans-serif;
    font-size: 26px;
    line-height: 31px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background: var(--color-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 1rem 2rem;
}

#features .icon_box .icon_box_content p {
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: 0.03em;
    color: var(--color-gray-dark);
}

/*  ----------------------------------------------------
Площадки
-------------------------------------------------------- */

#location {
    position: relative;
}

#location .section_title .section_header {
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 46px;
    line-height: 1.25;
    text-transform: uppercase;
    color: var(--color-green);
    margin: 0;
}

#location .section_content p {
    font-family: "Noto Sans", sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.35;
    color: var(--color-gray-dark);
}

#location .section_title .section_subheader {
    white-space: nowrap;
    font-family: "Noto Sans", sans-serif;
    font-style: normal;
    font-weight: 100;
    font-size: 45px;
    line-height: 1.25;
    color: var(--color-gray-dark);
}

#location h3 {
    white-space: nowrap;
    font-family: "Noto Sans", sans-serif;
    font-style: normal;
    font-weight: 100;
    font-size: 45px;
    line-height: 1.25;
    color: var(--color-gray-dark);
}

#location img {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

/*
#location img:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
*/

/* icons */

#location .location_items .icon {
    position: relative;
    display: block;
    padding: 0;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

#location .location_items .icon:hover {
    -webkit-transform: scale(1.1);
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

/*  ----------------------------------------------------
Спикеры
-------------------------------------------------------- */

#speakers {
    position: relative;
}

#speakers .section_title .section_header {
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 46px;
    line-height: 1.25;
    text-transform: uppercase;
    color: var(--color-green);
}

#speakers .col-item .speakers_image {
    position: relative;
    overflow: hidden;
}

#speakers .col-item .speakers_image img {
    width: 100%;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#speakers .col-item .speakers_content {
    position: relative;
	margin-bottom: 0.25rem;
}

#speakers .col-item .speakers_content::after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(72, 86, 100, 0.8);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    opacity: 0;
}

#speakers .col-item .speakers_content:hover::after {
    opacity: 1;
}

#speakers .col-item .speakers_content:hover .speakers_more {
    margin-top: 0;
    opacity: 1;
}

#speakers .col-item .speakers_logo {
    position: absolute;
    width: 100px;
    height: auto;
    overflow: hidden;
    right: 0;
    top: 0;
    margin: 0;
}

#speakers .col-item .speakers_logo img {
    width: 100%;
}

#speakers .col-item .speakers_name {
    font-family: "Noto Sans", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.25;
    color: var(--color-gray-dark);
}

#speakers .col-item .speakers_more {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    opacity: 0;
    text-align: center;
    padding: 10px;
    z-index: 99;
}

#speakers .speakers_content h3 {
    font-family: "Noto Sans", sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.25;
    color: var(--color-white);
    margin: 0;
}

#speakers .speakers_content:hover .speakers_image img {
    width: 100%;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    filter: grayscale(50%);
    -webkit-filter: grayscale(50%);
}

/*  ----------------------------------------------------
Load More Content Button (Speakers/Gallery)
-------------------------------------------------------- */

.loadMore a {
    position: relative;
    font-family: Roboto, sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--color-green);
    background: var(--color-white);
    border: 1px solid var(--color-green-dark);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.loadMore a:hover {
    color: var(--color-gray-dark);
    background: var(--color-white);
    border: 1px solid var(--color-gray-dark);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

/*  ----------------------------------------------------
Программа
-------------------------------------------------------- */

#schedules {
    position: relative;
    background-color: var(--color-white-light);
}

#schedules .section_title .section_header {
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 46px;
    line-height: 1.25;
    text-transform: uppercase;
    color: var(--color-green);
}

#schedules .schedules_day {
    position: relative;
    font-family: "Noto Sans", sans-serif;
    font-size: 1.6em;
    font-weight: 700;
    font-variant: lining-nums;
    text-transform: uppercase;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 30px;
}

/* schedules_item */

#schedules .schedules_item {
    position: relative;
    display: inline-block;
    text-align: left;
    padding: 0;
}

#schedules .schedules_item .schedules_hour {
    position: absolute;
    top: 0;
    left: 0;
    font-family: "Noto Sans", sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 24px;
    line-height: 1.25;
    text-transform: uppercase;
    color: var(--color-gray-dark);
}

#schedules .schedules_item .schedules_content {
    display: inline-block;
    margin: 0 0 0 100px;
}

#schedules .schedules_item .schedules_content .schedules_time {
    font-size: 24px;
    line-height: 1.25;
    color: var(--color-gray-dark);
    font-weight: 700;
    font-style: italic;
    margin-bottom: 10px;
}

#schedules .schedules_item .schedules_content .schedules_title {
    position: relative;
    font-family: "Noto Sans", sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 24px;
    line-height: 1.25;
    text-transform: uppercase;
    color: var(--color-gray-dark);
}

#schedules .schedules_item .schedules_content .schedules_speakers {
    position: relative;
    font-family: "Noto Sans", sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: var(--color-gray-dark);
}

#schedules .schedules_item .schedules_content .schedules_description {
    position: relative;
    font-family: "Noto Sans", sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.25;
    color: var(--color-gray-dark);
}

#schedules .btn-schedules {
    font-size: 1.6em;
    color: var(--color-green);
    background: var(--color-white);
}

#schedules .btn-schedules:hover {
    color: var(--color-white);
    background: var(--color-gray-dark);
}

/* tabs */

#schedules .nav-tabs {
    border-bottom: 1px solid var(--color-green);
}

#schedules .nav-tabs .nav-link {
    font-family: "Noto Sans", sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 40px;
    line-height: 1.25;
    text-transform: uppercase;
    color: var(--color-gray-dark);
    border-radius: 0 !important;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    border: none;
    margin: 0;
}

#schedules .nav-tabs .nav-link:hover {
    color: var(--color-green);
    border-color: #f1f1f1 #f1f1f1 var(--color-green);
}

#schedules .nav-tabs .nav-link.active {
    border-color: var(--color-green) var(--color-green) var(--color-green);
    background: var(--color-green);
    color: var(--color-white);
}

/*  ----------------------------------------------------
Фотогалерея
-------------------------------------------------------- */

#gallery {
    position: relative;
}

#gallery .section_title .section_header {
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 46px;
    line-height: 1.25;
    text-transform: uppercase;
    color: var(--color-green);
}

#gallery .gallery-item {
    position: relative;
    overflow: hidden;
}

#gallery .gallery-item .gallery-image {
    position: relative;
}

#gallery .gallery-item .gallery-image img {
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

#gallery .gallery-item .icon-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    background: rgba(72, 86, 100, 0.5);
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    opacity: 0;
}

#gallery .gallery-item .icon-overlay .eye {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
    width: 64px;
    height: 64px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    opacity: 0.7;
}

#gallery .gallery-item .icon-overlay i {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
    color: #ffffff;
    font-size: 30px;
    transition: all .5s ease;
    -moz-transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
}

/* hover */

#gallery .gallery-item:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

#gallery .gallery-item:hover .icon-overlay {
    opacity: 1;
}

/*  ----------------------------------------------------
Как попасть на Trend Week
-------------------------------------------------------- */

#howtoget {
    position: relative;
    background: var(--color-green);
}

#howtoget .section_title .section_header {
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 46px;
    line-height: 1.35;
    text-transform: uppercase;
    color: var(--color-white);
}

#howtoget .section_title .section_subheader {
    font-family: "Noto Sans", sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 48px;
    line-height: 1.25;
    text-transform: uppercase;
    color: var(--color-white);
}

#howtoget p, #howtoget li {
    color: var(--color-white);
    font-size: 18px;
    line-height: 1.25;
}

/* icon_box */

/*

#howtoget .icon_box {
    position: relative;
    display: inline-block;
    text-align: left;
    padding: 0;
    margin: 0;
}

#howtoget .icon_box .icon_box_icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 31px;
    height: 31px;
    font-family: "Russo One", sans-serif;
    font-size: 26px;
    line-height: 31px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--color-white);
    text-align: center;
}

#howtoget .icon_box .icon_box_content {
    float: left;
    margin-left: 0;
}

#howtoget .icon_box .icon_box_content .icon_box_title {
    font-family: "Russo One", sans-serif;
    font-size: 26px;
    line-height: 31px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--color-white);
    margin: 0 0 0 30px;
}

*/

#howtoget .btn {
    position: relative;
    font-family: "Russo One", sans-serif;
    font-size: 40px;
    text-transform: uppercase;
    color: var(--color-green);
    background: var(--color-white);
    border: 8px solid var(--color-green-dark);
    padding: 1.2rem;
}

#howtoget .btn:hover {
    color: var(--color-gray);
    background: var(--color-white);
    border: 8px solid var(--color-gray);
}

/*  ----------------------------------------------------
Heimtextil (#heimtextil_map)
-------------------------------------------------------- */

/*  ----------------------------------------------------
Почему нас выбирают (#choose)
-------------------------------------------------------- */

/*  ----------------------------------------------------
Регистрация (#registration)
-------------------------------------------------------- */

/*

#registration .btn-registration {
    position: relative;
    font-family: "Russo One", sans-serif;
    font-size: 24px;
    line-height: 2.5;
    text-transform: uppercase;
    color: var(--color-white);
    background: var(--color-green);
    padding: 0;
    min-width: 380px;
    letter-spacing: 0.1em;
}

#registration .btn-registration:hover {
    color: var(--color-green);
    background: var(--color-gray-dark);
}

#registration .btn-registration:active {
    color: var(--color-green);
}

#registration .btn-registration.disabled,
#registration .btn-registration:disabled {
    color: var(--color-white);
    background-color: var(--color-gray);
    cursor: default;
}

#registration .btn-registration.disabled:hover,
#registration .btn-registration:disabled:hover {
    color: var(--color-white);
    background-color: var(--color-gray);
    cursor: default;
}

*/

/*  ----------------------------------------------------
Организатор
-------------------------------------------------------- */

/*  ----------------------------------------------------
Футер (Контакты мероприятия / Соцсети)
-------------------------------------------------------- */

#footer {
    position: relative;
}

#footer * {
    z-index: 150;
}

#footer .section_title .section_header {
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 46px;
    line-height: 1.25;
    text-transform: uppercase;
    color: var(--color-gray-dark);
}

#footer a {
    position: relative;
    color: var(--color-gray-dark);
}

#footer .icon_box_text a::after {
    position: absolute;
    display: block;
    content: '';
    width: 100%;
    border-bottom: solid 2px var(--color-green);
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    padding-bottom: 4px;
}

#footer .icon_box_text a:hover::after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

/* icon_box */

#footer .icon_box {
    position: relative;
    display: inline-block;
    text-align: left;
    padding: 0;
    margin: 0;
}

#footer i {
    float: left;
    font-size: 24px;
    color: var(--color-gray-dark);
    line-height: 1.25;
}

#footer .icon_box_content {
    position: relative;
}

#footer .icon_box_title {
    color: #ffad00;
    margin: 4px 0 4px 40px;
}

#footer .icon_box_title h3 {
    font-family: "Noto Sans", sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.25;
    color: var(--color-gray-dark);
    white-space: nowrap;
    margin: 0;
}

#footer .icon_box_text {
    margin: 0 0 0 40px;
}

#footer .icon_box_text p {
    position: relative;
    font-family: "Noto Sans", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.25;
    color: var(--color-gray-dark);
    margin: 0;
}

#footer .icon_box_text h3 {
    font-family: "Noto Sans", sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.25;
    color: var(--color-gray-dark);
    margin: 0;
}

/* socials icons */

#footer .social ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .social ul li {
    display: inline-block;
    margin: 0 15px 0 0;
}

#footer .social .icon {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
    fill: var(--color-gray-dark);
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

#footer .social .icon:hover {
    fill: var(--color-green);
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

/*  ----------------------------------------------------
Карта
-------------------------------------------------------- */

#gmap {
    position: relative;
    padding: 0;
}

#cd-google-map {
    position: relative;
}

#google-container {
    position: relative;
    width: 100%;
    height: 600px;
}

#google-container > div:first-child {
    background: var(--color-black) !important;
}

#map_tooltip_content {
    color: var(--color-white);
    margin-right: 12px;
    padding: 1rem;
}

#map_tooltip_content h3 {
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 0;
}

#map_tooltip_content p {
    font-weight: 100;
    font-size: 18px;
    color: var(--color-white);
}

/* google gm-style */

.gm-style > div:last-child {
    display: none;
}

.gm-style .controls {
    font-size: 28px;
    background-color: transparent;
    -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0 1px 4px -1px;
    box-shadow: rgba(0, 0, 0, 0.3) 0 1px 4px -1px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 2px;
    cursor: pointer;
    font-weight: 300;
    margin: 6px;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 0;
}

.gm-style .controls button {
    border-radius: 6px;
    border: 0;
    background-color: var(--color-gray-dark);
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.gm-style .controls button:hover {
    background-color: var(--color-green);
}

.gm-style .controls.zoom-control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: auto;
}

.gm-style .controls.zoom-control button {
    font: 0.85em Arial;
    margin: 1px;
    padding: 0;
    width: 32px;
    height: 32px;
}

.gm-style .controls.maptype-control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: auto;
}

.gm-style .controls.maptype-control button {
    display: inline-block;
    font-size: 0.5em;
    margin: 0 1px;
    padding: 10px;
}

.gm-style .controls.maptype-control.maptype-control-is-map .maptype-control-map {
    font-weight: 700;
}

.gm-style .controls.maptype-control.maptype-control-is-satellite .maptype-control-satellite {
    font-weight: 700;
}

.gm-style .controls.fullscreen-control button {
    display: block;
    font-size: 1em;
    width: 32px;
    height: 32px;
}

.gm-style .controls.fullscreen-control .fullscreen-control-icon {
    border-style: solid;
    height: 0.25em;
    position: absolute;
    width: 0.25em;
}

.gm-style .controls.fullscreen-control .fullscreen-control-icon.fullscreen-control-top-left {
    border-width: 2px 0 0 2px;
    left: 0.2em;
    top: 0.2em;
}

.gm-style .controls.fullscreen-control.is-fullscreen .fullscreen-control-icon.fullscreen-control-top-left {
    border-width: 0 2px 2px 0;
}

.gm-style .controls.fullscreen-control .fullscreen-control-icon.fullscreen-control-top-right {
    border-width: 2px 2px 0 0;
    right: 0.2em;
    top: 0.2em;
}

.gm-style .controls.fullscreen-control.is-fullscreen .fullscreen-control-icon.fullscreen-control-top-right {
    border-width: 0 0 2px 2px;
}

.gm-style .controls.fullscreen-control .fullscreen-control-icon.fullscreen-control-bottom-left {
    border-width: 0 0 2px 2px;
    left: 0.2em;
    bottom: 0.2em;
}

.gm-style .controls.fullscreen-control.is-fullscreen .fullscreen-control-icon.fullscreen-control-bottom-left {
    border-width: 2px 2px 0 0;
}

.gm-style .controls.fullscreen-control .fullscreen-control-icon.fullscreen-control-bottom-right {
    border-width: 0 2px 2px 0;
    right: 0.2em;
    bottom: 0.2em;
}

.gm-style .controls.fullscreen-control.is-fullscreen .fullscreen-control-icon.fullscreen-control-bottom-right {
    border-width: 2px 0 0 2px;
}

.gm-style-iw-chr {
    display: none;
}

.gm-style .gm-style-iw-c {
    border-radius: 0;
    background: var(--color-green) !important;
    color: var(--color-white);
    border: 1px solid rgba(119, 119, 119, 0.5);
    -webkit-box-shadow: none;
            box-shadow: none;
}

/* bottom arrow */
.gm-style .gm-style-iw-tc {
    -webkit-filter: none;
    filter: none;
}

.gm-style .gm-style-iw-tc::after {
    background: var(--color-green);
}

.gm-style-iw-d {
    overflow: hidden !important;
}

.gm-style .gm-style-iw-t::after {
    background: var(--color-green) !important;
    z-index: 999;
}

.gm-ui-hover-effect > span {
    background-color: var(--color-white);
}

/*
.gm-ui-hover-effect {
    display: none !important;
}
*/