﻿/*--Страница Услуги--*/
.header-service {
    position: relative;
    width: 100%;
}

.header-service:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.5);
}

.img-service {
    display: block;
    width: 100%;
    min-height: 100px;
    max-height: 400px;
}

.header-title {
    display: block;
    position: absolute;
    margin: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    font-size: 75px;
    color: #ffffff;
}

.content-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.service-title {
    margin: 40px 0;
    font-size: 40px;
}

.service-images {
    
}

.service-img {
    display: inline-block;
    margin: 5px;
    width: 350px;
    height: 350px;
    position: relative;
    transition: 0.3s;
}

/* Media
==================== */
@media (max-width: 1200px) {
    .service-img {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 1024px) {
    .header-title {
        font-size: 60px;
    }
    
    .service-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .header-title {
        font-size: 50px;
    }
}

@media (max-width: 640px) {
    .header-title {
        font-size: 40px;
    }

    .service-title {
        font-size: 25px;
    }
}