:root {
  --pink: #f2799e;
  --cyan: #28c5dd;
  --dark: #222;
  --muted: #777;
  --max: 1120px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: #292929;
  font-family: "Open Sans", Arial, sans-serif;
  line-height: 1.65;
}
h1,
h2,
h3,
h4,
.nav {
  font-family: Lato, Arial, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(var(--max), calc(100% - 32px));
  margin: auto;
}
#header {
  display: contents;
}
.topbar {
  background: var(--pink);
  color: #fff;
  font-size: 12px;
}
.topbar .container {
  min-height: 34px;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: auto;
  margin: 0 0 0 7px;
  font-size: 16px;
  transition: 0.2s;
}
.social {
  display: flex;
  flex: 0 0 auto;
  align-self: stretch;
  align-items: stretch;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  white-space: nowrap;
}
.social a:hover {
  background: #000;
  color: #fff;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 12px #00000012;
}
.nav-wrap {
  min-height: 96px;
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  width: 92px;
}
.menu-toggle {
  border: 0;
  background: var(--pink);
  color: #fff;
  font-size: 22px;
  padding: 8px 12px;
  cursor: pointer;
}
.nav {
  display: none;
  position: absolute;
  top: 96px;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid #eee;
}
.nav.open {
  display: block;
}
.nav a,
.dropbtn {
  display: block;
  padding: 13px 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border: 0;
  background: none;
  width: 100%;
  text-align: left;
}
.nav a:hover,
.dropbtn:hover,
.nav a.active,
.dropbtn.active {
  color: var(--pink);
}
.dropdown-content {
  display: none;
  background: #eee;
}
.dropdown.open .dropdown-content {
  display: block;
}
.dropdown-content a:hover {
  background: #000;
  color: #fff;
}
.dropdown-content a.active {
  color: var(--pink);
  font-weight: 900;
}
.plan {
  background: var(--cyan) !important;
  color: #fff !important;
  margin: 8px 20px;
  width: calc(100% - 40px) !important;
  text-align: center !important;
}
.plan:hover {
  background: #000 !important;
  color: #fff !important;
}
.hero {
  position: relative;
  height: 540px;
  overflow: hidden;
  background: #333;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s;
  background-size: cover;
  background-position: center;
}
.slide.active {
  opacity: 1;
}
.slide:after,
.page-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: #0006;
}
.hero-copy {
  position: absolute;
  z-index: 2;
  color: #fff;
  text-align: center;
  inset: 0;
  display: grid;
  place-content: center;
  padding: 30px;
}
.hero h1 {
  font-size: 38px;
  margin: -30px 0 8px;
}
.hero p {
  max-width: 700px;
  margin: 0 auto 24px;
}
.btn {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  border: 0;
  padding: 12px 27px;
  text-transform: uppercase;
  font: 700 11px Lato;
  cursor: pointer;
  margin-top: 10px;
}
.btn:hover {
  background: #111;
}
.hero .btn {
  padding-left: 12px;
  padding-right: 12px;
  width: max-content;
  justify-self: center;
}
.slider-arrow {
  position: absolute;
  z-index: 3;
  top: 45%;
  border: 0;
  background: transparent;
  color: white;
  font-size: 40px;
  cursor: pointer;
}
.prev {
  left: 28px;
}
.next {
  right: 28px;
}
.news-strip {
  position: relative;
  z-index: 3;
  margin-top: -130px;
  display: grid;
}
.news-card {
  min-height: 126px;
  background: #171717ef;
  color: #fff;
  padding: 22px;
  transition: background-color 0.25s ease;
}
.news-card:hover {
  background: var(--pink);
}
.news-card:nth-child(1) {
  background: var(--pink);
}
.news-card h3 {
  font-size: 15px;
  margin: 0;
}
.news-card p,
.news-card a {
  font-size: 11px;
}
.section {
  padding: 76px 0;
}
.section-title {
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.section-title:after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--pink);
  margin: 12px auto;
}
.intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 45px;
  color: #666;
}
.skills {
  display: grid;
  gap: 40px;
  text-align: center;
}
.skill img {
  height: 74px;
  margin: 0 auto 20px;
}
.skill h3 {
  font-size: 14px;
}
.skill p {
  font-size: 12px;
  color: #777;
}
.cta {
  background: var(--pink);
  color: #fff;
}
.cta .container {
  padding: 28px 0;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.cta h3 {
  margin: 0;
  font-size: 16px;
}
.cta .btn {
  background: #222;
  border-radius: 30px;
}
.cta .btn:hover {
  background: #fff;
  color: #000;
}
.schedule-links {
  margin: 10px 0 0;
  font-size: 13px;
}
.schedule-links strong {
  display: block;
}
.schedule-links a {
  text-decoration: underline;
  color: #000;
}
.schedule-links a:hover {
  color: var(--cyan);
}
.testimonial {
  text-align: center;
}
.testimonial-slider {
  position: relative;
  max-width: 850px;
  margin: auto;
  padding: 0 54px;
}
.testimonial-card {
  display: none;
}
.testimonial-card.active {
  display: block;
  animation: reviewFade 0.35s ease;
}
.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #c5c5c5;
  width: auto;
  height: auto;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
}
.testimonial-arrow i {
  font-size: inherit;
  font-weight: inherit;
}
.testimonial-arrow:hover {
  background: transparent;
  color: var(--pink);
}
.testimonial-arrow.prev {
  left: 0;
}
.testimonial-arrow.next {
  right: 0;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.testimonial-dot {
  border: 0;
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  background: #bbb;
  cursor: pointer;
}
.testimonial-dot.active {
  background: var(--pink);
}
@keyframes reviewFade {
  from {
    opacity: 0.25;
  }
  to {
    opacity: 1;
  }
}
.avatar {
  width: 95px;
  height: 95px;
  object-fit: cover;
  border-radius: 50%;
  margin: 30px auto;
}
.stats {
  background: #222;
  color: white;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
  padding: 28px 0;
  gap: 20px;
}
.stat strong {
  display: block;
  color: var(--pink);
  font-size: 27px;
}
.contact-grid,
.footer-grid,
.content-grid {
  display: grid;
  gap: 36px;
}
.contact-item {
  text-align: center;
}
.contact-item img {
  height: 55px;
  margin: 0 auto 16px;
}
.video-icon {
  font-size: 48px;
  color: var(--pink);
}
iframe {
  border: 0;
  max-width: 100%;
}
.map {
  width: 100%;
  height: 360px;
}
.accreditation {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 40px 0;
}
.accreditation .badge {
  width: 90px;
  height: 100px;
  background: var(--pink);
  color: #fff;
  display: grid;
  place-content: center;
  text-align: center;
  font-size: 11px;
}
.accreditation-logo {
  width: 105px;
  height: auto;
  flex: 0 0 auto;
}
.dropbtn .fa-caret-down {
  margin-left: 5px;
}
.footer-menu a:hover {
  color: #fff;
}
.footer {
  background: #222;
  color: #bbb;
  padding: 46px 0 20px;
  font-size: 12px;
}
.footer h3 {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
}
.footer a {
  color: var(--pink);
}
.footer-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
}
.newsletter {
  display: flex;
}
.newsletter input {
  width: 100%;
  background: #444;
  border: 0;
  padding: 12px;
  color: #fff;
}
.newsletter button {
  border: 0;
  background: #555;
  color: #fff;
  width: 48px;
}
.copyright {
  border-top: 1px solid #444;
  margin-top: 30px;
  padding-top: 16px;
}
.page-hero {
  height: 270px;
  position: relative;
  background: url("../images/1.jpg") center/cover;
}
.page-hero h1 {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  margin: 0;
  padding-top: 95px;
  font-size: 42px;
  text-transform: uppercase;
}
.prose h2 {
  font-size: 21px;
}
.prose p {
  font-size: 13px;
  color: #666;
}
.sidebar {
  border-left: 1px solid #eee;
  padding-left: 24px;
}
.sidebar a {
  display: block;
  border-bottom: 1px solid #eee;
  padding: 12px;
  color: var(--pink);
  font-size: 12px;
}
.sidebar a.active {
  color: var(--pink);
  font-weight: 900;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.gallery-card {
  cursor: pointer;
}
.gallery-card img {
  aspect-ratio: 1.45;
  object-fit: cover;
  width: 100%;
}
.gallery-card h3 {
  text-align: center;
  font-size: 13px;
}
.form label {
  display: block;
  font-size: 12px;
  margin: 12px 0 5px;
}
.form input,
.form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
}
.form textarea {
  min-height: 130px;
}
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  inset: 0;
  background: #000e;
  align-items: center;
  justify-content: center;
  padding: 60px;
}
.modal.open {
  display: flex;
}
.modal img {
  max-height: 78vh;
  max-width: 86vw;
}
.modal-title {
  position: absolute;
  bottom: 18px;
  color: white;
}
.modal-close,
.modal-nav {
  position: absolute;
  border: 0;
  background: none;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}
