@font-face {
  font-family: 'Hanken Grotesk';
  src: url('../fonts/HankenGrotesk-Black.woff2') format('woff2'),
      url('../fonts/HankenGrotesk-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Hanken Grotesk';
  src: url('../fonts/HankenGrotesk-Bold.woff2') format('woff2'),
      url('../fonts/HankenGrotesk-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Hanken Grotesk';
  src: url('../fonts/HankenGrotesk-Italic.woff2') format('woff2'),
      url('../fonts/HankenGrotesk-Italic.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Hanken Grotesk';
  src: url('../fonts/HankenGrotesk-BoldItalic.woff2') format('woff2'),
      url('../fonts/HankenGrotesk-BoldItalic.woff') format('woff');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Hanken Grotesk';
  src: url('../fonts/HankenGrotesk-Light.woff2') format('woff2'),
      url('../fonts/HankenGrotesk-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Hanken Grotesk';
  src: url('../fonts/HankenGrotesk-Regular.woff2') format('woff2'),
      url('../fonts/HankenGrotesk-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Mango Grotesque SemBd';
  src: url('../fonts/Humane-SemiBold.woff2') format('woff2'),
      url('../fonts/Humane-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Making Moves ver3';
  src: url('../fonts/MakingMovesver3.woff2') format('woff2'),
      url('../fonts/MakingMovesver3.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}





/* ROOT VARS */
:root {
--font-default: "Hanken Grotesk";
--font-primary: "Mango Grotesque SemBd";
--font-secondary: "Making Moves ver3";

--color-default-light: #e3e3e3;
--color-default: #535454;
--color-default-dark: #333333;

--color-primary-light: #ff8d8d;
--color-primary: #e42320;
--color-primary-dark: #ba1111;

--color-secondary-light: #cbe8e7;
--color-secondary: #b8d0d0;
--color-secondary-dark: #849b9a;

--color-tertiary-light: #f9f5eb;
--color-tertiary: #eae7dc;
--color-tertiary-dark: #c5bfaf;

--color-white: #FFFFFF;
--color-light: #f3f5fa;
--color-dark: #1a1f24;

--regular-shaodw: 0 .5rem 1rem rgba(0,0,0,.15)!important;

scroll-behavior: smooth;
}












/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-default);
  color: var(--color-default-dark);
}

p {
  font-size: 15px;
}

.bold-cursive {
  font-family: 'Hanken Grotesk';
  font-weight: bold;
  font-style: italic;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--color-primary-dark);
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--color-primary-dark);
  border-top-color: var(--color-white);
  border-bottom-color: var(--color-white);
  border-radius: 60px;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}





/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #075e54;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}





/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/




.topbar {
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: var(--color-dark);
  padding: 0;
}

.topbar .contact-info a i {
  font-style: normal;
  color: var(--color-dark);
  line-height: 0;
}

.topbar .contact-info a {
  padding-left: 5px;
  color: var(--color-dark);
  transition: .3s;
}

@media (max-width: 575px) {

  .topbar .contact-info a {
    font-size: 10px;
  }
}


.topbar .contact-info a:hover, 
.topbar .contact-info a:hover i {
  color: var(--color-primary);
  transition: .3s;
}

.topbar .social-links a {
  color: var(--color-dark);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.topbar .social-links a:hover {
  color: var(--color-primary);
}





#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: var(--color-primary);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}

#logo {
  max-height: 30px;
}






















/*--------------------------------------------------------------
# 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: 13px;
  letter-spacing: 1px;
  font-weight: bold;
  color: var(--color-default-dark);
  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(--color-primary);
}








/*
* HEADER SCROLLED
*/
#header.header-scrolled .navbar a,
#header.header-inner-pages .navbar a,
#header.header-scrolled .navbar a:focus,
#header.header-inner-pages .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-weight: bold;
  color: rgba(255,255,255,.7);
  white-space: nowrap;
  transition: 0.3s;
  font-size: 13px;
  letter-spacing: 1px;
}


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




#header.header-scrolled .navbar a:hover,
#header.header-inner-pages .navbar a:hover,
#header.header-scrolled .navbar .active,
#header.header-inner-pages .navbar .active,
#header.header-scrolled .navbar .active:focus,
#header.header-inner-pages .navbar .active:focus,
#header.header-scrolled .navbar li:hover>a,
#header.header-inner-pages .navbar li:hover>a {
  color: var(--color-white);
}



.getstarted,
.getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: .5rem;
  color: var(--color-primary);
  background: var(--color-white);
  font-size: 13px;
  letter-spacing: 1px;
  border: 2px solid var(--color-primary);
  font-weight: 600;
  transition: all .3s;
}

.getstarted:hover,
.getstarted:focus:hover {
  border: 2px solid var(--color-white);
  color: var(--color-white);
  background: var(--color-primary);
  transition: all .3s;
}




.btn-get-started {
  font-family: var(--font-default);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: .5rem;
  transition: 0.3s;
  margin: 10px 0 0 0;
  color: var(--color-white);
  background: var(--color-primary);
  border: none;
}

.btn-get-started:hover {
  background: var(--color-primary-light);
}

.contact-list li {
  margin-bottom: 10px;
}
.contact-list li a {
  color: var(--color-default);
  transition: .3s;
}
.contact-list li a:hover {
  color: var(--color-primary);
  transition: .3s;
}


















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

.mobile-nav-toggle.bi-x {
  color: var(--color-white);
}

@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(0, 0, 0, 0.5);
  transition: 0.3s;
  z-index: 999;
}

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

