body, html {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    background-color: #fff;
    box-shadow:0 1px 3px 0 rgba(0,0,0,.2);
}

.header {
    position: relative;
    height: 165px;  
    background-image: url('public/hdr_bg.jpg');
    background-repeat: no-repeat;
    background-size:auto 100%;;
    background-position: right  top;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    text-decoration: none;
    color: #272626;
    transition: transform 1.5s; 
}

:after,
:before {
 -webkit-box-sizing:border-box;
 -moz-box-sizing:border-box;
 box-sizing:border-box
}

.logo:hover {
    transform: scale(1.15); 
}

.logo-img {
    background: url('public/logo.png') no-repeat center center;
    background-size: contain;
    width: 120px;  
    height: 125px; 
    margin-right: .3em; 
    margin-left: 3em;
}

.logo-text {
    font: 23px Open Sans bolder;
    vertical-align: middle;
    display: table-cell;
    vertical-align: center;
    width: 600px;
    height: 105px;
    text-transform: uppercase;
    text-decoration: none;
    padding-top: 2em;
    }

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px; 
}

.container h2{
    font-size: 24px; 
    color: #333; 
    margin-top: 0; 
    margin-bottom: 10px; 
    font-weight: bold; 
    text-align: center; 
}

.textstrong {
    margin-top: 15px; 
    margin-bottom: 15px; 
    padding: 10px; 
    background-color: #e1f5fe; 
    border-left: 4px solid #2196f3; 
}

.textstrong strong {
    font-size: 18px; 
    color: #000; 
}

.wrapper{
    
    font: 15px/1.2 Open Sans,Arial,Helvetica,sans-serif;
    background: #f3f3f3;
}
.main-content{
    padding-top: 1em;
    display: flex;
}

.contacts{
    display: flex;
    align-items: center;
    padding: 0 2em;
    flex: 1;
}


.phone-icon {
    width: 32px; 
    height: 32px;
    margin-right: 2em; 
}

.contacts p{
    text-align: justify;
}

.contacts a{
    margin: auto;
    font-size: 25px;
}

.ftr-end{
    text-align: center;
    padding-bottom: 1em;
}

.divider{
    margin: 10px 0 10px;
    border-top-color: #e0e0e0;
    clear: both;
    border: 0;
    border-top: 1px solid #eee;
}

/* Адаптивность */
@media (max-width: 768px) { 
    .logo {
        background: rgba(255, 255, 255, 0.8); 
        padding-left: 2em;
    }
    .logo-text{
        font: 18px Open Sans bolder;
        vertical-align: middle;
        display: table-cell;
        vertical-align: center;
        width: auto;
        height: 105px;
        text-transform: uppercase;
        padding-top: 2em;
    }
    .container{
        padding: 0;
    }
    .header{
        background-position: right -150px top;
    }
    .logo-img {
        background: url('public/logo.png') no-repeat center center;
        background-size: contain;
        margin-right: 0.5em; 
        content: "";
        width: 10em;
        height: 7em;
        margin-left: 0.1em;
    }
    .container h2{
        font-size: 16px; 
    }
    .text-content{
        padding: 10px;
    }
    .text-content h2{
        margin: 10px;
        text-align: justify;
    }
    .main-content{
        display: contents;
    }
}