/* Hero Lab Section */
.hero-lab {
  background-image: url("../../images/main-bg.svg");
  background-size: cover;
  background-position: center;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  max-width: 1435px;
  width: calc(100% - 80px);
  height: 780px;
  margin: 50px auto 0;
  padding: 50px;
  z-index: 2;
}

.hero-illustration {
  z-index: -1;
  position: absolute;
  bottom: 0;
  right: 20px;
  display: flex;
  justify-content: end;
  /* Предотвращение CLS: резервируем место для анимации */
  width: 500px;
  height: 500px;
  min-width: 500px;
  min-height: 500px;
}

.hero-illustration lottie-player {
  width: 100%;
  height: 100%;
  min-width: 500px;
  min-height: 500px;
}

.hero-lab-title {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 76px;
  color: #ffffff;
}

.hero-lab-description {
  margin-top: 32px;
  font-family: "Inter";
  font-weight: 400;
  font-size: 36px;
  color: #fff;
}

.hero-btns {
  margin-top: 90px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-btn {
  border: none;
  background: #b0e881;
  padding: 25px 70px;
  border-radius: 20px;
  transition: all 0.3s ease;
  z-index: 2;
  text-decoration: none;
  color: #183b59;
  font-family: "Inter";
  font-weight: 900;
  font-size: 32px;
  text-transform: uppercase;
  display: block;
}

.btn-primary {
  margin-top: 20px;
  padding: 25px 63px;
  background-color: #fff;
  color: #0c6ed6;
}

.hero-btn:hover {
  background: #caff9f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(126, 211, 33, 0.4);
}

.btn-primary:hover {
  background: #eaeffd;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(126, 211, 33, 0.4);
}

.hero-btn:focus {
  outline: 3px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

.nav-link.active {
  color: #2b7ce9;
}

.nav-link.active::after {
  width: 100%;
}

@media screen and (max-width: 1440px) {
  .hero-lab {
    height: 630px;
    padding: 40px;
    margin-top: 40px;
  }

  .hero-lab-title {
    font-size: 65px;
  }

  .hero-lab-title br {
    display: block;
  }

  .hero-lab-description {
    font-size: 28px;
    margin-top: 24px;
  }

  .hero-btns {
    margin-top: 60px;
  }

  .hero-btn {
    padding: 20px 50px;
    font-size: 24px;
  }

  .btn-primary {
    padding: 20px 45px;
  }

  .hero-illustration {
    max-width: 70%;
  }
}

@media screen and (max-width: 1180px) {
  .hero-lab {
    height: 550px;
    padding: 30px;
  }

  .hero-lab-title {
    font-size: 50px;
  }

  .hero-lab-title br {
    display: block;
  }

  .hero-lab-description {
    font-size: 24px;
  }

  .hero-btns {
    margin-top: 60px;
  }

  .hero-btn {
    padding: 20px 50px;
    font-size: 24px;
  }

  .btn-primary {
    padding: 20px 45px;
  }

  .hero-illustration {
    max-width: 70%;
  }
}

@media screen and (max-width: 1080px) {
  .hero-lab {
    height: auto;
    padding: 25px;
  }

  .hero-lab-title {
    font-size: 40px;
  }

  .hero-lab-description {
    font-size: 20px;
  }

  .hero-btns {
    margin-top: 40px;
  }

  .hero-btn {
    padding: 15px 40px;
    border-radius: 15px;
    font-size: 20px;
  }

  .btn-primary {
    padding: 15px 35px;
  }

  .hero-illustration {
    max-width: 60%;
  }

  .hero-lab-description {
    margin-top: 10px;
  }
}

@media screen and (max-width: 950px) {
  .hero-lab {
    width: calc(100% - 60px);
  }

  .hero-illustration {
    max-width: 65%;
  }
}

@media screen and (max-width: 840px) {
  .hero-lab {
    height: 350px;
    padding: 20px;
  }

  .hero-lab-title {
    font-size: 30px;
  }

  .hero-lab-description {
    font-size: 18px;
  }

  .hero-btns {
    margin-top: 20px;
  }

  .hero-btn {
    padding: 15px 30px;
    border-radius: 15px;
    font-size: 15px;
  }

  .btn-primary {
    padding: 15px 25px;
  }

  .hero-illustration {
    max-width: 70%;
  }
}

@media screen and (max-width: 640px) {
  .hero-illustration {
    max-width: 60%;
  }
}

@media screen and (max-width: 768px) {
  .hero-lab {
    width: calc(100% - 40px);
  }
}

@media screen and (max-width: 570px) {
  .hero-lab {
    height: auto;
  }

  .hero-illustration {
    display: none;
  }

  .hero-lab-title {
    font-size: clamp(20px, 7vw, 40px);
  }

  .hero-lab-description {
    font-size: clamp(20px, 7vw, 28px);
  }

  .hero-btns {
    margin-top: 40px;
  }

  .hero-btn {
    text-align: center;
  }

  .hero-btn,
  .btn-primary {
    font-size: clamp(18px, 5vw, 22px);
    width: 100%;
    padding-left: 5px;
    padding-right: 5px;
  }
}

/* Info Section */
.info-section {
  background-image: url("../../images/info-bg.svg");
  padding-top: 100px;
  /* padding: 80px 40px; */
  /* after commenting registration btn */
  padding: 80px 40px 40px 40px;
  margin-top: 100px;
}

.info-header {
  margin-bottom: 60px;
}

.info-title {
  font-family: "Inter";
  font-weight: 900;
  font-size: clamp(28px, 4vw, 36px);
  color: #183b59;
  text-transform: uppercase;
  line-height: 1.2;
}

.info-intro {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
}

.intro-text {
  flex: 1;
  min-width: 0;
}

.intro-subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
  color: #183b59;
  margin: 0 0 27px;
}

.intro-subtitle br {
  display: block;
}

.intro-description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  word-spacing: -2.5px;
  font-size: clamp(18px, 2vw, 24px);
  color: #183b59;
  width: 89%;
}

