/*
Theme Name: Crossity
Author: Crossity
Author URI: https://crossity.com
Version: 1.0
Text Domain: crossity
*/

/* Metropolis Font Family */
@font-face {
  font-family: 'Metropolis';
  src: url('./assets/fonts/Metropolis-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Metropolis';
  src: url('./assets/fonts/Metropolis-ThinItalic.otf') format('opentype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Metropolis';
  src: url('./assets/fonts/Metropolis-ExtraLight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Metropolis';
  src: url('./assets/fonts/Metropolis-ExtraLightItalic.otf') format('opentype');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Metropolis';
  src: url('./assets/fonts/Metropolis-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Metropolis';
  src: url('./assets/fonts/Metropolis-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Metropolis';
  src: url('./assets/fonts/Metropolis-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Metropolis';
  src: url('./assets/fonts/Metropolis-RegularItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Metropolis';
  src: url('./assets/fonts/Metropolis-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Metropolis';
  src: url('./assets/fonts/Metropolis-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Metropolis';
  src: url('./assets/fonts/Metropolis-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Metropolis';
  src: url('./assets/fonts/Metropolis-SemiBoldItalic.otf') format('opentype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Metropolis';
  src: url('./assets/fonts/Metropolis-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Metropolis';
  src: url('./assets/fonts/Metropolis-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Metropolis';
  src: url('./assets/fonts/Metropolis-ExtraBold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Metropolis';
  src: url('./assets/fonts/Metropolis-ExtraBoldItalic.otf') format('opentype');
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Metropolis';
  src: url('./assets/fonts/Metropolis-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Metropolis';
  src: url('./assets/fonts/Metropolis-BlackItalic.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

:root {
  /** Fuentes **/
  --main-font: "Metropolis", "Lato", sans-serif;
  --secondary-font: "Outfit", sans-serif;
  --tertiary-font: "Space Grotesk", sans-serif;

  /** Colores **/
  /* --main-color: #4880e6; */
  --main-color: #2581ea;
  --secondary-color: #390094;
  --dark-color: #1c1c1c;
  --white-color: #ffffff;
}

.slick-list {
  overflow: visible !important;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem; /* Define un tamaño cómodo para el texto principal */
  line-height: 1.6; /* Opcional: Mejora la legibilidad */
  background: var(--dark-color);
  color: var(--white-color);
  font-family: var(--main-font);
  /* overflow: hidden; */
}

.wow {
  visibility: hidden;
}

/* bootstrap override */
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1330px;
  }
}

a,
a:hover,
a:focus {
  color: inherit;
  text-decoration: none;
  transition: 0.3s all;
}

button:focus {
  outline: none;
}

a:hover {
  color: var(--midnight-blue-color);
}

.btn {
  font-size: 1.6rem;
  font-family: var(--secondary-font);
  font-weight: 500;
  transition: 0.3s all;
}

@media screen and (max-width: 1200px) {
  .btn {
    font-size: 1.4rem;
  }
}

.btn-primary {
  background: var(--main-color);
  border-radius: 50px;
  padding: 10px 15px;
}

.btn-primary.btn-dark {
  background: var(--dark-color);
  color: var(--white-color);
}

@media screen and (max-width: 1200px) {
  .btn-primary {
    padding: 8px 12px;
  }
}

.btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 30px;
  border-radius: 50px;
}

@media screen and (max-width: 1200px) {
  .btn-outline-light {
    padding: 8px 20px;
  }
}

@media screen and (max-width: 768px) {
  .btn-outline-light {
    padding: 8px 15px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 576px) {
  .btn-outline-light {
    padding: 6px 10px;
    font-size: 1.2rem;
  }
}

.btn-outline-dark {
  border: 2px solid var(--dark-color);
  color: var(--dark-color);
  padding: 10px 30px;
  border-radius: 10px;
}

@media screen and (max-width: 1200px) {
  .btn-outline-dark {
    padding: 8px 20px;
  }
}


.title {
  font-family: var(--secondary-font);
  position: relative;
  margin-bottom: 25px;
  font-size: 3.4rem;
  font-weight: 300;
  white-space: pre-wrap;
  font-style: italic;
}

@media screen and (max-width: 768px) {
  .title {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
}

.title span.text span {
  font-weight: 700;
  font-style: normal;
}
.title img{
    height: 60px;
    display: none;
}

.title span.text {
  min-width: max-content;
  padding-right: 4rem;
}

.title-center {
  text-align: center;
  font-size: 4rem;
    margin-bottom: 4rem;
    font-weight: 300;
    font-style: italic;

}

.title-center span {
  font-weight: 700;
  font-style: normal;
}

.title h1,
.title h2,
.title h3,
.title h4,
.title h5 {
  margin: 0;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 1.8rem;
}

b {
  font-weight: bold;
}

/* Buttons */

/* Header */

.header {
    position: relative;

  top: 0;
  left: 0;
  width: 100%;
  min-height: 70px;
  background: #fff;
  /* transition: 0.5s all; */
  z-index: 999;
  background: transparent;
}

.header.header-home{
  position: absolute;
}

.header.active{
  background: var(--dark-color);
}

.header.sticky {
  position: fixed !important;
  top: 0;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
  z-index: 9998;
  -webkit-animation: slideInDown 0.3s ease-out;
  -moz-animation: slideInDown 0.3s ease-out;

  background: var(--dark-color);
  /* color: var(--color-black); */
  /* background: var(--soft-cream-2-color);
  background: var(--white-color); */
}

.header,
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* position: absolute; */
}

.header .logo {
  display: block;
  max-width: 100px;
}

.header.fixed {
  position: fixed;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
  z-index: 9998;
  -webkit-animation: slideInDown 0.3s ease-out;
  -moz-animation: slideInDown 0.3s ease-out;
}

/* Header > Navigation */

.header .nav-menu {
  position: relative;
  float: right;
  width: 35px;
  padding: 15px 0;
  z-index: 21;
  cursor: pointer;
  overflow: hidden;
}

.header .nav-menu .menu-line {
  float: right;
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: #fff;
  border-radius: 6px;
  transition: 0.3s;
}

.header .nav-menu.active .menu-line:nth-child(1) {
  transform: rotate(45deg);
  width: 40px;
  margin-top: 14px;
}

.header .nav-menu.active .menu-line:nth-child(3) {
  transform: rotate(-45deg);
  width: 40px;
  margin-top: -16px;
}

.header .nav-menu.active .menu-line:nth-child(2) {
  opacity: 0;
}

.header .navigation {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  margin: 0;
  text-align: left;
  background: var(--dark-color);
  text-transform: uppercase;
  font-family: var(--secondary-font);
}

.header .navigation.active {
  display: block;
}

.header .navigation ul {
  position: relative;
  margin: 15px 0;
}

.header .navigation ul li a {
  display: block;
  position: relative;
  padding: 10px 15px;
  font-size: 18px;
  font-weight: 500;
}

.header .navigation ul li.active a,
.header .navigation ul li.current-menu-item a,
.header .navigation ul li a:hover {
  color: var(--main-color);
}

.header .navigation ul li.current-menu-item a {
  font-weight: bold;
}

.header .navigation .menu .menu-contact {
  margin-top: 15px;
  margin-left: 15px;
}

.header .navigation ul li ul {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header .navigation ul li.open-submenu > ul {
  display: block;
}

@media screen and (min-width: 1200px) {
  .header {
    min-height: 110px;
  }

  .header .logo {
    max-width: 160px;
  }

  .header .nav-menu {
    display: none;
  }

  .header .navigation {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    top: auto;
    left: auto;
    width: auto;
    background: transparent;
    float: right;
  }

  .header .navigation ul,
  .header .navigation ul li {
    position: relative;
    display: inline-block;
    vertical-align: middle;
  }

  .header .navigation ul {
    width: 100%;
    margin: 0;
    text-align: right;
  }

  .header .navigation ul.menu {
    order: 2;
  }

  .header .navigation ul.menu-info {
    order: 1;
    margin: 15px 0 10px;
  }

  .header .navigation .menu .menu-contact {
    margin-bottom: 10px;
  }

  .header .navigation > ul > li a {
    font-size: 15px;
  }

  .header .navigation .menu li a {
    position: relative;
    padding: 15px 10px 15px;
    text-align: left;
  }

  .header .navigation .menu-info li a {
    padding: 15px 10px;
    font-weight: 400;
  }

  .header .navigation .menu li a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 5px;
    background: var(--main-color);
    transition: 0.3s all;
  }

  .header .navigation .menu:not(.menu-info) li.active a:before,
  .header .navigation .menu:not(.menu-info) li.current-menu-item a:before,
  .header .navigation .menu:not(.menu-info) li a:hover:before {
    left: 0;
    width: 100%;
  }

  .header .navigation .menu .menu-contact {
    margin-top: 0;
    margin-left: 10px;
  }

  .header .navigation .menu .menu-contact a:before {
    content: none !important;
  }

  .header .navigation .menu li ul {
    display: none;
    position: absolute;
    top: 144px;
    left: 0;
    width: 150px;
    background: #fff;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
  }

  .header .navigation .menu li ul li {
    display: block;
    margin: 0;
  }

  .header .navigation .menu li ul li a {
    display: block;
    padding: 10px 15px;
    font-size: 15px;
    color: #555;
    border-bottom: 1px solid #eee;
  }

  .header .navigation .menu li ul li:last-child a {
    border-bottom: 0;
  }

  .header .navigation .menu li ul li ul {
    top: 0;
    left: 150px;
    width: 200px;
  }

  .header .navigation .menu li ul li ul ul {
    left: 200px;
  }

  .header .navigation .menu-info li.menu-newsletter {
    margin-right: 5px;
  }

  .header .navigation .menu-info li.menu-newsletter a {
    padding: 0 15px;
    line-height: 25px;
    border: 1px solid #000;
    border-radius: 50px;
  }

  .header .navigation .menu-info li.menu-newsletter a i {
    display: inline-block;
    vertical-align: 0;
    margin-right: 5px;
  }

  .header .navigation .menu-info li.menu-newsletter a:hover {
    color: #fff;
    background: #ef4648;
    border-color: #ef4648;
  }

  .header .navigation .menu-info li.menu-sm {
    margin: 0 2px;
  }

  .header .navigation .menu-info li.menu-sm a {
    padding: 0;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    border: 1px solid #000;
    border-radius: 50%;
  }

  .header .navigation .menu-info li.menu-sm a:hover {
    color: #fff;
    background: #ef4648;
    border-color: #ef4648;
  }

  .header .navigation ul li:hover > ul {
    display: block;
  }

  .header.fixed {
    min-height: 80px;
  }

  .header.fixed .logo {
    max-width: 100px;
  }

  .header.fixed .navigation .menu li a {
    padding: 30px 10px;
  }

  .header.fixed .navigation .menu .menu-contact {
    margin-bottom: 0;
  }

  .header.fixed .navigation .menu .menu-contact a {
    margin: 0;
    padding: 10px 25px;
  }

  .header.fixed .navigation .menu-info {
    display: none;
  }

  .home .header:not(.fixed) {
    position: absolute;
  }

  .home .header:not(.fixed) .logo {
    /* filter: brightness(0) invert(1);
        -webkit-filter: brightness(0) invert(1); */
  }

  .home .header:not(.fixed) .navigation .menu li a:not(:hover) {
    color: #fff;
  }

  .home .header:not(.fixed) .navigation .menu-info li.menu-newsletter a {
    border-color: #fff;
  }

  .home .header:not(.fixed) .navigation .menu-info li.menu-sm a {
    border-color: #fff;
  }
}

@media screen and (max-width: 991px) {
  .header .navigation {
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.1);
  }

  .header .navigation .menu li.active a,
  .header .navigation .menu li.current-menu-item a,
  .header .navigation .menu li a:hover {
    background: var(--main-color);
    color: #fff;
  }

  .header .navigation .menu li:not(.menu-contact) a {
    border-bottom: 1px solid #eee;
  }

  .header .navigation ul li.open-submenu > ul {
    background: rgba(0, 0, 0, 0.05);
  }

  .header .navigation ul li ul li a {
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 16px;
  }
}



.wpcf7-form .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.wpcf7-form .form-control:focus,
.wpcf7-form .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.wpcf7-form .btn-primary {
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.wpcf7-validation-errors,
.wpcf7-mail-sent-ng,
.wpcf7-mail-sent-ok {
    border-radius: 0.375rem;
    padding: 15px;
    margin: 20px 0;
}

.wpcf7-mail-sent-ok {
    background-color: #d1edff;
    border: 1px solid #0dcaf0;
    color: #055160;
}

.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
    background-color: #f8d7da;
    border: 1px solid #dc3545;
    color: #721c24;
}

.wpcf7-spinner {
    margin-left: 10px;
}


.footer .container p{
  text-align: center;
  padding: 5rem 0 1rem;
}


/* Social Media Styles */
.social-media-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 20px 0;
  padding-bottom: 4rem;
}

.social-media-container li a.socialmedia-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  background: var(--secondary-color);
  margin: 10px;
  border-radius: 50px;
  color: white;
  position: relative;
  overflow: hidden;
  transition: background-color 0.1s ease-in-out;
  transition-delay: 0.3s;
  text-decoration: none;
}

.social-media-container li a.socialmedia-icon i {
  line-height: 54px;
  font-size: 25px;
  transition: 0.2s;
  margin: 0 auto;
}

.social-media-container li a.socialmedia-icon:hover {
  background: var(--main-color);
}

.social-media-container li a.socialmedia-icon:hover i {
  transform: scale(1.3);
  color: #f1f1f1;
}

.social-media-container li a.socialmedia-icon::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: var(--main-color);
  left: -110%;
  top: 90%;
  transform: rotate(45deg);
}

.social-media-container li a.socialmedia-icon:hover::before {
  animation: socialMediaAnimation 0.7s 1 forwards;
}

@keyframes socialMediaAnimation {
  0% {
    left: -110%;
    top: 90%;
  }
  50% {
    left: 15%;
    top: -30%;
  }
  100% {
    top: -10%;
    left: -10%;
  }
}