:root {
  --ArialRegular: "Arial", sans-serif;
  --colorGray: #4D4D4D;
  --colorlightgray: #A09D98;
  --colorPrimary:#6F432E;
  --colorPrimaryLight:#D0C3B3;
  --colorPrimaryHover:#23130c;
  --colorBlack: #000;
  --colorWhite: #fff;
  --colorDefault: #373435;
  --bgGray: #EBE8E4;
}

@media (max-width: 1199px) {
  .container {
    max-width: 100% !important;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1300px !important;
  }
}

.primary-font {
  font-family: var(--ArialRegular) !important;
}

.primary-font-bold {
  font-family: var(--ArialRegular);
  font-weight: bold;
}

.color-gradient {
  background: rgb(248, 160, 86);
  background: linear-gradient(109deg, rgb(248, 160, 86) 0%, rgb(248, 160, 86) 24%, rgb(251, 128, 121) 34%, rgb(147, 42, 166) 68%, rgb(147, 42, 166) 100%);
}

/*Colors*/
.color-gray {
  color: var(--colorGray);
}

.color-lightgray {
  color: var(--colorlightgray);
}

.color-dark {
  color: var(--colorBlack);
}

.color-white {
  color: var(--colorWhite);
}

.color-default {
  color: var(--colorBase);
}

.color-primary {
  color: var(--colorPrimary);
}

.color-primaryHover {
  color: var(--colorPrimaryHover);
}

.bg-primary {
  background-color: var(--colorPrimaryLight);
}

.bg-gray {
  background-color: var(--bgGray);
}

.bg-white {
  background-color: var(--colorWhite);
}

.bg-brown {
  background-color: var(--colorPrimary);
}

.cursor-pointer {
  cursor: pointer;
}

.bold, b {
  font-weight: bold;
}

.rounded-xxl {
  border-radius: 24px;
}

.border {
  border-color: #4D4D4D;
}

/*Text*/
.primary-font,
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ArialRegular);
}

p {
  color: var(--colorBlue);
}
p b {
  line-height: 0;
}

.heading-h1 {
  font-family: var(--ArialBold);
  font-size: 74px;
  line-height: 0.8;
  letter-spacing: -1px;
}
@media (max-width: 1199px) {
  .heading-h1 {
    font-size: 56px;
  }
}
@media (max-width: 639px) {
  .heading-h1 {
    font-size: 42px;
    line-height: 1;
  }
}

