@charset "UTF-8";
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;0,900;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  font-family: "Lato", sans-serif;
  color: #011640;
  background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 20px;
  margin: 0;
  padding: 0;
  line-height: 1.3;
}
@media (max-width: 768px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: 18px;
  }
}

p {
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  p {
    font-size: 14px;
  }
}

a,
button {
  text-decoration: none;
  cursor: pointer;
  color: #000;
}

ul {
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

a:hover {
  filter: brightness(105%);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #111111;
  color: white;
  padding: 20px;
  z-index: 10000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  font-family: "Roboto", sans-serif;
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner .cookie-banner-content {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .cookie-banner .cookie-banner-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cookie-banner .cookie-banner-text {
  flex: 1;
  line-height: 20px;
}
.cookie-banner .cookie-banner-text p {
  margin: 0;
  color: white;
  font-size: 12px;
  line-height: 1.5;
}
.cookie-banner .cookie-banner-text a {
  color: #85ccb1;
  text-decoration: underline;
}
.cookie-banner .cookie-banner-text a:hover {
  color: #85a9b3;
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .cookie-banner .cookie-banner-buttons {
    justify-content: flex-end;
    flex-shrink: 0;
  }
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-family: "Roboto", sans-serif;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}
.cookie-btn-accept {
  background-color: #19ae30;
  color: white;
}
.cookie-btn-accept:hover {
  background-color: #158026;
}
.cookie-btn-essential {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: white;
}
.cookie-btn-essential:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.cookie-btn-settings {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: white;
}
.cookie-btn-settings:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.cookie-modal-overlay.show {
  opacity: 1;
}

.cookie-modal {
  background-color: white;
  color: #333;
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  font-family: "Roboto", sans-serif;
}
.cookie-modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-modal-header h2 {
  margin: 0;
  font-size: 20px;
  color: #2e3641;
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: #999;
}
.cookie-modal-close:hover {
  color: #333;
}
.cookie-modal-body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}
.cookie-modal-body p {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}
.cookie-modal-footer {
  padding: 20px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
}

.cookie-category {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f5f5f5;
}
.cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
.cookie-category-title {
  font-weight: 700;
  font-size: 16px;
  color: #2e3641;
}
.cookie-category-desc {
  font-size: 13px;
  line-height: 18px;
  color: #777;
  margin: 0;
}

/* Switch Styles */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch input:checked + .cookie-slider {
  background-color: #19ae30;
}
.cookie-switch input:focus + .cookie-slider {
  box-shadow: 0 0 1px #19ae30;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(20px);
}
.cookie-switch input:disabled + .cookie-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

.clause {
  line-height: 20px;
  color: #7f919e;
  margin-bottom: 10px;
}
.clause p {
  font-size: 14px;
}
.clause a {
  color: #7f919e;
  text-decoration: underline;
}
.clause a:hover {
  color: #7f919e;
}

.terms {
  font-size: 14px;
  line-height: 20px;
  color: #7f919e;
  margin-bottom: 10px;
}
.terms p {
  font-size: 14px;
}
.terms label {
  cursor: pointer;
}
.terms input[type=checkbox] {
  margin-top: 2px;
  margin-left: 0px;
  cursor: pointer;
  flex-shrink: 0;
}
.terms a {
  color: #7f919e;
  text-decoration: underline;
}

.terms-error {
  color: #e70000;
  font-size: 14px;
  margin: 8px 0;
  display: none;
}
.terms-error.show {
  display: block;
}

.disclaimer {
  font-size: 14px;
  line-height: 20px;
  color: #7f919e;
  margin-bottom: 10px;
}
.disclaimer p {
  font-size: 14px;
}

.headerTop {
  width: 100%;
  background: #284659;
  padding: 5px;
}
.headerTop__text {
  margin: 0;
  padding: 0;
  font-size: 22px;
  line-height: 32px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}

.stickyContent {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  left: 0;
  top: 120px;
  width: 300px;
  z-index: 100;
  pointer-events: none;
}
.stickyContent__modal, .stickyContent__btn {
  pointer-events: auto;
}
.stickyContent__modal {
  background: #284659;
  border-radius: 0 15px 0 0;
  padding: 10px 0 16px;
  display: flex;
  justify-content: flex-start;
}
.stickyContent__body {
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 10px;
}
.stickyContent__logo {
  width: 146px;
  height: auto;
}
.stickyContent__text {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #fff;
}
.stickyContent__price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  width: 100%;
}
.stickyContent__priceOld {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.stickyContent__priceLine {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-80%, -50%);
  width: 90px;
  height: 2px;
  pointer-events: none;
}
.stickyContent__priceNew {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.stickyContent__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 127px;
  margin: -14px 0 0 0;
  padding: 8px 24px;
  background: #ec4e4b;
  border: none;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.layout {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 15px;
}

.header {
  width: 100%;
  padding: 15px 0;
}
.header__line {
  width: 100%;
  height: 2px;
  background: #e6e6e6;
  border: none;
  margin: 0;
}
.header__logoWrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 688px;
  margin: 0 auto 20px;
}
.header__logo {
  display: block;
  max-width: 688px;
  width: 100%;
  height: auto;
}
.header__logoTagline {
  display: block;
  max-width: 363px;
  width: 100%;
  height: auto;
  margin-top: 8px;
}
.header__links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 8px 16px 0 0;
}
.navigation__item {
  margin: 0;
}
.navigation__link {
  font-size: 22px;
  line-height: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #011640;
  font-weight: 400;
}
.navigation__link--active {
  font-weight: 700;
}

