@import url("https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i");

@keyframes swipe_arrow_left {
    to {
        left: 10px
    }
}

@keyframes swipe_arrow_right {
    to {
        right: 10px
    }
}

.clearfix {
    clear: both
}

.clearfix::after {
    display: block;
    clear: both;
    content: ''
}

.fluid-img {
    max-width: 100%;
    height: auto
}

.text-center {
    text-align: center
}

.full-screen-nav {
    width: 100%;
    height: calc(100vh - 100px);
    top: 100px;
    left: 101%;
    overflow-y: auto;
    position: fixed;
    box-sizing: border-box;
    z-index: 9999;
    transition: 0.2s left, 0.2s opacity
}

@media screen and (min-width: 1100px) {
    .full-screen-nav {
        display: none
    }
}

@media screen and (max-width: 800px) {
    .full-screen-nav {
        top: 53px
    }
}

.full-screen-nav--active {
    left: 0;
    opacity: 1
}

.hamburger {
    background-color: #ffffff;
    width: 53px;
    height: 53px;
    padding: 0 17px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    opacity: 0.9;
    cursor: pointer;
    transition: 0.2s all, 0.2s opacity, 0s right
}

@media screen and (min-width: 1100px) {
    .hamburger {
        display: none
    }
}

.hamburger:hover, .hamburger.hamburger--active {
    opacity: 1
}

.hamburger:hover:not(.hamburger--active) span:nth-child(2) {
    width: 50%
}

.hamburger:hover:not(.hamburger--active) span:last-child {
    width: 100%
}

.hamburger--active span:nth-child(1) {
    transform: rotate(45deg)
}

.hamburger--active span:nth-child(2) {
    transform: rotate(-45deg);
    margin-top: -4px
}

.hamburger--active span:nth-child(3) {
    display: none
}

.hamburger span {
    background-color: #000000;
    width: 100%;
    height: 2px;
    margin: 0 0 2px 0;
    border-radius: 2px;
    display: block;
    clear: both;
    transition: 0.2s all
}

.hamburger span:last-child {
    margin-bottom: 0;
    width: 50%
}

.slick-slider .slider_arrow, .slick-slider .slider_arrow {
    background-position: center;
    background-repeat: no-repeat;
    width: 70px;
    height: 70px;
    font-weight: 200;
    cursor: pointer;
    position: absolute;
    top: calc(50% - 35px);
    opacity: 0.6;
    transition: 0.2s opacity
}

.slick-slider .slider_arrow:hover, .slick-slider .slider_arrow:hover {
    opacity: 1
}

.slick-slider .slider_arrow.slider_arrow--prev {
    left: -70px;
    background-image: url("img/arrow-left.png")
}

.slick-slider .slider_arrow.slider_arrow--next {
    background-image: url("img/arrow-right.png");
    right: -70px
}

.slick-slider .slider_arrow.slider_arrow--prev.slider_arrow--mobile {
    width: 40px;
    left: -9px;
    z-index: 99
}

.slick-slider .slider_arrow.slider_arrow--next.slider_arrow--mobile {
    width: 40px;
    right: -9px;
    z-index: 99
}

.slick-slider .slider_arrow.slider_arrow--prev.slider_arrow--mobile_wide {
    width: 40px;
    left: -30px;
    z-index: 99
}

.slick-slider .slider_arrow.slider_arrow--next.slider_arrow--mobile_wide {
    width: 40px;
    right: -30px;
    z-index: 99
}

.slick-dots {
    margin-top: 30px;
    text-align: center;
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: stretch;
    align-items: center
}

.slick-dots li {
    cursor: pointer
}

.slick-dots li .slider_dot {
    background-color: transparent;
    width: 9px;
    height: 9px;
    margin: 6px;
    border: 1px solid #808080;
    border-radius: 100px
}

.slick-dots li:hover .slider_dot {
    background-color: #404040;
    border-color: #404040
}

.slick-dots li.slick-active .slider_dot {
    background-color: #404040;
    border-color: #404040
}

body {
    background-color: #ffffff;
    width: auto;
    height: auto;
    margin: 0 auto;
    padding: 0
}

a {
    text-decoration: none
}

*:focus {
    outline: none
}

h1, h2, h3, h4, h5, h6, p, ul {
    margin: 0;
    padding: 0
}

img {
    border: none
}

