@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");

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

/* modal css */
.modal-container{
  z-index: 999;
  background-color: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  opacity: 0;
  pointer-events: none;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  transition: opacity 0.3s ease;
}
.modal-container.show{
  pointer-events: auto;
  opacity: 1;
}
.modal {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  padding: 30px 50px;
  width: 600px;
  max-width: 100%;
  text-align: center;
}
.modal p{
  padding: 10px;
}
.modal button{
  background: #ea4c4c;
  color: #fff;
  border: none;
  outline: none;
  border-radius: 10px;

  height: 40px;
  width: 200px;
  font-weight: 700;
  font-size: 16px;
}
.banner-container{
  display: flex;
}
.banner-container .img-banner{
  margin-left: 24px;
  margin-right: 16px;
  width: 56px;
  height: 56px;
}
.banner-container p{
  width: 250px;
  margin-top: 4px;
  margin-bottom: 0px;
}
.banner_img {
  display: none;
}
ul,
nav {
  list-style: none;
}
.burger-menu {
  display: none;
}
a {
  text-decoration: none;
}
.w-90 {
  width: 90%;
  margin: 0rem auto;
}
h1 {
  font-size: 40px;
  font-weight: 700;
  color: #4d4d4d;
}
h3 {
  font-size: 40px;
  font-weight: 700;
  color: #4d4d4d;
}
h2 {
  font-size: 20px;
  font-weight: 700;
  color: #4d4d4d;
}
p,
li {
  font-weight: 400;
  color: #4d4d4d;
  font-size: 16px;
  line-height: 1.5rem;
}
body,
button,
input {
  font-family: "Montserrat", sans-serif;
}
main {
  background-image: url(./img/wave_1.png);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 650px;
  color: #4d4d4d;
}

main .logo {
  height: 100px;
  position: absolute;
  top: 50px;
}
main h1 {
  width: 65%;

  margin-top: 10rem;
}
main p {
  width: 50%;

  margin-top: 2.4rem;
  margin-bottom: 2.4rem;
}
main a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.4rem;
}
main a,
.form-area .input-collections > *:last-child button {
  background: #ea4c4c;
  color: #fff;
  border: none;
  outline: none;
  border-radius: 10px;

  height: 55px;
  width: 240px;
  font-weight: 700;
  font-size: 16px;
}

section {
  padding: 5rem 0rem;
}

/* second-section-content */
.second-section-title{
  text-align: center;
}
.second-section-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 2rem;
  margin-top: 4rem;
  margin-left: 3rem;
  margin-right: 3rem;
}
.second-section-content .container{
  width: 240px;
  margin-left: auto;
  margin-right: auto;
}
.second-section-content img{
  height: 80px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.second-section-content h4{
  font-family: "Montserrat";
  font-weight: bold;
  margin-top: 8px;
  margin-bottom: 8px;
  text-align: center;
  font-size: 20px;
  color: #4d4d4d;
}
.second-section-content p{
  font-family: "Montserrat";
  font-size: 16px;
  color: #4d4d4d;
  text-align: center;
}
.second-section-content .left-side {
  width: 80%;
}
.second-section-content .left-side > * + * {
  margin-top: 2rem;
}
.second-section-content .right-side li {
  display: flex;
  align-items: center;
}
.second-section-content .right-side li img {
  height: 50px;
}
.second-section-content .right-side li p {
  margin-left: 1rem;
}
.second-section-content .right-side > * + * {
  margin-top: 0.6rem;
}

/* categories */
.categories {
  background: #f7f9fa;
}
.categories .category-content h1 {
  text-align: center;
}
.categories .category-content > img {
  width: 100%;
  display: none;
}
.boxes-wrapper {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-row-gap: 4rem;
  position: relative;
}
.boxes-wrapper > img {
  position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);
  width: 45%;
  z-index: 1;
}
.boxes-wrapper > *:nth-child(3),
.boxes-wrapper > *:nth-child(5) {
  justify-self: flex-end;
}

.boxes-wrapper .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  width: 430px;
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
  z-index: 2;
}
.boxes-wrapper .box > h2 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.boxes-wrapper .box img {
  height: 70px;
}

/* cols-container */
.priceMaker_Wrapper {
  background-image: url(./img/wave.png);
  background-size: cover;
  background-position: center;
}
.cols-container {
  display: flex;
  justify-content: space-between;
  grid-gap: 4rem;
  margin-top: 4rem;
}
.cols-container .cols-wrapper > h2 {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}
.cols-container .cols-wrapper > h1 {
  width: 70px;
  height: 70px;

  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease all;
  border-radius: 50%;
  position: relative;
}
.cols-container .cols-wrapper > h1::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0px;
  height: 0px;
  transform: translate(-50%, -50%);
  content: "";
  transition: 0.3s ease all;
  z-index: -1;
  border-radius: 50%;
}
.cols-container .cols-wrapper > h1:hover {
  color: #fff;
}
.cols-container .cols-wrapper > h1:hover::after {
  background-color: #8de3eb;

  width: 70px;
  height: 70px;
}
/* logos-section */
.logos-section {
  background-color: #f7f9fa;
}
.logos-wrapper {
  overflow: hidden;
}
.logos-wrapper .reel {
  justify-content: flex-start;
  display: flex;
  transition: 0.3s ease all;
  align-items: center;
}
.logos-wrapper .reel > * {
  min-width: 20%;
}
.logos-section h1 {
  text-align: center;
  margin-bottom: 4.5rem;
}

