/*/////////////////////////////////////
_________general-styles________________
/////////////////////////////////////*/

body {
    font-family: 'Roboto', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Condensed', sans-serif;
}

.heading-row {
    overflow: hidden;
    padding-bottom: 80px;
    padding-top: 120px;
    justify-content: space-between;
}

.heading-row a {
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 28px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    border-top: 1px solid #4884f4;
    border-bottom: 1px solid #4884f4;
    padding: 8px 60px;
    margin-right: 270px;
    text-decoration: none;
}

.heading-row h4 {
    position: relative;
    padding-left: 270px;
    font-size: 32px;
    color: #045eaa;
    text-transform: uppercase;
    user-select: none;
}

.heading-row h4::before {
    content: '';
    display: block;
    height: 1px;
    position: absolute;
    left: 0;
    top: 8px;
    width: 200px;
    background: #007bde;
}

.heading-row h4::after {
    content: '';
    display: block;
    height: 1px;
    position: absolute;
    left: 0;
    top: 28px;
    width: 150px;
    background: #007bde;
}

.heading-row h4 p {
    margin: -92px 50px;
    color: #f6f6f6;
    font-size: 90px;
    font-weight: 600;
    position: absolute;
    z-index: -1;
    white-space: nowrap;
}

.orto-btn {
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
    background-color: transparent;
    color: #007bff;
    outline: none;
    font-size: 16px;
    font-weight: 500;
    border: none;
    padding: 8px 60px;
    cursor: pointer;
}

.orto-btn:focus {
    outline: none;
}

.orto-btn svg {
    fill: #007bff;
    height: 20px;
}

.registration-button {
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 28px;
    text-transform: uppercase;
    font-size: 21px;
    font-weight: 500;
    border-top: 1px solid #4884f4;
    border-bottom: 1px solid #4884f4;
    padding: 8px 60px;
    margin: auto auto 0 0;
    text-decoration: none;
}

.registration-button:hover {
    text-decoration: none;
}

/*/////////////////////////////////////
_________header________________________
/////////////////////////////////////*/

header {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    padding: 0 15px;
    height: 100px;
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
}

.header-container,
.header-row {
    height: 100%;
}

.header-row {
    justify-content: flex-end;
    align-items: flex-start;
}

header .logo-col a {
    display: inline-block;
}

.logo-col {
    text-align: left;
    height: 100%;
}

.nav-col {
    height: 100%;
}

.sign-col {
    height: 100%;
}

.logo-col img {
    margin-top: 5px;
    width: 300px;
}

.nav-row {
    height: 100%;
    justify-content: flex-end;
    align-items: flex-start;
}

.nav-row div {
    display: flex;
    text-align: left;
    flex-direction: column;
    height: 100px;
    min-width: 100px;
    margin-right: 15px;
    overflow: hidden;
    position: relative;
}

.nav-row div::before {
    content: '';
    position: absolute;
    display: block;
    left: 0;
    top: 35px;
    height: 3px;
    width: 0;
    border-radius: 3px;
    background-color: #067edf;
    transition: width 250ms;
}

.nav-row div:nth-child(2)::before {
    left: 25%;
}

.nav-row div:nth-child(2):hover::before {
    width: 20px;
}

.nav-row div:hover::before {
    width: 20px;
}

.nav-row div.active::before {
    width: 50px;
}

.nav-row div:nth-child(2),
.nav-row div:nth-child(3) {
    margin: 0;
}

.nav-row div:nth-child(2) {
    text-align: center;
    padding-right: 20px;
}

.nav-row div:nth-child(3) {
    margin-right: -20px;
}

.nav-row div:hover {
    height: auto;
}

.nav-col a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 14px;
    line-height: 100px;
}

.nav-col a:not(:first-child) {
    line-height: 10px;
    margin: 12px 0;
    opacity: 0;
    transition: opacity 250ms;
    text-transform: none;
}



.nav-col a:nth-child(2) {
    margin-top: -15px;
}

.nav-row div:hover > a:not(:first-child) {
    opacity: 1;
}

.nav-row div:hover > a:not(:first-child):hover {
    opacity: .8;
}

.sign-row {
    align-items: center;
    justify-content: space-evenly;
    height: 100%;
}

.sign-row svg {
    fill: white;
}

.sign-row a {
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    color: white;
}

/*.find-orto {*/
/*display: block;*/
/*height: 60%;*/
/*width: 200px;*/
/*line-height: 60px;*/
/*border-bottom: 1px solid rgba(255, 255, 255, .8);*/
/*border-top: 1px solid rgba(255, 255, 255, .8);*/
/*}*/

.sign-row a:hover {
    color: white;
    text-decoration: none;
}

.sign-row a svg {
    margin: -5px 10px 0 0;
}

.sign-row .separator {
    width: 1px;
    height: 60%;
    background-color: rgba(255, 255, 255, .5);
}

.sign-row .language-select {
    border: 1px solid white;
    border-radius: 3px;
}

.sign-row .language-select a {
    display: block;
    line-height: 30px;
    width: 30px;
    height: 30px;
}

.burger-col {
    display: none;
}

.burger-menu {
    display: none;
}

/*/////////////////////////////////////
_________footer________________________
/////////////////////////////////////*/

.footer-container {
    background-color: #252525;
    padding-top: 100px;
    padding-bottom: 100px;
}

.footer-row {
    justify-content: space-around;
}

.footer-contacts {
    padding: 10px 0;
}

.footer-contacts svg {
    height: 20px;
    width: 10%;
    fill: white;
}

.footer-contacts p {
    color: white;
    margin: 0;
    display: inline-block;
    font-weight: 500;
}

.logo-col a {
    margin-bottom: 40px;
    display: block;
}

.copy {
    color: #878787;
    font-size: 12px;
    margin-top: 30px;
}

.copy span {
    margin: 0 15px 0 12px;
    padding: 0 0 0 2px;
    font-size: 10px;
    line-height: 12px;
    width: 13px;
    height: 13px;
    display: inline-block;
    border: 1px solid #878787;
    border-radius: 15px;
}

.footer-links-col {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding-top: 30px;
}

.footer-links a:first-child {
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 15px;
}

.footer-links a {
    display: block;
    text-decoration: none;
    color: white;
    padding: 0;
    font-size: 14px;
    font-family: 'Roboto Condensed', sans-serif;
}

.footer-links a:not(:first-child) {
    font-size: 12px;
    margin: 5px 0;
}

/*/////////////////////////////////////
_________first_screen__________________
/////////////////////////////////////*/

.first-screen.big {
    height: 100vh;
    background-image:linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../files/images/global/main_back.jpg");
    background-size: cover;
    position: relative;
    background-position: center center;

}

.first-scr-lower-row {
    position: absolute;
    flex-direction: column;
    bottom: 0;
    height: 40%;
    width: 100%;
}

.first-scr-lower-row h1 {
    text-shadow: 3px 3px 10px rgba(0, 0, 0, .4);
    text-transform: uppercase;
    color: white;
    padding-left: 200px;
    position: relative;
}

.first-scr-lower-row h1::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 5px;
    height: 1px;
    width: 180px;
    background: rgba(255, 255,255 , .8);
}

.first-scr-lower-row h1::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 60px;
    height: 1px;
    width: 120px;
    background: rgba(255, 255,255 , .8);
}

#first-screen-form {
    margin: 50px 0 0 200px;
}

#first-screen-form BUTTON {
    background: #007bde;
    color: white;
    text-transform: uppercase;
    border: none;
    outline: none;
    padding: 10px 20px;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
    cursor: pointer;
}

.first-scr-lower-row .scroll-button{
    position: absolute;
    right: 125px;
    bottom: 125px;
    text-align: center;
    padding: 0 10px;
    cursor: pointer;
}

.first-scr-lower-row .scroll-button span:first-child {
    display: block;
    height: 150px;
    width: 1px;
    margin-left: 2px;
    background: rgba(255, 255, 255, .5);
}

.first-scr-lower-row .scroll-button span:last-child {
    display: block;
    height: 5px;
    width: 5px;
    border-radius: 5px;
    background: rgba(255, 255, 255, .5);
}
/*/////////////////////////////////////
_________history_______________________
/////////////////////////////////////*/

.history-row:nth-child(odd) {
    background-color: #fff;
}

.history-row:nth-child(even) .date-col {
    order: 2;
}

.history-row:nth-child(even) .timeline-col {
    order: 1;
}

.history-row:nth-child(even) .content-block-col {
    order: 0;
}

.history-row:nth-child(even) {
    background-color: #f9f9f9;
}

.first-screen.heading {
    height: 365px;
}

.history-row .date {
    font-size: 62px;
    font-weight: 900;
    color: #000;
    opacity: 0.1;
    text-align: center;
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 1;
    padding-top: 100px;
    padding-bottom: 100px;
    user-select: none;
}

.history-row .line {
    position: absolute;
    width: 2px;
    left: calc(50% - 1px);
    top: 0;
    background-color: #017bde;
    bottom: 0;
}

.history-row .timeline {
    position: relative;
}

.history-row.active .content-block {
    opacity: 1;
}

.history-row .image-block {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 80px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1;
    background-color: #017bde;
    background-position: center center;
    background-size: cover;
    line-height: 100px;
    color: #fff;
    font-weight: 900;
    text-align: center;
    cursor: pointer;
    transition: opacity 0.5s;
    transition-delay: 0.5s;
    opacity: 0;
}

.history-row.active .image-block {
    opacity: 1;
}

.history-row .content-block {
    padding-top: 120px;
    padding-bottom: 105px;
    font-size: 16px;
    color: #555;
    opacity: 0;
    transition: opacity 1.5s;
    transition-delay: 1.5s;
}

.pointer {
    position: absolute;
    top: 130px;
    left: 50%;
    right: 50%;
    height: 1px;
    background-color: #017bde;
    transition: right 500ms;
    transition-delay: 1s;
}

.history-row.active .pointer {
    right: 3px;
}

.history-row.active .pointer:before {
    opacity: 1;
}

.pointer:before {
    content: '';
    display: block;
    position: absolute;
    right: -2px;
    top: -2px;
    width: 5px;
    height: 5px;
    background-color: rgba(1, 123, 222, 0.7);
    border-radius: 100%;
    opacity: 0;
    transition: opacity 1s;
    transition-delay: 1s;
}

.pointer:after {
    content: '';
    position: absolute;
    right: -6px;
    top: -6px;
    width: 13px;
    height: 13px;
    background-color: rgba(1, 123, 222, 0.2);
    border-radius: 100%;
    opacity: 0;
    transition: 1s;
    transition-delay: 1s;
}

.history-row.active .pointer:after {
    opacity: 1;
}

.history-row:nth-child(even) .pointer {
    left: 50%;
    right: 50%;
    transition: left 500ms;
    transition-delay: 1s;
}

.history-row.active:nth-child(even) .pointer {
    left: 3px;
    right: 50%;
}

.history-row:nth-child(even) .pointer:before {
    right: 50%;
    left: -2px;
}

.history-row:nth-child(even) .pointer:after {
    right: 50%;
    left: -6px;
}

.closer {
    overflow: hidden;
}

.closer + button.orto-btn {
    padding-left: 0;
    width: 100%;
    text-align: left;
}

.closer + button.orto-btn svg {
    margin-left: 5px;
    height: 15px;
}


/*/////////////////////////////////////
_________events-block__________________
/////////////////////////////////////*/

.events-block-container {
    margin-bottom: 80px;
}

.evets-content-row {
    justify-content: center;
}

.evets-content-row .first-event {
    margin-right: 25px;
    padding: 0;
    opacity: 0;
    border: 2px solid #007bde;
    transition: opacity 1000ms;
}

.animated .first-event {
    opacity: 1;
}

.second-event {
    margin-left: 10px;
    opacity: 0;
    transition: opacity 800ms;
}

.animated .second-event {
    opacity: 1;
}

.image-square {
    width: 100%;
    overflow: hidden;
    background-size: cover;
    background-position-x: center;
    margin: auto;
}

.first-event .event-text {
    padding: 15px;
    margin-top: -10px;
}

.first-event .image-square {
    background-image: url("../files/images/global/Layer-2.jpg");
    position: relative;
}

.first-event .image-square .big-date {
    left: auto;
    right: 0;
}

.first-event a:hover,
.second-event a:hover {
    text-decoration: none;
}

.image-square a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-decoration: none;
}

.first-event .image-square .two-date p:first-child {
    font-size: 40px;
}

.first-event .image-square .two-date p:last-child{
    font-size: 24px;
}

.first-event .image-square::before {
    content: "";
    padding-top: 100%;
    float: left;
}

.first-event .event-date {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    background: #007bde;
    bottom: 0;
    right: 0;
    width: 35%;
    height: 35%;
    font-family: 'Roboto Condensed', sans-serif;
}

.first-event .event-date p:first-child {
    font-size: 34px;
    margin: 0 0 -10px 0;
    font-weight: 900;
}

.first-event .event-date p:last-child {
    font-size: 21px;
    margin: 0;
}

.event-text-heading {
    text-transform: uppercase;
    margin-top: 15px;
}

.event-location {
    margin: 15px 0;
    font-size: 14px;
}

.event-text-content {
    font-size: 16px;
    margin: 0;
    padding-bottom: 15px;
    white-space: normal;
}

.second-event .event-text-heading {
    margin-top: -3px;
}

.second-event .text-date-block {
    padding: 0  0 30px 0;
}

.second-event .event-text {
    width: 60%;
    display: inline-block;
    padding-bottom: 0px;
}

.second-event .event-date {
    width: 30%;
    margin: 0 auto 30px 0;
    border: 2px solid #007bde;
    color: #007bde;
    overflow: hidden;
    float: right;
    display: inline-block;
    text-align: center;
    position: relative;
    font-family: 'Roboto Condensed', sans-serif;
}

.second-event .event-date .align-date {
    display: flex;
    /* height: 185px; */
    /* width: 100%; */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
}

.second-event .event-date::before {
    content: "";
    padding-top: 100%;
    float: left;
}

.second-event .event-date p:first-child {
    font-size: 44px;
    font-weight: 900;
    margin: 0 0 -10px 0;
}

.second-event .event-date p.first-variant {
    font-size: 56px;
}

.second-event .event-date p.second-variant {
    font-size: 38px;
}

.second-event .event-date p:last-child {
    font-size: 26px;
    margin: 0;
}

.second-event .image-square {
    background-image: url("../files/images/global/ISFD-ua.jpg");
    background-position-y: center;
    background-size: cover;
    position: relative;
}

.second-event .image-square::before {
    content: "";
    padding-top: 55%;
    float: left;
}
/*/////////////////////////////////////
_________about_us_slider_______________
/////////////////////////////////////*/

