body{
    font-family: 'Roboto', sans-serif;
    word-break: break-word;
    --text-color: #757575;
    --dark-text-color: #111111;
    --light-text-color: #b8b8b8;
    --border-color: #333;
    --background-color: #f2f2f2;
    color: var(--text-color);
    font-size: 16px;

}

img{
    max-width: 100%;
}
a, a:hover{
    color: var(--text-color);
    text-decoration: none !important;
}

*{
    outline: none;
}

.menu a{
    /*font-weight: bold;*/
    padding: 10px 20px;
}
.color-dark{
    color: var(--dark-text-color);
}
.font-bold{
    font-weight: 500;
}


/*HEADER*/
header{

    padding: 10px 0;
}
header .contacts, header .contacts a{
    color: var(--dark-text-color);
    font-weight: 500;
}
header .contacts .contact-item:not(:last-child){
   margin-bottom: 5px;
}

header .menu-wrapper{
    position: relative;
}

header .menu-inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

@media(max-width: 991px){
    header .menu-wrapper{
        display: flex;
        justify-content: flex-end;
    }
    header .menu{
        position: absolute;
        background: #fff;
        transition: height 300ms;
        height: 0px;
        right:  0;
        top: 100%;
        overflow: hidden;
        min-width: 200px;
        z-index: 1000;
        /*width: max-content;*/
    }
    .menu-inner{
        padding: 20px 0px;
    }
    header .contacts{
        display: flex;
        flex-flow: column;
        align-items: center;
    }
    .menu-inner > a{
        flex: 0 0 100%;
    }
}
/*HEADER*/

/*FOOTER*/
footer {
    border-top: 1px solid #ccc;
    padding: 10px 0;
}

.copyright{
    color: var(--dark-text-color);
    font-weight: 500;
}

.f_menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.f_menu a{
    padding: 10px 20px;
}

@media(max-width: 991px){
    .f_menu{
        margin-bottom: 15px;
    }
    .f_menu a{
       flex: 0 0 100%;
    }

    .copyright{
        text-align: center;
    }
}
/*FOOTER*/


.main-screen {
    background-color: #555;
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: calc(100vh - 100px);
    color: #fff;
     align-items: center;
    display: flex;
    flex-flow: column;
    padding: 150px 50px 50px;
}
.company-name {
    font-size: 60px;
    font-weight: 500;
    position: relative;
    line-height: 1;
    padding-bottom: 20px;
    margin-bottom: 100px;
    text-align: center;
}
.company-name:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0px;
    /* width: 90%; */
    left: 20%;
    right: 20%;
    background: #fff;
    height: 1px;
}


.down-link {
      flex: 1 1 auto;
    display: flex;
    align-items: flex-end;
    padding: 5px;
    font-size: 28px;
}
.down-link a {
    color: var(--light-text-color);
    display: flex;
    flex-flow: column;
    align-items: center;
}
.down-link a span:first-child{
    font-size: 36px;

}
.down-link a span:last-child{
    font-size: 26px;

}

.button {
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 15px 60px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: background-color 300ms, color 300ms;
}
.button:hover{
    background-color: #fff;
    color: var(--dark-text-color);
}

.button.white{
    color: var(--dark-text-color);
    background: #fff;
}

.button.white:hover{
    color: #fff;
    background-color: transparent;
}

.button.dark{
    color: var(--dark-text-color);
    border: 1px solid var(--border-color);
    text-transform: uppercase;
    background: transparent;
}
.button.dark:hover{
    color: #fff;
    background: var(--border-color);
}
.button.full-width{
    padding: 15px 10px;
    width: 100%;
}

