.contact-us-main {
  padding-top: 100px;
}

.graphics-header {
  padding-top: 130px;
}

.item {
  position: relative;
  break-inside: avoid;
  box-sizing: border-box;
  padding: 10px;
  counter-increment: item-counter;
}

.item:hover {
  background-color: #fff;
}

.box-one,
.box-two {
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
  transition: -webkit-clip-path 0.4s ease;
  /* WebKit browsers */
  transition: clip-path 0.4s ease;
  /* Standard syntax */
}

.item:hover .box-one,
.item:hover .box-two {
  -webkit-clip-path: inset(30px 30px 30px 30px);
}

.item:hover .qodef-e-content {
  opacity: 1;
}

.masonry {
  column-count: 1;
  column-gap: 0;
  counter-reset: item-counter;
}

@media (min-width: 400px) {
  .masonry {
    column-count: 1;
  }
}

@media (min-width: 600px) {
  .masonry {
    column-count: 2;
  }
}

@media (min-width: 1200px) {
  .masonry {
    column-count: 2;
  }
}

@media (min-width: 1400px) {
  .masonry {
    column-count: 3;
  }
}
@media (min-width: 1600px) {
  .masonry {
    column-count: 3;
  }
}

.graphics-header .box-one {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 312px;
  flex-shrink: 0;
  background: #ffffff;
  box-sizing: border-box;
}

.graphics-header .box-one img{
  height: 332px;
  width: 553px;
}

/* @media (max-width: 1440px) {
     .box-one img,
     .box-two img {
       width: 300px;
     }
   }
   @media (max-width: 992px) {
     .box-one img,
     .box-two img {
       width: 250px;
     }
   } */

/* newsletter */

.newsletter {
  padding: 130px 0 0 0;
}

.newsletter-bg {
  width: auto;
  height: 250px;
  flex-shrink: 0;
  border-radius: 30px;
  background: linear-gradient(288deg, #85e1ff 0.23%, #237bff 99.44%);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.newsletter-bg .news {
  padding-left: 50px;
}

.newsletter-bg .news h2 {
  color: #fff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 1.875rem;
  font-weight: bold;
  padding-bottom: 12px;
}

.newsletter-bg .news h4 {
  color: #fff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 1.325rem;
  font-weight: 500;

}

.newsletter-bg .btn-wrap {
  padding-right: 50px;
}

.newsletter-bg .btn-wrap a {
  text-decoration: none;
  color: #000;
  font-size: 1.125rem;
  font-weight: 600;

}

.newsletter-bg .btn-wrap .news-btn {
  display: inline-flex;
  padding: 10px 20px;
  align-items: center;
  gap: 30px;
  border-radius: 10px;
  background-color: #000000;
  background-image: #000000;
  background-image: -moz-linear-gradient(top, #fff 0%, #ffffff 100%);
  background-image: -webkit-linear-gradient(top, #fff 0%, #ffffff 100%);
  background-image: linear-gradient(to bottom, #fff 0%, #ffffff 100%);
  background-size: 300px;
  background-repeat: no-repeat;
  background-position: 0%;
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
  box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.14);
}

.newsletter-bg .btn-wrap .news-btn:hover {
  color: #fff;
  background-position: -1700%;
  transition: 0.6s ease-in-out;
}

@media (max-width: 992px) {
  .newsletter {
    padding: 100px 0 0 0;
  }

  .newsletter-bg .btn-wrap a {
    font-size: 0.75rem;
  }

  .newsletter-bg .btn-wrap .news-btn img {
    height: 20px;
    width: 20px;
  }

  .newsletter-bg .btn-wrap .news-btn {
    width: 200px;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .newsletter-bg .news h2 {
    font-size: 1.325rem;
    padding-top: 15px;
  }

  .newsletter-bg .news {
    text-align: center;
    padding-left: 12px;
  }

  .newsletter-bg .news h4 {
    font-size: 1rem;
  }

  .newsletter-bg .btn-wrap {
    padding: 15px 0 15px 0;
  }

  .newsletter-bg .btn-wrap .news-btn {
    width: 200px;
  }

  .newsletter-bg {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}