.about-us-container {
    height: calc(100vh + 200px);
    background-image: url("../files/images/global/Layer-1.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.about-us-row {
    justify-content: space-between;
    height: 100%;
    flex-wrap: nowrap;
    overflow: hidden;
}

.left-layer {
    transform: translateX(-100%);
}

.right-layer {
    transform: translateX(0%);
}

.right-layer,
.left-layer {
    position: absolute;
    background: white;
    overflow: hidden;
    height: 100%;
    width: 58%;
    transition: transform 1000ms;
}

.right-layer {
    right: 0;
}

.left-layer {
    left: 0;
}

.right-layer-heading,
.left-layer-heading {
    height: 100px;
    width: 100%;
    position: relative;
    transition: opacity 200ms, transform 800ms;
}

.left-layer-heading {
    transform: translateX(-50px);
    opacity: 0;
}

.right-layer-heading h4,
.left-layer-heading h4 {
    color: #025da6;
    position: absolute;
    bottom: 0;
    margin: 0;
    left: 40%;
    text-transform: uppercase;
    z-index: 1;
}

.right-layer-heading span:first-child,
.left-layer-heading span:first-child {
    display: block;
    height: 1px;
    width: 38%;
    left: 0;
    bottom: 20px;
    position: absolute;
    background-color: #9abfdc;
}

.right-layer-heading span:nth-child(2),
.left-layer-heading span:nth-child(2) {
    display: block;
    height: 1px;
    width: 33%;
    left: 0;
    bottom: 5px;
    position: absolute;
    background-color: #9abfdc;
}

.right-layer-heading h4 p,
.left-layer-heading h4 p {
    color: #f5f5f5;
    position: absolute;
    bottom: -14px;
    margin: 0;
    white-space: nowrap;
    left: 15%;
    font-size: 75px;
    font-weight: 900;
    z-index: -1;
}

.right-layer-content,
.left-layer-content {
    width: 75%;
    margin: 50px auto 0;
    transition: opacity 800ms;
    text-align: center;
}

.left-layer-content {
    opacity: 1;
}

.right-layer-content p,
.left-layer-content p {
    text-align: center;
    font-size: 16px;
    color: #666666;
}

.four-icons-block {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.four-icons-block .icon-block {
    width: 45%;
    padding: 30px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.outer-round,
.inner-round {
    border-radius: 50px;
}

.outer-round {
    height: 75px;
    width: 75px;
    border: 2px solid #2ca8e8;
}

.inner-round {
    width: 100%;
    height: 100%;
    border: 2px solid #49dfe0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    transform: translate(15px, 8px);
}

.inner-round img {
    height: 65%;
}

.left-layer .icon-block:last-child img {
    height: auto;
    width: 75%;
}

.icon-block p {
    width: calc(100% - 100px);
    color: #1e1e1e;
    margin-bottom: -15px;
    text-align: left;
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 500;
    line-height: 22px;
}



.right-layer-content button,
.left-layer-content a {
    display: inline-block;
    border: none;
    outline: none;
    font-family: 'Roboto Condensed', sans-serif;
    color: #4684f3;
    background: transparent;
    border-top: 1px solid #4884f4;
    border-bottom: 1px solid #4884f4;
    font-size: 20px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 50px;
    cursor: pointer;
    margin: 50px auto 0;
    text-align: center;

}

.slider-button {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 170px;
    text-align: right;
    text-transform: uppercase;
    cursor: pointer;
    transition: width 1000ms, opacity 1000ms;
}

.slider-button p {
    margin: 0 15px 0 0;
    font-size: 19px;
    color: #4da1e9;
    font-family: 'Roboto Condensed', sans-serif;
}

.slider-button span:nth-child(2) {
    width: 100%;
    height: 1px;
    display: block;
    background: #4da1e9;
}

.slider-button span:last-child {
    height: 15px;
    width: 15px;
    border-radius: 10px;
    float: right;
    background-color: rgba(77, 161, 233, .4);
    margin: -8px -5px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-button span:last-child span {
    height: 5px;
    width: 5px;
    display: block;
    background: #4da1e9;
    margin: 0;
}

.left-layer .slider-button {
    position: absolute;
    bottom: 15px;
    right: 0;
    left: auto;
    width: 100%;
    opacity: 0;
    text-align: left;
    text-transform: uppercase;
    cursor: pointer;
}

.left-layer .slider-button p {
    margin: 0 0 0 15px;
    font-size: 19px;
    color: #4da1e9;
    font-family: 'Roboto Condensed', sans-serif;
}

.left-layer .slider-button span:nth-child(2) {
    width: 100%;
    height: 1px;
    display: block;
    background: #4da1e9;
}

.left-layer .slider-button span:last-child {
    height: 15px;
    width: 15px;
    border-radius: 10px;
    float: left;
    background-color: rgba(77, 161, 233, .4);
    margin: -8px 0 0 -5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-layer .slider-button span:last-child span {
    height: 5px;
    width: 5px;
    display: block;
    background: #4da1e9;
    margin: 0;
}

.hide-right-heading {
    transform: translateX(50px);
    opacity: 0;
}

.visitor-btn {
    width: 100%;
    opacity: 0;
}

.opacity {
    opacity: 0;
}

.right-layer-transform {
    transform: translateX(100%);
}

.left-layer-transform {
    transform: translateX(0%);
}

.left-heading-show {
    opacity: 1;
    transform: translateX(0%);
}

.for-doctor-btn {
    opacity: 1 !important;
    width: 170px !important;
}
/*/////////////////////////////////////
_________orto_seo______________________
/////////////////////////////////////*/

.news-row {
    justify-content: center;
}

.news-row.animated .news-blocks {
    opacity: 1;
}

.news-blocks {
    opacity: 0;
    transition: opacity 1.5s;

}

.news-row.animated .news-blocks:first-child,
.blog-news-content.animated .news-blocks:first-child {
    opacity: 1;

}

.news-row.animated .news-blocks:nth-child(2),
.blog-news-content.animated .news-blocks:nth-child(2){
     opacity: 1;
    transition-delay: 0.5s;
 }

.news-row.animated .news-blocks:nth-child(3),
.blog-news-content.animated .news-blocks:nth-child(3){
    opacity: 1;
    transition-delay: 1s;
}

.news-container .news-row.animated .news-blocks:nth-child(4),
.blog-news-content.animated .news-blocks:nth-child(4){
    opacity: 1;
    transition-delay: 1.5s;
}

.blog-news-content.animated .news-blocks:nth-child(5) {
    opacity: 1;
    transition-delay: 2.5s;
}

.blog-news-content.animated .news-blocks:nth-child(6) {
    opacity: 1;
    transition-delay: 3s;
}

.blog-news-content.animated .news-blocks:nth-child(7) {
    opacity: 1;
    transition-delay: 2s;
}

.blog-news-content.animated .news-blocks:nth-child(8) {
    opacity: 1;
    transition-delay: 3.5s;
}

.orto-seo {
    overflow: hidden;
    transition: height 500ms;
}

.orto-seo p {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: #8a8a8a;
}

.orto-seo p:last-child {
    margin-bottom: 120px;
}

.button-position {
    margin: 20px 0 80px 50%;
    transform: translateX(-50%);
}
/*/////////////////////////////////////
_________news_blocks___________________
/////////////////////////////////////*/

.blog-news-content {
    justify-content: flex-start;
    padding-top: 50px;
    padding-bottom: 50px;
}

.news-blocks {
    width: 30%;
    margin: 0 15px;
    position: relative;
    overflow: hidden;
    background: #017bde;
}

.news-blocks::before {
    content: "";
    padding-top: 100%;
    float: left;
}

.news-blocks:nth-child(4n+2) {
    background-size: cover;
    background-position: center;
}

.news-blocks:nth-child(4n+3)::before {
    content: "";
    padding-top: 100%;
    float: left;
    /*display: none;*/
}

.news-blocks:nth-child(4n+3):not(:last-child) {
    margin-bottom: calc(-30% - 30px);
}

.news-blocks:nth-child(4n+4) {
    margin-right: calc(30% + 45px);
    width: calc(60% + 30px);
    margin-top: 30px;
    margin-bottom: 30px;
    background-size: cover;
    background-position: center;
}

.news-blocks:nth-child(4n+4)::before {
    content: "";
    padding-top: calc(50% - 15px);
    float: left;
}

.news-blocks:nth-child(8) {
    margin: 30px 0 30px calc(30% + 45px);
}

.news-blocks a {
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-size: cover;
    background-position: center;
}

.news-blocks:nth-child(4n+3):not(:last-child) .big-date-block {
    height: 30%;
}

.news-blocks:nth-child(4n+3):not(:last-child) .big-date-block p:first-child {
    margin-top: 80px;
}

.news-blocks:nth-child(4n+3) {
    background: #035ea7;
}

.news-blocks:nth-child(4n+1) {
    background: #017bde;
}

.big-date-block {
    font-family: 'Roboto Condensed', sans-serif;
    text-decoration: none;
}

.small-date-block {
    font-family: 'Roboto', sans-serif;
}

.big-date-block {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    color: white;
    text-align: center;
}

.big-date-block p {
    margin: 0;
}

.big-date-block p:first-child {
    font-weight: 900;
    font-size: 52px;
    margin: 30px auto -15px;
}

.big-date-block p:last-child {
    font-size: 21px;
    letter-spacing: 1px;
}

.small-date-block {
    position: absolute;
    left: 25px;
    bottom: 25px;
    font-size: 12px;
    color: white;
}

.small-date-block svg {
    height: 12px;
    fill: white;
    margin-right: 5px;
}

.viewers-counter {
    position: absolute;
    right: 25px;
    bottom: 25px;
    font-size: 12px;
    color: white;
}

.viewers-counter svg {
    height: 12px;
    fill: white;
    margin-right: 5px;
}

.news-blocks .content {
    position: absolute;
    top: 40%;
    bottom: 50px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
    padding: 0 25px;
}

.news-blocks:nth-child(4n+3):not(:last-child) .content {
    top: 30%;
    justify-content: flex-start;
}

.content .news-category {
    font-size: 12px;
}

.content .news-heading {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    max-height: 72px;
    overflow: hidden;
    margin: 0 0 10px 0;
}

.news-blocks:nth-child(4n+4):not(:last-child) .content .news-heading {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    max-height: 48px;
    overflow: hidden;
    margin: 10px 0 15px;
}

.news-blocks:last-child .content .curent-content {
    overflow: hidden;
    line-height: 21px;
    max-height: 42px;
    font-size: 16px;
}

.content .curent-content {
    overflow: hidden;
    line-height: 21px;
    max-height: 42px;
    font-size: 16px;
}

.news-blocks:nth-child(1){
    order: 1;
}

.news-blocks:nth-child(2){
    order: 2;
}

.news-blocks:nth-child(3){
    order: 3;
}

.news-blocks:nth-child(4){
    order: 4;
}

.news-blocks:nth-child(5){
    order: 6;
}

.news-blocks:nth-child(6){
    order: 7;
}

.news-blocks:nth-child(7){
    order: 5;
}

.news-blocks:nth-child(8){
    order: 8;
}
/*/////////////////////////////////////
_________open-blog-content_____________
/////////////////////////////////////*/

.open-news-header .viewers-counter {
    position: absolute;
    right: 15px;
    top: 90px;
    font-size: 14px;
    color: #1283df;
}

.open-news-header .viewers-counter svg {
    height: 16px;
    fill: #1283df;
    margin-right: 5px;
}

.open-news-header {
    margin: 50px 0 50px -15px;
}

.open-news-header h3,
.open-news-header p {
    padding-left: 250px;
}

.open-news-header h3 {
    text-transform: uppercase;
    color: #1283df;
}

.open-news-header p {
    font-size: 14px;
    margin-bottom: 30px;
}

.image-header-block {
    position: relative;
    width: 100%;
    margin: 0;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.open-event-row .image-header-block {
    position: relative;
    width: 100%;
    margin: 0;
    background-size: cover;
    background-position: center;
    overflow: initial;
}

.image-header-block::before {
    content: "";
    padding-top: 50%;
    float: left;
}

.big-date {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    background: #007bde;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 150px;
    font-family: 'Roboto Condensed', sans-serif;
}

.first-event .event-date .big-date {
    width: 100%;
    height: 100%;
}

.big-date p:first-child {
    font-size: 60px;
    margin: 0 0 -10px 0;
    font-weight: 900;
    padding: 0;
}

.big-date p:last-child {
    font-size: 34px;
    margin: 0;
    padding: 0;
}

.open-news-content {
    width: calc(100% - 250px + 15px);
    padding-bottom: 150px;
}

.open-news-content ol {
    padding-left: 25px;
    margin-bottom: 0;
    display: inline-block;
}

.open-news-content ol a {
    font-size: 14px;
}

.open-news-content ol a:first-child {
    margin-left: -25px;
}
.open-news-content p {
    width: 95%;
    color: #444444;
    margin-bottom: 50px;
}

#news-content {
    padding-top: 50px;
}
/*/////////////////////////////////////
_________photo-gallery_________________
/////////////////////////////////////*/

.photo-gallery-row {
    justify-content: center;
}

.card-columns {
    column-count: 4;
}

.image-wrapper {
    width: 100%;
    margin-bottom: 30px;
}

.image-wrapper img {
    width: 100%;
}

.card-columns .card {
    margin-bottom: 20px;
}

.card,
.card-img-top {
    border: none;
    border-radius: 0;
}

.upload-more {
    cursor: pointer;
    padding: 50px;
    text-transform: uppercase;
    width: 250px;
    text-align: center;
    font-size: 14px;
    font-family: 'Roboto Condensed', sans-serif;
    margin: auto;
}

.upload-more p {
    color: #4985f5;
    position: relative;
    padding-right: 30px;
    display: inline-block;
    margin: 0;
}

.upload-more p::before,
.upload-more p::after {
    content: '';
    display: block;
    background: #4985f5;
    height: 1px;
    width: 10px;
    position: absolute;
}

.upload-more p::before {
    top: 10px;
    right: 8px;
    transform: rotate(35deg);
}

.upload-more p::after {
    right: 0;
    top: 10px;
    transform: rotate(-35deg);
}

.prev-photo,
.next-photo {
    position: absolute;
    top: 50%;
    height: 0;
    transform: translateY(50%);
    padding: 30px;
    cursor: pointer;
}

.prev-photo {
    left: 0;
}

.next-photo {
    right: 0;
}

.prev-photo span,
.next-photo span {
    position: relative;
    display: block;
    height: 2px;
    width: 30px;
    background: white;
}

.prev-photo span:first-child,
.next-photo span:last-child {
    transform: rotate(-45deg);
}

.prev-photo span:last-child,
.next-photo span:first-child {
    transform: rotate(45deg);
}

.prev-photo span:last-child
{
    bottom: -9px;
}

.prev-photo span:first-child {
    top: -9px;
}

.next-photo span:last-child {
    bottom: -9px;
}

.next-photo span:first-child {
    top: -9px;
}

/*/////////////////////////////////////
_________video-gallery_________________
/////////////////////////////////////*/

.video-frame-block {
    width: 33.333%;
    padding: 0 15px;
    margin: 15px 0;
}

.video-frame-block iframe {
    width: 100%;
    border: none;
}

.video-frame-block p {
    width: 100%;
}

.video-frame-block:first-child iframe {
    width: 100%;
    height: 360px;
}

.video-frame-block:first-child {
    width: 100%;
}



.video-row.two .video-frame-block {
    width: 50% !important;
}

.video-row.two .video-frame-block iframe {
    height: 250px;
}

.video-row.three .video-frame-block {
    width: 50%;
}

.video-row.three .video-frame-block:first-child {
    width: 100%;
}

.video-row.three .video-frame-block:first-child iframe {
    width: 100%;
    height: 360px;
}

.video-row.three .video-frame-block iframe {
    width: 100%;
    height: 250px;
}

/*/////////////////////////////////////
_________news-share-block______________
/////////////////////////////////////*/

.share-news {
    width: 250px;
    margin-left: -15px;
    padding-right: 100px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.share-news a {
    height: 25px;
    width: 25px;
    display: inline-block;
    margin-top: 15px;
}

.share-news a:first-child {
    margin-top: 0;
}

.share-news svg {
    fill: #027cdf;
    height: 25px;
    width: 25px;
}

.share-news p {
    margin: 20px 0;
    writing-mode: vertical-lr;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.share-news span {
    display: block;
    height: 120px;
    width: 1px;
    background-color: #027cdf;
}
/*/////////////////////////////////////
_________similar-news-block____________
/////////////////////////////////////*/

.similar-news-block {
    padding-bottom: 1px;
}

.similar-news-wrapper {
    padding-top: 100px;
}

.similar-news-block h4:first-child {
    padding-left: 25px;
    font-weight: 400;
    text-transform: uppercase;
    padding-top: 35px;
}

.similar-news {
    width: 85%;
    margin: 50px auto;
    background: #017bde;
    overflow: hidden; /* clearfix */
    position: relative;
    background-size: cover;
    background-position: center;
}

.similar-news::before {
    content: "";
    padding-top: 70%;
    float: left;
}

.similar-news a {
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.big-date-block {
    font-family: 'Roboto Condensed', sans-serif;
    text-decoration: none;
}

.small-date-block {
    font-family: 'Roboto', sans-serif;
}

.big-date-block {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    color: white;
    text-align: center;
}

.big-date-block p {
    margin: 0;
}

.big-date-block p:first-child {
    font-weight: 900;
    font-size: 42px;
    margin: 10px auto -15px;
}

.big-date-block p:last-child {
    font-size: 18px;
    letter-spacing: 1px;
}

.small-date-block {
    position: absolute;
    left: 25px;
    bottom: 25px;
    font-size: 12px;
    color: white;
}

.small-date-block svg {
    height: 12px;
    fill: white;
    margin-right: 5px;
}

.similar-news .viewers-counter {
    position: absolute;
    right: 25px;
    bottom: 25px;
    top: auto;
    font-size: 12px;
    color: white;
}

.similar-news .viewers-counter svg {
    height: 14px;
    fill: white;
    margin-right: 5px;
}

.similar-news .content {
    position: absolute;
    top: 40%;
    bottom: 50px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
    padding: 0 25px;
}

.similar-news .content p {
    margin: 0;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
}

.similar-news .content span {
    font-size: 12px;
    margin-bottom: 10px;
    font-weight: 500;
}

/*/////////////////////////////////////
_________events-page___________________
/////////////////////////////////////*/

.first-screen.events {
    background-image: url('../files/images/global/104166707-GettyImages-483692773.jpg');
}

.main-event-row {
    padding: 30px 0;
}

.events-row .events-blocks {
    width: 33.333%;
    padding: 0 15px;
    margin: 30px 0;
    display: flex;
    flex-direction: column;
}

.main-event-row .events-blocks:first-child {
    width: 100%;
    padding: 0 15px;
    margin: 30px 0;
    display: flex;
    flex-direction: row;
}

.events-blocks {
    opacity: 0;
    transition: opacity 1.5s;
}

.main-event-row.animated .events-blocks {
    opacity: 1;
}

.events-row.animated .events-blocks:first-child {
    opacity: 1;
}

.events-row.animated .events-blocks:nth-child(2){
    opacity: 1;
    transition-delay: 0.5s;
}

.events-row.animated .events-blocks:nth-child(3){
    opacity: 1;
    transition-delay: 0.8s;
}

.events-row.animated .events-blocks:nth-child(4){
    opacity: 1;
    transition-delay: 1.1s;
}

.events-row.animated .events-blocks:nth-child(5){
    opacity: 1;
    transition-delay: 1.4s;
}

.events-row.animated .events-blocks:nth-child(6){
    opacity: 1;
    transition-delay: 1.7s;
}

.events-row .events-blocks .image-block {
    width: 100%;
    background: silver;
    background-size: cover;
    background-position: center;
    position: relative;
    margin: 0 0 10px 0;
}

.events-row .events-blocks .image-block .big-date {
    right: 0;
    left: auto;
    width: 150px;
    height: 150px;
}

.events-row .events-blocks .image-block.past-event .big-date {
    background: #ebebeb;
    color: #858585;
}

.events-row .events-blocks .image-block .big-date p:first-child {
    font-size: 40px;
    margin: 0 0 -10px 0;
    font-weight: 900;
    padding: 0;
}

.events-row .events-blocks .image-block .big-date.two-date p:first-child,
.first-event .image-square .big-date.two-date p:first-child,
.second-event .event-date p.second-variant {
    font-size: 28px !important;
    margin: 0 0 -10px 0;
    font-weight: 900;
    padding: 0;
}

.events-row .events-blocks .image-block .big-date p:last-child {
    font-size: 28px;
    margin: 0;
    padding: 0;
}

.main-event-row .events-blocks:first-child .image-block .big-date p:first-child {
    font-size: 60px;
    margin: 0 0 -10px 0;
    font-weight: 900;
    padding: 0;
}

.main-event-row .events-blocks:first-child .image-block .big-date.two-date p:first-child,
.open-event-row .image-header-block .two-date .big-date-block p:first-child {
    font-size: 34px;
    margin: 0 0 0px 0;
    font-weight: 900;
    padding: 0;
}

.open-event-row .image-header-block .two-date .big-date-block p:first-child {
    margin: 0 auto -10px;
}

.open-event-row .image-header-block .two-date .big-date-block p:last-child {
    font-size: 28px;
}

.main-event-row .events-blocks:first-child .image-block .big-date p:last-child {
    font-size: 34px;
    margin: 0;
    padding: 0;
}

.main-event-row .events-blocks .image-block.past-event .big-date {
    background: #ebebeb;
    color: #858585;
}

.main-event-row .events-blocks:first-child .image-block .big-date {
    right: auto;
    left: 0;
    width: 200px;
    height: 200px;
}


.events-row .events-blocks .image-block::before {
    content: "";
    padding-top: 100%;
    float: left;
}

.main-event-row .events-blocks:first-child .image-block {
    width: 60%;
    background: silver;
    overflow: hidden;
    margin: 0 20px 0 0;
    position: relative;
    background-size: cover;
    background-position: center;
}

.main-event-row .events-blocks .image-block a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-decoration: none;
}

.events-row .events-blocks .image-block a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-decoration: none;
}

.main-event-row .events-blocks:first-child .image-block::before {
    content: "";
    padding-top:75%;
    float: left;
}

.events-row .events-blocks .event-content {
    padding: 10px 0 0;
}

.main-event-row .events-blocks:first-child .event-content {
    padding: 0 0 0 20px;
    width: 40%;
    display: flex;
    flex-direction: column;
}

.main-event-row .events-blocks:first-child .event-content a {
    text-decoration: none;
}
.events-row .events-blocks .event-content a {
    text-decoration: none;
}

.events-row .events-blocks .event-content h5 {
    color: #1f1f1f;
    text-transform: uppercase;
    font-weight: 100;
}

.main-event-row .events-blocks:first-child .event-content h5 {
    color: #007bdd;
    font-weight: 500;
    text-transform: uppercase;
}

.events-row {
    padding-bottom: 50px;
}

/*/////////////////////////////////////
_________open-events-page______________
/////////////////////////////////////*/

.open-event-row {
    justify-content: center;
}

.open-event-row .image-header-block {
    position: relative;
    width: calc(100% - 320px);
    margin: 0;
    background-size: cover;
    background-position: center;
}

.open-event-row .image-header-block .big-date {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -320px;
    width: 320px;
    height: auto;
    justify-content: space-evenly;
}

.open-event-row .image-header-block .big-date p:last-child {
    margin: 0;
    font-size: 16px;
    text-align: center;
    padding: 15px;
    font-family: 'Roboto', sans-serif;
}

.open-event-row .image-header-block::before {
    padding-top: 50%;
}

.open-event-row .image-header-block .big-date-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: static;
    height: auto;
    width: 100%;
}

.open-event-row .image-header-block .big-date h3 {
    color: white;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 21px;
    font-weight: 600;
    padding: 0px 50px;
}

.share-news {
    height: 370px;
    width: 200px;
    padding-right: 0;
    margin: 0;
}

.share-news.scroll-sidebar {
    padding-bottom: 30px;
    padding-top: 30px;
}

.open-event-row .open-news-header {
    margin: 80px 0 50px;
    display: flex;
    justify-content: flex-end;
}

.open-event-row .event-content {
    display: flex;
    flex-direction: row;
}

.open-event-content {
    width: calc(100% - 200px);
    overflow: hidden;
    padding-bottom: 120px;
}

.open-event-content .before-button,
.open-event-content .program,
.open-event-content .orto-btn,
.open-event-content .sponsor-row{
    margin-bottom: 50px;
}

.open-event-content .sponsor-row {
    flex-direction: row;
}

.open-event-content .sponsor-row a,
.open-event-content .sponsor-row img {
    width: 100%;
}
.open-event-content .sponsor-row a {
    padding: 20px;
    width: 25%;
}


.open-event-content .files {
    height: 21px;
    color: #1e8ce3;
    font-family: 'Roboto Condensed', sans-serif;
    margin-bottom: 20px;
}

.open-event-content .files a {
    text-decoration: none;
    position: relative;
    display: inline-block;
    bottom: -3px;
}

.open-event-content .files a::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 4px;
    left: 0;
    right: 0;
    background-color: #1e8ce3;
}

.open-event-content .files svg {
    height: 21px;
    width: 21px;
    fill: #1e8ce3;
}

/*/////////////////////////////////////
_________doctors_page__________________
/////////////////////////////////////*/

.doctors-search-row {
    justify-content: space-between;
}

.doctors-search-row .burger-col {
    display: block;
}

.doctors-search-row form {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    padding: 25px 2.5%;
    margin-top: 40px;
}

.doctors-search-row form .form-group, .doctors-search-row form button {
    display: inline-block;
    margin: 0;
}

.doctors-search-row form .form-group {
    width: 100%;
}

#searchform-search {
    padding: 0 10px;
    height: 21px;
    margin-top: 20px;
    width: 100%;
    transition: width 1500ms, padding 1500ms;
}

.doctors-search-row form .cont {
    padding: 6px 40px;
    cursor: pointer;
}

.first-screen.without-filter {
    height: 375px;
}

.first-screen.doctors {
    background-image: url("../files/images/global/people_1280x768a.jpg");
}

.teretories {
    font-family: 'Roboto Condensed', sans-serif;
    background-color: #f5f5f5;
    position: relative;
}

.teretories{
    display: block;
}

.teretories .links {
    padding-bottom: 50px;
}

.teretories.mobi {
    display: none;
}

.teretories .heading-row {
    padding: 80px 0 10px;
    position: relative;
}

.teretories .heading-row p {
    font-size: 21px;
    width: 100%;
    padding-left: 120px;
    position: relative;
    color: #015fa9;
}

.teretories .heading-row p::before,
.teretories .heading-row p::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    height: 1px;
    background: #94b9d6;
}

.teretories .heading-row p::before {
    width: 100px;
    top: 5px;
}

.teretories .heading-row p::after {
    width: 80px;
    bottom: 5px;
}

.teretories a {
    display: inline-block;
    padding-left: 120px;
    position: relative;
    width: calc(100% + 30px);
    margin: 10px -15px 0;
    font-size: 18px;
    color: #1f1f1f;
    transition: color 250ms;
}

.teretories a::before {
    content: '';
    display: block;
    width: 0;
    background-color: #007add;
    height: 2px;
    position: absolute;
    top: -3px;
    left: 0;
    transition: width 250ms;
}

.teretories a:hover {
    color: #007ce0;
    text-decoration: none;
}

.teretories a.active-teretory {
    color: #007ce0;
}

.teretories a.active-teretory::before {
    content: '';
    display: block;
    width: 140px;
    background-color: #007add;
    height: 2px;
    position: absolute;
    top: -3px;
    left: 0;
    transition: width 250ms;
}

.doctors-row {
    justify-content: flex-start;
}

.director-row .doctor {
    opacity: 1;
}

.text-center .doctor {
    opacity: 1;
}

.doctor {
    width: 20%;
    margin: 20px 2.5%;
    position: relative;
    background-image: url("../files/images/global/1234.png");
    overflow: hidden;
    background-position: center -25px;
    background-size: cover;
    opacity: 0;
    transition: opacity 600ms;
}

.doctor::before {
    content: "";
    padding-top: 120%;
    float: left;
}

.doctor .doctor-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: #017bde;
    display: flex;
    justify-content: center;
    align-items: center;
}

.doctor .doctor-name p {
    color: white;
    font-size: 14px;
    white-space: normal;
    padding: 0;
    margin: 0;
    text-align: center;
}

.doctor a {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/*/////////////////////////////////////
_________directors_page________________
/////////////////////////////////////*/

.about-organization {
    background-color: #f5f5f5;
    padding: 100px 25px 25px;
}

.about-organization div:first-child {
    padding-top: 25px;
    padding-bottom: 25px;
}

.about-organization h4 {
    text-transform: uppercase;
    color: #202020;
    font-size: 1.5rem;

}

.about-organization p {
    color: #6b6b6b;
    text-align: justify;
}

.director-row {
    justify-content: center;
}

.director-row .doctor-wrapper,
.director-row .vice-director .doctor{
    opacity: 0;
    transition: opacity 1.5s;
}

.director-row.animated .doctor-wrapper,
.director-row.animated .doctor {
    opacity: 1;
}

.director-row.animated .doctor-wrapper:first-child,
.director-row.animated .doctor:first-child{
    opacity: 1;
}

.director-row.animated .doctor-wrapper:nth-child(2),
.director-row.animated .doctor:nth-child(2){
    opacity: 1;
    transition-delay: 0.5s;
}

.director-row.animated .doctor-wrapper:nth-child(3),
.director-row.animated .doctor:nth-child(3){
    opacity: 1;
    transition-delay: 0.8s;
}

.director-row.animated .doctor-wrapper:nth-child(4),
.director-row.animated .doctor:nth-child(4){
    opacity: 1;
    transition-delay: 1.1s;
}

.director-row.animated .doctor-wrapper:nth-child(5),
.director-row.animated .doctor:nth-child(5){
    opacity: 1;
    transition-delay: 1.4s;
}

.director-row.animated .doctor-wrapper:nth-child(6),
.director-row.animated .doctor:nth-child(6){
    opacity: 1;
    transition-delay: 1.7s;
}

.director-row .doctor {
    float: left;
    margin: 20px 30px;
    width: 33.333%;
}

.director-row .doctor::before,
.doctor-wrapper .doctor::before{
    padding-top: 135%;
}

.director-row .doctor .doctor-name,
.doctor-wrapper .doctor .doctor-name{
    height: 70px;
    text-transform: uppercase;
}

.heading-row.mini-heading-row h4 {
    padding-left: 140px;
}

.open-event-heading-row h4 {
    padding-left: 15px !important;
}

.open-event-heading-row h4::before,
.open-event-heading-row h4::after {
    display: none !important;
}

.heading-row.mini-heading-row h4::before {
    width: 120px;
}

.heading-row.mini-heading-row h4::after {
    width: 90px;
}

.director-row .doctor ~ p {
    float: right;
    width: calc(100% - 33.333% - 60px);
    padding: 0 100px 0 20px;
    margin: 20px 0 0 0;
}

.director-row .doctor ~ p:last-child {
    margin-bottom: 20px;
}

.director-row .doctor + p,
.doctor + p{
    font-weight: 600;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.vice-director {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.director-row .vice-director .doctor {
    width: calc(25% + 1px);
}

.director-row .vice-director .doctor:nth-child(3n+1) {
    margin-left: 80px;
}

.director-row .vice-director .doctor:nth-child(3n+3) {
    margin-right: 80px;
}

.director-row .vice-director .doctor-wrapper {
    display: flex;
    flex-direction: column;
    width: calc(25% + 1px);
    margin: 20px 30px;
}

.director-row .vice-director .doctor-wrapper:nth-child(3n+1) {
    margin-left: 80px;
}

.director-row .vice-director .doctor-wrapper:nth-child(3n+3) {
    margin-right: 80px;
}

.director-row .vice-director .doctor-wrapper .doctor,
.doctor-wrapper .doctor{
    width: 100%;
    margin: 0;
}

.director-row .vice-director .doctor-wrapper .doctor + p,
.doctor-wrapper .doctor + p{
    width: auto;
    height: auto;
    padding: 0;
    text-align: center;
    color: #007add;
}

.doctor[onclick] {
    cursor: pointer;
}

/*/////////////////////////////////////
_________director_slider_______________
/////////////////////////////////////*/

.text-center {
    padding: 15px 80px;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
}

.owl-carousel .owl-nav button.owl-next {
    right: -45px;
}

.owl-carousel .owl-nav button.owl-prev {
    left: -45px;
}

.owl-nav .owl-prev.orto-btn svg,
.owl-nav .owl-next.orto-btn svg{
    height: 40px;
}

.owl-nav .owl-prev.orto-btn svg {
    transform: rotate(90deg);
}

.owl-nav .owl-next.orto-btn svg{
    transform: rotate(-90deg);
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent;
    color: #FFF;
    text-decoration: none;
}

/*/////////////////////////////////////
_________pager_________________________
/////////////////////////////////////*/

.pager-row {
    padding: 0 0 80px;
    justify-content: center;
}

.pager-row .pager {
    margin: 0;
    padding: 0;
}

.pager-row .pager li {
    display: inline-block;
    margin: 0 5px;
}

.pager-row .pager li a {
    color: #333333;
}

.pager-row .pager li.prev span,
.pager-row .pager li.next span,
.pager-row .pager li.prev a,
.pager-row .pager li.next a {
    color: #2891e4;
}

.pager-row .pager li.disabled span,
.pager-row .pager li.disabled a {
    color: #555555 !important;
}

.pager-row .pager li a:hover {
    color: #555555;
    text-decoration: none;
}

.pager-row .pager li.active a {
    color: #007adf;
    font-weight: 600;
}

.pager-row .pager li.active a:hover {
    text-decoration: none;
    color: #007adf;
}

/*/////////////////////////////////////
_________mini-header___________________
/////////////////////////////////////*/

.first-screen {
    height: 435px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 180px;
    background-image: url("../files/images/global/11739-593a26d9d3732.jpg");
    background-size: cover;
    background-position-y: -200px;
}

.page-heading {
    position: relative;
    text-transform: uppercase;
    color: white;
    margin-left: -15px;
    padding-left: 250px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, .4);
}

.page-heading::before,
.page-heading::after {
    content: '';
    display: block;
    height: 1px;
    background-color: white;
    left: 0;
    position: absolute;
    opacity: .7;
}

.page-heading::before {
    width: 220px;
    top: 10px;
}

.page-heading::after {
    width: 170px;
    bottom: 10px;
}

.filter-row {
    margin: 0 -15px 40px;
    background-color: white;
    height: 60px;
    font-family: 'Roboto Condensed', sans-serif;
}

.filter-row a {
    color: #444444;
    display: inline-block;
    line-height: 60px;
    height: 100%;
    font-size: 21px;
    margin: 0 30px;
    text-decoration: none;
    font-weight: bold;
}

.filter-row a:first-child {
    margin: 0 30px 0 0;
}

.filter-row a:last-child {
    margin: 0 0 0 30px;
}

.active-filter-position {
    position: relative;
    color: #007adf !important;
    /*border-top: 5px solid #007adf !important;*/
}

.active-filter-position::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background-color: #007adf;
}

.filter-links {
    display: inline-block;
    width: calc(100% - 120px);
    height: 100%;
    margin: auto;
    padding-left: 250px;
}

.filter-row.active .filter-links {
    overflow: hidden;
}

.filter-row.active .filter-links {
    padding-left: 190px;
}

.inner-crop-links {
    display: inline-block;
    height: 100%;
    white-space: nowrap;
}

.left-arrow {
    float: left;
}

.right-arrow {
    float: right;
}

.left-arrow span:first-child {
    transform: translate(15px, 23px) rotate(-45deg);
}

.left-arrow span:last-child {
    transform: translate(15px, 36px) rotate(45deg);
}

.right-arrow span:first-child {
    transform: translate(15px, 23px) rotate(45deg);
}

.right-arrow span:last-child {
    transform: translate(15px, 36px) rotate(-45deg);
}

.left-arrow,
.right-arrow {
    display: inline-block;
    height:60px;
    width: 60px;
    cursor: pointer;
    display: none;
}

.filter-row.active .left-arrow,
.filter-row.active .right-arrow {
    display: inline-block;
}

.left-arrow span,
.right-arrow span {
    display: block;
    height: 1px;
    width: 20px;
    background-color: #202020;
}

.bread-crumbs {
    width: 100% !important;
}

.bread-crumbs a {
    font-size: 14px;
    margin: 0 !important;
}

.bread-crumbs a:not(:last-child) {
    color: #007bdb;
}

.bread-crumbs a:first-child {
    margin: 0;
}

.bread-crumbs a:last-child {
    margin: 0;
}

.bread-crumbs a:first-child::before {
    display: none;
}

.bread-crumbs a::before {
    content: '/';
    margin-right: 5px;
    color: #007bdb;
}

.bread-crumbs a:last-child::before {
    content: '/';
    margin-right: 5px;
    color: #202020;
}


/*/////////////////////////////////////
_________modal_________________________
/////////////////////////////////////*/

.modal {
    padding: 0!important;
}

.modal-dialog {
    margin: 0;
    max-width: 100%;
}

.modal-content {
    margin-left: 50%;
    height: 100vh;
    width: 50vw;
    border-radius: 0;
    border: none;
}

.modal-row {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
}

.modal.fade .modal-dialog {
    transition: -webkit-transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out,-webkit-transform .3s ease-out;
    -webkit-transform: translate(0,0);
    transform: translate(0,0);
}

.modal.show .modal-dialog {
    -webkit-transform: translate(0,0);
    transform: translate(0,0);
}

.modal-header {
    background-color: #017bde;
    border: none;
    border-radius: 0;
    min-height: 340px;
    max-height: 340px;
    padding: 0;
    display: block;
}

.right-modal-content {
    width: calc(100% - 340px);
    float: right;
}

.modal-header h4 {
    color: white;
    width: calc(100% - 60px);
    margin-top: 40px;
    padding: 0 100px 0 40px;
    text-transform: uppercase;
    display: inline-block;
}

.modal-header p {
    color: #fafcf9;
    width: calc(100% - 60px);
    margin-top: 35px;
    padding: 0 100px 0 40px;
}

.modal-header button.close {
    opacity: 1;
    margin: 20px 10px 0 0;
    padding: 10px;
    height: 50px;
    width: 50px;
}

button.close svg {
    fill: white;
}

.modal-photo {
    position: relative;
    min-width: 340px;
    width: 340px;
    margin: 0;
    background-image: url(../files/images/global/1234.png);
    overflow: hidden; /* clearfix */
    background-position: center center;
    background-size: cover;
    float: left;
}

.modal-photo p {
    position: absolute;
    display: inline-block;
    bottom: 0;
    left: 0;
    background-color: #017bde;
    color: #fafcfb;
    margin: 0;
    padding: 10px 15px !important;
    width: auto;
}

.modal-photo::before {
    content: "";
    padding-top: 100%;
    float: left;
}

.modal-body {
    padding: 30px;
}

.modal-body-scroll {
    position: absolute;
    overflow-y: auto;
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 30px;
    padding-right: 30px;
}

.modal-body p {
    color: #666666;
    font-weight: 300;
}

.modal-body-scroll::-webkit-scrollbar-button {
    background-image: url('');
    background-repeat: no-repeat;
    width: 5px;
    height: 0px
}

.modal-body-scroll::-webkit-scrollbar-track {
    background-color: transparent;
}

.modal-body-scroll::-webkit-scrollbar-thumb {
    -webkit-border-radius: 0px;
    border-radius: 0px;
    background-color: #017bde;
}

.modal-body-scroll::-webkit-scrollbar-thumb:hover {
    background-color: #0070ca;
}

.modal-body-scroll::-webkit-resizer {
    background-image: url('');
    background-repeat: no-repeat;
    width: 2px;
    height: 0px
}

.modal-body-scroll::-webkit-scrollbar {
    width: 2px;
}

/*/////////////////////////////////////
_________login_modal___________________
/////////////////////////////////////*/

.login-modal {
    margin-left: 60%;
    width: 40vw;
}

.nav-tabs {
    border: none;
}

.nav-tabs .nav-link {
    border-radius: 0;
}

.nav-item {
    width: calc(50% - 25px);
    height: 50px;
}

.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
    border: none;
}

.nav-tabs .nav-link {
    background-color: #fff;
    color: #007bde;
    height: 100%;
    border: none;
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 34px;
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    display: inline-block;
    width: 100%;
}

.nav-tabs .nav-link.active {
    background-color: #007bde;
    color: #fff;
    cursor: default;
}

.login-modal button.close {
    width: 50px;
    height: 50px;
    opacity: 1;
}

.login-modal .tab-pane {
    padding: 15px;
}

.login-modal button.close svg {
    fill: #007bde;
}

.login-modal .heading-row h4 {
    padding-left: 100px;
    font-size: 18px;
    color: #1f89e1;
}

.login-modal .heading-row {
    padding-bottom: 15px;
}

.login-modal .heading-row h4::before {
    top: 4px;
    width: 85px;
}

.login-modal .heading-row h4::after {
    top: 18px;
    width: 55px;
}

.login-modal-wrapper {
    padding-left: 85px;
    padding-right: 60px;
}

.login-modal .repair-password {
    font-size: 14px;
    margin-bottom: 50px;
}

.login-modal .repair-password a {
    position: relative;
    text-decoration: none;
    color: #1183e0;
}

.login-modal .repair-password a::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    right: 0;
    background: #1183e0;
}

