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

body {
  font-family: "Poppins", sans-serif;
  background-color: #e5e5e5;
  overflow-x: hidden;
}

ul {
  list-style: none;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

h2 {
  font-weight: 700;
  color: #091e42;
}

p {
  color: #344563;
}

a {
  text-decoration: none;
}

/* Navbar */

.my-nav {
  padding: 0 155px;
}

.navbar-collapse {
  flex-grow: initial;
}

.navbar-nav {
  gap: 32px;
}

.navbar-brand {
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  color: #6070ff;
}

.nav-link {
  color: #344563;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
}

.nav-item a {
  text-decoration: none;
  color: #344563;
  font-weight: 900;
  font-size: 15px;
  line-height: 20px;
  margin-right: 10px;
}

#active {
  display: none;
  position: absolute;
  width: 100px;
  height: 5px;
  border-radius: 5px;
  background-color: #6070ff;
  top: 68px;
  transition: all 0.3s ease;
}

/* Main styles */
#work {
  margin: 142px 0;
}

.my-main-container {
  min-height: 100vh;
  background: #fff url("../assets/Header\ bg@2x.png");
  background-size: 90%;
  background-position: 50%, 0;
  background-repeat: no-repeat;
  border-bottom-left-radius: 100px;
}

.hero-container-content,
.hero-social {
  width: 920px;
}

.hero-social ul {
  gap: 19px;
  padding: 0;
}

.hero-container-content h1 {
  color: #172b4d;
  font-weight: 900;
}

.hero-container-content p {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #344563;
}

.hero-container-content a {
  color: #7f8cff;
}

.nav-shadow {
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
}

/* Card styling */
.my-card {
  border-radius: 20px;
  transition: transform 0.2s;
}

.my-card .container {
  padding: 0;
  gap: 12px;
}

.card-body h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: #6b778c;
}

.my-skill-card h3 {
  padding-top: 16px;
  font-size: 15px;
}

.card-body h3:nth-child(1) {
  color: #344563;
}

.badge {
  background-color: #ebebff;
  color: #6070ff;
}

/* Modal styling */
.modal-dialog {
  width: 100%;
  height: 100%;
}

.modal-content {
  width: 100%;
  height: 100%;
}


/* About section */
#about-section {
  background-color: #fff;
  border-top-right-radius: 100px;
  padding-top: 142px;
  min-height: 80vh;
}

.my-accordion-body {
  gap: 10px;
}

.my-skill-card {
  height: 122px;
  width: 120px;
}

.my-skill-card img {
  width: 48px;
  height: 48px;
}

/* Footer */

footer {
  min-height: 100vh;
  background: #fff;
}

footer.container-fluid {
  padding: 0;
}

.footer-items-container {
  background:
    #6070ff url("../assets/contact\ form\ background\ shapes@2x.png")
    no-repeat;
  background-size: 100%;
  background-position: 50%, 20%;
  border-top-left-radius: 100px;
  min-height: 100vh;
  width: 100vw;
}

.footer-items-container p,
form {
  width: 447px;
}

form textarea {
  width: 447px;
  padding: 6px 12px;
}

form .btn {
  color: #6070ff;
}

form label {
  position: absolute;
  opacity: 0;
}

@media screen and (max-width: 820px) {
  main {
    min-width: 160vw;
  }

  /* #work {
    min-width: 160vw;
  } */

  .my-nav {
    padding: 0;
  }

  .my-nav-container {
    margin: 0;
  }

  .my-main-container {
    background: #fff url("../assets/Header\ bg@2x.png") no-repeat;
    background-size: 100%;
    background-position: center;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh + 4rem);
  }

  .hero-container-content,
  .hero-social {
    width: 100%;
  }

  .navbar-nav {
    background-color: #fff;
  }

  .modal-dialog {
    width: 150%;
    height: 95%;
  }

  .modal-content {
    width: 100%;
    height: 100%;
  }

  .footer-items-container {
    background:
      #6070ff url("../assets/contact\ form\ background\ shapes@2x.png")
      no-repeat;
    background-size: 100%;
    background-position: 50%, 20%;
    border-top-left-radius: 100px;
    min-height: 100vh;
    width: 160vw;
  }
}

@media screen and (max-width: 500px) {
  /* main {
    min-width: 160vw;
  }

  #work {
    min-width: 160vw;
  } */

  label,
  form textarea {
    width: 300px;
  }

  .footer-items-container {
    min-width: 160vw;
  }
}
