@charset "UTF-8";
@font-face {
  font-family: 'Unbounded';
  src: local("Unbounded-Regular"), url("../fonts/Unbounded/static/Unbounded-Regular.ttf");
  font-style: normal; }
@font-face {
  font-family: 'Unbounded-Bold';
  src: local("Unbounded-bold"), url("../fonts/Unbounded/static/Unbounded.ttf");
  font-style: normal; }

/* Стили для меню с эффектом стекла */
:root {
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: rgba(0, 0, 0, 0.1);
  --blur-intensity: 10px;
}

/*  fonts family  */
/*General style*/
body {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  font-family: "Unbounded";
  background-color: white;
  color: #221f20;
  height: 100%;
  overflow-x: hidden;
  position: relative;
  padding-top: 70px;
}

html {
  scroll-behavior: smooth;
}
/* Основные стили для меню с эффектом стекла */
.glass-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #1B1A180D !important; /* 5% прозрачности */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  z-index: 1050;
  transition: all 0.3s ease;
}

.glass-navbar.scrolled {
  background: #1B1A1826 !important; /* 15% прозрачности при скролле */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.glass-navbar .navbar-brand {
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.glass-navbar .navbar-brand:hover {
  opacity: 1;
}

/* КНОПКА БУРГЕРА - МИНИМАЛИСТИЧНАЯ */
.glass-navbar .navbar-toggler {
  border: none !important;
  padding: 8px 12px !important;
  background: transparent !important;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: none !important;
}

.glass-navbar .navbar-toggler:hover {
  background: transparent !important;
  transform: none;
  box-shadow: none !important;
}

.glass-navbar .navbar-toggler-icon {
  filter: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.7)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  width: 24px;
  height: 24px;
  opacity: 0.7;
}

.glass-navbar .navbar-toggler:hover .navbar-toggler-icon {
  opacity: 1;
}

/* СТИЛИ ДЛЯ ССЫЛОК МЕНЮ - МАКСИМАЛЬНО ПРОЗРАЧНЫЕ */
.glass-navbar .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 500;
  text-decoration: none;
  padding: 10px 22px !important;
  margin: 0 6px;
  border-radius: 50px !important;
  transition: none !important; /* Полностью статичные */
  background: #FFFFFF0D !important; /* БЕЛЫЙ С 5% ПРОЗРАЧНОСТЬЮ */
  border: none !important;
  text-align: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  
  /* ЭФФЕКТ БЛЕСКА - слева сверху и справа снизу */
  box-shadow: 
    -4px -4px 8px rgba(255, 255, 255, 0.2),  /* Белый блеск слева-сверху */
    4px 4px 8px rgba(0, 0, 0, 0.2);  /* Тень справа-снизу */
  
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

/* Дополнительный слой блеска */
.glass-navbar .navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 52px;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.2), transparent 70%),
              radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.15), transparent 70%);
  pointer-events: none;
  z-index: -1;
  opacity: 0.5;
}

/* ПОЛНОСТЬЮ СТАТИЧНЫЕ - никаких изменений при наведении */
.glass-navbar .navbar-nav .nav-link:hover,
.glass-navbar .navbar-nav .nav-link:focus,
.glass-navbar .navbar-nav .nav-link:active {
  color: rgba(255, 255, 255, 0.8) !important;
  background: #FFFFFF0D !important; /* Тот же белый с 5% */
  border: none !important;
  transform: none !important;
  box-shadow: 
    -4px -4px 8px rgba(255, 255, 255, 0.2),
    4px 4px 8px rgba(0, 0, 0, 0.2) !important;
  outline: none;
}

.glass-navbar .navbar-nav .nav-link.active {
  color: rgba(255, 255, 255, 1) !important;
  font-weight: 600 !important;
  background: #FFFFFF1A !important; /* Белый с 10% для активного */
  border: none !important;
  box-shadow: 
    -5px -5px 10px rgba(255, 255, 255, 0.25),
    5px 5px 10px rgba(0, 0, 0, 0.25);
}

.glass-navbar .navbar-nav .nav-link.active::before {
  opacity: 1;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.3), transparent 70%),
              radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.2), transparent 70%);
}