.intro-description p {
  margin: 0 0 27px;
}

.intro-description p:last-child {
  margin-bottom: 0;
}

.intro-image {
  flex: 0 0 auto;
  width: 400px;
  min-width: 400px;
}

.intro-illustration {
  width: 100%;
  height: auto;
  display: block;
  /* Предотвращение CLS: используем aspect-ratio */
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
  align-items: stretch;
}

.info-card {
  background-color: #b0e881;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  min-width: 0;
  width: 100%;
}

.card-icon {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 80px;
  height: 80px;
}

.card-icon img {
  width: 80px;
  height: 80px;
  display: block;
  object-fit: contain;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-title {
  font-family: "Inter";
  font-weight: 900;
  font-size: clamp(20px, 2vw, 32px);
  color: #183b59;
  margin: 0 0 20px;
  text-transform: uppercase;
  padding-right: 90px;
}

.card-content {
  font-family: "Inter";
  font-weight: 400;
  font-size: 20px;
  color: #183b59;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-content p:last-child {
  margin-bottom: 0;
}

.card-content ul {
  padding-left: 0;
  list-style: none;
}

.card-content li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
  list-style: none;
  font-size: 20px;
}

.card-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 6px;
  height: 6px;
  background-color: #0c6ed6;
  border-radius: 1px;
  flex-shrink: 0;
}

.info-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 54px;
}

.info-bottom-block {
  background: #ffffff;
  border-radius: 30px;
  padding: 40px 120px 40px 40px;
  position: relative;
}

.info-bottom-icon-1,
.info-bottom-icon-2 {
  position: absolute;
  top: 24px;
  right: 30px;
}

.info-bottom-icon-1 img,
.info-bottom-icon-2 img {
  width: 80px;
  height: 80px;
  display: block;
  object-fit: contain;
}

.info-bottom-title {
  font-family: "Inter";
  font-weight: 900;
  font-size: clamp(24px, 2.5vw, 32px);
  color: #183b59;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.info-bottom-content {
  font-family: "Inter";
  font-weight: 400;
  font-size: clamp(16px, 1.8vw, 20px);
  color: #183b59;
}

