@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 1px;
  color-scheme: only light;
}

header {
  z-index: 1;
  background-color: #FA5A76;
  height: 80px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 0 5px 5px rgba(97, 97, 97, 0.5);
  font-weight: 500;
}
@media (max-width: 768px) {
  header {
    height: 65px;
  }
}
@media (max-width: 560px) {
  header {
    height: 50px;
  }
}
header img {
  height: 50px;
  width: auto;
  margin-left: 60px;
  margin-top: 5px;
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+ */
  user-select: none;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  header img {
    height: 45px;
  }
}
@media (max-width: 560px) {
  header img {
    height: 33px;
    margin-left: 40px;
  }
}
header a {
  text-decoration: none;
  font-size: 16px;
  color: white;
  transition: 0.4s;
}
@media (max-width: 1300px) {
  header a {
    font-size: 14px;
  }
}
header a:hover {
  color: #a6dfda;
}
header a:visited, header a:active {
  text-decoration: none;
}
header .navigation {
  display: flex;
  gap: 70px;
}
@media (max-width: 1300px) {
  header .navigation {
    gap: 50px;
  }
}
@media (max-width: 992px) {
  header .navigation {
    display: none;
  }
}
header .languages {
  margin-right: 30px;
  display: flex;
  gap: 30px;
}
@media (max-width: 992px) {
  header .languages {
    display: none;
  }
}
header .menu {
  display: none;
}
@media (max-width: 992px) {
  header .menu {
    display: inline-block;
    cursor: pointer;
    margin-right: 30px;
  }
}
header .menu .bar1, header .menu .bar2, header .menu .bar3 {
  border-radius: 2px;
  width: 35px;
  height: 5px;
  background-color: #ffffff;
  margin: 6px 0;
  transition: 0.4s;
}
@media (max-width: 560px) {
  header .menu .bar1, header .menu .bar2, header .menu .bar3 {
    width: 30px;
    height: 4px;
    margin: 5px 0;
  }
}
header .change {
  z-index: 2;
}
@media (max-width: 560px) {
  header .change {
    margin-right: 20px;
    margin-top: 20px;
  }
}
header .change .bar1 {
  transform: translate(0, 11px) rotate(-45deg);
}
@media (max-width: 560px) {
  header .change .bar1 {
    transform: translate(0, 7px) rotate(-45deg);
  }
}
header .change .bar2 {
  opacity: 0;
}
header .change .bar3 {
  transform: translate(0, -11px) rotate(45deg);
}
@media (max-width: 992px) {
  header .sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 50%;
    height: 100%;
    background-color: #FA5A76;
    box-shadow: -5px 0px 10px 1px rgba(0, 0, 0, 0.19);
    padding: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 50px;
    transition: right 0.3s ease-in-out;
    z-index: 1;
  }
}
@media (max-width: 992px) and (max-width: 560px) {
  header .sidebar {
    padding: 0;
    padding-top: 40px;
    width: 100%;
  }
}
@media (max-width: 992px) {
  header .sidebar a {
    font-size: 18px;
  }
}
@media (max-width: 992px) and (max-width: 560px) {
  header .sidebar a {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  header .sidebar .navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    margin: 100px 0;
  }
}
@media (max-width: 992px) and (max-width: 560px) {
  header .sidebar .navigation {
    margin: 80px 0;
  }
}
@media (max-width: 992px) {
  header .sidebar .languages {
    display: flex;
    margin-right: 0;
  }
  header .sidebar.active {
    right: 0;
  }
}