.login-modal .repair-password a:hover {
    text-decoration: none;
    color: #067edf;
}

.login-modal .repair-password a:hover::before {
    background-color: #067edf;
}

.form-control {
    display: block;
    margin: 0;
    float: right;
    width: calc(100% - 60px);
    height: 24px;
    line-height: 24px;
    padding: 0 10px;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #067edf;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border: none;
    border-bottom: 1px solid #067edf;
    outline: none;
    box-shadow: none;
}

.login-modal-wrapper label:not([for="loginform-rememberme"]) {
    width: 60px;
}

.form-group {
    font-family: 'Roboto Condensed', sans-serif;
}

.field-loginform-rememberme,
.field-loginform-rememberme + button[type="submit"] {
    display: inline-block;
    margin-top: 50px;
}

.field-loginform-rememberme {
    float: left;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
}

.field-loginform-rememberme + button[type="submit"] {
    float: right;
}

.field-loginform-rememberme {
    height: 60px;
    display: flex;
    align-items: center;
}

label[for="loginform-rememberme"] {
    margin: 0;
}

#loginform-rememberme {
    transform: translateY(3px);
}

#loginform-rememberme::before {
    content: '';
    display: block;
    height: 12px;
    width: 12px;
    border: 1px solid #067edf;
    background: #fff;
}

