* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: sans-serif;
  border: 8px solid #d80df3;
  border-radius: 0px;
}

/* #one {
  width: 100%;
  background-color: black;
   padding: 0;
  margin: 0 0;
}

.grid-box-1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  padding: 100px 0;
  align-items: center;
} */
#one {
  width: 100%;
  min-height: 100vh;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 5% 80px;
}

.grid-box-1 {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
/* .son, */
.daughter {
  width: 85%;
  padding-bottom: 100px;
  padding-left: 10%;
}

.son {
  width: 100%;
}

.son p:first-child {
  font-size: 18px;
  margin-bottom: 20px;
}
.son p:nth-of-type(2) {
  font-size: 17px;
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 40px;
  color: #ccc;
}
#two {
  width: 100%;
  padding: 0;
  margin: 0 0;
}

.uncle {
  width: 50%;
  padding: 0;
  margin: 20px auto;
}

.grid-box-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
  row-gap: 20px;
  column-gap: 20px;
}

.box,
.box-0 {
  width: 100%;
  max-width: 400px;
  padding: 10px;
  box-shadow: 0 0 10px 1px rgb(238, 238, 238);
  transition: 0.3s ease;
}

#three {
  width: 100%;
  background-color: black;
  padding: 20px;
  margin: 0 0;
}

.mzo {
  width: 100%;
  max-width: 400px;
  height: 350px;
  padding: 5px;
  background: #fff;
  transition: 0.3s ease;
  margin: 0 auto;
}

.container--one {
  width: 50%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 0 auto;
}

.container--two {
  margin: 20px auto;
}

.box-0:hover {
  transform: scale(1.03);
}

.box:hover:nth-child(1) {
  transform: translate(-5px, -10px);
  transition: 0.5s ease all;
}

.box:hover:nth-child(2) {
  transform: translate(5px, -10px);
  transition: 0.5s ease all;
}

.box:hover:nth-child(3) {
  transform: translate(-5px, 10px);
  transition: 0.5s ease all;
}

.box:hover:nth-child(4) {
  transform: translate(5px, 10px);
  transition: 0.5s ease all;
}

.mzo:hover {
  transform: scale(1.03);
  transition: 0.5s ease all;
}

.footer {
  width: 100%;
  height: auto;
  background-color: black;
  padding-top: 5%;
  padding-bottom: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 1024px) {
    body {
    width: 100%;
}
.container--one {
  width: 65%;
}
.uncle {
  width: 63%;
  padding: 0;
  margin: 20px auto;
}
.grid-box-2 {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
  row-gap: 20px;
  column-gap: 20px;
}
  .mzo {
    width: 300px;
    height: 300px;
    margin: 0 auto;
  }

  .box,
  .box-0 {
    width: 300px;
    height: 300px;
  }
}

 @media (max-width: 768px) {

      body {
    width: 100%;
}
  #one {
    padding-top: 140px;
    text-align: center;
  }

  .grid-box-1 {
    grid-template-columns: 1fr;
  }

   .grid-box-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(1fr, 1fr));
    gap: 10px;
  }
   .box,
  .box-0 {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    box-shadow: 0 0 10px 1px rgb(238, 238, 238);
    transition: 0.3s ease;
  }
     .container--one,
  .container--two {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  h1 {
    font-size: 2.2rem;
  }

  .son p:nth-of-type(2) {
    margin: 0 auto 30px;
  }

  button {
    width: 100%;
    max-width: 300px;
  }

  .daughter {
    display: none;
  }
}
@media (max-width: 360px) {
    body {
    width: 100%;
}
.container--one {
  width: 100%;
}
 .grid-box-2 {
    display: grid;
    grid-template-columns:  1fr;
    gap: 10px;
}
}