/* ----- GLOBAL RESET ----- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}


/* ----- FONTS ----- */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700&family=Quicksand:wght@300;400;500;600;700&display=swap');

/* ----- GLOBAL VARRIABLES ----- */

:root {
  --container-width: 1200px;
  --color-primary: #f6b103;
  --hover-color: #ffc83e;
  --color-secondary: #f6b103;
  --color-tertiary: #6ef1b2;
  --color-body: #5c6185;
  --color-white: #fff;
  --color-black: #000000;
  --color-off-white: #f6f9fb;
  --color-primary-7: rgba(38, 103, 255, 0.07);
  --color-primary-10: rgba(38, 103, 255, 0.1);
  --color-secondary-10: rgba(11, 20, 96, 0.1);
  --color-white-10: rgba(255, 255, 255, 0.1);
  --color-white-60: rgba(255, 255, 255, 0.6);
  --color-white-70: rgba(255, 255, 255, 0.7);
  --color-dark: #151516;
  --color-deep-dark: #0b0b0b;
  --font-nunito: 'Nunito', sans-serif;
  --font-quicksand: 'Quicksand', sans-serif;
}


/* ----- BASIC INITIALIZATION ----- */

.container {
  max-width: var(--container-width);
  width: 100%;
}

body {
  font-size: 16px;
  font-weight: normal;
  font-family: var(--font-nunito);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  font-family: var(--font-quicksand);
  color: var(--color-secondary);
  line-height: 1.3;
}

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

.btn {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  display: inline-block;
  background-color: var(--color-primary);
  overflow: hidden;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  border: none;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  transition: all 0.5s ease;
  padding: 15px 35px;
  cursor: pointer;
}

.btn::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--color-secondary);
  visibility: hidden;
  transition: all 0.5s ease;
  border-radius: 5px;
  z-index: -1;
}

.btn:hover::before {
  width: 100%;
  visibility: visible;
  background-color: var(--hover-color);
}


.fa-book-open {
  font-weight: 700;
font-size: 350px;
margin: 0 auto;
display: flex;
justify-content: center;
margin-top: 100px;
transition: all 0.9s ease;
color: var(--color-white);
width: 100%;

}

.fa-book-open:hover {
  transform: rotateY(360deg);
}


.row {
  display: flex;
  flex-wrap: wrap;
}
.row h1 {
  width: 100%;
  text-align: center;
  font-size: 3.75em;
  margin: 0.6em 0;
  font-weight: 600;
  color: #070024;
}
.column {
  padding: 1em;
}
.card-feature {
  padding: 3.1em 1.25em;
  text-align: center;
  background-color: var(--color-primary);
  background-repeat: no-repeat;
  background-position: 0 0.62em;
  box-shadow: 0 0 2.5em rgba(0, 0, 0, 0.15);
  border-radius: 0.5em;
  transition: 0.5s;
  cursor: pointer;
}
.card-feature .icon {
  font-size: 2.5em;
  height: 2em;
  width: 2em;
  margin: auto;
  background-color: var(--color-primary);
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
}
.icon:before {
  position: absolute;
  content: "";
  height: 1.5em;
  width: 1.5em;
  border: 0.12em solid #ffffff;
  border-radius: 50%;
  transition: 0.5s;
}
.card-feature h3 {
  font-size: 1.45em;
  margin: 1em 0 1.4em 0;
  font-weight: 1000;
  letter-spacing: 0.3px;
  color: #ffffff;
  font-family: var(--font-quicksand);
}
.card-feature p {
  line-height: 2em;
  font-weight: 800;
  color: #ffffff;
  font-family: var(--font-quicksand);
}
.card-feature:hover {
  background-position: 0;
}
.card-feature:hover .icon:before {
  height: 2.25em;
  width: 2.25em;
}
@media screen and (min-width: 768px) {
  section {
    padding: 1em 7em;
  }
}
@media screen and (min-width: 992px) {
  section {
    padding: 1em;
  }
  .card-feature {
    padding: 5em 2em;
  }
  .column {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 0 1em;
  }
}

/*HERO SECTION*/
.heroSectionCards{
  height: 100vh;
  width: 100%;
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  position: relative;
}

.backgroundVideoCards{
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.5;
  min-width: 100%;
  min-height: 100%;
}

.leftSideCards{
  width: 80%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.heroTextContainerCards{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  font-family: var(--font-quicksand);
  width: 100%;
  background-color: var(--color-primary);
  border-radius: 20px;
  white-space: normal;
  overflow: hidden;
  height: 500px;
  padding: 10px
}

.mainTextHeroCards{
  font-size: 70px;
  font-weight: 900;
  color: white;
  margin-bottom: 0;
  padding: 10px;
}

.secondTextHeroCards{
  font-size: 24px;
  font-weight: 900;
  color: white;
  margin-top: 0;
  text-transform: none;
  margin-bottom: 1rem;
}

.buttonHeroCards{
  color: white;
  background-color: var(--color-primary);
  text-decoration: none;
  font-weight: 700;
  padding: 15px 25px;
  border-radius: 25px;
  transition: all 0.5s;

}

.buttonHero:hover{
  background-color: var(--hover-color);
}

.logologoCards{
  /* width: 344px; */
  height: 384px;
  margin-bottom: 100px;
  margin-top: -90px;
  max-width: 100%;
  animation: animate 5s linear infinite;
}

.btn-hero {
  color: white;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  display: inline-block;
  background-color: white;
  overflow: hidden;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  border: none;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  transition: all 0.5s ease;
  padding: 15px 35px;
  cursor: pointer;
  background-color: var(--color-primary);
}

.btn-hero::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--hover-color);
  visibility: hidden;
  transition: all 0.5s ease;
  border-radius: 5px;
  z-index: -1;
}

.btn-hero:hover::before {
  width: 100%;
  visibility: visible;
  background-color: var(--hover-color);
}

.btn-hero,
input {
  overflow: visible;
}

.btn-containerCards {
  padding: 10px; 
  background-color: white; 
  border-radius: 20px; 
  width: 40%;
}

@media screen and (max-width: 729px) {

  .mainTextHeroCards {
    font-size: 35px;
  }
  .secondTextHeroCards {
    font-size: 20px;
  }

}

/*  */


@media screen and (max-width: 484px) {
  .btn-containerCards {
      width: 60%;
  }
}

@media screen and (max-width: 336px) {
  .btn-containerCards {
    width: 90%;
  }
}

@media screen and (max-height: 672px) {
  .heroTextContainerCards {
      height: 70%;
  }
  .btn-containerCards {
      margin-bottom: 10px;
  }
}

@media screen and (max-width: 539px) {

  .heroTextContainerCards .mainTextHeroCards {
      font-size: 30px;
  }
  .heroTextContainerCards .secondTextHeroCards {
      font-size: 15px;
  }

}

@media screen and (max-width: 419px) {

  .heroTextContainer .mainTextHero {
      font-size: 30px;
  }

}


@media screen and (max-width: 347px) {

.btn-container {
  width: 100%;
}

}