#loginform-rememberme:checked::before {
    background: #067edf;
}

.field-loginform-rememberme + button[type="submit"] {
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 28px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    outline: none;
    border: none;
    padding: 8px 60px;
    text-decoration: none;
    background: #067edf;
    color: #fff;
}

.field-loginform-rememberme + button[type="submit"]:focus {
    background: #067edf;
    outline: none;
    border: none;
}

.registration-modal-wrapper {
    padding: 0 60px 0 85px;
}

.registration-modal-wrapper .nav-item:first-child {
    width: 25%;
}

.registration-modal-wrapper span.separator:nth-child(2),
.registration-modal-wrapper span.separator:nth-child(4) {
    display: block;
    height: 1px;
    width: 5%;
    background: #77b8ed;
    margin-top: 11px;
}

.registration-modal-wrapper .nav-item:nth-child(3) {
    width: 22%;
    text-align: center;
}

.registration-modal-wrapper .nav-item:last-child {
    width: 43%;
    text-align: right;
}

.registration-modal-wrapper .form-control {
    width: 66.666%;
}

.registration-modal-wrapper .tab-pane {
    padding-right: 0;
    padding-left: 0;
}

.nav-pills .nav-link.active {
    background: #fff;
    color: #007bff;
}

.registration-modal-wrapper .nav-item .nav-link {
    color: #6c6c6c;
    padding: 0;
    display: inline-block;
    position: relative;
}

.registration-modal-wrapper .nav-item {
    position: relative;
}

.registration-modal-wrapper .nav-item::before {
    content: '';
    position: absolute;
    display: block;
    top: -5px;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 999;
}

.registration-modal-wrapper .nav-item.active-registration-tab .nav-link {
    color: #017bde;
}

.registration-modal-wrapper .nav-item.active-registration-tab .nav-link::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    top: -3px;
    left: 0;
    right: 0;
    background-color: #017bde;
}

.registration-modal-wrapper .nav-item.active-registration-tab + .nav-item .nav-link {
    color: #444444;
}

.has-error .help-block {
    font-size: 12px;
    color: #c71515;
    margin-bottom: 0;
}

.login-modal-wrapper p.help-block.help-block-error {
    width: auto;
    margin-left: 60px;
    margin-top: -5px;
}