/* Десктопное меню */
@media (min-width: 992px) {
  .glass-navbar .navbar-toggler {
    display: none !important;
  }
  
  .glass-navbar .collapse.navbar-collapse {
    display: flex !important;
    flex-basis: auto !important;
  }
  
  .glass-navbar .navbar-nav {
    width: 100%;
    justify-content: flex-end;
  }
  
  .glass-navbar .navbar-nav .nav-link {
    min-width: 120px;
    padding: 12px 25px !important;
    font-size: 15px;
  }
}

/* Мобильное меню */
@media (max-width: 991px) {
  
  header.header {
    margin-top: 0 !important;
  }
  
  .glass-navbar {
    background: #1B1A181A !important; /* 10% прозрачности на мобилке */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  
  /* Центрируем кнопки в мобильном меню */
  .glass-navbar .navbar-nav {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .glass-navbar .nav-item {
    width: 100%;
    max-width: 280px;
    margin-bottom: 12px;
  }
  
  /* ВЫПАДАЮЩЕЕ МЕНЮ - МАКСИМАЛЬНО ПРОЗРАЧНОЕ */
  .glass-navbar .navbar-collapse {
    background: #1B1A180D !important; /* 5% прозрачности */
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    padding: 25px 20px !important;
    margin-top: 15px !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* Кнопки в мобильном меню - МАКСИМАЛЬНО ПРОЗРАЧНЫЕ */
  .glass-navbar .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    font-size: 16px;
    background: #FFFFFF0D !important; /* БЕЛЫЙ С 5% ПРОЗРАЧНОСТЬЮ */
    border: none !important;
    border-radius: 50px !important;
    padding: 14px 24px !important;
    width: 100%;
    text-align: center;
    margin: 0 0 12px 0 !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 
      -4px -4px 8px rgba(255, 255, 255, 0.15),
      4px 4px 8px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
  }
  
  .glass-navbar .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 52px;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.15), transparent 70%),
                radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.1), transparent 70%);
    pointer-events: none;
    z-index: -1;
    opacity: 0.5;
  }
  
  /* Статичные на мобилке */
  .glass-navbar .navbar-nav .nav-link:hover,
  .glass-navbar .navbar-nav .nav-link:focus,
  .glass-navbar .navbar-nav .nav-link:active {
    color: rgba(255, 255, 255, 0.8) !important;
    background: #FFFFFF0D !important;
    border: none !important;
    transform: none !important;
    box-shadow: 
      -4px -4px 8px rgba(255, 255, 255, 0.15),
      4px 4px 8px rgba(0, 0, 0, 0.15) !important;
  }
  
  .glass-navbar .navbar-nav .nav-link.active {
    color: rgba(255, 255, 255, 1) !important;
    font-weight: 600 !important;
    background: #FFFFFF1A !important; /* Белый с 10% */
    border: none !important;
    box-shadow: 
      -5px -5px 10px rgba(255, 255, 255, 0.2),
      5px 5px 10px rgba(0, 0, 0, 0.2);
  }
  
  .glass-navbar .navbar-nav .nav-link.active::before {
    opacity: 1;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.25), transparent 70%),
                radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.15), transparent 70%);
  }
  
  .glass-navbar .navbar-brand img {
    height: 32px;
    width: auto;
    opacity: 0.9;
  }
  
  /* Иконка бургера при открытом меню (крестик) */
  .glass-navbar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.7)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 4L26 26M4 26L26 4'/%3e%3c/svg%3e") !important;
  }
}

/* Убираем все эффекты фокуса */
.navbar-toggler:focus,
.navbar-toggler:active,
.nav-link:focus,
.nav-link:active {
  outline: none !important;
  box-shadow: none !important;
}

/* Плавное появление при скролле */
.glass-navbar {
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
  
  .glass-navbar .navbar-nav .nav-link {
    padding: 10px 15px !important;
    font-size: 15px;
    max-width: 250px;
  }
  
  .glass-navbar .navbar-brand img {
    height: 30px;
  }
}

