.myosbutton .button_icon .fas {
  color: #FFF !important;
}

#related_courses {
  display: grid;
  row-gap: 20px;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  overflow-y: scroll;
  width: 100%;
}
#related_courses .course {
  gap: 40px;
  display: grid;
  grid-template-columns: 1fr max-content;
  grid-template-rows: auto;
  margin: 0;
  padding: 60px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  #related_courses .course {
    gap: 20px;
    grid-template-columns: 1fr;
    padding: 30px;
  }
}
#related_courses .course:nth-child(odd) {
  background-color: #f2f2f2;
}
#related_courses .course .content {
  font-family: "Selawik", Helvetica, Arial, sans-serif;
}
#related_courses .course .content h5 {
  color: #0F8AC7;
  font-weight: 700;
}
#related_courses .course .content .exerpt {
  padding: 0 10px;
}
#related_courses .course .button {
  align-content: center;
  display: grid;
  grid-template-rows: auto;
  justify-content: start;
}

#related_teachers {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1600px) {
  #related_teachers {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 1024px) {
  #related_teachers {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 575px) {
  #related_teachers {
    grid-template-columns: 1fr;
  }
}
#related_teachers .teacher {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: "Selawik", Helvetica, Arial, sans-serif;
  margin: 0;
  height: 12rem;
  min-height: 200px;
  padding: 0;
  position: relative;
}
#related_teachers .teacher .content_overlay {
  background: rgb(0, 38, 59);
  opacity: 0.4;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
#related_teachers .teacher .content {
  position: absolute;
  font-family: "Selawik", Helvetica, Arial, sans-serif;
  left: 0;
  bottom: 0;
  margin: 0;
  padding: 20px;
  width: 100%;
}
#related_teachers .teacher .content .name, #related_teachers .teacher .content .job_title {
  color: #FFF;
  text-align: center;
}
#related_teachers .teacher .content .name {
  font-weight: 600;
}

#other_trainings {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1460px) {
  #other_trainings {
    grid-template-columns: repeat(2, 1fr);
  }
  #other_trainings .training:nth-child(1n+3) {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #other_trainings {
    grid-template-columns: 1fr;
  }
  #other_trainings .training:nth-child(1n) {
    display: grid;
  }
}
#other_trainings .training {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1.5fr 1fr;
  min-height: 250px;
  height: 100%;
  margin: 0;
  padding: 0;
  margin: 0;
}
#other_trainings .training:hover {
  box-shadow: 0 0 1rem 0 #DDD;
}
#other_trainings .training .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}
#other_trainings .training .content {
  background-color: #FFF;
  align-content: center;
  display: grid;
  row-gap: 10px;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  justify-content: center;
  height: 100%;
  min-height: 130px;
  margin: 0;
  padding: 20px;
  font-family: "Selawik", Helvetica, Arial, sans-serif;
}
#other_trainings .training .content .title {
  color: #0F8AC7;
  font-weight: 700;
  margin: 0;
  padding: 0;
}
#other_trainings .training .content .lessons {
  font-size: 0.85rem;
  list-style: none;
  padding: 0;
  width: 100%;
}
#other_trainings .training .content .lessons li {
  align-items: center;
  display: grid;
  float: left;
  grid-template-columns: 20px 1fr;
  grid-template-rows: auto;
  justify-items: start;
  margin: 0 20px 0 0;
  padding: 0;
}
#other_trainings .training .content .lessons li:nth-last-child(1) {
  margin: 0;
}
#other_trainings .training .content .lessons li .icon {
  float: left;
  align-content: center;
  display: grid;
  row-gap: 10px;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  justify-content: center;
  max-width: 20px;
}
#other_trainings .training .content .lessons li .icon svg {
  max-width: 100%;
}
#other_trainings .training .content .lessons li .text {
  color: #1b1b1b;
  font-size: 0.9rem;
  font-weight: 700;
  float: left;
  margin: 0 0 0 10px;
}

#other_courses {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1460px) {
  #other_courses {
    grid-template-columns: repeat(2, 1fr);
  }
  #other_courses .course:nth-child(1n+3) {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #other_courses {
    grid-template-columns: 1fr;
  }
  #other_courses .course:nth-child(1n) {
    display: grid;
  }
}
#other_courses .course {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1.5fr 1fr;
  min-height: 250px;
  height: 100%;
  margin: 0;
  padding: 0;
  margin: 0;
}
#other_courses .course:hover {
  box-shadow: 0 0 1rem 0 #DDD;
}
#other_courses .course .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}
#other_courses .course .content {
  background-color: #FFF;
  align-content: center;
  display: grid;
  font-family: "Selawik", Helvetica, Arial, sans-serif;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  justify-content: center;
  height: 100%;
  min-height: 130px;
  margin: 0;
  padding: 40px;
  row-gap: 10px;
}
#other_courses .course .content .title {
  color: #0F8AC7;
  font-weight: 700;
  margin: 0;
  padding: 0;
}
#other_courses .course .content .lessons {
  font-size: 0.85rem;
  list-style: none;
  padding: 0;
  width: 100%;
}
#other_courses .course .content .lessons li {
  align-items: center;
  display: grid;
  float: left;
  grid-template-columns: 20px 1fr;
  grid-template-rows: auto;
  justify-items: start;
  margin: 0 20px 0 0;
  padding: 0;
}
#other_courses .course .content .lessons li:nth-last-child(1) {
  margin: 0;
}
#other_courses .course .content .lessons li .icon {
  float: left;
  align-content: center;
  display: grid;
  row-gap: 10px;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  justify-content: center;
  max-width: 20px;
}
#other_courses .course .content .lessons li .icon svg {
  max-width: 100%;
}
#other_courses .course .content .lessons li .text {
  color: #1b1b1b;
  font-size: 0.9rem;
  font-weight: 700;
  float: left;
  margin: 0 0 0 10px;
}

