/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "JUST Sans", sans-serif;
  background-color: #000;
  color: #fff;
}

section {
  padding: 60px 0;
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  padding: 0;
  background-color: rgba(0, 0, 0, 1);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease-in-out;
}

header .top-bar {
  width: var(--progress);
  height: 5px;
  background-color: #e70e58;
  transition: width 0.2s ease-out;
}

header .navbar {
  padding-top: 0;
  --bs-navbar-toggler-border-color: #fff;
  --bs-navbar-color: #fff;
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M2.5 12a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

header .navbar .offcanvas {
  --bs-offcanvas-bg: #000;
  height: 100vh;
}

header .navbar .offcanvas .btn-close {
  color: #fff;
  opacity: 1;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fff' class='bi bi-x-lg' viewBox='0 0 16 16'%3E%3Cpath d='M2.146 2.854a.5.5 0 1 1 .708-.708L8 7.293l5.146-5.147a.5.5 0 0 1 .708.708L8.707 8l5.147 5.146a.5.5 0 0 1-.708.708L8 8.707l-5.146 5.147a.5.5 0 0 1-.708-.708L7.293 8 2.146 2.854Z'/%3E%3C/svg%3E")
    center/1em no-repeat;
}

header .navbar .offcanvas .btn-close:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.5);
}

.header-scrolled {
  -moz-backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.75);
}

.navbar .navbar-brand img {
  max-height: 80px;
}

@media (min-width: 992px) {
  header .navbar .navlink-wrapper.active {
    padding: 0 0.5rem;
    border-bottom: 2px solid #e70e58;
  }
}

/*--------------------------------------------------------------
# Banner
--------------------------------------------------------------*/
#banner {
  margin-top: 97px;
  padding-top: 0;
  padding-bottom: 0;
  background-image: url(../img/banner.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#banner .container {
  position: relative;
  padding-top: 60px;
  padding-bottom: 80px;
}

#banner .banner-btns {
  max-width: 550px;
}

#banner .banner-socials {
  width: fit-content;
}

#banner .strip {
  background-color: #ffffff;
  height: 13px;
  width: 100%;
  border-top-left-radius: 13px;
  border-top-right-radius: 13px;
}

@media (min-width: 992px) {
  #banner .container {
    padding-top: 60px;
  }

  #banner .container {
    padding-top: 120px;
    padding-bottom: 160px;
  }
}

@media (min-width: 576px) {
  #banner {
    background-size: contain;
  }
}

/*--------------------------------------------------------------
# Solutions
--------------------------------------------------------------*/
#solutions {
  background-color: #e70e58;
}

#solutions .solutions-icon {
  position: relative;
  left: -33px;
}

#solutions .solutions-icon2 {
  position: relative;
  left: -23px;
}

#solutions .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  user-select: none;
  position: relative;
  overflow: visible;
  margin-bottom: 30px;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

#solutions .strip {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  height: 8px;
  width: 50%;
  border-bottom-left-radius: 13px;
  border-bottom-right-radius: 13px;
  transition: background-color 0.15s ease-in-out;
}

#solutions .swiper-slide svg {
  transition: color 0.15s ease-in-out;
  margin-left: auto;
  margin-right: auto;
}

#solutions .swiper-slide p {
  font-weight: lighter;
  font-size: 95%;
  hyphens: auto;
  padding-bottom: 1.5rem;
}

#solutions .slide-btn {
  position: absolute;
  white-space: nowrap;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}

#solutions .slide-btn a {
  --bs-btn-color: #fff;
  --bs-btn-bg: #e70e58;
  --bs-btn-border-color: #ffffff;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #e70e58;
  --bs-btn-hover-border-color: #ffffff;
  --bs-btn-focus-shadow-rgb: 255, 255, 255;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #e70e58;
  --bs-btn-active-border-color: #ffffff;
  --bs-btn-active-shadow: 0;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #e70e58;
  --bs-btn-disabled-border-color: #ffffff;
}

#solutions .swiper-slide:hover {
  background-color: #000000;
  border-color: rgba(0, 0, 0) !important;
}

#solutions .swiper-slide:hover .strip {
  background-color: #e70e58;
}

#solutions .swiper-slide:hover svg {
  color: #e70e58;
}

