@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap");
/* Colors */
/* Width */
/* Functions */
#header {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  position: sticky;
  top: 0;
  z-index: 99;
}
#header .upper-bar {
  height: 40px;
  background-color: #335579;
  z-index: 99;
  position: relative;
}
#header .upper-bar a,
#header .upper-bar i,
#header .upper-bar span {
  color: #fff;
  font-size: 12px;
}
#header .upper-bar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
#header .upper-bar .wrap > div.phone {
  display: flex;
  align-items: center;
}
#header .upper-bar .wrap > div.phone > div:nth-child(2) {
  padding-left: 10px;
}
@media only screen and (max-width: 768px) {
  #header .upper-bar {
    height: 80px;
  }
  #header .upper-bar .wrap {
    flex-direction: column;
  }
}
#header .main-header {
  background-color: #fff;
}
#header .main-header .wrap {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  #header .main-header .wrap {
    height: 70px;
  }
}
#header .main-header .wrap a img {
  max-height: 80px;
  max-width: 275px;
  z-index: 99;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  #header .main-header .wrap a img {
    height: 80px;
  }
}
@media only screen and (max-width: 768px) {
  #header .main-header .wrap a img {
    height: 50px;
  }
}
#header .main-header .wrap .right-header-menu ul {
  display: flex;
  align-items: center;
}
#header .main-header .wrap .right-header-menu ul li {
  list-style-type: none;
  padding: 8px 12px;
  position: relative;
}
#header .main-header .wrap .right-header-menu ul li::before {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  background-color: #10242b;
  bottom: 0;
  left: 0;
  transition: all 0.3s ease;
}
#header .main-header .wrap .right-header-menu ul li a {
  color: #10242b;
}
#header .main-header .wrap .right-header-menu ul li.current-menu-item::before {
  transition: all 0.3s ease;
  content: "";
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: #10242b;
}
#header .main-header .wrap .right-header-menu ul li.current-menu-item a {
  font-weight: 600;
}
#header .main-header .wrap .right-header-menu ul li:hover::before {
  transition: all 0.3s ease;
  width: 100%;
}
#header .main-header .wrap .right-header-menu ul li:hover .sub-menu {
  opacity: 1;
  transition: all 0.2s ease;
  visibility: visible;
}
#header .main-header .wrap .right-header-menu ul li .sub-menu {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 250px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  text-align: center;
  border-radius: 3px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  z-index: 99;
}
@media only screen and (max-width: 768px) {
  #header .main-header .wrap .right-header-menu ul li .sub-menu {
    right: 50%;
    transform: translateY(100%) translateX(50%);
  }
}
#header .main-header .wrap .right-header-menu ul li .sub-menu li a {
  font-weight: 300;
}
#header .main-header .wrap .right-header-menu ul li .sub-menu.open {
  opacity: 1;
  transition: all 0.2s ease;
  visibility: visible;
}
@media only screen and (max-width: 768px) {
  #header .main-header .wrap .right-header-menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 9;
    transform: translateY(-100%);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #header .main-header .wrap .right-header-menu.open {
    transform: translate(0);
    transition: all 0.3s ease;
  }
  #header .main-header .wrap .right-header-menu ul {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  #header .main-header .wrap .right-header-menu ul li {
    padding: 12px;
  }
}
#header .main-header .wrap .burger {
  display: block;
  cursor: pointer;
  z-index: 99;
}
#header .main-header .wrap .burger > div {
  width: 25px;
  height: 3px;
  background-color: #000;
  border-radius: 2px;
  margin-bottom: 4px;
  transition: all 0.3s ease;
}
#header .main-header .wrap .burger > div:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 767px) {
  #header .main-header .wrap .burger {
    display: none;
  }
}
#header .main-header .wrap .burger.close > div {
  transition: all 0.3s ease;
}
#header .main-header .wrap .burger.close > div:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
#header .main-header .wrap .burger.close > div:nth-child(2) {
  display: none;
}
#header .main-header .wrap .burger.close > div:nth-child(3) {
  transform: rotate(-45deg) translate(-1px, 0px);
}