.registration-modal-wrapper .has-error .help-block {
    width: 66.666%;
    margin-left: 33.333%;
    margin-top: -5px;
}

.registration-modal-wrapper #pills-second-step .form-control {
    width: 50%;
}

.registration-modal-wrapper .tab-pane .cont,
.registration-modal-wrapper .tab-pane button[type="submit"],
.cont {
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 28px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    outline: none;
    border: none;
    padding: 8px 60px;
    text-decoration: none;
    background: #067edf;
    color: #fff;
    float: right;
}

.registration-request-password {
    justify-content: center;
    padding: 50px 0 150px;
}

.registration-request-password .cont {
    width: 100%;
    border-radius: 0px;
}

/*/////////////////////////////////////
_________photo_modal___________________
/////////////////////////////////////*/

#lightbox .modal-dialog {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#lightbox .modal-dialog .modal-content {
    width: auto;
    max-width: 100%;
    min-height: calc(0% + 1px);
    max-height: calc(75% + 1px);
    margin: 0;
}

#lightbox .modal-dialog .modal-content img {
    width: auto;
    height: 100% !important;

}

/*/////////////////////////////////////
_________!!!main_styles!!!_____________
/////////////////////////////////////*/

.seo {
    overflow: hidden;
}

.similar {
    width: 85%;
    margin: 0 auto 50px;
    background-color: #007bde;
    padding: 15px 30px;
    position: relative;
    background-position: center center;
    background-size: cover;
}

.similar a {
    color: #fff;
    text-decoration: none!important;
}

.similar .large-date p:first-child {
    font-weight: 900;
    font-size: 42px;
    line-height: 1;
}

.similar .large-date p {
    text-align: center;
    margin: 0;
}

.similar .large-date {
    padding: 15px 0;
    font-family: 'Roboto Condensed', sans-serif;
    min-height: 100px;
}

.similar .large-date p:last-child {
    font-size: 18px;
    letter-spacing: 1px;
}

.similar .news-category {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 10px;
}

.similar .news-heading {
    margin: 0;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 30px;
}

.similar .viewers-counter {
    bottom: 10px;
}

.similar .small-date-block {
    bottom: 13px;
}

.no-img-big-date {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    background: #007bde;
    left: 0;
    width: 85px;
    height: 85px;
    font-family: 'Roboto Condensed', sans-serif;
    float: left;
    margin-left: 35px;
}

.no-img-big-date p:first-child {
    font-size: 38px;
    margin: 0 0 -10px 0;
    font-weight: 900;
    padding: 0;
}

.no-img-big-date p:last-child {
    font-size: 18px;
    margin: 0;
    padding: 0;
}

.first-screen.mini.micro {
    height: auto;
    padding-top: 100px;
}

.oh {
    overflow: hidden;
}

/*/////////////////////////////////////
_________contact_form__________________
/////////////////////////////////////*/

#contact-modal {
    position: fixed;
    bottom: 50px;
    right: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 1;
}

.contact-button {
    padding: 0;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    outline: none;
    background-color: #1988e1;
    border: 5px solid #3395e5;
    opacity: .8;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.contact-button:focus {
    outline: none;
}

#contact-modal .first-contact-wrapper {
    width: 50px;
}

#contact-modal .main-contact-wrapper {
    background-color: #007bde;
    width: 350px;
    padding: 0 30px;
    overflow: hidden;
    opacity: 0;
    margin: 0;
    transition: opacity 500ms;
}

#contact-modal .first-contact-wrapper.active .main-contact-wrapper {
    opacity: 1;
    padding: 30px;
    margin-bottom: 25px;
}

select > option {
    background-color: #017bde;
    color: #eee;
    border: none;
    outline: none;
}

#contact-modal .first-contact-wrapper.active .main-contact-wrapper form .form-group:nth-child(2) {
    padding-top: 10px;
}

#contact-modal .first-contact-wrapper.active .main-contact-wrapper form .form-group {
    padding-top: 10px;
}

#contact-modal .first-contact-wrapper.active .main-contact-wrapper .form-group label,
#contact-modal .first-contact-wrapper.active .main-contact-wrapper .form-group input,
#contact-modal .first-contact-wrapper.active .main-contact-wrapper .form-group select {
    width: 100%;
    text-align: left;
    color: #ecf5fd;
}

#contact-modal .first-contact-wrapper.active .main-contact-wrapper .form-group input,
#contact-modal .first-contact-wrapper.active .main-contact-wrapper .form-group select {
    background-color: transparent;
    color: #ecf5fd;
    outline: none;
    border: none;
    border-bottom: 1px solid #ecf5fd;
}

#contact-modal .first-contact-wrapper.active .main-contact-wrapper .form-group input::placeholder{
    color: #ecf5fd;
}

.main-contact-wrapper h4 {
    width: calc(100% - 25px);
    display: inline-block;
    padding-left: 25px;
    text-align: center;
    color: #ecf5fd;
}

.main-contact-wrapper h4 ~ p {
    text-align: center;
    color: #ecf5fd;
    font-size: 14px;
    margin-top: 15px;
}

.main-contact-wrapper button:not(:last-child) {
    height: 25px;
    width: 25px;
}

.main-contact-wrapper button:last-child {
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 28px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    border: none;
    outline: none;
    border-top: 1px solid #f8fbfe;
    border-bottom: 1px solid #f8fbfe;
    color: #ecf5fd;
    background-color: transparent;
    height: 50px;
    padding: 5px 60px;
    margin: 50px auto 20px;
    text-decoration: none;
}

.main-contact-wrapper button:focus {
    outline: none;
}

.modal-open {
    overflow: hidden;
    padding-right: 30px;
}

#contact-modal.modal-open {
    padding-right: 15px;
}

/*/////////////////////////////////////
_________speakers______________________
/////////////////////////////////////*/

.speaker-face-block .about-speaker {
    display: none;
}

.speaker-face-block:hover .pointer {
    bottom: 0px;
    height: calc(25% + 16px + 7px);
}
.speaker-face-block:hover .img-wrapper img {
    transform: scale(1.1);
}

.about-speaker {
    width: 100%;
    height: 0;
    padding: 30px;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 30px !important;
    margin-bottom: 30px !important;
    overflow-y: auto;
    display: block;
    transition: height 500ms;
}

.about-speaker.open {
    height: 300px;
}

.about-speaker p {
    opacity: 0;
    transition: opacity 500ms;
}

.open-speaker-info h4 {
    opacity: 0;
    margin-bottom: 20px;
    transition: opacity 500ms;
}

.open-speaker-info p.visible {
    opacity: 1;
}

.open-speaker-info h4.visible {
    opacity: 1;
}

.speaker-face-block {
    position: relative;
    width: 30%;
    margin: 30px 0;
    cursor: pointer;
}

.speaker-face-block .img-wrapper {
    width: 90%;
    margin: 0;
    background: silver;
    overflow: hidden;
    position: relative;
    z-index: -2;
}

.speaker-face-block .img-wrapper:before {
    content: "";
    padding-top: 120%;
    float: left;
}

.speaker-face-block img {
    transition: transform 1000ms;
    position: absolute;
    z-index: -1;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.speaker-face-block .name-country {
    width: 90%;
    margin: -25% 0 0 10%;
    background-color: #017bde;
    color: white;
}

.speaker-face-block .pointer {
    bottom: 7px;
    top: auto;
    left: 5%;
    right: auto;
    width: 1px;
    height: calc(25% + 16px);
    transition: bottom 500ms, height 500ms;
}

.speaker-face-block .pointer:before {
    top: auto;
    bottom: -2px;
}

.speaker-face-block .pointer:after {
    top: auto;
    bottom: -6px;
}

.speaker-face-block.active .pointer {
    bottom: -15px;
    height: calc(25% + 16px + 22px);
}

.speaker-lecture-title {
    margin: 10px 0 0 10%;
    color: #007bdf;
    text-transform: uppercase;
    font-size: 15px;
}

.speaker-lecture-title:last-child {
    margin-bottom: 15px;
}

.speaker-face-block .name-country {
    padding: 15px;
}

.speaker-face-block .name-country p {
    margin-bottom: 8px;
}

.speaker-face-block .name-country p:first-child {
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 21px;
    min-height: 42px;
}

.speaker-face-block .name-country p:last-child {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

.open-speaker-info h4 {
    font-weight: 500;
    color: #1f1f1f;
}

.open-speaker-info p {
    color: #666666;
}

.about-speaker::-webkit-scrollbar-button {
    background-image: url('');
    background-repeat: no-repeat;
    width: 5px;
    height: 0px
}

.about-speaker::-webkit-scrollbar-track {
    background-color: transparent;
}

.about-speaker::-webkit-scrollbar-thumb {
    -webkit-border-radius: 0px;
    border-radius: 0px;
    background-color: #017bde;
}

.about-speaker::-webkit-scrollbar-thumb:hover {
    background-color: #0070ca;
}

.about-speaker::-webkit-resizer {
    background-image: url('');
    background-repeat: no-repeat;
    width: 2px;
    height: 0px
}

.about-speaker::-webkit-scrollbar {
    width: 2px;
}

/*/////////////////////////////////////
_________alert_container_______________
/////////////////////////////////////*/

.alert-container {
    height: 100vh;
    padding: 60px 15px 0;
}

.owl-alert-container {
    z-index: 0;
}

.alert-container > .row {
    justify-content: center;
}

.alert-container .row {
    height: 100%;
}

.alert-container .owl-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.alert-container .owl-item .item {
    position: relative;
    width: 100%;
    height: 100%;
}

.alert-container .owl-item img {
    height: 80%;
    width: 100%;
    object-fit: cover;
    position: absolute;
}

.alert-container .owl-item h5 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20%;
    padding-top: 30px;
}

.alert-container .owl-stage-outer {
    height: 100%;
    width: 100%;
    margin: auto;
}

.alert-container .owl-stage-outer .owl-stage {
    height: 100%;
}

.owl-dot:focus {
    outline: none;
}
.owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20%;
}

.owl-dot span {
    background-color: transparent !important;
    border: 1px solid #007cdd !important;
    margin: 5px !important;
}

.owl-dot.active span {
    background-color: #007cdd !important;
    border: 1px solid #007cdd !important;
}

/*/////////////////////////////////////
_________codex_________________________
/////////////////////////////////////*/

.codex,
.policy {
    padding-top: 120px;
    padding-bottom: 50px;
}

.codex ul {
    color: #007bdd;
    font-size: 18px;
}

.codex ul li + li,
.codex ul li:first-child,
.codex ul li:nth-child(2) {
    color: #444444;
    font-size: 16px;
}

.codex ul li {
    color: #007bdd;
    font-size: 18px;
    margin-top: 15px;
}

.codex ul li + ul {
    height: 0;
    overflow: hidden;
}

.codex ul li:focus + ul {
    height: auto;
}

.codex span {
    color: #666666;
    font-size: 14px;
    font-style: italic;
}

.policy h5,
.policy p,
.policy ul {
    display: block;
    width: 100%;
}

.policy ul,
.policy h5,
.policy a {
    color: #007bdd;
}

.policy ul li,
.policy p {
    color: #444444;
}

.policy a,
.policy h5 {
    font-style: italic;
}


@media (min-width: 2550px) {

    body, p, a, button, span {
        font-size: 1.5rem !important;
    }

    .alert-container .owl-item h5 {
        font-size: 1.8rem !important;
    }

    .first-event .event-date p:first-child {
        font-size: 50px !important;
    }

    .first-event .event-date p:last-child {
        font-size: 38px !important;
    }

    .second-event .event-date p.first-variant {
        font-size: 56px !important;
    }

    .second-event .event-date p.second-variant {
        font-size: 38px !important;
    }

    .second-event .event-date p:last-child {
        font-size: 38px !important;
    }

    .outer-round {
        height: 100px;
        width: 100px;
    }

    .icon-block p {
        width: calc(100% - 125px);
        line-height: 40px;
    }

    .heading-row a {
        padding: 16px 60px;
    }

    header {
        height: 150px;
    }

    .logo-col img {
        margin-top: 15px;
        width: auto;
        height: 125px;
    }

    .nav-row div {
        height: 150px;
        min-width: 150px;
    }

    .nav-col a {
        line-height: 150px;
    }

    .nav-col a:not(:first-child) {
        line-height: 22px;
    }

    .sign-row .language-select a {
        line-height: 50px;
        width: 50px;
        height: 50px;
    }

    .heading-row h4 {
        padding-left: 400px;
        font-size: 42px;
    }

    .heading-row h4::after {
        top: auto;
        bottom: 15px;
    }

    .heading-row h4 p {
        font-size: 90px !important;
    }

    .right-layer-heading h4, .left-layer-heading h4 {
        font-size: 2rem;
    }

    .right-layer-heading h4 p, .left-layer-heading h4 p {
        font-size: 75px !important;
    }

    .right-layer-heading span:first-child, .left-layer-heading span:first-child {
        bottom: 30px;
    }

    .right-layer-heading span:nth-child(2), .left-layer-heading span:nth-child(2) {
        bottom: 10px;
    }

    .about-us-container {
        height: 100vh;
    }

    .four-icons-block .icon-block:nth-child(1),
    .four-icons-block .icon-block:nth-child(2) {
        margin-top: 30px;
    }

    .event-text-heading {
        font-size: 1.8rem;
    }

    .content .news-heading {
        font-size: 1.6rem !important;
        line-height: 40px;
        max-height: 80px;
    }

    .viewers-counter svg,
    .small-date-block svg {
        height: 25px;
        fill: white;
        margin-right: 5px;
        margin-bottom: 5px;
    }

    .small-date-block svg {
        margin-bottom: 10px;
    }

    .viewers-counter {
        font-size: inherit;
    }

    .news-blocks .content .curent-content {
        line-height: 2rem !important;
        max-height: 4rem !important;
    }

    .big-date-block p:first-child,
    .main-event-row .events-blocks:first-child .image-block .big-date p:first-child,
    .events-row .events-blocks .image-block .big-date p:first-child {
        font-size: 4.5rem !important;
    }

    .big-date-block p:last-child,
    .main-event-row .events-blocks:first-child .image-block .big-date p:last-child,
    .events-row .events-blocks .image-block .big-date p:last-child {
        font-size: 2rem !important;
    }

    .doctor .doctor-name {
        height: 25%;
    }

    .events-row .events-blocks .event-content h5,
    .main-event-row .events-blocks:first-child .event-content h5{
        font-size: 1.8rem;
    }

    .main-event-row .events-blocks:first-child .image-block .big-date {
        width: 300px;
        height: 300px;
    }

    .events-row .events-blocks .image-block .big-date {
        width: 250px;
        height: 250px;
    }

    .maybe-fluid {
        max-width: 100%;
        width: 100%;
        padding: 0 330px;
    }

    .error-content-img p {
        font-size: 300px !important;
    }

}