#solutions .swiper-slide:hover a {
  --bs-btn-color: #fff;
  --bs-btn-bg: #00b300;
  --bs-btn-border-color: #00b300;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #009400;
  --bs-btn-hover-border-color: #009400;
  --bs-btn-focus-shadow-rgb: 0, 179, 0;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #009400;
  --bs-btn-active-border-color: #009400;
  --bs-btn-active-shadow: 0;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #009400;
  --bs-btn-disabled-border-color: #009400;
}

#solutions .solutions-pagination {
  margin-top: 50px;
  position: relative;
}

#solutions .solutions-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #ffffff;
  opacity: 1;
  border: 1px solid #ffffff;
}

#solutions .solutions-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
}

#solutions .services-item {
  box-sizing: content-box;
  min-height: 320px;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
#about {
  background-color: #000000;
}

.about-border {
  border-left: 4px solid #e70e58;
}

#about .vertical-divider {
  position: relative;
}

#about .vertical-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  border-radius: 10px;
  border-top: 4px solid #e70e58;
}

@media (min-width: 1200px) {
  #about .vertical-divider::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: auto;
    left: 50%;
    border-radius: 10px;
    border-left: 4px solid #e70e58;
    border-top: 0;
  }
}

@media (min-width: 992px) {
  #about {
    padding: 120px 0;
  }
}

/*--------------------------------------------------------------
# Studio
--------------------------------------------------------------*/
#studio {
  background-color: #000000;
  padding: 0;
  overflow: visible;
}

#studio .swiper-wrapper {
  padding: 20px 0;
}

#studio img {
  user-select: none;
  -webkit-user-drag: none;
  aspect-ratio: 1;
  filter: grayscale(100%) brightness(0.5);
  transition: all 0.5s ease;
  flex: 1;
}

#studio .swiper-slide:hover {
  z-index: 1;
}

#studio .swiper-slide:hover img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Our Way
--------------------------------------------------------------*/
#our-way {
  background-image: url(../img/bg_grafico_rosa.webp);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 160px;
}

@media (min-width: 992px) {
  #our-way {
    padding: 260px 0;
  }
}

/*--------------------------------------------------------------
# Benefits
--------------------------------------------------------------*/
#benefits {
  padding: 0 10px;
}

#benefits .container {
  background-color: #ffffff;
  border-radius: 1.2rem;
  padding: 3rem;
}

#benefits .swiper-slide .text {
  color: #000000;
  line-height: 18px;
  font-size: 90%;
  margin-top: 1rem;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
#testimonials {
  background-color: #000000;
  position: relative;
}

#testimonials h1 {
  margin-bottom: 4rem;
}

#testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
  margin: 0 50px 0 50px;
}

#testimonials .container-fluid {
  padding: 100px 0 40px 0;
}

#testimonials .testimonial-item h2 {
  font-size: 1.25rem;
  font-weight: bold;
}

#testimonials .testimonial-item h3 {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 100;
}

.testimonial-text {
  font-weight: 200;
  font-size: 1rem;
  height: 150px;
  overflow-y: scroll;
  color: #ffffff;
}

.testimonial-text::-webkit-scrollbar {
  width: 5px;
}

.testimonial-text::-webkit-scrollbar-thumb {
  background-color: #7f7f7f;
  border-radius: 5px;
}

.testimonial-text::-webkit-scrollbar-track {
  background-color: #e5e5e5;
}

#testimonials .swiper-button-next,
#testimonials .swiper-button-prev {
  position: absolute;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: #f4f4f4;
  top: 50%;
  --swiper-navigation-size: 16px;
  --swiper-navigation-color: #e70e58;
}

#testimonials .swiper-button-next {
  right: -10px;
}
#testimonials .swiper-button-prev {
  left: -10px;
}

@media (max-width: 350px) {
  #testimonials .swiper-button-next {
    right: 0px;
  }
  #testimonials .swiper-button-prev {
    left: 0px;
  }
}

#testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background-color: #fefefe;
  border: 2px solid #fefefe;
  opacity: 1;
}

#testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fefefe;
  border: 3px solid #fefefe;
  opacity: 1;
}

/*--------------------------------------------------------------
# Our Team
--------------------------------------------------------------*/
#our-team {
  background-color: #e70e58;
  color: #ffffff;
  padding: 80px 0;
}

#our-team .progressive {
  border-radius: 50rem;
  width: 140px;
  height: 140px;
  margin: 0 auto;
}