#all_trainings {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  #all_trainings {
    grid-template-columns: 1fr;
  }
}
#all_trainings .training {
  background-color: #fff;
  cursor: pointer;
  display: grid;
  grid-template-columns: 30% 70%;
  grid-template-rows: auto;
  gap: 1rem;
  justify-content: space-evenly;
  transition: box-shadow 0.1s ease-in-out;
}
@media screen and (max-width: 560px) {
  #all_trainings .training {
    gap: 0;
    grid-template-columns: 1fr;
    grid-template-rows: 2fr 1fr;
  }
}
#all_trainings .training:hover {
  box-shadow: 0 0 1rem 0 #DDD;
}
#all_trainings .training .image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-right: 5px solid #07A7E1;
  height: auto;
  min-height: 12rem;
  width: 100%;
}
@media screen and (max-width: 560px) {
  #all_trainings .training .image {
    border-bottom: 5px solid #07A7E1;
    border-right: 0px solid #07A7E1;
  }
}
#all_trainings .training .content {
  align-content: center;
  color: #1B1B1B;
  display: grid;
  font-family: "Selawik", Helvetica, Arial, sans-serif;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  justify-content: start;
  padding: 1rem;
}
#all_trainings .training .content p {
  font-size: 0.8rem;
}
#all_trainings .training .content .title {
  color: #07A7E1;
  font-weight: 700;
  line-height: normal;
  margin: 0;
  padding: 0 0 1.1rem 0;
}
@media screen and (max-width: 560px) {
  #all_trainings .training .content .title {
    padding: 0;
  }
}
#all_trainings .training .content .lessons {
  font-size: 0.85rem;
  list-style: none;
  padding: 0;
  width: 100%;
}
#all_trainings .training .content .lessons li {
  align-items: center;
  display: grid;
  float: left;
  grid-template-columns: 20px 1fr;
  grid-template-rows: auto;
  justify-items: start;
  margin: 0 20px 0 0;
  padding: 0;
}
#all_trainings .training .content .lessons li:nth-last-child(1) {
  margin: 0;
}
#all_trainings .training .content .lessons li .icon {
  float: left;
  align-content: center;
  display: grid;
  row-gap: 10px;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  justify-content: center;
  max-width: 20px;
}
#all_trainings .training .content .lessons li .icon svg {
  max-width: 100%;
}
#all_trainings .training .content .lessons li .text {
  color: #1b1b1b;
  font-family: "Selawik", Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  float: left;
  margin: 0 0 0 10px;
}

#trainings_list a {
  align-content: center;
  background-color: #f7f7f7;
  border-left: 0px solid #07A7E1;
  color: #B1B1B1;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr min-content;
  grid-template-rows: auto;
  gap: 1rem;
  justify-content: space-between;
  padding: 25px 20px;
  transition: all 0.1s ease-in-out;
}
#trainings_list a:hover, #trainings_list a:active {
  background-color: #FFF;
  border-left: 3px solid #07A7E1;
}
#trainings_list a:hover h5, #trainings_list a:active h5, #trainings_list a:hover .fas, #trainings_list a:active .fas {
  color: #07A7E1;
}
#trainings_list a h5 {
  font-family: "Selawik", Sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  padding: 0;
}
#trainings_list a .fas {
  line-height: unset;
}
#trainings_list a:nth-last-child(1) {
  background-color: #07A7E1;
  color: #FFF;
}
#trainings_list a:nth-last-child(1):hover, #trainings_list a:nth-last-child(1):active {
  background-color: #0B7DB4;
}
#trainings_list a:nth-last-child(1):hover h5, #trainings_list a:nth-last-child(1):active h5, #trainings_list a:nth-last-child(1):hover .fas, #trainings_list a:nth-last-child(1):active .fas {
  color: #FFF;
}

#all_teachers {
  align-items: start;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  justify-content: space-between;
  float: left;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 723px) {
  #all_teachers {
    grid-template-columns: 1fr;
  }
}
#all_teachers .teacher {
  background-color: #fff;
  display: grid;
  grid-template-columns: 30% 70%;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  justify-content: space-evenly;
  height: 100%;
  transition: box-shadow 0.1s ease-in-out;
}
@media screen and (max-width: 560px) {
  #all_teachers .teacher {
    grid-template-columns: 1fr;
    grid-template-rows: 250px 1fr;
  }
}
#all_teachers .teacher .image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 170px;
  width: 100%;
}
@media screen and (max-width: 560px) {
  #all_teachers .teacher .image {
    border-bottom: 5px solid #07A7E1;
    border-right: 0px solid #07A7E1;
  }
}
#all_teachers .teacher .content {
  align-content: center;
  color: #1B1B1B;
  display: grid;
  font-family: "Selawik", Helvetica, Arial, sans-serif;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  justify-content: start;
  padding: 20px;
}
#all_teachers .teacher .content h5 {
  color: #07A7E1;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: normal;
  margin: 0;
  padding: 10px 0;
}
@media screen and (max-width: 560px) {
  #all_teachers .teacher .content h5 {
    padding: 0;
  }
}
#all_teachers .teacher .content .job_title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-block-end: 0;
}
#all_teachers .teacher .content .quote {
  font-size: 0.9rem;
  font-style: italic;
  padding: 20px 0 0 0;
  margin-block-end: 0;
}
#all_teachers .teacher .content .quote::before, #all_teachers .teacher .content .quote::after {
  content: '"';
}

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