:root {
  --primary-color: #010b26;
  --button-color: #f1f3f9;
}

@keyframes myrotation {
  from {
    rotate: 0deg;
  }
  to {
    rotate: 360deg;
  }
}

.max-w {
  max-width: 1368px;
}

.my-flex {
  display: flex;
  flex-wrap: wrap;
  max-width: 80%;
  column-gap: 10%;
  row-gap: 50px;
  columns: 2;
}

.main {
  width: 100%;
  background-color: black;
  position: relative;
  z-index: -2;
}

.entrance {
  background-color: var(--primary-color);
}
.entrance img {
  width: 100%;
}

.about-us {
  border-bottom-left-radius: 100vmax;
  border-bottom-right-radius: 100vmax;
  background-color: var(--primary-color);
  width: 100%;
  text-align: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.about-us img {
  width: 20%;
  margin-top: -8%;
  animation: myrotation 20s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.about-us p {
  margin-left: auto;
  margin-right: auto;
  color: white;
  font-size: 1.3vw;
  line-height: 3vw;
  padding: 1% 5% 10% 5%;
}

.works {
  display: flex;
  position: relative;
  flex-direction: column;
  margin-top: -10%;
  padding-bottom: 10%;
  border-radius: 100vmax;
  background-color: white;
  align-items: center;
}

.works h1 {
  font-size: 4vw;
  font-weight: 200;
  margin-top: 10%;
}

.work-cards {
  margin-left: 10%;
  margin-left: 10%;
}

.work-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 40%;
  height: 100%;
}

.work-card-img {
  width: 100%;
  background-image: url("./assets/img/cardimage.png");
  background-repeat: no-repeat;
  background-size: contain;
}

.work-card-img img {
  padding: 10%;
  width: 80%;
  border-radius: 15%;
}

.work-card h2 {
  font-size: 2vw;
}

.work-card p {
  font-size: 1.4vw;
}

.work-card a {
  display: flex;
  background-color: var(--button-color);
  border-radius: 100%;
  padding: 2%;
  width: 20%;
  margin-top: 10%;
}

.work-card a img {
  width: 100%;
}

.works-button {
  margin-top: 10%;
  text-decoration: none;
  font-size: 2vw;
  font-weight: 500;
  padding: 1% 10%;
  color: #010b26;
  border: 2px black solid;
}

.team {
  display: flex;
  flex-direction: column;
  margin-top: -10%;
  padding-bottom: 10%;
  border-radius: 100vmax;
  background-color: var(--primary-color);
  align-items: center;
}

.team-header {
  width: 18%;
  animation: myrotation 20s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.team-members {
  margin-left: 10%;
  margin-left: 10%;
  margin-top: 10%;
}

.team-member-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 40%;
  height: 100%;
}

.team-img {
  background-image: url(./assets/img/teamimg.png);
  width: 100%;
  background-repeat: no-repeat;
  background-size: contain;
}

.team-img img {
  padding: 10%;
  width: 80%;
  border-radius: 10%;
}

.team-member-card strong {
  font-weight: 900;
}

.team-member-card hr {
  width: 100%;
}

.team-member-card h2 {
  margin-bottom: 2%;
  color: white;
}

.team-member-card h4 {
  width: 100%;
  text-align: start;
  color: white;
  margin-bottom: 1%;
  font-weight: 200;
}

.team-member-card ul {
  width: 100%;
  color: white;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.team-button {
  color: white;
  text-decoration: none;
  font-size: 1.5vw;
  padding: 1% 10%;
  border: 2px white solid;
  margin-top: 10%;
}

.article {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: -1;
  margin-top: -10%;
  padding-bottom: 10%;
  border-radius: 100vmax;
  background-color: white;
  align-items: center;
}

.article h1 {
  font-size: 4vw;
  font-weight: 200;
  margin-top: 10%;
}

.articles {
  margin-left: 10%;
  margin-top: 10%;
}

.article-card {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.article-card-img {
  width: 100%;
  border-radius: 10%;
}

.article-card h2 {
  font-size: 2vw;
}

.article-card p {
  font-size: 1.5vw;
}

.article-card a {
  margin-top: 10%;
  width: 20%;
}

.article-card img {
  width: 100%;
}

.article-button {
  color: black;
  text-decoration: none;
  margin-top: 10%;
  font-size: 1.8vw;
  padding: 1% 8%;
  border: black 2px solid;
}

@media screen and (min-width: 1919px) {
 

.entrance img {
  max-width: 1920px;
  height: auto;
}




}