@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

*, *:before, *:after {
  box-sizing: border-box;
}
:root {
    --bg-color: #2E2E2E;
    --tone-color: #2667C9;
    --tone-dark: #2E5589;
    --link-color: #4C86BB;

    --white: #FFF;
    --dark: #30384b;
    --dark-grey: #999999;
    --grey: #808080;
    --success: #5AC294;
    --error: #CD3030;
    
    --border-color: #eaebed;
    --light-grey: #f8f8f8;
    --border-radius: 0px;

    --container-width: 1040px;

  }
  
[v-cloak] {opacity: 0;}
html{scroll-behavior: smooth;}
body,html{
    background-color: var(--bg-color);
    color: white;
    margin: 0;
    font-family: "Inter", sans-serif !important;
}
hr{border: solid 1px #323232;}
img{
  max-width: 100%;
}
h1, h2{
  font-weight: nromal !important;
}
.page-section{
  padding-top: 120px;
}
@media (max-width: 992px) {
  .page-section{
    padding-top: 100px;
  }
}

/*********************************************/
/****************FONT UTILITIES***************/
/*********************************************/
.bebas{
    font-family: "Bebas Neue", serif !important;
    font-optical-sizing: auto;
}
.tone{color: var( --tone-color);}
.tone-light{color: var(--tone-light);}
.tone-dark{color: var(--tone-dark);}

.white{color: white !important;}
.dark{color: var(--dark);}
.dark-grey{color: var(--dark-grey);}
.grey{color: var(--grey);}
.light-grey{color: var(--text-light);}
.bg-blue{background-color: var(--tone-blue);}
.bg-dark-blue{background-color: var(--dark-blue);}
.bg-yellow{background-color: var(--tone-yellow);}
.bg-green{background-color: var(--tone-green);}
.bg-blue-highlight{background-color: var(--blue-highlight)}

.success{color: var(--success);}
.error{color: var(--error);}

.italic{font-style: italic}
.uppercase{text-transform: uppercase}
.normal{font-weight: normal !important;}
.bold{font-weight: bold;}
.medium{font-weight: 600;}
.light{font-weight: 300;}

.fs10{font-size:10px !important;}
.fs14{font-size:14px !important;}
.fs12{font-size:12px !important;}
.fs18{font-size:18px !important;}
.fs16{font-size:16px !important;}
.fs20{font-size:20px !important;}
.fs24{font-size:24px !important;}
.fs26{font-size:26px !important;}
.fs28{font-size:28px !important;}
.fs36{font-size:36px !important;}
.fs48{font-size:48px !important;}
.fs64{font-size:64px !important;}
.fs100{font-size:100px !important;}

.gap-8{gap: 8px}
.gap-12{gap: 12px;}
.gap-24{gap: 24px}

.section-padding{
  padding: 40px 0;
}
@media (max-width: 992px) {
  .section-padding{
    padding: 15px 0;
  }
}

.pointer{
  cursor: pointer;
}

/****************LINKS AND BUTTONS***************/
a{text-decoration: none}
a.underlined:hover{text-decoration: underline}
.btn {
  display: inline-block;
  padding: 14px 25px;
  font-size: 16px;
  text-align: center;
  text-decoration: none; /* Sin subrayado */
  border-radius: 20px; /* Bordes redondeados */
  border: none; /* Sin bordes adicionales */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Sombra sutil */
  transition: all 0.3s ease; /* Efecto suave al pasar el cursor */
  cursor: pointer;
  font-family: "Inter", sans-serif !important;

}
.btn-sm{
  padding: 10px 20px;
    font-size: 14px;
}

.btn-white{
  background-color: white; /* Azul oscuro basado en el diseño */
  color: var(--dark);
}
.btn-white:hover {
  background-color: #f6f6f6; /* Un azul más claro para el hover */
  transform: translateY(-2px); /* Efecto de elevarse */
}
.btn-white:active {
  background-color: #f6f6f6; /* Azul más oscuro al hacer clic */
  transform: translateY(0); /* Sin elevación al presionar */
}

.btn-tone{
  background-color: var(--tone-color); 
  color: white;
}
.btn-tone:hover {
  background-color: #232260;
  transform: translateY(-2px); 
}
.btn-tone:active {
  background-color: #232260; 
  transform: translateY(0); 
}


.btn-outline{
  background-color: transparent; 
  border: solid 1px white;
  color: white;
}
.btn-outline:hover {
  background-color: white;
  border: solid 1px white;
  transform: translateY(-2px); 
  color: var(--dark);
}
.btn-outline:active {
  background-color: white;
  transform: translateY(0); 
  color: var(--dark);
}



/****************NAVIGATION***************/

.main-nav{  
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 95%;
  background-color: #141414;
  z-index: 999;
  border-radius: 4px;
}
.main-nav .container-fluid{
   padding: 0 0 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.mobile-nav{
  background-color: white;
  position: fixed;
  top:0;
  left: 0;
  width: 100%;
  background-color: var(--bg-color);
  z-index: 999;
}
.mobile-nav .container{
  padding: 0 10px 0 0;
  display: flex;
  align-items: center;
  border-bottom: solid 1px #414141;
  justify-content: space-between;
}
.mobile-nav .menu-toggler{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--tone-color);
  height: 60px;
  padding: 0 20px;
}


.nav-items{
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  list-style: none;
  font-weight: 500;
  gap: 10px;
}
.nav-items a{
  color: white;
}
.nav-items li{
  padding: 28px 8px;
}
.nav-items li.active, .main-nav .nav-items li:hover{
  color: white;
}
.nav-items li.active a, .main-nav .nav-items li:hover a{
  color: var(--tone-color);
}
.nav-items .contact-btn{
    background-color: var(--tone-color);
    color: white;
    padding: 30px 25px;
    border-radius: 0 4px 4px 0;
}
.nav-items .contact-btn:hover a{
    color: white !important;

}


.mobile-menu{
  background-color: #141414 !important;
}

.mobile-menu .category-items{
  list-style: none;
  padding: 0;
}
.mobile-menu .category-items li{
  padding: 11px 0;
  border-bottom: solid 1px var(--border-color);
}
.mobile-menu .category-items li a{
  color: var(--dark)
}

.mobile-menu .menu-items{
  list-style: none;
  padding: 0;
}
.mobile-menu .menu-items li{
  padding: 11px 0;
  border-bottom: solid 1px var(--border-color);
}
.mobile-menu .menu-items li a{
  color: white;
}
.mobile-menu .menu-items li a{
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/****************FORMS***************/
.form-group{
  margin-bottom: 10px;
}
.form-group.expanded input, .form-group.expanded textarea{
  width: 100% !important;
}


/****************HOME***************/
.hero{
  background-size: cover;
  width: 100%;
  height: 90vh;
  background-position: center;
}

@media (max-width: 992px) {
  .hero{
    background-size: cover;
    width: 100%;
    height: 300px;
  }
}

.section-title{
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 40px;
    font-weight: normal;
    margin-top: 0;
}
.section-subtitle{
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 200 !important;
    color: #AFAFAF;
    text-transform: uppercase;
}

.s1 .left{
    background-size: cover;
    width: 40%;
    background-position: center;
    height: 400px;
}
.s1 .right{
    flex-grow: 1;
}
.s1 .s1-right-content{
    margin: auto;
    width: 500px;
    max-width: 100%;
    font-size: 40px;
}

@media (max-width: 992px) {
  .s1 .left{
      width: 100%;
      height: 200px;
  }
  .s1 .right{
    padding: 15px;
  }
  .s1 .s1-right-content{
    font-size: 30px;
  }
}

.service-card{
    background-color: #212121;
    border-radius: 0 0 15px 0;
    padding: 15px;
}
.service-card .h4{
    background-color: #212121;
    border-radius: 0 0 15px 0;
    padding: 15px;
}

.s3{
  padding-bottom: 80px;
}


.s4 {
  background-size: cover;
  background-position: center;
}
.s4 .container{
  padding-top: 115px;
  padding-bottom: 115px;
}
.contact-card{
  background-color: black;
  display: flex;
  width: 800px;
  max-width: 100%;
  margin: auto;
}
.contact-card .map{
  width: 200px;
  height: 200px;
}
@media (max-width: 992px) {
  .contact-card{
    display: block;
  }
  .contact-card .map{
    width: 100%;
    height: 200px;
  }
}
.contact-card iframe{
  width: 100%;
  height: 100%;
}

/****************FOOTER***************/
  footer{
    background-color: #141414;
    padding: 80px 0;
    border-radius: 20px 20px 0 0;
  }
  .footer-links-section{
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer-links-section div{
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 18px;
  }
  footer a{
    color: white;
  }
  
  



/**COOKIES AND AGE BANNERS**/
.cookies-banner{
	position: fixed;
	bottom: 25px;
	right: 0;
	left: 0;
	width: 100%;
	padding: 25px;
	border-radius: 10px;
	background-color: black !important;
  color: white !important;
	max-width: 90%;
	margin: auto;
	z-index: 9999;
}
@media (min-width: 575.98px) {
	.cookies-banner{
		width: 400px;
		left: unset;
		right: 25px;
		bottom: 25px;
	}
}