@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
  font-family: "eurofontc";
  font-style: normal;
  font-weight: 400;
  /* Браузер сначала попробует найти шрифт локально */
  src: local("eurofontc"),
       /* Если не получилось, загрузит woff2 */
       url("../fonts/eurofontc-italic.woff2") format("woff2"),
       /* Если браузер не поддерживает woff2, загрузит woff */
       url("../fonts/eurofontc-italic.woff") format("woff");
}

@font-face {
  font-family: "favoritbookc";
  font-style: normal;
  font-weight: 400;
  /* Браузер сначала попробует найти шрифт локально */
  src: local("favoritbookc"),
       /* Если не получилось, загрузит woff2 */
       url("../fonts/favoritbookc.woff2") format("woff2"),
       /* Если браузер не поддерживает woff2, загрузит woff */
       url("../fonts/favoritbookc.woff") format("woff");
}

@font-face {
  font-family: "favoritc";
  font-style: normal;
  font-weight: 700;
  /* Браузер сначала попробует найти шрифт локально */
  src: local("favoritc"),
       /* Если не получилось, загрузит woff2 */
       url("../fonts/favoritc_bold.woff") format("woff");
}

/* Reset and base styles  */
* {
	padding: 0px;
	margin: 0px;
	border: none;
}

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

/* Links */

a, a:link, a:visited  {
    text-decoration: none;
}

a:hover  {
    text-decoration: none;
}

a {
    color: inherit;
}

/* Common */

aside, nav, footer, header, section, main {
	display: block;
}

h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
	font-weight: inherit;
}

ul, ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

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

address {
  font-style: normal;
}

/* Form */

input, textarea, button, select {
	font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

input::-ms-clear {
	display: none;
}

button, input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
    outline: none;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

label {
	cursor: pointer;
}

legend {
	display: block;
}

input[type='file'] {
	max-width: 100%;
}

body {
    font-family: "Roboto", sans-serif;
  background: #F1F2F2;
}

.container {
    width: 1280px;
    margin: 0 auto;
    max-width: 100%;
}

.title {
    text-align: center;
    color: #2F5FA4;
    font-weight: bold;
    font-size: 55px;
    line-height: 130%;
    font-weight: bold;
    text-transform: uppercase;
}

@media screen and (max-width: 1310px) {
    .container {
        padding: 0 15px;
    }
}



header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    background: transparent;
    padding: 20px 10px;
    height: 100px;
    z-index: 100;
    border-bottom: 2px solid #fff;
    display: flex;
    align-items: center;
}

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

.header__links {
      display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
    gap: 10px;
}

.header__logo {
    height: 100%;
}

.header__logo img {
    height: 100%;
    object-fit: contain;
}

.header__link {
    color: #fff;
    font-size: 17px;
    line-height: 150%;
    position: relative;
}

.header__link::after {
    content: '';
    width: 0;
    height: 2px;
    display: block;
    background: #fff;
    position: relative;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    transition: .2s linear;
}


.header__link-btn {
  color: #00ADEE;
}
.mobile .header__link-btn {
  color: #fff;
}
.header__links>li {
  position: relative;
}

.header__nav-sub {
  position: absolute;
  bottom: 10px;
  transform: translateY(100%);
  width: 300px;
  padding-top: 20px;
  display: none;
}

.header__nav-sub-wrapper {
  background: #00ADEE;
  backdrop-filter: blur(20px);
    border-radius: 20px;
  overflow: hidden;
  padding: 10px 0;
}

.header__links>li:hover .header__nav-sub {
  display: block;
}
.header__nav-sub .header__link::after {
  display: none;
}
.header__nav-sub-wrapper li {
  padding: 0 10px;
}

.header__nav-sub-wrapper li:hover a{
  background: #00000031;
}

.header__nav-sub-wrapper .header__link {
  padding: 5px;
  border-bottom: 1px solid #ffffff90;
  display: block;
  width: 100%;
}

.mobile .header__link {
  color: #fff !important; 
}
.header__nav-sub-wrapper .header__link:last-child {
  border-bottom: 0;
}
.header__link:hover::after {
    width: 100%;
}

