@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}
body {
  background: linear-gradient(to right, #1a4645, #266867);
}
.header {
  display: flex;
  justify-content: space-between;
  background-color: #ecebeba7;
  padding: 0px 20px;
}
.logo-part {
  display: flex;
  align-items: center;
}
.logo-container {
  width: 80px;
  height: 90px;
  display: flex;
  margin: 0px;
}

.logo-container img {
  margin: 0px;
  padding: 0px;
}
.action-part {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 25%;
}
.actions-group {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}

a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  margin: 0px 0px;
}

.download-btn {
  background-color: #0e2322;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 500;
  min-width: min-content;
  width: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}
.download-btn .icon-conatiner {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
.download-btn .icon-conatiner img {
  width: 100%;
}

/* content */
.content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 100%;
  color: white;
  min-height: 600px;
}

.text-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  padding: 0px 50px;
}
.text-content h1 {
  font-size: 35px;
  margin-bottom: 20px;
}

.text-content p {
  font-size: 20px;
  margin-bottom: 20px;
}
.img-content {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0e2322;
  /* clip-path: polygon(0 0, 100% 0%, 100% 81%, 35% 81%, 0% 50%); */
  border-bottom-left-radius: 150px;
  /* filter: drop-shadow(-0px 0px 15px #ecebeba7); */
  /* overflow: hidden; */
  position: relative;
}

.imgs-view {
  width: 80%;
  height: 80%;
  display: flex;
  flex-direction: column;
  /* justify-content: space-around; */
}
.img-generic {
  width: 510px;
  height: 318px;
}

.img-generic img {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-two {
  position: absolute;
  top: 240px;
  right: 20px;
}
/* copyrights */
.copyrights {
  color: white;
  margin-left: 50px;
}
.file-info {
  display: flex;
  flex-direction: row;
}
.file-info p {
  margin-top: 5px;
  margin-right: 10px;
  font-size: 14px;
}
/* media query */
@media (max-width: 976px) {
  .img-content {
    display: none;
  }
  .action-part {
    display: none;
  }
  .content {
    flex-direction: column;
    align-items: center;
  }

  .text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 90%;
    padding: 0px 50px;
    padding-top: 120px;
  }
}