@media (max-width: 1450px) {





    .four-icons-block .icon-block {
        padding: 15px 0;
    }

    .outer-round {
        height: 60px;
        width: 60px;
    }

    .right-layer-content p, .left-layer-content p {
        font-size: 16px;
    }

    .icon-block p {
        font-size: 14px;
    }

    .right-layer-heading, .left-layer-heading {
        height: 80px;
    }

    .right-layer-content button, .left-layer-content a {
        font-size: 16px;
        padding: 10px 40px;
    }

    .heading-row h4 p {
        margin: -65px 50px;
        font-size: 60px;
    }

    .heading-row h4 {
        padding-left: 225px;
    }

    .heading-row h4::before {
        width: 175px;
    }

    .heading-row h4::after {
        width: 125px;
    }

    .heading-row a {
        padding: 8px 50px;
        margin-right: 225px;
    }

    .first-scr-lower-row h1 {
        padding-left: 225px;
    }

    #first-screen-form {
        margin: 50px 0 0 225px;
    }

    /*/////////////////////////////////////
_________directors_page________________
/////////////////////////////////////*/




    .about-organization h4 {
        font-size: 21px;
    }

    .about-organization p {
        font-size: 14px;
    }

    .director-row .vice-director .doctor:nth-child(3n+1) {
        margin-left: 50px;
    }

    .director-row .vice-director .doctor:nth-child(3n+3) {
        margin-right: 50px;
    }

    .director-row .vice-director .doctor-wrapper:nth-child(3n+1) {
        margin-left: 50px;
    }

    .director-row .vice-director .doctor-wrapper:nth-child(3n+3) {
        margin-right: 50px;
    }

    .director-row .vice-director .doctor-wrapper .doctor,
    .doctor-wrapper .doctor{
        margin: 0;
    }

    /*/////////////////////////////////////
_________director_slider_______________
/////////////////////////////////////*/

    .carousel-inner .carousel-item.active,
    .carousel-inner .carousel-item-next,
    .carousel-inner .carousel-item-prev {
        display: flex;
    }

    .carousel-inner .carousel-item-right.active,
    .carousel-inner .carousel-item-next {
        transform: translateX(35.5%);
    }

    .carousel-inner .carousel-item-left.active,
    .carousel-inner .carousel-item-prev {
        transform: translateX(-35.5%);
    }

    .carousel-inner .carousel-item-right,
    .carousel-inner .carousel-item-left{
        transform: translateX(0);

    }

    .carousel-item .doctor-wrapper {
        width: 28%;
        min-width: 28%;
        max-width: 28%;
        margin: 20px 7.5% 20px 0;
    }

    .text-center {
        padding: 15px 50px;
    }

    /*/////////////////////////////////////
_________modal_______________
/////////////////////////////////////*/

    .modal-header h4,
    .modal-header p {
        padding-right: 0;
    }

    /*/////////////////////////////////////
_________contact_form__________________
/////////////////////////////////////*/

    #contact-modal .main-contact-wrapper {
        width: 400px;
    }



    #contact-modal .first-contact-wrapper.active .main-contact-wrapper form .form-group:nth-child(4) {
        padding-top: 42px;
    }

    .alert-container {
        height: 600px;
    }

    .alert-container .owl-item .item {
        position: relative;
        width: 100%;
        height: 100%;
    }

}


@media (max-width: 1400px) {

    #contact-modal .first-contact-wrapper.active .main-contact-wrapper form .form-group {
        flex: 0 0 50%;
        max-width: 50%;
    }

}




@media (max-width: 1199.98px) {

    /*/////////////////////////////////////
    _________general-styles________________
    /////////////////////////////////////*/

    .first-scr-lower-row h1 {
        padding-left: 140px;
    }

    .first-scr-lower-row h1::after {
        width: 120px;
    }

    .first-scr-lower-row h1::before {
        width: 80px;
    }

    #first-screen-form {
        margin: 50px 0 0 140px;
    }

    .heading-row h4 {
        padding-left: 140px;
        font-size: 24px;
    }

    .heading-row h4::before {
        width: 50px;
        top: 5px;
    }

    .heading-row h4::after {
        width: 30px;
        top: 20px;
    }

    .heading-row a {
        margin: -15px 140px 5px;
        padding: 8px 30px;
    }

    .heading-row h4 p {
        margin: -60px 40px;
        font-size: 58px;
    }

    /*/////////////////////////////////////
    _________first_screen__________________
    /////////////////////////////////////*/

    .first-scr-lower-row .scroll-button {
        right: 30px;
        bottom: 50px;
    }
    /*/////////////////////////////////////
    _________events-block__________________
    /////////////////////////////////////*/

    .first-event,
    .second-event {
        margin: 15px 1px;
    }

    .first-event .event-date .big-date {
        height: 100%;
        width: 100%;
    }

    .first-event .image-square .two-date p:first-child {
        font-size: 30px;
    }

    .first-event .image-square .two-date p:last-child {
        font-size: 20px;
    }

    .second-event .event-date p:first-child {
        font-size: 36px;
    }

    .second-event .event-date p:last-child {
        font-size: 21px;
    }

    .events-row .events-blocks .image-block .big-date.two-date p:first-child,
    .second-event .event-date p.second-variant {
        font-size: 18px !important;
        margin: 0 0 -5px 0;
        font-weight: 900;
        padding: 0;
    }

    /*/////////////////////////////////////
    _________about_us_slider_______________
    /////////////////////////////////////*/

    .right-layer,
    .left-layer {
        width: 75%;
    }

    .right-layer-content p,
    .left-layer-content p {
        font-size: 12px;
    }

    .outer-round {
        height: 60px;
        width: 60px;
    }

    .right-layer-content button, .left-layer-content a {
        font-size: 16px;
        margin-top: 25px;
    }
    /*/////////////////////////////////////
    _________news_blocks___________________
    /////////////////////////////////////*/

    .content .curent-content {
        display: none;
    }

    .news-blocks:nth-child(4n+3) .big-date-block {
        height: 25%;
    }

    .news-blocks:nth-child(4n+3) .big-date-block p:first-child {
        margin-top: 30px;
    }

    .news-blocks:nth-child(4n+3) .content {
        top: 30%;
        justify-content: flex-start;
    }

    /*/////////////////////////////////////
_________open-events-page______________
/////////////////////////////////////*/

    .share-news {
        width: 150px;
    }

    .open-event-content {
        width: calc(100% - 150px);

    }

    .open-event-row .image-header-block::before {
        padding-top: 65%;
    }

    .open-event-content .sponsor-row a {
        width: 33.333%;
    }

    /*/////////////////////////////////////
    _________mini-header___________________
    /////////////////////////////////////*/

    .nav-row div {
        margin-right: 0;
    }

    .page-heading {
        padding-left: 150px;
    }

    .page-heading::before {
        width: 130px;
    }

    .page-heading::after {
        width: 90px;
    }

    .filter-row a {
        font-size: 18px;
        margin: 0 15px;
    }

    .filter-row a:first-child {
        margin: 0 15px 0 0;
    }

    .filter-links {
        padding-left: 150px;
    }

    .filter-row.active .filter-links {
        padding-left: 100px;
    }

    .bread-crumbs a {
        font-size: 13px;
    }

    /*/////////////////////////////////////
    _________general-styles________________
    /////////////////////////////////////*/

    .teretories .heading-row p {
        padding-left: 75px;
    }

    .teretories .heading-row p::before {
        width: 65px;
    }

    .teretories .heading-row p::after {
        width: 40px;
    }

    .teretories a {
        padding-left: 75px;
    }

    .doctor {
        width: 27.4%;
        margin: 20px 20px;
    }
    .first-screen.doctors {
        background-position-y: center;
    }

    /*/////////////////////////////////////
_________directors_____________________
/////////////////////////////////////*/

    .director-row .vice-director .doctor-wrapper,
    .director-row .vice-director .doctor{
        width: 40%;
        margin: 20px 30px;
    }

    .director-row .vice-director .doctor-wrapper:nth-child(2n+1),
    .director-row .vice-director .doctor:nth-child(2n+1){
        margin-left: 45px;
        margin-right: 30px;
    }

    .director-row .vice-director .doctor:nth-child(2n+2) {
        margin-left: 30px;
        margin-right: 0;
    }

    .director-row .vice-director .doctor-wrapper .doctor {
        margin: 0;
    }

    .text-center {
        padding: 15px 35px 15px 50px;
    }

    .director-row .doctor ~ p {
        padding: 0 20px 0 20px;
    }


    /*/////////////////////////////////////
_________modal_________________________
/////////////////////////////////////*/

    .modal-content {
        margin-left: 25%;
        height: 100vh;
        width: 75%;
        border-radius: 0;
        border: none;
    }

    .modal-photo {
        min-width: 250px;
        width: 250px;
    }

    .modal-header {
        min-height: 250px;
        max-height: 250px;
    }

    .right-modal-content {
        width: calc(100% - 250px);
    }

    .modal-header h4,
    .modal-header p {
        padding-right: 50px;
    }

    .modal-header p {
        padding-right: 0;
        margin-top: 25px;
    }

    /*/////////////////////////////////////
_________contact_form__________________
/////////////////////////////////////*/

    #contact-modal .main-contact-wrapper {
        width: 400px;
    }

    /*/////////////////////////////////////
_________alert_container_______________
/////////////////////////////////////*/

    .alert-container {
        height: 500px;
    }
    .modal-open {
        overflow: hidden;
        padding-right: 0;
    }

    .alert-container .owl-stage-outer {
        height: 100%;
        width: auto;
        margin: auto;
    }

    .alert-container .owl-carousel .owl-nav button.owl-next {
        right: -75px;
    }
    #contact-modal.modal-open {
        padding-right: 0;
    }

    .alert-container .owl-carousel .owl-nav button.owl-prev {
        left: -75px;
    }
    header.modal-open {
        padding-right: 15px;
    }

    .alert-container .owl-item .item {
        position: relative;
        width: 100%;
        height: 100%;
    }

}

