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

ul {
  list-style: none;
}

body {
  font-family: "Museo Sans Cyrl";
  font-weight: 600;
  background-color: #f5f5f5;
}

.container {
  max-width: 23.125rem;
  margin: 0 auto;
  padding: 0 0.625rem;
}
@media screen and (min-width: 48rem) {
  .container {
    max-width: 43.75rem;
  }
}
@media screen and (min-width: 75rem) {
  .container {
    max-width: 59.4375rem;
  }
}

@font-face {
  font-family: "Museo Sans Cyrl, small";
  src: url("./../../fonts/Museo Sans Cyrl 300.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "Museo Sans Cyrl, regular";
  src: url("./../../fonts/Museo Sans Cyrl 500.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "Museo Sans Cyrl, bold";
  src: url("./../../fonts/Museo Sans Cyrl 700.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}
.hero {
  background-image: url("../../images/header-background.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 6.421875rem 0;
  position: relative;
  margin-bottom: 0.625rem;
}
.hero__logo {
  width: 10rem;
}
@media screen and (min-width: 75rem) {
  .hero__logo {
    width: 11.1875rem;
  }
}
.hero__list {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  width: 21.25rem;
}
@media screen and (min-width: 48rem) {
  .hero__list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    width: 42.5rem;
  }
}
@media screen and (min-width: 75rem) {
  .hero__list {
    margin: 0;
  }
}
.hero__list-item {
  width: 10.625rem;
  height: 10.625rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-align: center;
  font-weight: 400;
  font-size: 1.4859375rem;
  line-height: 1.8125rem;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  opacity: 0.85;
}
.hero__list-item:hover {
  opacity: 1;
}
@media screen and (min-width: 75rem) {
  .hero__list-item {
    width: 14.859375rem;
    height: 14.859375rem;
  }
}
.hero__list-item__wrapper {
  max-width: 9.375rem;
}
.hero__list-item--one {
  background-color: #ffffff;
}
.hero__list-item--two {
  background-image: linear-gradient(rgba(0, 73, 71, 0.35), rgba(0, 73, 71, 0.35)), url(../../images/hero-two.png);
}
.hero__list-item--three {
  background-image: url("../../images/hero-three.png");
}
.hero__list-item--four {
  background-image: url("../../images/hero-four.png");
}
.hero__list-item--five {
  background-image: linear-gradient(rgba(15, 87, 82, 0.1), rgba(15, 87, 82, 0.1)), url("../../images/hero-five.png");
}
.hero__list-item--six {
  background-image: url(../../images/hero-six.png);
}
.hero__list-item--seven {
  background-image: linear-gradient(rgba(0, 73, 71, 0.35), rgba(0, 73, 71, 0.35)), url("../../images/hero-seven.png");
}
.hero__list-item--eight {
  background-color: #3d948e;
}

.nav {
  background-color: rgb(52, 52, 52);
  color: #ffffff;
  font-weight: 300;
  font-size: 0.8125rem;
  position: relative;
}
.nav__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  padding: 0.9375rem;
  gap: 0.9375rem;
}
@media screen and (min-width: 48rem) {
  .nav__container {
    flex-direction: row;
    justify-content: space-between;
    text-align: end;
  }
}
@media screen and (min-width: 75rem) {
  .nav__container {
    justify-content: space-between;
    padding: 0.5rem;
  }
}
.nav__menu-item {
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.nav__menu-item:hover {
  color: #cccccc;
}
@media screen and (min-width: 75rem) {
  .nav__menu {
    display: flex;
  }
  .nav__menu-item + .nav__menu-item {
    margin-left: 1.25rem;
  }
}
.nav::after {
  content: "";
  width: 18.75rem;
  height: 0.625rem;
  background-color: #3d948e;
  position: absolute;
  top: -0.625rem;
  left: 50%;
  margin-left: -9.375rem;
}
@media screen and (min-width: 48rem) {
  .nav::after {
    width: 48.75rem;
    margin-left: -24.375rem;
  }
}
@media screen and (min-width: 75rem) {
  .nav::after {
    width: 73.4375rem;
    margin-left: -36.71875rem;
  }
}

.services {
  padding-top: 3.125rem;
  padding-bottom: 6.5625rem;
}
.services__container:not(:last-child) {
  margin-bottom: 7.8125rem;
}
.services__title {
  font-size: 1.875rem;
  text-align: center;
  color: #999b9a;
  text-transform: capitalize;
  margin-bottom: 3.125rem;
}
@media screen and (min-width: 75rem) {
  .services__title {
    font-size: 3.125rem;
  }
}
@media screen and (min-width: 48rem) {
  .services__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem;
  }
}
@media screen and (min-width: 75rem) {
  .services__list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3.125rem;
  }
}
.services__list-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.services__list-item__title {
  font-size: 1rem;
  line-height: 1.1875rem;
  text-align: center;
  text-transform: uppercase;
  color: #212121;
  position: relative;
  margin-bottom: 1.5625rem;
}
@media screen and (min-width: 75rem) {
  .services__list-item__title {
    max-width: 8rem;
  }
}
.services__list-item__title::after {
  content: "";
  width: 2.1875em;
  height: 0.1875rem;
  background-color: #dcce90;
  position: absolute;
  bottom: -0.625rem;
  left: 50%;
  margin-left: -1.09375rem;
}
.services__list-item__title--green {
  font-size: 1rem;
  line-height: 1.1875rem;
  text-align: center;
  text-transform: uppercase;
  color: #212121;
  position: relative;
  margin-bottom: 1.5625rem;
}
@media screen and (min-width: 75rem) {
  .services__list-item__title--green {
    max-width: 8rem;
  }
}
.services__list-item__title--green::after {
  content: "";
  width: 2.1875em;
  height: 0.1875rem;
  background-color: #3d948e;
  position: absolute;
  bottom: -0.625rem;
  left: 50%;
  margin-left: -1.09375rem;
}
.services__list-item__title--grey {
  font-size: 1rem;
  line-height: 1.1875rem;
  text-align: center;
  text-transform: uppercase;
  color: #212121;
  position: relative;
  margin-bottom: 1.5625rem;
}
@media screen and (min-width: 75rem) {
  .services__list-item__title--grey {
    max-width: 8rem;
  }
}
.services__list-item__title--grey::after {
  content: "";
  width: 2.1875em;
  height: 0.1875rem;
  background-color: #b5b7b6;
  position: absolute;
  bottom: -0.625rem;
  left: 50%;
  margin-left: -1.09375rem;
}
.services__list-item__content {
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 145%;
  margin-bottom: 1.5625rem;
}
@media screen and (min-width: 75rem) {
  .services__list-item__content {
    margin-bottom: 0;
  }
}

.gold-wrapper {
  background-color: #dcce90;
  width: 5.3125rem;
  height: 5.3125rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.875rem;
}

.blue-chill-wrapper {
  background-color: #3d948e;
  width: 5.3125rem;
  height: 5.3125rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.875rem;
}

.blue-chill-circle {
  background-color: #f5f5f5;
  width: 5.3125rem;
  height: 5.3125rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.875rem;
  border: 3px solid #3d948e;
}

.grey-circle {
  background-color: #f5f5f5;
  width: 5.3125rem;
  height: 5.3125rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.875rem;
  border: 3px solid #b5b7b6;
}

.design-learning {
  background-image: url(./../../images/design-bg.png);
  position: relative;
  padding: 5.3125rem 0;
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 75rem) {
  .design-learning {
    display: flex;
    padding: 1.5rem 0.3125rem 0;
  }
}
@media screen and (min-width: 75rem) {
  .design-learning .container {
    display: flex;
  }
}
.design-learning__img {
  display: none;
}
@media screen and (min-width: 75rem) {
  .design-learning__img {
    display: block;
  }
}
.design-learning::after {
  content: "";
  width: 18.75em;
  height: 0.625rem;
  background-color: #3d948e;
  position: absolute;
  bottom: -0.625rem;
  left: 50%;
  margin-left: -9.375rem;
}
@media screen and (min-width: 48rem) {
  .design-learning::after {
    width: 48.75em;
    margin-left: -24.375rem;
  }
}
@media screen and (min-width: 75rem) {
  .design-learning::after {
    width: 73.4375em;
    margin-left: -36.71875rem;
  }
}
.design-learning__content-container {
  text-align: center;
}
@media screen and (min-width: 75rem) {
  .design-learning__content-container {
    text-align: start;
    padding-top: 5.625rem;
  }
}
.design-learning__title {
  font-size: 3.4375rem;
  line-height: 3.4375rem;
  text-transform: uppercase;
  color: #424242;
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 75rem) {
  .design-learning__title {
    font-size: 4.6875rem;
    line-height: 4.6875rem;
  }
}
.design-learning__text {
  font-weight: 250;
  font-size: 2.1875rem;
  line-height: 2.1875rem;
  text-transform: capitalize;
  color: #424242;
  margin-bottom: 2.1875rem;
}
.design-learning__btn {
  color: #ffffff;
  background-color: #3d948e;
  font-weight: 400;
  font-size: 1rem;
  border: 0;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  padding: 0.75rem 1.375rem;
  border-radius: 1.25rem;
}
.design-learning__btn:hover, .design-learning__btn:focus {
  background-color: #72c5bf;
}

.instructional-design {
  text-align: center;
  padding: 3.125rem 0.3125rem;
}
.instructional-design__wrapper + .instructional-design__wrapper {
  margin-top: 3.75rem;
}
@media screen and (min-width: 75rem) {
  .instructional-design__wrapper {
    display: flex;
    gap: 1.875rem;
  }
}
@media screen and (min-width: 75rem) {
  .instructional-design__wrapper:nth-child(odd) {
    flex-direction: row-reverse;
  }
}
.instructional-design__title {
  font-weight: 600;
  font-size: 3.125rem;
  line-height: 3.75rem;
  color: #999b9a;
  margin-bottom: 3.125rem;
}
.instructional-design__img {
  max-width: 75%;
}
@media screen and (min-width: 75rem) {
  .instructional-design__img {
    max-width: 100%;
  }
}
.instructional-design__second-title {
  font-weight: 400;
  font-size: 1.875rem;
  line-height: 2.25rem;
  color: #424242;
  margin-bottom: 1.875rem;
}
.instructional-design__paragraph {
  font-weight: 300;
  font-size: 1rem;
  line-height: 150%;
  color: #424242;
  margin-bottom: 1.875rem;
}
.instructional-design__list {
  text-align: start;
  font-weight: 300;
  font-size: 1rem;
  line-height: 150%;
  color: #424242;
}
.instructional-design__list-item {
  display: grid;
  grid-template-columns: 1fr 11fr;
  gap: 0.9375rem;
}
.instructional-design__list-item + .instructional-design__list-item {
  margin-top: 0.9375rem;
}

.contact {
  background-color: #3d948e;
  color: #ffffff;
  text-align: center;
  padding: 3.125rem 0;
}
.contact .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact__title {
  font-size: 2.5rem;
  line-height: 3.125rem;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 75rem) {
  .contact__title {
    font-size: 3.125rem;
    line-height: 3.75rem;
  }
}
.contact__text {
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.5rem;
  margin-bottom: 3.875rem;
}
.contact__form {
  margin-bottom: 3.5625rem;
  display: flex;
  flex-direction: column;
}
.contact__form__textarea {
  height: 11.3125rem;
}
.contact__form__input, .contact__form__textarea {
  font-family: "Museo Sans Cyrl";
  justify-content: flex-start;
  color: #ffffff;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.1875rem;
  width: 20rem;
  background-color: rgb(65, 162, 151);
  border-radius: 1.71875rem;
  border: none;
  padding: 1.125rem 0 1.125rem 2.1875rem;
  outline: 0px none transparent;
  resize: none;
}
@media screen and (min-width: 48rem) {
  .contact__form__input, .contact__form__textarea {
    width: 27.0625rem;
  }
}
.contact__form__input + .contact__form__input, .contact__form__input + .contact__form__textarea, .contact__form__textarea + .contact__form__input, .contact__form__textarea + .contact__form__textarea {
  margin-top: 1.4375rem;
}
.contact__form__input:focus, .contact__form__textarea:focus {
  color: #ffffff;
  font-family: "Museo Sans Cyrl";
  color: #ffffff;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.1875rem;
}
.contact__form__input::-moz-placeholder, .contact__form__textarea::-moz-placeholder {
  font-family: "Museo Sans Cyrl";
  justify-content: flex-start;
  color: #ffffff;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.1875rem;
}
.contact__form__input:-ms-input-placeholder, .contact__form__textarea:-ms-input-placeholder {
  font-family: "Museo Sans Cyrl";
  justify-content: flex-start;
  color: #ffffff;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.1875rem;
}
.contact__form__input::placeholder, .contact__form__textarea::placeholder {
  font-family: "Museo Sans Cyrl";
  justify-content: flex-start;
  color: #ffffff;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.1875rem;
}
.contact__btn {
  color: #ffffff;
  background-color: #3d948e;
  font-weight: 400;
  font-size: 1rem;
  border: 0;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid #ffffff;
  width: 12.8125rem;
  padding: 0.9375rem 0;
  border-radius: 1.71875rem;
}
.contact__btn:hover, .contact__btn:focus {
  background-color: #72c5bf;
}

.footer {
  background-color: #383838;
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.0625rem;
  color: #929292;
}
.footer--light {
  padding: 4.0625rem 0;
}
@media screen and (min-width: 48rem) {
  .footer--light .container {
    display: flex;
    justify-content: space-between;
  }
}
.footer--dark {
  padding: 1.6875rem 0;
  background-color: #414141;
  color: #595959;
  text-align: center;
}
.footer__logo {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 300;
  font-size: 0.75rem;
  line-height: 0.875rem;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 48rem) {
  .footer__logo {
    margin-top: 4.6875rem;
  }
}
.footer__list-item {
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__list-item:hover {
  color: #c5c5c5;
}
.footer__list-item + .footer__list-item {
  margin-top: 1.25rem;
}/*# sourceMappingURL=style.css.map */