.modal-close {
  right: 22px;
  top: 12px;
}
.modal-nav.prev {
  left: 20px;
}
.modal-nav.next {
  right: 20px;
}
.news-layout {
  display: grid;
  gap: 35px;
}
.news-main img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}
.news-list a {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--pink);
  font-size: 12px;
}
.news-list img {
  width: 70px;
  height: 55px;
  object-fit: cover;
}
.lang-en [data-et],
body:not(.lang-en) [data-en] {
  display: none !important;
}
.lang-en [data-en] {
  display: initial;
}
.backtop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--pink);
  color: #fff;
  border: 0;
  width: 42px;
  height: 42px;
  z-index: 900;
  display: none;
  cursor: pointer;
}
.backtop.show {
  display: block;
}
@media (max-width: 420px) {
  .topbar .container {
    align-items: center;
    gap: 8px;
    padding-top: 0;
    padding-bottom: 0;
  }
  .topbar-info {
    min-width: 0;
    line-height: 1.45;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .social a {
    margin-top: 0;
    margin-bottom: 0;
  }
  .hero-copy {
    width: min(100% - 32px, 720px);
  }
  .hero h1 {
    font-size: clamp(32px, 11vw, 44px);
  }
  .testimonial-slider {
    padding-right: 34px;
    padding-left: 34px;
  }
}
@media (min-width: 760px) {
  .skills,
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1.2fr 0.7fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .content-grid,
  .news-layout {
    grid-template-columns: 3fr 1fr;
  }
  .news-strip {
    grid-template-columns: repeat(3, 1fr);
  }
  .news-card {
    padding: 22px 26px;
  }
}
@media (min-width: 960px) {
  .menu-toggle {
    display: none;
  }
  .nav {
    display: flex;
    position: static;
    align-items: center;
    border: 0;
  }
  .nav a,
  .dropbtn {
    padding: 35px 11px;
    width: auto;
  }
  .dropdown {
    position: relative;
  }
  .dropdown-content {
    position: absolute;
    top: 70px;
    min-width: 180px;
  }
  .dropdown:hover .dropdown-content {
    display: block;
  }
  .dropdown-content a {
    padding: 12px 16px;
  }
  .plan {
    margin: 0 0 0 12px;
    width: auto !important;
    padding: 12px 22px !important;
  }
  .hero h1 {
    font-size: 57px;
  }
  .news-strip {
    margin-top: -135px;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
