@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@400;700;800&family=Roboto:wght@400;700&display=swap');

:root {

  --rojo-prime:#bf0811;
  --negro-prime: #0c0c0c;
  --snow-white: #FFFAFA;

  --ff-titles: "Almarai", sans-serif;
  --ff-text: "Roboto", sans-serif;

  --borders: 4px;
  --space-btw:4rem;

  --almarai800: 800;
  --almarai700: 700;
  --roboto700: 700;
  --roboto400:400;

  --fs-xl: clamp(3rem, 4vw + 1rem, 10rem);
  --fs-xs: clamp(2rem, 2vw + 2rem, 6rem);
  --fs-titles: 2rem;
  --fs-sub-tittles: 1.6rem;
  --fs-highlights: 1.2rem;
  --fs-text: 1.1rem;
}
* {
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
  font-family: var(--ff-text);
  list-style: none;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  text-decoration: none;
  font-size: 1.1rem;
}

*::before,
*::after {
  box-sizing: border-box;
}

/* width */
::-webkit-scrollbar {
  width: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #808080; 
  border-radius: 4px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--main-yellow); 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--main-yellow-darker); 
}


input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
/* input[type=number] {
  -moz-appearance: textfield;
} */

/******************************************DEFAULTS*********************************************/
/***********************************************************************************************/
body, html {
  background: var(--snow-white);
  margin: 0;
  overflow-x: hidden;
  padding: 0;
}
h1, h2, h3, h4, h5, h6 {
  color: var(--negro-prime);
}



.parallax {
  background-image: url("../media/about/team_prime_guatemala.webp");
  min-height: 500px;
  height: 600px; 
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: var(--space-btw);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 75px 5px rgba(0,0,0,0.75) inset;
  padding: 0 3rem;
}
.parallax__title{
  background: rgba(191, 8, 17, 0.5);
  padding: 3rem 5rem;
  border-radius: var(--borders);
  border: 1px solid rgb(191, 8, 17);
}
.parallax__title h2{
  font-size: var(--fs-xs);
  font-family: var(--ff-titles);
  text-shadow: 1px 1px 0px #0c0c0c;
  color: var(--snow-white);
}
.about__wrapper{
  width: 100%;
  padding: 0 3rem;
  margin-top: 2rem;
}
.about__container{
  width: 65%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about__container h2{
  font-family: var(--ff-titles);
  font-size: var(--fs-titles);
  line-height: 100%;
}
.about__container-underline{
  width: 30%;
  height: 5px;
  background: var(--rojo-prime);
  margin: 0.4rem 0 1.5rem 0;
  border-radius: 50%;
}


.whatsapp__float {
  background-color: #25d366;
  border-radius: 30px;
  bottom: 1rem;
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.4);
  font-size: 20px;
  height: 56px;
  position: fixed;
  right: 1rem;
  text-align: center;
  width: 56px;
  z-index: 100;
}
.whatsapp__float i {
  color: white;
  margin-left: 2px;
  margin-top: 8px;
}
.copyright{
  /* color: red; */
  font-size: 0.8rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

/*******************************************MEDIAQUERIES*******************************************/
/* .hithere {
  animation: hithere 1s ease infinite;
} */
@keyframes hithere {
  30% { transform: scale(1.1); }
  40%, 60% { transform: rotate(-5deg) scale(1.1); }
  50% { transform: rotate(5deg) scale(1.1); }
  70% { transform: rotate(0deg) scale(1.1); }
  100% { transform: scale(1); }
}

/**************************************************************************************************/

@media (max-width: 1483px) {

}

@media (max-width: 1280px) {

}

@media (max-width: 1150px) {

}

@media (max-width: 950px) {/*2 REM padding*/
  .about__wrapper{
    padding: 0 2rem;
  }
  .about__container{
    width: 100%;
    
  }
}

@media (max-width: 768px) {

}

@media (max-width: 576px) { /*1 REM padding*/
  .parallax {
    padding: 0 1rem;
  }
  .about__wrapper{
    padding: 0 1rem;
  }
  .parallax__title{
    padding: 3rem 0;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {

}

@media (max-width: 455px) {

}

@media (max-width: 350px) {

}

/***************************************************************************************************/