@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');


*
{
  margin:0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

li
{
  list-style: none;
}

a
{
  cursor: pointer;
  transition: all 0.5s;
}

a:hover
{
  transform: scale(1.1) ;
  color: lime !important;

}

.section-landing
{
  position: relative;
  width: 100%;
  min-height: 100vh;
  height: max-content;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0062be;
  transition: 0.5s;
/* border: red solid; */
}

.header-landing
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
/* border: hotpink solid; */
}

.logo
{
  position: relative;
  max-width: 80px;
}

.header-landing ul
{
  position: relative;
  font-size: 1.5vw;
  display: flex;
  text-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
  width: 70vw;
  justify-content: space-evenly;
/* flex-direction: column; */
}

.header-landing ul li a
{
  display: flex;
  color: #fff;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  /* margin-left: 40px; */
}

.content-landing
{
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 0 3rem;
  /* border: green solid; */
}

.textBox-landing
{
  position: relative;
  width: 90vw;max-width: 600px;
/* width: clamp(200px, 167%, 385px); */
/* border: greenyellow solid; */
/* overflow: hidden; *//* margin: 0 0 3rem; */
}

.title-landing
{
  color: #fff;
  font-size: calc(2rem + 2vw);
  line-height: 1.4em;
  font-weight: 900;
  text-transform: uppercase;
}

.title-landing span
{
  font-size: 1.5em;
}

.text-landing
{
  color: #fff;
}

.textBox-landing a
{
  display: inline-block;
  margin-top: 20px;
  padding: 8px 20px;
  background: #fff;
  color: #111;
  border-radius: 40px;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
}

.imgBox
{
  max-width: 600px;
  width: 75%;display: flex;
  padding-right: 50px;
  margin-top: 50px;
  justify-content: flex-end;
  /* border: yellow solid; */
}

.imgBox img
{
  /* max-width: 260px; */
  width: 100%;
  filter: drop-shadow(5px 5px 5px #222);
}

.thumb
{
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
/* margin: 2rem 0 0; */
}

.thumb li
{
  list-style: none;
  display: inline-block;
  margin: 0 20px;
  cursor: pointer;
  transition: 0.5s;
}

.thumb li:hover
{
  transform: translateY(-15px);
}

.thumb li img
{
  max-width: 40px;
}

.sci
{
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 300;
  /* border: brown solid; */
}

.sci li
{
  list-style: none;
  filter: drop-shadow(5px 5px 5px #222);
}

.sci li a
{
  display: inline-block;
  /* filter: invert(1); */
  margin: 5px 0;
  color: #fff;
  /* transform: scale(0.6); */
  font-size: 2.4rem;
  /* transform: rotate(-12deg); */
}

.sci li:hover a
{
  color: lime;
}

.section-home
{
  background: transparent;
  transition: 0.5s;
  padding: 6rem 2rem;
  width: 95vw;
}


.colors-home
{
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid #fff;
  overflow: hidden;
}

.thumb li:nth-child(1) .colors-home
{
  background: var(--color-01);
}

.thumb li:nth-child(2) .colors-home
{
  background: var(--color-02);
}

.thumb li:nth-child(3) .colors-home
{
  background: var(--color-03);
}
