/* dark color  */
:root {
  --bg-color: #000000;
  --bgtext-color: #141414;
  --sec-bg-color: #131313;
  --sample-image-bg-color: #d9d9d913;
  --sec-hover-color: #1b1b1b;
  --card-color: #111111;
  --sec2-bg-color: #202020;
  --text-color: #d3d3d3;
  --para-color: #a1a1a1;
  --para2-color: #a0a0a0;
  --placeholder-color: #4b4b4b;
  --icon-color: #646774;
  --box-shadow: 0 0 1rem #00000000;
  --main-color: #42cc49;
  --main-color-hover: #15d81f;
  --mark-color: #bd9700;
}

body {
  background: var(--bg-color);
  color: var(--text-color);
  padding: 9rem 2.2rem 2.2rem;
}

.header-cont header .right a {
  display: flex;
  align-items: center;
  line-height: 0;
  justify-content: center;
  background-color: var(--main-color);
  padding: 0.6rem 1.2rem;
  gap: 0.5rem;
  border-radius: 50rem;
  color: var(--bgtext-color);
  font-size: 0.74rem;
  text-transform: capitalize;
}

main {
  max-width: 1050px;
  display: flex;
  flex-direction: column;
}

main .left-and-right-wallper {
  max-width: 1050px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 2rem;
}

main .left-and-right-wallper .left h4 {
  color: var(--para2-color);
  text-transform: capitalize;
  font-size: 0.9rem;
  font-weight: 400;
}

main .left-and-right-wallper .left h1 {
  text-transform: capitalize;
  margin-top: 0.3rem;
  font-weight: 500;
  font-size: 1.9rem;
}

main .left-and-right-wallper .left p {
  color: var(--para-color);
  font-size: 0.9rem;
  max-width: 30rem;
  line-height: 1.6rem;
}

main .left-and-right-wallper .left .icons-wallper {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-left: 0.3rem;
}

main .left-and-right-wallper .left .icons-wallper .box {
  display: flex;
  align-items: center;
  gap: 1rem;
}