#our-team .team-title {
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

#our-team .team-title h1 {
  margin: 0;
}

#our-team .team-title p {
  margin: 0;
  padding-top: 10px;
  border-top: 5px solid #ffffff;
}

#our-team .swiper {
  margin-top: 4rem;
}

#our-team .swiper-slide {
  text-align: center;
}

@media (min-width: 1200px) {
  #our-team .team-title {
    max-width: 65%;
  }
}

@media (min-width: 992px) {
  #our-team .team-title {
    max-width: 80%;
  }

  #our-team .team-title p {
    border-top: 0;
    border-left: 20px solid #ffffff;
    padding-left: 10px;
    padding-top: 0px;
  }
}

/*--------------------------------------------------------------
# Videos
--------------------------------------------------------------*/
#videos {
  background-color: #000000;
}

#videos .swiper {
  padding-bottom: 5rem;
}

#videos .swiper-slide .video-thumb .strip {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  height: 8px;
  width: 50%;
  border-bottom-left-radius: 13px;
  border-bottom-right-radius: 13px;
}

#videos .swiper-slide .video-thumb .progressive {
  border-radius: 16px;
  width: 100%;
  height: 100%;
}

#videos .swiper-slide .play-btn {
  cursor: pointer;
  filter: drop-shadow(0rem 0.4rem 0.4rem rgba(54, 0, 30));
}

#videos .swiper-slide .video-thumb .fs-90 {
  color: #000000;
}

#videos .swiper-slide {
  text-align: center;
}

#videos .swiper-slide h2 {
  font-size: 18px;
}

#videos .swiper-slide span {
  font-size: 0.85rem;
  font-weight: 100;
}

#videos .swiper-pagination .swiper-pagination-bullet {
  --swiper-pagination-bullet-horizontal-gap: 2px;
  width: 10px;
  height: 10px;
  opacity: 1;
  background-color: #ffffff;
  border: 1px solid #fff;
}

#videos .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffffff;
  opacity: 1;
}

#videos .btn-close {
  width: 2rem;
  height: 2rem;
  background: transparent
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e")
    center/1em auto no-repeat;
  opacity: 1;
}

#videos .btn-close:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
  opacity: 1;
}

/*--------------------------------------------------------------
# Our Clients
--------------------------------------------------------------*/
#ourClients {
  padding-top: 30px;
  background-color: #000;
}

#ourClients .ourClientsImages-slider .background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

#ourClients .ourClientsImages-slider .swiper-slide {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

#ourClients .ourClients-slider .swiper-slide img {
  aspect-ratio: 1.69;
}

#ourClients .ourClients-slider .swiper-wrapper,
#ourClients .ourClients-slider-right .swiper-wrapper {
  transition-timing-function: linear;
  user-select: none;
  -webkit-user-drag: none;
}

/*--------------------------------------------------------------
# Plans
--------------------------------------------------------------*/
#plans {
  background-color: #e70e58;
}

#plans .plan-title {
  position: relative;
  bottom: -12px;
}

#plans .plan-subtitle {
  letter-spacing: -2px;
}

#plans .plan-desc {
  border-left: 0.7rem solid #b3b3b3;
  max-height: 30px;
  display: flex;
  align-items: center;
}

#plans .promotion {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: absolute;
  right: -25px;
}

#plans .promotion .off {
  margin-top: -10px;
  margin-left: -7px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Faq
--------------------------------------------------------------*/
#faq {
  background-color: #000000;
}

#faq .accordion .accordion-item .accordion-header {
  border: 2px solid #fefefe;
  --bs-accordion-btn-focus-border-color: #fefefe;
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(24, 24, 34, 0.25);
  --bs-accordion-btn-bg: #fefefe;
  --bs-accordion-btn-color: #000000;
  --bs-accordion-active-color: #000000;
  --bs-accordion-active-bg: #fefefe;
}

