:root {
  --primary: #5C0564;
  --secondary: #DAA520;
  --gray: #3F3F3E;
  --gray-secondary: #7A7A7A;
  --black: #050505;
  --white: #FFF;
  --white-secondary: #FCF3FD;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Poppins", sans-serif;
  color: var(--gray-secondary);
}

a {
  text-decoration: none;
  color: var(--primary);
}

a:hover {
  color: var(--primary);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
}

h2 {
  font-weight: 600;
}

::-webkit-scrollbar {
  width: 8px
}

::-webkit-scrollbar-track {
  background-color: var(--white);
}

::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 8px
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
  background: transparent;
}

#header.header-scrolled, #header.header-inner-pages {
  padding: 12px 0;
  background: var(--primary);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #5a5af3;
}

#header .logo img {
  max-height: 40px;
}

@media (max-width: 992px) {
  #header {
    padding: 12px 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  color: var(--white);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover>a {
  color: var(--secondary);
}

.navbar .getstarted, .navbar .getstarted:focus {
  padding: 6px 25px;
  margin-left: 30px;
  border-radius: 50px;
  color: var(--white);
  border: 2px solid var(--secondary);
  background: var(--secondary);
}

.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  color: #fff;
  background: var(--secondary);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover>a {
  color: #5a5af3;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--secondary);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(92, 5, 100, 0.9);
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--primary);
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover>a {
  color: var(--secondary);
}

.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover>a {
  color: var(--primary);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 90vh;
  /* background: var(--primary); */
  position: relative;
  background: url('../img/background/bg3.webp') no-repeat;
  background-size: cover;
  background-position: center bottom;
}

.hero-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.hero-shape svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 70px;
}

.hero-shape .shape-fill {
  fill: #FFFFFF;
}

/* 
#hero .container {
  padding-top: 80px;
} */

#hero h1 {
  margin: 0;
  font-size: 36px;
  font-weight: 400;
  line-height: 48px;
  color: var(--white);
  font-family: "Poppins", sans-serif;
}

#hero h1>span,
#hero h2>span {
  color: var(--secondary);
  font-weight: 600;
}

#hero h2 {
  margin: 35px 0 0 0;
  font-size: 20px;
  font-weight: 300;
  width: 80%;
  color: var(--white);
}

#hero .hero-form {
  background-color: var(--white-secondary);
  position: relative;
  left: 15%;
  margin-top: 15%;
  padding: 30px;
  border-radius: 12px;
}

#hero .hero-form form {
  text-align: center;
}

#hero .hero-form .form-select {
  color: var(--gray-secondary);
  font-weight: 400;
}

#hero .hero-form h2 {
  color: var(--primary);
  font-size: 25px;
  padding-bottom: 15px;
  font-weight: 600;
  width: 100%;
}

#hero .hero-form .link-whats {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}

#hero .hero-form .link-whats>i {
  vertical-align: middle;
  margin-right: 7px;
}

.btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
  padding: 8px 30px 9px 30px;
  width: 100%;
  margin-bottom: 15px;
  border-radius: 50px;
  transition: 0.5s;
  text-transform: uppercase;
}

.btn-get-started {
  background: var(--secondary);
  color: #fff;
  border: 2px solid var(--secondary);
  margin-right: 10px;
}

.btn-get-started:hover {
  background: var(--secondary);
  border: 2px solid var(--secondary);
  color: #fff;
}

.btn-get-quote {
  color: #5a5af3;
  border: 2px solid #5a5af3;
}

.btn-get-quote:hover {
  background: #5a5af3;
  color: #fff;
}

/* @media (max-width: 991px) {
  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
} */

@media (max-width: 575px) {
  #hero {
    text-align: center;
    height: 100%;
    background: var(--primary);
  }

  #hero .container {
    padding-top: 20px;
  }

  #hero h1 {
    font-size: 27px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
    width: 100%;
  }

  #hero .hero-form {
    width: 90%;
    left: 13px;
    margin: 10px;
  }

  .btn-get-started {
    padding-left: 18px;
    padding-right: 18px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: #eeeef5;
}