@media (max-width: 991.98px) {

    /*/////////////////////////////////////
    _________general-styles________________
    /////////////////////////////////////*/

    .heading-row h4 {
        padding-left: 50px;
        font-size: 21px;
    }

    .heading-row a {
        padding: 3px 40px;
        margin: -17px 50px 10px 0;
        line-height: 32px;
    }

    .heading-row h4 p {
        margin: -53px 0 0 30px;
        font-size: 50px;
    }

    .heading-row h4::before {
        width: 25px;
    }

    .heading-row h4::after {
        width: 15px;
    }

    /*/////////////////////////////////////
    _________header________________________
    /////////////////////////////////////*/

    .burger-col {
        display: block;
        align-self: center;
    }

    .sign-col,
    .nav-col {
        display: none;
    }

    .burger-col .burger-button {
        width: 50px;
        height: 50px;
        margin: auto;
    }

    .burger-col .burger-button span {
        display: block;
        width: 100%;
        height: 1px;
        background: white;
        margin-top: 15px;
    }

    .burger-menu {
        height: 100vh;
        display: block;
        position: fixed;
        overflow: hidden;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: #007bde;
        z-index: 999;
        transform: translateX(100%);
        transition: transform 500ms;
    }

    .burger-header-container {
        height: 100px;
        padding-left: 30px;
    }

    .close-button {
        height: 50px;
        width: 50px;
        margin: auto;
    }

    .close-button span {
        display: block;
        width: 100%;
        height: 1px;
        background: white;
    }


    .close-button span:first-child {
        transform: translateY(25px) rotate(30deg);
    }

    .close-button span:last-child {
        transform: translateY(24px) rotate(-30deg);
    }

    .toggle-burger {
        transform: translateX(0);
    }

    .toggle-under-burger {
        transform: translateX(-100%);
    }

    .burger-under {
        height: 100vh;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        transition: transform 500ms;
    }

    .burger-nav-col a {
        color: white;
        text-decoration: none;
        margin-top: 50px;
        text-align: center;
    }

    .burger-nav-row {
        flex-direction: column;
    }

    .burger-content-container,
    .burger-content-row{
        height: calc(100vh - 100px);
    }

    .burger-nav-col {
        height: 50%;
        overflow-y: scroll;
        scroll-behavior: smooth;
    }

    .scroll-arrow {
        height: 30px;
        width: 100%;
        text-align: center;
    }

    .scroll-arrow svg {
        width: 30px;
        height: 30px;
        fill: white;
    }

    .sign-burger-col .sign-row a {
        margin: 0 1px;
    }

    .sign-burger-col .language-select {
        margin: 0 25px;
    }

    .sign-burger-col {
        height: 100px;
    }

    .scroll-button {
        display: none;
    }

    /*/////////////////////////////////////
    _________footer________________________
    /////////////////////////////////////*/

    .footer-row {
        justify-content: center;
    }

    /*/////////////////////////////////////
    _________first_screen__________________
    /////////////////////////////////////*/

    .first-scr-lower-row h1 {
        padding-left: 75px;
    }

    .first-scr-lower-row h1::after {
        width: 60px;
    }

    .first-scr-lower-row h1::before {
        width: 30px;
    }

    #first-screen-form {
        margin: 50px 0 0 75px;
    }
    .first-scr-lower-row .scroll-button {
        right: 60px;
        bottom: 60px;
    }

    .first-screen.big {
        height: auto;
    }

    .first-scr-lower-row {
        position: static;
        padding: 160px 0 80px;
    }
    /*/////////////////////////////////////
    _________events-block__________________
    /////////////////////////////////////*/

    .first-event,
    .second-event{
        margin: 20px 1px;
        padding: 0;
    }

    .evets-content-row .first-event {
        margin: 20px 1px;
        background-color: #f9f9f9;
        padding: 0;
    }

    .second-event .text-date-block {
        padding: 0 15px 10px;
    }
    /*/////////////////////////////////////
    _________about_us_slider_______________
    /////////////////////////////////////*/

    .right-layer-heading,
    .left-layer-heading {
        height: 75px;
    }

    .right-layer-heading h4 p,
    .left-layer-heading h4 p {
        bottom: -10px;
        font-size: 60px;
    }

    .right-layer,
    .left-layer {
        width: 80%;
    }

    .right-layer-content,
    .left-layer-content {
        width: 80%;
    }

    .about-us-container {
        height: 850px;
    }

    .right-layer-content button, .left-layer-content a {
        margin: 50px auto 0;
    }

    /*/////////////////////////////////////
    _________news_blocks___________________
    /////////////////////////////////////*/

    .big-date-block p:first-child {
        font-weight: 900;
        font-size: 48px;
        margin: 30px auto -15px;
    }

    .big-date-block p:last-child {
        font-size: 21px;
        letter-spacing: 1px;
    }

    .news-blocks .content {
        padding: 0 15px;
    }

    .content .news-category {
        font-size: 14px;
    }

    .news-blocks .content .news-heading {
        text-transform: uppercase;
        font-weight: 700;
        font-size: 16px;
        margin: 10px 0 0;
        line-height: 24px;
    }

    .small-date-block {
        left: 15px;
        bottom: 20px;
        font-size: 10px;
        line-height: 0px;
    }

    .viewers-counter {
        right: 15px;
        bottom: 20px;
        font-size: 10px;
        line-height: 0px;
    }

    .news-blocks:nth-child(4n+4),
    .news-blocks:nth-child(4n+3),
    .news-blocks:nth-child(4n+2),
    .news-blocks:nth-child(4n+1) {
        width: 40%;
        margin: 15px !important;
    }

    .news-blocks:nth-child(4n+3) .content {
        justify-content: flex-end !important;
    }

    .news-blocks:nth-child(4n+4)::before,
    .news-blocks:nth-child(4n+3)::before,
    .news-blocks:nth-child(4n+2)::before,
    .news-blocks:nth-child(4n+1)::before {
        padding-top: 100%;
    }

    .news-blocks:nth-child(4n+3):not(:last-child) .big-date-block p:first-child {
        margin-top: 30px;
    }

    .news-blocks:nth-child(1){
        order: 1;
    }

    .news-blocks:nth-child(2){
        order: 2;
    }

    .news-blocks:nth-child(3){
        order: 4;
    }

    .news-blocks:nth-child(4){
        order: 3;
    }

    .news-blocks:nth-child(5){
        order: 5;
    }

    .news-blocks:nth-child(6){
        order: 6;
    }

    .news-blocks:nth-child(7){
        order: 8;
    }

    .news-blocks:nth-child(8){
        order: 7;
    }
    /*/////////////////////////////////////
    _________orto_seo______________________
    /////////////////////////////////////*/


    .orto-seo p {
        width: 70%;
        font-size: 12px;
    }
    /*/////////////////////////////////////
    _________mini-header___________________
    /////////////////////////////////////*/

    .first-screen {
        background-position-y: top;
    }

    .page-heading {
        padding-left: 130px;
    }

    .page-heading::before {
        width: 100px;
    }

    .page-heading::after {
        width: 60px;
    }

    .filter-row a:first-child {
        margin: 0 15px 0 0;
    }

    .filter-row a:last-child {
        margin: 0 0 0 15px;
    }

    .filter-links {
        padding-left: 130px;
    }

    .filter-row.active .filter-links {
        padding-left: 80px;
    }

    .bread-crumbs a {
        font-size: 12px;
    }

    /*/////////////////////////////////////
_________events-page___________________
/////////////////////////////////////*/

    .events-row .events-blocks {
        width: 50%;
    }

    .main-event-row .events-blocks:first-child {
        flex-direction: column;
    }

    .main-event-row .events-blocks:first-child .image-block {
        width: 100%;
        margin: 0 0 30px;
    }

    .main-event-row .events-blocks:first-child .event-content {
        width: 100%;
        padding: 0;
    }

    .event-text-content {
        padding-bottom: 30px;
    }

    .open-event-content .sponsor-row a {
        width: 50%;
    }

    /*/////////////////////////////////////
______________blog-page________________
/////////////////////////////////////*/

    .blog-news-content {
        justify-content: center;
    }

    /*/////////////////////////////////////
_________open-blog-page________________
/////////////////////////////////////*/

    .open-news-header {
        margin: 50px 0 50px;
    }

    .open-news-header + .container-fluid .row {
        flex-direction: column;
    }

    .open-news-header h3, .open-news-header p {
        padding-left: 50px;
    }

    .image-header-block {
        width: 100%;
    }

    .open-news-content {
        width: 100%;
    }

    /*/////////////////////////////////////
_________open-events-page______________
/////////////////////////////////////*/

    .open-event-row .event-content {
        flex-direction: column;
    }

    .share-news {
        flex-direction: row;
        width: auto;
        padding-bottom: 50px;
    }

    .share-news a {
        margin: 0 15px 0 0;
    }

    .share-news a:first-child {
        margin: 0 15px 0 0;
    }

    .share-news p {
        writing-mode: initial;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    .share-news span {
        height: 1px;
        width: 100%;
        margin-left: 15px;
    }

    .open-event-heading-row h4 {
        padding-left: 140px !important;
    }

    .open-event-heading-row h4::before,
    .open-event-heading-row h4::after {
        display: block !important;
    }

    .open-event-content {
        overflow: initial;
    }

    .open-event-row .image-header-block {
        width: calc(100% - 300px);
    }

    .open-event-row .image-header-block .big-date {
        left: -300px;
        width: 300px;
    }

    .open-event-row .image-header-block::before {
        padding-top: 100%;
    }

    .open-event-content {
        width: 100%;
    }

    /*/////////////////////////////////////
_________doctors_page__________________
/////////////////////////////////////*/

    .teretories {
        position: fixed;
        z-index: 1;
        height: 100%;
        top: 0;
        transform: translateX(-100%);
        transition: transform 500ms;
    }

    .teretories{
        display: none;
    }

    .teretories.mobi {
        display: block;
    }

    .teretories.mobi .links {
        overflow-y: scroll;
        height: 100%;
        width: auto;
        padding-bottom: 100px;
        margin-right: -15px;
        margin-left: -15px;
    }

    .burger-button.doctors-button span {
        background-color: #017bde;
    }

    .toggle-teretories {
        transform: translateX(0%);
    }

    .teretories .close-button {
        position: absolute;
        bottom: 10px;
        right: 15px;
        width: 60px;
        height: 65px;
        padding: 15px;
        z-index: 2;
    }

    .teretories .close-button span:first-child {
        transform: translateY(10px) rotate(30deg);
    }

    .teretories .close-button span {
        background: #0d67ad;
    }

    .doctor {
        width: 26%;
        margin: 20px 20px;
    }

    .doctor:nth-child(3n+3) {
        margin-right: 40px;
    }

    .doctor:nth-child(3n+1) {
        margin-left: 40px;
    }

    .doctor-wrapper .doctor:nth-child(3n+1) {
        margin-left: 0;
    }

    .doctor-wrapper .doctor:nth-child(3n+3) {
        margin-left: 0;
    }

    .director-row .doctor ~ p {
        float: right;
        width: calc(100% - 33.333% - 70px);
        padding: 0 100px 0 20px;
        margin: 20px 0 0 0;
    }

    /*/////////////////////////////////////
_________modal_________________________
/////////////////////////////////////*/

    .modal-content {
        margin: 0;
        height: 100vh;
        width: 100%;
        border-radius: 0;
        border: none;
    }

    .modal-open {
        overflow: hidden;
        padding-right: 0;
    }

    #contact-modal.modal-open {
        padding-right: 0;
    }


    /*/////////////////////////////////////
_________contact_form__________________
/////////////////////////////////////*/

    #contact-modal .main-contact-wrapper {
        width: 600px;
    }

    /*/////////////////////////////////////
_________photo-gallery_________________
/////////////////////////////////////*/

    .card-columns {
        column-count: 3;
    }

    /*/////////////////////////////////////
_________history_______________________
/////////////////////////////////////*/

    .pointer {
        right: 0px;
    }

    /*/////////////////////////////////////
_________alert_container_______________
/////////////////////////////////////*/

    .alert-container {
        height: 400px;
    }

    .alert-container .owl-stage-outer {
        height: 100%;
        width: auto;
        margin: auto;
    }

    .alert-container .owl-carousel .owl-nav button.owl-next {
        right: -75px;
    }

    .alert-container .owl-carousel .owl-nav button.owl-prev {
        left: -75px;
    }
    /*/////////////////////////////////////
_________speakers______________________
/////////////////////////////////////*/

    .speaker-face-block {
        position: relative;
        width: 40%;
        margin: 30px 5%;
    }

    .about-speaker {
        width: 90%;
        margin: auto;
    }



}

@media (max-width: 767.98px) {

    #contact-modal .first-contact-wrapper.active .main-contact-wrapper form .form-group {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .card-columns {
        column-count: 2;
    }

    /*/////////////////////////////////////
    _________general-styles________________
    /////////////////////////////////////*/

    .heading-row h4 p {
        display: none;
    }

    .heading-row a {
        margin: 0;
        line-height: 28px;
        font-size: 14px;
        padding: 8px 15px;
        transform: translateY(0px);
    }
    /*/////////////////////////////////////
    _________header________________________
    /////////////////////////////////////*/

    header {
        height: 75px;
    }

    .logo-col {
        width: 80%;
    }

    .logo-col img {
        width: auto;
        height: 65px;
    }

    .burger-col {
        width: 20%;
    }

    .burger-col .burger-button {
        width: 40px;
        height: 40px;
        margin: auto;
        margin-top: 20px;
    }

    .burger-header-container {
        height: 75px;
    }

    .close-button {
        height: 40px;
        width: 40px;
        margin: 0;
    }

    .burger-col .burger-button span {
        margin-top: 12px;
    }

    .first-scr-lower-row h1 {
        padding-left: 30px;
    }

    #first-screen-form {
        margin: 50px 0 0 30px;
    }

    .first-scr-lower-row h1::before {
        display: none;
    }

    .first-scr-lower-row h1::after {
        display: none;
    }

    .burger-nav-col a:first-child {
        margin-top: 0;
    }



    .burger-nav-row {
        margin-top: 50px;
    }

    .first-scr-lower-row h1 {
        font-size: 24px;
    }

    #first-screen-form BUTTON {
        font-size: 12px;
    }

    /*/////////////////////////////////////
    _________about_us_slider_______________
    /////////////////////////////////////*/


    .right-layer, .left-layer {
        width: 90%;
    }

    .right-layer-content button, .left-layer-content a {
        padding-top: 30px;
    }

    .right-layer-heading h4,
    .left-layer-heading h4 {
        left: 20%;
    }

    .right-layer-heading span:first-child,
    .left-layer-heading span:first-child {
        width: 15%;
    }

    .right-layer-heading span:nth-child(2),
    .left-layer-heading span:nth-child(2) {
        width: 10%;
    }

    .four-icons-block .icon-block {
        width: 100%;
        padding: 20px 0;
    }

    .right-layer-content button, .left-layer-content a {
        padding: 10px 0;
        width: 100%;
    }

    .about-us-container {
        height: 950px;
    }


    /*/////////////////////////////////////
_________events-page___________________
/////////////////////////////////////*/

    .main-event-row .events-blocks:first-child .image-block .big-date {
        width: 150px;
        height: 150px;
    }

    .main-event-row .events-blocks:first-child .image-block .big-date p:first-child {
        font-size: 38px;
    }

    .main-event-row .events-blocks:first-child .image-block .big-date p:last-child {
        font-size: 24px;
    }

    .first-event,
    .second-event{
        margin: 20px 15px !important;
        padding: 0 !important;
    }

    /*/////////////////////////////////////
_________doctors_page__________________
/////////////////////////////////////*/

    .doctor {
        width: 40%;
        margin: 20px 20px;
    }

    .doctor:nth-child(3n+3) {
        margin-right: 20px;
    }

    .doctor:nth-child(3n+1) {
        margin-left: 20px;
    }

    /*/////////////////////////////////////
_________events-page___________________
/////////////////////////////////////*/

    .events-row .events-blocks {
        width: 100%;
    }

    .events-row .events-blocks .image-block {
        width: calc(100% - 150px);
        align-self: flex-end;
    }

    .events-row .events-blocks .image-block::before {
        padding-top: 75%;
    }

    .events-row .events-blocks .image-block .big-date {
        right: auto;
        left: -150px;
        width: 150px;
        height: 100%;
    }

    .events-row .events-blocks .event-location {
        display: inline-block;
        width: auto;
        min-width: 150px;
        max-width: 100%;
        text-align: center;
    }

    /*/////////////////////////////////////
_________open-events-page______________
/////////////////////////////////////*/

    .open-event-row .image-header-block {
        width: 100%;
        margin-top: 300px;
    }

    .open-event-row .image-header-block .big-date {
        left: 0;
        right: 0;
        top: -300px;
        height: 300px;
        bottom: auto;
        width: 100%;
    }

    .open-event-row .image-header-block .big-date h3 {
        font-size: 14px;
        padding: 0px 10px;
    }

    .open-event-row .image-header-block .big-date-block {
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: static;
        height: 35% !important;
        width: 100%;
    }

    .open-event-row .image-header-block .big-date {
        justify-content: space-between;
    }

    .open-event-content .sponsor-row {
        justify-content: center;
    }

    .open-event-content .sponsor-row a {
        width: 75%;
    }

    /*/////////////////////////////////////
_________modal_________________________
/////////////////////////////////////*/

    .modal-content {
        min-height: 100vh;
        height: calc(100vh + 200px);
    }

    .modal-row {
        height: 100%;
    }

    .modal-header {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        max-height: none;
    }

    .modal-photo {
        width: 100%;
    }

    .modal-header .modal-photo p {
        width: auto;
    }

    .modal-header h4, .modal-header p {
        padding: 10px 40px 10px 40px;
    }

    .right-modal-content {
        width: 100%;
        height: 55vh;
    }

    .modal-header h4, .modal-header p {
        margin-top: 20px;
    }

    .modal-header p {
        margin: 0;
        width: 100%;
    }

    .modal-body {
        min-height: 200px;
    }

    /*/////////////////////////////////////
_________login_modal___________________
/////////////////////////////////////*/

    .login-modal-wrapper,
    .registration-modal-wrapper {
        padding: 0 15px 0 15px;
    }

    /*/////////////////////////////////////
_________photo_modal___________________
/////////////////////////////////////*/

    #lightbox .modal-dialog {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #lightbox .modal-dialog .modal-content {
        width: 75%;
        max-width: 100%;
        min-height: calc(0% - 1px);
        max-height: calc(75% - 1px);
        height: auto;
        margin: 0;
    }

    #lightbox .modal-dialog .modal-content img {
        width: 100%;
        /*height: 100% !important;*/

    }

    .prev-photo, .next-photo {
        top: auto;
        bottom: 30px;
        z-index: 2;
        width: 50vw;
        padding: 30px 25%;
    }

    .prev-photo {
        left: 0;
        transform: translateY(50%);
    }

    .next-photo {
        right: 0;
        transform: translateY(50%);
    }

    .arrows-background {
        position: absolute;
        height: 60px;
        background: #000444;
        opacity: .5;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
    }

    /*/////////////////////////////////////
_________contact_form__________________
/////////////////////////////////////*/

    #contact-modal .first-contact-wrapper.active .main-contact-wrapper {
        width: 100vw;
        transform: translate(50px, 125px);
        height: 100vh;
        position: relative;
        z-index: 999;
    }

    #contact-modal .main-contact-wrapper form {
        overflow-y: scroll;
        height: calc(100% - 79px);
    }

    /*/////////////////////////////////////
_________history_______________________
/////////////////////////////////////*/

    .pointer {
        right: 0px;
    }

    .history-row .row {
        position: relative;
    }

    .date-col {
        order: 1 !important;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .timeline-col {
        order: 2 !important;
        position: absolute;
        z-index: 0;
        right: 0;
        bottom: 0;
        top: 0;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .content-block-col {
        order: 3 !important;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .history-row .date {
        font-size: 42px;
        padding: 50px 0;
    }

    .history-row .content-block {
        padding-top: 0px;
        padding-bottom: 75px;
    }

    .pointer {
        top: 71px;
    }

    .history-row .pointer {
        left: 3px;
        right: 50%;
    }

    .history-row .pointer:after {
        right: 50%;
        left: -6px;
    }

    .history-row .pointer:before {
        right: 50%;
        left: -2px;
    }

    .history-row .image-block {
        top: 142px;
    }

    .closer p {
        line-height: 21px;
        font-size: 14px !important;
    }

    /*/////////////////////////////////////
_________alert_container_______________
/////////////////////////////////////*/

    .alert-container {
        height: 300px;
        padding-top: 50px;
    }

    .alert-container .owl-stage-outer {
        height: 100%;
        width: auto;
        margin: auto;
    }

    .alert-container .owl-item h5 {
        font-size: 14px;
    }

    .alert-container .owl-carousel .owl-nav button.owl-next {
        right: -75px;
    }

    .alert-container .owl-carousel .owl-nav button.owl-prev {
        left: -75px;
    }

    /*/////////////////////////////////////
_________speakers______________________
/////////////////////////////////////*/

    .about-speaker {
        padding: 30px 15px 30px 30px;
    }

    .speaker-face-block {
        position: relative;
        width: 80%;
        margin: 30px auto 30px 12%;
    }

}

@media (max-width: 575.98px) {



    /*/////////////////////////////////////
    _________general-styles________________
    /////////////////////////////////////*/

    .heading-row a {
        margin: -10px 30px 10px 0;
        line-height: 15px;
    }
    .orto-btn {
        padding: 8px 40px;
    }

    .heading-row {
        padding-bottom: 30px;
        padding-top: 90px;
    }

    /*/////////////////////////////////////
    _________header________________________
    /////////////////////////////////////*/

    .burger-nav-row {
        margin-top: 25px;
    }



    .logo-col img {
        height: 60px;
    }

    .burger-col .burger-button {
        margin-top: 15px;
    }

    header,
    .burger-header-container{
        height: 70px;
    }

    .first-scr-lower-row h1 {
        font-size: 21px;
    }

    #first-screen-form BUTTON {
        font-size: 10px;
    }
    /*/////////////////////////////////////
    _________footer________________________
    /////////////////////////////////////*/

    .footer-row .logo-col {
        text-align: center;
    }

    /*/////////////////////////////////////
    _________about_us_slider_______________
    /////////////////////////////////////*/

    .about-us-container {
        height: 1100px;
    }

    .right-layer, .left-layer {
        width: calc(100% - 15px);
    }
    /*/////////////////////////////////////
    _________news_blocks___________________
    /////////////////////////////////////*/


    .news-blocks:nth-child(4n+4),
    .news-blocks:nth-child(4n+3),
    .news-blocks:nth-child(4n+2),
    .news-blocks:nth-child(4n+1) {
        width: 75%;
        margin: 15px;
    }

    .news-blocks:nth-child(1){
        order: 1;
    }

    .news-blocks:nth-child(2){
        order: 2;
    }

    .news-blocks:nth-child(3){
        order: 3;
    }

    .news-blocks:nth-child(4){
        order: 4;
    }

    .news-blocks:nth-child(5){
        order: 5;
    }

    .news-blocks:nth-child(6){
        order: 6;
    }

    .news-blocks:nth-child(7){
        order: 7;
    }

    .news-blocks:nth-child(8){
        order: 8;
    }

    /*/////////////////////////////////////
_________directors_____________________
/////////////////////////////////////*/

    .director-row .doctor {
        float: initial;
        margin: 20px auto !important;
        width: 70%;
    }

    .director-row .doctor ~ p {
        width: 100%;
        padding: 0 20px;
    }

    .director-row .vice-director .doctor-wrapper
    {
        width: 70%;
        margin: 0 auto 10px !important;
    }

    .director-row .vice-director .doctor-wrapper .doctor {
        width: 100%;
        margin: 0 auto!important;
    }

    .director-row .vice-director .doctor {
        width: 70%;
        margin: 20px auto !important;
    }


    /*/////////////////////////////////////
    _________mini-header___________________
    /////////////////////////////////////*/

    .page-heading {
        padding-left: 50px;
    }

    .page-heading::before {
        width: 40px;
    }

    .page-heading::after {
        width: 25px;
    }

    .filter-links {
        padding-left: 50px;
    }

    .filter-row.active .filter-links {
        padding-left: 0px;
    }
}

@media (max-width: 420px) {

    .about-us-container {
        height: 1200px;
    }

    /*/////////////////////////////////////
_________doctors_page__________________
/////////////////////////////////////*/

    .doctor {
        width: 100%;
        margin: 20px 50px;
    }

    .doctor:nth-child(3n+3) {
        margin-right: 50px;
    }

    .doctor:nth-child(3n+1) {
        margin-left: 50px;
    }

    /*/////////////////////////////////////
_________events-page___________________
/////////////////////////////////////*/

    .events-row .events-blocks .image-block::before {
        padding-top: 90%;
    }

    /*/////////////////////////////////////
_________alert_container_______________
/////////////////////////////////////*/

    .alert-container {
        width: 80%;
        height: 250px;
        padding-top: 30px;
    }

    .alert-container .owl-stage-outer {
        height: 100%;
        width: auto;
        margin: auto;
    }

    .alert-container .owl-item h5 {
        font-size: 14px;
    }

    .alert-container .owl-carousel .owl-nav button.owl-next {
        right: -50px;
    }

    .alert-container .owl-carousel .owl-nav button.owl-prev {
        left: -50px;
    }

}

@media (max-width: 370px) {

    .about-us-container {
        height: 1300px;
    }

    .heading-row a {
        margin: -5px 10px 10px 0;
        line-height: 15px;
    }

    .second-event .event-date p:first-child {
        font-size: 24px;
    }

    .second-event .event-date p:last-child {
        font-size: 16px;
    }

    /*/////////////////////////////////////
_________events-page___________________
/////////////////////////////////////*/

    .events-row .events-blocks .image-block .big-date {
        right: auto;
        left: -100px;
        width: 100px;
        height: 100%;
    }

    .events-row .events-blocks .image-block {
        width: calc(100% - 100px);
    }

    .events-row .events-blocks .image-block::before {
        padding-top: 75%;
    }

    .events-row .events-blocks .event-location {
        min-width: 100px;
    }

    .events-row .events-blocks .image-block .big-date p:first-child {
        font-size: 28px;
    }

    .events-row .events-blocks .image-block .big-date p:last-child {
        font-size: 22px;
    }

    /*/////////////////////////////////////
_________contact_form__________________
/////////////////////////////////////*/

    #contact-modal .main-contact-wrapper form {
        overflow-y: scroll;
        height: calc(100% - 150px);
    }

    .alert-container {
        width: 80%;
        height: 225px;
        padding-top: 30px;
    }

}