.controls-wrapper{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.controls-wrapper > *:not(:last-child){
    margin-right: 30px;
}
.main-screen .controls-wrapper{
    margin-bottom: 50px;
}

@media(max-width: 576px){
    .main-screen{
        padding: 150px 15px 80px 15px;
    }
    .controls-wrapper{
        flex-flow: column;
    }
    .controls-wrapper > *:not(:last-child){
        margin-right: 0px;
        margin-bottom: 20px;
    }
    .company-name{
        font-size: 40px;
    }
}

.screen-block{
    padding: 100px 0;
    overflow: hidden;
}



.title-block.lined {
    position: relative;
    line-height: 65px;
}
.title-block.lined:after {
    content: '';
    display: block;
    position: absolute;
    top: 65px;
    left: -10000px;
    right: -100000px;
    background: #ccc;
    height: 1px;
}
.title-block.separated {
    display: flex;
    flex-flow: column;
}
.title-block {
    color: var(--dark-text-color);
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 30px;
    /* line-height: 60px; */
}

@media(max-width: 424px){
    .title-block{
        font-size: 40px;
    }
}
.word-background {
    position: relative;
}
.word-background:before {
    content: attr(data-words);
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    font-size: 20rem;
    color: #f7f7f7;
    line-height: 1;
    display: inline;
}

.tiny-text p{
    margin-bottom: 30px;
}
.tiny-text h2, .tiny-text h3, .tiny-text h4, .tiny-text h5, .tiny-text h6 {
   color: var(--dark-text-color);
    margin-bottom: 30px;
    font-size: 22px;
}

ul {
    list-style-type: none !important;
    margin-left: 0;
    padding: 0;
}
.tiny-text  li{
    word-break: break-word;
}
.tiny-text ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;

}

.tiny-text ul, .tiny-text ol {
    margin: 30px 0;
}

.tiny-text ul li:before {
    content: "";
    width: 5px;
    height: 5px;
    position: absolute;
    top: 10px;
    left: 9px;
    right: auto;
    bottom: auto;
    background-color: var(--text-color);
    border-radius: 100%;
}

.info-block .title-block{
    margin-bottom: 100px;
}
.mr-top-100{
    margin-top: 100px;
}

@media(max-width: 575px){
    .word-background:before {
        top: -50px;
        font-size: 10rem;
    }
}
.bg-f2{
    position: relative;
    padding: 150px 0px 100px;
}
.bg-f2:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #f2f2f2;
    transform: skewY(4deg);
    transform-origin: left;
}
.contact-list{
    margin-top: 40px;
    margin-left: 100px;
    font-weight: 500;
}
.contact-list > div:not(:last-child){
   margin-bottom: 7px;
}

@media(max-width: 424px){
    .contact-list {

        margin-left: 20px;

    }
}

label{
    color: var(--text-color);
    padding-left: 25px;
    margin-bottom: 10px;
    font-weight: 500;
}

input, textarea, input.form-control, textarea.form-control, input:focus, textarea:focus, input.form-control:focus, textarea.form-control:focus{
    box-shadow: none;
    background: transparent;
    border: 1px solid #aaa;
    border-radius: 10px;
    padding: 10px 10px 10px 25px;
    max-width: 100%;
    width: 100%;
}
input::-webkit-input-placeholder {
    color: var(--light-text-color);

}

input::-moz-placeholder {
    color: var(--light-text-color);

}

input:-ms-input-placeholder {
    color: var(--light-text-color);

}

input:-moz-placeholder {
    color: var(--light-text-color);

}

.nav-tabs {
    display: flex;
    flex-wrap: wrap;
    border: none;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    position: relative;
    margin-bottom: 100px;

}
.nav-tabs:before, .nav-tabs:after {
    content: '';
    position: absolute;
     height: 1px;
    background: #ccc;
    left: -10000px;
    right: -10000px;
    top: 0;
}
.nav-tabs:after {
    top: auto;
    bottom: 0;
}
.nav-tabs .nav-item {
    flex: 1 1 auto;
    text-align: center;
    border: none;
    margin-bottom: 0;
}
.nav-tabs  .nav-item:not(:last-child) {
    border-right: 1px solid #ccc;
}

.nav-tabs  .nav-item a {
    padding: 15px 10px;
    color: var(--dark-text-color);
    font-weight: 500;
    transition: background-color 300ms, color 300ms;
    border: none;
    position: relative;
    border-radius: 0;
}

.nav-tabs .nav-link.active, .nav-tabs .nav-link:hover {
    border: none;
    color: #fff;
    background: #111;
}