.heading-h2 {
  font-family: var(--ArialBold);
  font-size: 52px;
  line-height: 1;
  letter-spacing: -1px;
}
@media (max-width: 1199px) {
  .heading-h2 {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .heading-h2 {
    font-size: 32px;
  }
}

.heading-h3 {
  font-family: var(--ArialBold);
  font-size: 42px;
  letter-spacing: -1px;
  line-height: 1;
}
@media (max-width: 1199px) {
  .heading-h3 {
    font-size: 32px;
  }
}
.heading-h3 b {
  font-family: var(--ArialBold);
}

.heading-h4 {
  font-family: var(--ArialBold);
  font-size: 32px;
  letter-spacing: -1px;
  line-height: 1;
}
@media (max-width: 1199px) {
  .heading-h4 {
    font-size: 24px;
  }
}
.heading-h4 b {
  font-family: var(--ArialBold);
}

.eyebrow {
  font-size: 24px;
  letter-spacing: -1px;
  line-height: 1.2;
}

.text-default {
  font-size: 16px;
}

.text-justify {
  text-align: justify;
}


.text-large {
  font-size: 24px;
  letter-spacing: -1px;
  line-height: 1.2;
}
@media (max-width: 1199px) {
  .text-large {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .text-large {
    font-size: 20px;
  }
}
.text-large b {
  line-height: 0;
}

.text-medium {
  font-family: "GothamBook";
  font-size: 20px;
  letter-spacing: -1px;
  line-height: 1.3;
}
@media (max-width: 1199px) {
  .text-medium {
    font-size: 18px;
  }
}
.text-medium b {
  line-height: 0;
}

.text-small {
  font-size: 14px;
}

.bg {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  top: 0;
  -o-object-position: top center;
     object-position: top center;
}

/*Button*/
.button {
  border: 1px solid transparent;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--ArialRegular);
  transition: 0.2s ease-in-out;
  color: var(--colorWhite);
  line-height: 1;
  border-radius: 0;
  display: inline-block;
  border: 0;
  background: var(--colorPrimary);
}
.button:hover {
  background: var(--colorPrimaryHover);
}
.button.button-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.button.button-icon svg {
  height: 14px;
  position: relative;
  top: -2px;
}
.button.button-white {
  color: var(--colorDefault);
  background: var(--colorWhite);
}
.button.button-white.button-icon svg path {
  fill: #fff !important;
}
.button.button-white:hover {
  color: var(--colorWhite);
  background: var(--colorPrimaryHover);
}
.button.button-white:hover svg path {
  fill: #fff !important;
}
@keyframes Gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/*Block elements*/
body {
  font-family: var(--FontBook), "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 26px;
  background-color: var(--colorWhite);
  color: var(--colorBlue);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 767px) {
  body {
    font-size: 16px;
    line-height: 24px;
  }
}

.panel-aside {
  width: 25%;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.panel-aside img {
  width: auto;
  height: 30px;
}

/*Animaciones*/
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.show-bg {
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.show-bg.active {
  opacity: 1;
  transform: scale(1);
}

.animate-on-scroll.active.show-1 {
  transition-delay: 0.2s;
}

.animate-on-scroll.active.show-2 {
  transition-delay: 0.4s;
}

.animate-on-scroll.active.show-3 {
  transition-delay: 0.6s;
}

.animate-on-scroll.active.show-4 {
  transition-delay: 0.8s;
}

.animate-on-scroll.active.show-5 {
  transition-delay: 1s;
}

.animate-on-scroll.active.show-6 {
  transition-delay: 1.2s;
}

.animate-on-scroll.active.show-7 {
  transition-delay: 1.4s;
}

/*Header*/
.header-desktop {
  position: fixed;
  width: 100%;
  z-index: 9;
  top: 0;
  transition: 0.5s ease-in-out;
  border-bottom: 1px solid transparent;
  background-color: white;
}
.header-desktop .header-inner {
  transition: all 0.5s ease-in-out;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin: auto;
}
@media (max-width: 767px) {
  .header-desktop .header-inner {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
.header-desktop .brand img {
  transition: all 0.5s ease-in-out;
  height: 125px;
  width: auto;
  text-align: center;
}
@media (max-width: 1023px) {
  .header-desktop .brand img {
    height: 82px;
  }
}
@media (max-width: 767px) {
  .header-desktop .brand img {
    height: 62px;
  }
}
.header-desktop .menu-bar {
  position: fixed;
  width: 60px;
  height: 100vh;
  background-color: transparent;
  transition: all 0.5s ease-in-out;
  right: 0;
  top: 0;
  display: none;
}
@media (max-width: 767px) {
  .header-desktop .menu-bar {
    width: 50px;
    display: block;
  }
}
.header-desktop .menu-bar .toggle {
  transition: 0.5s ease-in-out;
  padding: 16px;
  justify-content: center;
  position: relative;
  z-index: 9;
}
@media (max-width: 1023px) {
  .header-desktop .menu-bar .toggle {
    padding: 38px 10px;
  }
}
.header-desktop .menu-bar .toggle .toggle-inner {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  width: 28px;
  height: 20px;
  margin-top: 0;
  position: relative;
  color: inherit;
}
.header-desktop .menu-bar .toggle .toggle-inner span {
  background: transparent;
  display: inline-block;
  width: 28px;
  height: 2px;
  border-radius: 10px;
  background-color: var(--colorBlack);
  transition: all 0.3s ease-out;
  vertical-align: top;
  position: absolute;
  right: 0;
}
.header-desktop .menu-bar .toggle .toggle-inner span:nth-child(2) {
  top: 8px;
  right: 0;
  width: 20px;
}
.header-desktop .menu-bar .toggle .toggle-inner span:nth-child(3) {
  top: 16px;
  right: 0;
  width: 12px;
}
.header-desktop .menu-bar .toggle:hover .toggle-inner span:nth-child(1) {
  width: 12px;
}
.header-desktop .menu-bar .toggle:hover .toggle-inner span:nth-child(3) {
  width: 28px;
}
.header-desktop .menu-bar .brand-bar {
  padding: 8px;
}
.header-desktop .menu-bar .brand-bar .brand-bar-iso {
  opacity: 0;
  transition: 0.5s ease-in-out;
}
.header-desktop .menu-bar .menu-end {
  display: flex;
  height: 100%;
  position: relative;
}
.header-desktop .menu-bar .menu-end .menu-social-bar {
  display: flex;
  align-items: center;
  height: 100%;
  padding-bottom: 164px;
  transition: 0.5s ease-in-out;
}
@media (max-width: 1023px) {
  .header-desktop .menu-bar .menu-end .menu-social-bar {
    padding-bottom: 145px;
  }
}
.header-desktop .menu-bar .menu-end .menu-social-bar a {
  width: 44px;
  height: 44px;
  padding: 12px;
  border: 2px solid var(--colorPrimary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s ease-in-out;
  background-color: #fff;
}
@media (max-width: 1023px) {
  .header-desktop .menu-bar .menu-end .menu-social-bar a {
    width: 32px;
    height: 32px;
    padding: 8px;
  }
}
.header-desktop .menu-bar .menu-end .menu-social-bar a:hover {
  background-color: var(--colorPrimary);
}
.header-desktop .menu-bar .menu-end .menu-social-bar a:hover svg path {
  fill: #fff !important;
}
.header-desktop .menu-bar .menu-end .menu-social-bar a svg {
  height: 100%;
}
.header-desktop .menu-bar .menu-end .button {
  position: absolute;
  width: 224px;
  left: -82px;
  bottom: 97px;
  height: 44px;
  position: relative;
  transform: rotate(-90deg);
  transition: 0.5s ease-in-out;
}
@media (max-width: 1023px) {
  .header-desktop .menu-bar .menu-end .button {
    padding: 17px 24px 17px;
    left: -87px;
    bottom: 84px;
    height: 50px;
  }
}
.header-desktop.scroll {
  border-bottom-color: #eee;
  background-color: #fff;
}
@media (max-width: 767px) {
  .header-desktop.scroll {
    border-bottom: 0;
  }
}
.header-desktop.scroll .header-inner {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.header-desktop.scroll .brand img {
  height: 80px;
}
.header-desktop.scroll .brand-bar .brand-bar-iso {
  opacity: 1;
}
.header-desktop.scroll .toggle {
  padding: 46px 20px 46px 0;
}
.header-desktop.scroll .menu-bar {
  width: 50px;
}
.header-desktop.scroll .menu-bar .button {
  padding: 17px 24px 17px;
  left: -87px;
  bottom: 84px;
  height: 50px;
}
.header-desktop.scroll .menu-bar .menu-end .menu-social-bar {
  padding-bottom: 145px;
}
.header-desktop.scroll .menu-bar .menu-end .menu-social-bar a {
  width: 32px;
  height: 32px;
  padding: 8px;
}
.header-desktop .menu-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.header-desktop .menu-nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-right: 5rem;
  gap: 3rem;
}
@media (max-width: 1023px) {
  .header-desktop .menu-nav ul {
    margin-right: 1rem;
    gap: 1.5rem;
  }
}
@media (max-width: 767px) {
  .header-desktop .menu-nav ul {
    display: none;
  }
}
.header-desktop .menu-nav ul li a {
  font-family: var(--ArialRegular);
  font-size: 16px;
  color: var(--colorPrimary);
  text-decoration: none;
  padding: 8px 0;
  font-weight: 600;
  display: block;
  transition: 0.2s ease-in-out;
  position: relative;
}
.header-desktop .menu-nav ul li a::after {
  content: "";
  width: 0;
  height: 1px;
  background-color: var(--colorPrimary);
  position: absolute;
  bottom: -1px;
  left: 50%;
  transition: 200ms ease-in-out;
}
.header-desktop .menu-nav ul li a:hover, .header-desktop .menu-nav ul li a.active {
  color: var(--colorBlack);
}
.header-desktop .menu-nav ul li a:hover::after, .header-desktop .menu-nav ul li a.active::after {
  left: 0;
  right: 0;
  width: 100%;
}
.header-desktop .menu-nav .button-contact {
  margin-left: 16px;
}
@media (max-width: 767px) {
  .header-desktop .menu-nav .button-contact {
    display: none;
  }
}

/*Custom blocks*/
.section-index {
  background-color: #000;
  padding-top: 190px;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .section-index {
    padding-top: 146px;
  }
}
@media (max-width: 767px) {
  .section-index {
    padding-top: 95px;
  }
}
@media (max-width: 480px) {
  .section-index {
    padding-top: 94px;
  }
}
.section-index .hero-caption {
  width: 75%;
}
@media (max-width: 767px) {
  .section-index .bg {
    opacity: 0.7 !important;
  }
}
.section-index .panel-aside {
  padding-top: 190px;
}
@media (max-width: 1023px) {
  .section-index .panel-aside {
    padding-top: 146px;
  }
}
@media (max-width: 767px) {
  .section-index .panel-aside {
    padding-top: 95px;
  }
}
@media (max-width: 480px) {
  .section-index .panel-aside {
    padding-top: 94px;
  }
}

.section-intro {
  overflow: hidden;
  background-color: #fff;
}
.section-intro .caption {
  width: 75%;
}
.section-intro .panel-aside img {
  width: auto;
  height: 100px;
}

.section-about {
  overflow: hidden;
}
.section-about .caption {
  width: 75%;
}
.section-about .panel-aside {
  padding-top: 100px;
  align-items: flex-start;
}

.section-services {
  overflow: hidden;
}
.section-services .caption {
  width: 75%;
}
.section-services .grid {
  position: relative;
}
.section-services .grid .grid-item {
  position: relative;
}
.section-services .grid .grid-item img {
  margin: auto;
  height: 60px;
  margin-bottom: 16px;
}
@media (max-width: 1023px) {
  .section-services .grid .grid-item p {
    font-size: 14px;
  }
}
.section-services .grid .grid-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 2px;
}
@media (max-width: 767px) {
  .section-services .grid .grid-item::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
  }
}
.section-services .grid .grid-item:nth-child(1)::after {
  background: linear-gradient(to bottom, #EBA363, #EB9372);
}
@media (max-width: 767px) {
  .section-services .grid .grid-item:nth-child(1)::after {
    background: #F7935A;
  }
}
.section-services .grid .grid-item:nth-child(1)::before {
  background: linear-gradient(to right, #EBA363, #BE608B);
}
.section-services .grid .grid-item:nth-child(2)::after {
  background: linear-gradient(to bottom, #EB8C79, #D37385);
}
@media (max-width: 767px) {
  .section-services .grid .grid-item:nth-child(2)::after {
    background: none;
  }
}
.section-services .grid .grid-item:nth-child(2)::before {
  background: linear-gradient(to right, #BE608B, #8732A0);
}
.section-services .grid .grid-item:nth-child(3)::after {
  background: linear-gradient(to bottom, #C86989, #A94E94);
}
@media (max-width: 767px) {
  .section-services .grid .grid-item:nth-child(3)::after {
    background: #EC7A6A;
  }
}
.section-services .grid .grid-item:nth-child(3)::before {
  background: linear-gradient(to right, #EBA363, #BE608B);
}
.section-services .grid .grid-item:nth-child(4)::after {
  background: linear-gradient(to bottom, #9C4498, #8732A0);
}
@media (max-width: 767px) {
  .section-services .grid .grid-item:nth-child(4)::after {
    background: none;
  }
}
.section-services .grid .grid-item:nth-child(4)::before {
  background: linear-gradient(to right, #BE608B, #8732A0);
}
@media (max-width: 767px) {
  .section-services .grid .grid-item:nth-child(5)::after {
    background: linear-gradient(to bottom, #EBA363, #EB9372);
  }
}
@media (max-width: 767px) {
  .section-services .grid .grid-item:nth-child(5)::after {
    background: #D56080;
  }
}
.section-services .grid .grid-item:nth-child(5)::before {
  background: linear-gradient(to right, #EBA363, #BE608B);
}
.section-services .grid .grid-item:nth-child(6)::after {
  background: linear-gradient(to bottom, #EB9372, #E07D81);
}
@media (max-width: 767px) {
  .section-services .grid .grid-item:nth-child(6)::after {
    background: none;
  }
}
.section-services .grid .grid-item:nth-child(6)::before {
  background: linear-gradient(to right, #BE608B, #8732A0);
}
.section-services .grid .grid-item:nth-child(7)::after {
  background: linear-gradient(to bottom, #EB8C79, #B45890);
}
@media (max-width: 767px) {
  .section-services .grid .grid-item:nth-child(7)::after {
    background: #C14992;
  }
}
.section-services .grid .grid-item:nth-child(7)::before {
  background: linear-gradient(to right, #EBA363, #BE608B);
}
.section-services .grid .grid-item:nth-child(8)::after {
  background: linear-gradient(to bottom, #C86989, #8934A0);
}
@media (max-width: 767px) {
  .section-services .grid .grid-item:nth-child(8)::after {
    background: none;
  }
}
.section-services .grid .grid-item:nth-child(8)::before {
  background: linear-gradient(to right, #BE608B, #8732A0);
}
.section-services .grid .grid-item:nth-child(9)::after {
  background: linear-gradient(to bottom, #9C4498, #8732A0);
}
@media (max-width: 767px) {
  .section-services .grid .grid-item:nth-child(9)::after {
    background: #A130A2;
  }
}
@media (min-width: 768px) {
  .section-services .grid::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    height: 2px;
    width: 100%;
    background: linear-gradient(to right, #EBA363, #8732A0);
  }
}

.section-footer {
  position: relative;
}
.section-footer .container {
  position: relative;
  z-index: 1;
}
.section-footer .footer-brand {
  height: 140px;
}
@media (max-width: 1023px) {
  .section-footer .footer-brand {
    height: 80px;
  }
}
.section-footer .panel-aside {
  align-items: flex-start;
}
.section-footer .panel-aside img {
  position: relative;
  top: -8rem;
}
@media (max-width: 767px) {
  .section-footer .panel-aside img {
    top: -4rem;
  }
}
.section-footer .social li a {
  display: block;
}
.section-footer .social li a:hover {
  background-color: #fff;
}
.section-footer .social li a img {
  width: 3rem;
  height: 3rem;
}
@media (max-width: 767px) {
  .section-footer .footer-address {
    text-align: left;
    margin-top: 3rem;
    max-width: 75%;
  }
}
.section-footer .watermark {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: auto;
  height: 540px;
  z-index: 0;
}
@media (max-width: 1199px) {
  .section-footer .watermark {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .section-footer .watermark {
    display: none;
  }
}

.section-banner {
  padding-top: 190px;
  overflow: hidden;
  height: 500px;
}
@media (max-width: 1023px) {
  .section-banner {
    padding-top: 146px;
    height: 400px;
  }
}
@media (max-width: 767px) {
  .section-banner {
    padding-top: 95px;
    height: 300px;
  }
}
@media (max-width: 480px) {
  .section-banner {
    padding-top: 94px;
    height: 200px;
  }
}
.section-banner .panel-aside {
  padding-top: 190px;
}
@media (max-width: 1023px) {
  .section-banner .panel-aside {
    padding-top: 146px;
  }
}
@media (max-width: 767px) {
  .section-banner .panel-aside {
    padding-top: 95px;
  }
}
@media (max-width: 480px) {
  .section-banner .panel-aside {
    padding-top: 94px;
  }
}

#menu {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100vh;
  top: 0;
  position: fixed;
  will-change: left;
  width: 400px;
  right: -520px;
}
@media (max-width: 1023px) {
  #menu {
    width: 240px;
    right: -360px;
  }
}
#menu.menu-active {
  right: 0;
  box-shadow: 1px -5px 2px rgba(0, 0, 0, 0.2);
}
#menu .close {
  cursor: pointer;
  display: inline-flex;
  height: 30px;
  justify-content: center;
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 30px;
  z-index: 1;
  transition: 0.5s ease-in-out;
}
#menu .cross {
  display: grid;
  height: 100%;
  place-items: center;
  position: absolute;
  width: 100%;
}
#menu .cross .bar {
  width: 100%;
  height: 1px;
  position: absolute;
  background-color: var(--colorBlack);
  border-radius: 10px;
  transform-origin: center center;
}
#menu .cross .bar:first-child {
  transform: rotate(-45deg);
}
#menu .cross .bar:last-child {
  transform: rotate(45deg);
}
#menu.menu-scroll .close {
  top: 1rem;
}

.brand-menu {
  max-width: 160px;
  margin: auto;
}
@media (max-width: 1023px) {
  .brand-menu {
    max-width: 120px;
  }
}

.menu-items {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
.menu-items.active {
  opacity: 1;
  transform: translateY(0);
}
.menu-items.show {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.menu-items.show.appear {
  opacity: 1;
  transform: translateY(0);
}
.menu-items.show.appear.appear-1 {
  transition-delay: 0.2s;
}
.menu-items.show.appear.appear-2 {
  transition-delay: 0.4s;
}
.menu-items.show.appear.appear-3 {
  transition-delay: 0.6s;
}
.menu-items.show.appear.appear-4 {
  transition-delay: 0.8s;
}
.menu-items.show.appear.appear-5 {
  transition-delay: 1s;
}
.menu-items.show.appear.appear-6 {
  transition-delay: 1.2s;
}
@media (max-width: 767px) {
  .menu-items .text-large {
    font-size: 20px;
  }
}
.menu-items .nav-link {
  transition: 0.2s ease-in-out;
}
.menu-items .nav-link:hover {
  margin-right: 8px;
  color: var(--colorPrimary) !important;
}

.chevron {
  position: absolute;
  right: 8px;
  height: 12px;
}

.menu-social {
  display: flex;
  align-items: center;
}
.menu-social a {
  width: 44px;
  height: 44px;
  padding: 12px;
  border: 2px solid var(--colorPrimary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s ease-in-out;
  background-color: #fff;
}
.menu-social a:hover {
  background-color: var(--colorPrimary);
}
.menu-social a:hover svg path {
  fill: #fff !important;
}
.menu-social a svg {
  height: 100%;
}

.menu-mobile {
  display: flex;
  flex-direction: column;
}/*# sourceMappingURL=style.css.map */