@charset "UTF-8";
/* DEFAULT */
@media only screen {
  .custom {
    height: 200px;
    width: 200px;
  }
  .service {
    border: 2px solid #FF00FF;
	border-radius: 10px;
    padding: 2vw;
    text-align: center;
  }
  #cta-2 a {
    color: #FFFFFF;
    padding: 8px 12px;
  }
  #cta-2 a:hover {
    color: #00F600;
    text-decoration-color: #00F600;
  }
  #services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    margin-bottom: 60px;
  }
  #seo {
    background: url("../images/web-design.webp") no-repeat 50% 50%;
    background-size: cover;
    padding: 2vw 0;
  }
}
/* MEGAPIXEL */
@media only screen and (min-width: 1921px) {}
/* DESKTOP */
@media only screen and (max-width: 1920px) {}
/* LAPTOP */
@media only screen and (max-width: 1280px) {
  .custom {
    height: 150px;
    width: 150px;
  }
}
/* TABLET */
@media only screen and (max-width: 1024px) {
  #services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}
/* MOBILE */
@media only screen and (max-width: 768px) {
  .custom {
    height: 100px;
    width: 100px;
  }
}
/* PHONE */
@media only screen and (max-width: 600px) {
  #services {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 1fr);
  }
}