@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i&subset=cyrillic');
:root {
	font-size: 16px;
}
body {
	font-size: 1rem;
	font-weight: 400;
	font-family: 'Open Sans', sans-serif;
	color: #333333;
}
a {
	color: #333333;
}
a:hover {
	color: #0fa8ae;
}
img {
	max-width: 100%;
	height: auto;
}
::selection {
    background: #0fa8ae;
    color: #333333;
}

/*HEADER*/
.header {
    margin-top: 1.875rem;
}
.header a {
	color: #333333;
	text-decoration: none;
}
.header_logo img {
    max-height: 65px;
    width: auto;
}
.header_contacts {
  display: flex;
  justify-content: flex-end;
  text-align: right;
  flex-direction: column;
  align-items: flex-end;
}

.phone_link span {
    font-size: 1.3rem;
    font-weight: 700;
}

.header_adress, .footer_adress {
    display: flex;
    align-items: center;
}
.header_adress::before, .footer_adress::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f3c5";
    text-align: center;
    margin-right: .5rem;
    font-size: 1.33rem;
    color: #0fa8ae;
}

.header_phone, .footer_phone {
    display: flex;
    align-items: center;
}
.header_phone::before, .footer_phone::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f095";
    text-align: center;
    margin-right: .5rem;
    font-size: 1.33rem;
    color: #0fa8ae;
    transform: rotateY(180deg);
}




/*CONTENT*/
.content {
    background: url(img/bg.jpg), linear-gradient(to left, #d2dde3, #eaeff2);
    background-position: 50% 50%;
    background-size: cover;
    color: #333333;
    height: auto;
    display: flex;
}
.content_offer span {
	font-weight: 400;
}
.content_txt {
	min-height: calc(100vh - 15rem);
    height: auto;
    margin-top: 4rem;
    margin-bottom: 4rem;
    align-items: center;
}
ul {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0 3rem 0;
}
ul li {
    margin-bottom: .5rem;
    padding-left: 2.5rem;
    background-image: url(/img/check.png);
    background-size: 1rem;
    background-repeat: no-repeat;
    background-position: 0 .3rem;
}
.box {
	padding: 2.5rem;
	background-color: #ffffff;
	box-shadow: 8px 13px 25px rgba(0, 0, 0, 0.2);
	border-radius: 0.4375rem;
}
.checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
  margin: 0;
  width: 1.5rem;
  height: 1.5rem;
}
.checkbox + label {
  position: relative;
  padding-left: 2.25rem;
  cursor: pointer;
}
.checkbox + label:before {
  content: '';
  position: absolute;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.125rem;
  border: 0.25rem solid #e6e9ed;
  background-color: #e6e9ed;
  transition: .2s;
}
.checkbox:hover + label:before {
  background-color: #999999;
}
.checkbox:checked + label:before {
  background-color: #0fa8ae;
}
.form-check {
	margin-bottom: 0.625rem;
	padding-left: 0;
}
.form-check:last-child {
	margin-bottom: 0;
}
@keyframes sheen {
  0% {
    transform: skewY(-45deg) translateX(0);
  }
  100% {
    transform: skewY(-45deg) translateX(900%);
  }
}
.pulse {
    position: relative;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    -webkit-transition: ease 0.3s;
    transition: ease 0.3s;
}

.pulse:after {
    content: "";
    display: block;
    width: 30px;
    height: 300px;
    margin-left: 60px;
    background: #fff;
    position: absolute;
    left: 0%;
    top: -150%;
    z-index: 1;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
    -webkit-animation-name: slideme;
    animation-name: slideme;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-delay: 0.05s;
    animation-delay: 0.05s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    opacity: .75;
}
@-webkit-keyframes slideme { 
  0% { left: -100px; margin-left: 0px; }
  30% { left: 110%; margin-left: 80px; }
  100% { left: 110%; margin-left: 80px; } 
}


.pulseform {
  animation: radial-pulse 1s infinite;
  -webkit-animation: radial-pulse 1s infinite;
  -moz-animation: radial-pulse 1s infinite;
}

@keyframes radial-pulse {
0% {
    box-shadow: 0 0 0 0px rgba(15, 168, 174, 0.5);
    -webkit-box-shadow: 0 0 0 0px rgba(15, 168, 174, 0.5);
    -moz-box-shadow: 0 0 0 0px rgba(15, 168, 174, 0.5);
}
100% {
    box-shadow: 0 0 0 10px rgba(0,0,0,0);
    -webkit-box-shadow: 0 0 0 10px rgba(0,0,0,0);
    -moz-box-shadow: 0 0 0 10px rgba(0,0,0,0);
}
}

.form_cta {
    border-left: 4px solid #0fa8ae;
    padding-left: 0.625rem;
    margin-bottom: 1.5625rem;
}
.form_cta h5 {
    font-size: 1.25rem;
    margin-bottom: 0;
}
.form_cta p {
	margin-bottom: 0;
}
.what_is {
    padding: 4.375rem 0;
    background: #ffffff;
    background: linear-gradient(to bottom, #fff, #e6e9ed);
}
.doctor {
    padding: 4.375rem 0;
}
.doctor .slick-slide {
    height: 190px;
    overflow-y: hidden;
    position: relative;
    margin-left: 15px;
    margin-right: 15px;
    border: 2px solid #0fa8ae;
    padding: 0;
    border-radius: 0.4375rem;
    transition: .25s;
}
.doctor .slick-slide:hover {
    box-shadow: 0 5px 25px #999;
    transition: .25s;
}
.doctor .slick-slide img {
    top: 0;
    position: absolute;
    width: 100%;
}
.contact_section {
    padding: 4.375rem 0;
    background: #0fa8ae;
    color: #fff;
}
.contact_section a {
    color: #fff;
}

.gallery-slider .slick-slide img:hover {
    transition: .25s;
    transform: scale(1.1);
}

.gallery-slider .slick-slide img {
    transition: .25s;
    transform: scale(1);
}







/*FOOTER*/
.footer {
    padding: 2.5rem 0 5rem 0;
    background-color: #e6e9ed;
}
.footer_contacts {
    display: flex;
  justify-content: flex-end;
  text-align: right;
  flex-direction: column;
  align-items: flex-end;
}
.footer_logo img {
  max-height: 65px;
  width: auto;
}
.footer_phone {
    margin-bottom: .5rem;
}


span.multi-title {
    font-weight: 700;
}



@media (max-width: 992px) {
	
}

@media (max-width: 768px) {
	.header_logo {
        text-align: center;
    }
    .header_contacts {
        justify-content: center;
        flex-wrap: wrap;
    }
    .footer_logo {
        order: 1;
    }
    .footer_rekv {
        order: 3;
    }
    .footer_contacts {
        order: 2;
        margin: 1rem 0;
        text-align: center;
    }
    .footer {
        text-align: center;
    }
    .what_is__image {
        display: none;
    }
    .doctor_image {
        margin-top: 1rem;
    }
    .header_contacts, .footer_contacts {
      align-items: center;
      margin-top: .5rem;
    }
}

@media (max-width: 576px) {
	:root {
		font-size: 14px;
	}
    .doctor .slick-slide {
        height: 250px;
    }
	h1 {
    font-size: 1.8rem;
  }
}