#faq .accordion-button:after {
  order: -1;
  --bs-accordion-btn-icon-transform: rotate(-90deg);
  --bs-accordion-btn-icon-width: 18px;
  --bs-accordion-btn-icon: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' width='1792' height='1792' version='1.1' style=' shape-rendering: geometricPrecision; text-rendering: geometricPrecision; image-rendering: optimizeQuality; fill-rule: evenodd; clip-rule: evenodd; ' viewBox='0 0 81.26 177.78' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:xodm='http://www.corel.com/coreldraw/odm/2003' %3E%3Cdefs%3E%3Cstyle type='text/css'%3E%3C!%5BCDATA%5B .fil0 %7Bfill:%23E70E58%7D %5D%5D%3E%3C/style%3E%3C/defs%3E%3Cg id='Camada_x0020_1'%3E%3Cmetadata id='CorelCorpID_0Corel-Layer' /%3E%3Cpath class='fil0' d='M-1.7 5.36l76.71 76.71c6.07,6.08 6.07,16.02 0,22.1l-76.71 76.71 0 -34.36 53.4 -53.4 -53.4 -53.4 0 -34.36z' /%3E%3C/g%3E%3C/svg%3E");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' width='1792' height='1792' version='1.1' style=' shape-rendering: geometricPrecision; text-rendering: geometricPrecision; image-rendering: optimizeQuality; fill-rule: evenodd; clip-rule: evenodd; ' viewBox='0 0 81.26 177.78' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:xodm='http://www.corel.com/coreldraw/odm/2003' %3E%3Cdefs%3E%3Cstyle type='text/css'%3E%3C!%5BCDATA%5B .fil0 %7Bfill:%23E70E58%7D %5D%5D%3E%3C/style%3E%3C/defs%3E%3Cg id='Camada_x0020_1'%3E%3Cmetadata id='CorelCorpID_0Corel-Layer' /%3E%3Cpath class='fil0' d='M-1.7 5.36l76.71 76.71c6.07,6.08 6.07,16.02 0,22.1l-76.71 76.71 0 -34.36 53.4 -53.4 -53.4 -53.4 0 -34.36z' /%3E%3C/g%3E%3C/svg%3E");
  margin-left: 0;
  margin-right: 0.5em;
}

#faq .accordion .accordion-item {
  background-color: #000000;
  border: 0;
  --bs-accordion-border-width: 0;
  --bs-accordion-color: #fefefe;
}

#faq .accordion-body {
  hyphens: auto;
  text-align: justify;
}

/*--------------------------------------------------------------
# Ebooks
--------------------------------------------------------------*/
#ebooks {
  padding-top: 30px;
  padding-bottom: 80px;
  background-color: #000000;
  background-image: radial-gradient(circle at 50% 50%, #38001f 0%, #000 50%);
}

#ebooks h1 {
  margin-bottom: 4rem;
}

#ebooks .swiper-slide {
  text-align: center;
  margin-bottom: 5px;
}

#ebooks .progressive {
  border-radius: 30px;
}

#ebooks .swiper-slide .btn {
  margin-top: 2rem;
  --bs-btn-color: #fff;
  --bs-btn-bg: #e70e58;
  --bs-btn-border-color: #e70e58;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #00b300;
  --bs-btn-hover-border-color: #00b300;
  --bs-btn-focus-shadow-rgb: 0, 179, 0;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #00b300;
  --bs-btn-active-border-color: #00b300;
  --bs-btn-active-shadow: 0;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #e23d74;
  --bs-btn-disabled-border-color: #e23d74;
}

/*--------------------------------------------------------------
# Cookies PopUp
--------------------------------------------------------------*/

#cookies-popup {
  position: fixed;
  bottom: 5%;
  left: 5%;
  z-index: 1030;
  width: 100%;
  max-width: 430px;
}

#cookies-popup .content {
  border-radius: 10px;
  padding: 20px;
  box-shadow: 13px 10px 8px -3px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  color: #000;
  font-family: "Gilroy";
}

#cookies-popup .privacy-link {
  text-decoration: underline;
}

#cookies-popup .privacy-link:hover {
  color: #880835;
  text-decoration: underline;
}

#cookies-popup p {
  font-size: 90%;
}

.showCookiePopup {
  animation: showCookiePopup 1.5s ease forwards;
}

.hideCookiePopup {
  animation: hideCookiePopup 1.5s ease forwards;
}

@media (max-width: 576px) {
  #cookies-popup {
    bottom: 70px;
    left: 0;
  }
}

@keyframes hideCookiePopup {
  0% {
    transform: scale(1);
  }

  20% {
    transform: scale(0.9);
  }

  to {
    transform: translateY(1200px) scale(0.9);
  }
}