.navbar-mobile ul {
  display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 10px 0;
    border-radius: 0;
    background-color: var(--color-primary);
    overflow-y: auto;
    transition: 0.3s;
    align-content: center;
    flex-direction: column;
    justify-content: center;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 24px;
  color: rgba(255,255,255,.5);
}

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

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: var(--color-dark);
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: var(--color-white);
  border: 1px solid var(--color-light);
  box-shadow: none;
}

.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(--color-primary);
}

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


.navbar-mobile .getstarted {
    display: flex;
    justify-content: center;
}




/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 100px 0;
  overflow: hidden;
}
.bg-cover {
  background-position: center;
  background-size: cover;
  width: 100%;
}

.bg-cover-cuadrado {
  background-position: center;
  background-size: cover;
  width: 100%;
  content: "";
  padding-bottom: 100%;
  border-radius: 0 3rem 3rem 3rem;
  height: 100px;
}








/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 800px;
}

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

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: var(--color-dark);
}

#hero h2 {
  color: var(--color-default);
  margin-bottom: 50px;
  font-size: 20px;
}

#hero .btn-get-started {
  font-family: var(--font-default);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: .5rem;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: var(--color-white);
  background: var(--color-primary);
}

#hero .btn-get-started:hover {
  background: var(--color-primary-light);
}


@media (max-width: 991px) {
  #hero {
    height: 100vh;
    text-align: center;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

}

@media (max-width: 575px) {
  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}


.flag-img-01 {
  position: absolute;
  z-index: 1;
  right: 0;
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
  height: 600px;
}











/*--------------------------------------------------------------
# Servicios Section
--------------------------------------------------------------*/

.custom-content-01 {
  background-color: var(--color-default-dark);
  color: #FFF;
  border-radius:  0 3rem 3rem 3rem;
  padding: 40px 20px 20px 20px;
  height: 600px;
}
.custom-content-01 h1 {
  color: #FFF;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 24px;
  margin-bottom: 40px;
}





.custom-content-02 {
  background-color: var(--color-secondary);
  color: var(--color-default-dark);
  border-radius:  0 3rem 3rem 3rem;
  padding: 40px 20px 20px 20px;
  height: 600px;
}
.custom-content-02 h1 {
  color: var(--color-default-dark);
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 24px;
  margin-bottom: 40px;
}

.custom-content-03 {
  background-color: var(--color-tertiary);
  color: var(--color-default-dark);
  border-radius:  0 3rem 3rem 3rem;
  padding: 40px 20px 20px 20px;
  height: 600px;
}
.custom-content-03 h1 {
  color: var(--color-default-dark);
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 24px;
  margin-bottom: 40px;
}


