/*Font for title*/
@font-face {
  font-family: "TITLE";
  src: url("./fonts/Sans.ttf");
  font-style: normal;
  line-height: normal;
}

@keyframes float {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px); 
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes moveLeft {
  0% {
    transform: translateX(0); 
  }
  50% {
    transform: translateX(-10px); 
  }
  100% {
    transform: translateX(0); 
  }
}

/*Body properties*/
body {
  margin: 0;
  padding: 0;
  width: 1084px;
  height: 444px;
  overflow: hidden;
  background-image: url("../assets/background.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.main-content{
  position: relative; 
  width: 100%; 
  height: 100%;
  width: 1084px;
  height: 444px;
  overflow: hidden;
}

.shape_background {
  position: absolute; 
  margin-top: 10px;
  margin-left: 10px;
  width: 50%;
  height: 417px;
  background-color: #2fb9d1; 
  clip-path: ellipse(85% 100% at 0% 50%);
  z-index: -1; 
  animation: float 5s ease-in-out infinite;
}

.shape {
  position: relative; 
  width: 50%;
  height: 100%;
  overflow: hidden;
  clip-path: ellipse(80% 90% at 0% 50%);
  z-index: 1; 
}

.shape img {
  margin-top: 10px;
  margin-left: 10px;
  width: 100%;
  height: 417px;
  object-fit: cover;
  object-position: center top;
}

.shape_2 {
  position: absolute; 
  top: 11px; 
  left: 832px; 
  width: 193px; 
  height: 54px; 
  z-index: 2;
  animation: moveLeft 5s ease-in-out infinite; 
}

.shape_2 img {
  width: 100%; 
  height: 100%; 
}

.shape_3 {
  position: absolute; 
  top: 377px; 
  left: 757px; 
  width: 120px; 
  height: 47px; 
  z-index: 2;
  animation: float 5s ease-in-out infinite; 
}

.shape_3 img {
  width: 100%; 
  height: 100%; 
}

.title {
  position: absolute; 
  top: 20px; 
  left: 559px; 
  color: #2FB9D1;
   font-family: sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.sub_title {
  position: absolute; 
  top: 85px; 
  left: 559px; 
  color: #194495;
   font-family: sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.news {
  position: absolute; 
  top: 130px; 
  left: 559px; 
  color: #1D1D1B;
  font-family: sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: 440px;
  height: 210px;
  overflow: hidden;
}