#background {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100vh;
  width: 100vw;
  position: fixed;
  z-index: 5;
  top: 0;
  transition: opacity 0.4s, visibility 0.4s;
  opacity: 0;
  visibility: hidden;
}

#headerMobile {
  height: 70px;
  padding: 0 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
  position: fixed;
  width: 100%;
  background-color: #fff;
  top: 0;
}
#headerMobile > ul {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}
#headerMobile > ul img {
  max-width: 100px;
  height: auto;
}
#headerMobile > ul button {
  width: 24px;
  height: 24px;
}

#aside {
  max-width: 190px;
  width: 100%;
  height: 100vh;
  width: 100vw;
  z-index: 6;
  position: fixed;
  top: 0;
  background-color: #fff;
  transition: transform 0.4s;
  transform: translateX(-190px);
}
#aside > div {
  padding: 25px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#aside > div > a > img {
  max-width: 100%;
  height: auto;
}
#aside > ul {
  list-style: none;
  border-bottom: 1px solid #d5d8e4;
  border-top: 1px solid #d5d8e4;
  padding: 15px;
}
#aside > ul > li {
  line-height: 28px;
}
#aside > ul > li + li {
  margin-top: 6px;
}
#aside > ul > li > a {
  text-decoration: none;
  color: var(--blue);
  display: block;
}
#aside > ul > li > a.active {
  font-weight: 700;
}

#header {
  padding-top: 50px;
}
#header > div {
  max-width: 1344px;
  margin: 0 auto;
  width: 100%;
}
#header > div > img {
  max-width: 100%;
  height: auto;
}
#header > div:nth-child(1) {
  display: flex;
  align-items: center;
  justify-content: center;
}
#header > div:nth-child(2) {
  margin-top: 50px;
}
#header > div:nth-child(2) > ul {
  display: flex;
  align-items: center;
  list-style: none;
  justify-content: space-evenly;
  border: 1px solid #d5d8e4;
  border-width: 1px 0;
}
#header > div:nth-child(2) > ul > li {
  line-height: 50px;
}
#header > div:nth-child(2) > ul > li > a {
  text-decoration: none;
  color: var(--blue);
  text-transform: uppercase;
  display: block;
  font-size: 1.42rem;
  position: relative;
}
#header > div:nth-child(2) > ul > li > a.active {
  font-weight: 700;
}
#header > div:nth-child(2) > ul > li > a:hover::after {
  width: 100%;
}
#header > div:nth-child(2) > ul > li > a::after {
  position: absolute;
  content: "";
  bottom: calc(50% - 1.32rem);
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--blue);
  transition: width 0.5s;
}

#main #welcome {
  margin-top: 30px;
}
#main #welcome > main {
  display: flex;
  align-items: center;
  justify-content: center;
}
#main #welcome > main > img {
  max-width: 100%;
  height: auto;
}
#main #searchForm {
  width: 100%;
  height: 86px;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
#main #searchForm > select {
  height: 44px;
  padding-right: 130px;
  padding-left: 15px;
  background-color: #fff;
  color: var(--blue);
  border: 2px solid transparent;
  border-radius: 40px;
  font-size: 1.21rem;
  font-weight: 700;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
#main #searchForm > select:focus {
  background-color: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
#main #searchForm > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #fff;
  border-radius: 40px;
  border: 2px solid transparent;
  padding-right: 10px;
  padding-left: 15px;
}
#main #searchForm > div > svg {
  width: 24px;
  height: 24px;
  color: var(--blue);
}
#main #searchForm > div > input {
  flex: 1;
  height: 44px;
  background-color: #fff;
  border: 0;
  max-width: 200px;
  width: 100%;
  font-size: 1.14rem;
}
#main #searchForm > div > input::placeholder {
  color: var(--gray);
}
#main #searchForm > div > button {
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  color: var(--gray);
}
#main #courses {
  padding: 100px 0;
}
#main #courses > header {
  max-width: 1560px;
  margin: 0 auto;
  width: 100%;
}
#main #courses > main {
  max-width: 1560px;
  margin: 0 auto;
  margin-top: 50px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
#main #courses > main .course {
  max-width: 930px;
  width: 100%;
}
#main #courses > main .course + * {
  margin-top: 30px;
}
#main #courses > main .course > header {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  background-color: var(--blue);
  padding: 39px 40px;
  color: #fff;
}
#main #courses > main .course > header > h1 {
  font-size: 2.21rem;
  text-transform: uppercase;
  margin-bottom: 15px;
}
#main #courses > main .course > header > div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
#main #courses > main .course > header > div > span {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 400;
}
#main #courses > main .course > main {
  padding: 39px 40px;
  background-color: #f5f5f5;
}
#main #courses > main .course > main > p {
  font-size: 1.35rem;
  color: var(--gray);
}
#main #courses > main .course > footer {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
}
#main #courses > main .course > footer > button {
  padding: 13px 31px;
  color: #fff;
  background-color: #55a1d8;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 40px;
  cursor: pointer;
}
#main #courses > main .course > footer > button:disabled {
  background-color: var(--gray);
  color: #ccc;
}

#footer {
  background-color: var(--blue);
  padding: 84px 25px;
}
#footer > main {
  max-width: 1344px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
#footer > main ul {
  list-style: none;
}
#footer > main > div {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
#footer > main strong {
  font-size: 1.28rem;
}
#footer > main p, #footer > main li, #footer > main a, #footer > main p {
  font-size: 1.07rem;
}
#footer > main > div:nth-child(1) {
  color: white;
}
#footer > main > div:nth-child(1) > img {
  margin-bottom: 25px;
  max-width: 100%;
  height: auto;
}
#footer > main > div:nth-child(2) {
  color: white;
}
#footer > main > div:nth-child(2) > p {
  margin-top: 10px;
  max-width: 330px;
}
#footer > main > div:nth-child(3) {
  color: white;
  text-transform: uppercase;
}
#footer > main > div:nth-child(3) > ul {
  margin-top: 10px;
}
#footer > main > div:nth-child(3) > ul > li > a {
  color: inherit;
  text-decoration: inherit;
}
#footer > main > div:nth-child(4) {
  color: white;
}
#footer > main > div:nth-child(4) > p {
  margin-top: 10px;
  max-width: 330px;
}
#footer > main > div:nth-child(5) {
  color: white;
  text-transform: uppercase;
}
#footer > main > div:nth-child(5) > ul {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
#footer > main > div:nth-child(5) > ul > li > a {
  color: inherit;
  text-decoration: inherit;
}
#footer > main > div:nth-child(5) > ul > li > a > img {
  max-width: 100%;
  height: auto;
}

#wpp {
  padding: 23px;
  background-color: #55a1d8;
  max-width: 100px;
  width: 100%;
  height: 100px;
  border-radius: 10px;
  position: fixed;
  bottom: 10px;
  right: 10px;
}
#wpp > a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
#wpp > a > img {
  max-width: 100%;
  height: auto;
}

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