.info-bottom-content p:last-child {
  margin-bottom: 0;
}

/* Registration Form */
.registration-form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.form-title {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: clamp(20px, 2.5vw, 32px);
  color: #183b59;
  line-height: 1.3;
  flex: 1;
}

.form-button {
  flex-shrink: 0;
}

.btn-register {
  background: #0c6ed6;
  color: #ffffff;
  font-family: "Inter";
  font-weight: 700;
  font-size: clamp(18px, 2.5vw, 32px);
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: 22px 36px;
  border-radius: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(43, 124, 233, 0.3);
  display: inline-block;
  white-space: nowrap;
}

.btn-register:hover {
  background: #1e5bb8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(43, 124, 233, 0.4);
}

.btn-register:focus {
  outline: 3px solid rgba(43, 124, 233, 0.5);
  outline-offset: 2px;
}

@media screen and (max-width: 1440px) {
  .info-section {
    margin-top: 80px;
  }

  .info-intro {
    gap: 30px;
  }

  .info-card {
    padding: 28px;
  }

  .info-card .card-icon img {
    max-width: 70px;
  }

  .info-card .card-icon {
    top: 23px;
    right: 23px;
  }

  .card-icon img {
    width: 45px;
  }

  .info-card .card-title {
    padding-right: 70px;
    margin-bottom: 10px;
  }

  .info-bottom-block {
    padding: 35px 100px 35px 35px;
  }

  .info-bottom-icon img {
    width: 80%;
  }

  .info-bottom-title {
    margin-right: 30px;
  }

  .intro-subtitle br {
    display: none;
  }

  .intro-subtitle {
    font-size: 28px;
  }

  .card-content,
  .card-content li {
    font-size: 17px;
  }
}

@media screen and (max-width: 1150px) {
  .intro-subtitle {
    font-size: 26px;
    margin: 0 0 20px;
  }

  .info-card .card-title {
    margin-bottom: 0;
  }

  .card-content {
    margin-top: 10px;
  }

  .intro-description p {
    margin: 0 0 20px;
  }

  .info-intro {
    margin-top: 20px;
    display: block;
  }

  .info-card:last-child {
    grid-column: 1 / -1;
  }

  .intro-image {
    margin-top: 30px;
  }

  .info-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .intro-description {
    width: 74%;
  }

  .card-content,
  .card-content li {
    font-size: 16px;
  }

  .info-card .card-icon {
    top: 20px;
    right: 20px;
  }
}