.wrapper {
    width: 1260px;
    max-width: calc(100% - 40px);
    height: auto;
    margin: auto
}

.wrapper--fluid {
    max-width: 100%
}

.header {
    background-color: #ebecec;
    width: 100vw;
    height: 100px;
    position: fixed;
    box-sizing: border-box;
    transition: margin-top 0.1s;
    z-index: 999;
    clear: both
}

@media screen and (max-width: 800px) {
    .header {
        height: 53px
    }
}

.header--hide {
    margin-top: -100px
}

@media screen and (max-width: 800px) {
    .header--hide {
        margin-top: -53px
    }
}

.header__block {
    height: 100px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-content: stretch;
    align-items: center;
    box-sizing: border-box
}

@media screen and (max-width: 800px) {
    .header__block {
        height: 53px
    }
}

.header__side {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-content: stretch;
    align-items: center
}

@media screen and (max-width: 1100px) {
    .header__side {
        width: 100%;
        display: block
    }
}

@media screen and (max-width: 1100px) {
    .header__side:nth-child(2) {
        display: none
    }
}

.header__logo {
    background: url("img/logo.png") center no-repeat;
    background-size: contain;
    width: 358px;
    max-width: 100%;
    height: 64px;
    display: block
}

@media screen and (max-width: 1100px) {
    .header__logo {
        margin: auto
    }
}

.logo {
    width: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: center;
    align-items: center
}

@media screen and (max-width: 600px) {
    .logo {
        width: 230px
    }
}

@media screen and (max-width: 800px) {
    .logo--footer {
        margin-bottom: 25px
    }
}

.logo__logotype {
    background: url("../images/logo.svg") center no-repeat;
    background-size: contain;
    width: 70px;
    max-width: 100%;
    height: 64px;
    margin-right: 20px
}

@media screen and (max-width: 800px) {
    .logo__logotype {
        width: 37px;
        height: 37px;
        margin-right: 12px
    }
}

.logo__slogan {
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    color: #2d3037;
    line-height: 20px
}

@media screen and (max-width: 500px) {
    .logo__slogan {
        width: 70%
    }
}

@media screen and (max-width: 400px) {
    .logo__slogan {
        font-size: 13px
    }
}

.logo__slogan--strong {
    font-weight: 800
}

@media screen and (max-width: 800px) {
    .logo__slogan--second {
        display: none
    }
}

.socials {
    width: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: stretch;
    align-items: center
}

.socials__item {
    font-size: 25px;
    color: #828989;
    margin: 0 5px 0 0
}

.socials__item:last-child {
    margin-right: 0
}

.socials__item:hover {
    color: #00aff0
}

.socials__icon {
    font-size: 30px;
    color: #909090
}

.nav {
    width: auto;
    margin: 0;
    position: relative;
    z-index: 9
}

@media screen and (max-width: 1180px) {
    .nav {
        margin: 0
    }
}

@media screen and (max-width: 1100px) {
    .nav--top {
        display: none
    }
}

.nav__plus {
    height: 24px;
    width: 24px;
    margin: 0 0 0 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    box-sizing: border-box;
    text-align: center;
    background-color: #f2f2f2;
    border: 1px solid #bfbfbf;
    border-radius: 5px;
    border-radius: 5px
}

.nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative
}

.nav ul li {
    display: inline-block
}

.nav a {
    display: block;
    padding: 0 25px;
    height: 100px;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    color: #2d3037;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: stretch;
    align-items: center
}

@media screen and (max-width: 1300px) {
    .nav a {
        padding: 0 14px
    }
}

.nav a:hover {
    background-color: #00aff0;
    color: #ffffff
}

.nav ul ul {
    display: none;
    position: absolute;
    top: 100px
}

.nav ul li:hover > ul {
    display: inherit
}

.nav ul ul li {
    background-color: #2d3037;
    width: 170px;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    color: #2d3037;
    position: relative;
    float: none;
    display: list-item
}

.nav ul ul li a {
    color: #ffffff;
    height: auto;
    padding: 15px 25px;
    justify-content: flex-start;
    align-content: stretch;
    align-items: center
}

.nav ul ul ul li {
    background-color: #34383f;
    position: relative;
    top: -100px;
    left: 170px
}

.nav ul ul ul ul li {
    background-color: #3f434d
}

.nav.nav--vertical {
    width: 100%
}