@keyframes showCookiePopup {
  0% {
    transform: translateY(1200px) scale(0.9);
  }

  80% {
    transform: translateY(0) scale(0.9);
  }

  to {
    transform: scale(1);
  }
}

/*--------------------------------------------------------------
# Contact Modal
--------------------------------------------------------------*/
#contactModal .modal-content {
  border: 1px solid #e70e58;
}

.contact-modal-header {
  --bs-modal-header-border-color: #e70e5649;
  background-color: #000000;
  color: #fff;
}

.contact-modal-header .btn-close {
  background: transparent
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e")
    center/1em auto no-repeat;
}

.contact-modal-header .btn-close:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
  opacity: 1;
}

.contact-modal-body {
  background-color: #000000;
  padding: 40px 0px;
}

.contact-modal-body .form-control {
  background-color: #1a1a1a;
  border: 1px solid #e70e58;
  color: #ffffff;
}

.contact-modal-body .form-control:focus {
  border-color: #e70e5650;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(231, 14, 88, 0.25);
}

#contactModal .bg-pink-modal {
  background-color: #e70e5634;
  padding: 0.8rem;
}

@media (min-width: 768px) {
  .contact-modal-body {
    padding: 60px 60px;
  }
}

@media (min-width: 1200px) {
  #contactModal .border-pink-contact {
    border-right: 1px solid #e70e5634;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
  background: #000000;
  color: #ffffff;
  font-size: 0.9375rem;
}

footer .footer .container {
  border-top: 1px solid #ffffff;
}

footer .footer .container {
  padding-top: 50px;
  padding-bottom: 50px;
}

footer .footer-brand {
  max-width: 250px;
}

footer .footer-link {
  font-weight: 100;
  display: flex;
  align-items: center;
  gap: 5px;
}

footer .footer-link img {
  transition: transform 0.5s;
}

footer .footer-link:hover img {
  transform: translateX(-5px);
}

footer .copy {
  padding: 15px 0;
  background-color: #e70e58;
}

/*--------------------------------------------------------------
# Custom Bootstrap Classes
--------------------------------------------------------------*/

/**
* Width and Heigth
*/

/**
* Margin and Padding
*/

.p-2-50 {
  padding: 0.7rem !important;
}

.py-2-50 {
  padding-top: 0.7rem !important;
  padding-bottom: 0.7rem !important;
}

.px-4-50 {
  padding-right: 2rem !important;
  padding-left: 2rem !important;
}

/**
* Text
*/

.text-justify {
  text-align: justify;
}

.text-pink {
  color: #e70e58;
}

.ff-gilroy {
  font-family: "Gilroy";
}

.text-sm {
  font-size: 0.8rem;
}

.fs-90 {
  font-size: 90%;
}

/**
* Background
*/

.bg-pink {
  background-color: #e70e58;
}

.bg-gray {
  background-color: #e6e6e6;
}

.bg-darkgray {
  background-color: #b3b3b3;
}

/**
* Borders
*/

.border-pink {
  --bs-border-opacity: 1;
  border-color: rgba(241, 53, 119, var(--bs-border-opacity)) !important;
}

/**
* Buttons
*/

.btn-green {
  --bs-btn-color: #fff;
  --bs-btn-bg: #008a00;
  --bs-btn-border-color: #008a00;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #007a00;
  --bs-btn-hover-border-color: #007a00;
  --bs-btn-focus-shadow-rgb: 0, 138, 0;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #007a00;
  --bs-btn-active-border-color: #007a00;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #008a00;
  --bs-btn-disabled-border-color: #008a00;
}

.btn-darkgreen {
  --bs-btn-color: #fff;
  --bs-btn-bg: #00ad00;
  --bs-btn-border-color: #00ad00;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #e70e58;
  --bs-btn-hover-border-color: #e70e58;
  --bs-btn-focus-shadow-rgb: 0, 173, 0;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #e70e58;
  --bs-btn-active-border-color: #e70e58;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #71c271;
  --bs-btn-disabled-border-color: #71c271;
}

.btn-pink {
  --bs-btn-color: #fff;
  --bs-btn-bg: #e70e58;
  --bs-btn-border-color: #e70e58;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #c50e4b;
  --bs-btn-hover-border-color: #c50e4b;
  --bs-btn-focus-shadow-rgb: 231, 14, 88;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #c50e4b;
  --bs-btn-active-border-color: #c50e4b;
  --bs-btn-active-shadow: 0;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #e70e58;
  --bs-btn-disabled-border-color: #e70e58;
}

