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

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Swiss721 Cn BT', sans-serif;

  scroll-behavior: smooth;
}
body{
  padding: 60px 40px;

  background-image: url("./bg.jpg");
  background-attachment: fixed;
  background-position: top;
  background-size: cover;
}

*::-webkit-scrollbar{
  width: 10px;
}
*::-webkit-scrollbar-track{
  background-color: transparent;
}
*::-webkit-scrollbar-thumb{
  width: 10px;

  border-radius: 5px;
  background-color: #33a864;
}

.container{
  width: 100%;
  max-width: 740px;
  padding: 60px 40px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;

  border-radius: 10px;
  background-color: #E9E9E9;
}

.section-1{
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.section-1 img {
  width: 100%;
  max-width: 320px;
}

.section-1 strong{
  width: 100%;
  max-width: 650px;

  font-weight: 400;
  text-align: center;
  font-size: 1.30rem;
  color: #000;
}

.video{
  width: 100%;
  max-width: 690px;
  height: 315px;
}

.media{
  width: 100%;
  max-width: 690px;
  margin-top: 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.media img{
  width: 100%;
  border-radius: 7px;
}

.links-container{
  width: 100%;
  max-width: 690px;

  margin-top: 40px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.links-box{
  width: 100%;

  display: flex;
  flex-direction: column;
  gap: 20px;
}

.link{
  flex: 1;
  padding: 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  background-color: #E1E1E1;
  border-radius: 10px;

  position: relative;
  overflow: hidden;

  text-decoration: none;
  text-align: center;
  font-size: 1.25rem;
  color: #000;
  
  transition: .2s;
}

.link span{
  z-index: 10;
}

.link::after,
.link::before{
  content: "";
  display: block;

  width: 100%;
  height: 0;

  position: absolute;

  background-color: #ff8b47;

  transition: .2s ease-in;
  transition-delay: .1s;
}

.link::after{
  bottom: 0;
  left: 0;
}

.link::before{
  top: 0;
  left: 0;
}

.link:hover{
  transition-delay: .2s;
  transform: scale(1.05);
}

.link:hover::after,
.link:hover::before {
  height: 50%;
}

.link:hover .ph, 
.link:hover span{
  color: #FFF;

  transition: .4s;
  transition-delay: .2s;
}

.ph{
  z-index: 10;
  font-size: 2rem;
  color: #000;
}

.footer{
  margin-top: 40px;

  display: flex;
  align-items: center;
  flex-direction: column;
}

.footer span{
  font-size: .80rem;
  color: #888;
}

.copy{
  margin-top: 10px;

  display: flex;
  align-items: center;
  gap: 5px;

  color: #000;
}

#logo-plucs{
  width: 30px;

  position: relative;
  top: -4px;
}

@media screen and (max-width: 720px) {
  body{
    padding: 40px 20px;
  }
  
  .container{
    padding: 40px 20px;
  }

  .section-1 img {
    width: 100%;
    max-width: 220px;
  }

  .section-1 strong{
    font-size: .90rem;
  }

  .media{
    margin-top: 10px;
  }

  .link{
    font-size: 0.85rem;
  }
  .ph{
    font-size: 1.40rem;
  }
}