.nav.nav--vertical ul li {
    background-color: #d9d9d9;
    width: 100%;
    display: block;
    text-align: left;
    border-bottom: 1px solid #b3b3b3
}

.nav.nav--vertical ul li:last-child {
    margin-bottom: 0
}

.nav.nav--vertical ul li a {
    height: auto;
    font-size: 15px;
    color: #000000;
    padding: 17px;
    text-align: left
}

.nav.nav--vertical ul ul {
    position: inherit;
    display: none
}

.nav.nav--vertical ul ul li {
    background-color: #cccccc;
    width: 100%;
    text-align: left;
    display: block;
    position: inherit
}

.nav.nav--vertical ul ul li a {
    text-align: left
}

.nav.nav--vertical ul ul ul li {
    background-color: #bfbfbf
}

.nav.nav--vertical ul ul ul ul li {
    background-color: #b3b3b3
}

.top_banner {
    background: url("img/top-bg.png") top center no-repeat;
    background-size: cover;
    width: 100%;
    height: 499px;
    margin-top: 100px;
    float: left;
    clear: both
}

@media screen and (max-width: 1100px) {
    .top_banner {
        background-position: 75% 0
    }
}

@media screen and (max-width: 800px) {
    .top_banner {
        height: auto;
        margin-top: 53px;
        padding: 53px 0
    }
}

.top__block {
    width: 100%;
    height: 499px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-items: center
}

@media screen and (max-width: 800px) {
    .top__block {
        height: auto
    }
}

.top__heading {
    font-size: 28px;
    font-family: 'Lato', sans-serif;
    font-weight: 800;
    color: #2d3037;
    text-align: center;
    margin-bottom: 20px;
    clear: both
}

@media screen and (max-width: 800px) {
    .top__heading {
        text-shadow: 0 1px 0 #fff
    }
}

@media screen and (max-width: 600px) {
    .top__heading {
        font-size: 5vw
    }
}

.form_inline {
    width: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: stretch;
    align-items: flex-start
}

@media screen and (max-width: 600px) {
    .form_inline {
        width: 100%;
        flex-direction: column;
        flex-wrap: wrap;
        align-content: center;
        align-items: center
    }
}

.btn {
    font-size: 19px;
    color: #000000;
    padding: 13px;
    border: none;
    box-sizing: border-box;
    display: inline-block;
    cursor: pointer
}

.btn--outline {
    border: 1px solid #cdcdcd
}

.btn--outline:hover {
    background-color: #707070;
    color: #ffffff;
    border-color: #707070
}

.btn--small {
    font-size: 12px;
    padding: 5px 13px 4px 13px
}

.btn--bold {
    font-weight: 600
}

.btn--blue {
    background-color: #00aff0;
    color: #ffffff
}

.btn--blue:hover {
    background-color: #ffffff;
    color: #00aff0
}

.btn--icon {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: stretch;
    align-items: center
}

@media screen and (max-width: 600px) {
    .btn--icon {
        width: 100%
    }
}

.input {
    background-color: #ffffff;
    width: 100%;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 800;
    color: #2d3037;
    padding: 12px 18px 13px 18px;
    border: 1px solid #cdcdcd;
    box-sizing: border-box
}

.input:focus {
    border-color: #818181
}

.input--search {
    width: 440px;
    margin-right: 5px
}

@media screen and (max-width: 600px) {
    .input--search {
        width: 100%;
        font-weight: 600;
        margin-right: 0
    }
}

.section {
    width: 100%;
    padding: 20px 0;
    box-sizing: border-box;
    clear: both
}

.section--gray {
    background-color: #ebecec
}

.section--more_pdg {
    padding: 50px 0
}

.heading {
    width: 100%;
    font-size: 30px;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    color: #202020;
    padding: 16px;
    text-align: center;
    box-sizing: border-box;
    margin: 0 0 45px 0;
    clear: both
}

@media screen and (max-width: 600px) {
    .heading {
        font-size: 5.5vw
    }
}

.heading--bold {
    font-weight: 800
}

.heading--blue {
    background-color: #00aff0;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff
}

@media screen and (max-width: 600px) {
    .heading--blue {
        font-size: 4vw
    }
}

.offices_list {
    width: 100%;
    margin: 0 0 70px 0;
    clear: both
}

.offices_list__items {
    width: 100%
}

