@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;900&display=swap');


:root{
  --primary-color: #16BAC5;
  --secundary-color: #0E4459;
  --orange-color: #F15025;
  --dark-color: #353531;
  --grey-color: #717377;
  --light-grey-color: #F7F7F7;
  --white-color: #fff;
  --black-color: #000;
}

@-webkit-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; } 
  }
  @-moz-keyframes fadeIn {
  0% { opacity: 0;}
  100% { opacity: 1; }
  }
  @-o-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
  }
  @keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
  }
  
@-webkit-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; } 
  }
  @-moz-keyframes fadeIn {
  0% { opacity: 0;}
  100% { opacity: 1; }
  }
  @-o-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
  }
  @keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
  }


  #mouse-icon{
    position: relative;
    margin-top: 350px;
    width: 35px;
    height: 45px;
    border: 2px solid #fff;
    border-radius: 50px;
}
#mouse-icon:after{
    position: absolute;
    top: 15px;
    width: 5px;
    height: 5px;
    content: '';
    background: #fff;
    left: calc(45% - 0px);
    border-radius: 50%;
    animation: mouse 2s infinite;
}

@keyframes mouse{
    0%{
        opacity: 1;
        top: 10px;
    }
    100%{
        opacity: 0;
        top: 20px;
    }
}

#box-scroll-indicator{ 
    transform: translate( -50%, -50%);
}

#box-scroll-indicator span{
    position: relative;
    display: block;
    top:230px;
    left: -20px;
    width: 20px;
    height: 20px;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    margin: -5px -10px;
    animation: animate 2s infinite;
}

#box-scroll-indicator span:nth-child(2){
    animation-delay: -0.2s;
}
#box-scroll-indicator span:nth-child(1){
    animation-delay: -0.4s;
}

@keyframes animate{
    0%{
        opacity: 0;
        transform: rotate(45deg) translate(-20px -20px);

    }

    50%{

        opacity: 1;

    }

    100%{

        opacity: 0;
        transform: rotate(45deg) translate(20px 20px);
    }
}

html,body{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  width: 100vw;
  overflow-x: hidden;

  scroll-behavior: smooth;
}

body{
  overflow-x: hidden;
}
a{
    text-decoration: unset;
}

ul{
    list-style-type: unset;
}
.fadeIn{
    background: var(--light-grey-color);
    opacity:0;
    -webkit-animation: fadeIn 1700ms linear;
    -moz-animation: fadeIn 1700ms linear;
    -o-animation: fadeIn 1700ms linear;
    animation: fadeIn 1700ms linear; 
    -webkit-animation-fill-mode:forwards;
    -moz-animation-fill-mode:forwards;
    -o-animation-fill-mode:forwards;
    animation-fill-mode:forwards;
}

header{
  display: flex;

  margin: 0;
  padding: 0;

  background-image: url("../imgs/newsite/bg-newsite-1.jpeg");
  background-repeat: no-repeat;
  background-position: center top;

  width: 100vw;
  height: auto;
}

.header-img{

  display: flex;
  height: 530px;
  width: 750px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  margin-top: 120px;
  margin-left: 40px;
  margin-bottom: -30px;
  padding: 5px;
  background: var(--black-color);
  box-shadow: 0 0 5px var(--dark-color);
  border-radius: 8px;
}
.header-img img{
  height: 590px;
  /* border-radius: 8px; */
  opacity: .7;
}
.header-content .input-email-list-add input{
  height: 30px;
}
.header-content{
  position: relative;
  color: var(--white-color);
  padding: 12px;

  margin-top: 150px;
  margin-bottom: 60px;
  margin-left: -80px;
  margin-right: 40px;
  z-index: 10;
  max-height: 600px;
  width: 600px;
  box-shadow: 0 0 5px var(--dark-color);
  background: rgba(22,186,197,1);

  border-radius: 14px;

  opacity:0;
  -webkit-animation: fadeIn 500ms linear;
  -moz-animation: fadeIn 500ms linear;
  -o-animation: fadeIn 500ms linear;
  animation: fadeIn 500ms linear; 
  -webkit-animation-fill-mode:forwards;
  -moz-animation-fill-mode:forwards;
  -o-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

}

.header-content p, label{
  color: var(--secundary-color);
}

.header-content p{
  margin: 0 30px;
}
.header-content h1{
  width: 100%;
  text-align: center;
  font-weight: 300;
  font-size: 32px;
}
.header-content span{
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  color: var(--secundary-color);
}

.header-content button{
  color: var(--secundary-color);
}

.input-email-list-add{
  display: flex;
  flex-direction: column;
}
input{
  color: var(--secundary-color);
  font-size: 16px;
}
a{
  color: var(--secundary-color);
  text-decoration: unset;
}
.container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 30px 0;
  width: 1000px;

}