.burger {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    padding: 15px;
    background-color: #00ADEE;
    cursor: pointer;
    display: none;
  }
  
  .mobile {
    position: fixed;
    z-index: 10000;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    display: flex;
    justify-content: flex-end;
    transform: translateX(110%);
    transition: 0.2s linear;
  }
  
  .mobile__inner {
    width: 320px;
  
    max-width: 100%;
    background: #00ADEE;
    padding: 50px 20px 20px 45px;
    overflow: auto;
  }
  
  .mobile.active {
    transform: translateX(0);
  }
  
  .mobile__close {
    position: absolute;
    top: 30px;
    right: 20px;
  }
  
  .mobile__logo {
    width: 100px;
    display: block;
    margin-top: 20px;
    max-width: 100%;
  }
  
  .mobile__logo img {
    width: 100%;
    object-fit: contain;
  }
  
  .mobile .header__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 40px;
  }
  
  .mobile .header__links li {
    padding: 0;
  }
  
  .mobile .header__nav-sub li {
    overflow: auto;
    max-height: none;
  }
  
  .mobile .header__nav-link {
    padding: 0;
    line-height: 180%;
    font-size: 20px;
  }
  .mobile .header__btn {
    font-size: 18px;
  }
  
  .mobile .header__nav-link:hover::after {
    display: none;
  }
  
  .mobile .header__nav-sub {
    position: relative;
    transform: none;
    overflow: hidden;
    transition: 0.2s linear;
    padding: 0;
    max-height: 0;
  }
  
  @media screen and (max-width: 1400px) {
    .header__nav-link {
      font-size: 13px;
    }
    .header__links {
      gap: 6px;
    }
  }
  
  @media screen and (max-width: 1250px) {
    .header__links {
      gap: 0;
    }
  }
  
  @media screen and (max-width: 1100px) {
    header {
      display: none;
    }
    .burger {
      display: block;
    }
  }

  main {
    overflow: hidden;
  }

.banner {
    padding: 190px 0 60px;
    background: url(../img/banner-bg.jpg) no-repeat;
    background-size: cover;
    background-position: bottom center;
    position: relative;
}


.banner__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

.banner-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}


.banner__title {
    font-size: 64px;
font-family: "favoritc";
    color: #fff;
    margin-top: 10px;
    line-height: 120%;
    text-transform: uppercase;
}

.banner__subtitle {
    font-size: 29px;
font-family: "favoritbookc";
    text-transform: uppercase;
    color: #fff;
    line-height: 120%;
}


.banner-text {
    font-size: 29px;
    font-weight: 300;
    color: #fff;
    line-height: 120%;
    margin-top: 20px;
    font-family: "eurofontc";
}

.banner__logo {
  font-size: 152px;
  text-shadow: 2px 2px 55px rgba(255, 255, 255, 0.5);
  color: #00ADEE;
   font-family: "favoritc";
}

.banner__bottom {
  margin-top: 50px;
  font-size: 32px;
  color: #00ADEE;
   font-family: "favoritbookc";
}

.banner__bottom span {
  font-size: 56px;
  font-family: "eurofontc";
}


.banner__address {
    font-size: 33px;
    font-weight: 400;
    color: #fff;
    line-height: 140%;
    margin-top: 40px;
    width: 1100px;
    max-width: 100%;
}

.banner-right {
  font-size: 36px;
 font-family: "favoritbookc";
  color: #fff;
  text-transform: uppercase;
}

.banner-right span{
  font-size: 63px;
  font-family: "favoritc";
  color: #fff;
  text-transform: uppercase;
}


@media screen and (max-width: 1100px)  {
    .banner {
        padding: 120px 0 60px;
    }
    .banner__title  {
        font-size: 46px;
    }
    .banner__subtitle {
        font-size: 40px;
        margin-top: 10px;
    }
}
@media screen and (max-width: 800px)  {
    .banner__title  {
        font-size: 36px;
    }
    .banner__subtitle {
        font-size: 30px;
    }
    .banner__address {
        font-size: 24px;
    }
    .banner__inner {
      flex-wrap: wrap;
    }
    .banner-left {
      order: 1;
    }
    .banner__logo {
      font-size: 100px;
    }
}
.about {
    padding-top: 80px;
}

.about__list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.about__item-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.about__item-wrapper:nth-child(2n) {
    justify-content: flex-end;
}

.about__item {
    width: 100%;
    padding: 60px 40px;
    border-radius: 40px;
    font-size: 24px;
    color: #414042;
    line-height: 140%;
    font-weight: 400;
    border: 2px solid #00ADEE;
}

