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

body {
  font-family: 'Poppins', sans-serif;
  font-family: 'Secular One', sans-serif;
  color: #fff;
  background-color: #111;
  width: 100vw;
}

h1 {
  font-size: 4em;
  line-height: 1em;
}

h2 {
  font-size: 4em;
  line-height: 1em;
}

h3 {
  font-size: 2em;
}

h4 {
  font-size: 1.5em;
}

h5 {
  font-size: 1.2em;
}

h6 {
  font-size: 1em;
}

.prim_colored {
  color: #2a68c6;
}

.prim_colored--2 {
  color: #070c50;
}

.fl-row-c {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.fl-column-c {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 100;
}

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  color: #2a68c6;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 4% 0 8%;
  height: 14vh;
  z-index: 10;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.navbar__logo {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.navbar nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  -webkit-box-flex: 5;
      -ms-flex: 5;
          flex: 5;
}

.navbar nav > div.first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  -webkit-box-flex: 5;
      -ms-flex: 5;
          flex: 5;
}

.navbar__ham {
  display: none;
}

.navbar__search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -ms-flex-item-align: center;
      align-self: center;
}

.navbar__search input {
  position: relative;
  -webkit-transition: 700ms;
  transition: 700ms;
  z-index: 0;
  background: none;
  border: 1px solid transparent;
  border-bottom: 1px solid #fff;
  color: #fff;
  outline: none;
  -webkit-transform: translate(120%, -10px);
          transform: translate(120%, -10px);
}

.navbar__search input:focus {
  border-bottom-color: #2a68c6;
}

.navbar__search button {
  position: relative;
  z-index: 2;
  background: none;
  border: 1px solid transparent;
  color: #fff;
  border-radius: 0 10px 10px 0;
  padding: 10px;
}

.navbar__search button:active {
  background-color: #cccc;
}

.navbar__search:hover input, .navbar__search:focus-within input {
  -webkit-transform: translate(0, -10px);
          transform: translate(0, -10px);
}

.navbar__search:hover input:valid, .navbar__search:focus-within input:valid {
  -webkit-transform: translate(0, -10px);
          transform: translate(0, -10px);
}

.navbar__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  cursor: pointer;
  gap: 30px;
}

.navbar--small {
  height: 8vh;
  background-color: #111;
}

.sect {
  position: relative;
  min-height: 70vh;
  padding: 0 20px;
}

.sect__heading {
  margin: 0;
}

.sect__text {
  width: 38%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  height: 40vh;
}

.sect__image img {
  width: 700px;
  height: auto;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.sect__desc {
  text-align: justify;
  width: 60%;
}

.sect__details {
  margin: 5% 0;
}

.sect__ctas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.sect--prim {
  max-width: 95vw;
  margin: 20vh 0;
  padding: 5%;
  min-height: 8em;
  height: 70vh;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 0 300px 300px 0;
  background-color: #2a68c6;
  overflow: visible;
}

.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-blend-mode: overlay;
  color: white;
  padding: 0 8%;
  height: 100vh;
  gap: 3em;
  position: relative;
}

.hero__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 10% 0;
}

.hero__text > * {
  margin-bottom: 10px;
}

.hero__image {
  background: url("./img/img1.jpg") no-repeat;
  background-size: cover;
  height: 90vh;
  border-radius: 0 0 500px 500px;
  width: 45%;
  max-width: 1100px;
  overflow: hidden;
  position: relative;
}

.hero__img_bg--right {
  height: 100%;
  position: relative;
}

.hero__social_ctas svg {
  height: 20px;
  -webkit-transition: 200ms;
  transition: 200ms;
}

.hero__social_ctas svg:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  color: #2a68c6;
}

.btn {
  background: none;
  color: #fff;
  padding: 6px 20px;
  min-width: 100px;
  border-radius: 5px;
  border: 2px solid #2a68c6;
  background-color: #2a68c6;
  -webkit-transition: 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.btn__icon {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 20px;
  overflow: hidden;
}

.btn__icon img {
  height: 20px;
  width: 20px;
}

.btn__icon img.play {
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
  width: 100px;
}

.btn__icon img.apple {
  -webkit-filter: invert(1);
          filter: invert(1);
}

.btn__text {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
}

.btn--alt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 11em;
  font-size: 0.7em;
  border: 2px solid #111;
  background-color: #111;
  border-radius: 0;
  position: relative;
  z-index: 2;
}

.btn--trans {
  background: transparent;
  border: none;
}

.btn:hover {
  background-color: #fff;
  border: 2px solid #fff;
  color: #000;
}

.btn:hover .apple {
  -webkit-filter: invert(0);
          filter: invert(0);
}

.card1 {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  margin: 5px;
  background-color: #070c50;
}