@media screen and (max-width: 1023px) {
  .info-section {
    margin-top: 60px;
    padding: 50px 30px;
  }

  .info-bottom {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .info-bottom-block {
    padding: 30px 90px 30px 30px;
  }

  .registration-form {
    flex-direction: column;
    align-items: stretch;
    gap: 25px;
  }

  .btn-register {
    width: 100%;
    margin-top: 25px;
  }

  .info-card .card-icon {
    top: 20px;
    right: 20px;
  }

  .info-card .card-icon img {
    max-width: 50px;
  }

  .info-card .card-title {
    margin-bottom: 10px;
  }

  .intro-description {
    width: 90%;
  }
}

@media screen and (max-width: 767px) {
  .info-section {
    padding: 40px 20px;
    margin-top: 40px;
  }

  .info-card .card-icon {
    top: 15px;
    right: 15px;
  }

  .intro-subtitle {
    font-size: 24px;
  }

  .intro-image img {
    width: 100%;
  }

  .info-header {
    margin-bottom: 40px;
  }

  .info-intro {
    margin-top: 30px;
  }

  .info-cards {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .info-card:last-child {
    grid-column: auto;
  }

  .info-card {
    padding: 24px;
  }

  .info-card .card-title {
    padding-right: 0;
  }

  .card-content {
    padding-right: 0;
  }

  .card-content p br {
    display: none;
  }

  .info-bottom-block {
    padding: 25px;
    padding-right: 80px;
  }

  .info-bottom-icon-1,
  .info-bottom-icon-2 {
    max-width: 60px;
    top: 20px;
    right: 20px;
  }

  .info-bottom {
    margin-bottom: 40px;
  }

  .btn-register {
    padding: 18px 28px;
  }
}

@media screen and (max-width: 480px) {
  .info-section {
    padding: 30px 15px;
    margin-top: 30px;
  }

  .info-header {
    margin-bottom: 30px;
  }

  .intro-subtitle {
    margin-bottom: 20px;
  }

  .intro-description p {
    margin-bottom: 20px;
  }

  .info-card {
    padding: 20px;
    border-radius: 15px;
  }

  .info-card .card-icon img {
    max-width: 40px;
  }

  .card-content li {
    margin-bottom: 6px;
  }

  .info-bottom-block {
    padding: 20px;
    padding-right: 60px;
    border-radius: 20px;
  }

  .info-bottom-icon-1,
  .info-bottom-icon-2 {
    top: 18px;
    right: 18px;
  }

  .info-bottom-icon-1 img,
  .info-bottom-icon-2 img {
    width: 40%;
  }

  .info-bottom-title {
    margin-bottom: 12px;
  }

  .btn-register {
    padding: 16px 24px;
    border-radius: 15px;
  }
}

@media screen and (max-width: 430px) {
  .card-title {
    margin-right: 80px;
  }
}

@media screen and (max-width: 400px) {
  .info-bottom-block {
    padding-right: 0;
  }
}

/* Video Gallery Section */
.video-gallery {
  max-width: 1435px;
  width: calc(100% - 80px);
  margin: 0 auto;
  margin-top: 100px;
}

.video-section {
  margin-bottom: 50px;
}

.video-section:last-child {
  margin-bottom: 0;
}

.video-section-title {
  font-family: "Inter";
  font-weight: 900;
  font-size: 36px;
  color: #183b59;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.video-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  min-height: 200px; /* Reserve space to prevent layout shift when content loads */
}

.video-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  width: 344px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  /* Предотвращение CLS: резервируем место для изображения */
  aspect-ratio: 16 / 9;
  width: 100%;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.video-card:hover .thumbnail-img {
  transform: scale(1.02);
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
  opacity: 50%;
  z-index: 2;
}

.video-card:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.1);
  opacity: 100%;
}

.archive-videos .video-card:nth-child(9) {
  grid-column: span 2;
}

.archive-videos .video-card:nth-child(10) {
  grid-column: span 2;
}

@media screen and (max-width: 1024px) {
  .video-section {
    margin-bottom: 60px;
  }

  .video-section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .archive-videos .video-card:nth-child(9),
  .archive-videos .video-card:nth-child(10) {
    grid-column: span 1;
  }
}

@media screen and (max-width: 950px) {
  .video-gallery {
    width: calc(100% - 60px);
    padding-top: 0;
    margin-top: 30px;
  }
}