.large-slider {
  height: 900px;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .large-slider {
    height: 700px;
  }
}
@media only screen and (max-width: 768px) {
  .large-slider {
    height: 600px;
  }
}
@media only screen and (max-width: 450px) {
  .large-slider {
    height: 500px;
  }
}
.large-slider .swiper {
  height: 100%;
}
.large-slider .swiper .swiper-wrapper .swiper-slide {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.large-slider .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.large-slider .swiper .swiper-wrapper .swiper-slide .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.large-slider .swiper .swiper-wrapper .swiper-slide > div {
  z-index: 1;
  color: #fff;
  text-align: center;
  padding: 15px;
}
.large-slider .swiper .swiper-wrapper .swiper-slide > div h1 {
  font-size: 64px;
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 15px;
}
.large-slider .swiper .swiper-wrapper .swiper-slide > div p {
  font-size: 24px;
  font-weight: 400;
  padding-bottom: 15px;
}
@media only screen and (max-width: 1240px) {
  .large-slider .swiper .swiper-wrapper .swiper-slide > div h1 {
    font-size: 48px;
  }
  .large-slider .swiper .swiper-wrapper .swiper-slide > div p {
    font-size: 20px;
  }
}
@media only screen and (max-width: 540px) {
  .large-slider .swiper .swiper-wrapper .swiper-slide > div h1 {
    font-size: 40px;
  }
  .large-slider .swiper .swiper-wrapper .swiper-slide > div p {
    font-size: 18px;
  }
}

.cards-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cards-section .container .cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media only screen and (max-width: 1350px) {
  .cards-section .container .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 650px) {
  .cards-section .container .cards {
    grid-template-columns: 1fr;
  }
}
.cards-section .container .cards .card {
  display: flex;
  flex-direction: column;
}
.cards-section .container .cards .card .img-parent {
  width: 300px;
  height: 400px;
  position: relative;
}
@media only screen and (max-width: 1350px) {
  .cards-section .container .cards .card .img-parent {
    width: 400px;
    height: 500px;
  }
}
@media only screen and (max-width: 900px) {
  .cards-section .container .cards .card .img-parent {
    width: 300px;
    height: 400px;
  }
}
.cards-section .container .cards .card .img-parent img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.cards-section .container .cards .card .img-parent::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 5px solid rgba(255, 255, 255, 0.4941176471);
  width: 50%;
  height: 50%;
  transition: all 0.3s ease;
  opacity: 0;
  z-index: 1;
}
.cards-section .container .cards .card .img-parent:hover::before {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  opacity: 1;
}
.cards-section .container .cards .card a {
  height: 75px;
  width: 100%;
  background-color: #335579;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cards-section .container .cards .card a span {
  color: #fff;
  font-size: 18px;
}
@media only screen and (max-width: 1350px) {
  .cards-section .container .cards .card a span {
    font-size: 16px;
  }
}