.custom-content-04 {
  background-color: #FFF;
  border: 2px solid var(--color-default-dark);
  color: var(--color-default-dark);
  border-radius:  0 3rem 3rem 3rem;
  padding: 40px 20px 20px 20px;
  height: calc(300px - 12px);
  display: flex;
  align-items: center;
}
.custom-content-04 h1 {
  color: var(--color-default-dark);
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 24px;
  margin-bottom: 40px;
}



.custom-content-05 {
  background-color: var(--color-primary);
  border-radius:  0 3rem 3rem 3rem;
  padding: 40px 20px 20px 20px;
  height: calc(300px - 12px);
  display: flex;
  align-items: center;
}
.custom-content-05 h1 {
  color: #FFF;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 24px;
  margin-bottom: 40px;
}




/*--------------------------------------------------------------
# Nosotros section
--------------------------------------------------------------*/

#nosotros .spaced-content-new h1 {
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--color-primary);
}
#nosotros .spaced-content-new p {
  font-size: 16px;
}
#nosotros .spaced-content-new h4 {
  font-size: 20px;
}



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

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

.swiper {
  margin-left: auto;
  margin-right: auto;
}

.swiper-button-next, .swiper-button-prev {
  background-color: var(--color-light);
  padding: 5px 22px;
  border-radius: 5rem;
  transition: .3s;
}
.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 20px;
  color: var(--color-primary);
  font-weight: 900;
  transition: .3s;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
  background-color: var(--color-primary);
  transition: .3s;
}
.swiper-button-next:hover::after, .swiper-button-prev:hover::after {
  font-size: 20px;
  color: #FFF;
  transition: .3s;
}

.spaced-content-02 {
  padding: 0 80px;
}




#clientes .spaced-content-new h1 {
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--color-white);
}


.txt-about h1{
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 75px;
  text-align: left !important;
}
.txt-about span {
  font-family: var(--font-secondary);
  font-size: 14px;
  color: var(--color-secondary-dark);
  position: absolute;
  bottom: 45px;
  left: 0;
  right: 0;
  transform: rotate(-3deg);
  -webkit-transform: rotate(-3deg);
  -moz-transform: rotate(-3deg);
}

.social-media-list {
  display: flex;
}
.social-media-list li {
  margin-right: 5px;
}
.social-media-list li a {
  background-color: var(--color-light);
  color: var(--color-default);
  border-radius: 0 10rem 10rem 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  transition: .3s;
}
.social-media-list li a:hover {
  background-color: var(--color-primary);
  color: #FFF;
  transition: .3s;
}







/*--------------------------------------------------------------
# Contacto section
--------------------------------------------------------------*/
#contacto {
  background-color: var(--color-tertiary);
}
#contacto .spaced-content {
  padding: 0 50px 0 0;
}
#contacto .spaced-content h1 {
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--color-primary);
}
#contacto .spaced-content p {
  font-size: 16px;
}
#contacto .spaced-content h4 {
  font-size: 20px;
}
.spaced-content-03 {
  background-color: #FFF;
  /**/
  padding: 30px;
}
.modal-content {
  border-radius: 0  3rem 3rem 3rem !important;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background-color: var(--color-tertiary);
}

#footer .footer-top {
  padding: 60px 0 0px 0;
  background: var(--color-tertiary);
}


#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

.icon-zorro {
  width: 80px;
}

.slogan {
  font-style: italic;
  font-weight: bold;
  font-size: 20px;
  color: var(--color-dark);
}



.inline-list a {
  font-size: 15px;
  color: var(--color-default);
  transition: .3s;
}
.inline-list a:hover {
  color: var(--color-primary);
  transition: .3s;
}
.inline-list i {
  color: var(--color-primary);
  font-size: 40px;
  margin-bottom: 15px;
}

















/*FLIPING CARDS*/