.hero_image {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  height: 100%;
  background-color: #def9f5;
  padding-top: 80px;
}
@media (max-width: 1300px) {
  .hero_image {
    height: 600px;
  }
}
@media (max-width: 768px) {
  .hero_image {
    height: 450px;
    padding-top: 65px;
  }
}
@media (max-width: 560px) {
  .hero_image {
    height: 320px;
    padding-top: 50px;
  }
}
.hero_image_block {
  display: flex;
  flex-direction: column;
  background-color: #def9f5;
  flex: 0.7;
  padding: 0px 70px;
  color: #3e3e3e;
}
@media (max-width: 768px) {
  .hero_image_block {
    padding: 0 40px;
  }
}
@media (max-width: 560px) {
  .hero_image_block {
    padding: 0 20px;
  }
}
.hero_image_block h1 {
  font-size: 45px;
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.5;
}
@media (max-width: 1300px) {
  .hero_image_block h1 {
    font-size: 35px;
  }
}
@media (max-width: 992px) {
  .hero_image_block h1 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .hero_image_block h1 {
    font-size: 22px;
  }
}
@media (max-width: 560px) {
  .hero_image_block h1 {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.hero_image_block p {
  font-size: 20px;
  max-width: 500px;
  margin-bottom: 30px;
  line-height: 2;
}
@media (max-width: 1300px) {
  .hero_image_block p {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .hero_image_block p {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .hero_image_block p {
    font-size: 12px;
  }
}
@media (max-width: 560px) {
  .hero_image_block p {
    font-size: 8px;
    margin-bottom: 10px;
  }
}
.hero_image_block button {
  background-color: #343434; /* Green */
  border: none;
  color: #def9f5;
  padding: 15px 20px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  transition-duration: 0.4s;
  border-radius: 5px;
  width: 230px;
}
@media (max-width: 1300px) {
  .hero_image_block button {
    font-size: 14px;
    width: 210px;
  }
}
@media (max-width: 992px) {
  .hero_image_block button {
    font-size: 13px;
    width: 200px;
  }
}
@media (max-width: 768px) {
  .hero_image_block button {
    font-size: 11px;
    width: 150px;
    padding: 12px;
  }
}
@media (max-width: 560px) {
  .hero_image_block button {
    font-size: 8px;
    width: 120px;
    padding: 7px;
  }
}
.hero_image_block button:hover {
  cursor: pointer;
  background-color: #FA5A76;
}
.hero_image_photo {
  display: flex;
  flex: 1;
  justify-content: center;
  height: 100%;
}
.hero_image_photo img {
  display: flex;
  flex: 1;
  max-width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}

.about_us {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 750px;
  background-image: url("/assets/img/bg_confetti.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  color: #FA5A76;
}
@media (max-width: 1300px) {
  .about_us {
    height: 600px;
  }
}
@media (max-width: 768px) {
  .about_us {
    height: 500px;
  }
}
@media (max-width: 560px) {
  .about_us {
    height: 370px;
  }
}
.about_us h1 {
  font-size: 38px;
  font-weight: 500;
  margin-bottom: 40px;
  text-transform: uppercase;
}
@media (max-width: 1300px) {
  .about_us h1 {
    font-size: 32px;
  }
}
@media (max-width: 992px) {
  .about_us h1 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .about_us h1 {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
@media (max-width: 560px) {
  .about_us h1 {
    font-size: 16px;
    margin-bottom: 10px;
    margin-top: 20px;
  }
}
.about_us .main_text {
  width: 700px;
}
@media (max-width: 1300px) {
  .about_us .main_text {
    width: 600px;
  }
}
@media (max-width: 992px) {
  .about_us .main_text {
    width: 450px;
  }
}
@media (max-width: 768px) {
  .about_us .main_text {
    width: 400px;
    background-color: rgba(255, 255, 255, 0.7137254902);
    padding: 10px;
    box-shadow: 0px 0px 20px 10px rgba(255, 255, 255, 0.7137254902);
  }
}
@media (max-width: 560px) {
  .about_us .main_text {
    width: 250px;
  }
}
.about_us .main_text p {
  font-size: 20px;
  text-indent: 50px;
  text-align: justify;
  margin-bottom: 10px;
  line-height: 1.5;
}
@media (max-width: 1300px) {
  .about_us .main_text p {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .about_us .main_text p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .about_us .main_text p {
    font-size: 12px;
    text-indent: 40px;
  }
}
@media (max-width: 560px) {
  .about_us .main_text p {
    font-size: 8px;
    text-indent: 20px;
  }
}
.about_us .main_text p:first-child {
  font-weight: 500;
}

.carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 550px;
  flex-direction: column;
  background-color: #def9f5;
}
@media (max-width: 1300px) {
  .carousel {
    height: 450px;
  }
}
@media (max-width: 992px) {
  .carousel {
    height: 380px;
  }
}
@media (max-width: 768px) {
  .carousel {
    height: 550px;
  }
}
@media (max-width: 560px) {
  .carousel {
    height: 410px;
  }
}
.carousel_images {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 1300px) {
  .carousel_images {
    gap: 25px;
  }
}
@media (max-width: 992px) {
  .carousel_images {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .carousel_images {
    display: grid;
    grid-template-columns: repeat(2, 200px);
    gap: 20px 30px;
  }
}
@media (max-width: 560px) {
  .carousel_images {
    grid-template-columns: repeat(2, 150px);
    gap: 10px;
  }
}
.carousel_images .image_container {
  height: 300px;
  display: flex;
}
@media (max-width: 1300px) {
  .carousel_images .image_container {
    height: 220px;
  }
}
@media (max-width: 992px) {
  .carousel_images .image_container {
    height: 170px;
  }
}
@media (max-width: 768px) {
  .carousel_images .image_container {
    height: 200px;
  }
}
@media (max-width: 560px) {
  .carousel_images .image_container {
    height: 150px;
  }
}
.carousel_images .image_container img {
  border-radius: 10px;
  width: 300px;
  object-fit: cover;
}
@media (max-width: 1300px) {
  .carousel_images .image_container img {
    width: 220px;
  }
}
@media (max-width: 992px) {
  .carousel_images .image_container img {
    width: 170px;
  }
}
@media (max-width: 768px) {
  .carousel_images .image_container img {
    width: 200px;
  }
}
@media (max-width: 560px) {
  .carousel_images .image_container img {
    width: 150px;
    border-radius: 5px;
  }
}
.carousel button {
  margin-top: 50px;
  background-color: #def9f5;
  border: 3px solid #FA5A76;
  color: #FA5A76;
  padding: 15px 25px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  transition-duration: 0.4s;
  border-radius: 5px;
}
@media (max-width: 1300px) {
  .carousel button {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .carousel button {
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .carousel button {
    font-size: 12px;
    padding: 10px 20px;
    margin-top: 30px;
  }
}
@media (max-width: 560px) {
  .carousel button {
    font-size: 10px;
    padding: 10px 20px;
    margin-top: 20px;
    border-width: 2px;
  }
}
.carousel button:hover {
  cursor: pointer;
  background-color: #FA5A76;
  color: #def9f5;
}

.description {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  color: #FA5A76;
  height: auto;
  background-color: #FFF8EC;
}
.description_image {
  margin-left: 30px;
}
@media (max-width: 768px) {
  .description_image {
    margin-left: 0px;
  }
}
.description_image img {
  height: 600px;
  width: auto;
}
@media (max-width: 1300px) {
  .description_image img {
    height: 500px;
  }
}
@media (max-width: 992px) {
  .description_image img {
    height: 400px;
  }
}
@media (max-width: 768px) {
  .description_image img {
    height: 300px;
  }
}
@media (max-width: 560px) {
  .description_image img {
    height: 210px;
  }
}
.description_text {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.7;
  font-size: 20px;
  width: 700px;
  padding-right: 30px;
  margin: 40px 0;
}
@media (max-width: 1300px) {
  .description_text {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .description_text {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .description_text {
    font-size: 12px;
  }
}
@media (max-width: 560px) {
  .description_text {
    font-size: 8px;
    padding-right: 15px;
    margin: 30px 0 30px -25px;
  }
}
.description_text ul {
  list-style-type: circle;
}
.description_text ul p {
  font-size: 30px;
  padding-bottom: 20px;
  font-weight: 500;
  margin-left: -23px;
  text-transform: uppercase;
}
@media (max-width: 1300px) {
  .description_text ul p {
    font-size: 26px;
  }
}
@media (max-width: 992px) {
  .description_text ul p {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .description_text ul p {
    font-size: 20px;
  }
}
@media (max-width: 560px) {
  .description_text ul p {
    font-size: 14px;
    padding-bottom: 10px;
  }
}
.description_text ul li {
  padding-left: 20px;
}
@media (max-width: 768px) {
  .description_text ul li {
    padding-left: 10px;
  }
}

.contact_form {
  height: 700px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-image: url("/assets/img/bg_confetti_2.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
@media (max-width: 1300px) {
  .contact_form {
    height: 600px;
  }
}
@media (max-width: 768px) {
  .contact_form {
    height: 550px;
  }
}
@media (max-width: 560px) {
  .contact_form {
    height: 400px;
  }
}
.contact_form h1 {
  font-size: 38px;
  font-weight: 500;
  color: #FA5A76;
  text-transform: uppercase;
}
@media (max-width: 1300px) {
  .contact_form h1 {
    font-size: 32px;
  }
}
@media (max-width: 992px) {
  .contact_form h1 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .contact_form h1 {
    font-size: 24px;
  }
}
@media (max-width: 560px) {
  .contact_form h1 {
    font-size: 16px;
  }
}
.contact_form p {
  color: #FA5A76;
  font-size: 16px;
  padding: 20px 0 40px 0;
  text-align: center;
}
@media (max-width: 1300px) {
  .contact_form p {
    font-size: 14px;
    width: 50%;
  }
}
@media (max-width: 992px) {
  .contact_form p {
    width: 60%;
  }
}
@media (max-width: 768px) {
  .contact_form p {
    font-size: 12px;
  }
}
@media (max-width: 560px) {
  .contact_form p {
    font-size: 8px;
    padding: 10px 0 25px 0;
  }
}
.contact_form form {
  width: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 1300px) {
  .contact_form form {
    width: 600px;
  }
}
@media (max-width: 992px) {
  .contact_form form {
    width: 500px;
  }
}
@media (max-width: 768px) {
  .contact_form form {
    width: 400px;
  }
}
@media (max-width: 560px) {
  .contact_form form {
    width: 270px;
  }
}
.contact_form form input, .contact_form form textarea, .contact_form form button {
  background-color: transparent;
  outline: none;
  font-size: 18px;
  border-radius: 5px;
  line-height: 1.5;
  background-color: white;
}
@media (max-width: 1300px) {
  .contact_form form input, .contact_form form textarea, .contact_form form button {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .contact_form form input, .contact_form form textarea, .contact_form form button {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .contact_form form input, .contact_form form textarea, .contact_form form button {
    font-size: 12px;
  }
}
@media (max-width: 560px) {
  .contact_form form input, .contact_form form textarea, .contact_form form button {
    font-size: 10px;
  }
}
.contact_form form input, .contact_form form textarea {
  border: 3px solid #a6dfda;
  padding: 15px;
  color: #a6dfda;
}
@media (max-width: 1300px) {
  .contact_form form input, .contact_form form textarea {
    padding: 10px;
  }
}
@media (max-width: 560px) {
  .contact_form form input, .contact_form form textarea {
    padding: 8px;
    border-width: 2px;
  }
}
.contact_form form input::placeholder, .contact_form form textarea::placeholder {
  color: #a6dfda;
  opacity: 0.6;
}
.contact_form form input::-ms-input-placeholder, .contact_form form textarea::-ms-input-placeholder { /* Edge 12 -18 */
  color: #a6dfda;
}
.contact_form form .form_row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  width: 100%;
}
@media (max-width: 560px) {
  .contact_form form .form_row {
    margin-bottom: 10px;
  }
}
.contact_form form .form_row input {
  width: 100%;
}
.contact_form form .form_col {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}
@media (max-width: 560px) {
  .contact_form form .form_col {
    gap: 10px;
  }
}
.contact_form form .form_col textarea {
  height: 100px;
}
@media (max-width: 560px) {
  .contact_form form .form_col textarea {
    height: 80px;
  }
}
.contact_form form button {
  border: 3px solid #FA5A76;
  color: #FA5A76;
  font-weight: 500;
  transition-duration: 0.4s;
  padding: 10px;
}
@media (max-width: 1300px) {
  .contact_form form button {
    padding: 8px;
  }
}
@media (max-width: 560px) {
  .contact_form form button {
    padding: 6px;
    border-width: 2px;
  }
}
.contact_form form button:hover {
  background-color: #FA5A76;
  color: white;
  cursor: pointer;
}

.events {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
  background-color: #FFF8EC;
  min-height: 80vh;
}
@media (max-width: 768px) {
  .events {
    padding-top: 65px;
    align-items: center;
  }
}
@media (max-width: 560px) {
  .events {
    padding-top: 50px;
  }
}
.events #events_title {
  margin-top: 50px;
  font-weight: 500;
  font-size: 40px;
  color: #FA5A76;
}
@media (max-width: 1300px) {
  .events #events_title {
    font-size: 36px;
  }
}
@media (max-width: 992px) {
  .events #events_title {
    margin-top: 40px;
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .events #events_title {
    margin-top: 30px;
    font-size: 28px;
  }
}
@media (max-width: 560px) {
  .events #events_title {
    font-size: 24px;
  }
}
.events_list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 70px;
}
@media (max-width: 768px) {
  .events_list {
    padding: 30px 0;
    width: 80%;
  }
}
.events_list_event {
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  margin-bottom: 50px;
  background-color: #def9f5;
  color: #343434;
  box-shadow: 0 6px 15px 0 rgba(0, 0, 0, 0.19);
  align-items: stretch;
  height: auto;
}
@media (max-width: 768px) {
  .events_list_event {
    flex: 1;
    flex-direction: column;
  }
}
.events_list_event .event_poster {
  width: 400px;
  flex-shrink: 0;
}
@media (max-width: 1300px) {
  .events_list_event .event_poster {
    width: 350px;
  }
}
@media (max-width: 992px) {
  .events_list_event .event_poster {
    width: 250px;
  }
}
@media (max-width: 768px) {
  .events_list_event .event_poster {
    width: auto;
    height: 350px;
  }
}
@media (max-width: 560px) {
  .events_list_event .event_poster {
    height: auto;
  }
}
.events_list_event .event_poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
@media (max-width: 768px) {
  .events_list_event .event_poster img {
    border-bottom-left-radius: 0;
    border-top-right-radius: 10px;
  }
}
.events_list_event .event_desc {
  display: flex;
  flex-direction: column;
  padding: 30px;
  line-height: 1.7;
  font-size: 22px;
}
.events_list_event .event_desc a {
  color: #FA5A76;
}
@media (max-width: 1300px) {
  .events_list_event .event_desc {
    font-size: 18px;
  }
}
@media (max-width: 992px) {
  .events_list_event .event_desc {
    line-height: 1.5;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .events_list_event .event_desc {
    padding: 25px;
    line-height: 1.7;
    font-size: 14px;
  }
}
.events_list_event .event_desc h1 {
  font-weight: 600;
  font-size: 32px;
  padding-bottom: 10px;
  line-height: 1.3;
}
@media (max-width: 1300px) {
  .events_list_event .event_desc h1 {
    font-size: 28px;
  }
}
@media (max-width: 992px) {
  .events_list_event .event_desc h1 {
    font-size: 22px;
  }
}
@media (max-width: 560px) {
  .events_list_event .event_desc h1 {
    font-size: 18px;
  }
}
.events_list_event .event_desc #date_time, .events_list_event .event_desc #price, .events_list_event .event_desc #age {
  font-weight: 500;
}
.events_list_event .event_desc .show-more-btn {
  border: none;
  text-align: left;
  margin-top: 10px;
  font-size: 12px;
  background-color: transparent;
  padding: 0;
  color: #FA5A76;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  letter-spacing: 1px;
}
.events_list_event .event_desc #desc {
  padding-top: 30px;
  font-size: 18px;
}
@media (max-width: 1300px) {
  .events_list_event .event_desc #desc {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .events_list_event .event_desc #desc {
    padding-top: 10px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .events_list_event .event_desc #desc {
    font-size: 12px;
  }
}
.events_list_event .event_desc .hidden-desc {
  padding-top: 10px;
  font-size: 12px;
}

.gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  flex-direction: column;
  background-color: #FFF8EC;
}
@media (max-width: 768px) {
  .gallery {
    padding-top: 65px;
  }
}
@media (max-width: 560px) {
  .gallery {
    padding-top: 50px;
  }
}
.gallery h1 {
  color: #FA5A76;
  font-weight: 500;
  font-size: 40px;
}
@media (max-width: 1300px) {
  .gallery h1 {
    font-size: 36px;
  }
}
@media (max-width: 992px) {
  .gallery h1 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .gallery h1 {
    font-size: 28px;
  }
}
@media (max-width: 560px) {
  .gallery h1 {
    font-size: 24px;
  }
}
.gallery h1:first-child {
  padding-top: 50px;
}
@media (max-width: 1300px) {
  .gallery h1:first-child {
    padding-top: 40px;
  }
}
@media (max-width: 768px) {
  .gallery h1:first-child {
    padding-top: 30px;
  }
}
.gallery .content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 40px 20px;
  padding: 50px 0px 80px;
}
@media (max-width: 1300px) {
  .gallery .content {
    grid-template-columns: repeat(4, 1fr);
    padding: 50px 0px;
  }
}
@media (max-width: 992px) {
  .gallery .content {
    grid-template-columns: repeat(3, 1fr);
    padding: 40px 0px;
    grid-gap: 40px 30px;
  }
}
@media (max-width: 768px) {
  .gallery .content {
    grid-gap: 20px;
  }
}
@media (max-width: 560px) {
  .gallery .content {
    grid-gap: 15px;
    padding: 30px 0px;
  }
}
.gallery .content .image_wrapper {
  display: inline-block;
  position: relative;
  width: 230px;
  height: 230px;
}
@media (max-width: 1300px) {
  .gallery .content .image_wrapper {
    width: 210px;
    height: 210px;
  }
}
@media (max-width: 768px) {
  .gallery .content .image_wrapper {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 560px) {
  .gallery .content .image_wrapper {
    width: 110px;
    height: 110px;
  }
}
@media (max-width: 415px) {
  .gallery .content .image_wrapper {
    width: 90px;
    height: 90px;
  }
}
.gallery .content .image_wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #def9f5;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.gallery .content .image_wrapper:hover::after {
  opacity: 0.8;
}
.gallery .content .image_wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.gallery .modal {
  display: none;
  flex-direction: row;
  justify-content: space-between;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
}
.gallery .modal button {
  width: 40px;
  margin: 40px;
  text-align: center;
  background-color: transparent;
  border: none;
  font-size: 40px;
  color: white;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .gallery .modal button {
    margin: 20px;
    font-size: 35px;
  }
}
@media (max-width: 560px) {
  .gallery .modal button {
    margin: 10px;
    font-size: 25px;
  }
}
.gallery .modal button:hover {
  cursor: pointer;
  color: #b1b1b1;
}
.gallery .modal #modal-img {
  margin: auto;
  display: block;
  width: auto;
  height: auto;
  max-width: 900px;
  max-height: 600px;
  animation-name: zoom;
  animation-duration: 0.6s;
}
@media (max-width: 1300px) {
  .gallery .modal #modal-img {
    max-width: 780px;
  }
}
@media (max-width: 992px) {
  .gallery .modal #modal-img {
    max-width: 560px;
  }
}
@media (max-width: 768px) {
  .gallery .modal #modal-img {
    max-width: 400px;
  }
}
@media (max-width: 560px) {
  .gallery .modal #modal-img {
    max-width: 280px;
  }
}
@media (max-height: 400px) {
  .gallery .modal #modal-img {
    max-height: 350px;
  }
}
.gallery .modal #close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 45px;
  font-weight: bold;
  transition: 0.3s;
}
@media (max-width: 560px) {
  .gallery .modal #close {
    font-size: 40px;
    font-weight: normal;
  }
}
.gallery .modal #close:hover, .gallery .modal #close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}
@keyframes zoom {
  from {
    transform: scale(0.1);
  }
  to {
    transform: scale(1);
  }
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FA5A76;
  width: 100%;
}
footer p {
  font-size: 18px;
}
@media (max-width: 1300px) {
  footer p {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  footer p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  footer p {
    font-size: 13px;
  }
}
@media (max-width: 560px) {
  footer p {
    font-size: 10px;
  }
}
footer .footer_div {
  width: 100%;
  display: flex;
  flex-direction: row;
  color: white;
  justify-content: space-between;
  padding: 40px 50px 40px 40px;
}
@media (max-width: 768px) {
  footer .footer_div {
    padding: 30px;
  }
}
@media (max-width: 560px) {
  footer .footer_div {
    padding: 20px 30px;
  }
}
footer .footer_div h1 {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 30px;
}
@media (max-width: 1300px) {
  footer .footer_div h1 {
    font-size: 28px;
  }
}
@media (max-width: 1300px) {
  footer .footer_div h1 {
    font-size: 24px;
  }
}
@media (max-width: 560px) {
  footer .footer_div h1 {
    font-size: 16px;
    margin-bottom: 15px;
    margin-top: 10px;
  }
}
footer .footer_div .logo_div {
  display: flex;
  flex-direction: column;
  text-align: left;
  flex: 1;
}
@media (max-width: 768px) {
  footer .footer_div .logo_div {
    justify-content: flex-end;
  }
}
footer .footer_div .logo_div img {
  height: 200px;
  width: 200px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  footer .footer_div .logo_div img {
    height: 150px;
    width: 150px;
  }
}
@media (max-width: 768px) {
  footer .footer_div .logo_div img {
    height: 170px;
    width: 170px;
    margin-left: -20px;
    margin-bottom: 30px;
  }
}
@media (max-width: 560px) {
  footer .footer_div .logo_div img {
    height: 130px;
    width: 130px;
  }
}
footer .footer_div .logo_div p {
  margin-left: 30px;
}
@media (max-width: 992px) {
  footer .footer_div .logo_div p {
    margin-left: 0px;
  }
}
footer .footer_div .contacts {
  display: flex;
  flex-direction: column;
  text-align: left;
  flex: 1;
  margin-left: 50px;
}
footer .footer_div .contacts p {
  line-height: 2;
}
@media (max-width: 992px) {
  footer .footer_div .contacts {
    margin-left: 30px;
  }
}
footer .footer_div .socials {
  display: flex;
  flex-direction: column;
  text-align: right;
  align-items: flex-end;
  flex: 1;
}
@media (max-width: 768px) {
  footer .footer_div .socials {
    display: none;
  }
}
footer .footer_div .socials_links {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
@media (max-width: 768px) {
  footer .footer_div .socials_links {
    margin-top: 20px;
  }
}
footer .footer_div .socials_links a {
  text-decoration: none;
  transition-duration: 0.4s;
}
footer .footer_div .socials_links .fa {
  font-size: 40px;
  color: white;
}
@media (max-width: 768px) {
  footer .footer_div .socials_links .fa {
    font-size: 35px;
  }
}
@media (max-width: 560px) {
  footer .footer_div .socials_links .fa {
    font-size: 25px;
  }
}
footer .footer_div .socials_links .fa-facebook:hover {
  color: #3B5998;
}
footer .footer_div .socials_links .fa-instagram:hover {
  color: #C82D94;
}

@media (max-width: 1300px) {
  iframe {
    height: 350px;
  }
}
@media (max-width: 768px) {
  iframe {
    height: 300px;
  }
}

.prices {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #FFF8EC;
  padding-top: 80px;
  justify-content: flex-start;
  align-items: center;
  min-height: 80vh;
}
@media (max-width: 768px) {
  .prices {
    padding-top: 65px;
  }
}
@media (max-width: 560px) {
  .prices {
    padding-top: 50px;
  }
}
.prices #sets-title {
  margin-top: 50px !important;
  margin-bottom: 5px;
}
.prices span {
  font-size: 18px;
  color: #FA5A76;
  margin-bottom: 10px;
  font-weight: 400;
  width: 80%;
  text-align: center;
}
@media (max-width: 992px) {
  .prices span {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .prices span {
    font-size: 14px;
  }
}
@media (max-width: 560px) {
  .prices span {
    font-size: 12px;
  }
}
.prices .pricing-container {
  display: flex;
  justify-content: space-between;
  margin: 40px 0;
  gap: 40px;
  padding: 0 40px;
}
@media (max-width: 992px) {
  .prices .pricing-container {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .prices .pricing-container {
    flex-direction: column;
  }
}
@media (max-width: 560px) {
  .prices .pricing-container {
    padding: 0 20px;
  }
}
.prices .pricing-container #smile {
  border-color: #dc2e4b;
}
.prices .pricing-container #smile .pricing-header {
  color: #dc2e4b;
}
.prices .pricing-container #lux {
  border-color: #83cdc7;
}
.prices .pricing-container #lux .pricing-header {
  color: #83cdc7;
}
.prices .pricing-container #premium {
  border-color: rgb(247, 165, 50);
}
.prices .pricing-container #premium .pricing-header {
  color: rgb(247, 165, 50);
}
.prices .pricing-container .pricing-block {
  display: flex;
  flex: 1;
  flex-direction: column;
  background: #ffffff;
  border-radius: 23px;
  padding: 60px 20px;
  max-width: 280px;
  text-align: left;
  color: #3e3e3e;
  box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.1);
  justify-content: start;
  align-items: center;
  border-width: 3px;
  border-style: solid;
}
@media (max-width: 992px) {
  .prices .pricing-container .pricing-block {
    padding: 40px 10px;
  }
}
@media (max-width: 768px) {
  .prices .pricing-container .pricing-block {
    max-width: 350px;
    padding: 40px 20px;
  }
}
@media (max-width: 560px) {
  .prices .pricing-container .pricing-block {
    max-width: 280px;
    padding: 35px 20px;
  }
}
.prices .pricing-container .pricing-block .pricing-header {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid rgb(199, 199, 199);
  width: 210px;
  padding-bottom: 20px;
}
@media (max-width: 992px) {
  .prices .pricing-container .pricing-block .pricing-header {
    width: 170px;
  }
}
@media (max-width: 768px) {
  .prices .pricing-container .pricing-block .pricing-header {
    width: 280px;
  }
}
@media (max-width: 560px) {
  .prices .pricing-container .pricing-block .pricing-header {
    width: 200px;
  }
}
.prices .pricing-container .pricing-block .pricing-header h2:not(h2.set-price) {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
@media (max-width: 992px) {
  .prices .pricing-container .pricing-block .pricing-header h2:not(h2.set-price) {
    font-size: 18px;
  }
}
.prices .pricing-container .pricing-block .pricing-header .set-price {
  font-size: 33px;
}
@media (max-width: 560px) {
  .prices .pricing-container .pricing-block .pricing-header .set-price {
    font-size: 28px;
  }
}
.prices .pricing-container .pricing-block .pricing-details {
  list-style-type: circle;
  font-size: 16px;
}
@media (max-width: 992px) {
  .prices .pricing-container .pricing-block .pricing-details {
    padding-left: 30px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .prices .pricing-container .pricing-block .pricing-details {
    padding-left: 40px;
  }
}
@media (max-width: 560px) {
  .prices .pricing-container .pricing-block .pricing-details {
    padding-left: 30px;
  }
}
.prices .pricing-container .pricing-block .pricing-details li {
  margin-bottom: 10px;
}
.prices .additions-div {
  display: flex;
  flex-direction: row;
  margin-top: 30px;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 992px) {
  .prices .additions-div {
    padding: 0 70px;
  }
}
@media (max-width: 768px) {
  .prices .additions-div {
    flex-direction: column;
  }
}
@media (max-width: 560px) {
  .prices .additions-div {
    margin-top: 10px;
    gap: 10px;
    padding: 0 30px;
  }
}
.prices .additions-div p {
  font-size: 26px;
  color: #FA5A76;
  font-weight: 500;
  text-align: end;
}
@media (max-width: 768px) {
  .prices .additions-div p {
    font-size: 22px;
    text-align: start;
  }
}
@media (max-width: 560px) {
  .prices .additions-div p {
    font-weight: 500;
    font-size: 18px;
  }
}
@media (max-width: 992px) {
  .prices .additions-div ul {
    padding-left: 30px;
  }
}
@media (max-width: 560px) {
  .prices .additions-div ul {
    padding-left: 20px;
  }
}
.prices .additions-div ul li {
  font-size: 18px;
  color: #FA5A76;
}
@media (max-width: 768px) {
  .prices .additions-div ul li {
    padding-left: 10px;
  }
}
@media (max-width: 560px) {
  .prices .additions-div ul li {
    font-size: 14px;
    padding-left: 5px;
    line-height: 2em;
  }
}
.prices h1 {
  color: #FA5A76;
  font-weight: 500;
  font-size: 36px;
  margin-top: 90px;
  text-align: center;
  padding: 0 10px;
}
@media (max-width: 992px) {
  .prices h1 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .prices h1 {
    font-size: 28px;
  }
}
@media (max-width: 560px) {
  .prices h1 {
    margin-top: 40px;
    font-size: 20px;
  }
}
.prices #addition {
  font-size: 24px;
  color: #FA5A76;
  margin-bottom: 100px;
  font-weight: 400;
  width: 80%;
  text-align: center;
}
@media (max-width: 992px) {
  .prices #addition {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .prices #addition {
    font-size: 18px;
  }
}
@media (max-width: 560px) {
  .prices #addition {
    margin-bottom: 50px;
    font-size: 14px;
    width: 85%;
  }
}
.prices table {
  width: 80%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 40px 100px 50px 100px;
  text-align: center;
  background-color: #ffffff;
  box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.2);
  border-radius: 23px;
  border: 3px solid #dc2e4b;
}
@media (max-width: 560px) {
  .prices table {
    width: 85%;
    border-radius: 13px;
    margin-bottom: 40px;
    margin-bottom: 30px;
  }
}
.prices table {
  /* Header top corners */
}
.prices table thead tr:first-child th:first-child {
  border-top-left-radius: 20px;
}
@media (max-width: 560px) {
  .prices table thead tr:first-child th:first-child {
    border-top-left-radius: 10px;
  }
}
.prices table thead tr:first-child th:last-child {
  border-top-right-radius: 20px;
}
@media (max-width: 560px) {
  .prices table thead tr:first-child th:last-child {
    border-top-right-radius: 10px;
  }
}
.prices table {
  /* Last row bottom corners */
}
.prices table tbody tr:last-of-type td:first-child {
  border-bottom-left-radius: 20px;
}
@media (max-width: 560px) {
  .prices table tbody tr:last-of-type td:first-child {
    border-bottom-left-radius: 10px;
  }
}
.prices table tbody tr:last-of-type td:last-child {
  border-bottom-right-radius: 20px;
}
@media (max-width: 560px) {
  .prices table tbody tr:last-of-type td:last-child {
    border-bottom-right-radius: 10px;
  }
}
.prices table th, .prices table td {
  font-size: 20px;
  border: 0.5px solid #dc2e4b;
  padding: 15px;
  color: #3e3e3e;
}
@media (max-width: 992px) {
  .prices table th, .prices table td {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .prices table th, .prices table td {
    font-size: 14px;
  }
}
@media (max-width: 560px) {
  .prices table th, .prices table td {
    padding: 10px;
    font-size: 12px;
  }
}
.prices table th {
  font-size: 26px;
  text-transform: uppercase;
  background-color: #FA5A76;
  color: #ffffff;
  font-weight: 500;
  padding: 18px;
  border-bottom: 2px solid #dc2e4b;
}
@media (max-width: 992px) {
  .prices table th {
    font-size: 20px;
  }
}
@media (max-width: 560px) {
  .prices table th {
    padding: 10px;
    font-size: 15px;
  }
}
.prices table td[colspan] {
  font-style: italic;
}
.prices table .days {
  font-weight: 500;
}
.prices table .nowrap {
  white-space: nowrap;
}
@media (max-width: 415px) {
  .prices table .nowrap {
    white-space: normal;
  }
}
.prices table .emoji {
  font-size: 34px;
  vertical-align: middle;
}
@media (max-width: 992px) {
  .prices table .emoji {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .prices table .emoji {
    font-size: 25px;
  }
}
@media (max-width: 560px) {
  .prices table .emoji {
    font-size: 18px;
  }
}

/*# sourceMappingURL=style.css.map */
