body {
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.5;
  font-size: 16px;
  color: #010101;
}

.easy-site-header {
  width: 100%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  height: auto;
}
.easy-site-header__container {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  gap: 1rem;
  padding: 1rem;
}
@media (max-width: 1024px) {
  .easy-site-header__container {
    flex-wrap: wrap;
  }
}
.easy-site-header__logo {
  flex-shrink: 0;
}
.easy-site-header__logo img {
  display: block;
  height: 40px;
  width: auto;
  margin-top: 5px;
}
.easy-site-header__toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .easy-site-header__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
  }
  .easy-site-header__toggle div {
    width: 25px;
    height: 2px;
    background-color: black;
  }
}
.easy-site-header__nav ul {
  list-style: none;
  display: flex;
  margin: 0.5rem 0;
  padding: 0;
}
.easy-site-header__nav ul li {
  margin-left: 0;
  transition: all 0.2s ease;
}
@media (min-width: 1024px) {
  .easy-site-header__nav ul li {
    margin-left: 1rem;
  }
}
.easy-site-header__nav ul li a {
  display: inline-block;
  text-decoration: none;
  padding: 12px 12px;
  color: #010101;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  position: relative;
  transition: all 0.2s ease;
}
@media (min-width: 1024px) {
  .easy-site-header__nav ul li a {
    padding: 8px 12px;
  }
}
.easy-site-header__nav ul li a:hover {
  color: #168bcf;
}
@media (min-width: 1024px) {
  .easy-site-header__nav ul li a:hover:after {
    background-color: #168bcf;
    left: 0;
    width: 100%;
    transition: all 0.2s ease;
  }
}
.easy-site-header__nav ul li a:after {
  bottom: -2px;
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  top: auto;
  width: 0;
}
@media (max-width: 1024px) {
  .easy-site-header__nav {
    display: none;
    width: 100%;
    order: 3;
    margin-top: 0.5rem;
  }
  .easy-site-header__nav ul {
    flex-direction: column;
    margin: 0;
    width: 100%;
  }
  .easy-site-header__nav li {
    margin-left: 0;
    width: 100%;
  }
  .easy-site-header__nav a {
    width: 100%;
    padding: 12px 0;
  }
}
@media (max-width: 1024px) {
  .easy-site-header.is-open .easy-site-header__nav {
    display: flex;
  }
}

.easy-site-footer {
  padding: 1rem;
  width: 100%;
  max-width: 1100px;
  margin: 2rem auto 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.08), 0 0 12px rgba(0, 0, 0, 0.06); /* sides */
  padding: 1rem;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .easy-site-footer {
    margin: 1rem 1rem 0;
    width: calc(100% - 2rem);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  border: 0;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
@media (max-width: 576px) {
  .btn {
    width: 100%;
  }
}

.btn-primary {
  background-color: #66a5da;
  color: #fff;
}
.btn-primary:hover {
  background-color: rgb(69.1452631579, 145.6736842105, 210.0547368421);
}

.btn-secondary {
  background-color: #91d78e;
  color: #fff;
}
.btn-secondary:hover {
  background-color: rgb(115.6666666667, 204.3333333333, 111.8666666667);
}

.easy-testimonials {
  width: 100%;
  max-width: 1100px;
  margin: 2rem auto 0;
  padding: 2rem 2rem 3rem 2rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.08), 0 0 12px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
}
@media (max-width: 768px) {
  .easy-testimonials {
    margin: 1rem 1rem 0;
    width: calc(100% - 2rem);
  }
}
.easy-testimonials__content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.easy-testimonials__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  min-height: 80px;
  padding: 1rem;
}
.easy-testimonials__logo {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: filter 0.2s ease;
}
@media (max-width: 767px) {
  .easy-testimonials__content {
    display: block;
  }
  .easy-testimonials__item {
    width: 250px;
    margin-right: 1rem;
  }
}