.logos_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
}

.logo {
  width: 100px;
}

.logo--big {
  width: 250px;
  list-style: none;
}

.logo__image {
  width: 100%;
  -webkit-filter: invert(1) grayscale(100%) brightness(1060%) contrast(100%) opacity(10%);
          filter: invert(1) grayscale(100%) brightness(1060%) contrast(100%) opacity(10%);
}

.subnav {
  margin-top: 20px;
  padding: 10px 0;
  width: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.subnav ul {
  height: 3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  font-size: 0.9em;
  width: 120%;
  gap: 10px;
  list-style: none;
  text-align: center;
}

.subnav ul li {
  cursor: pointer;
  -webkit-transition: 50ms;
  transition: 50ms;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 10px;
}

.subnav ul li:hover {
  color: #2a68c6;
  background-color: rgba(34, 34, 34, 0.5);
}

.courses {
  margin-top: 80px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 20px;
  max-width: 200vw;
  overflow: scroll;
}

.course {
  position: relative;
  height: 350px;
  min-width: 20em;
  width: 20em;
  border-radius: 10px;
  background-color: #222;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: 500ms;
  transition: 500ms;
  overflow: hidden;
}

.course__bg {
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 0;
}

.course__top {
  -webkit-box-flex: 20;
      -ms-flex: 20;
          flex: 20;
  padding: 10px;
  position: relative;
  z-index: 0;
  background-color: #0004;
  -webkit-transition: background 500ms;
  transition: background 500ms;
}

.course__text {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  position: relative;
  z-index: 0;
  background-color: #0004;
  -webkit-transition: background 500ms;
  transition: background 500ms;
}

.course__author_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}

.course__author_pic {
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background-color: green;
}

.course__author_pic img {
  width: 100%;
}

.course:hover {
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}

.course:hover .course__top {
  background-color: #0009;
}

.course:hover .course__text {
  background-color: #0009;
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 60px 15%;
}

footer ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

footer ul li {
  cursor: pointer;
  -webkit-transition: 200ms;
  transition: 200ms;
}

footer ul li:hover {
  color: #2a68c6;
}

.float--up {
  -webkit-transition: 800ms;
  transition: 800ms;
}

.float--up img {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition: 400ms;
  transition: 400ms;
  -webkit-animation: hover 800ms infinite alternate both;
          animation: hover 800ms infinite alternate both;
}

.float--up:hover {
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}

.tracking-in-contract-bck {
  -webkit-animation: tracking-in-contract-bck 1s cubic-bezier(0.215, 0.61, 0.355, 1) both;
  animation: tracking-in-contract-bck 1s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}

.kenburns-top-left {
  -webkit-animation: kenburns-top-left 5s ease-out both;
  animation: kenburns-top-left 5s ease-out both;
}

.slide-out-top {
  -webkit-animation: slide-out-top 0.7s 1.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
  animation: slide-out-top 0.7s 1.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

/* ----------------------------------------------
 * Generated by Animista on 2021-10-20 22:21:12
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation slide-out-top
 * ----------------------------------------
 */
@-webkit-keyframes slide-out-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0;
  }
}

@keyframes slide-out-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0;
  }
}

@-webkit-keyframes kenburns-top-left {
  0% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
    -webkit-transform-origin: 16% 16%;
    transform-origin: 16% 16%;
  }
  100% {
    -webkit-transform: scale(1.25) translate(-20px, -15px);
    transform: scale(1.25) translate(-20px, -15px);
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }
}

@keyframes kenburns-top-left {
  0% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
    -webkit-transform-origin: 16% 16%;
    transform-origin: 16% 16%;
  }
  100% {
    -webkit-transform: scale(1.25) translate(-20px, -15px);
    transform: scale(1.25) translate(-20px, -15px);
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }
}

