/***************reset***************/
html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
/*
sub,
sup,
*/
tt,
var,
b,
u,
/* i, */
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section,
summary {
    display: block;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
}

b,
strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

small {
    font-size: 80%;
}

mark {
    background: #ffff00;
    color: #000000;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}

form {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

label {
    display: block;
}

label[for] {
    cursor: pointer;
}

button {
    outline: none;
    box-sizing: border-box;
    border: 0;
    padding: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: normal;
    color: inherit;
    background-color: transparent;
    cursor: pointer;
}

select {
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: inherit;
    font-size: inherit;
    line-height: normal;
    color: inherit;
    text-overflow: ellipsis;
}

input {
    outline: none;
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: inherit;
    font-size: inherit;
    line-height: normal;
    text-overflow: ellipsis;
    color: inherit;
}

textarea {
    overflow: auto;
    resize: none;
    outline: none;
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: inherit;
    font-size: inherit;
    line-height: normal;
    color: inherit;
}

hr {
    border: none;
}

img {
    border: 0;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

/*==========GENERAL STYLES==========*/
html {
    min-height: 100%;
}

body {
    overflow-x: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 100vh;
    font-size: 16px;
    line-height: 1.5;
    font-family: 'Roboto', sans-serif;
    color: #2d2d2d;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

/*=HEADER=*/
.header {
    padding-top: 25px;
}

.header-top-container {
    position: relative;
}

.header-logo {
    position: absolute;
    left: 15px;
    top: 0;
}

.header-logo-img {
    display: block;
    width: 179px;
}

.header-contacts {
    padding: 0 0 25px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid rgba(1, 108, 184, 0.34);
    margin-left: 255px;
}

/*=MENU=*/
.header-menu-btn {
    display: none;
}

.header-menu-wrapper.fixed {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 105;
    background-color: #ffffff;
    -webkit-box-shadow: 0 7px 16px 0 rgba(11, 60, 73, 0.19);
    -moz-box-shadow: 0 7px 16px 0 rgba(11, 60, 73, 0.19);
    box-shadow: 0 7px 16px 0 rgba(11, 60, 73, 0.19);
}

.header-menu-wrapper.fixed .header-menu {
    margin-left: 0;
}

.header-menu-wrapper.fixed .header-menu-item-with-submenu .header-menu-link::after {
    top: 22px;
}

.header-menu-wrapper.fixed .header-menu-item-logo {
    display: block;
}

.header-menu-wrapper.fixed .header-menu-link {
    padding-top: 20px;
    padding-bottom: 20px;
}

.header-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-left: 255px;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.header-menu-request-btn {
    display: none !important;
}

.header-menu-item {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.header-menu-item-with-submenu {
    position: relative;
}

.header-menu-item-with-submenu .header-menu-link {
    position: relative;
    padding-right: 22px;
}

.header-menu-item-with-submenu .header-menu-link::after {
    content: '';
    position: absolute;
    right: 0;
    top: 27px;
    width: 13px;
    height: 12px;
    background-repeat: no-repeat;
    background-image: url("../img/sprite.png");
    background-position: -21px -32px;
}

.header-menu-item-logo {
    display: none;
    padding: 3.5px 0;
}

.header-menu-item-logo img {
    display: block;
    height: 50px;
}

.header-menu-item.active .header-menu-link,
.header-menu-item:hover .header-menu-link {
    color: #008635;
}

.header-menu-item.active .header-menu-link::after,
.header-menu-item:hover .header-menu-link::after {
    background-position: -37px -32px;
}

.header-menu-link {
    position: relative;
    display: block;
    padding: 25px 0;
    font-weight: 700;
    font-size: 17px;
    line-height: 1;
    text-transform: uppercase;
    color: #006ab7;
    cursor: pointer;
}

.header-menu-link:hover,
.header-menu-link:active,
.header-menu-link:focus,
.header-menu-link.active {
    color: #008635;
}

.header-submenu {
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 105;
    overflow: hidden;
    display: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    min-width: 120%;
    background-color: #66cde8;
}

.header-submenu-link {
    display: block;
    padding: 8px 20px;
    font-size: 18px;
    white-space: nowrap;
    color: #505050;
}

.header-submenu-link:hover,
.header-submenu-link:active,
.header-submenu-link:focus {
    color: #ffffff;
    background-color: #006cb7;
}

.header-inner .header-menu-wrapper {
    border-bottom: 1px solid rgba(1, 108, 184, 0.34);
}

/*=TEXT=*/
strong {
    font-weight: bold;
}

/*titles*/
h1 {
    margin-bottom: 45px;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.25;
    text-transform: uppercase;
    text-align: center;
}

h2 {
    margin-bottom: 20px;
    font-size: 30px;
    line-height: 1.25;
    text-transform: uppercase;
}

h3 {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.25;
}

.section-title {
    margin-bottom: 45px;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.25;
    text-transform: uppercase;
    text-align: center;
}

.section-title_page_contact {
    margin-bottom: 25px !important;
}


/*=CONTENT=*/
.page-wrapper {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.section {
    padding: 50px 0;
}

.section_pagecontact {
    padding: 25px 0 !important;
}



.text-section p,
.text-section ul,
.text-section ol {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.text-section p:last-child,
.text-section ul:last-child,
.text-section ol:last-child {
    margin-bottom: 0;
}

.text-section *+h2 {
    margin-top: 30px;
}

.text-section *+h3 {
    margin-top: 20px;
}

.text-section *+h4 {
    margin-top: 20px;
}

.text-section li+li {
    margin-top: 15px;
}

.text-section ul li {
    position: relative;
    padding-left: 40px;
}

.text-section ul li::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 5px;
    width: 18px;
    height: 16px;
    background-image: url("../img/sprite.png");
    background-repeat: no-repeat;
    background-position: 0 -27px;
}

.text-section ol {
    counter-reset: li;
}

.text-section ol li {
    position: relative;
    padding-left: 40px;
}

.text-section ol li:before {
    content: counter(li);
    counter-increment: li;
    position: absolute;
    left: 5px;
    top: 2px;
    display: block;
    font-weight: bold;
    font-size: 20px;
    line-height: 1;
    color: #006ab7;
    background-image: -webkit-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background-size: cover;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.text-section img {
    display: block;
    margin-bottom: 40px;
    max-width: 100%;
    height: auto !important;
}

.text-section img:last-child {
    margin-bottom: 0;
}

.text-section p+img,
.text-section ul+img,
.text-section ol+img,
.text-section img+img,
.text-section iframe+img,
.text-section video+img,
.text-section .video-wrapper+img,
.text-section p+iframe,
.text-section ul+iframe,
.text-section ol+iframe,
.text-section iframe+iframe,
.text-section video+iframe,
.text-section img+iframe,
.text-section .video-wrapper+iframe,
.text-section p+video,
.text-section ul+video,
.text-section ol+video,
.text-section iframe+video,
.text-section img+video,
.text-section .video-wrapper+video,
.text-section video+video,
.text-section p+.video-wrapper,
.text-section ul+.video-wrapper,
.text-section ol+.video-wrapper,
.text-section img+.video-wrapepr,
.text-section video+.video-wrapper,
.text-section iframe+.video-wrapper,
.text-section .video-wrapper+.video-wrapper {
    margin-top: 40px;
}

.text-section .img-left {
    float: left;
    margin-right: 20px;
    margin-bottom: 10px;
}

.text-section .img-right {
    float: right;
    margin-left: 20px;
    margin-bottom: 10px;
}

.text-section .img-center {
    margin-left: auto;
    margin-right: auto;
}

.text-section a {
    text-decoration: underline;
}

.text-section a:hover,
.text-section a:active,
.text-section a:focus {
    text-decoration: none;
    color: #006ab7;
}

.text-section iframe {
    margin-bottom: 40px;
}

.text-section iframe:last-child {
    margin-bottom: 0;
}

.text-section table {
    margin-top: 40px;
    margin-bottom: 40px;
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

.text-section table:last-child {
    margin-bottom: 0;
}

.text-section table th,
.text-section table td {
    vertical-align: top;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid rgba(1, 108, 184, 0.34);
    padding: 10px 15px;
    text-align: left;
}

.text-section table th.text-center,
.text-section table td.text-center {
    text-align: center;
}

.text-section table th img,
.text-section table td img {
    display: block;
    max-width: 100%;
}

.text-section table th {
    border-bottom: none;
    font-weight: bold;
    font-size: 16px;
    color: #006ab7;
}

.text-section table thead tr:last-child th {
    border-bottom: none;
}

.text-section .table-wrapper {
    margin-top: 40px;
    margin-bottom: 40px;
}

.text-section .table-wrapper:last-child {
    margin-bottom: 0;
}

.text-section .table-wrapper table {
    margin-top: 0;
    margin-bottom: 0;
    min-width: 400px;
}

.table-wrapper {
    overflow: auto;
}

.table-wrapper table {
    min-width: 460px;
}

/*Slider*/
.swiper-wrapper {
    -webkit-filter: blur(0);
    filter: blur(0);
    perspective: 1200px;
}

.swiper-slide {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    min-height: 100%;
    height: auto;
}

.swiper-button {
    position: absolute;
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 0;
    background-image: none;
    cursor: pointer;
    pointer-events: all;
}

.swiper-button::after {
    display: none;
}

.swiper-button:hover,
.swiper-button:active,
.swiper-button:focus {
    outline: none;
}

.default-slider-wrapper {
    position: relative;
    margin: 0 -15px;
}

.default-slider-wrapper .swiper-slide {
    padding: 0 15px 20px;
}

.default-slider-wrapper .swiper-button {
    position: absolute;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    width: 68px;
    height: 68px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 7px 16px 0 rgba(11, 60, 73, 0.19);
    -moz-box-shadow: 0 7px 16px 0 rgba(11, 60, 73, 0.19);
    box-shadow: 0 7px 16px 0 rgba(11, 60, 73, 0.19);
}

.default-slider-wrapper .swiper-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -23.5px;
    margin-top: -9px;
    width: 47px;
    height: 18px;
    background-image: url("../img/sprite.png");
    background-repeat: no-repeat;
}

.default-slider-wrapper .swiper-button:hover,
.default-slider-wrapper .swiper-button:active {
    background: -moz-linear-gradient(0deg, #008635 0%, #3bfd8d 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #008635), color-stop(100%, #3bfd8d));
    background: -webkit-linear-gradient(0deg, #008635 0%, #3bfd8d 100%);
    background: -o-linear-gradient(0deg, #008635 0%, #3bfd8d 100%);
    background: -ms-linear-gradient(0deg, #008635 0%, #3bfd8d 100%);
    background: linear-gradient(90deg, #008635 0%, #3bfd8d 100%);
}

.default-slider-wrapper .swiper-button-next {
    right: -30px;
}

.default-slider-wrapper .swiper-button-next::before {
    background-position: -50px -68px;
}

.default-slider-wrapper .swiper-button-next:hover::before,
.default-slider-wrapper .swiper-button-next:active::before {
    background-position: -50px -47px;
}

.default-slider-wrapper .swiper-button-prev {
    left: -30px;
}

.default-slider-wrapper .swiper-button-prev::before {
    background-position: 0 -68px;
}

.default-slider-wrapper .swiper-button-prev:hover::before,
.default-slider-wrapper .swiper-button-prev:active::before {
    background-position: 0 -47px;
}

/*Gallery*/
.fancybox-bg {
    background-color: #eaf5fe;
}

.fancybox-is-open .fancybox-bg {
    opacity: 0.9;
}

.fancybox-toolbar {
    opacity: 1;
}

.fancybox-show-nav .fancybox-arrow {
    opacity: 1;
}

.fancybox-arrow {
    margin: -34px 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    width: 68px;
    height: 68px;
    background-color: #ffffff;
    background-image: none;
    -webkit-box-shadow: 0 7px 16px 0 rgba(11, 60, 73, 0.19);
    -moz-box-shadow: 0 7px 16px 0 rgba(11, 60, 73, 0.19);
    box-shadow: 0 7px 16px 0 rgba(11, 60, 73, 0.19);
    opacity: 1;
}

.fancybox-arrow:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -23.5px;
    margin-top: -9px;
    width: 47px;
    height: 18px;
    background-color: transparent;
    background-image: url("../img/sprite.png");
    background-position: -50px -68px;
    background-repeat: no-repeat;
    background-size: auto auto;
}

.fancybox-arrow:hover,
.fancybox-arrow:active {
    outline: none;
    background: -moz-linear-gradient(0deg, #008635 0%, #3bfd8d 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #008635), color-stop(100%, #3bfd8d));
    background: -webkit-linear-gradient(0deg, #008635 0%, #3bfd8d 100%);
    background: -o-linear-gradient(0deg, #008635 0%, #3bfd8d 100%);
    background: -ms-linear-gradient(0deg, #008635 0%, #3bfd8d 100%);
    background: linear-gradient(90deg, #008635 0%, #3bfd8d 100%);
}

.fancybox-arrow:hover::after,
.fancybox-arrow:active::after {
    background-position: -50px -47px;
}

.fancybox-arrow--left {
    left: 5px;
}

.fancybox-arrow--right {
    right: 5px;
}

.fancybox-toolbar {
    top: 5px;
    right: 5px;
}

.fancybox-button {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: -moz-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #006ab7), color-stop(100%, #6bd3eb));
    background: -webkit-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: -o-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: -ms-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: linear-gradient(90deg, #006ab7 0%, #6bd3eb 100%);
}

.fancybox-button::after,
.fancybox-button::before {
    color: #ffffff;
    opacity: 1;
}

.fancybox-button:hover:not([disabled]) {
    background: -moz-linear-gradient(0deg, #008635 0%, #3bfd8d 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #008635), color-stop(100%, #3bfd8d));
    background: -webkit-linear-gradient(0deg, #008635 0%, #3bfd8d 100%);
    background: -o-linear-gradient(0deg, #008635 0%, #3bfd8d 100%);
    background: -ms-linear-gradient(0deg, #008635 0%, #3bfd8d 100%);
    background: linear-gradient(90deg, #008635 0%, #3bfd8d 100%);
}

.fancybox-caption-wrap {
    visibility: visible;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 30px;
    background: #ffffff;
    pointer-events: none;
    opacity: 1;
}

.fancybox-caption {
    margin: 0 auto;
    border-top: none;
    padding: 30px 0;
    max-width: 800px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    color: #2d2d2d;
    line-height: 1.4;
    -webkit-text-size-adjust: none;
}

/*Video*/
iframe,
video {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

/*=LINKS&FORMS=*/
a,
button {
    color: currentColor;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

a:focus,
button:focus,
a:active,
button:active,
a:hover,
button:hover {
    outline: none;
}

a {
    text-decoration: none;
}

a:hover,
a:active,
a:focus {
    text-decoration: none;
}

.btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    border-radius: 24px;
    padding-top: 2px;
    width: 253px;
    height: 47px;
    font-weight: 400;
    font-size: 15px;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.btn-big {
    width: 100%;
    max-width: 298px;
}

.btn-blue {
    background: -moz-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #006ab7), color-stop(100%, #6bd3eb));
    background: -webkit-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: -o-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: -ms-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: linear-gradient(90deg, #006ab7 0%, #6bd3eb 100%);
    -webkit-box-shadow: 0 7px 16px 0 rgba(11, 60, 73, 0.19);
    -moz-box-shadow: 0 7px 16px 0 rgba(11, 60, 73, 0.19);
    box-shadow: 0 7px 16px 0 rgba(11, 60, 73, 0.19);
}

.btn-blue-light {
    background: -moz-linear-gradient(0deg, #2294b1 0%, #6bd3eb 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #2294b1), color-stop(100%, #6bd3eb));
    background: -webkit-linear-gradient(0deg, #2294b1 0%, #6bd3eb 100%);
    background: -o-linear-gradient(0deg, #2294b1 0%, #6bd3eb 100%);
    background: -ms-linear-gradient(0deg, #2294b1 0%, #6bd3eb 100%);
    background: linear-gradient(90deg, #2294b1 0%, #6bd3eb 100%);
}

.btn-blue:hover,
.btn-blue:active,
.btn-blue:focus {
    background: -moz-linear-gradient(0deg, #008635 0%, #3bfd8d 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #008635), color-stop(100%, #3bfd8d));
    background: -webkit-linear-gradient(0deg, #008635 0%, #3bfd8d 100%);
    background: -o-linear-gradient(0deg, #008635 0%, #3bfd8d 100%);
    background: -ms-linear-gradient(0deg, #008635 0%, #3bfd8d 100%);
    background: linear-gradient(90deg, #008635 0%, #3bfd8d 100%);
}

.btn-blue-border {
    padding: 1px;
    background: -moz-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #006ab7), color-stop(100%, #6bd3eb));
    background: -webkit-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: -o-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: -ms-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: linear-gradient(90deg, #006ab7 0%, #6bd3eb 100%);
}

.btn-blue-border span {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    border-radius: 24px;
    width: 100%;
    height: 100%;
    color: #006ab7;
    background-color: #ffffff;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.btn-blue-border:hover span,
.btn-blue-border:active span {
    color: #ffffff;
    background: -moz-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #006ab7), color-stop(100%, #6bd3eb));
    background: -webkit-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: -o-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: -ms-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: linear-gradient(90deg, #006ab7 0%, #6bd3eb 100%);
}

.btn-green {
    background: -moz-linear-gradient(0deg, #008635 0%, #3bfd8d 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #008635), color-stop(100%, #3bfd8d));
    background: -webkit-linear-gradient(0deg, #008635 0%, #3bfd8d 100%);
    background: -o-linear-gradient(0deg, #008635 0%, #3bfd8d 100%);
    background: -ms-linear-gradient(0deg, #008635 0%, #3bfd8d 100%);
    background: linear-gradient(90deg, #008635 0%, #3bfd8d 100%);
    -webkit-box-shadow: 0 7px 16px 0 rgba(11, 60, 73, 0.19);
    -moz-box-shadow: 0 7px 16px 0 rgba(11, 60, 73, 0.19);
    box-shadow: 0 7px 16px 0 rgba(11, 60, 73, 0.19);
}

.btn-green:hover,
.btn-green:active,
.btn-green:focus {
    background: -moz-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #006ab7), color-stop(100%, #6bd3eb));
    background: -webkit-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: -o-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: -ms-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: linear-gradient(90deg, #006ab7 0%, #6bd3eb 100%);
}

.btn-center {
    margin: 0 auto;
}

.btn-section {
    margin-top: 50px;
    width: 100%;
    max-width: 323px;
}

.btn-section-slider {
    margin-top: 30px;
    width: 100%;
    max-width: 323px;
}

.btn-block {
    width: 100%;
}

.soc-net {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    height: 21px;
}

.soc-net .contacts-item-email {
    margin-right: 15px;
}

.soc-net .contacts-item-instagram a {
    display: flex;
    align-items: center;
}

/*Contacts-item*/
.contacts-item {
    position: relative;
    padding-left: 30px;
}

.contacts-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    background-repeat: no-repeat;
    background-image: url("../img/sprite.png");
}

.contacts-item-email::before {
    top: 0;
    width: 21px;
    height: 21px;
    background-position: 0 0;
}

.contacts-item-address::before {
    width: 20px;
    height: 29px;
    background-position: -24px 0;
}

.contacts-item a {
    display: inline-block;
}

.contacts-item a:hover,
.contacts-item a:active,
.contacts-item a:focus {
    text-decoration: underline;
}



/*new 26.05.20*/
.contacts-item-tel::before {
    top: 0;
    width: 21px;
    height: 21px;
    background-position: -111px 0;
}

/*end new 26.05.20*/
/***breadcrumbs***/
.breadcrumbs {
    padding-top: 20px;
}

.breadcrumbs li {
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    line-height: 1.1;
    color: #2d2d2d;
}

.breadcrumbs li a {
    position: relative;
    display: inline-block;
    padding-right: 13px;
    color: #000000;
}

.breadcrumbs li a::after {
    content: '>';
    position: absolute;
    right: 0;
    bottom: 1px;
    color: #000000;
}

.breadcrumbs li a:focus,
.breadcrumbs li a:hover,
.breadcrumbs li a:active {
    color: #006ab7;
    text-decoration: underline;
}

/***pagination***/
.pagination {
    padding-top: 30px;
    text-align: center;
}

.pagination-pt-sm {
    padding-top: 15px;
}

.pagination-pt-none {
    margin-top: 0;
}

.pagination .page {
    display: inline-block;
    vertical-align: middle;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: 10px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    padding: 1px;
    width: 38px;
    height: 38px;
    font-size: 14px;
    line-height: 38px;
    text-align: center;
    color: #006ab7;
    background: -moz-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #006ab7), color-stop(100%, #6bd3eb));
    background: -webkit-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: -o-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: -ms-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: linear-gradient(90deg, #006ab7 0%, #6bd3eb 100%);
}

.pagination .page span {
    display: block;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
}

.pagination .page-prev {
    display: inline-block;
    vertical-align: middle;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 19px;
    -moz-border-radius: 19px;
    border-radius: 19px;
    padding: 1px;
    width: 88px;
    height: 38px;
    font-size: 14px;
    line-height: 38px;
    color: #b4b4b4;
    background: -moz-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #006ab7), color-stop(100%, #6bd3eb));
    background: -webkit-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: -o-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: -ms-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: linear-gradient(90deg, #006ab7 0%, #6bd3eb 100%);
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
}

.pagination .page-prev span {
    display: block;
    -webkit-border-radius: 19px;
    -moz-border-radius: 19px;
    border-radius: 19px;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
}

.pagination .page-prev:hover,
.pagination .page-prev:active,
.pagination .page-prev:focus {
    color: #ffffff;
}

.pagination .page-prev:hover span,
.pagination .page-prev:active span,
.pagination .page-prev:focus span {
    background: -moz-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #006ab7), color-stop(100%, #6bd3eb));
    background: -webkit-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: -o-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: -ms-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: linear-gradient(90deg, #006ab7 0%, #6bd3eb 100%);
}

.pagination .page-next {
    display: inline-block;
    vertical-align: middle;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: 10px;
    -webkit-border-radius: 19px;
    -moz-border-radius: 19px;
    border-radius: 19px;
    padding: 1px;
    width: 88px;
    height: 38px;
    font-size: 14px;
    line-height: 38px;
    color: #006ab7;
    background: -moz-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #006ab7), color-stop(100%, #6bd3eb));
    background: -webkit-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: -o-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: -ms-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: linear-gradient(90deg, #006ab7 0%, #6bd3eb 100%);
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
}

.pagination .page-next span {
    display: block;
    -webkit-border-radius: 19px;
    -moz-border-radius: 19px;
    border-radius: 19px;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
}

.pagination .page-next:hover,
.pagination .page-next:active,
.pagination .page-next:focus {
    color: #ffffff;
}

.pagination .page-next:hover span,
.pagination .page-next:active span,
.pagination .page-next:focus span {
    background: -moz-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #006ab7), color-stop(100%, #6bd3eb));
    background: -webkit-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: -o-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: -ms-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: linear-gradient(90deg, #006ab7 0%, #6bd3eb 100%);
}

a.page.active,
a.page:hover,
a.page:active,
a.page:focus {
    color: #ffffff;
}

a.page.active span,
a.page:hover span,
a.page:active span,
a.page:focus span {
    background: -moz-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #006ab7), color-stop(100%, #6bd3eb));
    background: -webkit-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: -o-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: -ms-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: linear-gradient(90deg, #006ab7 0%, #6bd3eb 100%);
}

/*forms*/
.form-section {
    background-image: url("../img/bg-form.jpg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.form-section .form-disclaimer {
    margin: 40px 0;
}

input::-webkit-search-cancel-button {
    display: none;
}

input::-ms-clear {
    display: none;
}

.form-group {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 25px;
}

.form-control {
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 28px;
    -moz-border-radius: 28px;
    border-radius: 28px;
    border: none;
    padding-left: 35px;
    padding-right: 35px;
    width: 100%;
    height: 56px;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #2d2d2d;
    background-color: #e2e3e3;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.form-control-light {
    font-weight: 400;
    background-color: #ffffff;
}

.form-control::-webkit-input-placeholder {
    color: #2d2d2d;
}

.form-control::-moz-placeholder {
    color: #2d2d2d;
}

.form-control:-moz-placeholder {
    color: #2d2d2d;
}

.form-control:-ms-input-placeholder {
    color: #2d2d2d;
}

.form-control:focus::-webkit-input-placeholder {
    opacity: 0.3;
}

.form-control:focus::-moz-placeholder {
    opacity: 0.3;
}

.form-control:focus:-moz-placeholder {
    opacity: 0.3;
}

.form-control:focus:-ms-input-placeholder {
    opacity: 0.3;
}

textarea.form-control {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    height: 137px;
}

textarea.form-control-lg {
    height: 218px;
}

.form-disclaimer {
    font-size: 14px;
    line-height: 1.3;
}

.form-disclaimer a {
    text-decoration: underline;
}

.form-disclaimer a:hover,
.form-disclaimer a:active,
.form-disclaimer a:focus {
    text-decoration: underline;
}

/*new 18.05.20*/
.form-group-file {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
}

.review-photo-label,
.photo-label {
    padding-left: 15px;
}

.review-file-label,
.photo-file-label {
    overflow: hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 28px;
    -moz-border-radius: 28px;
    border-radius: 28px;
    padding: 0 10px;
    width: 108px;
    height: 56px;
    line-height: 56px;
    text-overflow: ellipsis;
    color: #2d2d2d;
    text-align: center;
    background-color: #c4c7d4;
}

/*end new 18.05.20*/
.review-file-label:hover,
.review-file-label:active,
.photo-file-label:hover,
.photo-file-label:active {
    background-color: #eaf5fe;
}

/*=HOME=*/
/*Welcome*/
.welcome-slider-wrapper {
    position: relative;
}

.welcome-slider-wrapper .welcome-slider-pagination-container {
    position: absolute;
    left: 50%;
    right: 0;
    /* bottom: 65px; */
    bottom: 20px;
    z-index: 2;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.welcome-slider-wrapper .swiper-pagination {
    right: 15px;
    bottom: -5px;
    padding-right: 105px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.welcome-slider-wrapper .swiper-pagination-bullet {
    display: inline-block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 10px 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    padding: 0;
    width: 19px;
    height: 19px;
    background: #006ab7;
    opacity: 1;
    cursor: pointer;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.welcome-slider-wrapper .swiper-pagination-bullet:last-child {
    margin-right: 0;
}

.welcome-slider-wrapper .swiper-pagination-bullet:focus {
    outline: none;
}

.welcome-slider-wrapper .swiper-pagination-bullet-active,
.welcome-slider-wrapper .swiper-pagination-bullet:hover {
    background: #008635;
}

.welcome-slide {
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.welcome-container {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    min-height: 681px;
}

.welcome-img {
    position: absolute;
    right: 28px;
    bottom: 90px;
    max-width: 100%;
}

.welcome-content {
    max-width: 620px;
}

.welcome-title {
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.25;
    text-align: left;
    text-transform: uppercase;
    color: #505050;
}

.welcome-text {
    margin-bottom: 55px;
    font-size: 18px;
    color: #505050;
}

/*Statistics*/
.statistics {
    padding-bottom: 30px;
}

.statistics-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 -10px;
}

.statistics-card-wrapper {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 20px;
    padding: 0 10px;
    width: 20%;
}

/* .statistics-card-wrapper:nth-child(4) .statistics-card-title,
.statistics-card-wrapper:nth-last-child(3) .statistics-card-title,
.statistics-card-wrapper:nth-last-child(2) .statistics-card-title,
.statistics-card-wrapper:last-child .statistics-card-title {
  font-size: 14px;
} */
.statistics-card {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: justify;
    align-content: space-between;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 25px 10px 35px;
    height: 100%;
    min-height: 200px;
    background-color: #f2f6f7;
}

.statistics-card-title {
    width: 100%;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    color: #505050;
}

.statistics-card-number {
    width: 100%;
    font-weight: bold;
    font-size: 47px;
    line-height: 1;
    text-align: center;
}

.statistics-card-number span {
    display: block;
    color: #008635;
    background-image: -webkit-linear-gradient(0deg, #008635 0%, #3bfd8d 100%);
    background-size: cover;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

/*new 08.06.20*/
.statistics-card {
    border: 2px solid transparent;
}

.statistics-card-title small {
    display: block;
    font-size: 9px;
    line-height: 1.25;
    color: red;
}

/*end new 08.06.20*/

/*About*/
.about {
    background-image: url("../img/bg-about.jpg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.about-img-wrapper {
    position: relative;
}

.about-img {
    position: absolute;
    left: -35px;
    bottom: -50px;
}

.about-title {
    text-align: left;
}

.about-btn {
    margin-top: 40px;
}

.about .text-section {
    color: #363636;
}

.about .text-section p,
.about .text-section ul,
.about .text-section ol {
    margin-bottom: 10px;
}

.about .text-section p:last-child,
.about .text-section ul:last-child,
.about .text-section ol:last-child {
    margin-bottom: 0;
}

/*Diseases*/
.disease {
    padding-bottom: 20px;
}

.direction-card-wrapper {
    margin-bottom: 30px;
}

/* .direction-card-wrapper:first-child .disease-card::before {
  background-image: url("../img/ico-disease-1.png");
}
.direction-card-wrapper:first-child .disease-card:hover::before,
.direction-card-wrapper:first-child .disease-card:active::before {
  background-image: url("../img/ico-disease-1-hover.png");
}
.direction-card-wrapper:nth-child(2) .disease-card::before {
  background-image: url("../img/ico-disease-2.png");
}
.direction-card-wrapper:nth-child(2) .disease-card:hover::before,
.direction-card-wrapper:nth-child(2) .disease-card:active::before {
  background-image: url("../img/ico-disease-2-hover.png");
}
.direction-card-wrapper:nth-child(3) .disease-card::before {
  background-image: url("../img/ico-disease-3.png");
}
.direction-card-wrapper:nth-child(3) .disease-card:hover::before,
.direction-card-wrapper:nth-child(3) .disease-card:active::before {
  background-image: url("../img/ico-disease-3-hover.png");
}
.direction-card-wrapper:nth-child(4) .disease-card::before {
  background-image: url("../img/ico-disease-4.png");
}
.direction-card-wrapper:nth-child(4) .disease-card:hover::before,
.direction-card-wrapper:nth-child(4) .disease-card:active::before {
  background-image: url("../img/ico-disease-4-hover.png");
}
.direction-card-wrapper:nth-child(5) .disease-card::before {
  background-image: url("../img/ico-disease-5.png");
}
.direction-card-wrapper:nth-child(5) .disease-card:hover::before,
.direction-card-wrapper:nth-child(5) .disease-card:active::before {
  background-image: url("../img/ico-disease-5-hover.png");
}
.direction-card-wrapper:nth-child(6) .disease-card::before {
  background-image: url("../img/ico-disease-6.png");
}
.direction-card-wrapper:nth-child(6) .disease-card:hover::before,
.direction-card-wrapper:nth-child(6) .disease-card:active::before {
  background-image: url("../img/ico-disease-6-hover.png");
}
.direction-card-wrapper:nth-child(7) .disease-card::before {
  background-image: url("../img/ico-disease-7.png");
}
.direction-card-wrapper:nth-child(7) .disease-card:hover::before,
.direction-card-wrapper:nth-child(7) .disease-card:active::before {
  background-image: url("../img/ico-disease-7-hover.png");
}
.direction-card-wrapper:nth-child(8) .disease-card::before {
  background-image: url("../img/ico-disease-8.png");
}
.direction-card-wrapper:nth-child(8) .disease-card:hover::before,
.direction-card-wrapper:nth-child(8) .disease-card:active::before {
  background-image: url("../img/ico-disease-8-hover.png");
}
.direction-card-wrapper:last-child .disease-card::before {
  background-image: url("../img/ico-disease-9.png");
}
.direction-card-wrapper:last-child .disease-card:hover::before,
.direction-card-wrapper:last-child .disease-card:active::before {
  background-image: url("../img/ico-disease-9-hover.png");
} */
.disease-card {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 54px;
    height: 100%;
    min-height: 125px;
}

.disease-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -51.5px;
    width: 103px;
    height: 103px;
    /*new 28.05.20*/
    background-position: 0 0;
    /*end new 28.05.20*/
    background-repeat: no-repeat;
    /*28.05.20 удалено свойство transition*/
}

.disease-card a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px 35px 10px 65px;
    height: 100%;
    font-size: 22px;
    line-height: normal;
    background-color: #eaf5fe;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.disease-card-in {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px 35px 10px 65px;
    height: 100%;
    font-size: 22px;
    line-height: normal;
    background-color: #eaf5fe;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.disease-card:hover .disease-card-in,
.disease-card:active .disease-card-in {
    background-color: #f2f6f7;
}

.disease-card:hover::before,
.disease-card:active::before {
    /*new 28.05.20*/
    background-position: -103px 0;
    /*end new 28.05.20*/
    -webkit-animation: pulse 2.5s linear infinite;
    animation: pulse 2.5s linear infinite;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    25% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    75% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    25% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    75% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/*Researches*/
.researches-slider-wrapper .swiper-button {
    top: 170px;
}

.researches {
    background-image: url("../img/bg-reserches.jpg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.research-card {
    position: relative;
    display: block;
    /*new 08.06.20*/
    height: 100%;
    /*end new 08.06.20*/
    padding: 30px 30px 75px;
    background-color: #ffffff;
}

.research-card-name {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.3;
}

.research-card-text {
    overflow: hidden;
    margin-bottom: 15px;
    display: -webkit-box;
    font-size: 18px;
    line-height: 1.6;
    max-height: 224px;
    text-overflow: ellipsis;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
}

.research-card-btn {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    width: auto;
}

.research-card:hover,
.research-card:active,
.research-card:focus {
    -webkit-box-shadow: 0 7px 16px 0px rgba(11, 60, 73, 0.19);
    -moz-box-shadow: 0 7px 16px 0px rgba(11, 60, 73, 0.19);
    box-shadow: 0 7px 16px 0px rgba(11, 60, 73, 0.19);
}

.research-card:hover .research-card-name,
.research-card:active .research-card-name,
.research-card:focus .research-card-name {
    color: #008635;
}

.research-card:hover .research-card-btn,
.research-card:active .research-card-btn,
.research-card:focus .research-card-btn {
    background: -moz-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #006ab7), color-stop(100%, #6bd3eb));
    background: -webkit-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: -o-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: -ms-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: linear-gradient(90deg, #006ab7 0%, #6bd3eb 100%);
}

.research-card-dark {
    background-color: #f2f6f7;
}

/*Reviews*/
.reviews {
    overflow: hidden;
}

.reviews-slider-wrapper .swiper-button {
    /*    top: 260px; */
    top: 130px;
}

.review-card {
    position: relative;
    display: block;
    /*   min-height: 500px;  */
    min-height: 350px;
    height: 100%;
    padding: 40px 30px 85px;
    background-color: #f2f6f7;
}

.review-card-img-wrapper {
    overflow: hidden;
    margin-bottom: 20px;
    height: 150px;
    background-color: #ffffff;
}

.review-card-img-wrapper img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.review-card-name {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 22px;
}

.review-card-text {
    overflow: hidden;
    margin-bottom: 15px;
    display: -webkit-box;
    font-size: 18px;
    line-height: 1.6;
    max-height: 140px;
    text-overflow: ellipsis;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.review-card-btn {
    position: absolute;
    bottom: 40px;
    left: 30px;
    right: 30px;
    width: auto;
}

.review-card:hover,
.review-card:active,
.review-card:focus {
    -webkit-box-shadow: 0 7px 16px 0px rgba(11, 60, 73, 0.19);
    -moz-box-shadow: 0 7px 16px 0px rgba(11, 60, 73, 0.19);
    box-shadow: 0 7px 16px 0px rgba(11, 60, 73, 0.19);
}

.review-card:hover .review-card-name,
.review-card:active .review-card-name,
.review-card:focus .review-card-name {
    color: #008635;
}

.review-card:hover .review-card-btn,
.review-card:active .review-card-btn,
.review-card:focus .review-card-btn {
    background: -moz-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #006ab7), color-stop(100%, #6bd3eb));
    background: -webkit-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: -o-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: -ms-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background: linear-gradient(90deg, #006ab7 0%, #6bd3eb 100%);
}

.review-modal-card {
    padding: 0;
    background-color: #ffffff;
}

.review-modal-card .review-card-name {
    text-align: center;
}

.review-modal-card-text p+p {
    margin-top: 15px;
}

.review-modal-card:hover {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.review-modal-card:hover .review-card-name {
    color: #2d2d2d;
}

/*=REVIEWS=*/
.review-card-wrapper {
    margin-bottom: 20px;
}

/*=SCIENTIFIC WORK=*/
.work-card-wrapper {
    margin-bottom: 35px;
}

/*=CLINICAL RESEARCHES=*/
.research {
    position: relative;
}

.research+.research {
    margin-top: 35px;
    border-top: 1px solid rgba(1, 108, 184, 0.34);
    padding-top: 45px;
}

.research-target {
    position: absolute;
    top: -130px;
}

.research-title {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.25;
}

.research-btn {
    margin-top: 30px;
}

/*=CERTIFICATES=*/
.certificates {
    padding-bottom: 30px;
}

.certificate-card-wrapper {
    margin-bottom: 20px;
}

.certificate-card-wrapper figcaption {
    display: none;
}

.certificate {
    display: block;
}

.certificate img {
    display: block;
    max-width: 100%;
}

/*=FAQ=*/
.faq-item+.faq-item {
    margin-top: 20px;
}

.faq-item-btn {
    position: relative;
    display: block;
    padding: 20px 100px 20px 20px;
    font-weight: bold;
    font-size: 18px;
    background-color: #f2f6f7;
}

.faq-item-btn::before {
    content: '';
    position: absolute;
    right: 44px;
    top: 50%;
    z-index: 2;
    margin-top: -18px;
    width: 14px;
    height: 36px;
    background-image: url("../img/sprite.png");
    background-repeat: no-repeat;
    background-position: -106px -32px;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.faq-item-btn::after {
    content: '';
    position: absolute;
    right: 25px;
    top: 50%;
    z-index: 1;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin-top: -26px;
    width: 52px;
    height: 52px;
    background: -moz-linear-gradient(90deg, #006ab7 0%, #6bd3eb 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #006ab7), color-stop(100%, #6bd3eb));
    background: -webkit-linear-gradient(90deg, #006ab7 0%, #6bd3eb 100%);
    background: -o-linear-gradient(90deg, #006ab7 0%, #6bd3eb 100%);
    background: -ms-linear-gradient(90deg, #006ab7 0%, #6bd3eb 100%);
    background: linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
}

.faq-item-btn[aria-expanded="true"] {
    background-color: #d0e1e5;
}

.faq-item-btn[aria-expanded="true"]::before {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.faq-item-in {
    border-bottom: 1px solid rgba(1, 108, 184, 0.34);
    padding: 40px;
}

.faq-item-in:last-child {
    padding-bottom: 20px;
    border-bottom: none;
}

.faq-item-in-title {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 16px;
}

.faq-item-in-btn {
    margin-top: 30px;
}

/*=CONTACTS=*/
.contacts-block {
    margin-bottom: 35px;
    padding: 30px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 7px 16px 0 rgba(11, 60, 73, 0.19);
    -moz-box-shadow: 0 7px 16px 0 rgba(11, 60, 73, 0.19);
    box-shadow: 0 7px 16px 0 rgba(11, 60, 73, 0.19);
}

.contacts-block .wrapper_ie .contacts-item-instagram a {
    display: flex;
    flex-direction: row;
    align-items: center;
    /*    margin-right: 15px; */
}

/*new 08.06.20*/
/*=BIOGRAPHY=*/
.experience {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: 35px;
    background-image: url("../img/bg-experience.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

.experience-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 70px;
    padding: 10px;
    height: 71px;
    width: 274px;
    font-weight: bold;
    font-size: 20px;
    font-family: 'Roboto Condensed', sans-serif;
    color: #ffffff;
    background-image: url("../img/bg-experience-title.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

.experience-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    height: 71px;
}

.experience-content p {
    margin-right: 50px;
    font-weight: bold;
    font-size: 20px;
    font-family: 'Roboto Condensed', sans-serif;
    color: #006ab7;
}

.experience-content p:last-child {
    margin-right: 0;
}

.experience-content p span {
    font-size: 44px;
}

.membership {
    margin-top: 105px;
}

.membership-card-wrapper {
    margin-bottom: 30px;
    padding-top: 52px;
}

.membership-card {
    position: relative;
    padding: 55px 10px 20px;
    height: 100%;
    font-size: 20px;
    font-family: 'Roboto Condensed', sans-serif;
    text-align: center;
    background-color: #f2f6f7;
}

.membership-card::before {
    content: '';
    position: absolute;
    top: -52px;
    left: 50%;
    margin-left: -53.5px;
    width: 107px;
    height: 95px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("../img/ico-certificate.png");
}

@media (max-width: 991px) {

    /*=BIOGRAPHY=*/
    .experience-title {
        margin-right: 25px;
        width: 170px;
    }

    .experience-content p {
        margin-right: 20px;
    }

    .experience-content p span {
        font-size: 40px;
    }
}

@media (max-width: 767px) {

    /*=BIOGRAPHY=*/
    .experience {
        display: block;
        background-image: none;
    }

    .experience-title {
        margin-right: 0;
        width: 100%;
    }

    .experience-content {
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        background-image: url("../img/bg-experience.jpg");
        background-size: cover;
        background-repeat: no-repeat;
    }

    .experience-content p span {
        font-size: 32px;
    }
}

@media (max-width: 575px) {

    /*=BIOGRAPHY=*/
    .membership {
        margin-top: 60px;
    }

    .membership-card-wrapper:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 460px) {

    /*=BIOGRAPHY=*/
    .experience-content {
        display: block;
        padding: 15px;
        height: auto;
        text-align: center;
    }

    .experience-content p {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .experience-content p:last-child {
        margin-bottom: 0;
    }
}

/*end new 08.06.20*/

/*=404=*/
.error-page-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.error-wrapper {
    padding: 40px 0;
}

.error-title {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 300px;
    line-height: 1;
    color: #006ab7;
    background-image: -webkit-linear-gradient(0deg, #006ab7 0%, #6bd3eb 100%);
    background-size: cover;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.error-info-wrapper {
    border-left: 1px solid rgba(1, 108, 184, 0.34);
    padding-top: 20px;
}

.error-info {
    padding-left: 25px;
}

.error-info-title {
    margin-bottom: 60px;
    font-size: 32px;
    line-height: 1.2;
    text-align: left;
    text-transform: uppercase;
    color: #006ab7;
}

.error-info p {
    font-size: 26px;
}

.error-info p+p {
    margin-top: 50px;
}

.error-info-link {
    text-decoration: underline;
    color: #006ab7;
}

.error-info-link:hover,
.error-info-link:focus,
.error-info-link:active {
    text-decoration: none;
}

/*=FOOTER=*/
.footer {
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 50px 0 30px;
    background-color: #fafafa;
}

.footer-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.footer-logo-img {
    display: block;
    width: 179px;
}

.footer-menu-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 55%;
    max-width: 610px;
}

.footer-menu-item {
    margin-bottom: 10px;
}

.footer-menu-item:last-child {
    margin-bottom: 0;
}

.footer-menu-link {
    display: block;
    line-height: 1;
    color: #2d2d2d;
}

.footer-menu-link:hover,
.footer-menu-link:active,
.footer-menu-link:focus {
    text-decoration: underline;
}

.footer-contacts {
    width: 25.6%;
    max-width: 300px;
}

.footer-contacts .contacts-item {
    margin-bottom: 20px;
}

.footer-contacts .wrapper_instagram_tel {
    display: flex;
    flex-direction: column;
}


.footer-contacts .wrapper_instagram_tel .contacts-item-instagram {
    /*    margin-right: 15px; */
    display: flex;
    flex-direction: row;
    align-items: center;
}

.footer-contacts .wrapper_instagram_tel .contacts-item-instagram img {
    margin-right: 9px;
}

.footer-contacts .contacts-item:last-child {
    margin-bottom: 0;
}

/*=MODALS=*/
.modal-backdrop {
    background-color: #eaf5fe;
}

.modal-backdrop.in {
    opacity: 0.9;
}

.modal-dialog {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 50px auto;
    width: 98%;
    max-width: 830px;
    background-color: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.modal-content {
    display: block;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    border: none;
    /*    padding: 40px 30px 55px; */
    padding: 40px 30px 10px;
    background-color: #ffffff;
    background-repeat: repeat;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

button.modal-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 29px;
    height: 29px;
    background-color: transparent;
    background-image: url("../img/sprite.png");
    background-repeat: no-repeat;
    background-position: -47px 0;
    opacity: 1;
    cursor: pointer;
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
}

button.modal-close:hover,
button.modal-close:active,
button.modal-close:focus {
    opacity: 1;
    background-position: -79px 0;
}

.modal-title {
    margin-bottom: 50px;
    font-weight: 700;
    font-size: 44px;
    line-height: 1.2;
    text-align: center;
    color: #505050;
}

.modal-form .form-disclaimer {
    margin-top: 25px;
    margin-bottom: 40px;
}

/*==========RESPONSIVE==========*/
@media (max-width: 1290px) {

    /*=CONTENT=*/
    /*Slider*/
    .default-slider-wrapper .swiper-button-next {
        right: 0;
    }

    .default-slider-wrapper .swiper-button-prev {
        left: 0;
    }

    /*=HOME=*/
    /*Reviews*/
    .reviews-slider-wrapper .swiper-button {
        top: 155px;
    }
}

@media (max-width: 1199px) {

    /*=HEADER=*/
    .header {
        padding-top: 15px;
    }

    .header-logo-img {
        width: 140px;
    }

    .header-contacts {
        margin-left: 190px;
        padding: 0 0 15px;
    }

    /*=MENU=*/
    .header-menu-wrapper.fixed .header-menu-item-with-submenu .header-menu-link::after {
        top: 20px;
    }

    .header-menu {
        margin-left: 190px;
    }

    .header-menu-item-with-submenu .header-menu-link::after {
        top: 15px;
    }

    .header-menu-link {
        padding: 15px 0;
        font-size: 14px;
    }

    .header-submenu-link {
        font-size: 14px;
    }

    /*=HOME=*/
    /*Welcome*/
    .welcome-img {
        right: 0;
        bottom: 86px;
        max-width: 470px;
    }

    .welcome-content {
        max-width: 560px;
    }

    /*Statistics*/
    .statistics-card {
        padding: 20px 10px;
    }

    .statistics-card-title {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .statistics-card-number {
        font-size: 38px;
    }

    /*About*/
    .about-img {
        max-width: 430px;
    }

    /*Diseases*/
    .disease-card-in {
        font-size: 20px;
    }

    /*=404=*/
    .error-title {
        font-size: 254px;
    }

    .error-info-title {
        margin-bottom: 40px;
    }

    .error-info p {
        font-size: 20px;
    }

    .error-info p+p {
        margin-top: 25px;
    }

    /*=FOOTER=*/
    .footer-container {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .footer-logo {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }

    .footer-contacts {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
        width: 60%;
    }

    .footer-menu-wrapper {
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3;
        margin-top: 40px;
        width: 100%;
        max-width: none;
    }
}

@media (min-width: 992px) {
    .header-menu-request-btn {
        display: none;
    }

    .header-menu-item-with-submenu:hover .header-menu-link::after {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .header-menu-item-with-submenu:hover .header-submenu {
        display: block;
    }
}

@media (max-width: 991px) {

    /*=HEADER=*/
    .header {
        padding-top: 10px;
    }

    .header-logo-img {
        width: 130px;
    }

    .header-contacts {
        margin-left: 160px;
        padding: 0 0 10px;
    }

    .header-request-btn {
        display: none;
    }

    /*=MENU=*/
    .header-menu-btn {
        position: relative;
        display: block;
        width: 36px;
        height: 20px;
        cursor: pointer;
    }

    .header-menu-btn-item {
        position: absolute;
        left: 0;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        border-radius: 2px;
        width: 36px;
        height: 4px;
        background-color: #2d2d2d;
        -webkit-transition: all ease 0.3s;
        -moz-transition: all ease 0.3s;
        -o-transition: all ease 0.3s;
        transition: all ease 0.3s;
    }

    .header-menu-btn-item-1 {
        top: 0;
        left: 0;
    }

    .header-menu-btn-item-2 {
        top: 8px;
    }

    .header-menu-btn-item-3 {
        top: 16px;
    }

    .header-menu-btn.open .header-menu-btn-item {
        top: 8px;
    }

    .header-menu-btn.open .header-menu-btn-item-1 {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .header-menu-btn.open .header-menu-btn-item-2 {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .header-menu-btn.open .header-menu-btn-item-3 {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .header-menu-wrapper {
        position: relative;
        padding: 10px 0;
    }

    .header-menu-wrapper.fixed {
        background-color: #ffffff;
    }

    .header-menu-wrapper.fixed .header-menu-container {
        padding-left: 15px;
    }

    .header-menu-wrapper.fixed .header-menu-item-with-submenu .header-menu-link::after {
        top: 11px;
    }

    .header-menu-wrapper.fixed .header-menu-link {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .header-menu-wrapper.fixed .header-menu-item-logo {
        display: none;
    }

    .header-menu-container {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        padding-left: 175px;
        -webkit-transition: all ease 0.3s;
        -moz-transition: all ease 0.3s;
        -o-transition: all ease 0.3s;
        transition: all ease 0.3s;
    }

    .header-menu {
        overflow-y: auto;
        position: absolute;
        left: 0;
        top: 100%;
        right: 0;
        z-index: 100;
        display: none;
        margin-left: 0;
        padding: 10px 0;
        min-width: 0;
        max-height: 600px;
        background-color: #ffffff;
        -webkit-box-shadow: 0 7px 16px 0 rgba(11, 60, 73, 0.19);
        -moz-box-shadow: 0 7px 16px 0 rgba(11, 60, 73, 0.19);
        box-shadow: 0 7px 16px 0 rgba(11, 60, 73, 0.19);
        -webkit-transition: none;
        -moz-transition: none;
        -o-transition: none;
        transition: none;
    }

    .header-menu-item {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        margin: 0 auto;
        padding: 0 15px;
        max-width: 720px;
    }

    .header-menu-item-with-submenu .header-menu-link::after {
        top: 11px;
    }

    .header-menu-item-with-submenu .header-menu-link.open::after {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .header-menu-link {
        display: block;
        padding: 8px 0;
    }

    .header-submenu {
        position: static;
        min-width: 0;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

    .header-submenu-link {
        white-space: normal;
    }

    .header-menu-request-btn {
        position: relative;
        z-index: 200;
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    /*=CONTENT=*/
    .text-section img {
        height: auto !important;
        width: auto !important;
        max-width: 100%;
    }

    .text-section .img-left {
        float: none;
        display: block;
        margin: 0 auto 20px;
    }

    .text-section .img-right {
        float: none;
        display: block;
        margin: 0 auto 20px;
    }

    /*Slider*/
    .default-slider-wrapper {
        padding-bottom: 68px;
    }

    .default-slider-wrapper .swiper-button {
        top: auto;
        bottom: 0;
    }

    .default-slider-wrapper .swiper-button-next {
        right: 50%;
        margin-right: -94px;
    }

    .default-slider-wrapper .swiper-button-prev {
        left: 50%;
        margin-left: -94px;
    }

    /*=LINKS&FORMS=*/
    .btn-section-slider {
        margin-top: 50px;
    }

    /*=HOME=*/
    /*Welcome*/
    .welcome-slide {
        padding: 40px 0 70px;
        background-size: cover;
    }

    .welcome-container {
        display: block;
        min-height: 0;
    }

    .welcome-img {
        position: static;
        display: block;
        margin: 0 auto 30px;
        max-width: 300px;
    }

    .welcome-content {
        max-width: none;
    }

    .welcome-title {
        margin-bottom: 15px;
        font-size: 24px;
    }

    .welcome-text {
        margin-bottom: 25px;
        font-size: 16px;
    }

    /*Statistics*/
    .statistics-wrapper {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .statistics-card-wrapper {
        width: 25%;
    }

    /*About*/
    .about-img-wrapper {
        margin-top: 40px;
    }

    .about-img {
        position: static;
        display: block;
        margin: 0 auto -50px;
        max-width: 100%;
    }

    .about-title {
        text-align: center;
    }

    .about-btn {
        margin-left: auto;
        margin-right: auto;
    }

    /*=REVIEWS=*/
    .review-photo-label {
        padding-left: 0;
    }

    .review-file-label {
        margin-left: 10px;
        width: 60%;
    }

    /*=FAQ=*/
    .categories-menu {
        margin-bottom: 50px;
    }

    /*=404=*/
    .error-title {
        margin-bottom: 30px;
        font-size: 320px;
        text-align: center;
    }

    .error-info-wrapper {
        border-left: none;
        border-top: 1px solid rgba(1, 108, 184, 0.34);
        padding-top: 0;
    }

    .error-info {
        padding-top: 40px;
        padding-left: 0;
        text-align: center;
    }

    .error-info-title {
        margin-bottom: 50px;
        font-size: 32px;
        line-height: 1.2;
        text-align: center;
    }

    .error-info p {
        font-size: 20px;
    }

    .error-info p+p {
        margin-top: 30px;
    }
}

@media (max-width: 991px) and (max-height: 900px) {

    /*=MENU=*/
    .header-menu {
        max-height: 570px;
    }
}

@media (max-width: 991px) and (max-height: 780px) {

    /*=MENU=*/
    .header-menu {
        max-height: 480px;
    }
}

@media (max-width: 991px) and (max-height: 680px) {

    /*=MENU=*/
    .header-menu {
        max-height: 380px;
    }
}

@media (max-width: 991px) and (max-height: 590px) {

    /*=MENU=*/
    .header-menu {
        max-height: 270px;
    }
}

@media (max-width: 991px) and (max-height: 480px) {

    /*=MENU=*/
    .header-menu {
        max-height: 190px;
    }
}

@media (max-width: 767px) {

    /*=HEADER=*/
    .header-top-container {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .header-logo {
        position: static;
        padding-right: 20px;
    }

    .header-logo-img {
        max-width: 80px;
    }

    .header-contacts {
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        margin-left: 0;
        border-bottom: 0;
        padding: 0;
    }

    .header-contacts .contacts-item {
        font-size: 14px;
    }

    /*=MENU=*/
    .header-menu-container {
        padding-left: 15px;
    }

    .header-menu-item {
        max-width: 540px;
    }

    /*=LINKS&FORMS=*/
    /***pagination***/
    .pagination .page {
        margin-left: 5px;
        width: 30px;
        height: 30px;
        font-size: 12px;
        line-height: 30px;
    }

    .pagination .page-prev {
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        border-radius: 15px;
        width: 65px;
        height: 30px;
        font-size: 12px;
        line-height: 30px;
    }

    .pagination .page-prev span {
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        border-radius: 15px;
    }

    .pagination .page-next {
        margin-left: 5px;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        border-radius: 15px;
        width: 65px;
        height: 30px;
        font-size: 12px;
        line-height: 30px;
    }

    .pagination .page-next span {
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        border-radius: 15px;
    }

    /*=HOME=*/
    /*Statistics*/
    .statistics-card-wrapper {
        width: 50%;
    }

    /*=404=*/
    .error-title {
        font-size: 228px;
    }

    .error-info-title {
        margin-bottom: 30px;
    }

    .error-info p {
        font-size: 18px;
    }

    .error-info p+p {
        margin-top: 20px;
    }

    /*=MODALS=*/
    .modal-content {
        padding: 45px 20px 40px;
    }

    button.modal-close {
        top: 10px;
        right: 10px;
    }

    .modal-title {
        margin-bottom: 35px;
        font-size: 30px;
    }
}

@media (max-width: 575px) {

    /*=HEADER=*/
    .header-top-container {
        position: relative;
    }

    .header-logo-img {
        max-width: none;
    }

    .header-contacts {
        display: block;
        text-align: left;
    }

    .header-contacts .contacts-item {
        margin-bottom: 5px;
    }

    .header-contacts .contacts-item:last-child {
        margin-bottom: 0;
    }

    /*=MENU=*/
    .header-menu-item {
        max-width: none;
    }

    /*=CONTENT=*/
    .research-title {
        font-size: 20px;
    }

    .research-btn {
        margin: 30px auto 0;
    }

    /*Gallery*/
    .fancybox-caption-wrap {
        padding: 0 15px;
    }

    .fancybox-caption {
        padding: 15px 0;
        font-size: 12px;
    }

    /*=TEXT=*/
    h1 {
        margin-bottom: 40px;
        font-size: 24px;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 20px;
    }

    .section-title {
        margin-bottom: 40px;
        font-size: 24px;
    }

    /*=HOME=*/
    /*Welcome*/
    .welcome-slider-wrapper .welcome-slider-pagination-container {
        bottom: 20px;
        /* bottom: 0; */
    }

    .welcome-slider-wrapper .swiper-pagination {
        padding-right: 0;
        right: 50%;
        -webkit-transform: translateX(50%);
        -moz-transform: translateX(50%);
        -ms-transform: translateX(50%);
        -o-transform: translateX(50%);
        transform: translateX(50%);
    }

    .welcome-img {
        max-width: 280px;
    }

    .welcome-title {
        font-size: 20px;
    }

    .welcome-text {
        margin-bottom: 20px;
    }

    /*=FAQ=*/
    .faq-item-btn {
        padding: 15px 80px 15px 10px;
        font-size: 16px;
    }

    .faq-item-btn::before {
        right: 34px;
    }

    .faq-item-btn::after {
        right: 15px;
    }

    .faq-item-in {
        padding: 15px;
    }

    .faq-item-in:last-child {
        padding-bottom: 5px;
    }

    /*=FOOTER=*/
    /*.footer-container {
        display: block;
        text-align: center;
    }
    .footer-logo {
        display: inline-block;
    }
    .footer-contacts {
        display: block;
        margin: 40px auto 0;
        width: 100%;
        max-width: 270px;
        text-align: left;
    }*/
    .footer-container {
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

    .footer-logo {
        padding-right: 20px;
    }

    .footer-logo-img {
        width: 130px;
    }

    .footer-contacts {
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        width: auto;
        max-width: none;
    }

    .footer-contacts .contacts-item {
        margin-bottom: 5px;
        font-size: 14px;
    }

    .footer-contacts .contacts-item:last-child {
        margin-bottom: 0;
    }

    .footer-menu-wrapper {
        display: none;
    }
}

@media (max-width: 520px) {

    /*=HOME=*/
    /*Diseases*/
    .disease-card-in {
        font-size: 18px;
    }

    /*Research*/
    .research-card {
        padding: 20px 15px 65px;
    }

    .research-card-name {
        font-size: 18px;
    }

    .research-card-text {
        font-size: 16px;
        max-height: 200px;
    }

    .research-card-btn {
        bottom: 20px;
        left: 15px;
        right: 15px;
    }

    /*Reviews*/
    .review-card {
        padding: 20px 15px 65px;
        /*        min-height: 420px; */
        min-height: 245px;
    }

    .review-card-name {
        margin-bottom: 10px;
        font-size: 18px;
    }

    .review-card-text {
        font-size: 16px;
        max-height: 125px;
    }

    .review-card-btn {
        bottom: 20px;
        left: 15px;
        right: 15px;
    }

    .review-modal-card {
        padding: 0;
    }

    .review-modal-card p+p {
        margin-top: 10px;
    }

    /*=404=*/
    .error-title {
        font-size: 200px;
    }

    .error-info-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {

    /*=404=*/
    .error-title {
        font-size: 150px;
    }

    .error-info-title {
        font-size: 26px;
    }
}

@media (max-width: 440px) {

    /*=HEADER=*/
    /*.header-top-container {
        display: block;
        text-align: center;
    }
    .header-logo {
        display: inline-block;
        padding-right: 0;
    }
    .header-contacts {
        margin: 10px auto 0;
        max-width: 270px;
    }*/
    .header-logo-img {
        max-width: 90px;
    }

    /*=LINKS&FORMS=*/
    /***pagination***/
    .pagination .page {
        margin-left: 0;
        width: 26px;
        height: 26px;
        line-height: 26px;
    }

    .pagination .page-prev {
        -webkit-border-radius: 13px;
        -moz-border-radius: 13px;
        border-radius: 13px;
        width: 60px;
        height: 26px;
        line-height: 26px;
    }

    .pagination .page-prev span {
        -webkit-border-radius: 13px;
        -moz-border-radius: 13px;
        border-radius: 13px;
    }

    .pagination .page-next {
        margin-left: 0;
        -webkit-border-radius: 13px;
        -moz-border-radius: 13px;
        border-radius: 13px;
        width: 60px;
        height: 26px;
        line-height: 26px;
    }

    .pagination .page-next span {
        -webkit-border-radius: 13px;
        -moz-border-radius: 13px;
        border-radius: 13px;
    }

    /*=HOME=*/
    /*Welcome*/
    .welcome-btn {
        margin: 0 auto;
    }

    /*=FOOTER=*/
    .footer-logo-img {
        max-width: 90px;
    }
}

@media (max-width: 380px) {

    /*=HEADER=*/
    .header-logo-img {
        max-width: 80px;
    }

    .header-contacts .contacts-item {
        font-size: 13px;
    }

    /*=FOOTER=*/
    .footer-logo-img {
        max-width: 80px;
    }

    .footer-contacts .contacts-item {
        font-size: 13px;
    }
}

@media (max-width: 360px) {

    /*=HEADER=*/
    .header-menu-request-btn {
        width: 200px;
        height: 42px;
        font-size: 13px;
    }

    /*=HOME=*/
    /*Statistics*/
    .statistics-card-wrapper {
        width: 100%;
    }

    .statistics-card {
        min-height: 0;
    }

    .statistics-card-title {
        margin-bottom: 15px;
    }

    /*=404=*/
    .error-title {
        font-size: 120px;
    }

    .error-info-title {
        font-size: 22px;
    }

    .error-info p {
        font-size: 16px;
    }
}