/* Navbar */
nav{

  z-index: 20;
  display: flex;
  width: 100vw;
  height: 90px;
  align-items: center;
  position: absolute;
  justify-content: space-between;

  background: var(--white-color);
  box-shadow: 0 1px 5px var(--secundary-color);

}

.logo img{
  height: 60px;
}

.toggle{
  z-index: 15;
  position: absolute;
  font-size: 1.5em;
  display: flex;
  justify-content: flex-end;

  padding: 0 30px;
  right: 0;
  top: 10px;
  background: rgba(0,0,0,0);

  border: unset;
}

.toggle i{

  display: none;
  border: 1px solid var(--primary-color);
  padding: 8px 12px;
  color: var(--orange-color);
  border-radius: 4px;

  cursor: pointer;
}

ul{
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}


ul li{
  font-size: 18px;
  font-weight: 400;
  color: var(--orange-color);
  margin: 0 10px;
  list-style: none;
  padding: 10px 10px;
  border-radius: 24px;

}

ul li:hover{
  background: var(--primary-color);
  color: var(--white-color);
}

ul a{
  text-decoration: unset;
}

.nav__ul--siginu-up{
  color: var(--orange-color);
  background: var(--white-color);
  border: 2px solid var(--orange-color);
  border-radius: 14px;
  font-weight: 500;
}

.nav__ul--siginu-up:hover{
color: var(--white-color);
border: 2px solid var(--primary-color);
}


/*  main  */

.headline__container{
  display: flex;
  justify-content: center;
  font-family: 'Montserrat', sans-serif ;
  width: 100vw;
}
#all-topics .topic__container {
  display: none;
}


.orange-color{
  color: var(--orange-color);
}

.blue-color{
  color: var(--primary-color);
}

.headline__container h1{
  color: var(--orange-color);
  font-size: 58px;
  font-weight: 400;

  margin-top: 60px;
}

main{
  position: relative;
  width: 100vw;
  min-height: 100vh;
  max-height: auto;
}
.all__topic__container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}


.topic__container{
  display: flex;
  text-align: center;
  align-items: center;
  width: 80%;

  margin: 20px 0;
  padding: 10px;
  background: #d6d6d6;
  border-radius: 4px;
}
.content__container--img img{
  width: 350px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
  transition: width .3s;


}


.content__container--img img:hover{
  width: 420px;
}
.content__container{
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  text-align: center;
  align-items: center;
  width: 100%;
  height: 250px;
}
.content__container--text{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 450px;
}
.content__container--text h2{
  color: var(--dark-color);
  font-weight: 400;
  width: 100%;
}

.content__container--text span{

  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
}
.content__container--text p{
hyphens: auto;
margin: 8px;
}
.button__container{
  display: flex;
  width: 100vw;
}
.call-to-action,.button{
 display: none;
}
.call-to-action, .button{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  background: var(--primary-color);
  padding: 16px;
  border-radius: 6px;
  margin: 0 auto;
  margin-top: 30px;
}
.call-to-action a{
  color: var(--white-color);
  font-weight: 600;
  font-size: 24px;

}


footer{

  color: var(--white-color);
  display: flex;
  flex-direction: column;
  margin-top: 16px;
  background: var(--primary-color);
}

footer h1{
  font-weight: 400;
  padding: 5px;
}
.cite{
  text-align: center;
  margin: 20px;
}
.footer__container{
  display: flex;
  flex-wrap: wrap;

  justify-content: space-around;
  align-items: center;
}
.footer__container h1{
  margin: 10px auto;
  text-align: center;
}
.follow__container{
  display: flex;
  flex-direction: column;

  margin: 30px;
}
.follow__container i{
  margin: 8px;
}
 form{
  display: flex;
  flex-direction: column;
}
form input:-ms-input-placeholder {
  text-align: left;
  font-family: "Montserrat", sans-serif;
  color: #0E4459;
  border-width: 0;
}
input, textarea, button{

  border-radius: 4px;
  border: unset;
  appearance: none;
 -webkit-appearance: none;
 -moz-appearance: none;
 margin: 6px 0 ;
 padding: 12px;
 max-width: 700px;

}
.form__group{
  max-width: 600px;
  margin: 16px;
}
form ::-webkit-input-placeholder {
  color: var(--secundary-color);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
}
button{
  color: var(--secundary-color);
  font-size: 18px;
  font-weight: 700;
  width: 200px;
  margin: 8px auto;
}
textarea{
  height: 100px;
}

@media screen and (max-width:635px){
  header{
    margin: 0;


    background-image: url("../imgs/newsite/bg-newsite-1.jpeg");
    background-repeat: no-repeat;
    background-position: center top;
  
    width: 100vw;
    height: 100vh;
  }
  #all-topics .topic__container {
    display: flex;
  }
