* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: #262626;
  background-image: url(../images/Ellipse\ 682.png);
  background-position: top 0 left 0;
  background-repeat: no-repeat;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 106rem;
  margin-inline: auto;
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .content {
  max-width: 70rem;
}

.header .content h2 {
  font-size: 5rem;
  font-weight: 700;
  color: #436cf9;
  margin-bottom: 2.1rem;
  border-bottom: 1px solid #436cf9;
}

.header .content h3 {
  font-size: 3rem;
  font-weight: 700;
}

.header .content a {
  /* margin-bottom: 2.1rem; */
  width: 4rem;
  height: 4rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #436cf9;
  margin: 1rem 0rem;
}

.header .content a img {
  width: 100%;
  height: 100%;
}

.header .content h4 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #436cf9;
  margin-bottom: 0.5rem;
}

.header .content p {
  font-size: 1.6rem;
  color: #262626;
}

.header .content p:not(:last-child) {
  margin-bottom: 2rem;
}

.main {
  margin-top: 10rem;
}

.main .content {
  padding-bottom: 4rem;
}

.main .content:not(:last-child) {
  margin-bottom: 4rem;
  border-bottom: 1px solid #d3d3d3;
}

.main .content:nth-child(2) ul {
  list-style: disc;
  list-style-position: inside;
}

.main .content h4 {
  position: relative;
  font-size: 2.5rem;
  font-weight: 600;
  color: #436cf9;
  margin-bottom: 2rem;
}

.main .content h4 img {
  position: absolute;
  top: 50%;
  left: -10rem;
  transform: translateY(-50%);
}

.main .content ul {
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
}

.main .content ul li strong {
  font-weight: 600;
  font-size: 1.8rem;
  color: #436cf9;
}

.main .content ul li span {
  font-weight: 600;
  font-size: 1.8rem;
}

.main .content ul li ul {
  list-style: disc;
  list-style-position: inside;
  row-gap: 1rem;
  margin-top: 1rem;
}

.main .form-container form {
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
  max-width: 49.2rem;
}

.main .form-container h5 {
  font-weight: 600;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  background-color: #436cf9;
  padding: 1rem;
  color: #fff;
}

.main .form-container p {
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 3rem;
  max-width: 56.25rem;
}

.main .form-container form .input-box {
  display: flex;
  flex-direction: column;
  row-gap: 1.2rem;
  width: 100%;
}

.main .form-container form .input-box label {
  font-weight: 700;
  color: #436cf9;
}

.main .form-container form .input-box input {
  border: 1px solid #d8d8d8;
  outline: none;
  width: 100%;
  padding: 1.7rem 2.3rem;
  border-radius: 0.5rem;
  width: 100%;
}

.main .form-container form button {
  all: unset;
  display: inline-block;
  padding: 1.5rem 3rem;
  border-radius: 1rem;
  background-color: #436cf9;
  color: #fff;
  width: 20%;
  text-align: center;
  cursor: pointer;
}

.main .bottom-text {
  font-size: 2rem;
  font-weight: 500;
  margin: 4rem 0rem;
}

.main .image-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.main .image-group img {
  max-width: 20rem;
}

@media (max-width: 1024px) {
  html {
    font-size: 55%;
  }

  .container {
    padding-inline: 2rem;
  }

  .header {
    flex-direction: column;
    row-gap: 2rem;
    text-align: center;
  }

  .main .content {
    text-align: center;
  }

  .main .content h4 img {
    display: none;
  }

  .main .form-container form {
    align-items: center;
    margin-inline: auto;
  }

  .main .bottom-text {
    text-align: center;
  }

  .main .image-group {
    /* flex-wrap: wrap; */
  }

  .main .form-container h5 {
    text-align: center;
  }

  .main .form-container p {
    text-align: center;
    margin-inline: auto;
  }
}

@media (max-width: 425px) {
  html {
    font-size: 50%;
  }

  .main .image-group img {
    max-width: 10rem;
  }
}

/* Blog Page Css */

.header-content {
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5rem;
}

.main-content {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 2rem;
  border-radius: 1rem;
}

.main-content article {
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
}

.main-content article h2 {
  color: #436cf9;
  border-bottom: 2px solid #f4f4f4;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.main-content article .email-link {
  background-color: #436cf9;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 8rem;
}

footer .footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

footer .footer-nav li a {
  font-size: 2rem;
  font-weight: 500;
}

footer .social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

footer .social-links a {
  width: 4rem;
  height: 4rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

footer .social-links li:nth-child(2) a img {
  width: 35px;
}
