main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
	background: #343434;
}

main h4 {
    font-size: 26px;
    margin: 36px 0;
    color: white;
    text-align: center;
    font-weight: normal;
}


/* About us --------- */

.about-us.container {
    padding: 0;
    margin: 0 auto 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
	color: white;
}

.about-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.about-text {
    padding: 25px;
    max-width: 460px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.about-text p {
    margin: 0 0 10px;
    font-size: 13px;
}

.about-text a.btn-about {
    margin: 10px 0 0;
    padding: 10px 15px;
    background: #FFFFFF;
    border: 1px solid#C4C4C4;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #272727;
    font-weight: bold;
    font-size: 13px;
    -ms-flex-item-align: baseline;
    align-self: baseline;
}

.about-img {
    width: 100%;
    background-size: cover;
    background-position: center;
    padding: 19% 0;
    position: relative;
}

.about-img .video-play {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.about-img .video-play::before {
    content: '';
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: url(./../img/play.png);
    width: 60px;
    height: 45px;
    background-size: contain;
    background-repeat: no-repeat;
}

.about-img iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


/* Our advantages container --------- */

.our-advantages.container {
    padding: 0 20px 30px;
}

.our-advantages-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.our-advantages-block {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #FFFFFF;
    max-width: 250px;
    margin: 0 15px;
    padding: 20px;
    text-align: center;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    -webkit-box-shadow: 5px 0px 25px rgb(0 0 0 / 0.1);
    box-shadow: 5px 0px 25px rgb(0 0 0 / 0.1);
}

.our-advantages-block img {
    max-height: 75px;
    width: auto;
    height: 100%;
}

.our-advantages-block h6 {
    font-weight: bold;
    font-size: 13px;
    margin: 10px 0 20px;
}

.our-advantages-block p {
    font-size: 11px;
    margin: 0;
}


/* Our products container --------- */

.our-products {
    background: #343434;
}

.our-products h4 {
    color: #ffffff;
    margin: 30px 0 20px;
}

.our-products .container {
    padding: 0 0 40px;
}

.our-products-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.our-products-wrapper a {
    width: calc(25% - 20px);
    margin: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}

.our-products-wrapper .img {
    padding: 37% 0;
    background-position: center;
    background-size: cover;
}

.our-products-wrapper p {
    margin: 0;
    padding: 5px 10px;
    background: #EAEBEF;
    text-transform: uppercase;
    font-size: 15px;
    text-align: center;
}

.about-hover-block {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(27.08%, #252525), to(rgba(116, 116, 116, 0.65)));
    background: -o-linear-gradient(bottom, #252525 27.08%, rgba(116, 116, 116, 0.65) 100%);
    background: linear-gradient(0deg, #252525 27.08%, rgba(116, 116, 116, 0.65) 100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.about-hover-block .title {
    background: none;
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 18px;
}

.about-hover-block .btn {
    background: none;
    border: 1px solid #ffffff;
    padding: 8px 25px;
    font-size: 12px;
}

@media (min-width: 560px) {
    .our-products-wrapper a:hover .about-hover-block {
        opacity: 1;
        transition: .3s;
        -webkit-transition: .3s;
        -moz-transition: .3s;
        -ms-transition: .3s;
        -o-transition: .3s;
    }
}


/* Map container --------- */

main .contacts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    margin: 20px auto 40px;
}

.map-container {
    padding: 20px 40px 40px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-shadow: 5px -5px 25px rgb(0 0 0 / 0.1);
    box-shadow: 5px -5px 25px rgb(0 0 0 / 0.1);
	background: white;
}

.popular-list>h5 {
    display: none;
}

.popular-list {
    padding-bottom: 30px;
}

@media (max-width: 1300px) {
    .about-us.container,
    .our-advantages.container,
    .our-products.container,
    main .contacts {
        max-width: none;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 1180px) {
    .our-products-wrapper {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .our-products-wrapper a {
        margin: 10px;
        width: calc(33.33% - 20px);
    }
    .map-container {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 20px;
    }
}

@media (max-width: 970px) {
    .about-wrapper {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .about-text {
        max-width: none;
        padding: 0 0 20px;
    }
    .about-img {
        padding: 28% 0;
    }
}

@media (max-width: 780px) {
    .our-advantages-wrapper {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .our-advantages-block {
        margin: 15px;
    }
    .about-us.container {
        margin: 0 auto 30px;
    }
    .our-advantages.container,
    .our-products.container {
        padding-bottom: 30px;
    }
    main h4 {
        font-size: 18px;
        margin: 20px 0 15px;
    }
}

@media (max-width: 540px) {
    .our-products-wrapper a {
        margin: 10px;
        width: calc(50% - 20px);
    }
    .our-products-wrapper p {
        font-size: 12px;
    }
    .our-products .container {
        padding: 0 10px 20px;
    }
    .our-products h4 {
        margin: 20px 0 10px;
    }
}