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

body {
  font-family: "Quicksand", sans-serif;
  color: #323a4f;
  background-image: url(/assets/images/dots.png);
  background-color: #f5f5f5;
  font-size: 16px;
}

button {
  font-family: "Quicksand", sans-serif;
  color: #323a4f;
  font-size: 16px;
}

img {
  max-width: 100%;
  height: auto;
}

.clipped-postcard-img {
  max-width: 100%;
  height: 177px;
  object-fit: cover;
}

@media (min-width: 500px) {
  .clipped-postcard-img {
    height: auto;
  }
}

@media (max-width: 500px) {
  .clipped-post-img {
    width: 100%;
    height: 151px;
    object-fit: cover;
  }
}

.clipped-featured-img {
  max-width: 100%;
  height: 170px;
  object-fit: cover;
}

@media (min-width: 400px) {
  .clipped-featured-img {
    height: 231px;
  }
}

@media (min-width: 700px) {
  .clipped-featured-img {
    height: 350px;
  }
}

@media (min-width: 1000px) {
  .clipped-featured-img {
    height: auto;
    max-height: 100%;
  }
}

/* HEADER */

.header-1 {
  padding: 17px 12px;
  height: 64px;
  position: fixed;
  width: 100%;
  z-index: 100;
  background: white;
  display: flex;
  justify-content: space-between;
}

@media (min-width: 1000px) {
  .header-1 {
    position: relative;
    margin-bottom: 0;
    padding: 25px 12px;
    height: 100px;
  }
}