.parallax {
  padding: 50px 0;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.parallax .container {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.parallax .container h2 {
  text-align: center;
  color: #fff;
  padding-bottom: 15px;
  z-index: 1;
}
.parallax .container div {
  color: #fff;
  padding-bottom: 15px;
  text-align: center;
  z-index: 1;
}
.parallax .container .btn {
  z-index: 1;
}

.left-right-content .container .line {
  background-color: #ebebeb;
  width: 100%;
  height: 1px;
  margin: 10px 0 40px;
}
.left-right-content .container .image-text {
  display: flex;
  gap: 2rem;
}
.left-right-content .container .image-text div {
  width: 50%;
}
.left-right-content .container .image-text div img {
  max-width: 100%;
  border-radius: 8px;
}
.left-right-content .container .image-text.image-right {
  flex-direction: row-reverse;
}
.left-right-content .container .image-text.image-right div {
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .left-right-content .container .image-text {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .left-right-content .container .image-text div {
    width: 100%;
  }
  .left-right-content .container .image-text.image-right {
    flex-direction: row-reverse;
  }
}

.price-list-section .therapy-section {
  max-width: 1200px;
  margin: 0 auto;
}
.price-list-section .therapy-section .therapy-name {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  border: 1px solid #335579;
  border-bottom: none;
  background-color: #335579;
}
.price-list-section .therapy-section .therapy-name a {
  text-align: center;
  font-weight: 600;
  color: #fff;
}
.price-list-section .therapy-section .therapy-prices .therapy-price,
.price-list-section .therapy-section .therapy-prices .therapy-package {
  position: relative;
  display: grid;
  grid-template-columns: 75% 10% 15%;
  min-height: 50px;
  border: 1px solid #ccc;
  border-bottom: none;
}
.price-list-section .therapy-section .therapy-prices .therapy-price .name,
.price-list-section .therapy-section .therapy-prices .therapy-price .time,
.price-list-section .therapy-section .therapy-prices .therapy-package .name,
.price-list-section .therapy-section .therapy-prices .therapy-package .time {
  display: flex;
  align-items: center;
  border-right: 1px solid #ccc;
  padding: 0 10px;
}
.price-list-section .therapy-section .therapy-prices .therapy-price .name,
.price-list-section .therapy-section .therapy-prices .therapy-package .name {
  justify-content: space-between;
}
.price-list-section .therapy-section .therapy-prices .therapy-price .name strong,
.price-list-section .therapy-section .therapy-prices .therapy-package .name strong {
  cursor: pointer;
  padding-left: 10px;
  text-align: end;
}
.price-list-section .therapy-section .therapy-prices .therapy-price .price,
.price-list-section .therapy-section .therapy-prices .therapy-package .price {
  display: flex;
  align-items: center;
  padding: 0 10px;
  justify-content: space-between;
  position: relative;
}
.price-list-section .therapy-section .therapy-prices .therapy-price .price .more-info,
.price-list-section .therapy-section .therapy-prices .therapy-package .price .more-info {
  color: #335579;
  font-weight: 500;
  cursor: pointer;
}
.price-list-section .therapy-section .therapy-prices .therapy-price .price .more-info:hover + .info,
.price-list-section .therapy-section .therapy-prices .therapy-package .price .more-info:hover + .info {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition: all 0.2s ease;
}
.price-list-section .therapy-section .therapy-prices .therapy-price .price .info,
.price-list-section .therapy-section .therapy-prices .therapy-package .price .info {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 300px;
  background-color: #fff;
  border-radius: 5px;
  padding: 10px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transform: translateY(100%);
  z-index: 9;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: all 0.2s ease;
}
.price-list-section .therapy-section .therapy-prices .therapy-price .price .info span,
.price-list-section .therapy-section .therapy-prices .therapy-package .price .info span {
  font-size: 12px;
}
@media only screen and (max-width: 768px) {
  .price-list-section .therapy-section .therapy-prices .therapy-price .name,
  .price-list-section .therapy-section .therapy-prices .therapy-price .time,
  .price-list-section .therapy-section .therapy-prices .therapy-price .price,
  .price-list-section .therapy-section .therapy-prices .therapy-package .name,
  .price-list-section .therapy-section .therapy-prices .therapy-package .time,
  .price-list-section .therapy-section .therapy-prices .therapy-package .price {
    padding: 3px;
  }
  .price-list-section .therapy-section .therapy-prices .therapy-price .name span,
  .price-list-section .therapy-section .therapy-prices .therapy-price .name strong,
  .price-list-section .therapy-section .therapy-prices .therapy-price .time span,
  .price-list-section .therapy-section .therapy-prices .therapy-price .time strong,
  .price-list-section .therapy-section .therapy-prices .therapy-price .price span,
  .price-list-section .therapy-section .therapy-prices .therapy-price .price strong,
  .price-list-section .therapy-section .therapy-prices .therapy-package .name span,
  .price-list-section .therapy-section .therapy-prices .therapy-package .name strong,
  .price-list-section .therapy-section .therapy-prices .therapy-package .time span,
  .price-list-section .therapy-section .therapy-prices .therapy-package .time strong,
  .price-list-section .therapy-section .therapy-prices .therapy-package .price span,
  .price-list-section .therapy-section .therapy-prices .therapy-package .price strong {
    font-size: 14px;
  }
  .price-list-section .therapy-section .therapy-prices .therapy-price .time,
  .price-list-section .therapy-section .therapy-prices .therapy-package .time {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media only screen and (max-width: 540px) {
  .price-list-section .therapy-section .therapy-prices .therapy-price .name span,
  .price-list-section .therapy-section .therapy-prices .therapy-price .name strong,
  .price-list-section .therapy-section .therapy-prices .therapy-price .time span,
  .price-list-section .therapy-section .therapy-prices .therapy-price .time strong,
  .price-list-section .therapy-section .therapy-prices .therapy-price .price span,
  .price-list-section .therapy-section .therapy-prices .therapy-price .price strong,
  .price-list-section .therapy-section .therapy-prices .therapy-package .name span,
  .price-list-section .therapy-section .therapy-prices .therapy-package .name strong,
  .price-list-section .therapy-section .therapy-prices .therapy-package .time span,
  .price-list-section .therapy-section .therapy-prices .therapy-package .time strong,
  .price-list-section .therapy-section .therapy-prices .therapy-package .price span,
  .price-list-section .therapy-section .therapy-prices .therapy-package .price strong {
    font-size: 12px;
  }
}
.price-list-section .therapy-section .therapy-prices .therapy-package .name span {
  font-weight: 500;
}
.price-list-section .therapy-section:last-child {
  border-bottom: 1px solid #ccc;
}

.title-div {
  margin: 50px 0;
}
.title-div h1 {
  font-size: 36px;
  color: #10242b;
  text-align: center;
  margin-bottom: 2rem;
}
.title-div .line {
  background-color: #ebebeb;
  width: 100%;
  height: 1px;
  margin: 10px 0 40px;
}

.wp-block-gallery {
  margin: 50px 0;
}
.wp-block-gallery img {
  cursor: pointer;
  border-radius: 8px;
}

.small-cards .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.small-cards .cards .card {
  position: relative;
  margin-bottom: 30px;
  width: 250px;
}
.small-cards .cards .card .image {
  height: 250px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.small-cards .cards .card .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  transition: all 0.3s ease;
}
.small-cards .cards .card .image::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  transition: all 0.3s ease;
  border: 3px solid rgba(204, 204, 204, 0.3568627451);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
}
.small-cards .cards .card .image:hover img {
  transition: all 0.3s ease;
  transform: scale(1.1);
}
.small-cards .cards .card .image:hover::before {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  opacity: 1;
  visibility: visible;
}
.small-cards .cards .card .name {
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #335579;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.small-cards .cards .card .name span {
  color: #fff;
  text-align: center;
}

.footer-contact {
  margin-top: 150px;
}
.footer-contact .container .contact-info {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 2rem;
}
@media only screen and (max-width: 768px) {
  .footer-contact .container .contact-info {
    grid-template-columns: 1fr;
  }
}
.footer-contact .container .contact-info .left h4,
.footer-contact .container .contact-info .right h4 {
  font-size: 24px;
  font-size: #10242b;
  margin-bottom: 1rem;
  font-weight: 400;
}
.footer-contact .container .contact-info .left iframe {
  width: 100%;
}
.footer-contact .container .contact-info .right > div {
  margin-bottom: 1rem;
}
.footer-contact .container .contact-info .right > div i {
  font-size: 20px;
  margin-right: 0.5rem;
}
.footer-contact .container .contact-info .right > div a {
  color: #000;
  text-decoration: none;
}

#footer {
  background-color: #335579;
  height: 130px;
  padding: 10px 0;
}
@media only screen and (max-width: 768px) {
  #footer {
    height: auto;
  }
}
#footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  #footer .wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media only screen and (max-width: 414px) {
  #footer .wrap {
    flex-direction: column;
  }
}
#footer .wrap img {
  max-width: 275px;
  max-height: 80px;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (max-width: 1240px) {
  #footer .wrap img {
    height: 70px;
  }
}
#footer .wrap .center {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 414px) {
  #footer .wrap .center {
    padding: 10px 0;
  }
}
#footer .wrap .center > a i {
  font-size: 30px;
  color: #fff;
}
#footer .wrap .center > a:nth-child(2) {
  padding-left: 15px;
}
#footer .wrap .right span,
#footer .wrap .right a {
  color: #fff;
}

#popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  transform: translateY(0);
  transition: all 0.3s ease;
  z-index: 999;
}
#popup.hide {
  transform: translateY(110%);
  transition: all 0.3s ease;
}
#popup .close-popup {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 5;
}
#popup .close-popup::before, #popup .close-popup::after {
  position: absolute;
  content: "";
  height: 33px;
  width: 2px;
  background-color: #fff;
}
#popup .close-popup::before {
  transform: rotate(45deg);
}
#popup .close-popup::after {
  transform: rotate(-45deg);
}
#popup .gallery_box {
  width: 80%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#popup .gallery_box .swiper-container .swiper-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
}
#popup .gallery_box .swiper-container .swiper-wrapper .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
}

.wp-block-contact-form-7-contact-form-selector {
  margin: 50px 0;
}
.wp-block-contact-form-7-contact-form-selector .container input,
.wp-block-contact-form-7-contact-form-selector .container textarea {
  max-width: 600px;
  width: 100%;
  border: 2px solid #335579;
  border-radius: 5px;
  padding: 10px;
  outline: none;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}
.wp-block-contact-form-7-contact-form-selector .container input:focus,
.wp-block-contact-form-7-contact-form-selector .container textarea:focus {
  border-color: #e74c3c;
  box-shadow: 0 0 5px rgba(60, 111, 231, 0.7);
}
.wp-block-contact-form-7-contact-form-selector .container .wpcf7-submit {
  display: inline-block;
  padding: 12px 30px;
  color: #fff;
  background-color: #335579;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  font-weight: 300;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 1340px) {
  .container {
    padding: 0 40px;
  }
}
@media only screen and (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

section {
  margin: 100px 0;
}
section h2 {
  font-size: 24px;
  color: #10242b;
  text-align: center;
  margin-bottom: 2rem;
}

.wrap {
  padding: 0 40px;
}
@media only screen and (max-width: 786px) {
  .wrap {
    padding: 0 20px;
  }
}

/* Btns */
.btn {
  display: inline-block;
  padding: 12px 30px;
  color: #fff;
  background-color: #335579;
  border-radius: 8px;
}

/* Swiper */
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  border: 2px solid #fff !important;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 14px;
  height: 14px;
  background-color: #fff !important;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

ul {
  margin-left: 40px;
  margin-top: 10px;
}

p {
  line-height: 26px;
}

.wp-block-spacer {
  height: 25px !important;
}

.hide {
  display: none !important;
}/*# sourceMappingURL=styles.css.map */