/* Подключение полужирного шрифта */
@font-face {
    font-family: 'AAvanteLT';
    src: url('fonts/aavanteltdemibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

/* Подключение полужирного курсивного шрифта */
@font-face {
    font-family: 'AAvanteLT';
    src: url('fonts/aavanteltdemibolditalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
}

/* Подключение легкого шрифта */
@font-face {
    font-family: 'AAvanteLT';
    src: url('fonts/aavanteltlight.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

/* Подключение легкого курсивного шрифта */
@font-face {
    font-family: 'AAvanteLT';
    src: url('fonts/aavanteltlightitalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

body {
    font-family: 'Arial';
}

/* UI Instruments */


:root {
    --mcolor: #F97100;
    --mcolor_hover: #5C5C5B;
    --mcolor_green: #62BB4D;
    --mcolor_blue: #0093E9;
    --mcolor_yellow: #fff3cd;
}

.ui_color {
    color: var(--mcolor);
}

.ui_color_red {
    color: red !important;
}

.ui_color_green {
    color: var(--mcolor_green) !important;
}

.ui_color_yellow {
    color: var(--mcolor_green) !important;
}

.ui_color_blue {
    color: var(--mcolor_blue) !important;
}


.ui_bg_red {
    background: red !important;
}

.ui_bg_green {
    background: var(--mcolor_green) !important;
}

.ui_bg_yellow {
    background: var(--mcolor_green) !important;
}

.ui_bg_blue {
    background: var(--mcolor_blue) !important;
}

a {
    text-decoration: none;
}

.ui_link {
    transition: all 0.2s;
}

.ui_link:hover {
    color: var(--mcolor);
    text-decoration: underline;
}

.clear {
    clear: both;
}

.nopadding {
    padding: 0 15px;
}

.nopadding > div {
    padding: 0;
}

.outline {
    outline: 1px solid red;
}

.ui_button {
    cursor: pointer;
    color: white;
    background: var(--mcolor);
    outline: none;
    border: none;
    transition: all 0.5s;
}

.ui_button:hover {
    background: var(--mcolor_hover);
}




.ui_button_light {
    cursor: pointer;
    color: var(--mcolor);
    background: none;
    outline: none;
    border: 1px solid var(--mcolor);
    transition: all 0.5s;
}

.ui_button_light:hover {
    background: var(--mcolor);
    color: white;
}

.ui_button:focus,
.ui_button_light:focus {
    outline: none;
}



.ui_width_100 {
    width: 100%;
}

/* UI FORMS */
.dark_light {
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 10;
    display: none;
}

.thanks_window {
    width: 400px;
    height: 190px;
    background: white;
    position: fixed;
    top: 20%;
    padding: 25px;
    left: 50%;
    margin-left: -200px;
    box-sizing: border-box;
    z-index: 11;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: none;
}

.thanks_window_title {
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
}

.thanks_window_text {
    line-height: 1.3;
    text-align: center;
}

.window {
    width: 440px;
    position: fixed;
    left: 50%;
    margin-left: -220px;
    background: white;
    top: 15%;
    z-index: 11;
    padding-top: 15px;
    display: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    line-height: 1.3;
}

.window_close {
    position: absolute;
    right: 10px;
    background: url(../images/icons/close.svg);
    width: 22px;
    height: 22px;
    top: 10px;
    cursor: pointer;
}


.window_close:hover {
    background-position: 0 -22px;
}

.window_title {
    text-align: center;
    color: #41554D;
    padding: 15px;
    font-size: 24px;
    font-weight: bold;
}

.widow_input_wrap {
    width: 80%;
    margin-left: 10%;
    margin-bottom: 20px;
}

.widow_input {
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    background: #ECECEC;
    border: 1px solid #2B2B2A;
}

.widow_input_title {
    margin-bottom: 8px;
    color: #898989;
    font-weight: bold;
}

.widow_input_title span {
    font-size: 11px;
    font-weight: 400;
}


.widow_input_st {
    margin-top: 0px;
    padding: 8px 0;
    border: none;

    text-transform: uppercase;
    font-weight: bold;
    line-height: 1.2;
    font-size: 14px;
    border-radius: 16px;
    border: 3px solid #434342;
    background: #41554D;
    cursor: pointer;
    width: 60%;
    margin: 0 20%;

}

.window_line {
    padding: 0 15px 15px 15px;
    font-size: 14px;
    text-align: center;
}

.hidden_input {
    display: none;
}

.window_info {
    text-align: center;
    font-size: 12px;
    color: #2B2B2A;
    padding: 0 60px;
    padding-bottom: 15px;
}

.window_info a {
    color: #2B2B2A;
    text-decoration: underline;
}





/* UI content */
.content {
    line-height: 1.4;
}

.content p {
    margin-bottom: 25px;
}

.content ul {
    list-style: disc;
    margin: 0px 0;
    margin-left: 20px;
    margin-bottom: 14px;
}

.content ol {
    list-style: decimal;
    margin: 10px 0;
    margin-left: 20px;
}

.content b {
    font-weight: bold;
}

.content strong {
    font-weight: bold;
}

.content i,
.content em {
    font-style: italic;
}

.content table {
    width: 100%;
    margin: 10px 0;
}

.content table tr {
    width: 100%;
}

.content table td {
    border: 1px solid grey;
    padding: 10px;
}

.content table th {
    border: 1px solid grey;
    padding: 10px;
}

.content img {
    padding: 0px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto !important;
}

.content iframe {
    border-radius: 4px !important;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto !important;
}

.content h1 {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 30px;
    text-align: center;
    text-transform: uppercase;
}

.content h2 {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 26px;
}

.content h3 {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 24px;
}

.content h4 {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 22px;
}

.content h5 {
    font-weight: bold;
    margin-bottom: 7px;
    font-size: 20px;
}

.content h6 {
    font-weight: bold;
    margin-bottom: 7px;
    font-size: 18px;
}

.content a {
    color: var(--mcolor);
    text-decoration: underline !important;
}

.content a {
    color: var(--mcolor_hover);
    text-decoration: underline !important;
}

.content blockquote {
    padding: 12px 15px;
    background: #fff3cd;
    margin-bottom: 20px;
    border-radius: 4px;
}

.content blockquote.green {
    background: #d4edda;
}

.content blockquote.red {
    background: #f8d7da;
}

.noshadow {
    box-shadow: none !important;
}

.ui_nobutton {
    background: none;
    border: none;
}

.ui_nobutton:focus {
    outline: none;
}



/* breadCrumbs  */
.bread li {
    float: left;
    margin-right: 10px;
    color: black;
    font-size: 14px;
}

.bread li a {
    color: black;
}

.bread li a:hover {
    color: var(--mcolor);
    text-decoration: underline;
}

/* Arrows UI  */
.arrow_left {
    background: url(../images/arrow_left.svg);
    width: 34px;
    height: 34px;
    cursor: pointer;
    float: left;
}

.arrow_right {
    background: url(../images/arrow_right.svg);
    width: 34px;
    height: 34px;
    cursor: pointer;
    float: right;
}

.arrow_left:hover {
    background-position: 0 -34px;
}

.arrow_right:hover {
    background-position: 0 -34px;
}

.header_logo {
    background: #ECECEC;
    display: flex;
    grid-gap: 74px;
    align-items: center;
    padding: 20px 0;
}

.header_menu {
    background: #8E9C97;
}

.header_menu_items ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.header_menu_items ul li a {
    color: white;
    padding: 9px 16px;
    display: block;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    grid-gap: 8px;
}

.header_menu_items ul li a img {
    margin-top: -0px;
}

.header_menu_items ul li a:hover {
    background: #41554D;
}

.header_menu_items ul li {
    text-align: center;
}


.banner {
    background: url(../images/banner.jpg);
    background-size: cover;
    padding-bottom: 90px; overflow:hidden;
}

.banner .container{ min-height:550px;}

.banner_text {
    font-size: 48px;
    text-align: center;
    color: white;
    text-transform: uppercase;
    padding-top: 100px;
    font-family: 'AAvanteLT'; font-weight:bold;
}

.banner_text span {
    display: block;
    margin-bottom: 50px;
}

.banner_logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
}

.banner_logo {
    text-align: center;
}

.banner_logo img{max-width:370px;}

.diller_text_wrap {
    font-size: 47px;
    text-align: center;
    color: #41554D;
    padding: 90px 0;
    line-height: 1.3;
}

.about_section1 {
    background: #5C5C5B;
    display: grid;
    justify-content: center;
    align-content: center;
    align-items: center;
    grid-template-columns: 1fr 1fr;
}

.about_section2 {
    background: #41554D;
    display: grid;
    justify-content: center;
    align-content: center;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    border-bottom: 5px solid white;
}

.about_section1_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
}

.about_section1_h2 {
    font-size: 42px;
    margin-bottom: 30px;
    line-height: 1.2;
}


.about_section1_content {
    font-size: 21px;
    line-height: 1.3;
}

.about_section1_text {
    color: white;
    padding-left: 300px;
    padding-right: 100px;
}

.about_section2 .about_section1_text {
    color: white;
    padding-left: 100px;
    padding-right: 280px;
}

.uslugi {
    background: #687D76;
}

.uslugi_title {
    color: #687D76;    font-family: 'AAvanteLT'; 
}

.uslugi_items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 24px;
    padding: 90px 0;
}

.uslugi_item {
    background: white;
    padding: 20px;
    text-align: center;
    border: 3px solid white;
    font-size: 24px;
    text-transform: uppercase;
    cursor: pointer;
    line-height: 1.3;
    transition: all .3s;
}

.uslugi_item:hover {
    border: 3px solid #41554D;
}

.block_title {
    font-size: 48px;
    color: white;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase; 
}

.uslugi_img {
    height: 200px;
    margin-bottom: 24px;
}

.uslugi_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.news {
    background: url(../images/news_bg.jpg);
    background-size: cover;
    padding: 64px 0;
}

.news_items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 40px;
}

.mews_item {
    background: white;
    padding: 16px;
}

.mews_item_img {
    width: 100%;
    height: 240px;
    margin-bottom: 24px;
}

.mews_item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: 24px;
}

.mews_item_title {
    font-weight: bold;
    margin-bottom: 12px;
    line-height: 1.2;
}

.mews_item_title a {
    color: black;
}

.mews_item_title a:hover {
    text-decoration: underline;
}

.mews_item_description {
    line-height: 1.2
}

.adventures_items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px;
}

.adventures {
    background: #41554D;
    padding: 60px 0;
}

.adventures_item {
    text-align: center;
}

.adventures_item_img {
    margin-bottom: 40px;
}

.adventures_item_title {
    margin-bottom: 28px;
    font-size: 28px;
    text-transform: uppercase;
    line-height: 1.3;font-family: 'AAvanteLT';
    color: white;
}

.adventures_item_description {
    color: white;
    line-height: 1.3;
}

.map_contact {
    position: absolute;
    right: 300px;
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    padding: 45px 90px;
    text-align:
}

.map {
    position: relative;
}

.map_contact_logo {
    text-align: center;
    margin-bottom: 80px;
}

.map_contact_item {
    display: flex;
    grid-gap: 20px;
    margin-bottom: 24px;
    align-items: center;
    color: white;
    line-height: 1.3;    white-space: nowrap;
}

.map_contact_item.bold{font-weight:bold;}

.map_contact_item a {
    color: white;
}

.map_contact_item a:hover {
    text-decoration: underline;
}

.map_contact_item span:first-child {
    width: 28px;
    text-align: center;
}

.diller_text {
    background: #ECECEC;
    border-bottom: 5px solid white;
}

.footer {
    background: #434342;
    padding: 25px 0;
}

.footer_inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 24px;
    align-items: center;
}