.about__item-text {
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.about__text {
    font-size: 24px;
    color: #414042;
    line-height: 140%;
    font-weight: 400;
    text-align: justify;
}

@media screen and (max-width: 600px) {
    .about__item {
        padding: 20px;
        border-radius: 20px;
        font-size: 22px;
    }
    .about__list {
        gap: 20px;
    }
    .title  {
        font-size: 32px;
    }
}

.orgs {
    padding: 100px 0;
    margin-top: 100px;
    border-top: 2px solid #939598;
    border-bottom: 2px solid #939598;
}

.orgs__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.orgs__img {
    width: 560px;
    max-width: 100%;
    object-fit: contain;
}

.orgs__list {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

.orgs__item {
  width: 306px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.orgs__item-img {
  width: 306px;
  max-width: 100%;
  object-fit: contain;
}

.orgs__item-text {
  font-size: 24px;
  line-height: 140%;
  color: #414042;
  position: relative;
}

.orgs__item-window {
  position: absolute;
  bottom: -10px;
  transform: translateY(100%);
  opacity: 0;
  transition: .2s linear;
  font-size: 11px;
  color: #939598;
  background: #fff;
  width: 450px;
  max-width: 100%;
  left: 10%;
  padding: 10px;
  border-radius: 10px;
  line-height: 110%;
}

.orgs__item-text:hover .orgs__item-window {
  opacity: 1;
}

.news {
    padding: 60px 0;
}
.news__list {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 30px;
    align-items: stretch;
    margin-top: 40px;
}

.news__item {
    grid-column: span 2;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
}

.news__item-date {
    color: #fff;
    font-size: 21px;
    line-height: 120%;
    font-weight: 300;
    padding: 20px 20px;
    background: #2F5FA4;
}

.news__item-title {
    font-size: 21px;
    line-height: 140%;
    color: #2F5FA4;
    margin-top: 30px;
    font-weight: bold;
    padding: 0 20px;
          overflow: hidden;
      text-overflow: ellipsis;
      display: -moz-box;
      -moz-box-orient: vertical;
      display: -webkit-box;
      -webkit-line-clamp: 5;
      -webkit-box-orient: vertical;
      line-clamp: 5;
      box-orient: vertical;
}

.news__item-text {
    font-size: 22px;
    line-height: 120%;
    color: #000000;
    margin-top: 20px;
}

.news__item-bottom {
    margin-top: 50px;
    padding: 20px;
}



.news__item-more {
    color: #94979C;
    font-size: 18px;
    line-height: 120%;
    font-weight: 300;
}

.news__item-more:hover {
    text-decoration: underline;
}

@media screen and (max-width: 1200px) {
    .news__item {
        grid-column: span 4;
    }
}

@media screen and (max-width: 900px) {
    .news__list {
        gap: 20px;
    }
    .news__item {
        padding: 20px;
        border-radius: 20px;
    }
    .orgs__list {
      flex-wrap: wrap;
    }
    .orgs__item {
      width: calc(50% - 25px);
    }
    .orgs {
      margin-top: 50px;
    }
}

@media screen and (max-width: 600px) {
    .news__item {
        grid-column: span 8;
    }
    .orgs__item {
      width: 100%;
    }
}


.team {
    padding: 100px 0;
    margin-top: 50px;
    border-bottom: 2px solid #939598;
}

.team__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.team__item {
  display: flex;
  align-items: flex-start;
}

.team__item-img  {
  flex-shrink: 0;
}

.team__item-info {
  padding-left: 80px;
}

.team__item-name {
  font-size: 36px;
  color: #00ADEE;
  font-weight: 300;
}

.team__item-desc {
  font-size: 24px;
  line-height: 140%;
  color: #414042;
}

.team__item-text {
  margin-top: 20px;
  padding: 20px;
  border-radius: 20px;
  border: 2px solid #00ADEE;
  position: relative;
  font-size: 24px;
  line-height: 140%;
  font-style: italic;
  color: #414042;
}

.team__item-text::before {
  content: '';
  width: 62px;
  height: 83px;
  background: url(../img/angle.png) no-repeat;
  position: absolute;
  left: 0;
  top: 50px;
  transform: translateX(-100%);
}

.team__item-text::after {
  content: '';
  width: 2px;
  height: 77px;
  background: #F1F2F2;
  position: absolute;
  left: 0;
  top: 53px;
  transform: translateX(-100%);
}

.subscribe {
    padding: 50px 0;
  }
  .inner-page .subscribe {
    background: transparent;
  }
  #subscribe {
    padding: 30px;
    border-radius: 25px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background: #2F5FA4;
  }
  
  #subscribe .corners {
    padding-bottom: 10px;
  }
  
  #subscribe .soc-block {
    align-items: center;
    margin-top: 15px;
    flex-direction: row;
  }
  
  #subscribe .soc-block .soc-text-pre {
    color: #fff;
    font-size: 0.9em;
  }
    @media (max-width: 900px) {
.team__item {
      flex-wrap: wrap;
    }
    .team__item-info {
      width: 100%;
      padding-left: 0;
    }
    .team__item-text::before,
    .team__item-text::after {
      display: none;
    }
    .orgs,
    .team {
      padding: 50px 0;
    }
    }
  
  @media (max-width: 767px) {
    #subscribe .soc-block .soc-text-pre {
      text-align: center;
    }
    
  }
  
  #subscribe .soc-block .soc-text-post {
    color: #fff;
    font-size: 0.9em;
    text-align: right;
  }
  
  @media (max-width: 767px) {
    #subscribe .soc-block .soc-text-post {
      text-align: center;
    }
  }
  
  #subscribe .soc-block .soc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    margin-left: 20px;
  }
  
  #subscribe .soc-block .soc a {
    color: #fff;
    font-size: 35px;
  }
  
  #subscribe .soc-block .soc a:hover {
    color: #ffe7d4;
  }
  
  @media (max-width: 767px) {
    #subscribe .soc-block .soc a {
      font-size: 55px;
    }
  }
  
  @media (max-width: 767px) {
    #subscribe .soc-block {
      flex-direction: column;
    }
  }
  
  #subscribe ul {
    padding: 0;
    margin: 0;
  }
  
  #subscribe a {
    text-decoration: none;
  }
  
  #subscribe .checkbox-soglashenie {
    width: 100%;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
  }
  
  #subscribe .checkbox-soglashenie.active {
    opacity: 1;
    max-height: none;
    overflow: visible;
  }
  
  #subscribe .checkbox-soglashenie label {
    align-items: flex-start !important;
    font-size: 12px;
  }
  
  #subscribe .checkbox-soglashenie label::before {
    margin-top: 5px;
  }
  
  #subscribe input.err {
    border: 1px solid red !important;
  }
  
  #subscribe input.err::placeholder {
    color: red !important;
  }
  
  .subscribe-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-end;
  }
  
  #subscribe .title {
    font-size: 36px;
    font-weight: 600;
    text-transform: none;
  }
  
  #subscribe .modal-list {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translateY(-150%);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s linear;
    z-index: -2;
  }
  
  #subscribe .modal-list.active {
    transform: translateY(0);
    opacity: 1;
    z-index: 2000;
  }
  
  #subscribe .modal-list-window {
    width: 500px;
    max-width: 95vw;
    max-height: 80vh;
    padding: 20px;
    background: #ffffff;
    border-radius: 30px;
    border: 1px solid #00ADEE;
    transform: translateY(-150%) scale(0);
    transition: 0.2s linear;
  }
  
  #subscribe .modal-list-title {
    font-size: 22px;
    color: #00ADEE;
    padding-bottom: 10px;
  }
  
  #subscribe .subscribe-form-item-list {
    height: 520px;
    max-height: 60vh;
    width: 100%;
    overflow: auto;
  }
  
  #subscribe .subscribe-form-item-list::-webkit-scrollbar {
    width: 5px;
    border-radius: 2px;
  }
  
  #subscribe .subscribe-form-item-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
  }
  
  #subscribe .subscribe-form-item-list::-webkit-scrollbar-thumb {
    background: #F2F3F5;
    border-radius: 2px;
  }
  
  #subscribe .subscribe-form-item-list::-webkit-scrollbar-thumb:hover {
    background: #F2F3F5;
  }
  
  #subscribe .alert-warning {
    display: none;
    padding: 5px 10px;
    color: red;
    border-radius: 2px;
    background-color: #fff3cd;
    border: 1px solid red;
    margin-top: 10px;
  }
  
  #subscribe .alert-warning.active {
    display: block;
  }
  
  #subscribe .modal-list.active .modal-list-window {
    transform: translateY(0%) scale(1);
  }
  
  #subscribe .checkbox {
    position: relative;
  }
  
  #subscribe .custom-checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
  }
  
  #subscribe .custom-checkbox + label {
    display: inline-flex;
    align-items: center;
    user-select: none;
    color: #1e6483;
  }
  
  .checkbox-label p {
    color: #fff;
  }
  
  #subscribe .custom-checkbox + label::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    border: 1px solid #adb5bd;
    border-radius: 2px;
    margin-right: 16px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 60% 60%;
  }
  
  #subscribe .err + label::before {
    border: 1px solid red;
  }
  
  #subscribe custom-checkbox.checkbox-20 + label::before {
    content: "";
    width: 18px;
    height: 18px;
    margin-right: 10px;
  }
  
  #subscribe .custom-checkbox:checked + label::before {
    border-color: #fff;
    background-color: #6c9ee8;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
  }
  
  #subscribe .modal-list__btn {
    background-color: #00ADEE;
    border-radius: 30px;
    color: #ffffff;
    border: none;
    display: block;
    width: 200px;
    line-height: 50px;
    display: block;
    margin: 10px auto 0;
    text-align: center;
  }
  
  #subscribe .soc-block {
    align-items: center;
    margin-top: 15px;
    display: flex;
  }
  
  #subscribe .soc-block .soc-text-post {
    color: #fff;
    font-size: 0.9em;
    text-align: right;
  }
  
  @media (max-width: 767px) {
    #subscribe .soc-block .soc-text-post {
      text-align: center;
    }
  }
  
  #subscribe .soc-block .soc {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    align-items: center;
    color: #fff;
    margin-top: 10px;
  }
  
  #subscribe .soc-block .soc a {
    color: #fff;
    font-size: 35px;
  }
  
  #subscribe .soc-block .soc a:hover {
    color: #ffe7d4;
  }
  
  #subscribe form {
    margin-top: 30px;
  }
  
  .subs-subtitle {
    text-align: right;
    font-family: "Roboto", sans-serif;
    margin: 20px 0;
    font-size: 22px;
    color: #fff;
    width: 50%;
  }
  
  .subsform {
    display: flex;
    gap: 20px;
    align-items: stretch;
    flex-wrap: wrap;
  }
  
  .subsform .inp {
    width: calc(25% - 15px);
  }
  .show-topics,
  .subsform .inp input {
    border-radius: 25px;
    background: #F2F3F5;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0 20px;
    height: 50px;
    font-size: 18px;
    color: #8f8f8f;
  }
  
  .checkbox-soglashenie {
    width: 100%;
  }
  
  #subscribe .title {
    margin-top: 0;
    color: #fff;
  }
  
  .subsform .inp .subscribe-form-item__btn {
    background: #00ADEE;
    border: 1px solid #00ADEE;
    color: #fff;
    font-size: 22px;
  }

  .subsform .inp .subscribe-form-item__btn:hover {
    background: #fff;
    color: #00ADEE;
  }

  .partners {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    justify-content: center;
    gap: 24px;
  }
  .partners img {
    object-fit: contain;
    width: calc(20% - 19.2px);
    max-height: 200px;
  }

  .support__text {
    font-size: 24px;
    font-style: italic;
    font-weight: bold;
    display: block;
    clear: both;
    text-align: center;
    padding: 0 10px;
    align-items: center;
  }

  .video16x9 {
    height: auto;
    aspect-ratio: 16 / 9;
    min-height: 100px;
  }