@media screen and (max-width: 1400px) {
    .offices_list__items {
        width: calc(100% - 100px);
        margin: auto
    }
}

@media screen and (max-width: 640px) {
    .offices_list__items {
        width: calc(100% - 60px)
    }
}

.offices_list__item {
    width: calc(20% - 20px);
    padding: 30px 0 0 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: center;
    margin: 0 13px;
    border: 1px solid #cdcdcd;
    box-sizing: border-box;
    float: left
}

.offices_list__item:hover {
    border-color: #00aff0
}

.offices_list__logo {
    max-width: 100%;
    display: block;
    margin: auto;
    margin-bottom: 25px
}

.offices_list__divider {
    background-color: #cdcdcd;
    width: 60%;
    height: 1px;
    margin: auto;
    clear: both
}

.offices_list__block {
    padding: 25px 25px 30px 25px;
    text-align: center;
    box-sizing: border-box;
    display: block;
    margin-top: -1px
}

.offices_list__description {
    width: 100%;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    color: #2d3037;
    text-align: center;
    line-height: 20px;
    margin-bottom: 50px;
    clear: both
}

.offices_list .offices_list__item:hover .offices_list__description {
    color: #ffffff
}

.offices_list .offices_list__item:hover .offices_list__block {
    background-color: #00aff0
}

.offices_list .offices_list__item:hover .btn {
    color: #ffffff;
    border-color: #57d2ff
}

.latest_article {
    width: 100%;
    margin-bottom: 70px;
    display: table;
    clear: both
}

@media screen and (max-width: 1100px) {
    .latest_article {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-content: center;
        align-items: center
    }
}

.latest_article__side {
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    width: 50%;
    box-sizing: border-box;
    display: table-cell
}

@media screen and (max-width: 1100px) {
    .latest_article__side {
        width: 100%;
        display: block;
        clear: both
    }
}

@media screen and (max-width: 1100px) {
    .latest_article__side--photo {
        height: 200px;
        order: 1
    }
}

@media screen and (max-width: 800px) {
    .latest_article__side--photo {
        height: 140px
    }
}

.latest_article__side--text {
    background-color: #ebecec;
    padding: 45px 60px;
    text-align: right
}

@media screen and (max-width: 1100px) {
    .latest_article__side--text {
        order: 2;
        text-align: center
    }
}

.latest_article__row {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: flex-end;
    margin-bottom: 25px
}

@media screen and (max-width: 1100px) {
    .latest_article__row {
        justify-content: center;
        align-content: center;
        align-items: center
    }
}

.latest_article__row:last-child {
    margin-bottom: 0
}

.latest_article__heading {
    font-size: 18px;
    font-family: 'Lato', sans-serif;
    font-weight: 800;
    color: #2d3037
}

.latest_article__text {
    width: 380px;
    max-width: 100%;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    color: #2d3037;
    line-height: 22px
}

.articles {
    width: 100%;
    margin-bottom: 45px;
    clear: both
}

.articles__items {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-content: stretch;
    align-items: flex-start
}

@media screen and (max-width: 800px) {
    .articles__items {
        width: 70%;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
        align-content: center;
        align-items: center;
        margin: auto
    }
}

@media screen and (max-width: 600px) {
    .articles__items {
        width: 100%
    }
}

.articles__item {
    width: calc(33.333% - 22px)
}

@media screen and (max-width: 800px) {
    .articles__item {
        width: 100%;
        margin-bottom: 20px;
        clear: both
    }

    .articles__item:last-child {
        margin-bottom: 0
    }
}

.articles__photo {
    width: 100%;
    display: block;
    clear: both
}

.articles__block {
    width: 100%;
    color: #2d3037;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: center;
    padding: 32px 17px;
    box-sizing: border-box
}

.articles__header {
    width: 100%;
    min-height: 75px;
    margin-bottom: 50px
}

.articles__heading {
    width: 100%;
    font-size: 18px;
    font-family: 'Lato', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 2px
}

.articles__info {
    width: 100%;
    font-size: 18px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 23px
}

.articles__text {
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    margin-bottom: 25px
}

.articles .articles__item:hover .articles__block {
    background-color: #00aff0;
    color: #ffffff
}

.articles .articles__item:hover .articles__block .btn {
    color: #ffffff;
    border-color: #57d2ff
}