/*/////////////////////////////////////
_________event-registration_______
/////////////////////////////////////*/

.registration-event-col {
    cursor: default;
}

.event-date-block {
    background-color: #007bde;
    color: #fff;
    padding: 60px 35px;
    margin-top: 80px;
}

.events-date-ahead {
    text-align: center;
    margin-bottom: 50px;
}

.event-date-block .events-date-ahead p:first-child {
    margin-bottom: 0;
    font-size: 42px;
    font-weight: 600;
    font-family: 'Roboto Condensed', sans-serif;
}

.event-date-block .events-date-ahead p:last-child {
    font-size: 16px;
    text-align: center;
    padding: 15px;
}

.event-date-block a {
    text-decoration: none;
    color: #FFFFFF;
}

.events-name {
    margin-bottom: 50px;
}

.events-place {
    text-align: center;
}

.events-name h3 {
    color: white;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 21px;
    font-weight: 600;
    padding: 0px 50px 0 30px;
}

.events-place p {
    margin: 0;
    font-size: 16px;
    text-align: center;
    padding: 15px;
}

.event-registration-content {
    margin-top: 80px;
    margin-left: 40px;
}

.event-registration-content-header h1 {
    position: relative;
    color: #f5f5f5;
    font-size: 80px;
    font-weight: 600;
    top: -20px;
    right: -40px;
}

.event-registration-content-header h3 {
    color: #007bde;
    position: absolute;
    top: 110px;
}

.event-registration-form-block {
    border: 1px solid #d0d0d0;
    margin-left: 40px;
    padding: 40px 20px 15px;
    margin-bottom: 40px;
    transition: border-color 500ms;
}

.event-registration-form-block_focus {
    border: 1px solid #007bde;
}

.event-registration-form-block h4 {
    margin-bottom: 30px;
}

.event-registration-form {
    margin-bottom: 80px;
}

.event-registration-form p {
    color: #007bde;
    margin-bottom: 0;
}

.event-registration-form input {
    width: 100%;
    height: 40px;
    padding: 0 10px;

}

.event-registration-form input::placeholder {color: #9b9b9b;}

.event-registration-payment-block {
    border: 1px solid #d0d0d0;
    margin-left: 40px;
    padding: 30px 20px 50px;
    margin-bottom: 50px;
    transition: border-color 500ms;
}

.event-registration-payment-block h4 {
    margin-bottom: 30px;
}

.event-registration-payment-block p {
    font-size: 14px;
    color: #444444;
}

.event-registration-payment-block a {
    text-decoration: underline;
}

.event-registration-submit {
    display: flex;
    justify-content: space-between;
    margin-bottom: 70px;
}

.submit-text-registration {
    font-size: 12px;
    padding-left: 70px;
}

.submit-text-registration a {
    text-decoration: underline;
}

.submit-text-registration input{
    display: none;
}

.submit-text-registration label {
    position: relative;
}

.submit-text-registration label:before {
    content: '';
    display: inline-block;
    position: absolute;
    left: -27px;
    top: 1px;
    width: 15px;
    height: 15px;
    background-color: #fff;
    border: 1px solid #007bde;
    margin-right: 10px;
}

.submit-text-registration input:checked + label:after {
    content: '';
    position: absolute;
    display: inline-block;
    left: -25px;
    top: 3px;
    width: 11px;
    height: 11px;
    background-color: #007bde;
}

.registration-submit-button button {
    height: 40px;
    background-color: #007eda;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 10px 15px;
    transition: background-color 500ms;
}

.registration-submit-button button:hover {
    background-color: #3a8ade;
}

.event-registration-form-block #eventregistration-price {
    float: left;
    width: 80%;
}

.event-registration-payment-block .form-control:focus .event-registration-payment-block {
    border: 1px solid #007bde;
}

@media (max-width: 425px) {
    .event-registration-content-header h1 {
        font-size: 40px;
        top: -20px;
        right: -10px;
    }
    .event-registration-content-header h3 {
        top: 70px;
    }
}

/*/////////////////////////////////////
_________error-page_______
/////////////////////////////////////*/

.error-container {
    height: 100vh;
}

.error-container .row {
    height: 100%;
    align-items: flex-end;
}

.error-column {
    height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.error-page {
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url("../../files/images/global/Untitled-1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
}

.error-page + .footer-container {
    display: none;
}

.error-content-img {
    display: flex;
    height: 40%;
    justify-content: center;
    align-items: center;
    opacity: 0.7;
}

.error-content-img p {
    font-size: 300px;
    color: #FFFFFF;
}

.error-content-img img {
    height: 220px;
    position: relative;
    top: -12px;
}

.error-content {
    text-align: center;
    color: #fff;
    opacity: 0.7;
}

.error-content p {
    padding: 30px 0;
}

.error-content button {
    color: #fff;
    background-color: transparent;
    border-left: none;
    border-right: none;
    padding: 10px 30px;
    border-top: 2px solid;
    border-bottom: 2px solid;
    cursor: pointer;
}

.flex-parent {
    display: flex;
}

.event-left,
.event-right {
    width: 60%;
    display: inline-block;
}

.event-left {
    width: 40%;
}

.event-left {
    padding: 15px 0;
}

.event-right p {
    margin-left: 15px;
    color: #0279df;
    font-size: 32px;
    font-weight: 400;
    display: inline-block;
    font-family: 'Roboto Condensed', sans-serif;
}

.event-right p:first-child:not(:last-child) {
    font-size: 16px;
    color: #777777;
    font-weight: 500;
    position: relative;
}

.event-right p:first-child:not(:last-child):after {
    position: absolute;
    content: '';
    display: block;
    height: 1px;
    width: 125%;
    bottom: 50%;
    left: -3px;
    transform: rotate(-20deg);
    background-color: #777777;
}

@media (max-width: 768px) {
    .error-page {
        background-position: right;
    }
}

@media (max-width: 425px) {
    .error-content-img p {
        font-size: 165px;
    }
    .error-content-img img {
        height: 130px;
    }
}

@media (max-width: 320px) {
    .error-content-img p {
        font-size: 150px;
    }
    .error-content-img img {
        height: 115px;
    }
}

/*/////////////////////////////////////
_________event-registration_______
/////////////////////////////////////*/

.event-payment-col {
    padding: 0 40px;
}

.event-payment-col .event-registration-pey button {
    margin: 40px 0 17px;
    width: 55%;
    float: left;
}

.payment-for-event-block a {
    text-transform: uppercase;
}

.event-registration-back-to a {
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 28px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: #067edf;
    float: left;
    width: 50%;
}

.event-payment-col .heading-row h4 {
    padding-left: 0;
}

.event-payment-col .heading-row h4:before {
    display: none;
}

.event-payment-col .heading-row h4:after {
    display: none;
}

/*/////////////////////////////////////
_________submit-modal_______
/////////////////////////////////////*/

.submit-modal .modal-content {
    height: auto;
    margin-top: 11%;
    margin-left: 37%;
    width: 25vw;
    border: none;
}

.submit-modal .modal-header {
    background-color: #FFFFFF;
    border: none;
    min-height: 70px;
    max-height: 340px;
    padding: 20px 35px 20px 30px;
    display: flex;
    border-bottom: 1px solid #2f7bde;
}

.submit-modal .modal-header h5 {
    color: #2f7bde;
}

.submit-modal .modal-header button.close {
    padding: 3px;
    margin: 0;
    height: 0;
    width: 0;
    outline: none;
}

.submit-modal .close {
    color: #2f7bde;
    box-shadow: none;
    outline: none;
}

.submit-modal .close:not(:disabled):not(.disabled):focus, .close:not(:disabled):not(.disabled):hover {
    color: #2f7bde;
}

.submit-modal .modal-footer {
    border-top: none;
    padding: 10px 20px 20px;
    outline: none;
    box-shadow: none;
}

.submit-modal .modal-footer button {
    background-color: #2f7bde;
    border: 0;
    color: #FFFFFF;
    font-family: 'Roboto Condensed', sans-serif;
}

.submit-modal .modal-footer button:focus {
    box-shadow: none;
}

.submit-modal .modal-footer button:not(:disabled):not(.disabled).active, .submit-modal .modal-footer button:not(:disabled):not(.disabled):active, .show>.submit-modal .modal-footer button.dropdown-toggle {
    background-color: #2f7bde;
    box-shadow: none;
    border: 0;
    color: #FFFFFF;
}


.open-event-row .image-header-block {
    background-size: contain;
    background-repeat: no-repeat;
}