* {
  box-sizing: border-box;
}

html,
body {
  height: 100vh;
  min-height: 100vh;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: normal;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

p {
  margin: 0;
}

button {
  border: 0;
  outline: 0;
  cursor: pointer;
  background-color: transparent;
  padding: 0;
}

input {
  border: 0;
  outline: 0;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  font-weight: normal;
}

dl,
dd {
  margin: 0;
}

/* GLOBAL CLASSES */
.wrapper {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cont {
  width: 100%;
  min-width: 280px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 1300px) {
  .cont {
    padding: 0 30px;
  }
}
@media (max-width: 1024px) {
  .cont {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .cont {
    padding: 0 15px;
  }
}

.main {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-grow: 1;
  padding-top: 20px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .main {
    flex-wrap: wrap-reverse;
    align-items: flex-end;
    padding-top: 15px;
  }
}

/* $desktopBreakpoint: 1350px; */
.bem__aside-block-headline {
  font-family: 'Inter';
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.22px;
  text-transform: uppercase;
  color: #000;
  border-bottom: dashed 1px #7c7c7c;
}

.bem__big-article-headline {
  color: #000;
  font-size: 30px;
  font-weight: 800;
}

.bem__regular-article-headline {
  color: #000;
  font-size: 22px;
  font-weight: 800;
}

.bem__tag {
  color: #05aab5;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.bem__text {
  margin-bottom: 5px;
  color: #000;
  font-size: 18px;
  font-weight: 400;
}

p {
  margin: 5px 0;
}

h4 {
  margin: 12px 0;
}

h3 {
  margin: 25px 0;
}

.header {
  padding-top: 25px;
  padding-bottom: 25px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
  color: #1e1e1e;
}
@media (max-width: 768px) {
  .header {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.header-cont {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu__toggle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 40px;
}
@media (min-width: 992px) {
  .menu__toggle {
    display: none;
  }
}

.menu__line {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 24px;
  height: 2px;
  background-color: #000000;
  transition: height 0.3s ease-in-out 0.3s;
}
.menu__line::after,
.menu__line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: #000000;
  transition: top 0.3s ease-in-out 0.3s, transform 0.3s ease-in-out;
}
.menu__line::before {
  top: 8px;
}
.menu__line::after {
  top: -8px;
}

.active-mobile-menu .menu__toggle .menu__line {
  height: 0;
  transition: height 0.3s ease-in-out;
}
.active-mobile-menu .menu__toggle .menu__line::after,
.active-mobile-menu .menu__toggle .menu__line::before {
  transition: top 0.3s ease-in-out, transform 0.3s ease-in-out 0.3s;
}
.active-mobile-menu .menu__toggle .menu__line::before {
  top: 0;
  transform: rotate(45deg);
}
.active-mobile-menu .menu__toggle .menu__line::after {
  top: 0;
  transform: rotate(-45deg);
}

.footer {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #05aab5;
  color: #fff;
}

.footer-cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  color: inherit;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
}

@media (max-width: 992px) {
  .footer .menu__list {
    display: none;
  }
}

.menu__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .menu__list {
    display: flex;
    flex-direction: column;
    padding: 10px;
    top: 84px;
    position: absolute;
    right: 0;
    transform: translateX(320px);
    width: 300px;
    background-color: #fff;
    box-shadow: -7px 15px 13px 4px rgba(0, 0, 0, 0.15);
    transition: all 0.15s ease;
  }
}
@media (max-width: 768px) {
  .menu__list {
    top: 73px;
  }
}
@media (max-width: 425px) {
  .menu__list {
    width: 100%;
    transform: translateX(445px);
  }
}

.active-mobile-menu .menu__list {
  transform: translateX(0px);
}

.menu__item {
  margin-right: 30px;
}
.menu__item:last-child {
  margin-right: 0;
}
@media (max-width: 992px) {
  .menu__item {
    display: flex;
    justify-content: center;
    height: 50px;
    margin-right: 0;
  }
}

.menu__link {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
  color: inherit;
  transition: color 0.15s ease-in;
}

.header .menu__link--active {
  color: #05aab5;
}

.header .menu__link:hover {
  color: #05aab5;
}

.footer .menu__link:hover {
  color: #000;
}

@media (max-width: 768px) {
  .section-left {
    display: flex;
  }
}
@media (max-width: 530px) {
  .section-left {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.whats-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 385px;
  min-width: 290px;
  padding: 10px 20px 0;
  margin-bottom: 20px;
  background: #f8f8f8;
}
@media (max-width: 992px) {
  .whats-new {
    min-width: initial;
  }
}
@media (max-width: 768px) {
  .whats-new {
    margin-bottom: 15px;
    margin-right: 15px;
  }
}
@media (max-width: 530px) {
  .whats-new {
    margin-right: 0px;
  }
}

.whats-new__headline {
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.whats-new__list-item {
  margin-bottom: 20px;
}

.whats-new__tag {
  margin-bottom: 10px;
}

.whats-new__list-headline {
  display: block;
  padding-bottom: 20px;
  border-bottom: dashed 1px #7c7c7c;
  transition: color 0.15s ease-in;
}
.whats-new__list-headline:hover {
  color: #05aab5;
}

.news-form-left {
  display: none;
}
@media (max-width: 1229px) {
  .news-form-left {
    display: block;
  }
}

.news-form-right {
  display: flex;
  justify-content: center;
  flex-grow: 1;
}

@media (max-width: 1229px) {
  .index .news-form-right {
    display: none;
  }
}

.articles {
  display: flex;
  justify-content: center;
  flex-grow: 1;
  min-width: 540px;
  margin-left: 20px;
  margin-right: 20px;
}
@media (max-width: 1229px) {
  .articles {
    margin-right: 0px;
  }
}
@media (max-width: 992px) {
  .articles {
    min-width: initial;
  }
}
@media (max-width: 768px) {
  .articles {
    margin-left: 0;
    margin-bottom: 15px;
  }
}

.article-list {
  max-width: 800px;
}

.article-list__item {
  margin-bottom: 15px;
  background: #f8f8f8;
}
.article-list__item a:hover .article-list__headline {
  color: #05aab5;
}

.article-list__img {
  width: 100%;
  object-fit: cover;
}

.article__text-box {
  padding: 40px 20px;
}

.article-list__tag {
  margin-bottom: 20px;
}

.article-list__headline {
  margin-bottom: 20px;
  transition: color 0.2s ease;
}

.news-form {
  width: 100%;
  max-width: 385px;
  display: flex;
  flex-direction: column;
  padding: 40px 20px;
  background: #def2f3;
}

.news-form__headline {
  margin-bottom: 20px;
  color: #006e73;
  text-align: center;
  font-size: 22px;
  font-weight: 800;
}

.news-form__text {
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
}

.news-form__form {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-form__input {
  height: 50px;
  margin-bottom: 20px;
  padding: 15px 20px;
  border: 1px solid #d6d6d6;
  background: #fff;
}

.news-form__btn {
  height: 50px;
  padding: 15px 20px;
  background: #016f72;
  color: #fff;
  text-align: center;
  font-weight: 600;
  border: solid 1px transparent;
  transition: background 0.2s ease;
}
.news-form__btn:hover {
  background-color: #02b9be;
}

@media (max-width: 1229px) {
  .articles-page {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.section-articles {
  max-width: 75%;
  padding: 10px 20px 0;
  margin-bottom: 20px;
  margin-right: 20px;
  background: #f8f8f8;
}
@media (max-width: 1229px) {
  .section-articles {
    max-width: 100%;
    margin-right: 0px;
  }
}

.section-articles__headline {
  margin-bottom: 20px;
  padding-bottom: 10px;
  transition: color 0.3s ease-in-out 0.3s;
}

.section-articles__list-item {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: dashed 1px #7c7c7c;
}
.section-articles__list-item a {
  display: flex;
}
@media (max-width: 768px) {
  .section-articles__list-item a {
    flex-wrap: wrap;
  }
}
.section-articles__list-item a:hover .section-articles__list-item-headline {
  color: #006e73;
}

.section-articles__list-item-img {
  width: 365px;
  margin-right: 20px;
  margin-bottom: 20px;
  object-fit: contain;
}

.section-articles__list-item-teg {
  margin-bottom: 10px;
}

.section-articles__list-item-headline {
  margin-bottom: 10px;
}

@media (max-width: 1229px) {
  .article-page {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.section-one-article {
  max-width: 75%;
  margin-bottom: 20px;
  margin-right: 20px;
  background: #f8f8f8;
}
@media (max-width: 1229px) {
  .section-one-article {
    max-width: 100%;
    margin-right: 0px;
  }
}

.section-one-article__img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.section-one-article__text-box {
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section-one-article__text-box {
    padding: 20px 15px;
  }
}

.section-one-article__teg {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .section-one-article__teg {
    margin-bottom: 10px;
  }
}

.section-one-article__headline {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .section-one-article__headline {
    margin-bottom: 10px;
  }
}