.articles.articles--occasion .articles__block {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 30px;
    margin-top: -130px;
    position: relative;
    z-index: 5
}

.articles.articles--occasion .articles__heading {
    font-size: 24px
}

.services {
    width: 100%;
    margin-bottom: 25px;
    clear: both
}

.services__items {
    width: 100%;
    clear: both
}

@media screen and (max-width: 1400px) {
    .services__items {
        width: calc(100% - 100px);
        margin: auto
    }
}

@media screen and (max-width: 640px) {
    .services__items {
        width: 100%
    }
}

.services__item {
    width: 20%;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: center;
    box-sizing: border-box;
    float: left
}

.services__block {
    display: block;
    padding: 20px;
    box-sizing: border-box
}

.services__block:hover {
    background-color: #00aff0;
    color: #ffffff
}

.services__row {
    width: 100%;
    margin-bottom: 25px;
    clear: both
}

.services__icon {
    width: 95px;
    height: 95px;
    border-radius: 100px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    margin: auto;
    box-sizing: border-box;
    border: 1px solid #505050
}

.services__svg {
    width: 58px;
    height: 58px;
    fill: #505050
}

.services__heading {
    min-height: 40px;
    font-size: 18px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: #2d3037;
    padding: 0 14px;
    box-sizing: border-box
}

.services__text {
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    color: #2d3037
}

.services__divider {
    background-color: #cfd0d0;
    width: calc(100% - 30px);
    height: 1px;
    margin: 18px auto;
    clear: both
}

.services__specialization {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: stretch;
    align-items: flex-start
}

.services__description {
    width: calc(100% - 100px);
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    color: #2d3037;
    line-height: 18px;
    text-align: right;
    margin: 0 18px 0 0
}

.services__arrow {
    width: 23px;
    height: 23px;
    fill: #505050
}

.services .services__block:hover {
    color: #ffffff
}

.services:not(.services--important) .services__block:hover .services__heading, .services:not(.services--important) .services__block:hover .services__text, .services:not(.services--important) .services__block:hover .services__description {
    color: #ffffff
}

.services:not(.services--important) .services__block:hover .services__svg {
    fill: #ffffff
}

.services:not(.services--important) .services__block:hover .services__divider {
    background-color: #3ecbff
}

.services:not(.services--important) .services__block:hover .services__icon {
    fill: #ffffff;
    border-color: #ffffff
}

.services:not(.services--important) .services__block:hover .services__arrow {
    fill: #ffffff
}

.services:not(.services--important) .services__block:hover .btn {
    color: #ffffff;
    border-color: #57d2ff
}

.services.services--important .services__block:hover {
    background-color: transparent
}

.services.services--important .services__specialization {
    width: calc(100% - 30px);
    padding: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    margin: auto;
    box-sizing: border-box
}

.services.services--important .services__description {
    width: calc(100% - 60px)
}

.services.services--important .services__specialization:hover {
    background-color: #00aff0;
    color: #ffffff
}

.services.services--important .services__specialization:hover .services__description {
    color: #ffffff
}

.services.services--important .services__specialization:hover .services__arrow {
    fill: #ffffff
}

.reviews {
    width: 100%;
    clear: both
}

.reviews__items {
    width: 100%;
    clear: both
}

.reviews__item {
    width: calc(33.333% - 30px);
    margin: 0 45px 20px 0;
    padding: 30px 0;
    box-sizing: border-box;
    border-bottom: 1px solid #cdcdcd;
    float: left
}

@media screen and (max-width: 1100px) {
    .reviews__item {
        width: calc(33.333% - 15px);
        margin-right: 22px
    }
}

@media screen and (max-width: 800px) {
    .reviews__item {
        width: 100%;
        margin: 0 0 20px 0;
        float: none;
        display: block;
        clear: both
    }
}

.reviews__item:nth-child(3n+0) {
    margin-right: 0
}

.reviews__header {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    margin-bottom: 25px;
    clear: both
}

.reviews__side {
    width: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-items: center
}

.reviews__side:nth-child(1) {
    margin-bottom: 20px
}

.reviews__person {
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: #313a3c;
    margin: 0 0 15px 0
}

.reviews__logo {
    max-height: 50px;
    display: block
}

.reviews__place {
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: #313a3c;
    margin: 0 0 15px 0;
    clear: both
}