.search {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 260px;
  flex-shrink: 0;
}
.search__input {
  width: 100%;
  height: 40px;
  padding: 6.5px 40px 6.5px 8px;
  border: none;
  background: rgba(230, 230, 230, 0.31);
  font-family: inherit;
  font-size: 22px;
  color: #011640;
}
.search__input::-moz-placeholder {
  color: #757575;
}
.search__input::placeholder {
  color: #757575;
}
.search__icon {
  position: absolute;
  right: 8px;
  width: 22px;
  height: 22px;
  pointer-events: none;
}

.main {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  padding: 15px 0 40px;
}

.mainContent {
  flex: 1;
  min-width: 0;
}
.mainContent h1 {
  font-size: 34px;
  line-height: 40px;
  font-weight: 700;
  color: #011640;
  text-transform: uppercase;
  margin-bottom: 17px;
  white-space: normal;
}
.mainContent h2 {
  font-size: 26px;
  line-height: 1.3;
  font-weight: 700;
  color: #011640;
  margin: 20px 0;
}
.mainContent h3 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  color: #011640;
  margin: 20px 0;
}
.mainContent p {
  font-size: 22px;
  line-height: 1.3;
  color: #011640;
  margin: 0 0 20px;
}
.mainContent figure {
  margin: 20px 0;
}
.mainContent figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.mainContent i {
  font-size: 22px;
  line-height: 1.3;
  color: #011640;
  padding: 5px 5px 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 0 17px;
  padding: 0;
  font-size: 14px;
  line-height: 1.3;
  color: #011640;
}
.breadcrumb__item {
  padding-right: 15px;
}
.breadcrumb__item:not(:last-child)::after {
  content: "/";
  margin-left: 5px;
  font-size: 12px;
}
.breadcrumb__link {
  color: #011640;
}

.redaction {
  display: inline-block;
  background: #c71717;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 10px;
  line-height: 1.3;
  margin-bottom: 17px;
}

.date {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.date__article {
  font-size: 12px;
  line-height: 16px;
  color: #5b83a6;
}
.date__label {
  margin-right: 5px;
}
.date__fb {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 200px;
  padding: 7px 5px 7px 30px;
  background: #5b83a6;
  border-radius: 5px 0 0 5px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}
.date__fbIcon {
  position: absolute;
  left: 5px;
  width: 35px;
  height: 35px;
  bottom: 0;
}

.advantages {
  list-style: none;
  margin: 0 0 20px;
  padding: 0 0 0 50px;
}
.advantages__item {
  position: relative;
  margin-bottom: 20px;
  font-size: 22px;
  line-height: 1.3;
}
.advantages__item::before {
  content: "";
  position: absolute;
  left: -45px;
  top: 5px;
  width: 30px;
  height: 30px;
  background: url("../images/icon-check.svg") center/contain no-repeat;
}

.textItalic {
  font-style: italic;
}

.diagramWrap {
  margin: 0;
}
.diagramWrap__chart {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-bottom: -4px;
}
.diagramWrap__list {
  list-style: none;
  margin: 0;
  padding: 15px;
  background: #284659;
}
.diagramWrap__listItem {
  padding: 8px 15px;
  font-size: 22px;
  line-height: 1.3;
  color: #fff;
}

.weeksWrap {
  margin: 20px 0;
}
.weeksWrap h2,
.weeksWrap h3,
.weeksWrap h4,
.weeksWrap h5,
.weeksWrap p {
  color: #fff;
}
.weeksWrap__panel {
  width: 100%;
  background: #fff;
}
.weeksWrap__image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.weeksWrap__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 15px 15px 35px;
  background-color: #284659;
}
.weeksWrap__titleWrap {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 0 10px;
}
.weeksWrap__quote {
  position: absolute;
  width: 16px;
  height: 36px;
  background: url("../images/weeks-quote.svg") center/contain no-repeat;
}
.weeksWrap__quote--left {
  left: 0;
  top: -30px;
}
.weeksWrap__quote--right {
  right: 0;
  bottom: -16px;
}
.weeksWrap__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: #fff;
  margin: 0;
  text-transform: none;
}
.weeksWrap__subtitle {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: #fff;
  margin: 0;
  padding-top: 10px;
}
.weeksWrap__box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.weeksWrap__boxTitle {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  color: #fff;
  margin: 0;
}
.weeksWrap__boxContent {
  font-size: 22px;
  line-height: 32px;
  color: #fff;
  margin: 0;
}
.weeksWrap__caption {
  font-size: 20px;
  font-style: italic;
  line-height: 1.3;
  color: #fff;
  margin: 10px 0 0;
  padding: 0 5px;
}

