@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
.container {
  width: min(100% - 32px, 1300px);
  margin-inline: auto;
}

.site-main {
  overflow: hidden;
  flex: 1 0 auto;
}
.site-main article.hentry,
.site-main .error-404 {
  padding: 160px 0 80px;
}
@media (max-width: 576px) {
  .site-main article.hentry,
  .site-main .error-404 {
    padding: 100px 0 30px;
  }
}
.site-main .error-404 {
  text-align: center;
}

.site-footer {
  background-color: #3c3c3b;
  color: #ffffff;
  padding: 32px 0;
}
.site-footer .footer__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.site-footer .footer__inner img {
  margin: 0;
  max-height: 50px;
}
.site-footer .footer__inner p {
  margin: 0;
}
@media (max-width: 768px) {
  .site-footer .footer__inner {
    flex-direction: row;
  }
}

.site-header {
  /* position: sticky;
  top: 0; */
  flex: 0 0 auto;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  padding: 16px 0;
  border-bottom: 1px solid #ffffff;
  backdrop-filter: blur(14px);
  background-color: rgba(255, 255, 255, 0.7098039216);
  z-index: 10;
}
.site-header .header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.site-header .logo {
  flex-shrink: 0;
}
.site-header .logo img {
  width: 100%;
  height: 100%;
  max-height: 50px;
}
.site-header .menu {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .menu a {
  color: #000000;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background-color 0.2s;
}
.site-header .menu a:hover, .site-header .menu a:focus {
  background-color: #e52d61;
  color: #fff;
  text-decoration: none;
}
.site-header .menu a.active {
  background-color: #e52d61;
  color: #fff;
}
.site-header .menu .current-menu-item a {
  background-color: #e52d61;
  color: #fff;
}
.site-header .locales__wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0;
  flex-shrink: 0;
}
.site-header .locales__wrapper img {
  width: 25px;
  height: 25px;
}
.site-header .btn--whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  flex-shrink: 0;
}
.site-header .btn--whatsapp:hover {
  text-decoration: underline;
}
.site-header .btn--whatsapp .icon {
  display: inline-block;
  width: 25px;
  height: 25px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.site-header .burger {
  border: none;
  display: none;
}
.site-header .btn {
  display: none;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .site-header::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #ffffff;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: -1;
  }
  .site-header:hover::before {
    opacity: 1;
  }
  .site-header .locales__wrapper {
    font-size: initial;
  }
  .site-header .btn--whatsapp {
    color: #000000;
  }
  .site-header .btn {
    display: block;
  }
  .site-header .mobile-menu {
    display: none !important;
  }
}
@media (max-width: 992px) {
  .site-header {
    background-color: #12171f;
  }
  .site-header .logo,
  .site-header .btn--whatsapp {
    flex-grow: 1;
  }
  .site-header .logo img {
    display: none;
  }
  .site-header .logo img.hide {
    display: block;
    width: auto;
    max-height: 40px;
  }
  .site-header .main-nav {
    display: none;
  }
  .site-header .locales__wrapper {
    order: 1;
  }
  .site-header .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 11;
    order: 2;
  }
  .site-header .burger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #e52d61;
    border-radius: 2px;
    transition: all 0.3s;
  }
  .site-header .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .site-header .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .site-header .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .site-header .mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .site-header .mobile-menu .menu {
    list-style: none;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .site-header .mobile-menu .menu a {
    font-size: 20px;
  }
  .site-header .mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  padding: 12px 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transform: skew(9deg);
  box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.2);
}
.btn span {
  display: inline-block;
  transform: skew(-18deg);
}
.btn.btn-primary {
  background: linear-gradient(45deg, #000, #000);
  color: #fff;
}
.btn.btn-primary:hover, .btn.btn-primary:focus {
  background: linear-gradient(45deg, #e52d61, #b2297e);
}
.btn.btn-secondary {
  background: linear-gradient(45deg, #e52d61, #b2297e);
  color: #fff;
}
.btn.btn-secondary:hover, .btn.btn-secondary:focus {
  background: linear-gradient(45deg, #000, #000);
}
.btn.btn-border {
  background: transparent;
  border: 1px solid #e52d61;
  color: #000000;
}
.btn.btn-border:hover, .btn.btn-border:focus {
  background: linear-gradient(45deg, #e52d61, #b2297e);
  color: #fff;
}

.read-more {
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s ease-in-out;
}
.read-more:hover {
  color: #e52d61;
}

.wrap-btn {
  width: 100%;
  text-align: center;
}

.swiper-button-next,
.swiper-button-prev {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next {
  right: 0;
}

.testimonials-swiper {
  position: relative;
  width: 85%;
  margin-top: 32px;
}
@media (max-width: 992px) {
  .testimonials-swiper {
    width: 100%;
  }
}
.testimonials-swiper .testimonial {
  padding: 0 96px;
}
@media (max-width: 992px) {
  .testimonials-swiper .testimonial {
    padding: 0 40px;
  }
}
.testimonials-swiper .testimonial img {
  width: 100%;
  height: auto;
  margin: 0 auto 16px;
  -o-object-fit: cover;
     object-fit: cover;
}

.portfolio__filters {
  position: relative;
  width: 100%;
  width: -webkit-fill-available;
  margin: 0 24px;
}
.portfolio__filters .portfolio-filters-prev,
.portfolio__filters .portfolio-filters-next {
  position: absolute;
  top: 24px;
  z-index: 9;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .portfolio__filters .portfolio-filters-prev,
  .portfolio__filters .portfolio-filters-next {
    top: 32px;
  }
}
.portfolio__filters .portfolio-filters-prev {
  left: -24px;
}
.portfolio__filters .portfolio-filters-prev svg path {
  stroke: #e52d61;
}
.portfolio__filters .portfolio-filters-next {
  right: -24px;
}
.portfolio__filters .portfolio-filters-next svg path {
  stroke: #e52d61;
}
.portfolio__filters .portfolio-filters .swiper-slide {
  text-align: center;
  padding: 0 5px;
}

.portfolio__wrapper {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  gap: 0 16px;
  margin: 0;
  z-index: 1;
}
@media (max-width: 576px) {
  .portfolio__wrapper {
    grid-template-columns: 1fr;
    gap: 16px 0;
  }
}

.portfolio__dropdown {
  position: relative;
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.portfolio__dropdown-selected {
  background: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}
.portfolio__dropdown-selected::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #e52d61;
  transition: transform 0.3s;
}
.portfolio__dropdown.open .portfolio__dropdown-selected::after {
  transform: rotate(180deg);
}
.portfolio__dropdown-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #dedede;
  border-radius: 10px;
  margin-top: 1px;
  z-index: 10;
}
.portfolio__dropdown-list li {
  font-size: 16px;
  line-height: 18px;
  padding: 10px 14px;
  cursor: pointer;
}
.portfolio__dropdown-list li:hover {
  background: #f5f5f5;
}
.portfolio__dropdown-list li.active {
  background: #eee;
  font-weight: 600;
}
.portfolio__dropdown.open .portfolio__dropdown-list {
  display: block;
}

.portfolio__filters {
  grid-column: span 2;
}
.portfolio__filters .portfolio-filters .portfolio__filter {
  border: none;
  background: none;
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}
.portfolio__filters .portfolio-filters .portfolio__filter.active {
  color: #e52d61;
  font-weight: 600;
}
@media (min-width: 992px) {
  .portfolio__filters .portfolio-filters {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  .portfolio__filters .portfolio-filters .portfolio__filter {
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
    padding: 11px 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    transform: skew(9deg);
    box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.2);
    border: 1px solid #e52d61;
    width: 100%;
  }
  .portfolio__filters .portfolio-filters .portfolio__filter span {
    display: inline-block;
    transform: skew(-18deg);
  }
  .portfolio__filters .portfolio-filters .portfolio__filter.active {
    background: #e52d61;
    color: #fff;
    border-color: #e52d61;
  }
}

.portfolio__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 992px) {
  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .portfolio__grid {
    grid-template-columns: 1fr;
  }
}
.portfolio__grid .portfolio__item {
  display: none;
  text-align: center;
}
.portfolio__grid .portfolio__item .portfolio__img {
  max-height: 300px;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 16px;
  cursor: pointer;
}
.portfolio__grid .portfolio__item .portfolio__img img {
  width: 100%;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.portfolio__grid .portfolio__item:hover .portfolio__img img {
  filter: grayscale(0%);
}

.portfolio__more {
  width: 100%;
  text-align: center;
}

/* ===== Modal ===== */
.portfolio-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  overflow-y: auto;
}
.portfolio-modal.active {
  display: flex;
}
.portfolio-modal__inner {
  margin: auto;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 576px) {
  .portfolio-modal__inner {
    max-width: 80%;
  }
}
.portfolio-modal__img {
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.portfolio-modal__caption {
  color: #fff;
  margin-top: 16px;
  font-size: 18px;
  text-align: center;
}
.portfolio-modal__close {
  position: fixed;
  top: 0;
  right: 40px;
  font-size: 60px;
  color: #fff;
  cursor: pointer;
}
@media (max-width: 576px) {
  .portfolio-modal__close {
    top: 0;
    right: 10px;
    font-size: 40px;
  }
}

.hero {
  padding: 160px 0 80px;
  background-color: #ffffff;
}
@media (max-width: 576px) {
  .hero {
    padding: 100px 0 30px;
  }
}
.hero .hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
@media (max-width: 768px) {
  .hero .hero__inner {
    flex-direction: column-reverse;
    text-align: center;
  }
  .hero .hero__inner .hide {
    display: block;
    width: 80%;
    margin: 32px auto;
  }
}
.hero .hero__text {
  flex: 0 0 50%;
}
.hero .hero__text h1 {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.hero .hero__text h1 span {
  color: #e52d61;
}
.hero .hero__text p {
  font-size: 18px;
  margin-bottom: 16px;
}
@media (max-width: 576px) {
  .hero .hero__text p {
    font-size: 16px;
  }
}
.hero .hero__image {
  max-width: 50%;
}
.hero .hero__image img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .hero .hero__image {
    max-width: 100%;
    margin-bottom: 16px;
    display: none;
  }
}

.section {
  padding: 80px 0;
}
@media (max-width: 576px) {
  .section {
    padding: 30px 0;
  }
}
.section--light {
  background: linear-gradient(45deg, #f1f4fd 0%, #ecd3db 50%, #f1f4fd 100%);
}
.section--accent {
  background: linear-gradient(45deg, #b2297e 0%, #e52d61 50%, #b2297e 100%);
  color: #fff;
}
.section .section__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
@media (max-width: 576px) {
  .section .section__inner {
    gap: 16px;
  }
}
.section .section__title,
.section .section__description {
  width: 100%;
  text-align: center;
  margin: 0;
}
.section .section__item {
  flex: 1 1 calc(33.333% - 32px);
  background: #ffffff;
  padding: 32px;
  text-align: center;
}
.section .section__item img {
  max-width: 80px;
  margin-top: 4px;
  margin-bottom: 16px;
}
.section .section__item--service {
  background: transparent;
  display: flex;
  gap: 16px;
  text-align: left;
}
.section .section__item--service img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
@media (max-width: 992px) {
  .section .section__item {
    flex: 1 1 calc(50% - 16px);
  }
}
@media (max-width: 576px) {
  .section .section__item {
    flex: 1 1 100%;
    padding: 8px;
  }
  .section .section__item img {
    margin-top: 0;
  }
}
.section .section__grid {
  display: grid;
  gap: 48px;
}
.section .section__grid--about {
  gap: 48px 160px;
}
@media (max-width: 992px) {
  .section .section__grid--about {
    gap: 40px;
  }
}
@media (max-width: 576px) {
  .section .section__grid--about {
    text-align: center;
  }
}
.section .section__grid--2 {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 992px) {
  .section .section__grid--2 {
    grid-template-columns: 1fr;
  }
}
.section .section__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section .section__features .section__feature {
  display: flex;
  gap: 32px;
  align-items: center;
}
@media (max-width: 576px) {
  .section .section__features .section__feature {
    flex-direction: column;
    gap: 16px;
  }
}
.section .section__features .section__feature .section__header {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  min-width: 140px;
}
.section .section__features .section__feature .section__header .section__icon {
  width: 60px;
  height: auto;
}
@media (max-width: 576px) {
  .section .section__features .section__feature .section__header {
    flex-direction: column;
  }
}
.section .section__features .section__feature .section__description {
  text-align: left;
}
@media (max-width: 576px) {
  .section .section__features .section__feature .section__description {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .section .section__features {
    gap: 32px;
  }
}
.section .testimonial__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px 96px;
}
.section .testimonial__item .testimonial__item--image {
  width: 100%;
  max-width: 440px;
}
.section .testimonial__item .testimonial__item--wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px 96px;
}
@media (max-width: 768px) {
  .section .testimonial__item .testimonial__item--wrap {
    flex-direction: column;
  }
}
.section .testimonial__item .testimonial__item--subtitle {
  text-align: right;
  flex-shrink: 0;
}
.section .testimonial__item .testimonial__item--subtitle p {
  font-size: 30px;
  line-height: 32px;
  text-align: -webkit-right;
}
@media (max-width: 768px) {
  .section .testimonial__item .testimonial__item--subtitle {
    text-align: center;
  }
  .section .testimonial__item .testimonial__item--subtitle p {
    font-size: 26px;
    line-height: 28px;
    text-align: -webkit-center;
  }
}
.section .testimonial__item .testimonial__item--text {
  position: relative;
  max-width: 440px;
}
.section .testimonial__item .testimonial__item--text::after {
  content: "";
  position: absolute;
  top: 0;
  left: -48px;
  width: 1px;
  height: 100%;
  background-color: #e52d61;
}
.section .testimonial__item .testimonial__item--text p strong {
  color: #e52d61;
}
@media (max-width: 768px) {
  .section .testimonial__item .testimonial__item--text {
    text-align: center;
  }
  .section .testimonial__item .testimonial__item--text::after {
    content: "";
    position: absolute;
    top: -16px;
    left: 50%;
    width: 80%;
    height: 1px;
    background-color: #e52d61;
    transform: translateX(-50%);
  }
}
.section .section__photos {
  grid-column: 1/-1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 32px;
}
.section .section__photos .section__photo {
  display: flex;
  align-items: center;
}
.section .section__photos .section__photo img {
  z-index: 1;
}
.section .section__photos .section__photo .line {
  z-index: 0;
}
.section .section__photos .section__photo .section__description {
  text-align: left;
}
.section .section__photos .section__photo:first-child {
  flex-direction: row-reverse;
}
.section .section__photos .section__photo:first-child .section__text,
.section .section__photos .section__photo:first-child .section__description {
  text-align: right;
}
.section .section__photos .section__photo:last-child .line {
  transform: rotate(180deg);
}
.section .section__photos .section__photo .section__text {
  padding: 16px;
}
@media (max-width: 992px) {
  .section .section__photos .section__photo {
    flex-direction: column;
  }
  .section .section__photos .section__photo:first-child {
    flex-direction: column;
  }
  .section .section__photos .section__photo:first-child .section__text,
  .section .section__photos .section__photo:first-child .section__description {
    text-align: center;
  }
  .section .section__photos .section__photo .section__text {
    margin-top: 30px;
  }
  .section .section__photos .section__photo .section__text,
  .section .section__photos .section__photo .section__description {
    text-align: center;
  }
  .section .section__photos .section__photo .line {
    transform: rotate(-90deg);
    z-index: 0;
  }
  .section .section__photos .section__photo:last-child .line {
    transform: rotate(-90deg);
  }
}
@media (max-width: 992px) {
  .section .section__photos {
    align-items: center;
    flex-direction: column;
  }
}
.section .section__contact {
  display: flex;
  row-gap: 16px;
}
@media (max-width: 768px) {
  .section .section__contact {
    flex-direction: column;
    align-items: center;
  }
}
.section .section__contact .section__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 0 0 45%;
  gap: 16px;
}
@media (max-width: 576px) {
  .section .section__contact .section__header img {
    display: none;
  }
}
.section .section__contact .section__header .section__title {
  font-size: 55px;
  color: #e52d61;
}
@media (max-width: 576px) {
  .section .section__contact .section__header .section__title {
    font-size: 32px;
  }
}
.section .section__contact .section__body {
  flex: 0 0 55%;
}
.section .section__contact .section__body .accent {
  color: #e52d61;
  font-weight: 700;
  margin-top: 32px;
}
@media (min-width: 576px) {
  .section .section__contact .section__body .accent br {
    display: none;
  }
}
@media (max-width: 768px) {
  .section .section__contact .section__body {
    flex: 0 0 100%;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .section .section__contact .section__body .btn {
    display: none;
  }
}
.section .section__contact .section__info {
  margin-bottom: 16px;
}
.section .section__contact .section__info p {
  margin-bottom: 8px;
}
.section .section__contact .section__link {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #000000;
  transition: color 0.2s ease;
}
.section .section__contact .section__link img {
  width: 30px;
  height: 30px;
}
.section .section__contact .section__link:hover {
  color: #e52d61;
}
@media (max-width: 768px) {
  .section .section__contact .section__link {
    flex-direction: column;
  }
}
.section .section__contact .section__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 768px) {
  .section .section__contact .section__links {
    justify-content: center;
  }
}
.section .section__contact .section__links .section__link {
  position: relative;
  text-decoration: underline;
}
.section .section__contact .section__links .section__link:hover {
  text-decoration: none;
}
.section .section__contact .section__links .section__link::after {
  position: absolute;
  top: 0;
  right: -20px;
  content: "";
  height: 100%;
  width: 3px;
  background-color: #e52d61;
}
.section .section__contact .section__links .section__link:last-child::after {
  display: none;
}

:root {
  color-scheme: light;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
  background-color: #ffffff;
}

footer,
header,
nav,
section,
main {
  display: block;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 16px;
  font-weight: 600;
  line-height: 1.2;
}

a:not(.btn) {
  color: #e52d61;
  text-decoration: none;
}
a:not(.btn):hover {
  text-decoration: underline;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

p {
  margin: 0 0 16px 0;
  font-size: 16px;
}
p:last-child {
  margin: 0;
}

strong {
  font-weight: 700;
}

.hide {
  display: none;
}

@media (max-width: 992px) {
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 22px;
  }
}
@media (max-width: 576px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-weight: 700;
  }
  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 20px;
  }
  h3 {
    font-size: 18px;
  }
  p {
    font-size: 14px;
  }
}
/*# sourceMappingURL=main.css.map */
