/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 4rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: #3858d6;
  --first-color-alt: #2948c7;
  --first-color-light: #5670d7;
  --first-color-lighten: hsl(228, 100%, 97%);
  --second-color: #eb7724;
  --title-color: hsl(228, 57%, 28%);
  --text-color: hsl(228, 15%, 50%);
  --text-color-light: hsl(228, 12%, 75%);
  --border-color: hsl(228, 99%, 98%);
  --body-color: #fff;
  --container-color: #fff;

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: 'Poppins', sans-serif;
  --biggest-font-size: 2.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/* Responsive typography */
@media screen and (min-width: 800px) {
  :root {
    --biggest-font-size: 4rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  background: #fff;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  transition: .3s; /* For animation dark mode */
}

h1, h2, h3 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

input,
button {
  font-family: var(--body-font);
  outline: none;
  border: none;
}

*:disabled{
  cursor: not-allowed !important;
  background: #b8bbc7 !important;
}

.container {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.grid {
  display: grid;
}

.section {
  padding: 4.5rem 0 2rem;
}

.section__title {
  font-size: var(--h2-font-size);
  margin-bottom: 1rem;
}

.section__title span {
  color: var(--second-color);
}

.section__subtitle {
  display: block;
  font-size: var(--small-font-size);
  color: var(--second-color);
}

.main {
  overflow: hidden; /* For the animations ScrollReveal*/
}


.video-container{
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  width: 100%;

}

.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: transparent;
  z-index: var(--z-fixed);
  transition: .3s; /* For animation dark mode */
}

.nav{
  display: flex;
  align-items: center;
  height: var(--header-height);
  justify-content: space-between;
}

.nav__logo {
  color: #fff;
  display: inline-flex;
  column-gap: .25rem;
  font-size: var(--biggest-font-size);
  color: var(--first-color);
  font-weight: var(--font-semi-bold);
  margin-right: 1rem;
  transition: .3s;
}

.nav__logo:hover {
  color: var(--first-color-alt);
}

.nav__logo-img {
  width: 10rem;
  filter: invert(100%);
}

.nav__menu {
  display: flex;
  column-gap: 1.5rem;
}

.nav__list {
  display: flex;
  column-gap: 5rem;
}

.nav__link{
  color: #fff;
}

@media screen and (max-width: 650px) {
  .nav__menu{
    position: fixed;
    bottom: 2rem;
    background-color: var(--body-color);
    box-shadow: 0 8px 24px hsla(228, 66% , 45%, .15);
    border: 3px solid var(--border-color);
    border-radius: 1.25rem;
    transition: .4s;
    width: 90%;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 1.30rem 3rem;
    justify-content: center;
    display: none;

  }

  .show-nav__menu{
    display: flex;
  }

  .nav__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav__link{
    color: var(--text-color);
    display: flex;
    padding: .5rem;
    border-radius: 50%;
  }
  
}

.nav__logo span {
  color: var(--second-color);
}




.scroll-header {
  background-color: var(--body-color);
  box-shadow: 0 1px 4px hsla(228, 4% , 15%, .1);

}

.scroll-logo{
  filter: invert(0%);
}

.scroll-item a{
  color: var(--first-color);

}



.active-link{
  background: linear-gradient(101deg, hsl(228,66%,53%), hsl(228,66%,47%));
  color: #fff;
  box-shadow: 0 4px 8px hsla(228, 66% , 45%, .25);
}


.home{
  background: -webkit-linear-gradient(
            #383838, 
            #0f0f0f);
  padding-bottom: 0;
  padding-left: 2rem;
}

.home__container {
  padding-top: 4rem;
  row-gap: 3.5rem;
}

.home__title, .home__value-number {
  color: #fff;
}

.home__title {
  font-size: var(--biggest-font-size);
  line-height: 120%;
  margin-bottom: 1.25rem;
}

.home__description {
  color: var(--text-color-light);
  margin-bottom: 2rem;
}
 
.home__value{
  display: flex;
  column-gap: 5rem;
  justify-content: center;

  margin-bottom: 2rem;
}

.home__value-number {
  font-size: var(--h1-font-size);
  font-weight: var(--font-medium);
}

.home__value-number span {
  color: var(--second-color);
}

.home__value-description {
  display: flex;
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}



.home__images{
  position: relative;
  display: flex;
  justify-content: center;
  padding-bottom: 2rem;
}

.home__img{
  position: absolute;
  top: 5rem;
  right: 0;
  width: 20%;
  height: 20%;
  object-fit: cover;
  z-index: var(--z-low);
}


.home__images2{
  justify-content: center;
  padding-bottom: 2rem;
}

.home__img2{
  position: absolute;
  top: 8rem;
  right: .25rem;
  width: 50%;
}

.home__info{
  display: flex;
  flex-direction: row;
}

.home__link{
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.home__link a{
  padding-left: 12rem;
  padding-right: 12rem;
}

@media screen and (max-width: 1285px) {
  .home__img2{
    position: absolute;
    top: 12rem;
    right: 0;
    width: 30%;
  }

}

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

  .home__info{
    flex-direction: column;
  }

  .home__link{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .home__images{
    position: relative;
    display: flex;
    justify-content: center;
    padding-bottom: 2rem;
  }
  
  .home__orbe{
    width: 265px;
    height: 265px;
  }
  
  .home__img{
    position: relative;
    top: 0;
    right: 0;
    width: 80%;
    height: 80%;
    object-fit: cover;
    z-index: var(--z-low);
  }

  .home__images2{
    display: none;
  }
  
  .home__img2{
    display: none;
  }
  
}


.button{
  display: inline-block;
  background: -webkit-linear-gradient(
            #3858d6, 
            #2948c7);
  color: #fff;
  padding: 14px 28px;
  border-radius: .5rem;
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  box-shadow: 0 4px 8px hsla(228, 66% , 45%, .25);
  cursor: pointer;
  transition: .3s;
}

.button:hover{
  box-shadow: 0 4px 12px hsla(228, 66% , 45%, .35);
}




.logos__container{
  padding-top: 2rem;
  grid-template-columns: repeat(2,1fr);
  gap: 3rem 2rem;
  justify-items: center;
}

.logos__img img{

  height: 60px;
  opacity: .2;
  transition: .3s;
}

.logos__img img:hover{
  opacity: .6;
}







.value__container{
  row-gap: 3rem;
}

.value__images{
  position: relative;
  display: flex;
  justify-content: center;
}


.value__orbe{
  width: 266px;
  height: 316px;
  background-color: hsl(228, 24%, 97%);
  border-radius: 135px 135px 16px 16px;

}

.value__img{
  position: absolute;
  top: 5rem;
  right: 0;
  width: 250px;
  height: 300px;
  overflow: hidden;
  border-radius: 125px 125px 12px 12px;
  inset: 0;
  margin: auto;
  box-shadow: 0 16px 32px hsla(228, 66% , 25%, .25);
}


.value__description{
  font-size: var(--small-font-size);
  margin-bottom: 2rem;
}

.value__accordion{
  display: grid;
  row-gap: 1.5rem;

}

.value__accordion-item{
  background-color: var(--body-color);
  border: 2px solid var(--border-color);
  border-radius: .5rem;
  padding: 1rem .75rem;
}

.value__accordion-header{
  display:flex;
  align-items: center;
  cursor: pointer;

}

.value__accordion-icon{
  background-color: var(--first-color-lighten);
  padding: 5px;
  border-radius: .25rem;
  font-size: 18px;
  color: var(--first-color);
  margin-right: .75rem;
  transition: .3s;
}

.value__accordion-title{
  font-size: var(--small-font-size);
}

.value__accordion-arrow{
  display: inline-flex;
  background-color: var(--first-color-lighten);
  padding: .25rem;
  color: var(--first-color);
  border-radius: 2px;
  font-size: 10px;
  margin-left: auto;
  transition: .3s;
}

.value__accordion-arrow i{
  transition: .4s;
}

.value__accordion-description{
  font-size: var(--small-font-size);
  padding: 1.25rem 2.5rem 0 2.75rem;
}

.value__accordion-content{
  overflow: hidden;
  height: 0;
  transition: all .25s ease;
}



.accordion-open{
  box-shadow: 0 12px 32px hsla(228, 66% , 45%, .1);
}

.accordion-open .value__accordion-icon{
  box-shadow: 0 4px 4px hsla(228, 66% , 45%, .1);
}

.accordion-open .value__accordion-arrow{
  box-shadow: 0 2px 4px hsla(228, 66% , 45%, .1);
}

.accordion-open .value__accordion-arrow i{
  transform: rotate(-180deg);
}


.contact__bg {
  background-color: var(--first-color-lighten);
  padding: 3rem 3rem;
  row-gap: 2.5rem;
  border-radius: 1rem;
}

.contact__container {
  margin-left: 8rem;
  margin-right: 8rem;
}

.contact__title {
  font-size: var(--h1-font-size);
  color: hsl(0, 0%, 15%);
}

.contact__description {
  color: var(--text-color);
}

.contact__form {
  display: flex;
  flex-direction: column;
  row-gap: .75rem;
}

.contact__input {
  border: none;
  outline: none;
  background-color: var(--body-color);
  padding: 1.25rem 1rem;
  color: hsl(0, 0%, 15%);
  border-radius: .5rem;
}


.contact__textarea {
  text-decoration: none;
  resize: none;
  font-family: var(--body-font);
  background-color: var(--body-color);
  padding: 1.25rem 1rem;
  color: hsl(0, 0%, 15%);
  border-radius: .5rem;
}
.contact__details{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1.5rem;
  row-gap: 1.5rem; 
}

.contact__input-box{
  display: flex;
  flex-direction: column;
  row-gap: .5rem;
}

.contact__input-tag{
  font-size: var(--small-font-size);
  color: var(--text-color);
  display: block;
  display: flex;
  flex-direction: row;
}

.mandatory-field{
  color: red;
}


.contact__submit-error{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact__submit-error-message{
  color: red;
  font-size: var(--small-font-size);
  margin: auto;
}




.footer__container{
  row-gap: 2.5rem;
}

.footer__logo{
  color: var(--first-color);
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
  margin-bottom: .75rem;
}

.footer__logo i{
  font-size: 1.25rem;
}

.footer__description, .footer__link{
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
}

.footer__content,
.footer__links{
  display: grid;
}

.footer__content{
  grid-template-columns: repeat(2, max-content);
  gap:2.5rem 4rem;

}

.footer__title{
  font-size: var(--h3-font-size);
  margin-bottom: 1rem;
}

.footer__links{
  row-gap: .5rem;
}

.footer__link{
  color: var(--text-color);
  transition: .3s;
}

.footer__link:hover{
  color: var(--title-color);
}

.footer__social{
  display: flex;
  column-gap: 1rem;
}

.footer__social-link{
  font-size: 1.25rem;
  color: var(--text-color);
  transition: .3s;
}

.footer__social-link:hover{
  color: var(--title-color);
}

.footer__info, .footer__privacy{
  display: flex;
}

.footer__info{
  padding-bottom: 6rem;
  margin-top: 5.5rem;
  flex-direction: column;
  text-align: center;
  row-gap: 1.5rem;
}

.footer__copy,
.footer__privacy a{
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color);
}

.footer__privacy{
  justify-content: center;
  column-gap: 1.25rem;
}




::-webkit-scrollbar{
  width: .6rem;
  border-radius: .5rem;
  background-color: hsl(228, 8%, 76%);
}

::-webkit-scrollbar-thumb{
  border-radius: .5rem;
  background-color: hsl(228, 8%, 64%);
}

::-webkit-scrollbar-thumb:hover{
  background-color: hsl(228, 8%, 54%);
}



.scrollup{
  position: fixed;
  left: 1rem;
  bottom: 8rem;
  background-color: var(--container-color);
  box-shadow: 0 8px 12px hsla(228, 66% , 45%, .1);
  padding: .35rem;
  border-radius: .25rem;
  color: var(--title-color);
  font-size: 1.25rem;
  z-index: var(--z-tooltip);
  transition: .3s;
  display: none;
}

.scrollup:hover{
  transform: translateY(-.25rem);
  color: var(--first-color);
}

.show-scroll{
  display: inline-flex;
}




@media screen and (max-width: 575px) {
  
  
  .contact__container{
    margin: 1rem;
    padding: 1rem;
    display: block;
  }

  .contact__details{
    display: block;
  }
}


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


  .container{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .section{
    padding: 1rem 1rem;
  }

  .home{
    padding-bottom: 0;
  }

  .contact__card{
    grid-template-columns: repeat(1, 180px);
    justify-content: center;
  }

  .nav__list{
    column-gap: 2rem;
  }

  .footer__info{
    padding-bottom: 8rem;
  }

  .nav__menu{
    padding: 1rem 1rem;
  }

  .home__link a{
    padding-left: 8rem;
    padding-right: 8rem;
  }


  .contact__container{
    margin: 1rem;
    padding: 1rem;
    display: block;
  }

  .contact__details{
    display: block;
  }

  
}

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


  .home__link a{
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .container{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .section{
    padding: .5rem .5rem 1rem;
  }

  .home{
    padding-bottom: 0;
  }

  .contact__card{
    grid-template-columns: repeat(1, 180px);
    justify-content: center;
  }

  .nav__list{
    column-gap: 0;
  }

  .home__value{
    column-gap: 2rem;
  }

  .contact__container{
    margin: 1rem;
    padding: 1rem;
    display: block;
  }

  .contact__details{
    display: block;
  }

  
}

@media screen and (max-width: 320px) {
  .nav__menu{
    padding: 1.3rem 1.5rem;
  }

  .home__value{
    column-gap: 1rem;
  }

  .home__img{
    width: 220px;
    height: 280px;
  }

  .logos__container{
    gap: 2rem 1rem;
  }

  .value__img,
  .contact__img{
    width: 220px;
    height: 260px;
  }

  .value__orbe,
  .contact__orbe{
    width: 236px;
    height: 280px;
  }

  .footer__content{
    gap: 2.5rem;
  }

  .footer__info{
    padding-bottom: 8rem;
  }


}


@media screen and (min-width: 576px) {
  .nav__menu{
    width: 342px;
    padding: 1.3rem 1.5rem;
  }

  .section {
    padding: 4.5rem 2rem 2rem;
  }

  .nav__list{
    column-gap: 2rem;
  }

  .footer__content{
    grid-template-columns: repeat(4, max-content);
    justify-content: center;
  }


  .scrollup{
    width: 3.75rem;
    bottom: 3rem;
    border-radius: 1rem;
  }

  .scrollup__icon{
    font-size: 3rem;
  }

  
  .contact__container{
    margin: 1rem;
    padding: 1rem;
    display: block;
  }

  .contact__details{
    display: block;
  }
  
}


@media screen and (min-width: 768px) {
  .home__container{
    grid-template-columns: repeat(2, 1fr);
    padding-top: 2rem;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .home__data{
    padding-bottom: 2rem;
  }

  .logos__container{
    grid-template-columns: repeat(4, max-content);
    justify-content: center;
  }

  .value__container{
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .contact__images{
    order: 1;
  }

  .contact__card{
    justify-content: initial;
  }


  .footer__container{
    grid-template-columns: repeat(2, max-content);
    justify-content: space-between;
  }

  .footer__content{
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
  }

  
  .contact__container{
    margin: 1rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
  }

  .contact__details{
    display: grid;
  }


  
}

@media screen and (max-width: 445px) {
  
  .contact__captcha{
    transform:scale(0.9);
  -webkit-transform:scale(0.9);
  transform-origin:0 0;
  -webkit-transform-origin:0 0;
  }
}

@media screen and (max-width: 400px) {
  
  .contact__captcha{
    transform:scale(0.8);
  -webkit-transform:scale(0.8);
  transform-origin:0 0;
  -webkit-transform-origin:0 0;
  }
}

@media screen and (max-width: 375px) {
  
  .contact__captcha{
    transform:scale(0.7);
  -webkit-transform:scale(0.7);
  transform-origin:0 0;
  -webkit-transform-origin:0 0;
  }
}
  

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

.contact__captcha{
  transform:scale(0.6);
-webkit-transform:scale(0.6);
transform-origin:0 0;
-webkit-transform-origin:0 0;
}
}

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

  .contact__captcha{
    transform:scale(0.5);
  -webkit-transform:scale(0.5);
  transform-origin:0 0;
  -webkit-transform-origin:0 0;
  }
}


@media screen and (min-width: 1023px){
  .section{
    padding: 7.5rem 2rem 2rem;
  }

  .section__title{
    font-size: 2.25rem;
  }

  .section__subtitle{
    font-size: var(--normal-font-size);
  }

  .nav__menu{
    width: initial;
    margin-left: auto;
  }

  .nav__list{
    display: flex;
    column-gap: 3rem;
  }

  .nav__link{
    color: var(--text-color-light);
  }

  .nav__button{
    display: inline-block;
    margin-right: 1rem;
  }

  .home{
    padding-bottom: 0;
  }

  .home__container{
    padding-top: 2rem;
    column-gap: 2rem;
  }

  .home__data{
    padding-bottom: 4rem;
  }

  .home__img2{
    width: 35%;
    height: 35%;
  }

  .logos__img img{
    height: 100px;
  }

  .logos__container{
    justify-content: center;
  }


  .value__container{
    align-items: flex-start;
    column-gap: 5rem;
  }

  .value__orbe{
    width: 501px;
    height: 641px;
    border-radius: 258px 258px 16px 16px;
  }

  .value__img{
    width: 461px;
    height: 601px;
    border-radius: 238px 238px 12px 12px;
  }

  .value__img img{
    max-width: initial;
    width: 490px;
  }

  .value__description{
    font-size: var(--normal-font-size);
    margin-bottom: 2.5rem;
  }

  .value__accordion-title{
    font-size: var(--normal-font-size);
  }

  .value__accordion-item{
    padding: 1.25rem 1.25rem 1.25rem 1rem;
  }

  .value__accordion-description{
    padding-bottom: 1rem;
    font-size: var(--small-font-size);
  }

  .footer__content{
    grid-template-columns: repeat(4, max-content);
    justify-content: center;
  }

  .footer__title{
    margin-bottom: 1.5rem;
  }

  .footer__links{
    row-gap: 1rem;
  }

  .footer__container{
    padding-right: 5rem;
    padding-left: 5rem;
  }
  
  .footer__info{
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 2rem;

  }

}


  @media  screen and (min-width: 1040px) {
    .container{
      margin-left: auto;
      margin-right: auto;
    }


    .home__container{
      column-gap: 4rem;
    }

  }


  @media screen and (min-width: 1200px) {

    .home__img2{
      width: 40%;
      height: 40%;
    }
  }


  @media screen and (min-width: 1500px) {

    .home__img2{
      width: 50%;
      height: 50%;
    }

    .logos__img img{
      height: 150px;
    }
  }

  


@media screen and (min-width: 2048px) {

  body{
    zoom: 1.5;
  }
}
  
@media screen and (min-width: 3840px) {

  body{
    zoom: 2;
  }
}