@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');

.footer {
background-color:transparent!important;
}
.cont {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    border: 10px outset #dd1616;
    background-color: rgba(216, 216, 216, 0.671);
    border-radius: 25px;
    margin: 20px 0px;
}

    .cont .left {
        width: 50%;
    }

        .cont .left img {
            width: 100%;
        }

    .cont .right {
        width: 50%;
    }

@media screen and (max-width: 768px) {
    .cont .left {
        width: 100%;
    }

    .cont .right {
        width: 100%;
    }
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.d-block {
  display: block;
}
.d-none {
  display: none;
}
.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.full-width {
  width: 100%;
}
a {
  text-decoration: none;
}
.browser-color {
  color: #1659b4;
}
.is-center {
  text-align: center;
}
.is-left {
  text-align: left;
}
.is-right {
  text-align: right;
}

.is-bold {
  font-weight: bold;
}
.is-italic {
  font-style: italic;
}
.has-left-img {
  display: block;
  float: left;
  max-width: 250px;
  padding-right: 15px;
}
.has-left-img img {
  margin-bottom: 5px;
}
.has-center-img {
  display: block;
  max-width: 250px;
}
.has-right-img {
  display: block;
  float: right;
  max-width: 250px;
  padding-left: 15px;
}
.has-right-img img {
  margin-bottom: 5px;
}

h1 {
  font-size: 2.8125rem;
  line-height: 3.25rem;
  color: #343434;
}
h2 {
  font-size: 1.875rem;
  color: #343434;
  font-family: "Georgia", sans-serif;
  margin: 0px;
  letter-spacing: 0.6px;
  line-height: 2.75rem;
  margin-bottom: 30px;
}
h3 {
  font-size: 1.25rem;
  line-height: 1.6875rem;
}
h4 {
  font-size: 1.25rem;
  line-height: 1.6875rem;
}
h5 {
  font-size: 0.8125rem;
  line-height: 1.25rem;
}
h6 {
  font-size: 0.625rem;
  line-height: 1.0625rem;
}
@-webkit-keyframes cookieAnimate {
  0% {
    opacity: 0;
    width: 0px;
    height: 0px;
    padding: 0px;
  }
  100% {
    opacity: 1;
    width: 35px;
    height: 35px;
    padding: 10px;
    margin: 6px;
  }
}
@keyframes cookieAnimate {
  0% {
    opacity: 0;
    width: 0px;
    height: 0px;
    padding: 0px;
  }
  100% {
    opacity: 1;
    width: 35px;
    height: 35px;
    padding: 10px;
    margin: 6px;
  }
}
@-webkit-keyframes cookieContentAnimate {
  0% {
    position: relative;
    top: -10px;
    opacity: 0;
  }
  100% {
    position: relative;
    top: 0px;
    opacity: 1;
  }
}
@keyframes cookieContentAnimate {
  0% {
    position: relative;
    top: -10px;
    opacity: 0;
  }
  100% {
    position: relative;
    top: 0px;
    opacity: 1;
  }
}
body,
html {
  margin: 0px;
  padding: 0px;
  font-family: "Georgia", sans-serif;
  background: #f1f1f1;
  line-height: 1.25;
  color: #343434;
  font-size: 0.9375rem;
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
img {
  max-width: 100%;
}
.btn-text {
  font-size: 2.1875rem;
  font-weight: bold;
  display: inline-block;
  text-align: left;
  padding: 0px;
  color: #001aee;
  text-decoration: underline;
}
.current-info {
  color: #ff0000;
  font-style: italic;
}
hr {
  height: 1px;
  background: #ccc;
  outline: none;
  border: 0px;
}
.small {
  padding-top: 10px;
  font-size: 0.75rem;
  color: #aaa;
  line-height: 1.1875rem;
  text-align: center;
}

ul {
  list-style-type: none;
  padding-left: 0px;
  margin: 0px;
}
.article ul {
  padding-left: 40px;
  list-style-type: disc;
  margin-top: 0px;
}
.article ul li {
  font-size: 1.25rem;
  line-height: 1.6875rem;
  margin: 3px 0px;
}
@media screen and (max-width: 500px) {
  article ul {
    padding-left: 20px;
  }
}
.breadcrumbs {
  padding-top: 10px;
  margin: 0px 0px 10px;
}
.breadcrumbs__item {
  color: #606060;
}
.breadcrumbs__item::after {
  content: "/";
  margin: 0px 8px;
}
.breadcrumbs__item:last-child::after {
  content: none;
}
.breadcrumbs__item.is-active {
  text-decoration: underline;
  color: #1e6dd4;
}


.closeCookieBox {
  opacity: 0;
}
.cookieBox {
  display: none;
  position: fixed;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  max-width: 100%;
  text-align: center;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  z-index: 1000;
}
.cookieBox.display {
  display: block;
}
.cookieBox.display.closeCookieBox {
  display: none;
}
.cookieBox .cookieBoxContent {
  background: #000000c2;
}
.cookieBox .cookieBoxContent {
  color: #fff;
  padding: 20px;
  line-height: 23px;
  -webkit-animation: cookieContentAnimate 0.5s 1 0.4s;
  animation: cookieContentAnimate 0.5s 1 0.4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  position: relative;
  -webkit-transition: 1s linear;
  transition: 1s linear;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.cookieBox .cookieBoxContent p {
  padding: 0px;
  line-height: 19px;
  margin: 0px;
}
.cookieBox .cookieBoxContent p:first-child {
  width: calc(100% - 190px);
}
.cookieBox .cookieBoxContent p:last-child {
  margin-left: auto;
}
.cookieBox .cookieBoxContent a.readMore {
  color: #1d5eb2;
}
.cookieBox .cookieBoxContent a.readMore:hover {
  text-decoration: underline;
}
.cookieBox .cookieBoxContent a.closeCookies {
  background: #0f315d;
  padding: 7px 20px;
  border-radius: 5px;
  color: #fff;
}
@media screen and (max-width: 800px) {
  .cookieBox .cookieBoxContent {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .cookieBox .cookieBoxContent p:first-child {
    width: 100%;
  }
  .cookieBox .cookieBoxContent p:last-child {
    margin-left: 0px;
    margin-top: 20px;
  }
}
blockquote {
  color: #000;
  padding: 20px 30px;
  background: #eeeeee;
  position: relative;
  margin: 0px;
  border-radius: 10px;
}
blockquote .has-left-img {
  overflow: hidden;
  border-radius: 10px;
  max-width: 190px;
  margin-right: 15px;
  margin-bottom: 0px;
}
blockquote img {
  margin-bottom: 0px !important;
  padding-right: 0px !important;
}
blockquote p {
  margin: 0px;
  line-height: 1.6875rem !important;
}
.header__additional-icons img {
  max-height: 46px;
  margin: 0px 5px;
}
.header__additional-search {
  position: relative;
}
.header__additional-search input {
  border-radius: 5px;
  border: 1px solid #ccc;
  padding: 15px;
  margin-right: 0px;
  padding-right: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 300px;
}
.header__additional-search img {
  height: 15px;
  margin-right: 5px;
}
.header__additional-search a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  right: 0px;
  top: 1px;
  color: #000;
  background: #ccc;
  font-weight: bold;
  padding: 15px 10px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  text-transform: uppercase;
}
.header__additional-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
}
.header__additional-menu ul {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  padding: 12px 20px;
}
.header__additional-menu ul li a {
  color: #000;
  margin: 0px 12px;
  font-size: 1rem;
  text-transform: uppercase;
}
@media screen and (max-width: 870px) {
  .header__additional-menu ul {
    margin-top: 0px;
  }
}
.header__additional-specialists {
  padding: 0px 0px 30px;
}
.specialists-item {
  color: #0f315d;
  padding-left: 40px;
}
.specialists-image {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  overflow: hidden;
  position: relative;
}
.specialists-image img {
  position: absolute;
  top: -9999px;
  right: -9999px;
  bottom: -9999px;
  left: -9999px;
  margin: auto;
  width: 100%;
}
.specialists-details {
  display: none;
  text-align: center;
  margin-top: 10px;
}
.specialists-details span {
  font-size: 13px;
  font-family: "Georgia", sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.specialists-details span:last-child {
  font-size: 11px;
  font-family: "Georgia", sans-serif;
  margin-top: 5px;
}
.layout__center {
  max-width: 900px;
  margin: 0 auto;
  padding: 0px 15px;
  width: 100%;
}
.main-layout {
  background: #fff;
}
.right-side {
  margin-left: auto;
}
.header-layout__center {
  background: #fff;
}
.header__content {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__logo-link {
  margin: 20px 15px 0px 0px;
  display: inline-block;
  position: relative;
}
.header__logo-link img {
  width: 300px;
  max-width: 100%;
}
.header__additional-box {
  margin-top: 30px;
  margin-right: 0px;
}
.header__additional-search {
  position: relative;
}
.header__additional-search input {
  border-radius: 5px;
  border: 1px solid #ccc;
  padding: 15px;
  margin-right: 0px;
  padding-right: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 300px;
}
.header__additional-search img {
  height: 15px;
  margin-right: 5px;
}
.header__additional-search a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  right: 0px;
  top: 1px;
  color: #000;
  background: #ccc;
  font-weight: bold;
  padding: 15px 10px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  text-transform: uppercase;
}
div.main-menu {
  background: #0f315d;
}
.nav__menu {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.nav__menu-item.is-active .nav__menu-link {
  background: #062042;
}
.nav__menu-link {
  display: block;
  background: #0f315d;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  padding: 10px 20px;
  color: #fff;
  text-transform: none;
  font-weight: normal;
  font-family: "Times New Roman", Times, serif;
  font-size: 1.25rem;
}
.nav__menu-link:hover {
  background: #062042;
}
@media screen and (max-width: 500px) {
  div.main-menu {
    background: #0f315d;
    height: 10px;
  }
  div.main-menu ul {
    display: none;
  }
}
.article {
  max-width: 100%;
}
.article__headline {
  font-family: "Lato-regular", sans-serif;
  margin-bottom: 50px;
}
.article .custom-right-img {
  width: 435px;
  max-width: initial;
  margin-top: 60px;
}
.article__photo {
  margin: 10px 0px;
  background: #e2e0e1;
  padding-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.article__photo p {
  padding-top: 14px;
  padding-left: 10px;
  padding-bottom: 10px;
  width: 50%;
  padding: 0px;
  margin: 0px;
}
.article__photo .has-left-img {
  max-width: 60%;
  line-height: 0;
}
.article__photo img {
  margin-bottom: 0px;
  width: 100%;
}
.article__short-description {
  font-size: 1.125rem;
  line-height: 1.5625rem;
  margin-top: 0px;
}
.article__description {
  font-size: 1.25rem;
  line-height: 1.875rem;
  text-align-last: left;
}
.article__description.border {
  background: #e2e0e1;
  padding: 10px 20px;
  border-radius: 10px;
  border: 2px solid #1659b4;
}
.article__description.has-list {
  margin-bottom: 5px;
}
.article__inside-link {
  font-size: 1.25rem;
  color: #1659b4;
  padding: 10px 0px;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  border-top: 1px solid #1659b4;
  border-bottom: 1px solid #1659b4;
}
.article__inside-link:hover {
  font-size: 1.4375rem;
  border-width: 3px;
}
.aside {
  width: 300px;
  margin-left: 50px;
}
.aside__item {
  margin-bottom: 15px;
}
.aside__item h3 {
  text-transform: uppercase;
  text-align: right;
  letter-spacing: 1px;
  font-size: 1.25rem;
  margin-top: 10px;
  margin-bottom: 10px;
}
.aside a {
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.aside a:hover {
  opacity: 0.8;
}
.comments {
  margin-bottom: 10px;
}
.comments .comment-photo {
  width: 55px;
  height: 55px;
}
.comments__header {
  margin-bottom: 10px;
}
.comments__header > * {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: bold;
}
.comments__header-title {
  padding: 15px 0px;
}
.comments__header-button {
  margin-left: auto;
  color: #385898;
  cursor: pointer;
}
.comments__form {
  margin-top: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  border-bottom: 1px solid #ccc;
  margin-bottom: 30px;
}
.comments__form-avatar {
  margin-right: 15px;
}
.comments__form-fields {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  width: 100%;
}
.comments__form-fields > * {
  margin-bottom: 10px;
}
.comments__form-submit {
  max-width: 150px;
}
.comments__items-last {
  font-size: 0.875rem;
  color: #385898;
  font-weight: bold;
  margin-bottom: 20px;
  display: block;
}
.comments__items-element {
  min-height: 55px;
  margin-bottom: 10px;
}
.comments .comment {
  margin-left: 15px;
  width: 100%;
}
.comments .comment__author {
  font-size: 0.875rem;
  color: #385898;
  font-weight: bold;
  margin: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.comments .comment__author a{
    font-size: 0.875rem;
    color: #385898;
    font-weight: bold;
    margin: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.comments .comment__time {
  color: #aaa;
  margin-right: 10px;
  font-size: 0.6875rem;
  margin-left: 5px;
  font-weight: normal;
}
.comments .comment__content {
  position: relative;
  margin: 5px 0px;
  line-height: 1.3125rem;
  font-size: 0.875rem;
}
@media screen and (max-width: 970px) {
  .aside {
    display: none;
  }
  .article {
    max-width: 100%;
  }
  .header__additional-box {
    margin-right: 0px;
  }
}
@media screen and (max-width: 870px) {
  .header__logo-link {
    margin: 0px;
  }
  .header__additional {
    margin-left: initial;
  }
  .header__additional-box {
    display: none;
  }
  .header__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .nav__menu-link {
    padding: 10px 15px;
  }
}
@media screen and (max-width: 800px) {
  .is-hidden-mobile {
    display: none;
  }
  .custom-right-img {
    max-width: 435px !important;
    padding: 0px;
    width: auto !important;
    margin-top: 0px !important;
    float: none !important;
    margin: 0 auto;
  }
}
@media screen and (max-width: 750px) {
  .article__photo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    padding-right: 0px;
  }
  .article__photo .has-left-img {
    max-width: 100%;
    width: 100%;
    margin-top: 0px;
  }
  .article__photo .has-left-img img {
    padding: 0px !important;
    margin-bottom: 10px;
  }
  .article__photo p {
    width: 100%;
    padding: 0px 15px 15px;
  }
}
@media screen and (max-width: 620px) {
  h2 {
    font-size: 1.6875rem;
    line-height: 2rem;
    text-align: left;
    font-weight: bold;
  }
  .has-right-img,
  .has-left-img {
    float: none;
    display: block;
    margin: 10px auto;
  }
  .has-right-img img,
  .has-left-img img {
    padding: 0px;
  }
}
@media screen and (max-width: 500px) {
  .header__additional {
    display: none;
  }
  .breadcrumbs {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 0.8125rem;
  }
}
/*# sourceMappingURL=styles.min.css.map */