.easy-slider {
  padding: 1.5rem 1.5rem 3rem 1.5rem;
  width: 100%;
  max-width: 1100px;
  margin: 2rem auto 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.08), 0 0 12px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
}
@media (max-width: 768px) {
  .easy-slider {
    margin: 1rem auto 0;
  }
}
.easy-slider__cell {
  width: 100%;
}
.easy-slider__img {
  display: block;
  width: 100%;
  height: auto;
}
.easy-slider__title {
  margin-top: 0.5rem;
  font-size: 18px;
  text-align: center;
}
.easy-contact {
  padding: 2rem;
  width: 100%;
  max-width: 1100px;
  margin: 2rem auto 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.08), 0 0 12px rgba(0, 0, 0, 0.06); /* sides */
  border-radius: 5px;
}
.easy-contact__container {
  width: 100%;
}
.easy-contact__container h2 {
  margin-top: 0;
}

body {
  margin: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

main {
  padding: 0 1rem;
}
@media (min-width: 768px) {
  main {
    padding: 0;
  }
}

.easy-site-content {
  width: 100%;
  max-width: 1100px;
  margin: 2rem auto;
  display: flex;
  align-items: stretch;
}
@media (max-width: 768px) {
  .easy-site-content {
    flex-direction: column;
    margin: 1rem auto 0;
  }
}
.easy-site-content__aside {
  width: 250px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .easy-site-content__aside {
    width: 100%;
  }
}
.easy-site-content__content {
  flex: 1;
  min-width: 0;
  margin-left: 2rem;
}
@media (max-width: 768px) {
  .easy-site-content__content {
    flex: none;
    width: 100%;
    padding: 1rem 0;
    margin-left: 0;
  }
}
.easy-site-content__content .easy-page {
  border-radius: 5px;
  padding: 1rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.08), 0 0 12px rgba(0, 0, 0, 0.06); /* sides */
}
.easy-site-content__content .easy-buttons {
  display: flex;
  justify-content: center;
}

.easy-page__content {
  padding: 1rem;
}
.easy-page__content h1 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-size: 28px;
}

.easy-site-content__aside-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.08), 0 0 12px rgba(0, 0, 0, 0.06); /* sides */
  padding: 1rem;
  border-radius: 5px;
}
.easy-site-content__aside-profile {
  text-align: center;
}
.easy-site-content__aside a {
  text-decoration: none;
  color: inherit;
}
.easy-site-content__aside a:hover {
  text-decoration: underline;
}
.easy-site-content__aside-image {
  width: 100%;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin-bottom: 2rem;
}
.easy-site-content__aside-name {
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0;
}
.easy-site-content__aside-role {
  font-size: 0.9rem;
  color: #666;
  margin: 0.25rem 0 0;
}
.easy-site-content__aside-socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0 0.5rem;
}
.easy-site-content__aside-socials a {
  font-size: 1.2rem;
  color: #333;
  transition: color 0.2s ease;
}
.easy-site-content__aside-socials a:hover {
  color: #0073aa;
}
.easy-site-content__aside-socials .fa-stack {
  font-size: 1em;
}

.easy-aboutwp {
  padding: 1rem;
  width: 100%;
  max-width: 1100px;
  margin: 2rem auto 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.08), 0 0 12px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
}
.easy-aboutwp__content {
  padding: 1rem;
}

.easy-blocks {
  width: 100%;
  max-width: 1100px;
  margin: 2rem auto 0;
}
@media (max-width: 768px) {
  .easy-blocks {
    flex: none;
    width: 100%;
    margin-left: 0;
    margin-top: 0;
  }
}
.easy-blocks__inside {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 2rem;
}
@media (max-width: 768px) {
  .easy-blocks__inside {
    gap: 1rem;
  }
}
.easy-blocks__block {
  display: flex;
  position: relative;
  flex-direction: column;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.08), 0 0 12px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  padding: 2rem;
}
.easy-blocks__block h3 {
  margin-top: 0.5rem;
  display: inline-block;
}
.easy-blocks__title {
  margin: 0 3rem 1rem 0;
  vertical-align: bottom;
}
.easy-blocks__media {
  display: block;
  width: 40px;
  position: absolute;
  top: 2rem;
  right: 2rem;
}
.easy-blocks__media img {
  width: 100%;
}
@media (max-width: 1024px) {
  .easy-blocks__inside {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .easy-blocks__inside {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=main.css.map */
