body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background: #edf2fc;
}
.header {
  width: 100%;
  height: 80vh;
  background: #edf2fc;
  font-family: sans-serif;
  position: relative;
}
nav {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 50px;
}

.logo {
  width: 100px;
  cursor: pointer;
}

nav ul li {
  display: inline-block;
  list-style: none;
  margin: 10px 20px;
}

nav ul li a {
  text-decoration: none;
  color: #606163;
}
nav ul li a:hover {
  text-decoration: none;
  color: #ff4321;
}
.info {
  margin-left: 8%;
  margin-top: 8%;
  justify-content: space-between;
  position: relative;
}

.info h1 {
  font-size: 45px;
  color: #212121;
}

span {
  color: #ff4321;
}

.info p {
  color: #606163;
  line-height: 22px;
}

.info .image {
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: right;
  right: 5%;
  bottom: -50px;
}
.info img {
  height: 330px;
  width: 330px;
  border-radius: 50%;
}

.btn {
  background: none;
  text-decoration: none;
  border: 2px solid #4a76ee;
  padding-bottom: 5%;
  padding: 9px 20px;
  right: 1px;
  margin: 8px;
  cursor: pointer;
  position: relative;
  border-radius: 8px;
}
.btn:hover {
  text-decoration: none;
  border: 2px solid #000;
}
.testimony1 {
  color: #212121;
}

.skills-section {
  width: 100%;
  margin-top: 4%;
  font-family: sans-serif;
  position: relative;
}

.skills-section .skills {
  margin-bottom: 5%;
  display: flex;
  justify-content: center;
}
.skills h1 {
  font-size: 45px;
  position: absolute;
  justify-content: center;
}
.skills p {
  margin-top: 10%;
  font-size: 20px;
}

.skills-section .cells {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 5%;
}

.skills-section .cells .cell {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 200px;
  padding: 10px 20px;
  margin: 20px;
  border: 1.5px solid #000000;
  border-radius: 5px;
}

.testimony-section {
  height: 80vh;
  width: 100%;
  margin-top: 8%;
  font-family: sans-serif;
  position: relative;
}
.testimony h1 {
  margin-bottom: 4%;
  font-size: 40px;
  display: flex;
  justify-content: center;
}
.testimony img {
  display: flex;
  justify-content: center;
  max-width: 250px;
  border-radius: 5%;
  margin: auto;
  margin-bottom: 5px;
}
.testimony p {
  display: flex;
  font-size: 18px;
  justify-content: center;
  text-align: center;
}

.footer {
  width: 100%;
  margin-top: 6%;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer a {
  color: rebeccapurple;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}

.footer a .icon {
  color: #a81020;
}
.footer a:hover {
  color: #3d4045;
}
.footer a:hover .icon {
  transform: scale(1.2);
  transition: 200ms all;
}

.contact-section {
  padding: 0 50px;
  margin-bottom: 80px;
  margin-top: 90px;
}

.contact-section h2 {
  font-size: 35px;
  text-align: center;
  margin-bottom: 10px;
}

.contact-section .group {
  display: flex;
  gap: 50px;
  align-items: center;
}

.contact-section .group .text {
  flex: 3;
  margin-top: 20px;
}

.contact-section .group form {
  flex: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateX(-50%);
}

.contact-section .group form input,
.contact-section .group form textarea {
  font-family: "Poppins", sans-serif;
  border: 2px solid #1a1c20;
  background-color: transparent;
  padding: 10px;
  margin-bottom: 15px;
  outline: none;
  resize: none;
}

.contact-section .group form button {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  color: #fff;
  background-color: #1a1c20;
  border: none;
  height: 50px;
  cursor: pointer;
  transition: 0.1s;
}

.contact-section .group form button:hover {
  filter: brightness(0.9);
}