.reviews__text {
    width: 100%;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    color: #2d3037;
    line-height: 19px;
    text-align: justify
}

@media screen and (max-width: 800px) {
    .reviews__text {
        text-align: center
    }
}

.stars_vote {
    width: auto
}

.stars_vote__star {
    width: 20px;
    height: 20px;
    color: #959595;
    display: inline-block
}

.stars_vote__star:last-child {
    margin-right: 0
}

.stars_vote__star--active {
    color: #ff950b
}

.footer {
    background-color: #ebecec;
    width: 100%;
    padding: 20px 0;
    box-sizing: border-box;
    clear: both
}

.footer__block {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: flex-start;
    align-items: flex-end
}

@media screen and (max-width: 800px) {
    .footer__block {
        flex-direction: column;
        justify-content: center;
        align-content: center;
        align-items: center
    }
}

.footer__copyright {
    font-size: 12px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    color: #3f3f3f
}

@media screen and (max-width: 600px) {
    .footer__copyright {
        text-align: center
    }
}

.share_location {
    background-color: #8c8c8c;
    width: 600px;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    color: #ffffff;
    line-height: 20px;
    padding: 25px;
    box-sizing: border-box;
    top: 100px;
    left: 0;
    position: fixed;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: flex-start;
    align-items: center;
    z-index: 9999
}

@media screen and (max-width: 1100px) {
    .share_location {
        display: none
    }
}

.share_location__info {
    width: 400px;
    max-width: 100%
}

.share_location__btn {
    background-color: #2d3037;
    width: 120px;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    padding: 8px 10px;
    text-transform: uppercase;
    cursor: pointer
}

.share_location__btn:hover {
    background-color: #ffffff;
    color: #2d3037
}

.facebook_widget {
    width: auto;
    height: 300px;
    top: 150px;
    right: -350px;
    position: fixed;
    z-index: 2;
    transition: 0.3s right
}

@media screen and (max-width: 800px) {
    .facebook_widget {
        display: none
    }
}

.facebook_widget:hover {
    right: 0
}

.facebook_widget__label {
    background-color: #3B5998;
    width: 50px;
    height: 50px;
    font-size: 22px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    top: 0;
    right: 50px;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-items: center
}

.facebook_widget__block {
    background-color: #ffffff;
    width: 350px;
    min-height: 50px;
    height: auto;
    top: -50px;
    position: relative
}

.instagram_widget {
    width: auto;
    height: 300px;
    top: 201px;
    right: -350px;
    position: fixed;
    z-index: 2;
    transition: 0.3s right
}

@media screen and (max-width: 800px) {
    .instagram_widget {
        display: none
    }
}

.instagram_widget:hover {
    right: 0
}

.instagram_widget__label {
    background-color: #cd486b;
    width: 50px;
    height: 50px;
    font-size: 22px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    top: 0;
    right: 50px;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-items: center
}

.instagram_widget__block {
    background-color: #ffffff;
    width: 350px;
    min-height: 50px;
    height: auto;
    top: -50px;
    position: relative
}

.tables {
    width: 100%;
    clear: both
}

.tables__items {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: stretch;
    align-items: flex-start;
    overflow-x: auto;
    clear: both
}

@media screen and (max-width: 1100px) {
    .tables__items {
        flex-direction: column;
        justify-content: center;
        align-content: center;
        align-items: center
    }
}

.tables__item {
    width: calc(50% - 30px);
    min-height: 300px;
    margin: 0 0 60px 0;
    overflow-x: auto
}

@media screen and (max-width: 1100px) {
    .tables__item {
        width: auto;
        margin: 0 0 40px 0;
        clear: both
    }
}

.table {
    width: 100%;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #2d3037;
    border-collapse: collapse
}

.table tr th {
    padding: 9px;
    border: 1px solid #cdcdcd
}

.table tr td {
    padding: 20px;
    vertical-align: top;
    font-weight: 400;
    border: 1px solid #cdcdcd
}

.table tr td.text_cell:hover {
    background-color: #00aff0;
    color: #ffffff
}

.table__informations {
    width: 150px;
    text-align: center
}

.table__logo {
    max-width: 100%;
    margin: auto
}

.table__divider {
    background-color: #cdcdcd;
    width: calc(100% - 40px);
    height: 1px;
    margin: 20px auto;
    margin-bottom: 20px;
    clear: both
}
