* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  background-color: #fdfdfd;
  color: #414141;
}

.nav-bar {
  width: 100%;
  height: 70px;
  background-color: rgb(255, 255, 255);
  position: fixed;
  z-index: 1000;
  box-shadow: 0px 1px 5px rgb(177, 177, 177);
}

.nav-bar img {
  width: 50px;
}

.nav-bar li {
  list-style: none;
}

.nav-bar a {
  text-decoration: none;
  color: black;
}

.logo-sec {
  padding: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}

.nav-bar ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.button-sec {
  padding-right: 20px;
  list-style: none;
}

.nav-bar .button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  color: white;
  background-color: #4c5baf;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  border: none;
}

.button:hover {
  background-color: #4546a0;
}

.intro-sec {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70vh;
}

.main-img {
  width: 50%;
  height: 90%;
  overflow: hidden;
}
.main-img img {
  width: 90%;
  rotate: 35deg;
  position: relative;
  bottom: 80px;
  z-index: -1;
  min-height: 1155px;
  min-width: 1055px;
  max-width: 100%;
}

.main-text {
  width: 50%;
  height: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 50px;
}

.main-text h1 {
  font-size: 90px;
  font-weight: 100;
  line-height: 93px;
  text-align: center;
}

.main-text p {
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 1em;
}

.features-sec {
  width: 100%;
  height: fit;
  z-index: 2;
}

.feature {
  width: 100%;
  height: 70vh;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  gap: 50px;
  align-items: center;
  box-shadow: 0px 1px 10px rgb(189, 189, 189);
}

.feature-text {
  width: 25%;
  height: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.feature-text h2 {
  font-size: 44px;
  line-height: 55px;
  font-weight: 300;
  margin-bottom: 1em;
}

.feature-text p {
  font-size: 18px;
  line-height: 20px;
  font-weight: 300;
  margin-bottom: 1em;
}

.feature-img {
  width: 25%;
  height: 50%;
}

.feature-img img {
  width: 100%;
  height: 100%;
}

.about-sec {
  width: 100%;
  height: 60vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.about-sec p {
  font-size: 1.2em;
  width: 50%;
}

.about-sec h2 {
  font-size: 44px;
  line-height: 55px;
  font-weight: 300;
}

.footer {
  width: 100%;
  background-color: #e7e7e7;
  box-shadow: 0px 1px 10px rgb(189, 189, 189);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.footer-content li {
  list-style: none;
}

.footer-content a {
  text-decoration: none;
  color: black;
}

.footer-links ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-social {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-social a,
.footer-links a {
  font-weight: 300px;
  font-size: 14px;
}

.footer-social a:hover,
.footer-links a:hover {
  color: #4c5baf;
}