.nav-center {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e3e6ed;
  height: 42px;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links img {
  vertical-align: middle;
}

.category-container:hover {
  filter: invert(42%) sepia(83%) saturate(2984%) hue-rotate(189deg) brightness(80%) contrast(114%);
}

.nav-link {
  color: #323a4f;
  text-decoration: none;
}

.spacer-link {
  font-size: 13px;
  line-height: 16px;
  font-weight: 500;
  margin-left: 9px;
  margin-right: 28px;
}

.searcher,
.btn-courses,
.nav-center {
  display: none;
}

.hamburger {
  display: flex;
  align-items: center;
}

.xIcon {
  display: none;
}

@media (min-width: 1000px) {
  .btn-courses {
    display: flex;
  }

  .searcher {
    display: flex;
    width: 47%;
  }

  .nav-center {
    display: flex;
  }

  .hamburger {
    display: none;
  }
}

.logo-container {
  display: flex;
  align-items: center;
  transform: translateY(10%);
  width: 161px;
}

.logo-container img {
  height: 44px;
}

@media (max-width: 1000px) {
  .logo-container {
    top: 25px;
    left: 12px;
    transform: translateY(5%);
  }

  .logo-container img {
    width: 131px;
  }
}

@media (min-width: 1000px) {
  .btn-courses {
    display: flex;
    align-items: center;
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
  }
}

.menu-mobile {
  display: none;
  background: #F3F3F3;
}

.searcher-mobile {
  padding: 23px 12px 34px;
}

.nav-mobile {
  display: flex;
  justify-content: center;
}

.mobile-links {
  list-style: none;
}

.mobile-link {
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: #323a4f;
  display: flex;
  justify-content: center;
}

.btn-courses-mobile {
  padding-bottom: 47px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.showMenu {
  display: block;
  padding-top: 75px;
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 99;
}

.shadower {
  box-shadow: 0px 4px 32px rgba(0, 16, 61, 0.16);
}

/* FOOTER */

footer {
  background: white;
}

.category-wrap {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 1000px) {
  .category-wrap {
  justify-content: center;
  }
}

.link-footer {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1000px) {
  .link-footer {
    flex-direction: row;
    justify-content: flex-end;
  }
}

/* LAYOUT */

.container {
  max-width: 1209px;
  margin: 0 auto;
  padding: 0 15px;
}

@media (min-width: 1000px) {
  .container-post {
    padding: 0 75px;
  }
}

.footer-container {
  width: 90%;
  margin: auto;
}

@media (min-width: 1000px) {
  .container-footer {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin-left: -12px;
  margin-right: -12px;
}

@media (min-width: 1000px) {
  .row {
    flex-direction: row;
  }
}

.col {
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
}

@media (min-width: 1000px) {
  .col-1-4 {
    flex: 0 0 25%;
  }
}

@media (min-width: 1000px) {
  .col-1-3 {
    flex: 0 0 33.3333%;
  }
}

@media (min-width: 1000px) {
  .col-1-2 {
    flex: 0 0 50%;
  }
}

@media (min-width: 1000px) {
  .col-flex-center {
    display: flex;
    align-items: center;
  }
}

.col-pad-24 {
  padding: 0 24px;
}

.col-pad-12 {
  padding: 0 12px;
}

@media (min-width: 1000px) {
  .intro-left {
    flex: 0 0 55.5%;
    margin-right: 0.5%;
  }

  .intro-right {
    flex: 0 0 44%;
  }
}

@media (min-width: 1000px) {
  .footer-left {
    flex: 0 0 25%;
  }

  .footer-middle {
    flex: 0 0 50%;
  }

  .footer-right {
    flex: 0 0 25%;
  }
}

@media (min-width: 1000px) {
  .post-left {
    flex: 0 0 66%;
    margin-right: 1%;
  }

  .post-right {
    flex: 0 0 33%;
    padding-right: 40px;
  }
}

/* HEADINGS */

.text-sizing {
  font-size: 19px;
  font-weight: 700;
  line-height: 27px;
}

@media (min-width: 1150px) {
  .text-sizing {
    font-size: 25px;
    line-height: 30px;
  }
}

.heading-1 {
  font-size: 22px;
  font-weight: 700;
  line-height: 34px;
}

.heading-1-xl {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.heading-2 {
  font-size: 23px;
  font-weight: 700;
  line-height: 37px;
}

.heading-3 {
  font-size: 19px;
  font-weight: 700;
  line-height: 27px;
}

.heading-4 {
  font-size: 18px;
  line-height: 29px;
  font-weight: 700;
}

.heading-5 {
  font-size: 17px;
  font-weight: 700;
  line-height: 24px;
}

.heading-6 {
  font-size: 16px;
  line-height: 24px;
}

@media (min-width: 1000px) {
  .heading-1 {
    font-size: 38px;
    line-height: 48px;
  }
  .heading-1-xl {
    font-size: 32px;
    line-height: 40px;
  }
  .heading-2 {
    font-size: 36px;
    line-height: 58px;
  }
  .heading-3 {
    font-size: 25px;
    line-height: 30px;
  }
  .heading-4 {
    font-size: 20px;
    line-height: 24px;
  }
}

.p-15-18 {
  font-size: 15px;
  line-height: 22px;
}

@media (min-width: 1000px) {
  .p-15-18 {
    font-size: 18px;
    line-height: 29px;
  }
}

.p-15-24 {
  font-size: 15px;
  line-height: 24px;
}

/* MARGINS AND PADDINGS */

.mb-20-22 {
  margin-bottom: 20px;
}

@media (min-width: 1000px) {
  .mb-20-22 {
    margin-bottom: 22px;
  }
}

.mb-32-40 {
  margin-bottom: 32px;
}

@media (min-width: 1000px) {
  .mb-32-40 {
    margin-bottom: 40px;
  }
}

.mb-24-125 {
  margin-bottom: 24px;
}

@media (min-width: 1000px) {
  .mb-24-125 {
    margin-bottom: 125px;
  }
}

.mb-20-38 {
  margin-bottom: 20px;
}

@media (min-width: 1000px) {
  .mb-20-38 {
    margin-bottom: 38px;
  }
}

.mb-32-64 {
  margin-bottom: 32px;
}

@media (min-width: 1000px) {
  .mb-32-64 {
    margin-bottom: 64px;
  }
}

.mb-16-22 {
  margin-bottom: 16px;
}

@media (min-width: 1000px) {
  .mb-16-22 {
    margin-bottom: 22px;
  }
}

.mb-14-22 {
  margin-bottom: 14px;
}

@media (min-width: 1000px) {
  .mb-14-22 {
    margin-bottom: 22px;
  }
}

.mtb-14-22 {
  margin-bottom: 14px;
  margin-top: 14px;
}

@media (min-width: 1000px) {
  .mtb-14-22 {
    margin-bottom: 22px;
    margin-top: 22px;
  }
}

.mb-14-18 {
  margin-bottom: 14px;
}

@media (min-width: 1000px) {
  .mb-14-18 {
    margin-bottom: 18px;
  }
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-24-39 {
  margin-bottom: 24px;
}

@media (min-width: 1000px) {
  .mb-24-39 {
    margin-bottom: 39px;
  }
}

@media (max-width: 1000px) {
  .mb-11 {
    margin-bottom: 11px;
  }
}

.mb-4 {
  margin-bottom: 4px;
}

@media (min-width: 1000px) {
  .mb-4 {
    margin-bottom: 0px;
  }
}

.mb-19-40 {
  margin-bottom: 19px;
}

@media (min-width: 1000px) {
  .mb-19-40 {
    margin-bottom: 40px;
  }
}

.mb-16-42 {
  margin-bottom: 16px;
}

@media (min-width: 1000px) {
  .mb-16-42 {
    margin-bottom: 42px;
  }
}

.mb-4-14 {
  margin-bottom: 4px;
}

@media (min-width: 1000px) {
  .mb-4-14 {
    margin-bottom: 14px;
  }
}

.mb-8-13 {
  margin-bottom: 8px;
}

@media (min-width: 1000px) {
  .mb-8-13 {
    margin-bottom: 13px;
  }
}

.mb-8-12 {
  margin-bottom: 8px;
}

@media (min-width: 1000px) {
  .mb-8-12 {
    margin-bottom: 12px;
  }
}

.mb-18-13 {
  margin-bottom: 18px;
}

@media (min-width: 1000px) {
  .mb-18-13 {
    margin-bottom: 13px;
  }
}

.mb-14-33 {
  margin-bottom: 14px;
}

@media (min-width: 1000px) {
  .mb-14-33 {
    margin-bottom: 33px;
  }
}

.mb-4-22 {
  margin-bottom: 4px;
}

@media (min-width: 1000px) {
  .mb-4-22 {
    margin-bottom: 22px;
  }
}

.mb-24-22 {
  margin-bottom: 24px;
}

@media (min-width: 1000px) {
  .mb-24-22 {
    margin-bottom: 24px;
  }
}

.mb-24-34 {
  margin-bottom: 24px;
}

@media (min-width: 1000px) {
  .mb-24-34 {
    margin-bottom: 34px;
  }
}

.mb-42-35 {
  margin-bottom: 42px;
}

@media (min-width: 1000px) {
  .mb-42-35 {
    margin-bottom: 35px;
  }
}

@media (max-width: 1000px) {
  .mb-32 {
    margin-bottom: 32px;
  }
}

.mb-8-5 {
  margin-bottom: 8px;
}

@media (min-width: 1000px) {
  .mb-8-5 {
    margin-bottom: 5px;
  }
}

.mb-38-40 {
  margin-bottom: 38px;
}

@media (min-width: 1000px) {
  .mb-38-40 {
    margin-bottom: 40px;
  }
}

.mb-20-32 {
  margin-bottom: 20px;
}

@media (min-width: 1000px) {
  .mb-20-32 {
    margin-bottom: 32px;
  }
}

.mb-20-42 {
  margin-bottom: 20px;
}

@media (min-width: 1000px) {
  .mb-20-42 {
    margin-bottom: 42px;
  }
}

.mb-20-4 {
  margin-bottom: 20px;
}

@media (min-width: 1000px) {
  .mb-20-4 {
    margin-bottom: 4px;
  }
}

.mb-24-30 {
  margin-bottom: 24px;
}

@media (min-width: 1000px) {
  .mb-24-30 {
    margin-bottom: 30px;
  }
}

.mb-31 {
  margin-bottom: 31px;
}

.mb-28-19 {
  margin-bottom: 28px;
}

@media (min-width: 1000px) {
  .mb-28-19 {
    margin-bottom: 19px;
  }
}

.mb-14-36 {
  margin-bottom: 14px;
}

@media (min-width: 1000px) {
  .mb-14-36 {
    margin-bottom: 36px;
  }
}

.mb-38-18 {
  margin-bottom: 38px;
}

@media (min-width: 1000px) {
  .mb-38-18 {
    margin-bottom: 18px;
  }
}

.mb-12 {
  margin-bottom: 12px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-14 {
  margin-bottom: 14px;
}

.mb-28 {
  margin-bottom: 28px;
}

.mb-34 {
  margin-bottom: 34px;
}

.mb-42 {
  margin-bottom: 42px;
}

.mb-23-40 {
  margin-bottom: 23px;
}

@media (min-width: 1000px) {
  .mb-23-40 {
    margin-bottom: 40px;
  }
}

.mb-21-10 {
  margin-bottom: 21px;
}

@media (min-width: 1000px) {
  .mb-21-10 {
    margin-bottom: 10px;
  }
}

.mb-34-50 {
  margin-bottom: 34px;
}

@media (min-width: 1000px) {
  .mb-34-50 {
    margin-bottom: 50px;
  }
}

.mb-41-61 {
  margin-bottom: 41px;
}

@media (min-width: 1000px) {
  .mb-41-61 {
    margin-bottom: 61px;
  }
}

@media (max-width: 1000px) {
  .mb-46 {
    margin-bottom: 46px;
  }
}
  
  .mb-16 {
  margin-bottom: 16px;
}

.mb-40-120 {
  margin-bottom: 40px;
}

@media (min-width: 1000px) {
  .mb-40-120 {
    margin-bottom: 120px;
  }
}

.mb-40-34 {
  margin-bottom: 40px;
}

@media (min-width: 1000px) {
  .mb-40-34 {
    margin-bottom: 34px;
  }
}

.mb-25-21 {
  margin-bottom: 25px;
}

@media (min-width: 1000px) {
  .mb-25-21 {
    margin-bottom: 21px;
  }
}

.mb-24-50 {
  margin-bottom: 24px;
}

@media (min-width: 1000px) {
  .mb-24-50 {
    margin-bottom: 50px;
  }
}

.mr-8-4 {
  margin-right: 8px;
}

@media (min-width: 1000px) {
  .mr-8-4 {
    margin-right: 4px;
  }
}

.mt-20 {
  margin-top: 20px;
}

.mb-13 {
  margin-bottom: 13px;
}

.mb-25-20 {
  margin-bottom: 25px;
}

@media (min-width: 1000px) {
  .mb-25-20 {
    margin-bottom: 20px;
  }
}

.mb-17 {
  margin-bottom: 17px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-43 {
  margin-bottom: 43px;
}

@media (max-width: 1000px) {
  .mb-m-20 {
    margin-bottom: 20px;
  }
}

@media (max-width: 1000px) {
  .mb-m-34 {
    margin-bottom: 34px;
  }
}

@media (max-width: 1000px) {
  .mb-m-38 {
    margin-bottom: 38px;
  }
}

@media (min-width: 1000px) {
  .ml-24 {
    margin-left: 24px;
  }
}

.mlr-8 {
  margin-left: 8px;
  margin-right: 8px;
}

.ml-20 {
  margin-left: 20px;
}

@media (min-width: 1150px) {
  .lh-24 {
    line-height: 24px;
  }
}

@media (max-width: 1000px) {
  .lh-26 {
    line-height: 26px;
  }
}

@media (max-width: 1000px) {
  .lh-28 {
    line-height: 28px;
  }
}

.intro-left,
.intro-right {
  padding: 0 12px;
}

.intro-left-label {
  margin-bottom: 4px;
}

@media (min-width: 1000px) {
  .intro-left-label {
    margin-bottom: 0;
  }
}

.intro-left-heading {
  margin-bottom: 4px;
}

@media (min-width: 1000px) {
  .intro-left-heading {
    margin-bottom: 14px;
  }
}

.intro-left-text {
  margin-bottom: 9px;
}

@media (min-width: 1000px) {
  .intro-left-text {
    margin-bottom: 18px;
  }
}

.intro-right-label {
  margin-bottom: 6px;
}

@media (min-width: 1000px) {
  .intro-right-label {
    margin-bottom: 19px;
  }
}

.intro-right-heading {
  margin-bottom: 8px;
}

.intro-right-text {
  margin-bottom: 32px;
}

@media (min-width: 1000px) {
  .intro-right-text {
    margin-bottom: 43px;
  }
}

.pad-12-18 {
  padding: 12px;
}

@media (min-width: 1000px) {
  .pad-12-18 {
    padding: 18px;
  }
}

.pad-12-18-40 {
  padding: 12px 12px 40px;
}

@media (min-width: 1000px) {
  .pad-12-18-40 {
    padding: 18px 18px 40px;
  }
}

.pad-10-14 {
  padding: 10px 10px 14px;
}

@media (max-width: 1000px) {
  .pad-top-90 {
    padding-top: 90px;
  }

  .pad-top-20 {
    padding-top: 20px;
  }

  .pad-top-70 {
    padding-top: 70px;
  }
}

.pad-top-26-44 {
  padding-top: 26px;
}

@media (min-width: 1000px) {
  .pad-top-26-44 {
    padding-top: 44px;
  }
}

@media (min-width: 1000px) {
  .pad-top-36 {
    padding-top: 36px;
  }
}

.pad-top-26-54 {
  padding-top: 26px;
}

@media (min-width: 1000px) {
  .pad-top-26-54 {
    padding-top: 54px;
  }
}

.pad-bot-42-62 {
  padding-bottom: 42px;
}

@media (min-width: 1000px) {
  .pad-bot-42-62 {
    padding-bottom: 62px;
  }
}

.pad-bot-44-58 {
  padding-bottom: 44px;
}

@media (min-width: 1000px) {
  .pad-bot-44-58 {
    padding-bottom: 58px;
  }
}

/* BUTTONS */

.btn {
  display: flex;
  justify-content: center;
  border-radius: 3px;
  color: white;
  width: 36px;
  height: 36px;
  font-size: 15px;
  align-items: center;
  border: none;
  cursor: pointer;
}

.btn-show {
  width: 155px;
  height: 44px;
  font-weight: 700;
  color: #323A4F;
  font-size: 15px;
  line-height: 20px;
  border: 1px solid #323A4F;
  background: #F5F5F5;
  padding: 12px 25px;
}

.btn-text {
  border-radius: 5px;
  background: #0082fa;
  height: 44px;
  line-height: 44px;
  width: auto;
  padding: 0 20px;
}

.btn-course {
  width: 172px;
}

.btn-arrow {
  background: #0082fa;
}

.btn-search {
  background: #a6aabc;
}

.btn-more {
  background: none;
  width: auto;
}

.btn-more-text {
  margin-right: 10px;
  color: #0082fa;
  font-weight: 500;
}

/* LABELS */

.label-text {
  font-size: 15px;
  font-weight: 700;
  line-height: 24px;
  display: block;
}

.label-text-orange {
  color: #fe7e23;
}

.label-text-blue {
  color: #0082fa;
}

.label-show-all {
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
  text-decoration: none;
  margin-left: auto;
}

.label-show-course {
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
  text-decoration: none;
}

.spacer-10 {
  margin-right: 10px;
}

.black-text-16 {
  color: #323A4F;
  font-size: 16px;
  line-height: 20px;
}

.dot {
  margin-right: 11px;
  margin-left: 9px;
  vertical-align: middle;
  width: 4px;
}

/* BOXES */

.box-height {
  height: 499px;
}

@media (min-width: 700px) {
  .box-height {
    height: 549px;
  }
}

@media (min-width: 800px) {
  .box-height {
    height: 599px;
  }
}

@media (min-width: 900px) {
  .box-height {
    height: 649px;
  }
}

@media (min-width: 1000px) {
  .box-height {
    height: 599px;
  }
}

@media (min-width: 1000px) {
  .new-height {
    height: 599px;
  }
}

.box-article {
  border-radius: 5px;
  background: white;
  box-shadow: 0px 1px 2px rgba(23, 25, 51, 0.08);
}

@media (min-width: 1000px) {
  .box-article-cat {
    height: 380px;
  }
}

.box-error {
  padding: 38px 12px 54px;
}

@media (min-width: 1000px) {
  .box-error {
    padding: 69px 187px 68px;
  }
}

.box-results {
  padding-top: 15px;
  max-height: 450px;
  overflow-y: auto;
  box-shadow: 0px 1px 2px rgba(23, 25, 51, 0.08);
}

@media (max-width: 1000px) {
  .box-results {
    padding-top: 15px;
    max-height: 700px;
    overflow-y: auto;
    box-shadow: 0px 1px 2px rgba(23, 25, 51, 0.08);
  }
}

.box-newsletter {
  border-radius: 5px;
  background: #e3e6ed;
  box-shadow: 0px 1px 2px rgba(23, 25, 51, 0.08);
  padding: 18px 12px;
  margin-left: 0;
  margin-right: 0;
}

@media (min-width: 1000px) {
  .box-newsletter {
    padding: 24px;
  }
}

.box-tips {
  border-radius: 5px;
  background: white;
  box-shadow: 0px 1px 2px rgba(23, 25, 51, 0.08);
  padding: 18px 12px 24px;
}

@media (min-width: 1000px) {
  .box-tips {
    padding: 18px;
  }
}

.box-article-gray {
  background: #e3e6ed;
}

.box-article-featured {
  padding: 18px 12px 55px;
}

@media (min-width: 1000px) {
  .box-article-featured {
    padding: 12px 18px 55px;
  }
}

.box-category {
  border-radius: 5px;
  background: white;
  box-shadow: 0px 1px 2px rgba(23, 25, 51, 0.08);
  width: 125px;
  height: 125px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 8px;
  text-align: center;
  font-size: 13px;
  line-height: 16px;
  margin-bottom: 10px;
}

@media (min-width: 1000px) {
  .box-category {
    width: 189px;
    height: 189px;
    margin-left: 10px;
    font-size: 16px;
    line-height: 25px;
  }
}

.box-category:hover {
  background: #0082FA;
  color: white;
}

.box-category:hover img {
  filter: brightness(100);
}

.box-badge {
  border-radius: 10px;
  background: #f1f4fb;
  box-shadow: 0px 1px 2px rgba(23, 25, 51, 0.08);
  padding: 30px 9px 30px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (min-width: 1000px) {
  .box-badge {
    padding: 30px 45px 30px 25px;
  }
}

.box-course {
  position: relative;
  display: flex;
  width: 100%;
  height: 150px;
  background: white;
  border: 1px solid #a6aabc;
  border-radius: 10px;
}

@media (min-width: 1200px) {
  .box-course {
    display: block;
    width: 211px;
    height: 300px;
  }
}

.box-img {
  border-radius: 9px 0 0 9px;
  max-height: 100%;
  height: 100%;
  max-width: 100%;
  width: 300px;
  object-fit: cover;
}

@media (min-width: 1200px) {
  .box-img {
    height: auto;
    border-radius: 9px 9px 0 0;
    max-height: 100%;
    width: 100%;
    object-fit: fill;
  }
}

.box-content {
  width: 100%;
}

@media (min-width: 1200px) {
  .box-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 156px;
  }
}

@media (max-width: 1200px) {
  .absolute-br {
    position: absolute;
    bottom: 3px;
    right: 10px;
  }
}

@media (max-width: 500px) {
  .hide-text {
    display: none;
  }
}

/* FORMS */

.form {
  position: relative;
}

@media (min-width: 1000px) {
  .form {
    width: 338px;
    margin-left: auto;
  }
}

.form-search {
  position: relative;
}

@media (min-width: 1000px) {
  .form-search {
    width: 100%;
  }
}

.form-input {
  height: 50px;
  width: 100%;
  padding: 16px;
  border-radius: 3px;
  border: 1px solid #a6aabc;
}

.custom-btn {
  position: absolute;
  top: 7px;
  right: 7px;
}

/* LINKS */

.category-link {
  font-size: 15px;
  line-height: 20px;
  color:#323A4F;
  text-decoration: none;
  cursor: pointer;
}

.clean-link {
  text-decoration: none;
  cursor: pointer;
}

.clean-link-black {
  color:#323a4f;
}

.clean-link-blue {
  color: #0082fa;
  font-size: 16px;
  font-weight: 700;
}

.policy-link {
  text-decoration: underline;
  color: white;
  font-weight: 700;
  cursor: pointer;
}

.link {
  color: #0082fa;
  text-decoration: none;
  cursor: pointer;
}

.empty-link {
  text-decoration: none;
  cursor: pointer;
  font-weight: 700;
}

.link-under {
  text-decoration: underline;
  cursor: pointer;
  color: #0082fa;
}

.link-under-black {
  text-decoration: underline;
  cursor: pointer;
  color: #323a4f;
}

.link-500 {
  font-weight: 500;
}

.link-700 {
  font-weight: 700;
}

.article-link {
  text-decoration: none;
  cursor: pointer;
  color:#323a4f;
}

@media (max-width: 1000px) {
  .hide {
    display: none;
  }
}

@media (min-width: 1000px) {
  .hide-dp {
    display: none;
  }
}

.breaker {
  color: #a6aabc;
}

.breaker-gray {
  border: 1px solid #DCDFE9;
}

/* SOCIAL MEDIA */

.social-media {
  display: flex;
  align-items: center;
}

.social-post {
  display: flex;
  justify-content: center;
}

@media (min-width: 1000px) {
  .social-media {
    justify-content: flex-end;
  }
}

.social-logo {
  margin-left: 14px;
}

@media (min-width: 1000px) {
  .social-logo {
    margin-left: 18px;
  }
}

.circle-gray {
  height: 36px;
  width: 36px;
  border-radius: 50%;
  background: #F1F4FB;
  display: flex;
  justify-content: center;
  align-items: center;
}

.box-flex {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

@media (min-width: 1200px) {
  .box-flex {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
    margin-top: 30px;
  }
}

.text-course {
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
}

.published {
  font-size: 14px;
  line-height: 17px;
  font-weight: 700;
  padding-left: 12px;
  padding-right: 12px;
  margin-bottom: 28px;
}

@media (min-width: 1000px) {
  .published {
    margin-bottom: 19px;
  }
}

/* POST AUTHOR */

.post-author {
  display: flex;
  padding: 0 12px;
}

.about-author {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 13px;
  font-size: 14px;
  line-height: 17px;
  font-weight: 700;
}

.about-author-gray {
  color: #919399;
}

.heading-related {
  color: #a6aabc;
  font-size: 14px;
  line-height: 24px;
  display: block;
}

.author-text {
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
}

.tags {
  display: flex;
  flex-wrap: wrap;
}

.hide-results {
  display: none;
}

.results{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

@media (max-width: 1000px){
  .results {
    display: flex;
    flex-direction: column;
  }
}
.result{
  align-items: center;
}

.result:hover {
  filter: invert(42%) sepia(83%) saturate(2984%) hue-rotate(189deg) brightness(80%) contrast(114%);
}

.show-more {
  display: flex;
  justify-content: center;
}

@media (min-width: 1000px) {
  .show-more {
    display: none;
  }
}

.categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 1000px) {
  .categories {
    display: flex;
  }
}

.rating {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.circle {
  height: 24px;
  width: 24px;
  border-radius: 50%;
  background: #FE8C23;
  font-size: 13px;
  line-height: 16px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 9px;
}

.circle-cur-page {
  height: 36px;
  width: 36px;
  background: #0082FA;
}

.circle-page {
  height: 36px;
  width: 36px;
  background: white;
  color: #0082FA;
}

.rate {
  display: flex;
  justify-content: space-between;
  margin-right: 13px;
}

.rate img {
  margin-right: 5px;
}

.comments {
  color: #0182FA;
  font-size: 13px;
  line-height: 19px;
  text-decoration: underline;
  cursor: pointer;
}

/* BADGE */

.info-badge {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  line-height: 17px;
}

.badge {
  display: flex;
  justify-content: center;
}

.badge-img {
  width: 135px;
  margin-bottom: 32px;
}

@media (min-width: 1000px) {
  .badge-img {
    margin-bottom: 12px;
  }
}

/* PAGINATION */

.pagination {
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 17px;
}

.page-number {
  font-size: 16px;
  font-weight: 700;
  padding: 0 10px;
  cursor: default;
}

.author-text a {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color:#323a4f;
}

.gallery-cell {
  width: 100%;
  height: auto;
}

/* SCROLL TOP */

#goTop {
  display: none;
}

@media (min-width: 1000px) {
  #goTop {
    display: inline-block;
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, 
    opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    cursor: pointer;
  }
}

#goTop.show {
  opacity: 1;
  visibility: visible;
}

.cookie-banner {
  position: fixed;
  bottom: 40px;
  left: 10%;
  right: 10%;
  width: 80%;
  padding: 5px 14px;
  display: flex;
  justify-content: space-between;
  background-color: #0082fa;
  border-radius: 5px;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
  z-index: 101;
  color: white;
}

@media (min-width: 850px) {
  .cookie-banner {
    width: 670px;
    height: 70px;
    margin: 0 auto;
    left: 0;
    right: 0;
  }
}

.close {
  color: white;
  cursor: pointer;
  margin-left: 5px;
}

@media (min-width: 1000px) {
  .close {
    height: 40px;
    top: 4px;
    right: -10px;
  }
}

.hidden {
  display: none;
}

.flex-center {
  display: flex;
}

.vert-mid {
  vertical-align: middle;
}

.align {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

/* ERROR 404 */

.error-image {
  display: flex;
  justify-content: center;
}

.error-text {
  font-size: 19px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
}

@media (min-width: 1000px) {
  .error-text {
    font-size: 25px;
    line-height: 30px;
  }
}

.error-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
}

.error-info {
  font-size: 16px;
  line-height: 30px;
  text-align: center;
}

/* NEWSLETTER */

.busy-mail{
  padding: 135px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 1000px) {
  .busy-mail {
    padding: 223px 188px 280px;
  }
}

.confirm-mail {
  padding: 38px 12px 62px;
}

@media (min-width: 1000px) {
  .confirm-mail {
    padding: 170px 188px 217px;
  }
}

.red-text-center {
  font-size: 16px;
  line-height: 26px;
  color: #ff3d57;
  text-align: center;
}

.black-text-center {
  color:#595C67;
}

.text-center {
  text-align: center;
}

.social-media-footer img:hover {
  filter: invert(42%) sepia(83%) saturate(2984%) hue-rotate(189deg) brightness(80%) contrast(114%);
}

.category-wrap a:hover {
  color:#0082fa;
  transition: all 0.3s ease-in;
}

.cursor-default {
  cursor: default;
}

/* IFRAME */

.iframe-container{
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; 
  height: 0;
}

.iframe-container iframe{
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
}

.br-8-10 {
  border-radius: 8px;
}

@media (min-width: 1000px) {
  .br-8-10 {
    border-radius: 10px;
  }
}

.br-5 {
  border-radius: 5px;
}

.br-4 {
  border-radius: 4px;
}

.search-result-image{
  border-radius: 6px;
  margin-bottom: 10px;
  box-shadow: 0px 1px 2px rgb(23 25 51 / 8%);
}

@media (max-width: 1000px) {
  .search-result-image{
    width: 50%;
    margin-right: 15px;
    border-radius: 6px;
    margin-bottom: 10px;
    box-shadow: 0px 1px 2px rgb(23 25 51 / 8%);
  }

}

.search-result-box{
  display: flex;
  flex-direction: row;
  padding: 20px;
  text-decoration: none;
  height: 100%;
}

@media (min-width: 1000px){
  .search-result-box{
    display: flex;
    flex-direction: column;
    padding: 20px;
    text-decoration: none;
    height: 100%;
  }
}

.search-result-box:hover{
  background-color: rgba(227, 230, 237, 0.5);
  border-radius: 5px;
  cursor: pointer;
}

.search-result-effect{
  position: absolute;
  bottom: 0;
  height: 20px;
  width: 100%;
  background: linear-gradient(0.01deg, #FFFFFF 18.42%, rgba(255, 255, 255, 0) 99.99%);
  border-radius: 0px 0px 5px 5px;
}

.search-result-wrapper{
  position: relative;
}

.search-result-item{
  text-decoration: none;
  cursor: pointer;
}

@media (min-width: 1000px){
  .search-result-item{
    text-decoration: none;
    cursor: pointer;
    width: 20%;

  }
}

.search-result-text{
  height: 100%;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1000px){
  .search-result-text{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

.search-result-text-title{
  cursor: pointer;
  text-decoration: none;
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: #323A4F;
}

.search-result-text-read{
  cursor: pointer;
  text-decoration: none;
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: #0082FA;
}

.badge-paths{
  display: inline-block;
  background: #323A4F;
  border-radius: 10px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.badge-paths-text{
  padding-right: 12px;
  padding-left: 12px;
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 24px;
  color: #FFFFFF;

}



html.no-scroll {overflow: hidden;}