/* .section-title {
  padding-bottom: 30px;
} */

.section-title h2 {
  font-size: 35px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 30px;
  position: relative;
  color: var(--primary);
  text-align: left;
}

.section-title h3 {
  font-size: 35px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--white);
  text-align: center;
}

.section-title p {
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    text-align: center;
  }
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .flex-container {
  display: flex;
  align-items: center;
}

.about .about-img {
  margin-right: 25px;
  vertical-align: middle;
}

.about .card {
  border: none;
  margin-bottom: 35px;
}

.about .card h2 {
  font-weight: 700;
  font-size: 18px;
  color: var(--primary);
  margin: 5px 0 5px 0;
}

.about .card p {
  font-weight: 500;
  font-size: 15px;
  margin: 0;
}

@media (max-width: 575px) {
  .about {
    margin: 0 10px 0 10px;
  }

  .about .card h2 {
    font-size: 16px;
  }

  .about .card p {
    font-size: 14px;
  }
}


/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding-top: 45px;
}

.why-us .card {
  margin-bottom: 20px;
  height: 100%;
  border-radius: 12px;
}

.why-us .card h4 {
  font-size: 20px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: var(--gray);
}

.why-us .card p {
  font-size: 15px;
  margin-bottom: 15px;
  padding: 0;
  line-height: 1.5em;
}