.headline__container h1{
  text-align: center;
  font-size: 42px;

  }


  .header-img{

    display: none ;
    height: 530px;
    width: auto;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
    margin-left: -4px;
    padding: 5px;
    background: var(--black-color);
    box-shadow: 0 0 5px var(--dark-color);
    border-radius: 8px;
  }
  .header-img img{
    height: auto ;

    opacity: .7;
  }
  .header-content .input-email-list-add input{
    height: 30px;
  }
  .header-content{

    color: var(--white-color);
    padding: 12px;

    margin-left: 6px;
    margin-right: 6px;
    z-index: 10;
    max-width: 300px;
    box-shadow: 0 0 5px var(--dark-color);
    background: rgba(22,186,197,1);
  
    border-radius: 14px;
  
    opacity:0;
    -webkit-animation: fadeIn 500ms linear;
    -moz-animation: fadeIn 500ms linear;
    -o-animation: fadeIn 500ms linear;
    animation: fadeIn 500ms linear; 
    -webkit-animation-fill-mode:forwards;
    -moz-animation-fill-mode:forwards;
    -o-animation-fill-mode:forwards;
    animation-fill-mode:forwards;
  
  }
  
  .header-content p, label{
    color: var(--secundary-color);
  }
  
  .header-content h1{
    width: 100%;
    text-align: center;
    font-weight: 300;
    font-size: 32px;
  
  }
  .header-content span{
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    color: var(--secundary-color);
  }
  
  .header-content button{
    color: var(--secundary-color);
  }
  
  .input-email-list-add{
    display: flex;
    flex-direction: column;
  }
  .logo img{
    height: 45px ;
  }

  .headline__container{
    margin-top: 100px;
  }
  .content__container--img img{
    width: 300px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    transition: width .3s;
  
  
  }

  .content__container--img img:hover{
    width: 300px;
  }

}
@media screen and (max-width:980px){
  .nav__container{
    width: 100%;

    padding: 30px 20px 0 0;
  }

  nav{
    height: 100px;
  }
  .logo{
    z-index: 15;
    position: absolute;
    left: 40px;
    top: 6px;
    margin-top: 20px;
  }

 

  .toggle{
    top: 36px;
  }

  .toggle i{
    display: block;
    background-color: var(--white-color);
  }

  .toggle-off{
    display: none;
  }
  .toggle--control{
  position: absolute;
  z-index: 10;
  }
  ul{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    padding: 0;
    width: 100vw;
    height: 100vh;
    margin-top: 500px;
    padding-top: 450px;
    background: var(--white-color);
  }

  ul{    opacity:0;
    -webkit-animation: fadeIn 500ms linear;
    -moz-animation: fadeIn 500ms linear;
    -o-animation: fadeIn 500ms linear;
    animation: fadeIn 500ms linear; 
    -webkit-animation-fill-mode:forwards;
    -moz-animation-fill-mode:forwards;
    -o-animation-fill-mode:forwards;
    animation-fill-mode:forwards;
}
  ul li{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 90vw;
    height: 50px;
    margin: 0 10px;
    list-style: none;
    padding: 10px 10px;
    border-radius: 4px;
    border: 1px solid var(--primary-color);

    box-shadow: 2px 2px 10px var(--dark-grey-color);
  
  }
  ul a{
    color: var(--secundary-color);
    font-size: 22px;
    font-weight: 400;
    text-decoration: unset;
    margin: 6px 0;
  }
  #header-background{
    display: flex;
    height: 80%;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  header{
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    align-items: center;
  }

.header-img{

  display: flex;
  height: 560px;
  max-width: 750px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
  margin-left: -4px;
  padding: 5px;
  background: var(--black-color);
  box-shadow: 0 0 5px var(--dark-color);
  border-radius: 8px;
}
.header-img img{
  max-height: 610px;
  opacity: .7;
}
.header-content .input-email-list-add input{
  height: 30px;
}
.header-content{

  color: var(--white-color);
  padding: 12px;
  margin-top: -550px;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 10px;
  z-index: 10;
  max-width: 450px;
  box-shadow: 0 0 5px var(--dark-color);
  background: rgba(22,186,197,1);

  border-radius: 14px;

  opacity:0;
  -webkit-animation: fadeIn 500ms linear;
  -moz-animation: fadeIn 500ms linear;
  -o-animation: fadeIn 500ms linear;
  animation: fadeIn 500ms linear; 
  -webkit-animation-fill-mode:forwards;
  -moz-animation-fill-mode:forwards;
  -o-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

}

.header-content p, label{
  color: var(--secundary-color);
}

.header-content h1{
  width: 100%;
  text-align: center;
  font-weight: 300;
  font-size: 32px;

}
.header-content span{
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  color: var(--secundary-color);
}

.header-content button{
  color: var(--secundary-color);
}

.input-email-list-add{
  display: flex;
  flex-direction: column;
}

.content__container--img img:hover{
  width: 400px;
}
.content__container{
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  text-align: center;
  align-items: center;
  width: auto;
  height: auto;
}
}