:root {
  --dark-green: #016171;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#navigation-bar .navbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 20px 100px;
}

#navigation-bar .navbar .logo .logo-name {
  font-family: "Oleo Script Swash Caps", system-ui;
  font-size: 32px;
  color: var(--dark-green);
}

#navigation-bar .navbar .nav-wrapper {
  background-color: var(--dark-green);
  border-radius: 30px;
}

#navigation-bar .navbar .nav-wrapper .nav-menu {
  display: flex;
}

#navigation-bar .navbar .nav-menu .nav-item {
  list-style: none;
  padding: 20px 20px;
}

#navigation-bar .navbar .nav-menu .nav-item a {
  text-decoration: none;
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 500;
}

#hero-section {
  margin: 0 100px;
}

#hero-section .hero-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 100px;
}

#hero-section .hero-wrapper .hero-content .styled-header {
  font-family: "Italianno", cursive;
  font-size: 55px;
  font-weight: 400;
  color: var(--dark-green);
  margin-bottom: -10px;
  padding-left: 0;
}

#hero-section .hero-wrapper .hero-content .heading {
  font-family: "Raleway", sans-serif;
  font-size: 55px;
  font-weight: 900;
  margin-bottom: 5px;
}

#hero-section .hero-wrapper .hero-content .subheading {
  font-family: "Raleway", sans-serif;
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 5px;
}

#hero-section .hero-wrapper .hero-content .hero-description {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-left: 0;
}

#hero-section .hero-wrapper .hero-content .cta {
  display: flex;
  flex-direction: row;
  align-items: center;
}

#hero-section .hero-wrapper .hero-content .cta a {
  margin-right: 15px;
}

#hero-section .hero-wrapper .hero-content .cta a .btn1 {
  background-color: var(--dark-green);
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 30px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}

#hero-section .hero-wrapper .hero-content .cta a .btn-outline {
  background-color: #fff;
  color: var(--dark-green);
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 30px;
  border: 2px solid var(--dark-green);
  border-radius: 30px;
  cursor: pointer;
}

#hero-section .hero-wrapper .hero-content .cta a .btn-outline:hover {
  background-color: var(--dark-green);
  color: #fff;
}

#hero-section .hero-wrapper .hero-image img {
  width: 526px;
  height: 535px;
}

#about-me {
  margin-bottom: 50px;
}

.heading-2 {
  font-family: "Raleway", sans-serif;
  font-size: 36px;
  font-weight: 700;
  text-align: center;

  margin-top: 100px;
}

#about-me .about-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px 100px;
  gap: 70px;
}
#about-me .about-wrapper .about-image img {
  width: 571px;
  height: 559px;
}

#about-me .about-wrapper .about-content h4 {
  font-family: "Raleway", sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

#about-me .about-wrapper .about-content .paragraph {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  text-align: justify;
  margin-bottom: 20px;
  padding-left: 0;
}

#about-me .about-wrapper .about-content .btn1 {
  background-color: var(--dark-green);
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 30px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}

#services-section {
  margin: 50px 100px;
}

#services-section .services-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

#services-section .services-wrapper .box {
  box-shadow: 2px 2px 25px 2px rgba(0, 0, 0, 0.2);
  border-radius: 30px;
}

#services-section .services-wrapper .box img,
h3,
p {
  padding-left: 30px;
  padding-right: 30px;
}

#services-section .services-wrapper .box h3 {
  font-family: "Raleway", sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 10px;
}

#services-section .services-wrapper .box p {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 400;
  padding-bottom: 30px;
  text-align: justify;
}

#services-section .services-wrapper .box img {
  padding-top: 30px;
}

#portfolio-section {
  margin: 0 100px;
}

#portfolio-section .porfolio-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 30px;
}

#portfolio-section .btn1 {
  background-color: var(--dark-green);
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 30px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  display: block;
  width: 176px;
  margin: 30px auto;
}

#portfolio-section a {
  text-decoration: none;
}

hr {
  border-top: 3px solid var(--dark-green);
}
footer {
  margin: 30px;
}

footer p {
  text-align: center;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 700;
}

form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 10px;
}

input {
  width: 30%;
  font-size: 16px;
  font-weight: 400;
  padding: 10px;
  margin-bottom: 10px;
  background-color: #fff;
  border: 2px solid var(--dark-green);
  color: var(--dark-green);
  border-radius: 30px;
  font-family: "Raleway", sans-serif;
  outline: var(--dark-green);
}

textarea {
  width: 30%;
  font-size: 16px;
  font-weight: 400;
  padding: 10px;
  margin-bottom: 20px;
  background-color: #fff;
  border: 2px solid var(--dark-green);
  color: var(--dark-green);
  border-radius: 30px;
  font-family: "Raleway", sans-serif;
  outline: var(--dark-green);
}

.btn5 {
  background-color: var(--dark-green);
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 15px 30px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}