main .left-and-right-wallper .left .icons-wallper .box .icon {
  background-color: var(--main-color);
  height: 3.4rem;
  width: 3.4rem;
  border-radius: 50rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

main .left-and-right-wallper .left .icons-wallper .box .icon:hover {
  background-color: var(--main-color-hover);
}

main .left-and-right-wallper .left .icons-wallper .box .icon svg {
  stroke: #424242;
  stroke-width: 0.09rem;
  width: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

main .left-and-right-wallper .left .icons-wallper .box .information {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

main .left-and-right-wallper .left .icons-wallper .box .information h3 {
  text-transform: capitalize;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1rem;
}

main .left-and-right-wallper .left .icons-wallper .box .information h5 {
  text-transform: capitalize;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1rem;
  color: var(--para-color);
}

main .left-and-right-wallper .left .bar {
  height: 0.07rem;
  width: 100%;
  background-color: var(--main-color);
  margin-top: 4rem;
  border-radius: 50rem;
}

main .left-and-right-wallper .left .bottom {
  margin-top: 1.3rem;
}

main .left-and-right-wallper .left .bottom h2 {
  text-transform: capitalize;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--text-color);
}

main .left-and-right-wallper .left .bottom .ico-wallper {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

main .left-and-right-wallper .left .bottom .ico-wallper .con {
  height: 2.5rem;
  width: 2.5rem;
  background-color: var(--main-color);
  border-radius: 50rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

main .left-and-right-wallper .left .bottom .ico-wallper .con:hover {
  background-color: var(--main-color-hover);
}

main .left-and-right-wallper .left .bottom .ico-wallper .con svg {
  stroke-width: 0.09rem;
  width: 1.5rem;
  display: flex;
  align-items: center;
  fill: #222222;
}

main .left-and-right-wallper .right {
  padding: 0;
  display: flex;
  justify-content: end;
}

main .left-and-right-wallper .right .form-wallper {
  display: flex;
  flex-direction: column;
  background-color: var(--card-color);
  box-shadow: var(--box-shadow);
  border-radius: 3rem;
  padding: 2.4rem 3rem;
}

main .left-and-right-wallper .right .form-wallper .cont-heading h2 {
  font-size: 1.75rem;
  text-transform: capitalize;
  font-weight: 500;
}

main .left-and-right-wallper .right .form-wallper .form {
  margin-top: 1.5rem;
}

main .left-and-right-wallper .right .form-wallper .form form {
  display: flex;
  flex-direction: column;
  gap: 2.3rem;
  width: 23rem;
}

main .left-and-right-wallper .right .form-wallper .form form input {
  background-color: var(--sec-bg-color);
  height: 3rem;
  border-radius: 50rem;
  padding: 0 1rem 0 2.5rem;
  width: 100%;
  color: var(--text-color);
  text-transform: capitalize;
}

main
  .left-and-right-wallper
  .right
  .form-wallper
  .form
  form
  input::placeholder {
  color: var(--placeholder-color);
  font-family: poppins;
  font-weight: 300;
  text-transform: capitalize;
}

main .left-and-right-wallper .right .form-wallper .form form textarea {
  background-color: var(--sec-bg-color);
  border-radius: 2rem;
  resize: none;
  padding: 1.3rem 1rem 1rem 2rem;
  width: 100%;
  color: var(--text-color);
  height: 12rem;
}

main
  .left-and-right-wallper
  .right
  .form-wallper
  .form
  form
  textarea::placeholder {
  color: var(--placeholder-color);
  font-family: poppins;
  font-weight: 300;
  text-transform: capitalize;
}

main .left-and-right-wallper .right .form-wallper .form form #btn {
  background-color: var(--main-color);
  cursor: pointer;
  padding: 1rem 1rem;
  width: 9rem;
  line-height: 0;
  color: #0a0a0a;
}

/* bottom  */
main .bottom-cont {
  margin-top: 2.8rem;
  margin-left: -2rem;
}

main .bottom-cont .heee {
  margin-left: 0.2rem;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 1.6rem;
}

main .bottom-cont .cards-wallper {
  margin-top: 0rem;
  padding: 1.5rem 0.7rem;
  justify-content: space-between;
  overflow: hidden;
}

@media (max-width: 1284px) {
  .cards-wallper {
    overflow-y: auto;
  }
}

@media (max-width: 860px) {
  main .left-and-right-wallper .right {
    max-width: 29rem;
  }
}

@media (max-width: 764px) {
  main .left-and-right-wallper {
    flex-direction: column;
  }

  main .left-and-right-wallper .right {
    width: 100%;
    max-width: none;
  }

  main .left-and-right-wallper .right {
    justify-content: start;
    margin-top: 2rem;
  }

  main .left-and-right-wallper .right .form-wallper {
    width: 100%;
  }

  main .left-and-right-wallper .right .form-wallper .form form {
    width: 100%;
  }

  main .left-and-right-wallper {
    margin-top: 3rem;
    padding: 0 0.7rem;
  }
}

@media (max-width: 1152px) {
  /* bottom  */
  main .bottom-cont {
    margin-left: -1rem;
  }
}

@media (max-width: 1118px) {
  /* bottom  */
  main .bottom-cont {
    margin-left: -0.5rem;
  }
}

@media (max-width: 1108px) {
  /* top cards  */
  .cards-wallper {
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  main .cont-btn {
    margin-left: 0rem;
  }

  main .about-dis {
    margin-left: 0rem;
  }

  main h2 {
    font-size: 1.7rem;
    text-transform: capitalize;
    font-weight: 540;
    margin-left: 0.2rem;
  }

  main .image-about {
    cursor: pointer;
    background-color: var(--sample-image-bg-color);
    max-width: 1120px;
    height: 13rem;
    margin-left: 0rem;
    margin-top: 1.7rem;
    border-radius: 2.3rem;
  }
}

@media (max-width: 454px) {
  /* blogs links  */
  main {
    padding: 3rem 0.2rem 0.8rem;
  }

  body {
    padding: 5rem 1.5rem 1rem;
  }

  .header-cont {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 0.8rem 0;
  }

  .header-cont header .left {
    max-width: 7.55rem;
  }

  .header-cont header .right {
    gap: 0.8rem;
  }

  .header-cont header .right a {
    padding: 0.57rem 1rem;
    font-size: 0.83rem;
  }
}