.why-us .card .card-img-top {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

@media (max-width: 575px) {
  section.why-us {
    padding-top: 10px;
  }

  .why-us {
    margin: 0 10px 0 10px;
  }
}

/*--------------------------------------------------------------
# Benefits
--------------------------------------------------------------*/
.benefits {
  padding: 70px 0 60px;
}

.benefits .benefits-box {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-column-gap: 20px;
  align-items: center;
  padding: 30px 0 30px 0;
  width: 80%;
}

.benefits .benefits-box img {
  width: 90px;
}

.benefits .benefits-box h2 {
  padding: 0;
  margin: 0;
  font-size: 17px;
  line-height: 1.5em;
  color: var(--primary);
}

@media (max-width: 575px) {
  section.benefits {
    padding-top: 15px;
  }

  .benefits .benefits-box {
    width: 100%;
  }

  .benefits {
    margin: 0 10px 0 10px;
  }
}

/*--------------------------------------------------------------
# Maquina
--------------------------------------------------------------*/
.maquina h2 {
  line-height: 40px;
  margin-bottom: 25px;
  color: var(--primary);
}

.maquina p {
  font-weight: 400;
  line-height: 22px;
  font-size: 15px;
  margin-bottom: 35px;
  text-align: justify;
}

.maquina ul {
  padding-left: 0;
}

.maquina ul li {
  list-style: none;
  margin-bottom: 8px;
}

.maquina ul li>i {
  color: var(--primary);
  vertical-align: middle;
  padding-right: 8px;
  font-size: 18px;
}

.maquina .img1 {
  width: 70%;
  margin-left: 45px;
  border-radius: 25px;
}

.maquina .img2 {
  margin-left: 45px;
  border-radius: 25px;
}

.maquina .btn-get-started {
  width: 100%;
}


@media (max-width: 575px) {
  section.maquina {
    padding-top: 10px;
  }

  .maquina {
    margin: 0 10px 0 10px;
  }

  .maquina .img1 {
    width: 100%;
    margin: 0 0 35px 0;
  }

  .maquina .img2 {
    margin: 0 0 35px 0;
  }

  .maquina h2 {
    line-height: 35px;
  }
}

/*--------------------------------------------------------------
# Empresa
--------------------------------------------------------------*/
.empresa {
  background: url('../img/background/bg5.webp') no-repeat;
  background-size: cover;
  background-position: center center;
  height: 500px;
}

.empresa h2 {
  margin-bottom: 27px;
  padding-top: 25px;
  color: var(--primary);
}

.empresa p {
  margin-bottom: 40px;
  text-align: justify;
}

.empresa .btn-get-started {
  width: 60%;
}

@media (max-width: 575px) {
  .empresa {
    background-image: url(../img/background/bg5-mobile.webp);
    height: 700px;
  }

  .empresa .content {
    padding: 20px;
  }

  .empresa h2 {
    padding-top: 0;
  }

  .empresa .btn-get-started {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Tratamentos
--------------------------------------------------------------*/
.tratamentos .item {
  text-align: center;
}

.tratamentos .item img {
  border-radius: 100%;
  border: solid 4px var(--primary);
  margin: 10px 0;
  width: 75%;
}

.tratamentos .item h4 {
  font-weight: 600;
  margin-top: 15px;
  font-size: 20px;
  color: var(--primary);
}

/*--------------------------------------------------------------
# Estrutura
--------------------------------------------------------------*/
.estrutura {
  background: var(--primary);
}

.estrutura .swiper {
  width: 100%;
  height: 100%;
}

.estrutura .estruturaSwiper {
  padding-bottom: 70px;
}

.estrutura .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.estrutura .swiper-button-next::after,
.estrutura .swiper-button-prev::after {
  content: "";
  width: 40px;
  height: 40px;
  position: absolute;
  top: 90%;
  background-image: url('../img/arrow-right-circle.svg');
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
}

.estrutura .swiper-button-prev::after {
  background-image: url('../img/arrow-left-circle.svg');
}

.estrutura .swiper-button-next::before,
.estrutura .swiper-button-prev::before {
  content: none !important;
}

.estrutura .swiper-button-next {
  right: 45%;
  top: 70%;
}

.estrutura .swiper-button-prev {
  left: 45%;
  top: 70%;
}

@media (max-width: 575px) {
  .estrutura .swiper-button-next {
    right: 35%;
    top: 78%;
  }

  .estrutura .swiper-button-prev {
    left: 35%;
    top: 78%;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .row {
  background: var(--white-secondary);
  border-radius: 12px;
}

.testimonials img {
  margin-left: 18%;
}

.testimonials .swiper {
  width: 100%;
  height: 100%;
}

.testimonials .testimonialsSwiper {
  padding-bottom: 70px;
}

.testimonials .swiper-slide .perfil {
  display: flex;
  align-items: center;
}

.testimonials .swiper-slide .perfil div {
  display: flex;
  flex-direction: column;
}

.testimonials .swiper-slide .perfil h2,
.testimonials .swiper-slide .perfil p {
  margin: 0;
}

.testimonials .swiper-slide .perfil h2 {
  font-size: 18px;
  color: var(--primary);
}

.testimonials .swiper-slide .perfil .circle {
  width: 50px;
  height: 50px;
  background-color: var(--secondary);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 24px;
  font-weight: 400;
  margin-right: 20px;
}

.testimonials .swiper-slide .perfil p,
.testimonials .swiper-slide .info span {
  font-size: 15px;
}

.testimonials .swiper-slide .info,
.testimonials .swiper-slide .perfil {
  display: flex;
  align-items: center;
}

.testimonials .swiper-slide .info span {
  margin: 0 0 0 15px;
}

.testimonials .swiper-slide h3 {
  font-size: 16px;
  margin-top: 25px;
  line-height: 1.5em;
  font-weight: 400;
}

.testimonials .swiper-slide .info i {
  color: var(--secondary);
  font-size: 15px;
}

.testimonials .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials .swiper-button-next::after,
.testimonials .swiper-button-prev::after {
  content: "";
  width: 40px;
  height: 40px;
  position: absolute;
  top: 90%;
  background-image: url('../img/arrow-right-circle.svg');
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
}

.testimonials .swiper-button-prev::after {
  background-image: url('../img/arrow-left-circle.svg');
}

.testimonials .swiper-button-next::before,
.testimonials .swiper-button-prev::before {
  content: none !important;
}

.testimonials .swiper-button-next {
  right: 40%;
  top: 70%;
}

.testimonials .swiper-button-prev {
  left: 40%;
  top: 70%;
}

/* .testimonials .swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--primary);
}

.testimonials .swiper-pagination-bullet {
  background: var(--primary);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, .2);
}

.testimonials .swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  width: 15%;
  left: 13px;
} */

@media (max-width: 575px) {
  .testimonials {
    margin: 0 10px 0 10px;
  }

  .testimonials .testimonialsSwiper {
    padding: 25px 25px 70px 25px;
  }

  .testimonials img {
    display: none;
  }

  .testimonials .swiper-button-next {
    right: 33%;
    top: 78%;
  }

  .testimonials .swiper-button-prev {
    left: 33%;
    top: 78%;
  }

  /* .testimonials .swiper-horizontal>.swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal {
    width: 23%;
  } */
}

/*--------------------------------------------------------------
# Testimonials Video
--------------------------------------------------------------*/
.testimonials-video {
  padding: 0 0 60px 0;
}

.testimonials-video .test-video {
  width: 100%;
  height: 96%;
}

.testimonials-video .btn-get-started {
  width: 40%;
}

@media (max-width: 768px) {
  .testimonials-video video {
    margin-bottom: 25px;
  }
}

@media (max-width: 575px) {
  .testimonials-video .btn-get-started {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Unidades
--------------------------------------------------------------*/
.unidades .box {
  background: var(--white-secondary);
  padding: 80px;
  border-radius: 12px;
}

.unidades .box h2 {
  font-size: 18px;
  color: var(--primary);
  margin-top: 35px;
}

.unidades .box p {
  font-size: 15px;
  color: var(--primary);
  font-weight: 500;
}

.unidades .box i {
  color: var(--secondary);
  padding-right: 5px;
}

.unidades .box img {
  width: 120px;
  margin-top: -7%;
}

@media (max-width: 575px) {
  .unidades .box {
    padding: 60px;
  }
}

/*--------------------------------------------------------------
# Call action Franquia
--------------------------------------------------------------*/
.call-franquia {
  padding: 80px;
  background: var(--white-secondary);
}

.call-franquia h3 {
  font-size: 35px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 25px;
}

.call-franquia .btn-get-started {
  width: 40%;
}

.call-franquia img {
  border-radius: 100px 0 0;
  position: relative;
  left: 15%;
}

@media (max-width: 575px) {
  .call-franquia {
    padding: 30px;
    text-align: center;
  }

  .call-franquia h3 {
    font-size: 30px;
  }

  .call-franquia .btn-get-started {
    width: 100%;
  }

  .call-franquia img {
    margin-top: 25px;
    left: 0;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  background: var(--white-secondary);
  margin-bottom: 20px;
}

.faq .faq-list .question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 10px 0 10px 25px;
  cursor: pointer;
  color: var(--primary);
  transition: 0.3s;
}

.faq .faq-list i {
  font-size: 16px;
  padding-right: 20px;
}

.faq .faq-list .question i {
  margin-left: auto;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
  background-color: var(--white);
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list .collapsed {
  color: var(--primary);
  font-weight: 500;
}

.faq .faq-list .collapsed:hover {
  color: var(--primary);
}

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

/*--------------------------------------------------------------
# Obrigado
--------------------------------------------------------------*/
#obrigado {
  text-align: center;
}

#obrigado h1 {
  margin-bottom: 20px;
  font-size: 50px;
  font-weight: 500;
  line-height: 50px;
  color: var(--primary);
  font-family: "Poppins", sans-serif;
}

#obrigado p {
  font-size: 16px;
}

#obrigado .btn-get-started {
  width: 50%;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  width: 100%;
  height: 40vh;
  background: var(--primary);
}

.breadcrumbs h1 {
  color: var(--white);
  margin-top: 25px;
}

@media (max-width: 575px) {
  .breadcrumbs {
    height: 30vh;
  }
}


/*--------------------------------------------------------------
# Terms
--------------------------------------------------------------*/
.terms h3 {
  font-size: 25px;
  color: var(--primary);
}

.terms p {
  text-align: justify;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: var(--white);
  font-weight: 400;
  font-size: 14px;
  background: var(--primary);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .credits {
  padding-top: 5px;
}

#footer .credits a {
  transition: 0.3s;
  color: var(--secondary);
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--secondary);
  color: var(--primary);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: var(--secondary);
  text-decoration: none;
}