@-webkit-keyframes tracking-in-contract-bck {
  0% {
    letter-spacing: 1em;
    -webkit-transform: translateZ(400px);
    transform: translateZ(400px);
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

@keyframes tracking-in-contract-bck {
  0% {
    letter-spacing: 1em;
    -webkit-transform: translateZ(400px);
    transform: translateZ(400px);
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

@-webkit-keyframes hover-down {
  to {
    -webkit-transform: translateY(200px);
            transform: translateY(200px);
  }
}

@keyframes hover-down {
  to {
    -webkit-transform: translateY(200px);
            transform: translateY(200px);
  }
}

@-webkit-keyframes hover {
  to {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

@keyframes hover {
  to {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 4em;
    line-height: 1em;
  }
  h2 {
    font-size: 4em;
    line-height: 1em;
  }
  .navbar {
    padding: 0 8%;
    height: 10vh;
    z-index: 10;
  }
  .navbar nav.open {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  .navbar__ham {
    position: relative;
    z-index: 20;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 20px;
    gap: 5px;
    -webkit-transition: 300ms;
    transition: 300ms;
  }
  .navbar__ham span {
    height: 2px;
    background-color: #fff;
    -webkit-transition: 300ms;
    transition: 300ms;
    width: 100%;
  }
  .navbar__ham.open {
    position: fixed;
    right: 7%;
    width: 15px;
  }
  .navbar__ham.open span {
    height: 2px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  .navbar__ham.open span:last-child {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .navbar nav {
    -webkit-transition: 500ms;
    transition: 500ms;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
    position: fixed;
    height: 100vh;
    width: 100vw;
    background: #111;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #fff;
  }
  .navbar__search {
    overflow: hidden;
  }
  .navbar__search input {
    -webkit-transform: translate(0%);
            transform: translate(0%);
  }
  .navbar__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    cursor: pointer;
    gap: 30px;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .navbar__link:hover {
    border-bottom: 1px solid #fff;
  }
  .navbar --small {
    height: 8vh;
    background-color: #111;
  }
  .logo {
    width: 100px;
  }
  .logo--big {
    width: 150px;
    list-style: none;
  }
  .logo__image {
    width: 100%;
    -webkit-filter: grayscale(100%) brightness(1097%) contrast(0%) opacity(36%);
            filter: grayscale(100%) brightness(1097%) contrast(0%) opacity(36%);
  }
  .sect {
    position: relative;
    min-height: 40vh;
    padding: 30px 20px;
    max-width: 100vw;
    overflow: hidden;
  }
  .sect__heading {
    margin: 0;
  }
  .sect__text {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    height: 40vh;
  }
  .sect__image {
    margin-top: 20px;
    width: 400px;
    height: auto;
    position: relative;
  }
  .sect__image img {
    width: 400px;
  }
  .sect__image::before {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 50%;
    height: 30%;
    content: "";
    background-color: #000900;
    -webkit-transform: translate(-50%) rotate(-40deg) skew(20deg);
            transform: translate(-50%) rotate(-40deg) skew(20deg);
    -webkit-filter: blur(30px);
            filter: blur(30px);
  }
  .sect__img_bg--right {
    width: 100%;
    position: relative;
    top: 40px;
  }
  .sect__desc {
    text-align: justify;
    width: 100%;
  }
  .sect__details {
    margin: 5% 0;
  }
  .sect--prim {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
    padding: 40px 8%;
    min-height: 80vh;
    border-radius: 0;
    background: #2a68c6;
    background-blend-mode: darken;
    background-size: 100%;
    overflow: visible;
    margin-bottom: 200px;
  }
  .hero {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-blend-mode: overlay;
    color: white;
    padding: 0 3%;
    height: 100vh;
    gap: 3em;
    position: relative;
    background: url("./img/img1.jpg") scroll #0009;
    background-size: cover;
  }
  .hero__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    padding: 40% 0;
  }
  .hero__image {
    display: none;
    background-color: aqua;
    height: 80vh;
    border-radius: 0 0 500px 500px;
    width: 50%;
    overflow: hidden;
  }
  .hero__image img {
    height: 100%;
  }
  .nav {
    display: none;
  }
  .nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    font-size: 0.7em;
    width: 120%;
    gap: 40px;
    list-style: none;
    text-align: center;
  }
  .nav ul li {
    cursor: pointer;
  }
  .courses {
    margin-top: 80px;
    margin-left: 0px;
  }
  .course {
    position: relative;
    height: 350px;
    width: 16em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transition: 500ms;
    transition: 500ms;
    overflow: hidden;
  }
  .course__bg {
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 0;
  }
  .course__top {
    -webkit-box-flex: 20;
        -ms-flex: 20;
            flex: 20;
    padding: 10px;
    position: relative;
    z-index: 0;
    background-color: #0004;
    -webkit-transition: background 500ms;
    transition: background 500ms;
  }
  .course__text {
    padding: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
    position: relative;
    z-index: 0;
    background-color: #0004;
    -webkit-transition: background 500ms;
    transition: background 500ms;
  }
  .course__author_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
  }
  .course__author_pic {
    width: 40px;
    height: 40px;
    border-radius: 100px;
    background-color: green;
  }
  .course__author_pic img {
    width: 100%;
  }
  .course:hover {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  .course:hover .course__top {
    background-color: #0009;
  }
  .course:hover .course__text {
    background-color: #0009;
  }
}

@media screen and (min-width: 768px) {
  .navbar__link {
    -webkit-transition: 200ms;
    transition: 200ms;
  }
  .navbar__link:hover {
    color: #2a68c6;
  }
}
/*# sourceMappingURL=style.css.map */