.logos-wrapper img {
  width: 80%;
}

/* form-area */
.form-area {
  background: url("./img/final_fondo\ testimonios.png");
  background-size: cover;
  background-position: center;
}
.form-area form > p {
  width: 90%;
  margin-top: 10px;
}
.form-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  grid-gap: 3rem;
}
.form-area img {
  width: 80%;
}
.form-area .input-collections {
  display: grid;
  grid-template-columns: 1fr 1fr;

  grid-gap: 1.5rem;
  margin-top: 2rem;
}
.form-area .input-collections > *:nth-child(3),
.form-area .input-collections > *:last-child {
  grid-column: span 2;
}
.form-area .input-collections > *:last-child {
  display: flex;
  justify-content: flex-end;
}
.form-area .input-collections input {
  display: block;
  height: 43px;
  width: 100%;
  margin-top: 10px;
  border: 2px solid #c3ced6;
  border-radius: 5px;
  padding: 0rem 0.5rem;
  outline: none;
}
/* footer */
footer {
  background-color: #f7f9fa;
}
footer .footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer img {
  height: 70px;
}
footer a i{
  margin-left: 2rem;
}
footer a p {
  margin-left: 0px;
  font-weight: bold;
}
footer .footer-content .links-wrapper,
footer .footer-content .links-wrapper a {
  display: flex;
  align-items: center;
}
footer .footer-content .links-wrapper a {
  color: #4b5c6b;
}
footer .footer-content .links-wrapper > * + * {
  margin-left: 0rem;
}
footer .footer-content .links-wrapper a i {
  font-size: 22px;
}
footer .footer-content .links-wrapper a p {
  margin-left: 10px;
}

@media screen and (max-width: 1000px) {
  .boxes-wrapper {
    grid-gap: 2rem;
  }
  .boxes-wrapper .box,
  .second-section-content .container {
    width: 100%;
  }
  .form-area img {
    width: 50%;
  }
  .form-content {
    grid-template-columns: 1fr;
  }
  .logos-wrapper {
    grid-template-columns: repeat(3, 1fr);
    grid-row-gap: 3rem;
  }
  .banner-container .img-banner{
    display: none;
  }
  .banner-container p{
    display: none;
  }
}

@media screen and (max-width: 800px) {
  h1 {
    font-size: 35px;
  }
  .main h1 {
    margin-left: auto;
    margin-right: auto;
  }
  .content-area {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .second-section-content {
    grid-template-columns: 1fr;
  }

  .cols-container {
    grid-gap: 2rem;
  }
  .logos-wrapper .reel > * {
    min-width: 25%;
  }
}
@media screen and (max-width: 770px) {
  .cols-container {
    overflow: auto;
  }
  .cols-container > * {
    min-width: 100%;
  }

  .cols-container .cols-wrapper > h1 {
    color: #fff;
  }
  .cols-container .cols-wrapper > h1::after {
    background-color: #8de3eb;

    width: 70px;
    height: 70px;
  }
}
@media screen and (max-width: 600px) {
  .cols-container {
    grid-template-columns: 1fr;
  }
  footer {
    padding: 1.5rem 0rem;
  }
  footer .footer-content {
    flex-direction: column;
  }
  footer .footer-content > * + * {
    margin-top: 1rem;
  }
  main h1,
  main p {
    width: 100%;
  }
  .categories .category-content > img {
    display: block;
  }
  .boxes-wrapper {
    margin-top: 0px;
  }
  main {
    background-image: none;
    height: 100%;
  }
  main .logo {
    top: 20px;
    left: 20px;
    height: 70px;
  }
  .burger-menu {
    display: block;
    position: absolute;
    top: 45px;
    right: 30px;
  }

  .banner_img {
    display: block;
    width: 100%;
    position: static;
    margin-top: 8rem;
  }
}
@media screen and (max-width: 550px) {
  h1 {
    font-size: 27px;
  }
  .boxes-wrapper {
    grid-template-columns: 1fr;
  }
  main button,
  .form-area .input-collections > *:last-child button {
    font-size: 17px;
  }
  .form-area .input-collections > *:last-child button {
    width: 150px;
  }
  .logos-wrapper img {
    width: 100%;
  }
  .form-area img {
    width: 80%;
  }
}
@media screen and (max-width: 500px) {
  .logos-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .form-area .input-collections {
    grid-template-columns: 1fr;
  }
  .form-area .input-collections > * {
    grid-column: span 1 !important;
  }
  .form-area .input-collections > *:last-child {
    justify-content: flex-start;
  }
  .logos-wrapper .reel > * {
    min-width: 50%;
  }
}
@media screen and (max-width: 380px) {
  h1 {
    font-size: 22px;
  }
  .cols-container .cols-wrapper > h1 {
    font-size: 27px;
  }
}