.support__img {
  padding:15px;
  max-height: 185px !important;
}

.wfi {
	display: inline-block;
}
  
  @media (max-width: 1100px) {
    .subscribe-top {
      flex-direction: column;
      align-items: center;
    }
    .partners img {
    object-fit: contain;
    width: calc(33% - 16px);
  }
    .subs-subtitle {
      text-align: center;
      width: 100%;
    }
    .subsform .inp {
      width: calc(50% - 10px);
    }
  }
  
  @media (max-width: 767px) {
    #subscribe .soc-block .soc {
      margin-top: 25px;
      justify-content: space-around;
    }
    .partners img {
      object-fit: contain;
      width: calc(50% - 12px);
    }
    .support__img {
      padding:12px;
    }
		
.wfi {
	display: none;
}
  }
  
  @media (max-width: 650px) {
    .subsform .inp {
      width: 100%;
    }
    .subscribe {
      padding: 25px 0;
    }
    #subscribe form {
      margin-top: 0;
    }
    #subscribe {
      padding: 20px 10px;
    }
    .show-topics,
    .subsform .inp input {
      font-size: 20px;
      height: 50px;
      border-radius: 20px;
    }
    #subscribe .title {
      font-size: 22px;
    }
    .subs-subtitle {
      font-size: 20px;
    }
    .support__img {
      padding:10px;
    }
  }



footer {
    background: #2F5FA4;
}

.footer-top .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
}

.footer-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px 30px;
    padding: 30px 0;
}
footer a,
footer p {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 120%;
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid #fff;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}


.venue-btn {
    margin-top: 14px;
    padding: 12px 28px;
    display: inline-block;
    text-align: center;
    color: #fff;
    font-size: 20px;
    line-height: 130%;
    border-radius: 30px;
    background: #2fbef4;
}
a.venue-btn:hover {
    background: #0ea9e4;
}