.footer_menu_worktime {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid: 24px;
}

.footer_menu a {
    text-transform: uppercase;
    color: white;
    margin-bottom: 10px;
    display: block;
}

.footer_menu a:hover {
    text-decoration: underline;
}

.footer_worktime {
    text-transform: uppercase;
    line-height: 1.5;
    color: white;
}

.footer_contact_item {
    display: flex;
    grid-gap: 10px;
    font-size: 14px;
    margin-bottom: 12px;
}
.footer_contact_item.bold{font-weight:bold;}

.footer_contact_item strong {
    width: 30px;
    display: block;
    text-align: center;
}

.footer_contact_item strong img {
    max-width: 18px;
}

.footer_contact_item {
    color: white;
    align-items: center;
}


.footer_contact_item:first-child img {
    width: 12px;
}

.footer_contact_item a {
    color: white;
}

.footer_contact_item a:hover {
    text-decoration: underline;
}

.header_menu {}

.header_menu.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
    /* или любой фон, чтобы меню не было прозрачным */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.addmargin {
    margin-top: 34px;
}

.content_section {
    padding: 60px 0;
}

.main_article_img {
    margin-bottom: 36px;
    height: 400px;
    width: 100%;
}

.main_article_img img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}


.logo {
  position: absolute;
  bottom: 0;
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}

.logo.left {
  left: 10%;
  transform: translateX(-100px);
}

.logo.right {
  right: 10%;
  transform: translateX(100px);
}

/* Активные анимации */
.logo.animate-left {
  transform: translateX(0);
  opacity: 1;
}

.logo.animate-right {
  transform: translateX(0);
  opacity: 1;
}