.bg-pink-gradient{
  background: linear-gradient(45deg,#C207B6,#FAA835);
}

/* ОСТАЛЬНОЙ CSS БЕЗ ИЗМЕНЕНИЙ */
.br-10 {
  border-radius: 10px; }

.br-30 {
  border-radius: 30px; }

.mt-10 {
  margin-top: 10px; }

.mt-20 {
  margin-top: 20px; }

.mt-30 {
  margin-top: 30px; }

.mt-40 {
  margin-top: 40px; }

.mt-50 {
  margin-top: 50px; }

.bg-grey {
  background: #f7f7f5;
  color: #221f20;
  border: 0; }

.bg-blue {
  background: linear-gradient(94.83deg, rgba(0, 121, 193, 0.7) 14.93%, rgba(0, 93, 148, 0.9) 80.52%);
  color: white; }

.bg-green {
  background: linear-gradient(90deg, #02AAB0 0%, #00CDAC 100%);
  color: white; }

.bg-yellow {
  background: linear-gradient(90deg, #FFE259 0%, #FFA751 100%);
  color: white; }

.bg-red {
  background: linear-gradient(90deg, #C84E89 0%, #F15F79 100%);
  color: white; }

.bg-white {
  background: white;
  color: #221f20; }

img {
  width: 100%; }

.btn-primary {
  background: linear-gradient(94.83deg, rgba(0, 121, 193, 0.7) 14.93%, rgba(0, 93, 148, 0.9) 80.52%);
  padding: 10px 30px;
  border-radius: 20px; }

/* fonts stile */
h1, h2, h3, h4, h5, h6 {
  font-family: "Unbounded";
  font-style: normal; }

h1 {
  font-weight: 900;
  /*Medium devices (tablets, 768px and up)*/
  /*Large devices (desktops, 992px and up)*/
  /*X-Large devices (large desktops, 1200px and up)*/
  /*XX-Large devices (larger desktops, 1400px and up)*/ }
  @media screen and (max-width: 576px) {
    h1 {
      font-size: 2rem;
      line-height: 2.1rem; } }
  @media screen and (min-width: 576px) and (max-width: 767px) {
    h1 {
      font-size: 2.2rem;
      line-height: 2.3rem; } }
  @media screen and (min-width: 768px) and (max-width: 991px) {
    h1 {
      font-size: 2.4rem;
      line-height: 2.5rem; } }
  @media screen and (min-width: 992px) and (max-width: 1199px) {
    h1 {
      font-size: 2.2rem;
      line-height: 2.3rem; } }
  @media screen and (min-width: 1200px) and (max-width: 1399px) {
    h1 {
      font-size: 3rem;
      line-height: 3.1rem; } }
  @media screen and (min-width: 1400px) {
    h1 {
      font-size: 3rem;
      line-height: 3.1rem; } }

h2 {
  font-weight: 800;
  font-size: 2.5rem;}
  h2.data {
    color: #321D2F;
    /*Medium devices (tablets, 768px and up)*/
    /*Large devices (desktops, 992px and up)*/
    /*X-Large devices (large desktops, 1200px and up)*/
    /*XX-Large devices (larger desktops, 1400px and up)*/ }
    @media screen and (max-width: 576px) {
      h2.data {
        font-size: 2.8rem;
        /*line-height: 2.8rem;*/ } }
    @media screen and (min-width: 576px) and (max-width: 767px) {
      h2.data {
        font-size: 3.3rem;
        /*line-height: 3.3rem;*/ } }
    @media screen and (min-width: 768px) and (max-width: 991px) {
      h2.data {
        font-size: 4rem;
        /*line-height: 4rem;*/ } }
    @media screen and (min-width: 992px) and (max-width: 1199px) {
      h2.data {
        font-size: 4.2rem;
        /*line-height: 4.2rem;*/ } }
    @media screen and (min-width: 1200px) and (max-width: 1399px) {
      h2.data {
        font-size: 5rem;
        /*line-height: 5rem;*/ } }
    @media screen and (min-width: 1400px) {
      h2.data {
        font-size: 5rem;
        /*line-height: 5rem;*/ } }

h3 {
  font-weight: 600;
  font-size: calc(1.4rem + .6vw); }
  h3 .section-title {
    font-size: 60px;
    line-height: 73px; }
  @media (max-width: 760px){
    h3.text{
      text-align:center;
    }
  }
 

h4 {
  font-weight: 600;
  font-size: 1.7rem; }

h5 {
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 0; }
  h5.id-1 {
    color: white; }
    h5.id-1:after {
      content: "Естественно-научные";
      background: linear-gradient(90deg, #02AAB0 0%, #00CDAC 100%);
      padding: 10px 15px;
      border-radius: 50px; }
  h5#id-2 {
    color: white; }
    h5#id-2:after {
      content: "Социально-гуманитарные";
      background: linear-gradient(90deg, #FFE259 0%, #FFA751 100%);
      padding: 10px 15px;
      border-radius: 50px; }
  h5#id-3 {
    color: white; }
    h5#id-3:after {
      content: "Междисциплинарные";
      background: linear-gradient(90deg, #C84E89 0%, #F15F79 100%);
      padding: 10px 15px;
      border-radius: 50px; }

a {
  font-family: "Unbounded", Arial, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none; }

p {
  font-weight: 400;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.2rem;
  margin-bottom: 0;}
  @media screen and (min-width: 767px) and (max-width: 991px) {
    p.text {
      font-size: 1.3rem;
      line-height: 1.5rem; } }
  @media screen and (min-width: 992px) and (max-width: 1199px) {
    p.text {
      font-size: 1.2rem;
      line-height: 1.3rem; } }
  @media screen and (min-width: 1200px) {
    p.text {
      font-size: 1.5rem;
      line-height: 1.7rem; } }

strong {
  font-family: "Unbounded-Bold", Arial, sans-serif;
  font-weight: 700; }

section.section .section-wrapper {
  padding: 0 20px; }
  section.section .section-wrapper h3.section-title {
    margin-top: 40px;
    background: transparent;
    margin-bottom: 30px; }
  @media (max-width: 765px) {
    section.section .section-wrapper h3.section-title {
        text-align: center;
        width: 100%;
        display: block;
    }
}
  section.section .section-wrapper .section-inner {
    margin-bottom: 20px; }

header.header {
  margin-top: 30px; }
  header.header .header-wrapper {
    padding: 0 20px; }
    header.header .header-wrapper .header-inner .logo {
      margin-top: 30px; }
      header.header .header-wrapper .header-inner .logo img {
        width: 180px; }
        @media screen and (min-width: 992px) {
          header.header .header-wrapper .header-inner .logo img {
            margin-left: 30px; } }
    header.header .header-wrapper .header-inner .header-content {
      margin-bottom: 50px; }
      @media screen and (min-width: 992px) {
        header.header .header-wrapper .header-inner .header-content {
          padding-left: 30px; } }
    header.header .header-wrapper .header-inner .img-box {
      position: relative;
      z-index: 1;
      height: 100%; }
      header.header .header-wrapper .header-inner .img-box img.pic {
        position: relative;
        margin-top: 20px;
        width: 90%;
        right: -20px;
        bottom: 0;
        height: auto; }
        @media screen and (min-width: 768px) and (max-width: 991px) {
          header.header .header-wrapper .header-inner .img-box img.pic {
            width: 80%; } }
        @media screen and (min-width: 992px) and (max-width: 1199px) {
          header.header .header-wrapper .header-inner .img-box img.pic {
            width: 100%; } }
      header.header .header-wrapper .header-inner .img-box .header-img-icon {
        position: absolute;
        right: 5%;
        background-image: url("../../img/icons/header-pic-item-4.png");
        background-repeat: no-repeat;
        background-size: contain; }
        @media (max-width: 575px) {
          header.header .header-wrapper .header-inner .img-box .header-img-icon {
            width: 70px;
            height: 70px;
            bottom: -35px; } }
        @media screen and (min-width: 576px) and (max-width: 767px) {
          header.header .header-wrapper .header-inner .img-box .header-img-icon {
            width: 90px;
            height: 90px;
            bottom: -45px; } }
        @media screen and (min-width: 768px) and (max-width: 991px) {
          header.header .header-wrapper .header-inner .img-box .header-img-icon {
            width: 120px;
            height: 120px;
            bottom: -60px; } }
        @media screen and (min-width: 992px) and (max-width: 1199px) {
          header.header .header-wrapper .header-inner .img-box .header-img-icon {
            width: 90px;
            height: 90px;
            bottom: -45px; } }
        @media screen and (min-width: 200px) and (max-width: 1399px) {
          header.header .header-wrapper .header-inner .img-box .header-img-icon {
            width: 120px;
            height: 120px;
            bottom: -60px; } }
        @media screen and (min-width: 1400px) {
          header.header .header-wrapper .header-inner .img-box .header-img-icon {
            width: 130px;
            height: 130px;
            bottom: -65px; } }

.section-about {
  margin: 50px 0;
  padding: 20px;
}
.btn-primary{
  color: #f7f7f5 !important;
  background:#F5481E !important;
}
.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 50px;
}
.about-info {
  margin-bottom: 20px;
  min-width: 100%;
  padding-right: 20px;
}
.info-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.bg-purple-gradient{
  background: linear-gradient(45deg, #95108D 50%, #CD52C5 70%);
}

.bg-yellow-gradient{
  background: linear-gradient(45deg,  #F0993E 50%, #FFC487 70%);
}

.bg-orange-gradient{
  background: linear-gradient(45deg,  #CB605E 50%, #DF7E7C 70%);
}

.info-label {
  font-size: 16px;
  font-weight: 300;
}
.info-value {
  font-weight: bold;
  font-size: 16px;
}
.about-chat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-extra {
  padding: 50px;
  border-radius: 25px;
  color: white;
  display: flex;
  flex-direction: column;
}

.black-purple{
  color: #321D2F;
}

.about-extra h2{
  color:  white;
}
.chat-button {
  margin-top: 10px;
  padding: 3px 40px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 100px;
  color: #f7f7f5;
  background-color:#F5481E;
}
/* Для экранов больше средней ширины */
@media (min-width: 768px) {
  .about-info {
  margin-bottom: 20px;
  min-width: 500px;
  padding-right: 20px;
}
  .about-content {
    flex-direction: column;
    text-align: left;
  }
  .about-text, .about-chat {
    flex: 1;
}
.about-text {
    margin-right: 20px;
}
}


.section-hero .hero-wrapper .hero-box {
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
 }
  @media screen and (max-width: 991px) {
    .section-hero .hero-wrapper .hero-box {
      margin-bottom: 20px; 
      padding: 0 20px;
      display: flex;
      flex-direction: column;
      align-items: center;} 
    }
  .section-hero .hero-wrapper .hero-box img {
    width: 70px;
    height: 70px; }
  .section-hero .hero-wrapper .hero-box p.box-text {
    width: 100%; 
    font-size: 16px;
    text-align: center;
  }

.about-section .about-inner img {
  width: 100%;
  height: auto; }
.about-section .about-inner .section-title {
  margin-top: 0;
  padding-top: 0; }
.about-section .about-inner .section-content {
  align-items: stretch; }
  @media screen and (max-width: 991px) {
    .about-section .about-inner .section-content {
      margin-top: 20px; } }
.about-section .about-statistic {
  margin-top: 20px; }
  .about-section .about-statistic .item-box {
    padding: 0 20px;
    margin-bottom: 10px; }
    .about-section .about-statistic .item-box p {
      font-weight: bold;
      margin-bottom: 20px; }

.section-events .events-wrapper .events-inner .event-filters {
  padding: 20px 0; }
  @media screen and (max-width: 991px) {
    .section-events .events-wrapper .events-inner .event-filters .col-lg-6 {
      margin-bottom: 10px; } }
  @media screen and (max-width: 767px) {
    .section-events .events-wrapper .events-inner .event-filters .col-md-6 {
      margin-bottom: 10px; } }
  .section-events .events-wrapper .events-inner .event-filters .event-filters-text {
    height: 100%; }
.section-events .events-wrapper .events-inner .events .event-card {
  margin-bottom: 20px;
  padding: 0 20px 20px 20px; }
  @media screen and (max-width: 991px) {
    .section-events .events-wrapper .events-inner .events .event-card .col-lg-3 {
      margin-top: 10px; } }
  .section-events .events-wrapper .events-inner .events .event-card h5.card-tag {
    margin-top: 20px;
    margin-bottom: 20px; }
  .section-events .events-wrapper .events-inner .events .event-card h4.card-title {
    color: rgba(0, 93, 148, 0.9); }
  .section-events .events-wrapper .events-inner .events .event-card p.card-text {
    margin-top: 20px;
    overflow: hidden; }
  .section-events .events-wrapper .events-inner .events .event-card p.line-clamp-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden; }
  .section-events .events-wrapper .events-inner .events .event-card .card-info {
    flex-direction: column; }
    @media screen and (max-width: 991px) {
      .section-events .events-wrapper .events-inner .events .event-card .card-info {
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap; } }
    .section-events .events-wrapper .events-inner .events .event-card .card-info .info-box {
      margin-bottom: 20px; }
      .section-events .events-wrapper .events-inner .events .event-card .card-info .info-box img {
        width: 50px;
        height: 50px;
        margin-right: 10px; }
      .section-events .events-wrapper .events-inner .events .event-card .card-info .info-box p {
        color: rgba(0, 93, 148, 0.9);
        display: inline-block;
        font-size: 1.2rem;
        line-height: 1.4rem; }
  .section-events .events-wrapper .events-inner .events .event-card .spiker-box {
    margin-top: 20px;
    margin-bottom: 20px; }
    .section-events .events-wrapper .events-inner .events .event-card .spiker-box img {
      width: 50px;
      height: 50px;
      margin-right: 10px; }
    .section-events .events-wrapper .events-inner .events .event-card .spiker-box p {
      color: rgba(0, 93, 148, 0.9);
      display: inline-block;
      font-size: 1.2rem;
      line-height: 1.4rem; }

.section-contact .contact-wrapper .icon-list {
  padding-bottom: 50px; }
  @media screen and (max-width: 767px) {
    .section-contact .contact-wrapper .icon-list .col-md-4 {
      margin-bottom: 20px; } }
  .section-contact .contact-wrapper .icon-list img {
    width: 100%; }
    
    
.readMore {
    background:none;
    border:none;
    margin:0;
    padding:0;
    cursor: pointer;
}

.readLess {
    background:none;
    border:none;
    margin:0;
    padding:0;
    cursor: pointer;
}

.hide{
    display: none;
}
.showc{

}

.showf{
 
}


footer.footer .footer-wrapper {
  padding: 0 20px 20px 20px; }
  footer.footer .footer-wrapper .footer-title {
    margin-top: 30px;
    margin-bottom: 20px; }
  footer.footer .footer-wrapper img {
    width: 40px;
    height: 40px;
    margin-right: 10px; }
  @media screen and (max-width: 767px) {
    footer.footer .footer-wrapper .col-md-6 {
      margin-bottom: 20px; } }
footer.footer .copyright {
  padding: 20px 0; }

/*# sourceMappingURL=style.css.map */

:root {
  --member-animation: all 0.35s ease-in-out;
  --font-family-1: "Josefin Sans", sans-serif;
  --font-family-2: Nunito, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

/* TIMELINE */
.my-flex-cont {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  height: 100px;
 }
 .my-flex-box {
  margin: 10px;
  padding: 5px;
  flex: 1 2 auto;
  align-self: center;
 }
 .my-flex-box:nth-child(1) {
  flex: 0 1 auto;
 }
 .my-flex-box:nth-child(2) {
  flex: 1 1 auto;
 }
/* TIMELINE end */

/* Показываем первую иконку, скрываем вторую */
.image-wrapper > :first-child {
    display: block;
}

.image-wrapper > :nth-child(2) {
    display: none;
}

/* При наведении на обертку — скрываем первую, показываем вторую */
.image-wrapper:hover > :first-child {
    display: none;
}

.image-wrapper:hover > :nth-child(2) {
    display: block;
}

/* Автоматическое изменение размера изображения */
.decorative-image {
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: 80px; /* базовый размер для десктопа */
}

@media (max-width: 1200px) {
    .decorative-image {
        max-height: 70px;
    }
}

@media (max-width: 992px) {
    .decorative-image {
        max-height: 60px;
    }
}

@media (max-width: 768px) {
    .decorative-image {
        max-height: 45px;
    }
    
    .decorative-image {
        margin-top: 2px !important;
    }
}

@media (max-width: 480px) {
    .decorative-image {
        max-height: 35px;
    }
    
    .decorative-image {
        margin-top: 0 !important;
    }
}

/* Адаптация самого блока */
@media (max-width: 768px) {
    .about-extra {
        height: 80px !important;
        padding: 15px 20px !important;
    }
    
    .about-extra h2 {
        font-size: 18px !important;
    }
    
    .about-extra a {
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    .about-extra {
        height: 75px !important;
        padding: 12px 15px !important;
    }
    
    .about-extra h2 {
        font-size: 16px !important;
    }
    
    .about-extra a {
        font-size: 13px !important;
    }
}

/* Мобильная версия для блока "Вступайте в чат" */
@media (max-width: 767px) {
    .about-extra.bg-purple-gradient {
        padding: 9px !important;
        min-height: auto !important;
    }
    
    .about-extra.bg-purple-gradient .d-block.d-md-none a {
        width: 100%;
    }
    
    .about-extra.bg-purple-gradient .d-block.d-md-none h2 {
        color: white;
        font-weight: bold;
        font-size: 28px !important;
        padding: 11px 15px !important;
        margin: 0;
        transition: opacity 0.3s ease;
    }
    
    .about-extra.bg-purple-gradient .d-block.d-md-none h2:active {
        opacity: 0.8;
    }
}

/* Для маленьких телефонов */
@media (max-width: 480px) {
    .about-extra.bg-purple-gradient .d-block.d-md-none h2 {
        font-size: 25px !important;
        padding: 0px 12px !important;
    }
}

/* Для мобильных устройств - показываем только левую часть изображения */
@media (max-width: 765px) {
    #header-bg,
    .fullscreen-bg {
        background-position: 0% center !important; /* Сдвигаем к левому краю */
        background-size: auto 100% !important; /* Сохраняем исходное разрешение по высоте */
        background-repeat: no-repeat !important;
    }
}

/* Для очень маленьких экранов - дополнительная корректировка */
@media (max-width: 480px) {
    #header-bg,
    .fullscreen-bg {
        background-position: 0% center !important; /* Еще левее при необходимости */
        background-size: auto 100% !important;
    }
}

/* Для альбомной ориентации на мобильных */
@media (max-width: 765px) and (orientation: landscape) {
    #header-bg,
    .fullscreen-bg {
        background-size: cover !important; /* Возвращаем cover для ландшафта */
        background-position: center center !important;
    }
}



/* Исправление для мобильных устройств */
@media (max-width: 765px) {
    /* Фикс для header и body */
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        position: relative;
    }
    
    /* Фикс для header */
    #header,
    header.header {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
        position: relative;
    }
    
    /* Фикс для фонового блока */
    #header-bg,
    .fullscreen-bg {
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        
        /* Управление фоном */
        background-position: left center !important;
        background-size: auto 100% !important;
        background-repeat: no-repeat !important;
    }
    
    /* Фикс для контейнера */
    #header .container,
    .header .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        overflow-x: hidden !important;
    }
    
    /* Фикс для дочерних элементов */
    .header-content {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    /* Убираем возможные скроллы */
    html {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
}

/* Дополнительные фиксы для очень маленьких экранов */
@media (max-width: 480px) {
    #header .container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    
    .header-content h1.display-1 {
        font-size: 2.05rem !important;
        word-break: break-word;
    }
}


.register-link {
    transition: all 0.3s ease;
}

.register-link:hover {
    font-family: 'Unbounded';
    font-weight: 800;
}


@media (max-width: 505px){
  .about-extra.bg-purple-gradient .d-block.d-md-none h2 {
        color: white;
        font-weight: bold;
        font-size: 25px !important;
        padding: 0px 14px !important;
        transition: opacity 0.3s ease;
    }
}

/* Стили для карточек с центрированием */
.card-custom {
    min-height: 180px;
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    transition: all 0.3s ease;
    
    /* Дополнительная страховка для центрирования */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

.card-custom p {
    width: 100%;
    max-width: 90%; /* Чтобы текст не прилипал к краям */
    margin: 0 auto;
    word-wrap: break-word;
}

/* Отступы между карточками на мобильных */
@media (max-width: 767px) {
    .row.g-3 > [class*="col-"] {
        margin-bottom: 15px;
    }
    
    .row.g-3 > [class*="col-"]:last-child {
        margin-bottom: 0;
    }
    
    .card-custom {
        min-height: 150px;
        padding: 15px !important;
    }
}

/* Для планшетов */
@media (min-width: 768px) and (max-width: 991px) {
    .card-custom {
        min-height: 160px;
    }
}

/* Для десктопов */
@media (min-width: 1200px) {
    .col-md-4 .card-custom {
        max-width: 500px;
    }
}

/* Дополнительная страховка для очень маленьких экранов */
@media (max-width: 480px) {
    .card-custom {
        min-height: 120px;
        padding: 12px !important;
    }
    
    .card-custom p {
        font-size: 14px !important;
    }
}