.service-card {
  color: inherit;
  cursor: pointer;
  width: 100%;
  height: 600px;
  perspective: 1000px;
  position: relative;
  display: block;
}

.front,
.back {
  display: flex;
  border-radius: 0  3rem 3rem 3rem !important;
  text-align: center;
  justify-content: center;
  align-items: center;
  position: absolute;
  height: 100%;
  width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transition: ease-in-out 600ms;
}

.front {
  padding: 2rem;
  font-size: 1.618rem;
  font-weight: 600;
  color: var(--color-default);
  overflow: hidden;
}
.service-card:hover .front {
  transform: rotateY(180deg);
}
.service-card .front h1{
  font-size: 24px;
  font-weight: 900;
}
.service-card .front .txt-front{
  height: 130px;
}
.service-card:nth-child(even):hover .front {
  transform: rotateY(-180deg);
}

.back {
  transform: rotateY(-180deg);
  padding: 0 2em;
  color: var(--color-default);
  text-align: left !important;
}
.service-card:hover .back {
  transform: rotateY(0deg);
}
.service-card:nth-child(even) .back {
  transform: rotateY(180deg);
}
.service-card:nth-child(even) .back .button {
  background: linear-gradient(135deg, #e61a80, #e61a3c);
}
.service-card:nth-child(even) .back .button:before {
  box-shadow: 0 0 10px 10px rgba(230, 26, 60, 0.25);
  background-color: rgba(230, 26, 60, 0.25);
}
.service-card:nth-child(even):hover .back {
  transform: rotateY(0deg);
}


.special-height-card .service-card {
  height: 287px !important;
}



.card-color-1 .front, .card-color-1 .back {
  background-color: var(--color-dark);
  color: #FFF;
}   
.card-color-1 .front h1 {
  color: #FFF;
}
.card-color-2 .front, .card-color-2 .back {
  background-color: var(--color-secondary);
  color: var(--color-dark);
}   
.card-color-3 .front, .card-color-3 .back {
  background-color: var(--color-tertiary);
  color: var(--color-dark);
}   
.card-color-4 .front, .card-color-4 .back {
  background-color: var(--color-white);
  border: 2px solid var(--color-dark);
  color: var(--color-dark);
}   
.card-color-5 .front, .card-color-5 .back {
  background-color: var(--color-white);
  border: 2px solid var(--color-primary);
  color: var(--color-dark);
}   


@media (max-width: 768px) {
  #nosotros .spaced-content {
    padding: 0;
  }
  #contacto .spaced-content {
    padding: 0;
    margin-bottom: 40px;
  }
  .icon-zorro {
    width: 70px;
  }
  #footer .copyright {
    width: 100%;
    text-align: center;
  }
  #footer .credits {
    width: 100%;
    text-align: center;
  }
  .txt-about h1 {
    font-size: 75px;
  }
  .txt-about span {
    font-size: 13px;
    bottom: 46px;
  }
  .social-media-list {
    display: flex;
    justify-content: start;
  }
  .spaced-content-02 {
    padding: 0 25px;
  }
}















/*SERVICES*/
/*Services Styles*/

.services__box {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 0px 20px 20px 20px;
  overflow: hidden;
  background-color: var(--color-light)
}
.services__box:hover .services__content {
  transform: scale(1);
  transition-delay: 0.3s;
}
.services__box:hover .services__icon {
  width: 100%;
  height: 0;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  transition-delay: .3s;
  overflow: hidden;
}

.services__icon {
  position: absolute;
  display: flex;
  justify-content: start;
  align-items: center;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100%;
  background: var(--i);
  transition: 0.3s;
  z-index: 2;
  transition-delay: 0.3s;
  text-align: left;
  background-color: var(--color-light)
}
.services__content {
  position: relative;
  padding: 40px 20px;
  text-align: left;
  transform: scale(0);
  transition: 0.3s;
  transition-delay: 0s;
}
.services__title {
  text-align: left;
  font-size: 1.2rem;
  font-weight: 600;
}
.services__description {
  font-size: 0.95rem;
  font-weight: 400;
  padding-top: 10px;
}