.benefits {
  list-style: none;
  margin: 0 0 20px;
  padding: 0 0 0 50px;
}
.benefits__item {
  position: relative;
  margin-bottom: 20px;
  font-size: 22px;
  line-height: 1.3;
}
.benefits__item::before {
  content: "";
  position: absolute;
  left: -45px;
  top: 5px;
  width: 30px;
  height: 30px;
  background: url("../images/icon-check.svg") center/contain no-repeat;
}

.note {
  font-size: 26px;
  line-height: 1.3;
  font-weight: 700;
  color: #011640;
  margin: 20px 0;
}
.note--price {
  font-size: 26px;
  line-height: 1.3;
}
.note__list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.note__list li {
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 10px;
  padding-left: 32px;
  position: relative;
}
.note__list li::before {
  content: "•";
  position: absolute;
  left: 0;
}

.dpWrap {
  position: relative;
  margin: 30px 0;
  border: 1px solid #006794;
  border-radius: 8px;
  overflow: hidden;
}
.dpWrap__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}
.dpWrap__form {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 31px 30px;
}
.dpWrap__content {
  flex: 1;
  min-width: 280px;
  max-width: 468px;
  padding: 20px;
}
.dpWrap__heading {
  font-size: 22px;
  line-height: 1.4;
  text-align: center;
  margin: 0 0 20px;
  text-shadow: 0 0 30px #fff;
}
.dpWrap__heading strong {
  font-weight: 700;
}
.dpWrap__heading .textRed {
  color: red;
}
.dpWrap__callTitle {
  font-size: 32px;
  text-align: center;
  margin: 0 0 20px;
}
.dpWrap__btn {
  display: block;
  width: 100%;
  padding: 12px 24px;
  background: #fff700;
  border: 1px solid #cac875;
  border-radius: 999px;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.29);
  font-family: inherit;
  font-size: 28px;
  font-weight: 700;
  color: #011640;
  text-align: center;
  cursor: pointer;
}
.dpWrap__btn[hidden] {
  display: none;
}
.dpWrap__phone {
  display: none;
  width: 100%;
  padding: 12px 24px;
  background: #fff700;
  border: 1px solid #cac875;
  border-radius: 999px;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.29);
  font-family: inherit;
  font-size: 28px;
  font-weight: 700;
  color: #011640;
  text-align: center;
  text-decoration: none;
}
.dpWrap__phone:not([hidden]) {
  display: block;
}
.dpWrap__images {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  width: 270px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .dpWrap__images {
    align-items: stretch;
  }
}
.dpWrap__logoFrame {
  background: #006794;
  padding: 12px;
}
.dpWrap__logo {
  width: 210px;
  height: auto;
}
.dpWrap__product {
  width: 100%;
  height: auto;
}

.aside {
  width: 358px;
  flex-shrink: 0;
}
.aside__wrap {
  margin-bottom: 20px;
}
.aside__title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  margin: 0;
  background: #284659;
  border: 1px solid #284659;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}
.aside__title--articles {
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
}
.aside__content {
  border: 1px solid #284659;
  border-top: none;
  background: #fff;
}

.subarticleBox {
  display: flex;
  gap: 0;
  padding: 15px 6px 16px 0;
  border-bottom: 1px solid #e6e6e6;
  color: #5b83a6;
  text-decoration: none;
}
.subarticleBox:last-child {
  border-bottom: none;
}
.subarticleBox__img {
  width: 116px;
  height: 116px;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
.subarticleBox__content {
  flex: 1;
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.subarticleBox__title {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  color: #5b83a6;
}
.subarticleBox__date {
  margin: 0;
  font-size: 14px;
  line-height: 14px;
  color: #5b83a6;
}

.partnersBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 20px;
  border: 1px solid #284659;
  border-top: none;
}
.partnersBox img {
  max-width: 100%;
  height: auto;
}

.socialBox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 43px;
  padding: 20px 42px;
  background: #284659;
}
.socialBox__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 63px;
  height: 63px;
  flex-shrink: 0;
}
.socialBox__link img {
  width: 63px;
  height: 63px;
  max-width: 63px;
  -o-object-fit: contain;
     object-fit: contain;
}

