:root {
  --primary: #0d369f;
  --dark-gray: #7d8788;
  --text-dark: #0e0e0e;
  --primary-light: #eef4f8;
  --white: white;
  --gray: #e4e4e4;
  --black: #181515;
  --light-gray: #eee;
  --accent: #ffc10e;
  --light-gray-background: #f7f7f7;
  --dark-gray-50: rgba(175, 175, 175, .5);
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-pagination-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.w-pagination-previous, .w-pagination-next {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-previous-icon {
  margin-right: 4px;
}

.w-pagination-next-icon {
  margin-left: 4px;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: #333;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  line-height: 20px;
}

h1 {
  color: var(--primary);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Bitter, serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2em;
}

h2 {
  color: var(--primary);
  text-transform: capitalize;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Bitter, serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2em;
}

h3 {
  color: var(--primary);
  margin-top: 10px;
  font-family: Bitter, serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2em;
}

h4 {
  color: var(--primary);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Bitter, serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2em;
}

h5 {
  color: var(--primary);
  letter-spacing: .5px;
  font-family: Bitter, serif;
  font-size: 20px;
  font-weight: 700;
}

h6 {
  color: var(--primary);
  letter-spacing: .5px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Bitter, serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2em;
}

p {
  color: var(--dark-gray);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Open Sans, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6em;
}

a {
  color: var(--primary);
  letter-spacing: .3px;
  font-family: Open Sans, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2em;
  text-decoration: none;
  transition: all .3s;
}

ul {
  color: var(--text-dark);
  margin-top: 10px;
  padding-left: 20px;
  list-style-type: disc;
}

ol {
  margin-top: 10px;
  padding-left: 20px;
  list-style-type: disc;
}

li {
  color: var(--text-dark);
  flex-direction: row;
  align-items: center;
  margin-bottom: 15px;
  font-size: 15px;
}

label {
  margin-bottom: 10px;
  font-family: Open Sans, sans-serif;
  font-weight: 600;
  display: block;
}

blockquote {
  border-left: 3px solid var(--primary);
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 0 20px;
  font-family: Bitter, serif;
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
}

.section-purpose {
  margin-top: 100px;
  padding-top: 0;
  padding-bottom: 0;
  display: block;
}

.section-purpose.light-background {
  background-color: var(--primary-light);
  display: none;
}

.section-purpose.licensing-fonts {
  padding-top: 0;
  padding-bottom: 0;
}

.section-purpose.without-bottom-spacing {
  padding-bottom: 0;
  display: none;
}

.section-purpose.image-background {
  justify-content: flex-end;
  max-width: none;
  margin-bottom: 20px;
  display: none;
}

.section-purpose.blue-background {
  background-color: var(--primary);
  display: none;
}

.section-purpose.home-team-section {
  background-image: linear-gradient(rgba(255, 255, 255, .4), rgba(255, 255, 255, .4)), url('../images/team-home-5.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  display: none;
}

.section-purpose.home-pricing {
  padding-bottom: 0;
  display: none;
  position: relative;
}

.section-purpose.home-slider {
  background-image: url('../images/home-slider-bg1.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 105%;
  display: none;
  overflow: hidden;
}

.section-purpose.courses {
  margin-top: 0;
  padding-top: 0;
  display: block;
  position: relative;
}

.section-purpose.about-us-trending-courses {
  margin-top: 20px;
  display: block;
  overflow: hidden;
}

.section-purpose.without-bottom-spacing-mobile-landscape, .section-purpose.without-top-spacing-mobile-landscape {
  display: none;
}

.base-container {
  text-align: center;
  cursor: none;
  flex-direction: column;
  align-items: center;
  max-width: none;
  padding-left: 15px;
  padding-right: 15px;
  display: block;
}

.base-container.flex-align-stretch {
  align-items: stretch;
}

.grid-system-wrapper {
  flex-direction: column;
  margin-top: 40px;
  display: flex;
}

.grid-system {
  border-top: 1px solid #7c7c7c;
  justify-content: space-between;
  width: 80%;
  display: flex;
}

.grid-title {
  background-color: var(--primary);
  color: var(--white);
  border-left: 1px #a7a7a7;
  border-right: 1px solid #7c7c7c;
  justify-content: center;
  width: 19%;
  margin-top: 0;
  margin-bottom: 0;
  padding: 20px 10px;
  display: flex;
}

.grid-title.first-grid {
  background-color: var(--primary);
  border-left-style: solid;
  border-left-color: #7c7c7c;
  width: 24%;
  margin-top: 0;
}

.grid-description {
  color: var(--text-dark);
  border-bottom: 1px solid #a7a7a7;
  border-right: 1px solid #a7a7a7;
  justify-content: center;
  width: 19%;
  margin-top: 0;
  margin-bottom: 0;
  padding: 20px 10px;
  display: flex;
}

.grid-description.first-description {
  border-bottom: 1px solid #a7a7a7;
  border-left: 1px solid #a7a7a7;
  border-right: 1px solid #a7a7a7;
  width: 24%;
}

.grid-description.last-description {
  border-right-style: solid;
  border-right-width: 1px;
}

.spacing-system-column {
  padding-right: 20px;
}

.spacing-system-image {
  max-width: 80%;
}

.spacing-wrapper-mobile {
  width: 70%;
  margin-top: 30px;
  position: relative;
}

.typography-wrapper {
  margin-top: 30px;
}

.spacing-columns {
  margin-top: 50px;
}

.bottom-style-spacing-desktop {
  font-weight: 700;
  position: absolute;
  top: auto;
  bottom: 10%;
  left: auto;
  right: 0%;
}

.top-style-spacing-desktop {
  font-weight: 700;
  position: absolute;
  top: 8%;
  bottom: auto;
  right: 0;
}

.spacing-wrapper {
  width: 100%;
  margin-top: 30px;
  position: relative;
}

.middle-style-spacing-desktop {
  font-weight: 700;
  position: absolute;
  top: 33%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.spasing-system-image-mobile {
  max-width: 70%;
}

.primary-style-guide {
  background-color: var(--primary);
  width: 75px;
  height: 75px;
}

.gray-style-guide {
  background-color: var(--gray);
  width: 75px;
  height: 75px;
}

.color-wrapper {
  margin-right: 30px;
}

.colors-wrapper {
  margin-right: 60px;
}

.text-dark-style-guide {
  background-color: var(--text-dark);
  width: 75px;
  height: 75px;
}

.black-style-guide {
  background-color: var(--black);
  width: 75px;
  height: 75px;
}

.colors-container {
  justify-content: flex-start;
  margin-top: 40px;
  display: flex;
}

.light-gray-style-guide {
  background-color: var(--light-gray);
  width: 75px;
  height: 75px;
}

.color-container {
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 40px;
  display: flex;
}

.primary-light-style-guide {
  background-color: var(--accent);
  width: 75px;
  height: 75px;
  box-shadow: 0 0 15px rgba(0, 0, 0, .1);
}

.white-style-guide {
  background-color: var(--white);
  width: 75px;
  height: 75px;
}

.headings-typography-wrapper {
  flex-flow: wrap;
  width: 48%;
  margin-bottom: 30px;
  margin-right: 40px;
  display: flex;
}

.headings-typography-wrapper.last-child {
  margin-bottom: 0;
  margin-right: 0;
}

.headers-wrapper {
  width: 100%;
  margin-top: 10px;
}

.h2-tablet {
  font-size: 38px;
}

.h1-mobile {
  font-size: 40px;
}

.h2-mobile {
  font-size: 36px;
}

.h3-mobile {
  font-size: 32px;
}

.h4-mobile {
  font-size: 22px;
}

.h5-mobile {
  font-size: 20px;
  line-height: 22px;
}

.h6-mobile {
  font-size: 18px;
}

.style-guide-body-wrapper {
  width: 47%;
  margin-right: 40px;
}

.style-guide-body-wrapper.last-child {
  margin-right: 0;
}

.primary-button {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: var(--light-gray);
  text-align: justify;
  letter-spacing: .5px;
  text-transform: uppercase;
  border-radius: 4px;
  margin-top: 0;
  padding: 20px 48px;
  font-family: Open Sans, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition: all .3s;
  display: inline-block;
}

.primary-button:hover {
  background-color: var(--white);
  color: var(--primary);
}

.primary-button.full-width {
  width: 100%;
}

.primary-button.uppercase {
  text-transform: uppercase;
}

.primary-button.uppercase:hover {
  opacity: 1;
}

.primary-button.sidebar-button {
  width: 100%;
}

.style-guide-div {
  margin-top: 50px;
}

.top-style-spacing-mobile {
  font-weight: 700;
  position: absolute;
  top: 5%;
  right: 0;
}

.middlr-style-spacing-mobile {
  font-weight: 700;
  position: absolute;
  top: 29%;
  right: 0;
}

.bottom-style-spacing-mobile {
  font-weight: 700;
  position: absolute;
  bottom: 7%;
  right: 0;
}

.grid-header {
  margin-top: 55px;
}

.link-wrapper {
  width: 50%;
  margin-top: 20px;
}

.navbar {
  background-color: var(--white);
  margin-left: 40px;
  margin-right: 40px;
  display: block;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
  box-shadow: 0 5px 30px rgba(0, 0, 0, .05);
}

.nav-container {
  align-items: center;
  min-width: 100%;
  height: 100px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 15px;
  display: flex;
}

.nav-menu {
  text-align: right;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  display: block;
}

.nav-dropdown {
  display: block;
}

.nav-dropdown-toggle {
  flex-direction: row-reverse;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 20px 12px;
  font-size: 16px;
  line-height: 20px;
  display: flex;
  position: relative;
}

.nav-dropdown-toggle.justify-left {
  display: none;
}

.nav-dropdown-icon {
  margin: 0 0 0 6px;
  font-size: 14px;
  display: block;
  position: static;
}

.nav-dropdown-list {
  background-color: var(--primary);
  border: 1px solid rgba(0, 0, 0, .18);
  width: 200px;
  padding: 15px 20px;
  display: none;
}

.nav-dropdown-list.w--open {
  padding-top: 20px;
  padding-bottom: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, .04);
}

.nav-dropdown-list.megamenu {
  width: 360px;
  display: none;
}

.nav-dropdown-link-wrapper {
  align-items: center;
  padding-left: 0;
  padding-right: 0;
  transition: padding .35s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.nav-dropdown-link-wrapper:hover {
  padding-left: 20px;
  padding-right: 10px;
}

.nav-dropdown-line {
  z-index: 9999;
  background-color: var(--text-dark);
  width: 16px;
  height: 2px;
  position: absolute;
  left: -20px;
}

.nav-dropdown-link {
  color: var(--white);
  text-transform: capitalize;
  width: 100%;
  padding: 12px 5px;
  font-family: Bitter, serif;
  font-weight: 400;
  transition-property: none;
  display: block;
}

.nav-dropdown-link.w--current {
  color: var(--accent);
}

.body {
  margin-left: 40px;
  margin-right: 40px;
  font-size: 20px;
}

.tablet-menu {
  display: block;
}

.nav-item-title {
  color: var(--primary);
  text-transform: capitalize;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Bitter, serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  display: block;
}

.style-guide-banner-section {
  background-color: var(--primary);
  justify-content: center;
  align-items: center;
  min-height: 520px;
  display: flex;
}

.logo-mobile {
  padding-left: 0;
}

.licensing-title-wrapper {
  border-bottom: 1px rgba(94, 94, 94, .5);
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.licensing-images-wrapper {
  border-top: 1px solid rgba(94, 94, 94, .5);
  width: 100%;
  padding-top: 40px;
}

.licensing-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  border-bottom: 1px rgba(94, 94, 94, .5);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  padding-bottom: 60px;
}

.licensing-grid.last-child {
  border-bottom-style: none;
  padding-bottom: 0;
}

.licensing-image {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 320px;
}

.licensing-title {
  width: 100%;
  padding-bottom: 30px;
}

.licensing-image-link {
  width: 100%;
  height: 100%;
}

.licensing-image-link:hover {
  opacity: 1;
}

.license-link {
  color: var(--primary);
  letter-spacing: normal;
  margin-right: 50px;
  font-weight: 700;
}

.license-link:hover {
  color: var(--accent);
}

.license-link.last-child {
  margin-right: 0;
}

.banner-title {
  color: var(--white);
  text-align: center;
}

.licensing-heading {
  margin-bottom: 20px;
}

.licensing-icon-link-wrapper {
  margin-right: 25px;
  font-size: 24px;
}

.icon-style-guide {
  color: var(--primary);
  font-family: "Fa brands 400", sans-serif;
  font-size: 22px;
}

.icon-style-guide.dribble {
  font-family: "Fa brands 400", sans-serif;
}

.licensing-fonts-wrapper {
  align-items: center;
  width: 100%;
  margin-top: 20px;
  display: flex;
}

.licensing-icon-link {
  margin-bottom: 20px;
}

.licensing-paragraph {
  width: 50%;
  margin-right: 40px;
}

.licensing-paragraph.last-item {
  margin-right: 0;
}

.licensing-font-title {
  color: rgba(94, 94, 94, .5);
  text-transform: uppercase;
  font-weight: 400;
}

.licensing-icons-wrapper {
  margin-top: 30px;
  margin-bottom: 20px;
}

.utility-page-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 100px 15px;
  display: flex;
}

.utility-page-wrap.password-page {
  padding-top: 0;
  padding-bottom: 0;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 280px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.password-image {
  width: 140px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.password-input {
  border-radius: 4px;
  min-width: 280px;
  height: auto;
  min-height: 48px;
  margin-bottom: 15px;
  padding: 18px 20px;
  font-size: 14px;
  line-height: 1em;
}

.password-input:focus {
  border: 1px solid var(--primary);
}

.password-input::placeholder {
  color: var(--dark-gray);
}

.password-title-wrapper {
  margin-bottom: 40px;
}

._404-paragraph {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
}

._404-logo-wrapper {
  justify-content: center;
  display: flex;
  position: absolute;
  top: 40px;
  bottom: auto;
  left: 0%;
  right: 0%;
}

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

._404-content-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 510px;
  display: flex;
}

.coming-soon-wrapper {
  flex-direction: column;
  align-items: flex-start;
  max-width: 690px;
  margin-left: 0;
  margin-right: 40px;
  display: flex;
}

.changelog-heading {
  margin-bottom: 20px;
}

.coming-soon-form {
  display: flex;
}

.coming-soon-input {
  border: 1px solid var(--gray);
  border-radius: 4px;
  min-width: 300px;
  height: auto;
  min-height: 50px;
  margin-bottom: 0;
  margin-right: -4px;
  padding: 20px 20px 20px 16px;
  font-size: 14px;
  line-height: 1em;
}

.coming-soon-input:focus {
  border: 1px solid var(--primary);
}

.coming-soon-input::placeholder {
  font-family: Open Sans, sans-serif;
  font-size: 16px;
}

.coming-soon-paragraph {
  margin-top: 20px;
  margin-bottom: 40px;
}

.coming-soon-page-wrap {
  text-align: left;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  padding-left: 15px;
  padding-right: 15px;
  display: none;
}

.coming-soon-heading {
  margin-top: 60px;
  font-size: 70px;
}

.blog-grid-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
}

.blog-grid-collection-list {
  column-count: 3;
  flex-wrap: wrap;
  align-items: flex-start;
  column-gap: 30px;
}

.blog-grid-image-link {
  min-width: 100%;
}

.blog-grid-image {
  object-fit: cover;
  min-width: 100%;
  min-height: 280px;
}

.blog-grid-item-date {
  margin-top: 0;
  margin-bottom: 15px;
}

.blog-grid-content-wrapper {
  background-color: var(--white);
  padding: 30px 30px 40px;
}

.blog-grid-item {
  margin-bottom: 30px;
  display: inline-block;
  box-shadow: 0 5px 20px rgba(13, 54, 159, .06);
}

.blog-grid-item-title {
  font-family: Bitter, serif;
  font-size: 24px;
  font-weight: 700;
}

.blog-grid-item-title:hover {
  color: var(--accent);
}

.blog-grid-item-description {
  margin-top: 15px;
  margin-bottom: 15px;
}

.blog-classic-wrapper {
  max-width: 980px;
  margin-bottom: -60px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.blog-classic-item {
  border-radius: 4px;
  margin-bottom: 60px;
  box-shadow: 0 0 40px rgba(13, 54, 159, .08);
}

.blog-classic-top-content {
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 50px 35px;
  display: flex;
}

.blog-classic-post-category {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: var(--white);
  border-radius: 4px;
  margin-bottom: 30px;
  padding: 5px 8px;
  font-weight: 600;
  transition: all .3s;
  display: inline-block;
}

.blog-classic-post-category:hover {
  color: var(--primary);
  background-color: rgba(0, 0, 0, 0);
}

.blog-classic-post-title {
  font-size: 26px;
}

.blog-classic-post-title:hover {
  color: var(--accent);
}

.blog-classic-post-image {
  object-fit: cover;
  width: 100%;
  max-height: 480px;
}

.blog-classic-post-image-wrapper {
  min-width: 100%;
}

.blog-classic-bottom-content {
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 50px;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
}

.blog-classic-post-description {
  margin-top: 35px;
  margin-bottom: 35px;
}

.blog-classic-post-date {
  background-color: var(--accent);
  color: var(--primary);
  border-radius: 3px;
  margin-top: -13px;
  padding: 4px 15px;
  font-size: 13px;
  font-weight: 600;
}

.nav-menu-wrapper {
  justify-content: space-between;
  align-items: center;
  width: 90%;
  padding-left: 10px;
  display: flex;
}

.blog-grid-post-wrapper {
  position: relative;
}

.blog-sidebar-item {
  border-radius: 4px;
  margin-bottom: 30px;
  display: inline-block;
  box-shadow: 0 0 20px rgba(0, 0, 0, .06);
}

.blog-sidebar-post-title {
  margin-bottom: 15px;
  font-size: 26px;
  display: block;
}

.blog-sidebar-post-title:hover {
  color: var(--accent);
}

.blog-sidebar-post-content {
  background-color: var(--white);
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-top: -15px;
  padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
}

.blog-sidebar-post-category {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: var(--white);
  border-radius: 4px;
  margin-bottom: 25px;
  padding: 5px 8px;
  transition: all .3s;
  display: inline-block;
}

.blog-sidebar-post-category:hover {
  background-color: var(--white);
  color: var(--primary);
}

.blog-sidebar-left {
  column-count: 2;
  column-gap: 30px;
}

.blog-sidebar-right {
  flex-direction: column;
  position: -webkit-sticky;
  position: sticky;
  top: 60px;
}

.blog-sidebar-wrapper {
  grid-column-gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.sidebar-recent-posts-wrapper {
  margin-top: 20px;
}

.sidebar-recent-post-item {
  margin-bottom: 20px;
  display: flex;
}

.sidebar-recent-post-image {
  object-fit: cover;
  border-radius: 4px;
  width: 80px;
  height: 80px;
  margin-right: 15px;
}

.sidebar-recent-post {
  align-items: center;
  display: flex;
}

.blog-recent-post-title {
  color: var(--text-dark);
  margin-top: 0;
  font-size: 16px;
}

.blog-recent-post-title:hover {
  color: var(--primary);
}

.div-block {
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.blog-recent-post-date {
  color: #969696;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.sidebar-recent-posts {
  background-color: var(--white);
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 20px 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, .06);
}

.sidebar-categories {
  background-color: var(--white);
  border-radius: 4px;
  padding: 20px 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, .06);
}

.sidebar-category-item {
  margin-bottom: 15px;
  margin-right: 15px;
  display: inline-block;
}

.sidebar-categories-wrapper {
  margin-top: 30px;
}

.blog-sidebar-post-image {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  width: 100%;
  height: 100%;
}

.blog-sidebar-post-image-link {
  width: 100%;
  height: 100%;
  min-height: 40px;
}

.sidebar-category {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: var(--white);
  border-radius: 4px;
  padding: 5px 8px;
  transition: all .3s;
  display: inline-block;
}

.sidebar-category:hover {
  background-color: var(--white);
  color: var(--primary);
}

.blog-template-wrapper {
  background-color: var(--white);
  border-radius: 4px;
  width: 100%;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 80px;
  box-shadow: 0 0 40px rgba(13, 54, 159, .08);
}

.blog-template-image {
  object-fit: cover;
  border-radius: 4px;
  width: 100%;
  max-height: 680px;
  margin-bottom: 20px;
}

.blog-template-date {
  margin-top: 30px;
  margin-bottom: 40px;
}

.blog-template-pagination {
  align-items: center;
  margin-top: 80px;
  display: flex;
}

.prev-post-arrow {
  color: #999;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 25px;
  font-family: "Fa solid 900", sans-serif;
}

.next-post-arrow {
  color: #999;
  margin-bottom: 0;
  margin-left: 20px;
  font-family: "Fa solid 900", sans-serif;
}

.blog-template-prev-button {
  flex: 1;
  padding-right: 80px;
  display: flex;
}

.blog-template-next-button {
  flex: 1;
  justify-content: flex-end;
  padding-left: 80px;
  display: flex;
}

.blog-template-pagination-link {
  align-items: center;
  width: auto;
  transition-property: none;
  display: flex;
}

.blog-template-next {
  text-align: right;
}

.footer {
  background-color: var(--primary);
  text-align: center;
  background-image: url('../images/Footer-bg.png');
  background-position: 104% 105%;
  background-repeat: no-repeat;
  background-size: auto 300px;
  background-attachment: scroll;
  align-items: flex-start;
  padding-top: 60px;
  padding-bottom: 60px;
  overflow: hidden;
}

.footer-rights-wrapper {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.footer-rights {
  color: rgba(255, 255, 255, .7);
  font-family: Lato, sans-serif;
  font-size: 14px;
  display: none;
}

.footer-copyright {
  color: rgba(255, 255, 255, .7);
  width: 100%;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
}

.footer-copyright-link {
  color: #fff;
  letter-spacing: .2px;
  margin-right: 5px;
  font-size: 14px;
  text-decoration: none;
  transition: all .2s;
}

.footer-copyright-link:hover {
  color: var(--primary);
}

.section-title-wrapper {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 740px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  font-size: 50px;
  display: flex;
}

.section-title-wrapper.home-gallery-slider {
  margin-bottom: 20px;
}

.section-title-wrapper.about-us-trending-courses {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  margin-left: 0;
  margin-right: 0;
}

.team-card-image {
  color: var(--primary);
  object-fit: cover;
  object-position: 50% 0%;
  min-width: 100%;
  height: 320px;
}

.team-card-image.center-image {
  object-position: 50% 50%;
}

.team-card-content-wrapper {
  background-color: var(--white);
  border-radius: 4px 0 4px 4px;
  margin-top: -100px;
  margin-left: 30px;
  margin-right: -1px;
  padding: 35px 25px 25px;
  position: relative;
  box-shadow: 0 0 30px rgba(13, 54, 159, .1);
}

.team-grid-large {
  grid-column-gap: 30px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.process-item-wrapper {
  align-items: center;
  display: none;
}

.process-image-wrapper, .process-content {
  width: 45%;
}

.process-content.reverse {
  width: 80%;
  padding-right: 70px;
}

.process-number-wrapper {
  flex: 1;
  max-width: 20%;
  padding-left: 70px;
  padding-right: 70px;
}

.process-number-wrapper.reverse {
  flex: none;
  min-width: 20%;
  max-width: none;
  padding-left: 0;
}

.process-number {
  color: var(--primary);
  font-size: 66px;
  line-height: 1;
}

.process-paragraph {
  margin-top: 20px;
  margin-bottom: 40px;
}

.style-guide-buttons-wrapper {
  flex-wrap: wrap;
  align-items: center;
  margin-top: 50px;
  display: flex;
}

.style-guide-button-wrapper {
  width: 47%;
  margin-bottom: 30px;
  margin-right: 40px;
}

.style-guide-button-wrapper.last-child {
  margin-right: 0;
}

.text-button-icon {
  margin-left: 10px;
  font-family: "Fa solid 900", sans-serif;
}

.free-trial-wrapper {
  text-align: center;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.free-trial-title {
  margin-top: 0;
  margin-bottom: 50px;
}

.process-image {
  border-radius: 4px;
  min-height: 320px;
}

.process-content-wrapper {
  align-items: center;
  width: 55%;
  display: flex;
}

.values-wrapper {
  display: flex;
}

.values-image-wrapper {
  width: 50%;
}

.values-content-wrapper {
  width: 50%;
  padding-left: 100px;
}

.values-counter-wrapper {
  grid-column-gap: 30px;
  border-top: 1px solid var(--gray);
  margin-top: 20px;
  padding-top: 30px;
  display: flex;
}

.values-counter-item {
  background-color: var(--primary);
  border-radius: 4px;
  width: 50%;
  padding: 20px;
}

.values-counter-number {
  color: var(--accent);
  margin-bottom: 15px;
}

.career-list-item-wrapper {
  grid-row-gap: 15px;
  background-color: var(--primary-light);
  border-radius: 4px;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.career-position {
  font-size: 18px;
  line-height: 24px;
}

.career-location, .career-type {
  font-size: 16px;
  line-height: 24px;
}

.career-button-wrapper {
  text-align: right;
  width: 25%;
  padding-left: 35px;
  padding-right: 35px;
}

.career-title-mobile {
  margin-bottom: 5px;
  font-family: Lato, sans-serif;
  font-size: 15px;
  font-weight: 900;
  display: none;
}

.career-position-wrapper {
  width: 30%;
  padding-left: 35px;
  padding-right: 35px;
}

.career-location-wrapper {
  width: 25%;
  min-width: 140px;
  padding-left: 35px;
  padding-right: 35px;
}

.career-type-wrapper {
  width: 20%;
  min-width: 140px;
  padding-left: 35px;
  padding-right: 35px;
}

.paragraph-large {
  color: var(--text-dark);
  margin-top: 10px;
  font-size: 20px;
  line-height: 1.5em;
}

.values-image {
  object-fit: cover;
  border-radius: 4px;
  width: 100%;
  height: 100%;
}

.career-customer-item {
  opacity: .5;
  transition: all .3s;
}

.career-customer-item:hover {
  opacity: 1;
}

.career-customers-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  align-content: center;
  justify-content: center;
  align-items: center;
  justify-items: center;
  width: 100%;
  min-height: 100px;
}

.career-customer-image {
  opacity: .5;
  transition: all .3s;
}

.career-customer-image:hover {
  opacity: 1;
}

.banner-title-wrapper {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 760px;
  display: flex;
}

.text-white {
  color: var(--white);
}

.services-wrapper {
  grid-column-gap: 30px;
  justify-content: center;
  margin-top: -90px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.services-item {
  background-color: var(--white);
  border-radius: 4px;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  display: none;
  box-shadow: 0 0 30px rgba(13, 54, 159, .1);
}

.services-item-description {
  margin-bottom: 20px;
}

.section-title {
  font-size: 50px;
}

.play-button {
  z-index: 5;
  background-color: var(--white);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  position: absolute;
}

.accordion-toggle {
  white-space: normal;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 10px 0;
  display: flex;
}

.accordion-list {
  background-color: rgba(0, 0, 0, 0);
  display: block;
  position: static;
  overflow: hidden;
}

.accordion-list.w--open {
  background-color: rgba(0, 0, 0, 0);
  padding-top: 0;
  padding-bottom: 20px;
  display: block;
}

.accordion-wrapper {
  width: 100%;
  display: flex;
}

.accordion-item {
  background-color: var(--white);
  border-radius: 12px;
  width: 100%;
  margin-bottom: 15px;
  padding: 20px 30px;
  position: static;
  box-shadow: 0 0 20px rgba(0, 0, 0, .06);
}

.accordion-shevron-icon {
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 20px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 17px;
  line-height: 24px;
}

.accordion-wrap {
  width: 50%;
  margin-right: 15px;
}

.accordion-wrap.last-child {
  margin-right: 0;
}

.accordion-list-content {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  flex-direction: column;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 2em;
  display: block;
}

.flex-vertical-center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.testimonials-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  align-items: stretch;
  width: 100%;
  margin-top: 10px;
  display: flex;
}

.pricing-3-plans-wrapper {
  align-items: center;
  width: 100%;
  display: flex;
}

.pricing-3-plan-item {
  background-color: var(--light-gray-background);
  border-radius: 4px;
  width: 33.33%;
}

.pricing-3-plan-item.center-item {
  z-index: 10;
  background-color: var(--white);
  width: 33.33%;
  box-shadow: 0 0 20px rgba(0, 0, 0, .05);
}

.pricing-3-plan-item.left-item {
  margin-right: -5px;
  padding-right: 30px;
}

.pricing-3-plan-item.right-item {
  margin-left: -5px;
  padding-left: 30px;
}

.pricing-plan-title-wrapper {
  text-align: center;
  border-radius: 4px;
  padding-top: 60px;
  padding-bottom: 40px;
}

.pricing-plan-content-wrapper {
  border-radius: 4px;
  flex-direction: column;
  align-items: center;
  padding-bottom: 60px;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.pricing-plan-list-item {
  border-bottom: 1px solid #d7e5ee;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  padding-top: 18px;
  padding-bottom: 18px;
  font-size: 17px;
  line-height: 26px;
  list-style-type: none;
  display: flex;
}

.pricing-plan-list-item.last-child {
  border-bottom-style: none;
  margin-bottom: 40px;
}

.light-background {
  background-color: var(--light-gray);
}

.pricing-features-icon {
  background-color: var(--accent);
  color: var(--primary);
  text-align: center;
  border-radius: 4px;
  min-width: 50px;
  margin-bottom: 10px;
  margin-right: 20px;
  padding: 15px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 18px;
}

.coming-soon-image {
  max-width: 480px;
}

.link-with-icon {
  letter-spacing: .6px;
  text-transform: uppercase;
  font-weight: 700;
  transition: all .3s;
}

.link-with-icon:hover {
  color: var(--accent);
}

.job-position-wrapper {
  align-items: flex-start;
  display: flex;
  position: relative;
}

.job-position-content-wrapper {
  width: 67%;
  padding-right: 70px;
}

.job-position-sidebar-wrapper {
  background-color: var(--white);
  border-radius: 4px;
  width: 33%;
  padding: 30px 40px 40px;
  position: -webkit-sticky;
  position: sticky;
  top: 40px;
  box-shadow: 0 0 30px rgba(13, 54, 159, .06);
}

.job-position-sidebar-wrap {
  align-items: center;
  display: flex;
}

.job-position-sidebar-wrap.last-child {
  margin-bottom: 30px;
}

.job-position-icon {
  color: var(--primary);
  margin-right: 10px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 18px;
}

.contacts-location-wrap {
  text-align: left;
  max-width: 300px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 4px;
  display: flex;
}

.contacts-icon {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 15px;
  font-family: "Fa solid 900", sans-serif;
  line-height: 1.4em;
}

.paragraph {
  color: var(--dark-gray);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-weight: 400;
}

.paragraph.text-white {
  color: var(--white);
}

.hidden {
  display: none;
}

.contacts-textarea {
  border: 1px solid var(--white);
  border-radius: 4px;
  min-height: 200px;
  margin-bottom: 30px;
  padding: 16px 18px;
  font-family: Lato, sans-serif;
  font-size: 16px;
}

.contacts-textarea:focus {
  border: 1px solid var(--primary);
}

.contacts-textarea::placeholder {
  color: var(--dark-gray);
  font-family: Lato, sans-serif;
  font-size: 16px;
}

.contacts-input {
  border: 1px solid var(--white);
  background-color: var(--white);
  border-radius: 4px;
  height: auto;
  padding: 16px 18px;
  font-family: Lato, sans-serif;
  font-size: 16px;
  transition: all .2s;
}

.contacts-input:focus {
  border: 1px solid var(--primary);
}

.contacts-input::placeholder {
  color: var(--dark-gray);
  font-family: Lato, sans-serif;
  font-size: 16px;
}

.contacts-title-mobile {
  text-align: center;
  margin-bottom: 60px;
  display: none;
}

.contacts-location-wrapper {
  margin-top: 30px;
}

.contacts-location-wrapper.footer {
  background-image: none;
  margin-top: 10px;
  padding-top: 0;
  padding-bottom: 0;
}

.contacts-form-wrapper {
  background-color: var(--primary-light);
  border-radius: 4px;
  width: 50%;
  padding: 40px;
}

.contacts-content-wrapper {
  width: 50%;
  padding-left: 40px;
}

.contacts-wrapper {
  display: flex;
}

.footer-link {
  color: var(--white);
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 600;
  transition: all .3s;
  display: block;
}

.footer-link:hover {
  color: var(--accent);
}

.footer-wrapper {
  grid-row-gap: 60px;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 100%;
  margin-bottom: 70px;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.white-text {
  color: #fff;
}

.footer-brand-wrapper {
  flex-direction: column;
  align-items: flex-start;
  width: 46%;
  display: flex;
}

.footer-brand {
  color: #fff;
  margin-bottom: 10px;
}

.footer-brand.w--current {
  color: #fff;
  padding-left: 0;
  font-family: Poppins, sans-serif;
}

.footer-links-block-wrapper {
  text-align: left;
  flex-flow: wrap;
  align-content: flex-start;
  align-items: flex-start;
  width: 46%;
  display: inline-flex;
}

.search-shop-con {
  align-items: center;
}

.navbar-search-icon {
  z-index: 1;
  color: var(--primary);
  cursor: pointer;
  font-family: "Fa solid 900", sans-serif;
  line-height: 52px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 20px;
}

.search-result-item {
  margin-bottom: 30px;
}

.search-link {
  font-size: 18px;
  transition: all .3s;
}

.search-link:hover {
  opacity: .7;
}

.search-input {
  border-radius: 4px;
  height: auto;
  margin-top: 20px;
  padding: 16px 22px;
  font-family: Lato, sans-serif;
  font-size: 16px;
}

.search-input:focus {
  border: 1px solid var(--primary);
}

.search-result-wrapper {
  margin-top: 40px;
}

.customer-wrapper {
  border-right: 1px solid var(--dark-gray-50);
  border-bottom: 1px solid var(--dark-gray-50);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 280px;
  display: flex;
}

.list-item-circle {
  background-color: var(--primary);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  margin-right: 12px;
  display: block;
  position: relative;
  top: 14px;
  left: -18px;
}

.accordion-wrapper-one-column {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.dark-gray-style-guide {
  background-color: var(--dark-gray);
  width: 75px;
  height: 75px;
}

.headings-container {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.button-wrapper {
  margin-top: 20px;
}

.service-list-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 1445px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  display: grid;
}

.service-list-item-image {
  z-index: 1;
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
  min-height: 470px;
  display: none;
}

.service-list-item {
  position: relative;
}

.service-list-item-content-wrapper {
  background-color: rgba(14, 14, 14, .6);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 30px;
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.service-list-item-title {
  color: var(--white);
  font-family: Bitter, serif;
  font-size: 26px;
}

.service-list-item-title:hover {
  color: var(--accent);
}

.service-list-item-content {
  text-align: center;
}

.service-list-item-description {
  color: var(--white);
  margin-top: 30px;
  margin-bottom: 40px;
}

.service-list-item-title-wrapper {
  text-align: center;
}

.overflow-hidden {
  overflow: hidden;
}

.service-list-process-icon {
  background-color: var(--white);
  color: var(--primary);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin-bottom: 30px;
  font-family: "Fa 400", sans-serif;
  font-size: 28px;
  line-height: 28px;
  display: flex;
  box-shadow: 0 15px 30px rgba(15, 92, 250, .1);
}

.service-list-process-wrap {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 25%;
  padding: 20px;
  display: flex;
}

.service-list-process-wrapper {
  display: flex;
}

.service-list-section-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  align-items: center;
  display: flex;
}

.service-list-section-wrap {
  width: 50%;
}

.service-list-section-wrap.first-child {
  padding-left: 0;
}

.service-list {
  margin-top: 40px;
  margin-bottom: 40px;
}

.service-list-2-bottom-section {
  flex-wrap: wrap;
  display: flex;
}

.service-list-2-bottom-left-block, .service-list-2-bottom-center-block {
  width: 50%;
  height: 420px;
}

.service-list-2-bottom-contacts {
  background-color: var(--primary-light);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 380px;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.service-list-2-bottom-image {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
}

.style-guide-content-wrapper {
  display: flex;
}

.about-1-video {
  background-image: url('../images/colegas-trabajando-juntos-alto-angulo.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  min-height: 520px;
  margin-left: auto;
  margin-right: auto;
  display: none;
  position: relative;
}

.about-1-video-wrapper {
  display: block;
}

.about-1-features-wrapper {
  width: 100%;
  margin-top: 60px;
  display: none;
}

.about-features-wrap {
  width: 33.33%;
  margin-right: 30px;
  display: flex;
}

.about-features-wrap.last-child {
  margin-right: 0;
}

.about-features-icon {
  color: var(--primary);
  padding-top: 20px;
  padding-right: 20px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 22px;
}

.about-1-counter-wrapper {
  display: flex;
}

.about-1-counter-number {
  color: var(--primary);
  margin-top: 40px;
  margin-bottom: 20px;
  font-family: Bitter, serif;
  font-size: 42px;
  line-height: 1;
}

.about-1-counter-icon {
  color: var(--dark-gray-50);
  font-family: "Fa 400", sans-serif;
  font-size: 32px;
  line-height: 1;
}

.about-1-counter-wrap {
  text-align: center;
  width: 33.33%;
  padding-left: 40px;
  padding-right: 40px;
}

.about-1-counter-wrap.last-child {
  margin-right: 0;
}

.about-us-clients-grid {
  grid-column-gap: 40px;
  grid-row-gap: 80px;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  justify-items: center;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
}

.about-1-customer-image {
  opacity: .5;
  transition: all .3s;
}

.about-1-customer-image:hover {
  opacity: 1;
}

.testimonials-slider {
  background-color: rgba(0, 0, 0, 0);
  width: 100%;
  height: auto;
  padding-bottom: 40px;
  position: relative;
}

.testimonials-slide-item {
  flex-direction: column;
  align-items: center;
  padding: 30px 30px 40px;
  display: flex;
}

.testimonials-slider-image {
  object-fit: cover;
  object-position: 50% 0%;
  border-radius: 50%;
  width: 72px;
  height: 72px;
  margin-right: 15px;
  display: block;
}

.testimonials-slider-profile-wraper {
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.testimonials-slider-arrow-icon {
  justify-content: center;
  align-items: center;
  font-family: "Fa solid 900", sans-serif;
}

.testimonials-slider-arrow-icon:hover {
  color: var(--primary);
}

.testimonials-slider-mask {
  width: 80%;
  margin-top: -60px;
  margin-left: auto;
  margin-right: auto;
}

.team-slider {
  background-color: rgba(0, 0, 0, 0);
  max-width: 1400px;
  height: auto;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 15px;
  position: relative;
}

.team-slide-item {
  flex-direction: row;
  align-items: center;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.team-slider-image {
  object-fit: cover;
  object-position: 50% 0%;
  border-radius: 4px;
  width: 40%;
  height: 400px;
  display: block;
}

.team-slider-image.image-center {
  object-position: 50% 50%;
}

.team-slide-item-desc {
  margin-top: 20px;
  margin-bottom: 40px;
}

.team-slider-social-icon {
  color: var(--primary);
  margin-right: 30px;
  font-family: "Fa brands 400", sans-serif;
  font-size: 18px;
  transition: all .2s;
}

.team-slider-social-icon:hover {
  color: var(--accent);
}

.team-slider-social-icon.last-child {
  margin-right: 0;
}

.slider-nav {
  opacity: .5;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 30px;
  font-size: 14px;
  display: flex;
}

.slider-nav-active-wrapper {
  justify-content: flex-start;
  align-items: center;
  width: 120px;
  height: 30px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 3px;
  padding-left: 5px;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.slider-nav-active-item {
  z-index: 10;
  background-color: var(--primary);
  border-radius: 50%;
  width: 14px;
  height: 14px;
  position: relative;
}

.about-list-wrap {
  background-color: var(--white);
  border-radius: 4px;
  max-width: 460px;
  margin-top: 60px;
  padding: 40px 60px 80px;
}

.about-1-list-wrapper {
  justify-content: flex-start;
  width: 100%;
  padding-left: 60px;
  display: none;
}

.about-photos-slider {
  background-color: rgba(0, 0, 0, 0);
  height: auto;
  position: relative;
}

.about-photos-slider.home-gallery {
  width: 80%;
}

.about-2-slider-photo {
  object-fit: cover;
  border-radius: 4px;
  height: 460px;
  margin: 40px auto 80px;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .2);
}

.slide-3 {
  max-height: 580px;
}

.progress-bar-gray-line {
  background-color: var(--dark-gray-50);
  width: 100%;
  height: 4px;
}

.progress-bar-90 {
  background-color: var(--primary);
  width: 90%;
  height: 4px;
  margin-top: -4px;
  position: relative;
}

.progress-bar-wrapper {
  width: 100%;
}

.progress-bar-80 {
  background-color: var(--primary);
  width: 80%;
  height: 4px;
  margin-top: -4px;
  position: relative;
}

.about-us-features-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  display: flex;
}

.about-us-features-wrap {
  text-align: center;
  line-height: 15px;
  display: flex;
}

.about-us-feature-number {
  color: var(--primary);
  margin-top: 15px;
  margin-right: 15px;
  font-family: Bitter, serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.about-card-wrapper {
  display: flex;
}

.about-center-card {
  background-color: var(--white);
  text-align: center;
  width: 33.33%;
  padding: 80px 40px;
  position: relative;
  box-shadow: 0 10px 50px rgba(53, 82, 99, .09);
}

.about-card-description {
  margin-top: 20px;
  margin-bottom: 30px;
}

.about-card-number {
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: Bitter, serif;
  font-size: 60px;
  line-height: 1;
}

.about-card-icon {
  width: 86px;
  margin-bottom: 20px;
}

.about-card {
  background-color: var(--white);
  text-align: center;
  width: 33.33%;
  margin-top: 25px;
  margin-bottom: 25px;
  padding: 60px 40px;
  box-shadow: 0 10px 50px rgba(53, 82, 99, .09);
}

.about-content-wrap {
  width: 50%;
}

.about-content-wrapper {
  grid-column-gap: 40px;
  background-image: url('../images/fondo-onda-neon-que-fluye-abstracto.jpg');
  background-position: 0 0;
  background-size: cover;
  margin-bottom: 80px;
  display: flex;
}

.about-3-card-with-image {
  background-color: var(--white);
  width: 33.33%;
  margin-top: 25px;
  margin-bottom: 25px;
  box-shadow: 0 10px 50px rgba(53, 82, 99, .09);
}

.about-3-card-content {
  text-align: center;
  padding: 30px 40px 40px;
}

.about-3-center-card-with-image {
  background-color: var(--white);
  width: 33.33%;
  position: relative;
  box-shadow: 0 10px 50px rgba(53, 82, 99, .09);
}

.about-3-card-image {
  object-fit: cover;
  width: 100%;
  height: 280px;
}

.about-3-center-card-image {
  object-fit: cover;
  width: 100%;
  height: 340px;
}

.about-3-image {
  object-fit: cover;
  width: 25%;
  height: 420px;
}

.about-3-progress-bar-wrapper {
  grid-column-gap: 60px;
  width: 100%;
  display: flex;
}

.about-3-progress-bar-content {
  width: 50%;
}

.about-3-progress-bar {
  grid-row-gap: 30px;
  flex-direction: column;
  width: 50%;
  display: flex;
}

.about-3-tab-link {
  color: var(--white);
  background-color: rgba(0, 0, 0, 0);
  flex-direction: column;
  align-items: center;
  width: 33.33%;
  margin-bottom: -12px;
  padding-top: 20px;
  padding-bottom: 4px;
  font-size: 19px;
  line-height: 32px;
  transition: all .3s;
  display: flex;
  position: relative;
}

.about-3-tab-link.w--current {
  color: var(--white);
  background-color: rgba(0, 0, 0, 0);
  padding-top: 20px;
  padding-bottom: 4px;
  font-size: 24px;
}

.about-3-tabs-menu {
  border-bottom: 2px solid rgba(255, 255, 255, .5);
  margin-left: 20px;
  margin-right: 20px;
  padding-bottom: 0;
  display: flex;
}

.about-3-tab-circle {
  border: 3px solid var(--white);
  background-color: var(--white);
  border-radius: 50%;
  width: 14px;
  height: 14px;
  margin-top: 20px;
}

.about-3-tabs-content {
  margin-top: 60px;
  display: flex;
}

.about-3-tab-image-wrap {
  width: 40%;
}

.about-3-tab-content-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 60%;
  display: flex;
}

.about-3-tab-pane-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 0px;
  align-items: stretch;
  display: flex;
}

.about-3-tab-image {
  object-fit: cover;
  width: 100%;
  height: 320px;
}

.about-3-progress-bar-active-element {
  background-color: var(--primary);
  border-radius: 50%;
  width: 12px;
  height: 12px;
  position: absolute;
  top: auto;
  bottom: -4px;
  left: auto;
  right: 0%;
}

.about-3-progress-bar-number {
  color: var(--text-dark);
  font-family: Lato, sans-serif;
  font-size: 18px;
  font-weight: 700;
  position: absolute;
  bottom: 20px;
}

.about-3-form-wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}

.about-3-form {
  align-items: center;
  margin-top: 15px;
  display: flex;
}

.about-3-form-text-field {
  color: var(--text-dark);
  border: 1px #000;
  border-radius: 4px;
  width: 360px;
  height: auto;
  margin-bottom: 0;
  margin-right: -4px;
  padding: 17px 20px 16px 16px;
  font-size: 16px;
}

.about-3-form-text-field:focus {
  border-style: none;
}

.about-3-form-text-field::placeholder {
  font-size: 15px;
}

.team-slider-content {
  width: 60%;
  margin-left: 40px;
}

.team-slider-mask {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}

.team-slider-background {
  background-color: var(--primary);
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  width: 30%;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.team-slider-left-arrow {
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
  top: 20px;
  bottom: auto;
  left: 200px;
  right: auto;
}

.team-slider-right-arrow {
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
  top: 20px;
  bottom: auto;
  left: 250px;
  right: auto;
}

.team-slider-arrow-icon {
  color: var(--white);
  font-family: "Fa solid 900", sans-serif;
  font-size: 22px;
  line-height: 1;
}

.testimonials-quote-icon {
  color: var(--primary);
  margin-bottom: 40px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 50px;
  line-height: 1;
}

.testimonials-slider-background {
  color: rgba(13, 54, 159, .05);
  text-align: center;
  letter-spacing: 6px;
  font-family: Lato, sans-serif;
  font-size: 100px;
  font-weight: 900;
  line-height: 1;
}

.portfolio-grid-collection-item {
  position: relative;
}

.nav-menu-shadow-overlay {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.portfolio-masonry-image-wrapper {
  position: relative;
}

.progress-bar-91 {
  background-color: var(--primary);
  width: 91%;
  height: 4px;
  margin-top: -4px;
  position: relative;
}

.tabs-slider {
  background-color: rgba(0, 0, 0, 0);
  width: 100%;
  height: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.tabs-slider-mask {
  position: relative;
}

.tabs-slider-arrow-icon {
  font-family: "Fa solid 900", sans-serif;
  font-size: 16px;
}

.tabs-slider-left-arrow {
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
  top: 54px;
  bottom: auto;
  left: 0%;
  right: auto;
}

.tabs-slider-right-arrow {
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
  top: 54px;
  bottom: auto;
  left: auto;
  right: 0%;
}

.about-3-progress-bar-slide-1, .about-3-progress-bar-slide-2, .about-3-progress-bar-slide-3 {
  background-color: var(--white);
  height: 2px;
  margin-left: 20px;
  margin-right: 20px;
  position: absolute;
  top: 78px;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.megamenu-dropdown-wrapper {
  justify-content: center;
  display: flex;
}

.megamenu-dropdown-wrap {
  width: 50%;
}

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

.play-button-icon {
  z-index: 7;
  margin-top: 2px;
  margin-left: 4px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 20px;
  position: relative;
}

.play-button-hover {
  z-index: 10;
  border: 3px solid var(--white);
  border-radius: 50%;
  width: 94px;
  height: 94px;
  transition: all .3s;
  position: absolute;
  transform: scale(.85);
}

.play-button-hover:hover {
  transform: scale(1);
}

.sidebar-search {
  background-color: var(--white);
  padding: 20px 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, .06);
}

.sidebar-search-wrapper {
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.sidebar-search-input {
  border: 1px solid var(--dark-gray-50);
  color: var(--text-dark);
  border-radius: 4px;
  height: auto;
  margin-bottom: 15px;
  padding: 17px 22px 18px;
  font-size: 14px;
  line-height: 1;
}

.sidebar-search-input:focus {
  border-color: var(--primary);
}

.sidebar-search-input::placeholder {
  color: var(--dark-gray);
}

.blog-sidebar-right-wrapper {
  width: 36%;
  position: relative;
}

.blog-sidebar-left-wrapper {
  width: 64%;
}

.link-icon {
  margin-right: 10px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.secondary-button {
  border: 1px solid var(--accent);
  background-color: var(--accent);
  color: var(--primary);
  text-align: center;
  letter-spacing: .5px;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 20px 48px;
  font-family: Open Sans, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition: all .3s;
  display: none;
}

.secondary-button:hover {
  background-color: var(--white);
  color: var(--accent);
}

.secondary-button.form-button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.nav-dropdown-underline {
  background-color: var(--accent);
  width: auto;
  height: 2px;
  position: absolute;
  top: auto;
  bottom: 25px;
  left: 12px;
  right: 12px;
}

.nav-search-input {
  border: 1px solid var(--light-gray);
  background-color: var(--light-gray-background);
  border-radius: 4px;
  height: 52px;
  margin-bottom: 0;
  padding: 15px 48px 15px 20px;
}

.nav-search-input:active, .nav-search-input:focus {
  border-color: var(--primary);
}

.nav-search-input::placeholder {
  color: var(--dark-gray);
  font-size: 14px;
}

.nav-search-button {
  z-index: 5;
  background-color: rgba(0, 0, 0, 0);
  width: 52px;
  height: 52px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.search {
  margin-bottom: 0;
  position: relative;
}

.nav-social-icons-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 28%;
  display: flex;
}

.nav-social-icon {
  font-family: "Fa brands 400", sans-serif;
  font-size: 16px;
  line-height: 1;
}

.nav-social-icon-link {
  border: 1px solid var(--gray);
  color: var(--primary);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  display: flex;
}

.nav-social-icon-link:hover {
  background-color: var(--accent);
}

.nav-search-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  flex: 1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-items: center;
  width: 10%;
  display: none;
}

.nav-top-container {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  background-color: var(--primary);
  align-items: center;
  height: 20px;
  padding-left: 15px;
  padding-right: 15px;
  display: none;
}

.paragraph-small {
  font-size: 14px;
}

.paragraph-small.text-white.full-width-mobile {
  display: none;
}

.flex-horizontal-center {
  justify-content: center;
  align-items: center;
  display: block;
}

.nav-icon {
  margin-right: 10px;
  font-family: "Fa solid 900", sans-serif;
}

.nav-wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.nav-top-container-link {
  color: var(--white);
  font-weight: 400;
  display: none;
}

.nav-top-container-link:hover {
  color: var(--accent);
}

.banner-section {
  padding-top: 140px;
}

.banner-section.home-banner {
  height: 140vh;
  display: none;
}

.banner-section.style-guide-banner-section {
  display: none;
}

.banner-section.about-us {
  background-color: var(--primary);
  padding-top: 200px;
  padding-bottom: 60px;
  display: none;
  overflow: hidden;
}

.banner-section.courses-banner {
  background-color: var(--primary);
  padding-top: 100px;
  padding-bottom: 60px;
  display: none;
}

.banner-section.teachers {
  background-color: var(--primary);
  text-align: center;
  padding-top: 100px;
  padding-bottom: 60px;
  display: none;
}

.banner-section.section-with-blue-bg {
  background-image: url('../images/manos-alto-angulo-apiladas-amigos.jpg');
  background-position: 50%;
  background-size: cover;
  max-width: 100%;
  height: 400px;
  margin-top: 100px;
  padding-bottom: 90px;
}

.home-banner-slider {
  background-color: rgba(0, 0, 0, 0);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.home-banner-title-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 700px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.home-banner-slide-1 {
  opacity: 1;
  background-image: url('../images/estudiantes-sonrientes-tiro-completo-biblioteca.jpg');
  background-position: 50% 40%;
  background-size: auto;
  margin-bottom: 0;
}

.home-banner-mask {
  width: 100%;
}

.slider-arrow {
  background-color: var(--white);
  color: var(--primary);
  border-radius: 4px;
  width: 50px;
  height: 50px;
  font-size: 20px;
  transition: all .3s;
  box-shadow: 0 0 30px rgba(13, 54, 159, .1);
}

.slider-arrow:hover {
  background-color: var(--primary);
  color: var(--white);
}

.slider-arrow.home-banner-left {
  left: 5%;
}

.slider-arrow.home-banner-right {
  padding-top: 20px;
  right: 5%;
}

.slider-arrow.home-gallery-left {
  top: 0%;
  bottom: 0%;
  left: 30px;
  right: auto;
}

.slider-arrow.home-gallery-right {
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 30px;
}

.slider-arrow.about-us-left-arrow {
  left: 15px;
}

.slider-arrow.about-us-right-arrow {
  right: 15px;
}

.slider-arrow.about-us {
  justify-content: center;
  align-items: center;
  display: flex;
}

.home-banner-title {
  color: var(--accent);
  max-width: 580px;
  margin-top: 20px;
  margin-bottom: 60px;
  font-family: Bitter, serif;
  font-size: 65px;
  font-weight: 700;
  line-height: 1.2em;
  display: block;
}

.home-banner-slide-2 {
  background-image: linear-gradient(to right, rgba(228, 228, 228, .9) 40%, rgba(228, 228, 228, .2) 65%), url('../images/Home-slide-6.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.home-banner-slide-3 {
  background-image: linear-gradient(to right, rgba(228, 228, 228, .9) 40%, rgba(228, 228, 228, .2) 65%), url('../images/Home-slide-4.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.home-banner-subtitle {
  letter-spacing: 4px;
  text-transform: uppercase;
  display: none;
}

.nav-logo {
  padding-left: 0;
}

.home-form-section {
  margin-top: -120px;
  display: none;
  overflow: hidden;
}

.home-form-left-block {
  background-color: var(--primary);
  width: 35%;
  min-height: 400px;
  padding-top: 100px;
  padding-bottom: 60px;
  padding-left: 20px;
}

.home-form-right-block {
  background-image: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url('../images/manos-alto-angulo-apiladas-amigos.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: center;
  width: 65%;
  padding-left: 80px;
  padding-right: 80px;
  display: flex;
}

.home-form-number {
  color: var(--accent);
  font-size: 50px;
  font-weight: 600;
  line-height: 1;
}

.home-form-number-desc {
  color: var(--white);
  letter-spacing: .3px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
}

.home-form {
  width: 100%;
  margin-bottom: 0;
  display: flex;
  box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.nav-logo-mobile {
  display: none;
}

.home-form-input {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  height: 58px;
  margin-bottom: 0;
  padding: 16px 20px;
}

.home-form-input:focus {
  border: 1px solid var(--accent);
}

.home-form-input::placeholder {
  color: var(--dark-gray);
  font-size: 16px;
}

.home-form-block {
  max-width: 720px;
  margin-top: 30px;
  margin-bottom: 0;
}

.home-features-grid {
  grid-column-gap: 30px;
  grid-row-gap: 80px;
  align-content: center;
  justify-content: center;
  align-items: center;
  justify-items: center;
  height: 100%;
}

.home-form-icon {
  z-index: -1;
  position: absolute;
  top: -40px;
  bottom: auto;
  left: -30px;
  right: auto;
}

.home-features-item {
  z-index: 0;
  position: relative;
}

.accent-text-color {
  color: var(--accent);
}

.accent-text-color.about-us-3 {
  display: block;
}

.section-title-underline {
  background-color: var(--gray);
  border-radius: 4px;
  width: 60px;
  height: 3px;
  margin-top: 20px;
}

.section-title-underline.primary-bg {
  background-color: var(--primary);
}

.home-welcome-block-wrapper {
  grid-column-gap: 80px;
  display: flex;
}

.home-welcome-block-wrap {
  text-align: center;
  width: 33.33%;
  padding-left: 30px;
  padding-right: 30px;
}

.home-welcome-block-desc {
  margin-top: 20px;
  margin-bottom: 30px;
}

.home-welcome-block-image {
  margin-bottom: 20px;
}

.home-team-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 60px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 60px;
  display: grid;
}

.home-team-wrap {
  background-color: var(--white);
  border-radius: 4px;
  margin-top: 40px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, .08);
}

.home-team-image-wrapper {
  margin-bottom: -10px;
  display: flex;
}

.home-team-member-position {
  color: var(--accent);
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}

.home-team-content-wrapper {
  flex-direction: column;
  justify-content: center;
  width: 50%;
  padding: 30px 30px 40px;
  display: flex;
}

.home-team-image {
  object-fit: cover;
  object-position: 50% 0%;
  border-radius: 4px;
  width: 50%;
  height: 340px;
  position: relative;
  top: -40px;
}

.team-social-link {
  font-family: "Fa brands 400", sans-serif;
  font-size: 18px;
}

.team-social-link:hover {
  color: var(--accent);
}

.home-team-social-links-wrapper {
  grid-column-gap: 30px;
  padding-bottom: 30px;
  padding-left: 60px;
  display: flex;
}

.pricing-image {
  margin-bottom: 30px;
}

.pricing-description {
  color: var(--primary);
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
}

.home-pricing-background {
  z-index: -1;
  background-color: var(--accent);
  height: 400px;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.ph-40 {
  padding-left: 40px;
  padding-right: 40px;
}

.top-footer-image {
  object-fit: cover;
  width: 33.33%;
  height: 320px;
}

.top-footer-image.large-image {
  width: 50%;
}

.top-footer-image-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.top-footer-instagram-label {
  z-index: 10;
  background-color: var(--white);
  align-items: center;
  padding: 6px 20px;
  display: flex;
  position: absolute;
}

.top-footer-instagram-link {
  margin-left: 5px;
  font-weight: 700;
}

.footer-social-links-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 10px;
  align-items: center;
  margin-top: 30px;
  display: flex;
}

.footer-social-link {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  display: flex;
}

.footer-social-link:hover {
  border-color: var(--accent);
  background-color: var(--accent);
  color: var(--primary);
}

.footer-links-wrapper {
  flex-direction: column;
  align-items: flex-start;
  width: 40%;
  display: flex;
}

.footer-event-image {
  object-fit: cover;
  border-radius: 4px;
  width: 60px;
  min-width: 60px;
  height: 60px;
  display: block;
}

.footer-event-title {
  color: var(--white);
  text-transform: capitalize;
}

.footer-event-title:hover {
  color: var(--accent);
}

.footer-event-item {
  align-items: flex-start;
  display: flex;
}

.footer-event-date {
  color: rgba(255, 255, 255, .6);
}

.footer-events-wrapper {
  grid-row-gap: 20px;
  flex-direction: column;
  padding-right: 60px;
  display: flex;
}

.footer-links-title {
  color: var(--white);
  width: 100%;
  margin-bottom: 30px;
}

.footer-form-input {
  border-radius: 4px;
  flex: 1;
  height: 58px;
  margin-bottom: 15px;
  padding: 16px 20px;
}

.footer-form-input:focus {
  border: 1px solid var(--accent);
}

.footer-form-input::placeholder {
  color: var(--dark-gray);
  font-size: 16px;
}

.footer-form {
  flex-direction: column;
  width: 100%;
  display: flex;
}

.form-block {
  width: 100%;
}

.footer-divider {
  z-index: 10;
  background-color: rgba(255, 255, 255, .15);
  border-radius: 4px;
  width: 60px;
  height: 2px;
  position: absolute;
  top: -40px;
}

.display-block {
  display: block;
}

.text-left {
  color: var(--light-gray);
  text-align: left;
  margin-top: 0;
  margin-left: 25px;
  margin-right: auto;
  padding-right: 0;
  font-family: Bitter, serif;
  font-size: 48px;
  line-height: 1.5em;
  display: none;
}

.home-courses-image-bg {
  z-index: -1;
  object-fit: cover;
  margin-top: -100px;
  position: absolute;
}

.courses-list {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.course-card {
  border-radius: 4px;
  position: relative;
  box-shadow: 0 0 20px rgba(13, 54, 159, .06);
}

.course-image {
  object-fit: cover;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  width: 100%;
  height: 240px;
}

.courses-collection {
  width: 100%;
  display: none;
}

.courses-collection.home {
  margin-bottom: 40px;
  display: none;
}

.course-content-wrapper {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding: 30px 25px;
}

.course-title {
  font-family: Bitter, serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3em;
}

.course-title:hover {
  color: var(--accent);
}

.course-author-name {
  color: var(--dark-gray);
  margin-top: 15px;
  font-weight: 600;
  display: block;
}

.course-author-name:hover {
  color: var(--accent);
}

.course-author-name.w--current {
  color: var(--dark-gray);
  display: inline-block;
}

.course-price-wrapper {
  background-color: var(--accent);
  border-radius: 4px;
  position: absolute;
  top: 20px;
  bottom: auto;
  left: -10px;
  right: auto;
  box-shadow: 0 0 20px rgba(255, 193, 14, .4);
}

.course-price {
  color: var(--primary);
  text-align: center;
  margin: 4px 14px;
  font-weight: 600;
  display: none;
}

.course-free-price-wrapper {
  background-color: #41b345;
  border-radius: 4px;
  position: absolute;
  top: 20px;
  bottom: auto;
  left: -10px;
  right: auto;
  box-shadow: 0 0 20px rgba(65, 179, 69, .5);
}

.course-free-price {
  color: var(--white);
  text-align: center;
  margin: 3px 18px;
  font-weight: 600;
  display: none;
}

.course-image-wrapper {
  position: relative;
}

.course-image-wrapper:hover {
  background-color: #c51717;
}

.course-image-overlay {
  background-color: rgba(13, 54, 159, .85);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.course-button {
  border: 2px solid var(--white);
  color: var(--white);
  text-transform: uppercase;
  border-radius: 4px;
  padding: 14px 24px;
  font-weight: 600;
}

.course-card-shadow {
  z-index: -1;
  border-radius: 4px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  box-shadow: 0 0 30px rgba(13, 54, 159, .15);
}

.testimonials-card {
  background-color: var(--white);
  border-radius: 4px;
  width: 33.33%;
  padding: 60px 30px;
  position: relative;
  box-shadow: 0 0 30px rgba(13, 54, 159, .1);
}

.fw-600 {
  font-weight: 600;
}

.testimonials-author-name {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.4em;
}

.testimonial-card-quote-icon {
  color: var(--primary);
  font-family: "Fa solid 900", sans-serif;
  font-size: 32px;
  line-height: 1;
  position: absolute;
  top: -20px;
}

.text-dark {
  color: var(--text-dark);
}

.section-with-blue-bg {
  background-color: var(--primary);
  justify-content: center;
  display: flex;
}

.features-blue-bg-wrapper {
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.features-blue-bg-item {
  z-index: 0;
  text-align: center;
  border-right: 1px solid rgba(12, 48, 144, .8);
  width: 25%;
  padding-top: 60px;
  padding-bottom: 15px;
  display: none;
  position: relative;
}

.features-blue-bg-item.last-child {
  border-right-style: none;
}

.feature-image {
  z-index: -1;
  height: 100px;
  margin-top: -60px;
  position: relative;
  transform: rotate(12deg);
}

.feature-image.first-child {
  transform: rotate(-12deg);
}

.about-trending-courses-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  width: 100%;
  display: none;
}

.about-trending-courses-wrap {
  width: 40%;
}

.about-trending-course-video-wrap {
  width: 60%;
  position: relative;
}

.about-photos-slider-background {
  position: absolute;
  top: -6%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  transform: scale(1.3);
}

.tesimonials-authors-position {
  color: var(--accent);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
}

.section-with-light-background {
  background-color: var(--primary-light);
  display: none;
}

.courses-pagination-icon {
  margin-left: 8px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 12px;
  display: inline-block;
}

.courses-pagination-icon.previous {
  margin-left: 0;
  margin-right: 8px;
}

.collection-pagination-wrapper {
  margin-top: 40px;
}

.collection-pagination-wrapper.blog-grid {
  margin-top: 10px;
}

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

.courses-2-list {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.courses-2-item-description {
  margin-top: 15px;
  margin-bottom: 30px;
}

.course-template-wrapper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.course-template-left-block {
  width: 65%;
  padding: 60px 15px;
}

.course-template-right-block {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-direction: column;
  width: 35%;
  padding: 60px 15px;
}

.course-template-search-input {
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  height: 52px;
  margin-bottom: 0;
  padding: 15px 48px 15px 20px;
  box-shadow: 0 0 20px rgba(153, 153, 153, .15);
}

.course-template-search-input:active, .course-template-search-input:focus {
  border-color: var(--primary);
}

.course-template-search-input::placeholder {
  color: var(--dark-gray);
  font-size: 14px;
}

.course-template-search-icon {
  z-index: 1;
  color: var(--primary);
  cursor: pointer;
  font-family: "Fa solid 900", sans-serif;
  line-height: 52px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 20px;
}

.search-course-template {
  margin-bottom: 0;
  display: block;
  position: relative;
}

.course-template-link-item {
  color: var(--primary);
  font-weight: 400;
}

.course-template-link-item:hover {
  color: var(--accent);
}

.course-template-links-collection-item {
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-top: 6px;
  padding-bottom: 6px;
  display: flex;
}

.course-template-link-bullet {
  background-color: var(--dark-gray);
  border-radius: 50%;
  width: 4px;
  height: 4px;
  margin-right: 10px;
}

.course-template-newsletter-wrapper {
  background-color: var(--primary);
  background-image: url('../images/email-icon-form-bg.png');
  background-position: 80% 125%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 4px;
  padding: 40px 30px 80px;
  box-shadow: 0 0 30px rgba(13, 54, 159, .2);
}

.paragraph-gray {
  color: var(--gray);
}

.course-template-form-input {
  color: var(--white);
  background-color: rgba(255, 255, 255, .2);
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 4px;
  height: auto;
  margin-bottom: 15px;
  padding: 16px 20px;
}

.course-template-form-input:focus {
  border-style: solid;
  border-color: rgba(255, 255, 255, .3);
}

.course-template-form-input::placeholder {
  color: rgba(255, 255, 255, .8);
  font-size: 16px;
}

.course-template-form-block {
  margin-top: 40px;
  margin-bottom: 0;
}

.course-template-form-submit-button {
  border: 1px solid var(--white);
  background-color: var(--white);
  color: var(--primary);
  text-transform: uppercase;
  border-radius: 4px;
  padding: 14px 42px;
  font-size: 14px;
  font-weight: 600;
  transition: all .3s;
}

.course-template-form-submit-button:hover {
  border: 1px solid var(--white);
  color: var(--white);
  background-color: rgba(0, 0, 0, 0);
}

.course-template-sticky-block {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: column;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 40px;
}

.course-template-tag-links-wrapper {
  align-items: center;
  margin-right: 8px;
  display: flex;
}

.course-template-tag-links-wrapper:last-child {
  margin-right: -4px;
}

.course-template-tag-link {
  color: var(--primary);
  font-weight: 600;
}

.course-template-tag-link:hover {
  color: var(--accent);
}

.tag-links-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 50px;
  display: flex;
}

.course-template-author-wrapper {
  border: 1px solid var(--gray);
  border-radius: 4px;
  align-items: flex-start;
  padding: 40px 60px;
  display: flex;
}

.course-template-author-photo {
  object-fit: cover;
  object-position: 50% 0%;
  border-radius: 50%;
  width: 80px;
  min-width: 80px;
  height: 80px;
  margin-right: 20px;
}

.course-template-author-name {
  margin-left: 6px;
  font-family: Bitter, serif;
  font-weight: 400;
  line-height: 1.6em;
  text-decoration: underline;
}

.course-template-author-name:hover {
  color: var(--accent);
}

.course-template-author-content-wrapper {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.mr-6 {
  margin-right: 6px;
}

.teacher-position {
  color: var(--accent);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 600;
}

.footer-contacts-icon {
  color: var(--accent);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 15px;
  font-family: "Fa solid 900", sans-serif;
  line-height: 1.4em;
}

.footer-contact-link {
  color: var(--white);
  font-weight: 400;
}

.footer-contact-link:hover {
  color: var(--accent);
}

.contact-link {
  color: var(--dark-gray);
  font-weight: 400;
}

.contact-link:hover {
  color: var(--primary);
}

.blog-grid-link {
  color: var(--accent);
  text-transform: uppercase;
}

.blog-grid-link:hover {
  color: var(--primary);
}

.blog-grid-category {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: var(--white);
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
  position: absolute;
  top: 30px;
  bottom: auto;
  left: 30px;
  right: auto;
  box-shadow: 0 0 20px rgba(13, 54, 159, .3);
}

.blog-grid-category:hover {
  background-color: var(--white);
  color: var(--primary);
}

.empty-state {
  background-color: var(--primary);
  color: var(--white);
  border-radius: 4px;
}

.full-width {
  width: 100%;
}

.career-collection-list {
  grid-row-gap: 15px;
  flex-direction: column;
  display: flex;
}

.footer-event-image-link {
  margin-right: 15px;
}

.blog-section-title {
  margin-bottom: 60px;
  padding-left: 15px;
  padding-right: 15px;
}

.search-results-wrapper {
  padding-top: 40px;
  padding-bottom: 40px;
}

.buy-now-fixed {
  z-index: 1000;
  background-color: var(--white);
  color: var(--black);
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  align-items: center;
  padding: 6px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  transition-property: none;
  display: none;
  position: fixed;
  top: auto;
  bottom: 12px;
  left: auto;
  right: 12px;
  box-shadow: 0 0 3px rgba(0, 0, 0, .1);
}

.buy-now-webflow-icon {
  margin-right: 8px;
}

.view-our-templates {
  z-index: 1000;
  background-color: var(--white);
  color: var(--black);
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  align-items: center;
  width: 145px;
  padding: 6px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  transition-property: none;
  display: none;
  position: fixed;
  top: auto;
  bottom: 48px;
  left: auto;
  right: 12px;
  box-shadow: 0 0 3px rgba(0, 0, 0, .1);
}

.hire-popup {
  z-index: 1000;
  color: #fff;
  background-color: #1c276d;
  border-radius: 4px;
  width: 100%;
  max-width: 296px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.2em;
  display: none;
  position: fixed;
  top: auto;
  bottom: 5px;
  left: 5px;
  right: auto;
}

.hire-popup-wrap {
  grid-row-gap: 10px;
  flex-direction: column;
  padding: 15px;
  display: flex;
  position: relative;
}

.hire-paragraph {
  max-width: 93%;
  font-size: 12px;
}

.hire-link {
  color: #fff;
  letter-spacing: 0;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2em;
  text-decoration: underline;
}

.hire-buttons-wrap {
  grid-column-gap: 20px;
  display: flex;
}

.hire-buttons {
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 5px 15px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2em;
}

.hire-popup-close {
  cursor: pointer;
  padding: 10px 20px;
  position: absolute;
  top: -7px;
  right: -14px;
}

.close-popup-image-2 {
  width: 12px;
  height: 12px;
}

.heading {
  color: var(--primary);
}

.text-span-2 {
  color: var(--accent);
}

.team-slider-2 {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  margin-top: 0;
  padding: 80px 30px 40px;
  position: relative;
}

.container {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.centered-heading {
  color: var(--primary);
  text-align: center;
  margin-top: 0;
  margin-bottom: 16px;
  padding-right: 10px;
  font-size: 50px;
  line-height: 1.5em;
}

.centered-subheading {
  color: var(--text-dark);
  text-align: center;
  max-width: none;
  margin-left: 10px;
  margin-right: 10px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 20px;
  font-weight: 400;
}

.team-slider-wrapper {
  background-color: rgba(0, 0, 0, 0);
  height: auto;
  margin-top: 50px;
}

.team-slide-wrapper {
  width: auto;
  max-width: 30%;
  margin-right: 5%;
}

.team-block {
  text-align: center;
  background-color: #fff;
  padding-bottom: 24px;
}

.team-member-image-two {
  max-width: 100%;
  margin-bottom: 18px;
}

.team-block-info {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.team-member-name-two {
  margin-bottom: 12px;
  font-size: 32px;
  font-weight: 600;
}

.team-member-text {
  margin-bottom: 20px;
}

.text-link-arrow {
  color: #1a1b1f;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  display: none;
}

.arrow-embed {
  margin-left: 2px;
  display: flex;
}

.team-slider-arrow {
  display: block;
}

.team-slider-nav {
  margin-top: 24px;
  font-size: 10px;
  display: none;
  position: static;
  bottom: -60px;
}

.text-span-3 {
  color: var(--accent);
}

.body-2 {
  height: auto;
  max-height: none;
  margin-left: 40px;
  margin-right: 40px;
  padding-top: 0;
}

.team-slider-3 {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  margin-top: auto;
  padding: 80px 30px;
  display: none;
  position: relative;
}

.container-2 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.centered-heading-2 {
  text-align: center;
  margin-bottom: 16px;
}

.centered-subheading-2 {
  text-align: center;
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
}

.team-slider-wrapper-2 {
  color: #333;
  background-color: rgba(0, 0, 0, 0);
  height: auto;
  margin-top: 0;
}

.team-slide-wrapper-2 {
  width: 30%;
  margin-right: 5%;
}

.team-block-2 {
  background-color: #fff;
  padding-bottom: 24px;
}

.team-member-image-two-2 {
  margin-bottom: 18px;
}

.team-block-info-2 {
  flex-direction: column;
  align-items: flex-start;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.team-member-name-two-2 {
  margin-bottom: 12px;
  font-size: 25px;
  font-weight: 600;
}

.team-member-text-2 {
  margin-bottom: 20px;
}

.text-link-arrow-2 {
  color: #1a1b1f;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.arrow-embed-2 {
  color: var(--accent);
  margin-left: 2px;
  display: block;
}

.team-slider-arrow-2 {
  display: none;
}

.team-slider-nav-2 {
  margin-top: 24px;
  font-size: 10px;
  position: static;
  bottom: -60px;
}

.text-block {
  color: var(--accent);
  display: block;
}

.text-block-2, .text-block-3 {
  display: block;
}

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

.hero-heading-left {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  margin-top: 100px;
  padding: 80px 30px;
  display: inline-block;
  position: relative;
}

.container-3 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.hero-wrapper {
  flex-wrap: wrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.hero-split {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  max-width: 46%;
  display: flex;
}

.margin-bottom-24px {
  margin-bottom: 24px;
  display: none;
}

.button-primary-1 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  border-radius: 10px;
  margin-left: 0;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-1:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary-1:active {
  background-color: #43464d;
}

.shadow-two {
  display: block;
  box-shadow: 0 4px 24px rgba(150, 163, 181, .08);
}

.heading-2 {
  color: var(--accent);
  font-size: 60px;
}

.hero-stack {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  margin-top: 60px;
  padding: 80px 30px;
  position: relative;
}

.hero-wrapper-two {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.margin-bottom-24px-2 {
  margin-bottom: 24px;
}

.hero-image {
  width: 100%;
  margin-top: 50px;
}

.barra-section {
  max-width: none;
  height: auto;
  max-height: none;
  margin-top: 100px;
  display: block;
}

.contenedor-barra {
  background-color: var(--dark-gray-50);
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  justify-content: center;
  align-items: center;
  width: 60%;
  max-width: 60%;
  height: 60%;
  margin-top: -100px;
  margin-left: 40px;
  margin-right: auto;
  display: flex;
  position: absolute;
  top: 57%;
  bottom: 1%;
  left: 1%;
  right: 0%;
}

.heading-3 {
  color: var(--primary);
  text-align: center;
  white-space: normal;
  font-size: 60px;
  line-height: 1.5em;
}

.text-block-4 {
  display: none;
}

.button {
  color: var(--primary);
  text-align: center;
  -webkit-text-stroke-color: var(--primary);
  background-color: #ecb938;
  border-radius: 4px;
}

.text-block-5, .bold-text {
  color: var(--accent);
}

.heading-6 {
  color: var(--primary);
}

.bold-text-2 {
  color: var(--primary);
  text-align: left;
  -webkit-text-stroke-color: var(--primary);
}

.enc-our-p {
  text-align: center;
  -webkit-text-stroke-color: var(--primary);
  font-size: 30px;
  line-height: 1.5em;
}

.bold-item {
  color: var(--accent);
  font-size: 21px;
  text-decoration: underline;
}

.paragraph-2 {
  line-height: 1.9em;
}

.heading-7 {
  display: none;
}

.paragraph-3 {
  color: var(--primary);
  font-size: 18px;
}

.contenedor-de-about {
  background-image: url('../images/joven-camarera-feliz-usando-touchpad-mientras-trabaja-cafe.jpg');
  background-position: 0 0;
  background-size: cover;
  max-width: 1200px;
  height: 400px;
  margin-top: 100px;
}

.div-block-2 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 67.5868px;
  margin-top: 220px;
  display: inline-block;
}

.text-abotus {
  color: var(--dark-gray);
  margin-top: 40px;
  margin-bottom: 0;
  margin-left: 20px;
  font-size: 25px;
  display: none;
}

.titulo-about {
  color: var(--primary);
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 50px;
}

.paragraph-4 {
  color: var(--dark-gray);
  text-align: justify;
  margin-left: 10px;
  margin-right: 10px;
  padding-left: 10px;
  padding-right: 10px;
  font-family: Open Sans, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6em;
}

.button-about {
  color: var(--gray);
  cursor: pointer;
  border-radius: 7px;
  margin-top: 100px;
  margin-bottom: 20px;
  margin-left: 0;
  font-size: 20px;
  line-height: 1.4em;
}

.button-about:hover {
  background-color: #0f2030;
}

.contenedor-de-purpose {
  background-image: url('../images/colegas-universitarios-hablando-biblioteca.jpg');
  background-position: 0 0;
  background-size: cover;
  max-width: 1200px;
  height: 400px;
  margin-top: 100px;
}

.text-purpose {
  opacity: .74;
  color: var(--primary);
  text-align: left;
  background-color: #fbf5f5;
  margin-top: 0;
  margin-left: 20px;
  margin-right: 20px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 48px;
}

.heading-8 {
  color: var(--primary);
  text-align: center;
  margin-top: 20px;
  font-size: 50px;
  line-height: 1.5em;
}

.contenedor-de-value {
  background-image: url('../images/9315890.jpg');
  background-position: 0 0;
  background-size: cover;
  max-width: 1200px;
  height: 600px;
}

.bold-text-3 {
  margin-left: 10px;
  margin-right: 10px;
  padding-left: 10px;
  padding-right: 10px;
  font-weight: 400;
  display: inline;
}

.team-slider-4 {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 20px 30px 80px;
  display: none;
  position: relative;
}

.container-4 {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.centered-heading-3 {
  text-align: center;
  margin-bottom: 16px;
  font-size: 50px;
  line-height: 1.5em;
}

.centered-subheading-3 {
  text-align: center;
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
}

.team-slider-wrapper-3 {
  background-color: rgba(0, 0, 0, 0);
  height: auto;
  margin-top: 50px;
}

.team-slide-wrapper-3 {
  width: 30%;
  margin-right: 5%;
}

.team-block-3 {
  background-color: #fff;
  padding-bottom: 24px;
}

.team-member-image-two-3 {
  margin-bottom: 18px;
}

.team-block-info-3 {
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.team-member-name-two-3 {
  text-align: center;
  margin-bottom: 12px;
  font-size: 40px;
  font-weight: 600;
}

.team-member-text-3 {
  margin-bottom: 20px;
  font-size: 20px;
}

.text-link-arrow-3 {
  color: #1a1b1f;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.arrow-embed-3 {
  margin-left: 2px;
  display: none;
}

.team-slider-arrow-3 {
  display: none;
}

.team-slider-nav-3 {
  margin-top: 24px;
  font-size: 10px;
  position: static;
  bottom: -60px;
}

.text-block-6, .text-block-7, .text-block-8, .text-block-9 {
  display: none;
}

.bold-text-4, .bold-text-5 {
  color: var(--primary);
}

.bold-text-6 {
  color: var(--dark-gray);
  font-size: 18px;
  font-weight: 400;
}

.bold-text-7, .bold-text-8 {
  color: var(--primary);
}

.bold-text-9 {
  color: var(--accent);
}

.contenedor-business {
  background-image: url('../images/cerrar-mano-sujetapapeles.jpg');
  background-position: 50%;
  background-size: cover;
  max-width: 100%;
  height: 400px;
  max-height: none;
  margin-top: 0;
}

.section-2 {
  text-align: center;
  margin-top: 0;
}

.contenedor-productivity {
  background-image: url('../images/mujer-que-trabaja-centro-llamadas-hablando-clientes-usando-auriculares-microfono.jpg');
  background-position: 50% 20%;
  background-size: cover;
  max-width: 100%;
  height: 400px;
  margin-top: 100px;
}

.contenedor-mental {
  background-image: url('../images/hermosa-mujer-delgada-haciendo-deporte-manana-parque-haciendo-yoga.jpg');
  background-position: 50%;
  background-size: cover;
  max-width: 100%;
  height: 400px;
  margin-top: 100px;
}

.section-3 {
  display: none;
}

.text-left-about {
  text-align: left;
  font-size: 25px;
  line-height: 1.5em;
}

.section-4 {
  text-align: center;
  padding-top: 69px;
  padding-bottom: 69px;
}

.section-4.grey {
  background-color: #fff;
  max-width: none;
  margin-top: 0;
  padding: 0 20px 20px;
  display: block;
}

.divider {
  background-color: #fff;
  width: 80px;
  height: 2px;
  margin: 28px auto;
  display: block;
}

.divider.grey {
  background-color: rgba(0, 0, 0, .09);
  margin-bottom: 43px;
  display: none;
}

.busisness {
  color: #333;
  cursor: none;
  text-decoration: none;
  transition: bottom .3s;
  display: inline-block;
  position: relative;
  bottom: 0;
}

.busisness:hover {
  bottom: 8px;
}

.project-info {
  cursor: none;
  background-color: #fff;
  margin-bottom: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  position: static;
}

.project-title {
  margin-bottom: 4px;
  font-size: 28px;
  display: inline-block;
}

.heading-9 {
  display: none;
}

.columns {
  cursor: none;
  display: none;
}

.section-titulo-cursos {
  display: block;
}

.container-5 {
  cursor: none;
  max-width: 1200px;
}

.text-block-10, .text-block-11, .text-block-12, .text-block-13, .text-block-14, .text-block-15 {
  display: block;
}

.text-block-16 {
  display: none;
}

.text-block-17 {
  display: block;
}

.image {
  background-color: #26313d;
  display: inline-block;
}

.image:hover {
  opacity: 1;
  -webkit-text-fill-color: inherit;
  background-color: #23408a;
  background-clip: border-box;
}

.text-block-18 {
  display: none;
}

.text-block-19, .text-block-20, .text-block-21 {
  display: inline-block;
}

.text-block-22, .text-block-23, .text-block-24 {
  display: none;
}

.text-block-25 {
  display: inline-block;
}

.text-block-26, .text-block-27 {
  display: none;
}

.bold-text-10 {
  text-align: center;
  font-weight: 600;
  line-height: 1.3em;
}

.text-bussiness {
  color: var(--dark-gray);
  text-align: left;
  margin-left: 0;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6em;
}

.bold-text-11 {
  font-family: Open Sans, sans-serif;
  font-weight: 400;
}

.bold-text-12 {
  font-weight: 400;
}

.image-2 {
  display: block;
}

.contenedor-de-bus1 {
  background-image: url('../images/apreton.jpg');
  background-position: 50%;
  background-size: auto;
  max-width: 1200px;
  height: 400px;
  max-height: none;
  margin-top: 100px;
}

.heading-10 {
  color: var(--accent);
  font-size: 40px;
}

.list {
  margin-left: 20px;
  font-size: 18px;
  list-style-type: disc;
}

.section-6 {
  height: 400px;
  margin-top: 0;
  font-size: 20px;
  display: block;
}

.list-item {
  font-size: 18px;
}

.list-item-2, .list-item-3 {
  font-size: 20px;
}

.heading-11 {
  font-weight: 700;
}

.titulo-etiq {
  color: var(--accent);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Merriweather, serif;
  font-size: 40px;
}

.bold-text-13 {
  color: var(--primary);
  text-align: left;
  font-size: 50px;
}

.bold-text-14 {
  font-size: 40px;
}

.contenedor-de-home {
  background-image: url('../images/personas-que-utilizan-dispositivos-digitales-reunion.jpg');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  max-width: 100%;
  height: 700px;
}

.contenedor-easy {
  background-image: url('../images/estudiantes-sonrientes-tiro-completo-biblioteca.jpg');
  background-position: 50%;
  background-size: cover;
  max-width: 1200px;
  height: 600px;
}

.container-6 {
  text-align: left;
}

.bold-text-15 {
  font-size: 35px;
  overflow: visible;
}

.bold-text-16, .bold-text-17, .bold-text-18, .bold-text-19, .bold-text-20, .bold-text-22 {
  font-size: 32px;
}

.contenedor-de-bus2 {
  background-image: url('../images/estres.jpg');
  background-position: 50%;
  background-size: cover;
  max-width: 1200px;
  height: 400px;
  margin-top: 100px;
}

.contenedor-de-bus3 {
  background-image: url('../images/crecimiento.jpg');
  background-position: 0 0;
  background-size: cover;
  max-width: 1200px;
  height: 400px;
  margin-top: 100px;
}

.contenedor-de-bus4 {
  background-image: url('../images/bussiness.jpg');
  background-position: 50%;
  background-size: cover;
  max-width: 1200px;
  height: 400px;
  margin-top: 100px;
}

.contenedor-de-bus5 {
  background-image: url('../images/integracion-social-equipo-trabajo.jpg');
  background-position: 50% 20%;
  background-size: cover;
  max-width: 1200px;
  height: 400px;
  margin-top: 100px;
}

.contenedor-de-bus6 {
  background-image: url('../images/bussiness1.jpg');
  background-position: 0 0;
  background-size: cover;
  max-width: 1200px;
  height: 400px;
  margin-top: 100px;
}

.list-item-4, .list-item-5 {
  font-size: 18px;
}

.container-7 {
  max-width: 1200px;
}

.image-3 {
  cursor: none;
}

.column {
  display: none;
}

.contenedor-prod1 {
  background-image: url('../images/equipo-negocios-feliz-manos-levantadas-celebrando-su-exito-oficina.jpg');
  background-position: 50%;
  background-size: cover;
  max-width: 1200px;
  height: 400px;
  margin-top: 100px;
}

.contenedor-prod2 {
  background-image: url('../images/joven-empresaria-hermosa-gafas-sonriendo-vomitando-papeles-sentado-mesa-lugar-trabajo-oficina.jpg');
  background-position: 50%;
  background-size: cover;
  max-width: 1200px;
  height: 400px;
  margin-top: 100px;
}

.section-7 {
  display: none;
}

.contenedor-prod3 {
  background-image: url('../images/hombre-negocios-joven-que-muestra-proyecto-escritorio.jpg');
  background-position: 0 0;
  background-size: cover;
  max-width: 1200px;
  height: 400px;
  margin-top: 100px;
}

.contenedor-prod4 {
  background-image: url('../images/mujer-negocios-pega-pegatinas-pensando-proyecto-mujer-cepillando-pensando-pegatinas.jpg');
  background-position: 50%;
  background-size: cover;
  max-width: 1200px;
  height: 400px;
  margin-top: 100px;
}

.trend-img {
  max-width: 80px;
  margin-left: auto;
}

.heading-13 {
  color: var(--gray);
  cursor: pointer;
  margin-top: 15px;
  margin-left: 20px;
  font-size: 12px;
  font-weight: 400;
}

.container-trend {
  max-width: 100%;
}

.trend-img1 {
  max-width: 80px;
}

.trend-img2 {
  cursor: pointer;
  max-width: 80px;
}

.construction {
  background-image: url('../images/4811956_54128.jpg');
  background-position: 50%;
  background-size: auto;
  max-width: 940px;
  max-height: 600px;
}

.section-8 {
  background-image: url('../images/4811956_54128.jpg');
  background-position: 0 0;
  background-size: auto;
  max-width: 1200px;
  height: auto;
  max-height: 900px;
}

.hero-stack-2 {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.container-8 {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.hero-wrapper-two-2 {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.margin-bottom-24px-3 {
  margin-bottom: 24px;
}

.button-primary-2 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-2:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary-2:active {
  background-color: #43464d;
}

.hero-image-2 {
  width: 100%;
  margin-top: 50px;
}

.section-9 {
  display: none;
}

.contenedor-constrction {
  background-image: url('../images/4811956_54128.jpg');
  background-position: 50%;
  background-repeat: repeat-x;
  background-size: contain;
  max-width: 100%;
  height: 500px;
  margin-bottom: 0;
  padding-bottom: 0;
}

.section-10 {
  display: none;
}

.container-9 {
  max-width: 1200px;
  margin-bottom: 20px;
}

.container-10 {
  max-width: 1200px;
  display: block;
}

.container-11 {
  max-width: 1200px;
}

.text-block-28, .text-block-29, .text-block-30, .column-2, .column-3, .container-13 {
  display: none;
}

.contenedor-de-mental1 {
  background-image: url('../images/mujer-oficina-estirandose-dia-trabajo.jpg');
  background-position: 50% 30%;
  background-size: cover;
  max-width: 1200px;
  height: 400px;
  margin-top: 100px;
}

.contenedor-mental2 {
  background-image: url('../images/vista-lateral-mujer-pie-al-aire-libre.jpg');
  background-position: 50% 30%;
  background-size: auto;
  max-width: 1200px;
  height: 400px;
  margin-top: 100px;
}

.container-14 {
  display: none;
}

.hero-heading-left-2 {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 0;
  position: relative;
}

.container-15 {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.hero-wrapper-2 {
  justify-content: space-between;
  align-items: center;
  max-width: none;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.hero-split-2 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 46%;
  display: flex;
}

.margin-bottom-24px-4 {
  margin-bottom: 24px;
  font-size: 20px;
  line-height: 2em;
}

.button-primary-3 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-3:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary-3:active {
  background-color: #43464d;
}

.shadow-two-2 {
  box-shadow: 0 4px 24px rgba(150, 163, 181, .08);
}

.heading-14 {
  font-size: 40px;
}

.pricing-overview {
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.container-16 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.centered-heading-4 {
  text-align: center;
  margin-bottom: 16px;
}

.pricing-description-2 {
  text-align: center;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid {
  grid-column-gap: 64px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 50px;
  display: grid;
}

.pricing-card-three {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.pricing-image-2 {
  object-fit: cover;
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
}

.pricing-card-text {
  margin-bottom: 20px;
}

.text-link-arrow-4 {
  color: #1a1b1f;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.arrow-embed-4 {
  margin-left: 2px;
  display: flex;
}

.heading-15, .heading-16, .heading-17, .bold-text-24 {
  font-size: 25px;
}

.image-6 {
  max-width: 70%;
}

.link-block {
  margin-left: 20px;
}

.button-descarga {
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #ec4a38;
  border-radius: 12px;
  margin-top: 0;
  margin-left: 20px;
  padding: 12px 25px;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
}

.div-block-3 {
  margin-top: 20px;
}

.bold-text-25 {
  overflow: hidden;
}

.text-span-4 {
  color: var(--accent);
}

.contenedor-business {
  margin-top: 100px;
}

.contenedor-prod5 {
  background-image: url('../images/cerrar-mano-que-sostiene-reloj.jpg');
  background-position: 50%;
  background-size: auto;
  max-width: 1200px;
  height: 400px;
  margin-top: 100px;
}

.contenedor-faq {
  background-image: url('../images/942-2.jpg');
  background-position: 0 0;
  background-size: cover;
  max-width: 1200px;
  height: 400px;
  margin-top: 100px;
}

.contenedor-mental3 {
  background-image: url('../images/6589393_60028.svg');
  background-position: 50%;
  background-size: auto;
  max-width: 1200px;
  height: 400px;
  margin-top: 100px;
}

.bold-text-26 {
  color: var(--accent);
}

.container-17 {
  margin-top: auto;
}

.footer-dark {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 50px 30px 15px;
  position: relative;
}

.container-18 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.footer-wrapper-2 {
  justify-content: space-between;
  align-items: flex-start;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.footer-content {
  grid-column-gap: 70px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: auto auto 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-block {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.title-small {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}

.footer-link-2 {
  color: #1a1b1f;
  margin-top: 12px;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 16px;
  text-decoration: none;
}

.footer-link-2:hover {
  color: rgba(26, 27, 31, .75);
}

.footer-social-block {
  justify-content: flex-start;
  align-items: center;
  margin-top: 12px;
  margin-left: -12px;
  display: flex;
}

.footer-social-link-2 {
  margin-left: 12px;
}

.footer-divider-2 {
  background-color: #e4ebf3;
  width: 100%;
  height: 1px;
  margin-top: 70px;
  margin-bottom: 15px;
}

.footer-copyright-center {
  text-align: center;
  font-size: 14px;
  line-height: 16px;
}

.footer-light {
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px 40px;
  position: relative;
}

.footer-wrapper-two {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.footer-block-two {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
}

.footer-link-two {
  color: #1a1b1f;
  margin-top: 20px;
  text-decoration: none;
}

.footer-link-two:hover {
  color: rgba(26, 27, 31, .75);
}

.footer-form-2 {
  width: 315px;
  max-width: 100%;
  margin-bottom: 0;
}

.footer-form-block {
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  display: flex;
}

.footer-form-field {
  border: 1px solid #a6b1bf;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  height: 48px;
  margin-bottom: 0;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 22px;
  transition: all .2s;
}

.footer-form-field:hover, .footer-form-field:focus {
  border-color: #76879d;
}

.footer-form-field::placeholder {
  color: rgba(26, 27, 31, .8);
  font-size: 14px;
  line-height: 22px;
}

.footer-form-submit {
  background-color: #1a1b1f;
  background-image: url('../images/');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  width: 50px;
  height: 48px;
  transition: all .2s;
}

.footer-form-submit:hover {
  background-color: #3a4554;
}

.footer-divider-two {
  background-color: #e4ebf3;
  width: 100%;
  height: 1px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.footer-bottom {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-copyright-2 {
  color: #3a4554;
}

.footer-social-block-two {
  justify-content: flex-start;
  align-items: center;
  margin-top: 0;
  margin-left: -12px;
  display: flex;
}

.container-contact {
  background-color: #f5f0f0;
  flex-flow: wrap;
  max-width: 80%;
  height: 500px;
  margin-top: 0;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.section-contact {
  margin-top: 140px;
  margin-bottom: 60px;
}

.second-name {
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  width: 400px;
}

.email-contact {
  width: 400px;
}

.field-label {
  flex-flow: column;
  width: 400px;
  display: flex;
}

.field-label-2, .field-label-3, .field-label-4 {
  width: 400px;
}

.email-text {
  width: 800px;
  height: 200px;
}

.form {
  flex-flow: wrap;
  display: flex;
}

.textarea {
  height: auto;
}

.phone {
  width: 400px;
}

.form-block-2 {
  color: var(--black);
}

.image-7, .column-4, .image-8, .columns-2 {
  cursor: none;
}

.columns-3 {
  pointer-events: auto;
  cursor: none;
}

.column-5, .column-6, .column-7, .column-8, .image-9, .image-10, .image-11, .image-12, .image-13, .image-14, .image-15, .image-16 {
  cursor: none;
}

.pricing-overview-2 {
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.container-19 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.centered-heading-5 {
  text-align: center;
  margin-bottom: 16px;
}

.pricing-description-3 {
  text-align: center;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid-2 {
  grid-column-gap: 64px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 50px;
  display: grid;
}

.pricing-card-three-2 {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.pricing-image-3 {
  object-fit: cover;
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
}

.pricing-card-text-2 {
  margin-bottom: 20px;
}

.text-link-arrow-5 {
  color: #1a1b1f;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.arrow-embed-5 {
  margin-left: 2px;
  display: flex;
}

.gallery-scroll {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.gallery-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.gallery-sticky {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
}

.gallery-link {
  color: #1a1b1f;
  margin-bottom: 35px;
  font-size: 24px;
  line-height: 32px;
  text-decoration: none;
}

.gallery-link:hover {
  color: rgba(26, 27, 31, .8);
}

.gallery-link.w--current {
  font-weight: 600;
}

.gallery-grid {
  grid-row-gap: 40px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.gallery-image-wrapper {
  position: relative;
}

.gallery-image {
  width: 100%;
}

.gallery-image-text {
  color: #f5f7fa;
  margin-bottom: 0;
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
}

.columns-4, .image-17, .image-18 {
  cursor: none;
}

.image-19 {
  pointer-events: none;
  cursor: none;
}

.body-3, .body-4, .body-5, .body-6, .body-7, .body-8, .body-9, .body-10, .body-11, .body-12, .body-13, .body-14, .body-15, .body-16, .body-17, .body-18, .body-19, .body-20, .body-21, .body-22, .body-23 {
  margin-left: 40px;
  margin-right: 40px;
}

@media screen and (min-width: 1280px) {
  .section-purpose {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    display: block;
  }

  .section-purpose.home-slider {
    background-image: url('../images/home-slider-bg1.png');
    background-position: 50% 43%;
    background-size: 90%;
  }

  .section-purpose.courses {
    padding-top: 80px;
  }

  .section-purpose.about-us-trending-courses {
    display: block;
  }

  .spacing-system-column {
    padding-right: 30px;
  }

  .style-guide-body-wrapper {
    margin-right: 60px;
  }

  .primary-button.sidebar-button {
    width: auto;
  }

  .nav-dropdown-list {
    display: none;
  }

  .nav-dropdown-link {
    display: block;
  }

  .footer {
    background-position: 104% 94%;
    background-size: auto 330px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .footer-rights-wrapper {
    margin-top: 30px;
  }

  .section-title-wrapper {
    color: var(--gray);
    margin-bottom: 80px;
  }

  .team-card-image {
    height: 380px;
  }

  .style-guide-buttons-wrapper {
    flex-wrap: nowrap;
  }

  .banner-title-wrapper {
    margin-top: 0;
  }

  .section-title {
    color: var(--primary);
    font-size: 50px;
  }

  .contacts-location-wrapper.footer {
    margin-top: 20px;
  }

  .contacts-wrapper {
    grid-column-gap: 40px;
  }

  .footer-wrapper {
    grid-column-gap: 60px;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding-left: 0;
    padding-right: 0;
  }

  .footer-brand-wrapper {
    width: auto;
    max-width: 260px;
  }

  .service-list-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .service-list-2-bottom-left-block, .service-list-2-bottom-center-block {
    width: 33.33%;
    height: 520px;
  }

  .service-list-2-bottom-contacts {
    width: 33.33%;
  }

  .about-1-counter-number {
    font-size: 50px;
  }

  .about-content-wrapper {
    margin-bottom: 130px;
  }

  .team-slider-content {
    margin-left: 80px;
  }

  .team-slider-left-arrow {
    left: 260px;
  }

  .team-slider-right-arrow {
    left: 310px;
  }

  .nav-menu-shadow-overlay {
    padding-left: 20px;
  }

  .sidebar-search-wrapper {
    flex-wrap: nowrap;
  }

  .sidebar-search-input {
    margin-bottom: 0;
    margin-right: -4px;
  }

  .nav-social-icons-wrapper {
    flex-wrap: nowrap;
    width: auto;
  }

  .nav-social-icon-link {
    width: 48px;
    height: 48px;
  }

  .nav-search-wrapper {
    grid-column-gap: 30px;
    width: auto;
    display: flex;
  }

  .nav-wrapper {
    width: 1280px;
  }

  .banner-section.home-banner, .banner-section.style-guide-banner-section {
    display: none;
  }

  .home-banner-title-wrapper {
    max-width: 840px;
  }

  .slider-arrow.home-gallery-left {
    left: 100px;
  }

  .slider-arrow.home-gallery-right {
    right: 100px;
  }

  .home-form-left-block {
    padding-top: 140px;
    padding-bottom: 100px;
    padding-left: 40px;
  }

  .home-form-number {
    font-size: 60px;
  }

  .top-footer-image, .top-footer-image.large-image {
    width: 20%;
  }

  .footer-social-link {
    width: 48px;
    height: 48px;
  }

  .footer-links-wrapper {
    width: 50%;
  }

  .footer-event-image {
    width: 70px;
    min-width: 70px;
    height: 70px;
  }

  .footer-event-title {
    font-size: 13px;
  }

  .footer-events-wrapper {
    padding-right: 0;
  }

  .footer-links-title {
    margin-bottom: 40px;
  }

  .home-courses-image-bg {
    margin-top: -180px;
  }

  .courses-list {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .section-with-blue-bg {
    padding-left: 40px;
    padding-right: 40px;
  }

  .features-blue-bg-item {
    padding-top: 80px;
    padding-bottom: 20px;
  }

  .feature-image {
    height: 120px;
  }

  .courses-2-list {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .course-template-left-block, .course-template-right-block {
    padding: 80px 30px;
  }

  .course-template-sticky-block {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .blog-section-title {
    margin-bottom: 70px;
  }

  .team-slider-2 {
    margin-top: 0;
  }

  .container {
    max-width: 1200px;
  }

  .centered-subheading {
    text-align: justify;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: 400;
    line-height: 2em;
  }

  .body-2 {
    height: auto;
    max-height: none;
  }

  .team-slider-3 {
    display: none;
  }

  .contenedor-barra {
    justify-content: center;
    max-width: 700px;
    height: 450px;
    top: 45%;
    bottom: 1%;
    left: 1%;
  }

  .heading-3 {
    font-size: 60px;
  }

  .titulo-about {
    margin-top: 220px;
    font-size: 50px;
  }

  .paragraph-4 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    line-height: 3em;
    display: flex;
  }

  .contenedor-de-purpose {
    background-image: url('../images/colegas-universitarios-hablando-biblioteca.jpg');
    max-width: 1280px;
  }

  .text-purpose {
    display: none;
  }

  .contenedor-de-value {
    background-image: url('../images/9315890.jpg');
    background-position: 50%;
    background-size: cover;
  }

  .container-4 {
    max-width: 1200px;
  }

  .bold-text-6 {
    font-size: 18px;
  }

  .contenedor-business {
    max-width: 100%;
  }

  .section-5 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: row;
    max-width: none;
    margin-top: auto;
    display: flex;
  }

  .text-bussiness {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 18px;
  }

  .bold-text-12 {
    font-size: 18px;
  }

  .contenedor-de-bus1 {
    max-width: 1200px;
    height: 600px;
  }

  .list {
    font-size: 18px;
  }

  .list-item {
    font-size: 18px;
    display: block;
  }

  .bold-text-13 {
    color: var(--primary);
  }

  .container-6 {
    margin-bottom: 20px;
  }

  .bold-text-15, .bold-text-16, .bold-text-17, .bold-text-18, .bold-text-19, .bold-text-20, .bold-text-21 {
    font-size: 35px;
  }

  .bold-text-22 {
    font-size: 32px;
  }

  .contenedor-de-bus2 {
    background-image: url('../images/estres.jpg');
    background-position: 50%;
    background-size: auto;
    max-width: 1200px;
    height: 600px;
  }

  .contenedor-de-bus3 {
    background-image: url('../images/crecimiento.jpg');
    background-position: 50%;
    background-size: cover;
    max-width: 1200px;
    height: 600px;
  }

  .contenedor-de-bus4 {
    background-image: url('../images/bussiness.jpg');
    background-position: 50%;
    background-size: cover;
    max-width: 1200px;
    height: 600px;
  }

  .contenedor-de-bus5 {
    background-image: url('../images/integracion-social-equipo-trabajo.jpg');
    background-position: 50%;
    background-size: cover;
    max-width: 1200px;
    height: 600px;
  }

  .contenedor-de-bus6 {
    background-image: url('../images/bussiness1.jpg');
    background-position: 100% 0;
    background-size: cover;
    max-width: 1200px;
    height: 600px;
  }

  .image-3 {
    display: block;
  }

  .image-4, .column {
    display: none;
  }

  .contenedor-prod1 {
    background-image: url('../images/equipo-negocios-feliz-manos-levantadas-celebrando-su-exito-oficina.jpg');
    background-position: 50%;
    background-size: cover;
    max-width: 1200px;
    height: 600px;
  }

  .contenedor-prod2 {
    background-image: url('../images/joven-empresaria-hermosa-gafas-sonriendo-vomitando-papeles-sentado-mesa-lugar-trabajo-oficina.jpg');
    background-position: 50%;
    background-size: cover;
    max-width: 1200px;
    height: 600px;
  }

  .heading-12 {
    margin-left: 20px;
    display: inline;
  }

  .section-7 {
    display: none;
  }

  .contenedor-prod3 {
    background-image: url('../images/hombre-negocios-joven-que-muestra-proyecto-escritorio.jpg');
    background-position: 50%;
    background-size: cover;
    max-width: 1200px;
    height: 600px;
  }

  .contenedor-prod4 {
    background-image: url('../images/mujer-negocios-pega-pegatinas-pensando-proyecto-mujer-cepillando-pensando-pegatinas.jpg');
    background-position: 50%;
    background-size: cover;
    max-width: 1200px;
    height: 600px;
  }

  .contenedor-constrction {
    max-width: 100%;
  }

  .text-span-4 {
    color: var(--accent);
  }
}

@media screen and (min-width: 1440px) {
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 10px;
  }

  .section-purpose.home-slider {
    background-position: 50% 35%;
    background-size: 90%;
  }

  .section-purpose.courses {
    margin-top: 0;
    padding-top: 0;
  }

  .nav-dropdown-toggle {
    padding-left: 16px;
    padding-right: 16px;
  }

  .blog-template-wrapper {
    max-width: 1200px;
    padding-left: 120px;
    padding-right: 120px;
  }

  .about-3-image {
    height: 560px;
  }

  .team-slider-left-arrow {
    left: 300px;
  }

  .team-slider-right-arrow {
    left: 350px;
  }

  .tabs-slider-mask {
    width: 100%;
  }

  .nav-dropdown-underline {
    left: 16px;
    right: 16px;
  }

  .nav-social-icon {
    font-size: 18px;
  }

  .nav-social-icon-link {
    width: 52px;
    height: 52px;
  }

  .home-banner-title-wrapper {
    max-width: 1020px;
  }

  .home-form-left-block {
    padding-left: 60px;
    padding-right: 20px;
  }

  .home-form-right-block {
    padding-left: 120px;
    padding-right: 120px;
  }

  .home-form-icon {
    left: -50px;
  }

  .home-team-wrapper {
    grid-row-gap: 80px;
  }

  .home-pricing-background {
    height: 460px;
  }

  .footer-social-link {
    width: 52px;
    height: 52px;
  }

  .courses-collection.home {
    margin-bottom: 60px;
  }

  .section-with-blue-bg {
    padding-left: 100px;
    padding-right: 100px;
  }

  .feature-image {
    height: 140px;
  }

  .course-template-left-block {
    padding-left: 50px;
  }

  .course-template-right-block {
    padding-right: 50px;
  }

  .tag-links-wrapper {
    margin-top: 60px;
    margin-bottom: 70px;
  }

  .search-results-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media screen and (min-width: 1920px) {
  .section-purpose.home-slider {
    background-position: 50% 58%;
    background-size: 70%;
  }

  .section-purpose.courses {
    padding-top: 100px;
  }

  .nav-container {
    justify-content: space-between;
    padding-left: 80px;
    padding-right: 80px;
  }

  .footer {
    background-position: 108% 90%;
    background-size: auto 420px;
  }

  .service-list-2-bottom-contacts {
    padding-left: 80px;
    padding-right: 80px;
  }

  .search {
    width: 280px;
    display: block;
  }

  .nav-top-container {
    padding-left: 80px;
    padding-right: 80px;
  }

  .home-banner-title-wrapper {
    max-width: 1200px;
  }

  .nav-logo {
    width: 10%;
  }

  .home-courses-image-bg {
    margin-top: -210px;
  }

  .section-with-blue-bg {
    padding-left: 180px;
    padding-right: 180px;
  }

  .features-blue-bg-item {
    padding-top: 100px;
  }

  .course-template-left-block {
    padding-left: 220px;
  }

  .course-template-right-block {
    padding-left: 60px;
    padding-right: 220px;
  }

  .search-course-template {
    display: block;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 38px;
  }

  .grid-system {
    width: 100%;
  }

  .grid-description.first-description {
    text-align: center;
  }

  .spacing-system-image {
    width: 75%;
  }

  .spacing-wrapper-mobile {
    width: 70%;
  }

  .spacing-columns {
    flex-flow: wrap;
    display: flex;
  }

  .bottom-style-spacing-desktop {
    bottom: 6%;
  }

  .top-style-spacing-desktop {
    top: 4%;
  }

  .middle-style-spacing-desktop {
    top: 30%;
  }

  .spasing-system-image-mobile {
    width: 70%;
  }

  .colors-wrapper {
    margin-right: 40px;
  }

  .colors-container {
    flex-wrap: wrap;
  }

  .headings-typography-wrapper {
    width: 100%;
    margin-bottom: 30px;
  }

  .headings-typography-wrapper.last-child {
    margin-bottom: 30px;
  }

  .style-guide-body-wrapper {
    width: 100%;
    margin-bottom: 30px;
    margin-right: 0;
  }

  .primary-button.sidebar-button {
    width: auto;
  }

  .top-style-spacing-mobile {
    top: 3%;
  }

  .middlr-style-spacing-mobile {
    top: 26%;
  }

  .bottom-style-spacing-mobile {
    bottom: 6%;
  }

  .nav-container {
    height: 50px;
    margin-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .nav-menu {
    background-color: rgba(0, 0, 0, 0);
    flex-direction: column;
    width: 100%;
    max-width: 350px;
    margin-top: 42px;
    display: block;
    position: absolute;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: auto;
    overflow: visible;
  }

  .menu-button {
    text-align: right;
    padding: 0;
  }

  .menu-button.w--open {
    background-color: rgba(0, 0, 0, 0);
  }

  .nav-dropdown {
    flex-direction: column;
    justify-content: center;
    width: 100%;
    transition: opacity .5s;
    display: flex;
    overflow: hidden;
  }

  .nav-dropdown-toggle {
    justify-content: space-between;
    width: 100%;
    padding: 5px 22px 5px 20px;
    display: flex;
  }

  .nav-dropdown-toggle.justify-left {
    justify-content: flex-end;
    display: none;
  }

  .nav-dropdown-toggle.justify-left.w--current {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: none;
  }

  .nav-dropdown-icon {
    color: var(--text-dark);
    display: block;
  }

  .nav-dropdown-list {
    background-color: rgba(0, 0, 0, 0);
    border-style: none;
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 40px;
    display: inline-flex;
    position: static;
  }

  .nav-dropdown-list.w--open {
    box-shadow: none;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    position: static;
  }

  .nav-dropdown-list.megamenu {
    background-color: rgba(0, 0, 0, 0);
  }

  .nav-dropdown-link-wrapper {
    justify-content: flex-start;
    padding-right: 0;
    display: inline-block;
  }

  .nav-dropdown-link-wrapper:hover {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-dropdown-link {
    color: var(--text-dark);
    padding: 10px 0;
    font-size: 15px;
  }

  .tablet-menu {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 60px;
    padding-left: 20px;
    padding-right: 15px;
    display: flex;
  }

  .close-menu-button.w--open {
    background-color: rgba(0, 0, 0, 0);
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .nav-close-icon {
    align-self: stretch;
    max-width: 60%;
  }

  .nav-item-title {
    color: var(--text-dark);
  }

  .licensing-paragraph {
    width: 100%;
  }

  .coming-soon-wrapper {
    align-items: center;
    margin-right: 0;
  }

  .coming-soon-paragraph {
    margin-bottom: 30px;
  }

  .coming-soon-heading {
    text-align: center;
    font-size: 44px;
  }

  .blog-grid-collection-list {
    column-count: 2;
  }

  .blog-classic-top-content {
    padding: 30px 40px 25px;
  }

  .blog-classic-bottom-content {
    padding-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .blog-classic-post-description {
    margin-top: 25px;
    margin-bottom: 25px;
  }

  .blog-sidebar-left {
    flex: none;
    width: 100%;
  }

  .blog-sidebar-right {
    width: 100%;
    position: static;
  }

  .blog-sidebar-wrapper {
    flex-wrap: wrap;
  }

  .sidebar-recent-posts-wrapper {
    column-count: 2;
    column-gap: 20px;
  }

  .sidebar-recent-post-item {
    display: inline-block;
  }

  .blog-template-wrapper {
    padding: 40px;
  }

  .blog-template-date {
    margin-top: 20px;
    margin-bottom: 30px;
  }

  .blog-template-pagination {
    margin-top: 60px;
  }

  .footer {
    background-position: 115% 105%;
  }

  .section-title-wrapper {
    max-width: 560px;
  }

  .team-grid-large {
    grid-row-gap: 50px;
    grid-template-columns: 1fr 1fr;
  }

  .process-content.reverse {
    padding-right: 40px;
  }

  .process-number-wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }

  .style-guide-button-wrapper {
    width: 100%;
    margin-right: 0;
  }

  .free-trial-title {
    margin-bottom: 40px;
  }

  .process-image {
    object-fit: cover;
    display: block;
  }

  .values-wrapper {
    flex-wrap: wrap-reverse;
  }

  .values-image-wrapper {
    width: 100%;
    max-height: 400px;
  }

  .values-content-wrapper {
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
    padding-left: 0;
  }

  .values-counter-wrapper {
    border-top-style: none;
    margin-top: 0;
  }

  .values-counter-item {
    padding: 30px;
  }

  .career-location {
    padding-left: 15px;
    padding-right: 15px;
  }

  .career-button-wrapper {
    width: 30%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .career-position-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .career-location-wrapper {
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .career-type-wrapper {
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
  }

  .career-customer-item {
    text-align: center;
  }

  .career-customers-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 60px;
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .services-wrapper {
    grid-column-gap: 15px;
  }

  .services-item {
    padding-left: 20px;
    padding-right: 20px;
  }

  .testimonials-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-wrap: wrap;
    width: 80%;
    margin-top: 20px;
  }

  .pricing-3-plans-wrapper {
    grid-row-gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .pricing-3-plan-item {
    width: 70%;
  }

  .pricing-3-plan-item.center-item {
    width: 70%;
    margin-bottom: 0;
    padding-left: 30px;
    padding-right: 30px;
  }

  .pricing-3-plan-item.left-item {
    padding-left: 30px;
  }

  .pricing-3-plan-item.right-item {
    padding-right: 30px;
  }

  .pricing-plan-content-wrapper {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .coming-soon-image {
    display: none;
  }

  .job-position-content-wrapper {
    padding-right: 40px;
  }

  .job-position-sidebar-wrapper {
    padding: 10px 20px 20px;
    top: 20px;
  }

  .contacts-title-mobile {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .contacts-title-desktop {
    display: none;
  }

  .contacts-location-wrapper {
    margin-top: 0;
  }

  .contacts-form-wrapper {
    width: 100%;
    margin-right: 0;
  }

  .contacts-content-wrapper {
    width: 100%;
    margin-bottom: 30px;
    padding-right: 40px;
    display: flex;
  }

  .contacts-wrapper {
    flex-wrap: wrap-reverse;
  }

  .contacts-content {
    width: 66%;
    padding-right: 60px;
  }

  .footer-wrapper {
    flex-wrap: wrap;
    padding-left: 0;
    padding-right: 0;
  }

  .search-input:focus {
    border: 1px solid var(--primary);
  }

  .accordion-wrapper-one-column {
    width: 80%;
  }

  .headings-container {
    flex-wrap: wrap;
  }

  .service-list-wrapper {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-columns: 1fr 1fr;
    padding-left: 15px;
    padding-right: 15px;
  }

  .service-list-process-wrap {
    width: 50%;
  }

  .service-list-process-wrapper {
    flex-wrap: wrap;
  }

  .service-list-section-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .service-list-section-wrap {
    padding-left: 20px;
  }

  .service-list-2-bottom-left-block, .service-list-2-bottom-center-block {
    height: 360px;
  }

  .service-list-2-bottom-contacts {
    min-height: 340px;
    padding-left: 60px;
    padding-right: 60px;
  }

  .style-guide-content-wrapper {
    flex-wrap: wrap;
  }

  .about-1-video {
    width: 100%;
    min-height: 380px;
  }

  .about-features-wrap {
    margin-right: 20px;
  }

  .about-features-icon {
    padding-right: 15px;
  }

  .about-1-counter-number {
    font-size: 34px;
  }

  .about-1-counter-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .testimonials-slider-mask {
    width: 90%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .team-slider-image {
    height: 360px;
    margin-left: 2px;
  }

  .about-list-wrap {
    max-width: 380px;
    padding-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .about-1-list-wrapper {
    padding-left: 40px;
  }

  .about-photos-slider.home-gallery {
    width: 100%;
  }

  .about-2-slider-photo {
    width: 100%;
    margin-bottom: 60px;
  }

  .about-us-feature-number {
    font-size: 36px;
  }

  .about-card-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-center-card {
    width: 47%;
    margin-bottom: 30px;
    margin-left: 30px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .about-card {
    width: 47%;
    margin-top: 0;
    margin-bottom: 30px;
  }

  .about-card.last-child {
    margin-bottom: 0;
  }

  .about-content-wrapper {
    grid-column-gap: 20px;
  }

  .about-3-card-with-image {
    width: 47%;
    margin-top: 0;
    margin-bottom: 30px;
  }

  .about-3-card-with-image.last-child {
    margin-bottom: 0;
  }

  .about-3-center-card-with-image {
    width: 47%;
    margin-bottom: 30px;
    margin-left: 30px;
  }

  .about-3-center-card-image {
    height: 280px;
  }

  .about-3-image {
    object-position: 50% 0%;
    width: 50%;
  }

  .about-3-progress-bar-wrapper {
    grid-column-gap: 40px;
  }

  .about-3-progress-bar-content {
    margin-right: 20px;
  }

  .about-3-tab-pane-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 0px;
  }

  .about-3-form-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-3-form {
    margin-top: 25px;
  }

  .team-slider-mask {
    width: 90%;
  }

  .team-slider-background {
    width: 35%;
  }

  .team-slider-left-arrow {
    left: 160px;
  }

  .team-slider-right-arrow {
    left: 210px;
  }

  .testimonials-slider-background {
    font-size: 80px;
  }

  .nav-menu-shadow-overlay {
    background-color: var(--dark-gray);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    width: 320px;
    height: 100%;
    display: inline-block;
    box-shadow: 0 0 30px rgba(0, 0, 0, .15);
  }

  .megamenu-dropdown-wrapper {
    flex-direction: column;
  }

  .sidebar-search-wrapper {
    flex-wrap: nowrap;
  }

  .sidebar-search-input {
    margin-bottom: 0;
    margin-right: -4px;
  }

  .blog-sidebar-right-wrapper {
    width: 100%;
    margin-top: 60px;
  }

  .blog-sidebar-left-wrapper {
    flex: none;
    width: 100%;
  }

  .nav-dropdown-underline {
    display: none;
  }

  .search {
    display: block;
  }

  .nav-social-icons-wrapper {
    justify-content: center;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-social-icon-link {
    width: 48px;
    height: 48px;
  }

  .nav-search-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-top: 60px;
  }

  .nav-top-container {
    display: block;
  }

  .nav-icon {
    display: none;
  }

  .nav-wrapper {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .nav-top-container-link {
    display: none;
  }

  .banner-section {
    padding-top: 90px;
  }

  .banner-section.about-us, .banner-section.courses-banner, .banner-section.teachers {
    padding-top: 130px;
    padding-bottom: 40px;
  }

  .home-banner-title-wrapper {
    max-width: none;
    padding-top: 40px;
  }

  .text-primary-color {
    font-size: 25px;
  }

  .slider-arrow.home-banner-left {
    top: auto;
    bottom: 40px;
    left: 15px;
    right: auto;
  }

  .slider-arrow.home-banner-right {
    top: auto;
    bottom: 40px;
    left: auto;
    right: 15px;
  }

  .slider-arrow.home-gallery-left {
    left: 15px;
  }

  .slider-arrow.home-gallery-right {
    right: 15px;
  }

  .home-banner-title {
    font-size: 60px;
  }

  .home-form-section {
    flex-wrap: wrap;
  }

  .home-form-left-block {
    width: 100%;
    padding-left: 60px;
    padding-right: 40px;
  }

  .home-form-right-block {
    width: 100%;
    min-height: 380px;
  }

  .nav-logo-mobile {
    display: none;
  }

  .home-welcome-block-wrapper {
    grid-row-gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .home-welcome-block-wrap {
    flex-direction: row;
    width: 100%;
    max-width: 100%;
    display: block;
  }

  .home-welcome-block-desc {
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .home-welcome-block-image {
    margin-bottom: 10px;
  }

  .home-team-wrapper {
    grid-row-gap: 60px;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .home-team-wrap {
    max-width: 80%;
  }

  .top-footer-image {
    height: 260px;
  }

  .footer-social-links-wrapper {
    margin-top: 20px;
  }

  .footer-events-wrapper {
    padding-right: 40px;
  }

  .text-left {
    font-size: 35px;
  }

  .courses-list {
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-card {
    width: 100%;
  }

  .features-blue-bg-wrapper {
    flex-wrap: wrap;
  }

  .features-blue-bg-item {
    border-bottom: 1px solid rgba(12, 48, 144, .8);
    width: 50%;
    padding-bottom: 30px;
  }

  .about-trending-courses-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-wrap: wrap;
  }

  .about-trending-courses-wrap {
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }

  .about-trending-course-video-wrap {
    width: 100%;
  }

  .courses-2-list {
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr;
  }

  .course-template-wrapper {
    flex-wrap: wrap;
  }

  .course-template-left-block, .course-template-right-block {
    width: 100%;
  }

  .search-course-template {
    display: block;
  }

  .course-template-author-wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }

  ._404-image {
    max-width: 60%;
  }

  .blog-section-title {
    margin-bottom: 60px;
  }

  .hire-popup {
    max-width: 380px;
    display: none;
  }

  .hire-popup-wrap {
    display: none;
  }

  .team-slider-2 {
    padding-top: 40px;
    overflow: hidden;
  }

  .container {
    width: auto;
    max-width: none;
  }

  .team-slider-wrapper {
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    display: block;
    overflow: hidden;
  }

  .team-slide-wrapper {
    width: 30%;
    margin-right: 6%;
  }

  .team-block {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    overflow: hidden;
  }

  .team-member-image-two {
    overflow: hidden;
  }

  .team-block-info {
    font-size: 14px;
  }

  .team-member-name-two {
    font-size: 20px;
  }

  .team-member-text {
    text-align: left;
  }

  .container-2 {
    max-width: 728px;
  }

  .team-slide-wrapper-2 {
    width: 47%;
    margin-right: 6%;
  }

  .container-3 {
    max-width: 728px;
  }

  .hero-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }

  .hero-split {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .barra-section {
    background-image: none;
    margin-top: 100px;
  }

  .contenedor-barra {
    flex-direction: column;
    align-items: flex-start;
    max-width: 60%;
    height: 300px;
    margin-top: -100px;
    margin-left: 40px;
    padding-left: 10px;
    padding-right: 10px;
    top: 50%;
  }

  .heading-3 {
    font-size: 50px;
  }

  .heading-5 {
    font-size: 25px;
  }

  .mask {
    overflow: hidden;
  }

  .contenedor-de-about {
    height: 400px;
    margin-top: 100px;
  }

  .div-block-2 {
    margin-top: 100px;
  }

  .titulo-about {
    font-size: 35px;
  }

  .paragraph-4 {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 18px;
  }

  .contenedor-de-purpose {
    height: 400px;
  }

  .heading-8 {
    font-size: 40px;
  }

  .container-4 {
    max-width: 728px;
  }

  .team-slide-wrapper-3 {
    width: 47%;
    margin-right: 6%;
  }

  .team-member-text-3 {
    font-size: 18px;
  }

  .contenedor-business, .contenedor-mental {
    height: 400px;
  }

  .busisness:hover {
    transform: translate(0);
  }

  .contenedor-de-home {
    max-width: none;
    height: 480px;
    margin-left: 0;
    margin-right: 0;
  }

  .container-8 {
    max-width: 728px;
  }

  .contenedor-constrction {
    background-size: contain;
    height: 400px;
    margin-bottom: 0;
  }

  .image-5 {
    margin-top: -20px;
  }

  .italic-text {
    font-size: 40px;
  }

  .container-15 {
    max-width: 728px;
  }

  .hero-wrapper-2 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }

  .hero-split-2 {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .container-16 {
    max-width: 728px;
  }

  .pricing-grid {
    grid-column-gap: 30px;
  }

  .container-18 {
    max-width: 728px;
  }

  .footer-content {
    grid-column-gap: 60px;
  }

  .footer-wrapper-two {
    flex-wrap: wrap;
  }

  .footer-form-2 {
    width: 100%;
    margin-top: 40px;
  }

  .footer-form-container {
    max-width: 350px;
  }

  .container-contact {
    max-width: 100%;
    margin-left: 10px;
    margin-right: 10px;
  }

  .section-contact {
    margin-top: 100px;
  }

  .container-19 {
    max-width: 728px;
  }

  .pricing-grid-2 {
    grid-column-gap: 30px;
  }

  .gallery-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-sticky {
    position: relative;
    top: 0;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4, h5 {
    font-size: 22px;
  }

  h6, blockquote {
    font-size: 18px;
  }

  .section-purpose {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-purpose.home-team-section {
    background-image: none;
    background-position: 0 0;
  }

  .section-purpose.home-slider {
    background-size: 180%;
  }

  .section-purpose.about-us-trending-courses {
    margin-top: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .section-purpose.without-bottom-spacing-mobile-landscape {
    padding-bottom: 0;
  }

  .section-purpose.without-top-spacing-mobile-landscape {
    padding-top: 0;
  }

  .grid-system-wrapper {
    flex-direction: row;
    margin-top: 15px;
  }

  .grid-system {
    border-left: 1px solid #7c7c7c;
    flex-direction: column;
  }

  .grid-title {
    border-bottom: 1px solid #7c7c7c;
    border-right-style: none;
    width: 100%;
  }

  .grid-title.first-grid {
    border-left-style: none;
    border-right-style: none;
    width: 100%;
  }

  .grid-description {
    border-top: 1px solid #a7a7a7;
    border-bottom-style: none;
    border-right-width: 1px;
    align-items: center;
    width: 100%;
  }

  .grid-description.first-description {
    border-width: 1px 1px .5px 0;
    border-top-style: none;
    border-top-color: #a7a7a7;
    border-bottom-style: none;
    border-left-style: none;
    width: 100%;
  }

  .grid-description.last-description {
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-right-width: 1px;
  }

  .spacing-system-column {
    margin-top: 20px;
  }

  .spacing-wrapper-mobile {
    margin-top: 30px;
  }

  .typography-wrapper {
    margin-top: 20px;
  }

  .spacing-columns {
    margin-top: 0;
  }

  .bottom-style-spacing-desktop {
    bottom: 10%;
  }

  .top-style-spacing-desktop {
    top: 10%;
  }

  .spacing-wrapper {
    margin-top: 30px;
  }

  .middle-style-spacing-desktop {
    top: 34%;
  }

  .colors-wrapper {
    margin-top: 15px;
    margin-right: 0;
  }

  .colors-container {
    margin-top: 0;
  }

  .headers-wrapper, .style-guide-body-wrapper {
    width: 100%;
    margin-top: 10px;
  }

  .primary-button.search-button {
    width: 100%;
  }

  .style-guide-div {
    margin-top: 35px;
  }

  .top-style-spacing-mobile {
    top: 7%;
  }

  .middlr-style-spacing-mobile {
    top: 31%;
  }

  .bottom-style-spacing-mobile {
    bottom: 9%;
  }

  .grid-header {
    width: 100%;
    margin-top: 35px;
  }

  .link-wrapper {
    width: 100%;
    margin-bottom: 10px;
  }

  .nav-menu {
    margin-top: 68px;
  }

  .nav-dropdown-toggle {
    width: 99%;
  }

  .style-guide-banner-section {
    min-height: 380px;
  }

  .licensing-title-wrapper {
    margin-bottom: 20px;
  }

  .licensing-images-wrapper {
    padding-top: 10px;
  }

  .licensing-grid {
    grid-template-columns: 1fr;
    padding-bottom: 40px;
  }

  .licensing-title {
    padding-bottom: 20px;
  }

  .licensing-fonts-wrapper {
    flex-wrap: wrap;
  }

  .licensing-paragraph {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .licensing-paragraph.last-item {
    margin-bottom: 0;
  }

  .licensing-font-title {
    margin-bottom: 10px;
  }

  .licensing-icons-wrapper {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .password-image {
    width: 100px;
  }

  ._404-paragraph {
    margin-bottom: 30px;
  }

  .coming-soon-wrapper {
    margin-left: 0%;
  }

  .coming-soon-input {
    min-width: 240px;
  }

  .coming-soon-heading {
    font-size: 44px;
  }

  .blog-grid-collection-list {
    column-count: 1;
  }

  .blog-grid-item {
    width: 100%;
  }

  .blog-classic-top-content {
    padding-bottom: 20px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .blog-classic-bottom-content {
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .blog-sidebar-post-title {
    font-size: 22px;
  }

  .blog-sidebar-left, .sidebar-recent-posts-wrapper {
    column-count: 1;
  }

  .blog-template-wrapper {
    padding: 20px 15px;
  }

  .blog-template-prev-button {
    padding-right: 40px;
  }

  .blog-template-next-button {
    padding-left: 40px;
  }

  .footer {
    background-position: 104% 78%;
  }

  .footer-rights-wrapper {
    flex-wrap: wrap;
  }

  .section-title-wrapper {
    margin-bottom: 40px;
  }

  .section-title-wrapper.home-gallery-slider {
    margin-bottom: 0;
  }

  .team-card-image {
    height: 400px;
  }

  .team-grid-large {
    grid-template-columns: 1fr;
  }

  .process-item-wrapper {
    flex-wrap: wrap;
  }

  .process-item-wrapper.reverse {
    flex-wrap: wrap-reverse;
  }

  .process-image-wrapper, .process-content {
    width: 100%;
  }

  .process-content.reverse {
    width: 100%;
    padding-right: 0;
  }

  .process-number-wrapper {
    flex: none;
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .process-number {
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 56px;
  }

  .process-paragraph {
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .style-guide-buttons-wrapper {
    flex-wrap: wrap;
    margin-top: 35px;
  }

  .style-guide-button-wrapper {
    width: 100%;
    margin-bottom: 40px;
    margin-right: 0;
  }

  .style-guide-button-wrapper.last-child {
    margin-bottom: 0;
  }

  .free-trial-title {
    font-size: 30px;
  }

  .process-content-wrapper {
    flex-wrap: wrap;
    width: 100%;
  }

  .values-content-wrapper {
    margin-bottom: 20px;
  }

  .values-counter-wrapper {
    grid-column-gap: 20px;
  }

  .career-list-item-wrapper {
    flex-wrap: wrap;
    padding-bottom: 25px;
  }

  .career-position {
    margin-top: 0;
    margin-bottom: 0;
  }

  .career-button-wrapper {
    text-align: center;
    width: 100%;
  }

  .career-title-mobile {
    display: block;
  }

  .career-position-wrapper, .career-location-wrapper, .career-type-wrapper {
    text-align: center;
    width: 100%;
    margin-bottom: 15px;
  }

  .services-wrapper {
    grid-row-gap: 15px;
    column-count: 1;
    flex-wrap: wrap;
  }

  .services-item {
    width: 100%;
    margin-right: 0;
  }

  .section-title {
    font-size: 30px;
  }

  .accordion-wrapper {
    flex-wrap: wrap;
  }

  .accordion-wrap {
    width: 100%;
    margin-right: 0;
  }

  .testimonials-wrapper {
    width: 100%;
  }

  .pricing-3-plans-wrapper {
    grid-row-gap: 40px;
    flex-wrap: wrap;
  }

  .pricing-3-plan-item {
    width: 100%;
    margin-bottom: 15px;
  }

  .pricing-3-plan-item.center-item {
    width: 100%;
  }

  .pricing-3-plan-item.left-item, .pricing-3-plan-item.right-item {
    margin-bottom: 0;
  }

  .pricing-plan-content-wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }

  .pricing-plan-list-item {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .link-with-icon {
    font-size: 13px;
  }

  .job-position-wrapper {
    flex-wrap: wrap;
  }

  .job-position-content-wrapper {
    width: 100%;
    margin-bottom: 40px;
    padding-right: 0;
  }

  .job-position-sidebar-wrapper {
    width: 100%;
    padding: 20px 40px 30px;
    position: relative;
    top: 0;
  }

  .contacts-title-mobile {
    margin-bottom: 40px;
  }

  .contacts-location-wrapper {
    width: 100%;
  }

  .contacts-content-wrapper {
    flex-wrap: wrap;
  }

  .contacts-content {
    width: 100%;
    padding-right: 0;
  }

  .footer-wrapper {
    grid-row-gap: 40px;
    margin-bottom: 50px;
    padding-left: 0;
    padding-right: 0;
  }

  .footer-brand-wrapper {
    width: 100%;
  }

  .footer-brand {
    padding-left: 0;
  }

  .footer-links-block-wrapper {
    width: 100%;
  }

  .search-result-item {
    margin-bottom: 20px;
  }

  .customer-wrapper {
    height: 240px;
  }

  .accordion-wrapper-one-column {
    width: 100%;
  }

  .service-list-wrapper {
    grid-template-columns: 1fr;
  }

  .service-list-section-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-wrap: wrap;
  }

  .service-list-section-wrap {
    width: 100%;
    padding-left: 0;
  }

  .service-list {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .service-list-2-bottom-left-block, .service-list-2-bottom-center-block {
    width: 100%;
  }

  .about-1-features-wrapper {
    flex-wrap: wrap;
    margin-top: 40px;
  }

  .about-features-wrap {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }

  .about-features-wrap.last-child {
    margin-bottom: 0;
  }

  .about-1-counter-wrapper {
    flex-wrap: wrap;
  }

  .about-1-counter-number {
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .about-1-counter-wrap {
    width: 100%;
    padding: 10px 100px;
  }

  .about-us-clients-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-slide-item {
    margin-right: 0;
    padding-bottom: 30px;
  }

  .testimonials-slider-mask {
    width: 100%;
  }

  .team-slider {
    padding-top: 100px;
    padding-bottom: 0;
  }

  .team-slide-item {
    flex-wrap: wrap;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .team-slider-image {
    width: 100%;
  }

  .team-slider-image.image-center {
    object-position: 50% 30%;
  }

  .team-slide-item-desc {
    margin-top: 20px;
  }

  .about-1-list-wrapper {
    justify-content: center;
    padding-left: 0;
  }

  .about-2-slider-photo {
    max-width: 100%;
  }

  .about-us-features-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .about-center-card {
    width: 100%;
    margin-left: 0;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .about-card-number, .about-card-icon {
    font-size: 50px;
  }

  .about-card {
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .about-content-wrap {
    text-align: center;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .about-content-wrapper {
    flex-wrap: wrap;
    margin-bottom: 60px;
  }

  .about-3-card-with-image {
    width: 100%;
  }

  .about-3-center-card-with-image {
    width: 100%;
    margin-left: 0;
  }

  .about-3-image {
    height: 320px;
  }

  .about-3-progress-bar-wrapper {
    flex-wrap: wrap;
  }

  .about-3-progress-bar-content {
    text-align: center;
    width: 100%;
    margin-right: 0;
  }

  .about-3-progress-bar {
    width: 100%;
    margin-top: 20px;
  }

  .about-3-tab-link.w--current {
    font-size: 20px;
  }

  .about-3-tab-circle {
    top: auto;
    bottom: auto;
    left: -6px;
    right: auto;
  }

  .about-3-tab-image-wrap {
    width: 100%;
  }

  .about-3-tab-content-wrap {
    text-align: center;
    align-items: center;
    width: 100%;
  }

  .about-3-tab-pane-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 30px;
    flex-wrap: wrap;
  }

  .about-3-form-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-3-form {
    flex-wrap: wrap;
  }

  .team-slider-content {
    text-align: center;
    width: 100%;
    margin-top: 20px;
    margin-left: 0;
  }

  .team-slider-background {
    width: 100%;
    height: 35%;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: 0%;
  }

  .team-slider-left-arrow {
    top: 40px;
    bottom: auto;
    left: 72%;
    right: auto;
  }

  .team-slider-right-arrow {
    top: 40px;
    bottom: auto;
    left: 84%;
    right: auto;
  }

  .testimonials-slider-background {
    font-size: 60px;
  }

  .tabs-slider {
    padding-left: 0;
    padding-right: 0;
  }

  .tabs-slider-left-arrow {
    left: -15px;
  }

  .tabs-slider-right-arrow {
    right: -15px;
  }

  .blog-sidebar-left-wrapper {
    column-count: 1;
  }

  .secondary-button.form-button {
    border-radius: 4px;
    width: 100%;
  }

  .nav-search-wrapper {
    margin-top: 40px;
  }

  .nav-top-container {
    grid-column-gap: 30px;
    grid-row-gap: 10px;
    flex-wrap: wrap;
    height: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .paragraph-small.text-white.full-width-mobile {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
  }

  .banner-section {
    padding-top: 120px;
  }

  .banner-section.about-us, .banner-section.courses-banner, .banner-section.teachers {
    padding-top: 160px;
  }

  .home-banner-title-wrapper {
    max-width: 520px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
  }

  .home-banner-title {
    margin-top: 10px;
    margin-bottom: 40px;
    font-size: 40px;
  }

  .home-banner-subtitle {
    font-size: 18px;
  }

  .nav-logo-desktop {
    display: none;
  }

  .home-form-right-block {
    padding-left: 40px;
    padding-right: 40px;
  }

  .home-form {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-logo-mobile {
    display: block;
  }

  .home-form-input {
    border-radius: 4px;
    margin-bottom: 15px;
  }

  .section-title-underline {
    margin-top: 10px;
  }

  .home-team-wrapper {
    grid-row-gap: 40px;
    margin-bottom: 40px;
  }

  .home-team-wrap {
    max-width: 100%;
  }

  .pricing-description {
    font-size: 14px;
  }

  .footer-links-wrapper {
    margin-top: -10px;
  }

  .footer-links-title {
    margin-bottom: 20px;
  }

  .footer-form-input {
    border-radius: 4px;
    margin-bottom: 15px;
  }

  .footer-divider {
    display: none;
  }

  .text-left {
    font-size: 25px;
  }

  .testimonials-card {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .testimonial-card-quote-icon {
    font-size: 24px;
    top: -15px;
  }

  .about-trending-courses-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .tag-links-wrapper {
    margin-top: 30px;
    margin-bottom: 40px;
  }

  .course-template-author-wrapper {
    padding: 30px;
  }

  .blog-section-title {
    margin-bottom: 40px;
  }

  .hire-popup {
    max-width: 300px;
  }

  .hire-buttons-wrap {
    grid-row-gap: 20px;
    flex-flow: column wrap;
    align-items: stretch;
  }

  .team-slider-2 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 140px;
    padding: 60px 15px;
    display: flex;
  }

  .container {
    margin-left: 0;
    margin-right: 0;
    display: block;
  }

  .centered-heading {
    font-size: 40px;
  }

  .centered-subheading {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 18px;
  }

  .team-slider-wrapper {
    flex-direction: column;
    align-items: flex-end;
    width: auto;
    display: flex;
  }

  .team-slide-wrapper {
    width: 100%;
    max-width: 100%;
  }

  .team-member-name-two {
    font-size: 30px;
    font-weight: 700;
  }

  .team-member-text {
    font-size: 20px;
  }

  .team-slider-3 {
    padding: 60px 15px;
  }

  .team-member-name-two-2 {
    font-size: 28px;
  }

  .hero-heading-left, .hero-stack {
    padding: 60px 15px;
  }

  .barra-section {
    height: 40vh;
    margin-top: 80px;
  }

  .contenedor-barra {
    max-width: 60%;
    height: 260px;
    margin-top: -150px;
    top: 50%;
  }

  .heading-3 {
    font-size: 35px;
  }

  .mask {
    overflow: hidden;
  }

  .contenedor-de-about {
    height: 300px;
    margin-top: 100px;
  }

  .div-block-2 {
    margin-top: 140px;
  }

  .text-abotus {
    font-size: 20px;
  }

  .titulo-about {
    font-size: 25px;
  }

  .paragraph-4 {
    padding-left: 10px;
    font-size: 15px;
  }

  .button-about {
    margin-left: 10px;
    font-size: 15px;
  }

  .contenedor-de-purpose {
    height: 300px;
  }

  .text-purpose {
    font-size: 40px;
  }

  .heading-8 {
    font-size: 35px;
  }

  .bold-text-3 {
    font-size: 18px;
  }

  .team-slider-4 {
    padding: 60px 15px;
  }

  .centered-heading-3, .team-member-name-two-3 {
    font-size: 35px;
  }

  .team-member-text-3 {
    font-size: 18px;
  }

  .contenedor-business {
    height: 400px;
  }

  .section-4 {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .section-5 {
    margin-top: 0;
  }

  .contenedor-de-home {
    height: 490px;
  }

  .hero-stack-2 {
    padding: 60px 15px;
  }

  .contenedor-constrction {
    background-size: contain;
  }

  .image-5 {
    height: auto;
    margin-top: 0;
  }

  .hero-heading-left-2 {
    padding: 60px 15px;
  }

  .margin-bottom-24px-4 {
    font-size: 18px;
  }

  .heading-14 {
    font-size: 30px;
  }

  .pricing-overview {
    padding: 60px 15px;
  }

  .heading-16, .heading-17, .bold-text-24 {
    font-size: 20px;
  }

  .footer-dark {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-wrapper-2 {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .footer-block {
    align-items: center;
  }

  .footer-link-2:hover {
    color: rgba(26, 27, 31, .75);
  }

  .footer-social-block {
    margin-top: 20px;
    margin-left: -20px;
  }

  .footer-social-link-2 {
    margin-left: 20px;
  }

  .footer-divider-2 {
    margin-top: 60px;
  }

  .footer-light {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-copyright-2 {
    font-size: 14px;
    line-height: 20px;
  }

  .footer-social-block-two {
    margin-top: 20px;
  }

  .textarea {
    height: auto;
  }

  .pricing-overview-2, .gallery-scroll {
    padding: 60px 15px;
  }
}

@media screen and (max-width: 479px) {
  .section-purpose {
    margin-top: 0;
    display: block;
  }

  .section-purpose.image-background {
    margin-top: 0;
    padding-top: 0;
  }

  .base-container {
    margin-top: 0;
    line-height: 10px;
  }

  .grid-system-wrapper {
    flex-direction: row;
  }

  .grid-system {
    flex-direction: column;
    width: 50%;
  }

  .grid-title {
    align-items: center;
  }

  .grid-title.first-grid {
    text-align: center;
    width: 100%;
  }

  .grid-description {
    border-bottom-width: 1px;
    border-bottom-color: rgba(255, 255, 255, .2);
  }

  .grid-description.first-description {
    border-bottom: 1px rgba(255, 255, 255, .2);
    border-left-style: none;
    border-right-style: solid;
    padding-left: 0;
    padding-right: 0;
  }

  .grid-description.last-description {
    border-bottom-color: #a7a7a7;
  }

  .bottom-style-spacing-desktop {
    bottom: 8%;
  }

  .top-style-spacing-desktop {
    top: 7%;
  }

  .middle-style-spacing-desktop {
    top: 32%;
  }

  .color-container {
    flex-wrap: wrap;
  }

  .primary-button {
    text-align: center;
    width: 100%;
  }

  .primary-button.auto-width-mobile {
    width: auto;
  }

  .primary-button.sidebar-button {
    width: 100%;
  }

  .top-style-spacing-mobile {
    top: 5%;
  }

  .middlr-style-spacing-mobile {
    top: 28%;
  }

  .bottom-style-spacing-mobile {
    bottom: 8%;
  }

  .navbar {
    margin-left: 0;
    margin-right: 0;
  }

  .nav-menu {
    margin-top: 96px;
  }

  .nav-dropdown-toggle.justify-left {
    display: none;
  }

  .nav-dropdown-toggle.justify-left.w--current {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: none;
  }

  .nav-dropdown-list {
    display: flex;
  }

  .body {
    margin-left: 0;
    margin-right: 0;
  }

  .licensing-grid {
    grid-template-columns: 1fr;
  }

  .license-link {
    margin-right: 15px;
  }

  ._404-content-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .coming-soon-form {
    flex-wrap: wrap;
    justify-content: center;
  }

  .coming-soon-input {
    min-width: auto;
    margin-bottom: 10px;
  }

  .coming-soon-paragraph {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .coming-soon-heading {
    font-size: 32px;
  }

  .blog-grid-image {
    min-height: 240px;
  }

  .blog-classic-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .blog-classic-top-content, .blog-classic-bottom-content {
    padding-left: 25px;
    padding-right: 25px;
  }

  .blog-sidebar-post-content {
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .blog-sidebar-post-category {
    margin-bottom: 20px;
  }

  .sidebar-recent-posts, .sidebar-categories {
    padding: 10px 20px;
  }

  .blog-template-pagination {
    flex-wrap: wrap;
    justify-content: center;
  }

  .blog-template-prev-button {
    flex: none;
    width: 100%;
    margin-bottom: 20px;
  }

  .blog-template-next-button {
    flex: none;
    width: 100%;
    margin-top: 10px;
  }

  .footer {
    text-align: left;
    background-position: 104% 76%;
    background-size: auto 200px;
    margin-top: 0;
  }

  .footer-rights-wrapper {
    text-align: center;
    flex-wrap: wrap;
  }

  .footer-rights {
    margin-bottom: 10px;
  }

  .footer-copyright {
    justify-content: center;
  }

  .footer-copyright-link {
    margin-left: 5px;
  }

  .section-title-wrapper {
    text-align: center;
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .team-card-image {
    height: 360px;
  }

  .values-content-wrapper {
    margin-bottom: 15px;
  }

  .values-counter-wrapper {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-wrap: wrap;
  }

  .values-counter-item {
    width: 100%;
    padding: 20px;
  }

  .career-customers-wrapper {
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr;
  }

  .text-white {
    font-size: 25px;
  }

  .section-title {
    font-size: 29px;
  }

  .pricing-3-plan-item.center-item, .pricing-3-plan-item.left-item {
    padding-left: 15px;
    padding-right: 15px;
  }

  .pricing-plan-title-wrapper {
    padding-top: 40px;
    padding-bottom: 0;
  }

  .pricing-plan-content-wrapper {
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .pricing-plan-list-item.last-child {
    margin-bottom: 20px;
  }

  .pricing-features-icon {
    margin-right: 15px;
  }

  .paragraph.text-white {
    font-size: 15px;
  }

  .contacts-location-wrapper {
    margin-top: 20px;
  }

  .contacts-form-wrapper {
    padding: 15px;
  }

  .contacts-content-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-link {
    flex: 0 auto;
    width: 200px;
    display: block;
  }

  .footer-wrapper {
    margin-bottom: 40px;
  }

  .footer-brand-wrapper {
    flex-direction: column;
  }

  .footer-links-block-wrapper {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    display: block;
  }

  .service-list-process-wrap {
    width: 100%;
  }

  .service-list-2-bottom-left-block, .service-list-2-bottom-center-block {
    height: 320px;
  }

  .service-list-2-bottom-contacts {
    padding-left: 15px;
    padding-right: 15px;
  }

  .about-1-counter-wrap {
    padding-left: 40px;
    padding-right: 40px;
  }

  .about-us-clients-grid {
    grid-row-gap: 60px;
    grid-template-columns: 1fr;
  }

  .testimonials-slide-item {
    padding: 20px;
  }

  .testimonials-slider-mask {
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .team-slider {
    width: auto;
    padding-top: 80px;
  }

  .team-slide-item {
    flex-flow: wrap;
    width: 100%;
  }

  .team-slider-image.image-center {
    width: 100%;
    max-width: 100%;
  }

  .team-slide-item-desc {
    margin-bottom: 30px;
  }

  .about-list-wrap {
    margin-top: 30px;
  }

  .slide-2.ph-40 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .about-2-slider-photo {
    height: 380px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, .08);
  }

  .slide-3.ph-40 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .about-us-features-wrap {
    flex-wrap: wrap;
  }

  .slide-1.ph-40, .slide-4.ph-40, .slide-5.ph-40 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .about-center-card, .about-card {
    padding-left: 15px;
    padding-right: 15px;
  }

  .about-3-progress-bar-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .about-3-tab-link {
    font-size: 16px;
  }

  .about-3-tab-link.w--current {
    font-size: 18px;
  }

  .about-3-form-wrapper {
    text-align: center;
  }

  .about-3-form {
    justify-content: center;
  }

  .about-3-form-text-field {
    width: 100%;
    margin-bottom: 15px;
    margin-right: 0;
  }

  .team-slider-content, .team-slider-mask {
    width: 100%;
  }

  .team-slider-background {
    width: 100%;
    height: 60%;
  }

  .team-slider-left-arrow {
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: flex-end;
    display: block;
    top: 30px;
    left: 68%;
  }

  .team-slider-right-arrow {
    justify-content: flex-start;
    align-items: center;
    width: 40px;
    top: 30px;
    overflow: hidden;
  }

  .testimonials-quote-icon {
    margin-bottom: 20px;
    font-size: 40px;
  }

  .testimonials-slider-background {
    display: none;
  }

  .nav-menu-shadow-overlay {
    opacity: 1;
  }

  .sidebar-search {
    padding: 20px;
  }

  .sidebar-search-wrapper {
    flex-wrap: wrap;
    margin-top: 0;
    margin-bottom: 0;
  }

  .sidebar-search-input {
    margin-bottom: 15px;
  }

  .nav-dropdown-underline {
    display: none;
  }

  .nav-top-container {
    grid-row-gap: 10px;
    height: 20px;
  }

  .paragraph-small.text-white.full-width-mobile {
    font-size: 15px;
    display: inline-block;
  }

  .flex-horizontal-center, .nav-icon, .nav-top-container-link {
    display: none;
  }

  .banner-section {
    padding-top: 144px;
  }

  .banner-section.about-us, .banner-section.courses-banner, .banner-section.teachers {
    padding-top: 184px;
  }

  .text-primary-color {
    font-size: 25px;
  }

  .slider-arrow.home-gallery-left {
    display: none;
    left: 0;
  }

  .slider-arrow.home-gallery-right {
    display: none;
    right: 0;
  }

  .slider-arrow.about-us-left-arrow {
    display: none;
    left: -10px;
  }

  .slider-arrow.about-us-right-arrow {
    display: none;
    right: -10px;
  }

  .slider-arrow.about-us {
    display: none;
  }

  .home-form-left-block, .home-form-right-block {
    padding-left: 15px;
    padding-right: 15px;
  }

  .home-form-input {
    font-size: 14px;
  }

  .home-features-grid {
    grid-template-columns: 1fr;
  }

  .home-form-icon {
    top: -50px;
    left: 0;
  }

  .home-features-item {
    text-align: center;
  }

  .accent-text-color.about-us-3 {
    display: inline;
  }

  .home-welcome-block-image {
    max-width: 40%;
  }

  .home-team-wrap {
    margin-top: 0;
  }

  .home-team-image-wrapper {
    flex-wrap: wrap;
    margin-bottom: 0;
  }

  .home-team-content-wrapper {
    width: 100%;
    padding-bottom: 15px;
  }

  .home-team-image {
    object-position: 50% 0%;
    width: 100%;
    top: 0;
  }

  .home-team-social-links-wrapper {
    padding-bottom: 30px;
    padding-left: 30px;
  }

  .top-footer-image {
    width: 50%;
  }

  .top-footer-image.center {
    width: 100%;
  }

  .footer-events-wrapper {
    padding-right: 0;
  }

  .text-left {
    font-size: 15px;
  }

  .courses-list {
    grid-template-columns: 1fr;
  }

  .features-blue-bg-item {
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .about-trending-courses-wrap {
    padding-left: 10px;
    padding-right: 10px;
  }

  .courses-2-list {
    grid-template-columns: 1fr;
  }

  .course-template-author-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
  }

  .course-template-author-content-wrapper {
    align-items: center;
  }

  .buy-now-fixed, .view-our-templates {
    display: none;
  }

  .hire-popup {
    bottom: 90px;
    left: auto;
    right: 12px;
  }

  .heading {
    font-size: 25px;
  }

  .team-slider-2 {
    height: auto;
    margin-top: 0;
    padding: 0;
    display: block;
  }

  .container {
    max-width: none;
    margin-top: 40px;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
  }

  .centered-heading {
    margin-top: 0;
    margin-bottom: 24px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 28px;
  }

  .centered-subheading {
    text-align: justify;
    margin-bottom: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .team-slider-wrapper {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: auto;
    margin-top: 10px;
    display: block;
  }

  .team-slide-wrapper {
    width: auto;
    max-width: none;
    margin-left: 0%;
    margin-right: 0%;
  }

  .team-block {
    width: auto;
    display: none;
  }

  .team-member-image-two {
    flex: 0 auto;
    max-width: none;
    display: block;
    overflow: hidden;
  }

  .team-block-info {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .team-member-name-two {
    font-size: 25px;
  }

  .team-slider-arrow {
    width: auto;
  }

  .body-2 {
    margin-left: 0;
    margin-right: 0;
  }

  .team-slider-3 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .container-2 {
    max-width: none;
  }

  .centered-heading-2 {
    margin-bottom: 24px;
  }

  .team-slide-wrapper-2 {
    width: 100%;
    margin-right: 0%;
  }

  .team-member-image-two-2 {
    margin-top: 0;
  }

  .team-member-name-two-2 {
    font-size: 25px;
  }

  .container-3 {
    max-width: none;
  }

  .barra-section {
    background-image: none;
    height: auto;
    margin-top: 80px;
    overflow: hidden;
  }

  .contenedor-barra {
    max-width: 60%;
    height: 250px;
    margin-top: 0;
    margin-left: 20px;
    font-size: 18px;
    top: 25%;
  }

  .heading-3 {
    font-size: 24px;
    line-height: 1.6em;
  }

  .heading-4 {
    margin-top: 0;
    font-size: 25px;
  }

  .heading-5 {
    font-size: 20px;
  }

  .mask {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .contenedor-de-about {
    background-position: 70%;
    height: 400px;
    margin-top: 100px;
  }

  .div-block-2 {
    margin-top: 180px;
  }

  .text-abotus {
    font-size: 13px;
  }

  .titulo-about {
    margin-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 28px;
  }

  .paragraph-4 {
    color: var(--dark-gray);
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    padding-right: 10px;
    font-size: 20px;
  }

  .button-about {
    text-align: center;
    border-radius: 7px;
    margin-top: 20px;
    font-size: 15px;
  }

  .contenedor-de-purpose {
    height: 400px;
  }

  .text-purpose {
    font-size: 30px;
  }

  .heading-8 {
    margin-top: 0;
    font-size: 28px;
    font-style: italic;
  }

  .bold-text-3 {
    color: var(--text-dark);
    text-align: justify;
    font-size: 18px;
  }

  .container-4 {
    max-width: none;
  }

  .centered-heading-3 {
    margin-bottom: 24px;
    font-size: 28px;
  }

  .team-slide-wrapper-3 {
    width: 100%;
    margin-right: 0%;
  }

  .team-member-name-two-3 {
    font-size: 25px;
  }

  .team-member-text-3 {
    color: var(--text-dark);
    text-align: justify;
    margin-bottom: 10px;
    font-size: 18px;
  }

  .contenedor-business {
    height: 400px;
    margin-top: 100px;
  }

  .section-2 {
    margin-top: 50px;
  }

  .contenedor-productivity {
    height: 400px;
    margin-top: 100px;
  }

  .contenedor-mental {
    background-position: 50%;
    height: 400px;
    margin-top: 100px;
  }

  .section-values {
    margin-top: -30px;
  }

  .project-title {
    font-size: 20px;
  }

  .section-5 {
    max-width: 100%;
  }

  .text-bussiness {
    padding-left: 0;
    padding-right: 0;
  }

  .contenedor-de-bus1 {
    background-position: 50%;
    background-size: cover;
    height: 400px;
  }

  .list {
    margin-left: 20px;
    padding-left: 10px;
    padding-right: 10px;
    line-height: 1.2em;
  }

  .bold-text-13 {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 28px;
  }

  .contenedor-de-home {
    background-image: url('../images/personas-que-utilizan-dispositivos-digitales-reunion.jpg');
    background-position: 80%;
    background-size: cover;
    width: auto;
    height: 400px;
  }

  .container-6 {
    text-align: left;
  }

  .bold-text-16, .bold-text-17, .bold-text-18, .bold-text-19, .bold-text-20, .bold-text-22 {
    font-size: 20px;
  }

  .contenedor-de-bus2 {
    height: 400px;
  }

  .contenedor-de-bus3 {
    background-position: 50%;
    background-repeat: repeat;
    background-size: cover;
    height: 400px;
  }

  .contenedor-de-bus4, .contenedor-de-bus5 {
    background-position: 50%;
    height: 400px;
  }

  .contenedor-de-bus6 {
    background-position: 50%;
    background-size: cover;
    height: 400px;
  }

  .contenedor-prod1 {
    background-image: url('../images/equipo-negocios-feliz-manos-levantadas-celebrando-su-exito-oficina.jpg');
    background-position: 50%;
    background-size: cover;
    height: 400px;
  }

  .contenedor-prod2 {
    height: 400px;
  }

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

  .contenedor-prod3 {
    background-position: 50%;
    height: 400px;
  }

  .contenedor-prod4 {
    height: 400px;
  }

  .container-8 {
    max-width: none;
  }

  .contenedor-constrction {
    background-position: 0 0;
    height: 320px;
    margin-bottom: 0;
  }

  .section-about {
    margin-top: 40px;
  }

  .section-11 {
    margin-top: -50px;
  }

  .image-5 {
    max-width: none;
    margin-top: 0;
  }

  .italic-text, .container-12 {
    font-size: 28px;
  }

  .bold-text-23 {
    color: var(--dark-gray);
  }

  .contenedor-de-mental1 {
    background-image: url('../images/mujer-oficina-estirandose-dia-trabajo.jpg');
    background-position: 50% 0;
    background-size: cover;
    height: 400px;
  }

  .contenedor-mental2 {
    background-position: 50%;
    background-size: cover;
    height: 400px;
  }

  .container-15 {
    max-width: none;
  }

  .hero-wrapper-2 {
    padding-left: 0;
    padding-right: 0;
  }

  .container-16 {
    max-width: none;
  }

  .centered-heading-4 {
    margin-bottom: 24px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .button-descarga {
    margin-top: 10px;
    margin-left: 0;
  }

  .contenedor-prod5 {
    background-position: 50%;
  }

  .container-18 {
    max-width: none;
  }

  .footer-wrapper-two {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-block-two {
    margin-top: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-social-block-two {
    margin-top: 20px;
  }

  .container-contact {
    width: 100%;
    max-width: 100%;
    height: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-contact {
    width: 100%;
  }

  .second-name, .email-contact {
    width: 280px;
  }

  .field-label-3, .field-label-4 {
    width: 200px;
  }

  .form {
    width: 70%;
  }

  .textarea {
    width: 300px;
    height: 500px;
    display: block;
  }

  .phone {
    width: 280px;
  }

  .submit-button {
    margin-left: 0;
    display: block;
  }

  .form-block-2 {
    height: auto;
    display: block;
  }

  .container-19 {
    max-width: none;
  }

  .centered-heading-5 {
    margin-bottom: 24px;
  }

  .pricing-grid-2, .gallery-wrapper {
    grid-template-columns: 1fr;
  }

  .heading-18 {
    margin-top: 100px;
  }

  .container-20 {
    margin-top: 60px;
  }

  .body-3, .body-4, .body-5, .body-6, .body-7, .body-8, .body-9, .body-10, .body-11, .body-12, .body-13, .body-14, .body-15, .body-16, .body-17, .body-18, .body-19, .body-20, .body-21, .body-22 {
    margin-left: 0;
    margin-right: 0;
  }
}

#w-node-_02ed7f4a-4066-178e-8823-9830b6d936ac-b6d936a3, #w-node-_02ed7f4a-4066-178e-8823-9830b6d936b2-b6d936a3, #w-node-_02ed7f4a-4066-178e-8823-9830b6d936b8-b6d936a3, #w-node-_12a96764-444d-c117-7596-bb849e638488-9f3396b3, #w-node-_6776463f-c04a-5870-a125-84344c90f2a1-9f3396b3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ad2b74c3-e486-387b-22bd-7ed5afabf74e-9f3396b5, #w-node-ad2b74c3-e486-387b-22bd-7ed5afabf750-9f3396b5, #w-node-ad2b74c3-e486-387b-22bd-7ed5afabf752-9f3396b5, #w-node-ad2b74c3-e486-387b-22bd-7ed5afabf754-9f3396b5, #w-node-ad2b74c3-e486-387b-22bd-7ed5afabf756-9f3396b5, #w-node-ad2b74c3-e486-387b-22bd-7ed5afabf758-9f3396b5 {
  justify-self: center;
}

#w-node-aee7da0c-38cf-2e9b-7c92-29b73f003177-9f3396ba, #w-node-aee7da0c-38cf-2e9b-7c92-29b73f003181-9f3396ba, #w-node-aee7da0c-38cf-2e9b-7c92-29b73f00318b-9f3396ba, #w-node-_6a078d37-a03b-58b0-5746-bd390040e948-9f3396fd, #w-node-_6a078d37-a03b-58b0-5746-bd390040e94a-9f3396fd, #w-node-_6a078d37-a03b-58b0-5746-bd390040e94c-9f3396fd, #w-node-_6a078d37-a03b-58b0-5746-bd390040e94e-9f3396fd, #w-node-_6a078d37-a03b-58b0-5746-bd390040e950-9f3396fd, #w-node-_6a078d37-a03b-58b0-5746-bd390040e953-9f3396fd, #w-node-_6a078d37-a03b-58b0-5746-bd390040e955-9f3396fd, #w-node-_6a078d37-a03b-58b0-5746-bd390040e957-9f3396fd, #w-node-_6a078d37-a03b-58b0-5746-bd390040e959-9f3396fd, #w-node-_6a078d37-a03b-58b0-5746-bd390040e95b-9f3396fd, #w-node-_54b77a08-0a65-4ac8-b518-45ad5c26b8f1-12c5b372, #w-node-_54b77a08-0a65-4ac8-b518-45ad5c26b8fb-12c5b372, #w-node-_54b77a08-0a65-4ac8-b518-45ad5c26b905-12c5b372, #w-node-_5795cfb6-c65e-ee7d-50d6-daed24841869-12c5b372 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5795cfb6-c65e-ee7d-50d6-daed24841879-12c5b372 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#virtual-booths.w-node-_5795cfb6-c65e-ee7d-50d6-daed2484187a-12c5b372, #w-node-_5795cfb6-c65e-ee7d-50d6-daed2484187b-12c5b372, #access-dash.w-node-_5795cfb6-c65e-ee7d-50d6-daed2484187e-12c5b372, #w-node-_5795cfb6-c65e-ee7d-50d6-daed2484187f-12c5b372, #lead-retrieval.w-node-_5795cfb6-c65e-ee7d-50d6-daed24841882-12c5b372, #w-node-_5795cfb6-c65e-ee7d-50d6-daed24841883-12c5b372, #lead-scoring.w-node-_5795cfb6-c65e-ee7d-50d6-daed24841886-12c5b372, #w-node-_5795cfb6-c65e-ee7d-50d6-daed24841887-12c5b372, #sponsored-sections.w-node-_5795cfb6-c65e-ee7d-50d6-daed2484188a-12c5b372, #w-node-_5795cfb6-c65e-ee7d-50d6-daed2484188b-12c5b372 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_5795cfb6-c65e-ee7d-50d6-daed24841869-12c5b372 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_5795cfb6-c65e-ee7d-50d6-daed24841869-12c5b372, #w-node-_5795cfb6-c65e-ee7d-50d6-daed24841879-12c5b372 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Fa brands 400';
  src: url('../fonts/fa-brands-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa solid 900';
  src: url('../fonts/fa-solid-900.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Materialicons';
  src: url('../fonts/MaterialIcons-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 400';
  src: url('../fonts/fa-regular-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}