@media screen and (max-width: 768px) {
  .video-gallery {
    width: calc(100% - 40px);
  }

  .video-section {
    margin-bottom: 50px;
  }

  .video-card {
    width: 100%;
    border-radius: 40px;
  }

  .video-section-title {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .play-icon {
    width: 20%;
  }
}

@media screen and (max-width: 660px) {
  .video-card {
    border-radius: 35px;
  }
}

@media screen and (max-width: 480px) {
  .video-gallery {
    padding: 40px auto;
  }
  
  
  .video-section {
    margin-bottom: 40px;
  }
  
  .video-section-title {
    font-size: 20px;
    margin-bottom: 24px;
  }
  
  .video-grid {
    gap: 12px;
  }
  
  .video-card {
    border-radius: 25px;
  }
}

@media screen and (max-width: 400px) {
  .video-card {
    border-radius: 20px;
  }
}

.video-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.video-card:hover::before {
  opacity: 1;
}

/* Presentations Section */
.presentations-section {
  margin-top: 100px;
  padding-top: 80px;
  padding-bottom: 100px;
  padding-right: 40px;
  padding-left: 40px;
  background-image: url("../../images/presentation-bg.svg");
}

.presentations-section .container {
  max-width: 1435px;
  margin: 0 auto;
}

.presentations-header {
  margin-bottom: 32px;
}

.presentations-title {
  font-family: "Inter";
  font-weight: 900;
  font-size: 36px;
  color: #183b59;
  text-transform: uppercase;
}

.presentations-description {
  font-family: "Inter";
  font-weight: 400;
  font-size: 24px;
  color: #183b59;
  margin-top: 32px;
}

.presentations-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.content-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.row-title {
  color: #0c6ed6;
  font-weight: 800;
  font-size: 28px;
  line-height: 38px;
  letter-spacing: -2%;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}

.content-list {
  display: flex;
  gap: 20px;
}

.gap-36 {
  gap: 36px;
}

.content-list > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.content-link {
  font-family: "Inter";
  font-weight: 400;
  font-size: 24px;
  color: #183b59;
  line-height: 29px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.content-link:hover {
  color: #0c6ed6;
  text-decoration: underline;
}

.content-link:focus {
  outline: 2px solid #0c6ed6;
  outline-offset: 2px;
  border-radius: 4px;
}

@media screen and (max-width: 1440px) {
  .content-link {
    font-size: 22px;
  }
}

@media screen and (max-width: 1024px) {
  .presentations-section {
    padding-top: 60px;
    padding-bottom: 60px;
    margin-top: 50px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .presentations-title {
    font-size: 32px;
  }

  .presentations-description {
    font-size: 20px;
  }

  .row-title {
    font-size: 24px;
    line-height: 32px;
  }

  .content-link {
    font-size: 20px;
    line-height: 26px;
  }

  .content-list {
    gap: 40px;
  }

  .content-list > div {
    gap: 20px;
  }
}

@media screen and (max-width: 950px) {
  .presentations-section {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media screen and (max-width: 768px) {
  .presentations-section {
    padding-top: 50px;
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
    padding: 50px 20px 60px;
    margin-top: 60px;
  }

  .presentations-title {
    font-size: 28px;
  }

  .presentations-description {
    font-size: 18px;
    margin-top: 24px;
  }

  .presentations-content {
    gap: 40px;
  }

  /* .content-row {
    gap: 24px;
  } */

  .row-title {
    font-size: 20px;
    line-height: 28px;
  }

  .content-list {
    flex-direction: column;
    gap: 32px;
  }

  .content-list > div {
    gap: 20px;
  }

  .content-link {
    font-size: 16px;
    line-height: 22px;
  }
}

@media screen and (max-width: 580px) {
  .row-title {
    justify-content: space-between;
  }
}

@media screen and (max-width: 480px) {
  .presentations-section {
    padding-top: 40px;
    padding-bottom: 50px;
    margin-top: 40px;
  }

  .presentations-title {
    font-size: 24px;
  }

  .presentations-description {
    font-size: 16px;
    margin-top: 20px;
  }

  .presentations-content {
    gap: 32px;
  }

  /* .content-row {
    gap: 20px;
  } */

  .row-title {
    font-size: 18px;
    line-height: 24px;
  }

  .content-list > div {
    gap: 16px;
  }

  .content-link {
    font-size: 14px;
    line-height: 20px;
  }
}

/* video popup */
.video-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 10000;
  padding: 20px;
  box-sizing: border-box;
}

.video-popup .popup-container {
  position: relative;
  width: 90%;
  max-width: 1100px;
  max-height: 95vh;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5);
}

#popup-video {
  width: 100%;
  height: auto;
  max-height: calc(95vh - 40px);
  display: block;
  background: #000;
}

.popup-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
}

.popup-close-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

.popup-close-btn img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .video-popup {
    padding: 10px;
  }

  .video-popup .popup-container {
    width: 95%;
    max-height: 90vh;
  }

  #popup-video {
    max-height: calc(90vh - 40px);
  }

  .popup-close-btn {
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
  }

  .popup-close-btn img {
    width: 16px;
    height: 16px;
  }
}
