@font-face {
    font-family: Bebas;
    src: url("/fonts/Bebas-Regular.ttf"),
         url("/font/Bebas-Regular.otf");
}
body {
    color: #444;
}
.header {
    padding: 10px 0 30px 0;
}
.header .phone-number {
    margin-top: 20px;
}
.header-info-block {
    text-align: right;  
}
.phone-number a {
    font-family: Bebas;
    color: #006cad;
    font-size: 50px;
    line-height: 54px;
    text-decoration: underline;
}
.phone-number a:hover {
	color: rgba(0, 108, 173, 0.7);
}
.working-time {
    color: #006cad; 
    font-weight: bold;
}
.header-info {
    padding: 40px 0;
}
.header-info h1 {
    font-weight: bold;
    padding: 20px 0;
	color: #006cad;
}
.header-info .phone-number {
    background: url("/images/bg-red-label.png") no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    padding: 0 15px;
    max-width: 500px;
    text-align: center;
    color: #fff;
    font-size: 40px;
}
.header-info .phone-number a {
    color: #fff;
    text-decoration: none;
}
.bg-color {
	background: #d3edff8f;
}
.bg-white {
    background-color: #fff;
}
.bg-header {
    background: url("/images/header-bg.png") no-repeat;
    -webkit-background-size: auto 75%;
    background-size: auto 75%;
    position: relative;
    background-position: right 16% bottom 30px;
}
.bg-header:before {
    content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #d3edff8f;
}
.feature,
.services,
.info {
    padding: 50px 20px;
}

.feature {
    text-align: center;
    font-weight: bold;
}
.feature-header {
    font-size: 3em;
    text-transform: uppercase;
}
.feature-info {
    font-size: 1.8em;
    text-transform: uppercase;
}
ul.feature-list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 30px 0 0 0;
    padding: 0;
}
ul.feature-list li {
    display: block;
    width: 150px;
    list-style-type: none;
    background: #fafafa;
    margin: 30px auto;
}
ul.feature-list li div {
    font-size: 0.8em;
    padding-top: 8px;
}

.services {
    text-align: center;
}
.service-header {
    font-size: 2em;
    font-weight: bold;
}
.service-subheader,
.service-subtext {
    font-size: 1.8em;
}

.info-header,
.info-header-text {
    font-size: 1.6em;
    text-align: center;
}

ul.serivce-list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 30px 0 0 0;
    padding: 0;
}
ul.serivce-list li.item {
    display: block;
    width: 220px;
    list-style-type: none;
    margin: 30px auto;
}
ul.serivce-list li.item .item-content {
    padding: 30px 20px;
}
ul.serivce-list li.item .item-img {
    border-radius: 50%;
    overflow: hidden;
    width: 178px;
}

ul.serivce-list li.item .item-img img {
	width: 180px;
    height: 180px;
    object-fit: cover;
}
ul.serivce-list li.item .item-name {
    border-bottom: 3px solid #60acd9;
    background-color: #006cad;
    color: white;
    margin-top: -20px;
    z-index: 10;
    position: relative;
    padding: 10px 5px;
}
.footer {
    text-align: center;
    padding: 50px 0;
}

.footer .working-time {
    padding-top: 10px;
}
.brands {
    margin: 20px 0;
}
.brands-item {
    display: inline-block;
    vertical-align: top;
    padding: 10px;
}
.logo-img {
	width: 180px;
    border-radius: 30px;
	-webkit-filter: drop-shadow(5px 5px 5px #222);
    filter: drop-shadow(5px 5px 5px #222);
}

.social-links{
	display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.footer .social-links {
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
    justify-content: center;
    margin: 20px;
}

.social-item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}
a.social-item:hover {
	text-decoration: none;
}
.social-links .social-icon {
	width: 44px;
}

.social-text {
	font-size: 30px;
    color: #006cad;
    font-family: 'Bebas';
}
.social-text:hover {
	color: rgba(0, 108, 173, 0.7);
}

@media (min-width: 1200px) {
    ul.serivce-list li.item {
        width: 230px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    ul.feature-list li {
        width: 180px;
    }
	.header-phone-block.phone-number a {
		font-size: 42px;
	}
}
@media (max-width: 767px) {
    .header,
    .header-info-block {
        text-align: center;
    }
    .header-info {
        text-shadow: 1px 1px 10px #fff, -1px -1px 10px #fff;
    }
    .header-info .phone-number {
        text-shadow: none;
    }
    .bg-header {
        -webkit-background-size: auto 60%;
        background-size: auto 60%;
        background-position: center bottom 30px;
    }
	
	.social-links {
	    align-items: center;
		gap: 15px;
		margin-top: 20px;
	}
	
	.footer .social-links {
    	flex-direction: column;
	    align-items: center;
	}
}