.newsletterBox {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: #284659;
}
.newsletterBox img {
  width: 100px;
  height: 75px;
  max-width: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}

.sectionComments {
  padding: 20px 0 48px;
  border-top: 1px solid #e6e6e6;
  margin-top: 20px;
}
.sectionComments__header {
  font-size: 34px;
  font-weight: 700;
  line-height: 32px;
  margin: 0 0 20px;
}
.sectionComments__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 20px;
}

.commentsForm {
  position: relative;
  padding: 55px 0 0 70px;
  border-top: 5px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 48px;
}
.commentsForm__avatar {
  position: absolute;
  left: 5px;
  top: 50px;
  width: 50px;
  max-width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
.commentsForm__clip {
  position: absolute;
  right: 8px;
  top: 90px;
  width: 25px;
  max-width: 25px;
  height: auto;
}
.commentsForm__textarea {
  width: 100%;
  min-height: 100px;
  margin-bottom: 16px;
  padding: 12px;
  border: 1px solid #5b83a6;
  border-radius: 20px;
  background: #f2f5f6;
  font-family: inherit;
  font-size: 16px;
  resize: vertical;
  resize: none;
}
.commentsForm__textarea::-moz-placeholder {
  color: #757575;
}
.commentsForm__textarea::placeholder {
  color: #757575;
}
.commentsForm__input {
  width: 100%;
  margin-bottom: 16px;
  padding: 16px 12px;
  border: 1px solid #5b83a6;
  border-radius: 10px;
  background: #f2f5f6;
  font-family: inherit;
  font-size: 22px;
}
.commentsForm__input::-moz-placeholder {
  color: #757575;
}
.commentsForm__input::placeholder {
  color: #757575;
}
.commentsForm__actions {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 15px;
}
.commentsForm__button {
  padding: 8px 24px;
  background: #5b83a6;
  border: none;
  border-radius: 20px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  cursor: pointer;
}

.commentsWrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .commentsWrapper {
    gap: 12px;
  }
}

.comment {
  display: flex;
  align-items: flex-start;
}
.comment__avatar {
  width: 50px;
  max-width: 50px;
  min-width: 50px;
  height: 50px;
  margin: 0 16px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
.comment__vote {
  width: 13px;
  max-width: 13px;
  height: 9px;
  flex-shrink: 0;
}
.comment__content {
  flex: 1;
  min-width: 0;
  padding-bottom: 32px;
}
.comment__name {
  font-size: 19px;
  font-weight: 700;
  margin: 0 16px 0 0;
  display: inline;
}
.comment__time {
  font-size: 16px;
  font-weight: 400;
  color: #011640;
}
.comment__text {
  font-size: 22px;
  line-height: 32px;
  margin: 16px 0;
}
.comment__images {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0;
  padding-top: 16px;
  margin: 0 -16px;
}
.comment__images--tall .comment__photo {
  max-width: 300px;
}
.comment__photo {
  width: 200px;
  max-width: 200px;
  height: auto;
  margin: 16px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.comment__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 22px;
  color: #707070;
}
.comment--reply {
  margin-left: 82px;
}
@media (max-width: 768px) {
  .comment--reply {
    margin-left: 40px;
  }
}

.footerSite {
  width: 100%;
  background: #284659;
  padding: 10px 15px 20px;
  text-align: center;
}
.footerSite__links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.footerSite__link {
  font-size: 22px;
  line-height: 1.3;
  color: #fff;
}
.footerSite__divider {
  color: #fff;
  font-size: 22px;
}
.footerSite__copy {
  margin: 0;
  font-size: 22px;
  line-height: 32px;
  color: #fff;
}

.attachments {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 10px;
  justify-content: center;
}

.footer--legal {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px;
  color: #fff;
}
.footer--legal a {
  color: #fff;
  text-decoration: underline;
}
.footer--legal .text-gray {
  margin-top: 20px;
}
.footer--legal .container {
  max-width: 985px;
  margin: auto;
}

@media (max-width: 1650px) {
  .stickyContent {
    display: none;
  }
}
@media (max-width: 992px) {
  .main {
    flex-direction: column;
  }
  .mainContent {
    max-width: 100%;
  }
  .aside {
    width: 100%;
  }
  .navigation {
    flex-wrap: wrap;
    justify-content: center;
  }
  .header__links {
    flex-direction: column;
    align-items: stretch;
  }
  .search {
    width: 100%;
  }
  .mainContent h1 {
    font-size: 24px;
    line-height: 30px;
    white-space: normal;
  }
}
@media (max-width: 576px) {
  .date__fb {
    min-width: auto;
    width: 100%;
  }
}/*# sourceMappingURL=styles.css.map */