.btn-outline-pink {
  --bs-btn-color: #fff;
  --bs-btn-border-color: #e70e58;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #e70e58;
  --bs-btn-hover-border-color: #e70e58;
  --bs-btn-focus-shadow-rgb: 240, 53, 120;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #e70e58;
  --bs-btn-active-border-color: #e70e58;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #e70e58;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #e70e58;
  --bs-gradient: none;
}

.btn-outline-green {
  --bs-btn-color: #fff;
  --bs-btn-border-color: #01c401;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #01c401;
  --bs-btn-hover-border-color: #01c401;
  --bs-btn-focus-shadow-rgb: 1, 196, 1;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #01c401;
  --bs-btn-active-border-color: #01c401;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #4db94d;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #4db94d;
  --bs-gradient: none;
  fill: #01c401;
}

.btn-outline-green:hover {
  fill: #fff;
}

/**
* Responsive Media Queries
*/

/* xxl */
@media (min-width: 1400px) {
  .gap-xxl-6 {
    gap: 3.5rem !important;
  }
}

/* xl */
@media (min-width: 1200px) {
  .h-xl-100 {
    height: 100%;
  }

  .w-xl-auto {
    width: auto !important;
  }
}

/* lg */
@media (min-width: 992px) {
  .w-lg-auto {
    width: auto !important;
  }
}

/* md */
@media (min-width: 768px) {
  .px-sm-4-50 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
}

/* sm */
@media (min-width: 576px) {
  .w-sm-auto {
    width: auto !important;
  }
  .w-sm-50 {
    width: 50% !important;
  }
}
@media (max-width: 576px) {
  .max-sm-fs-80 {
    font-size: 80%;
  }
}

/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/

/**
* JUST Sans
*/

@font-face {
  font-family: "JUST Sans";
  font-style: normal;
  font-stretch: 100%;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/JUST-Sans-ExBold.woff") format("woff"),
    url("../fonts/JUST-Sans-ExBold.woff2") format("woff2");
}

@font-face {
  font-family: "JUST Sans";
  font-style: normal;
  font-stretch: 100%;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/JUST-Sans-Bold.woff") format("woff"),
    url("../fonts/JUST-Sans-Bold.woff2") format("woff2");
}

@font-face {
  font-family: "JUST Sans";
  font-style: normal;
  font-stretch: 100%;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/JUST-Sans-SemiBold.woff") format("woff"),
    url("../fonts/JUST-Sans-SemiBold.woff2") format("woff2");
}

@font-face {
  font-family: "JUST Sans";
  font-style: normal;
  font-stretch: 100%;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/JUST-Sans-Medium.woff") format("woff"),
    url("../fonts/JUST-Sans-Medium.woff2") format("woff2");
}

@font-face {
  font-family: "JUST Sans";
  font-style: normal;
  font-stretch: 100%;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/JUST-Sans-Regular.woff") format("woff"),
    url("../fonts/JUST-Sans-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "JUST Sans";
  font-style: normal;
  font-stretch: 100%;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/JUST-Sans-Light.woff") format("woff"),
    url("../fonts/JUST-Sans-Light.woff2") format("woff2");
}

@font-face {
  font-family: "JUST Sans";
  font-style: normal;
  font-stretch: 100%;
  font-weight: 200;
  font-display: swap;
  src: url("../fonts/JUST-Sans-ExLight.woff") format("woff"),
    url("../fonts/JUST-Sans-ExLight.woff2") format("woff2");
}

/**
* Gotham
*/

@font-face {
  font-family: "Gotham";
  src: url(../fonts/GothamLight.ttf) format("truetype");
  font-style: normal;
  font-stretch: 100%;
  font-display: swap;
  font-weight: 200;
}

/**
* Gilroy
*/

@font-face {
  font-family: "Gilroy";
  src: url(../fonts/Gilroy-ExtraBold.otf) format("opentype");
  font-style: normal;
  font-stretch: 100%;
  font-display: swap;
  font-weight: 700;
}

@font-face {
  font-family: "Gilroy";
  src: url(../fonts/Gilroy-Light.otf) format("opentype");
  font-style: normal;
  font-stretch: 100%;
  font-display: swap;
  font-weight: 300;
}