.nav-tabs .nav-link.active:before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #111;
    transform: rotate(45deg);
    bottom: -4px;
    z-index: 10;
    left: calc(50% - 4px);
}
.schedule-day {
    display: flex;
    flex-wrap: wrap;
}
.schedule-day .schedule-item {
    flex: 0 0 33%;
    max-width: 33%;
    padding: 0 50px;
    margin-bottom: 20px;
}
.schedule-day {
    display: flex;
    flex-wrap: wrap;
}
.schedule-day .schedule-list {
    margin-top: 30px;
}
.schedule-list > div {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 25px;

}
.schedule-list > div > *:first-child {
    flex: 0 0 45%;
    margin-right: 7px;
}
.schedule-list > div p{
    margin-bottom: 7px;
}
.schedule-day .map {
    height: 200px;
}
@media(max-width: 991px){
    .schedule-day .schedule-item {
        flex: 0 0 50%;
        max-width: 50%;

    }
}
@media(max-width: 767px){
    .schedule-day .schedule-item {
        flex: 0 0 100%;
        max-width: 100%;

    }
}
.carousel-wrapper {
    display: flex;
    width: 100%;
    margin-top: 100px;
}

.carousel-control {
    display: flex;
    align-items: center;
    flex: 0 0 7%;
    font-size: 40px;
    color: var(--light-text-color);
    transition: color 300ms;
    cursor: pointer;
}
.carousel-control:hover{
    color: var(--text-color);
}
.right-control{
    justify-content: flex-end;
}
#feedback-carousel{
    flex: 0 0 86%;
    max-width: 86%;
}

.feedback-item .date {
    font-size: 14px;
    color: var(--light-text-color);
    margin-bottom: 25px;
}
.feedback-item .author {
    font-weight: 600;
    color: var(--dark-text-color);
    font-size: 18px;
}

.feedback-item {
    padding: 0 20px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
}
.gallery .gallery-img {
    /*overflow: hidden;*/
    flex: 0 0 10%;
    max-width: 10%;
    position: relative;
}
.gallery .gallery-img:before {
    float: left;
    padding-top: 90%;
    content: '';
}
.gallery .gallery-img img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms;
}
.gallery .gallery-img:hover img {
   transform: scale(2);
    z-index: 2;
}
.slider-items .slider-item{
    cursor: pointer;
}
.slider-modal {
    background: transparent;
    box-shadow: none;
    border: none;
}

.slider-modal .close-modal {
    color: #fff;
}

.slider {
    position: relative;

}

.slider .slider-item {
    text-align: center;
    transition: transform 500ms;
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;

}

.slider .slider-item .img-label {
    display: block;
    color: #fff;
    font-size: 16px;
    text-align: center;
    padding-top: 30px;
    /* flex: 1 1 auto; */
    font-weight: bold;
    word-break: break-word;
}

.slider img {
    width: auto;
    object-fit: contain;
    max-height: 80%;

}

.slider .controls > div {
    position: absolute;
    top: 0;
    font-size: 40px;
    color: #fff;
    bottom: 0;
    transition: color 300ms;
    display: flex;
    align-items: center;
    z-index: 9;
    cursor: pointer;
    padding: 0 10px;
}

.slider .slider-inner {

    width: 100%;
    position: relative;
    height: calc(100vh - 60px);
    overflow: hidden;

}

.slider .controls > div.disabled {
    opacity: 0.6;
}

.slider .left-control {
    left: 0px;
}

.slider .right-control {
    right: 0;
}

.slider .controls > div:not(.disabled):hover {
    color: var(--theme-color);
}

.slider-inner .slider-item:nth-child(2) {
    top: 0;
    position: absolute;
}

.slider-inner.hide-next .slider-item:nth-child(2) {
    left: 100%;
}

.slider-inner.hide-prev .slider-item:nth-child(2) {
    left: -100%;
}

.slider-inner.go-prev .slider-item {
    transform: translateX(100%);
}

.slider-inner.go-next .slider-item {
    transform: translateX(-100%);
}

.slider-inner.no-tran .slider-item {
    transition: none;
}
@media(max-width: 1024px ){
    .gallery .gallery-img {

        flex: 0 0 20%;
        max-width: 20%;

    }
}
@media(max-width: 576px ){
    .gallery .gallery-img {

        flex: 0 0 33.3%;
        max-width: 33.3%;

    }
}

.leaflet-control-container {
    display: none;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    color: var(--light-text-color);
    cursor: pointer;
    z-index: 10;
}
/*.modal-content{*/
/*    padding: 30px 20px;*/
/*}*/

.float-block-item {
    padding: 30px;
    word-break: break-word;
}
.bottom-line {
    border-bottom: 1px solid #ccc;
}