:root {
  --dark-slate-grey: #264c5c;
  --black-2: #202020;
  --grey: #576b6f;
  --lime-green: #0fa6ac;
  --pale-turquoise: #b7fdfa;
  --black: black;
  --azure-2: #e2eff1;
  --medium-aquamarine: #58d69d;
  --azure: #eff9fb;
  --light-grey: #cdd8da;
  --yellow-green: #19b5dc;
  --forest-green: #338f18;
  --white-smoke: #f6f6f6;
  --royal-blue: #285aff;
  --blue: #113bc5;
  --dc9694: #1b8daa;
  --sky-blue: #feebdc;
  --antique-white: #f0c6a6;
  --gainsboro: #e7e7e7;
  --white-smoke-2: #f4f9fa;
}

.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;
}

body {
  color: var(--dark-slate-grey);
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  color: var(--dark-slate-grey);
  margin-top: 10px;
  margin-bottom: 20px;
  font-family: Roboto, sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
}

h2 {
  color: var(--black-2);
  margin-top: 10px;
  margin-bottom: 20px;
  font-family: Roboto, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 46px;
}

h3 {
  color: var(--black-2);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Roboto, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
}

h4 {
  color: var(--dark-slate-grey);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Roboto, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

h5 {
  color: var(--black-2);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

h6 {
  color: var(--black-2);
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-weight: 900;
  line-height: 22px;
}

p {
  color: var(--grey);
  margin-bottom: 10px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  line-height: 26px;
}

a {
  color: var(--lime-green);
  text-decoration: underline;
}

ul {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 40px;
}

li {
  color: var(--black-2);
  margin-top: 7px;
  margin-bottom: 7px;
  font-family: Roboto, sans-serif;
  font-weight: 500;
}

strong {
  color: var(--black-2);
  font-weight: 700;
}

blockquote {
  border-left: 5px solid var(--lime-green);
  color: var(--black-2);
  margin-top: 32px;
  margin-bottom: 32px;
  padding: 20px;
  font-family: Roboto, sans-serif;
  font-size: 22px;
  line-height: 32px;
}

.button {
  border: 1px solid var(--dark-slate-grey);
  color: var(--dark-slate-grey);
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0;
  padding: 15px 30px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  transition: background-color .4s, transform .4s;
  display: inline-block;
}

.button:hover {
  border-color: var(--dark-slate-grey);
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(135deg, var(--dark-slate-grey) 24%, #588992 58%, var(--pale-turquoise));
  color: #fff;
  transform: translate(0, -3px);
}

.button.padding {
  border-color: var(--lime-green);
  margin-top: 40px;
}

.button.padding:hover {
  border-color: var(--lime-green);
  background-color: rgba(0, 0, 0, 0);
}

.button.color {
  border-style: none;
  border-color: var(--lime-green);
  color: #fff;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0;
  padding-left: 30px;
  padding-right: 30px;
  transition-duration: .4s, .4s;
}

.button.color:hover {
  background-color: var(--dark-slate-grey);
  background-image: none;
}

.button.color.padding {
  background-color: var(--lime-green);
  color: #fff;
  background-image: none;
  border-radius: 0;
}

.button.color.padding:hover {
  background-color: var(--dark-slate-grey);
  color: #fff;
}

.button.color.full-submit {
  width: 100%;
  background-color: var(--black-2);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

.button.color.bigger {
  padding-left: 40px;
  padding-right: 40px;
}

.button.outline {
  color: #fff;
  border-color: #fff;
  padding-left: 30px;
  padding-right: 30px;
}

.button.outline:hover {
  color: var(--dark-slate-grey);
  background-color: #fff;
  background-image: none;
}

.button.outline.color {
  border-style: solid;
  border-color: var(--lime-green);
  background-color: rgba(0, 0, 0, 0);
  display: inline-block;
}

.button.outline.color:hover {
  color: var(--lime-green);
  background-color: #fff;
  border-color: #fff;
}

.button.off {
  cursor: default;
  margin-bottom: 25px;
}

.nav-button {
  align-items: center;
  display: flex;
}

.intro {
  justify-content: flex-start;
  align-items: center;
  margin-top: 0;
  display: flex;
}

.intro.w--current {
  margin-top: 0;
}

.nav-menu {
  flex-direction: row;
  align-items: center;
  display: flex;
}

.navigation-container {
  max-width: 1200px;
  border-top-right-radius: 3px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 0;
  display: block;
}

.navigation-container.navigation {
  width: 100%;
  height: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.navigation-div {
  height: auto;
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.navbar {
  z-index: 100;
  height: 90px;
  background-color: rgba(0, 0, 0, 0);
  border: 2px #000;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  display: flex;
  position: fixed;
  top: auto;
  left: 0;
  right: 0;
}

.navbar.white {
  background-color: #fff;
}

.section {
  height: auto;
  background-color: #fff;
  justify-content: center;
  padding: 120px 0;
  font-family: Roboto, sans-serif;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section:hover {
  background-color: rgba(0, 0, 0, 0);
}

.section.gray {
  height: auto;
  background-color: rgba(183, 253, 250, .4);
  padding: 120px 0;
  display: none;
}

.section.gray._2 {
  display: none;
}

.section.footer {
  background-color: var(--dark-slate-grey);
  border: 1px #000;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.section.footer.white {
  color: #fff;
  background-color: #fff;
}

.section.testimonials-section {
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(to bottom, var(--black-2), rgba(0, 0, 0, .95)), url('../images/Untitled-2.png'), url('../images/Untitled-2.png'), linear-gradient(to bottom, var(--black-2), var(--black));
  background-position: 0 0, 90% 90%, 0 0, 0 0;
  background-repeat: repeat, no-repeat, no-repeat, repeat;
  background-size: auto, 200px, auto, auto;
}

.section.seocnd {
  height: 100vh;
  background-color: var(--azure-2);
  padding-top: 0;
  padding-bottom: 0;
}

.section.third {
  height: auto;
  background-color: var(--azure-2);
  padding-bottom: 0;
}

.section.no-top-padding {
  padding-top: 0;
}

.section.one {
  height: 940px;
  font-family: Roboto, sans-serif;
}

.container {
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: block;
  position: relative;
}

.container.inner {
  margin-top: 60px;
}

.hero {
  height: 100%;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  position: relative;
}

.hero.second {
  flex-flow: wrap;
  align-items: center;
}

.hero-info {
  width: 50%;
  height: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 8%;
  line-height: 24px;
  display: flex;
}

.hero-info.second {
  height: 100%;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 4%;
  position: relative;
}

.title {
  color: var(--lime-green);
  letter-spacing: 1px;
  text-transform: capitalize;
  margin-bottom: 0;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}

.link {
  color: #333;
  margin-top: -4px;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 11px;
  line-height: 16px;
  position: relative;
  overflow: hidden;
}

.hero-image {
  width: 50%;
  height: 700px;
  background-image: url('../images/curso-medico.jpg');
  background-position: 15%;
  background-repeat: no-repeat;
  background-size: auto 100%;
  border-radius: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.hero-image.second {
  width: 50%;
  height: 100%;
  filter: brightness(110%) contrast(116%);
  background-image: url('../images/pexels-olia-danilevich-5088188-2-1-1-1-1.png');
  background-position: 50% 100%;
  background-size: contain;
  align-items: flex-end;
  padding-left: 20px;
  padding-right: 20px;
}

.hero-image.third {
  background-image: url('../images/Untitled-3-1.png');
  background-position: 50% 100%;
  background-size: contain;
}

.overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  background-image: url('../images/Untitled-2.png'), linear-gradient(to bottom, var(--medium-aquamarine), var(--lime-green));
  color: #fff;
  background-position: 50% 100%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: auto, auto;
  border-radius: 0;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 40px 40px 0;
  display: none;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.overlay-image {
  height: 100%;
  background-image: url('../images/5f62457e9724e90a296dd732_Image-2.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 600px;
  border-radius: 0;
  padding-top: 0;
  padding-left: 0;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.heading {
  color: var(--dark-slate-grey);
  margin-bottom: 40px;
  font-family: Roboto, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 58px;
  text-decoration: none;
}

.heading.dark {
  color: var(--dark-slate-grey);
  text-align: left;
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: 500;
  line-height: 50px;
  text-decoration: none;
}

.heading.dark.center {
  text-align: center;
  justify-content: center;
  font-size: 40px;
  line-height: 50px;
  display: flex;
}

.heading.white {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 500;
  text-decoration: none;
}

.heading-in-div {
  z-index: 2;
  text-align: center;
  margin-top: auto;
  margin-bottom: auto;
  padding-left: 40px;
  padding-right: 40px;
  font-family: Georgia, Times, Times New Roman, serif;
  position: relative;
}

.heading-in-div.left {
  text-align: left;
  margin-top: 0;
  margin-bottom: 40px;
  padding-left: 0;
  padding-right: 40px;
  font-family: Roboto, sans-serif;
  font-size: 28px;
  font-weight: 300;
  line-height: 38px;
}

.heading-in-div.left.white {
  color: #fff;
}

.gray-block {
  width: 46%;
  background-color: var(--azure-2);
  background-image: linear-gradient(rgba(183, 253, 250, .5), rgba(183, 253, 250, .5)), url('../images/Sobisa-Logo.svg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  border-radius: 0;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.social-icon {
  width: 32px;
  height: 32px;
  background-color: var(--azure-2);
  opacity: .7;
  background-image: url('../images/facebook-logo-Black.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 16px;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  margin-right: 4px;
  transition: background-color .2s;
  display: flex;
}

.social-icon:hover {
  opacity: 1;
}

.social-icon.twiitter {
  background-color: var(--azure-2);
  background-image: url('../images/twitter-logo-silhouette-2.png');
}

.social-icon.twiitter.white {
  background-color: #fff;
}

.social-icon.google {
  background-color: var(--azure-2);
  opacity: .7;
  background-image: url('../images/icon-5.png');
}

.social-icon.google.white {
  background-color: var(--pale-turquoise);
}

.social-icon.insta {
  background-color: var(--azure-2);
  background-image: url('../images/instagram-1.png');
}

.social-icon.insta.white, .social-icon.white {
  background-color: var(--pale-turquoise);
}

.link-block-social {
  border-radius: 0;
  margin-left: 0;
  margin-right: 0;
  display: inline-block;
  position: relative;
}

.link-block-twitter {
  margin-left: 0;
  margin-right: 0;
}

.social-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  bottom: 40px;
  left: 0;
}

.social-wrapper.footer {
  text-align: left;
  background-color: rgba(0, 0, 0, 0);
  border: 1px #000;
  margin-top: 20px;
  padding: 0;
  display: block;
  position: static;
}

.section-page {
  padding-top: 96px;
  padding-bottom: 96px;
  font-family: Roboto, sans-serif;
  display: none;
  position: relative;
}

.section-page.cta-section {
  background-color: var(--lime-green);
  background-image: linear-gradient(rgba(38, 76, 92, .9), rgba(38, 76, 92, .9)), url('../images/Untitled-xx2.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  padding-top: 120px;
  padding-bottom: 120px;
  font-family: Roboto, sans-serif;
  position: relative;
}

.section-page.gray {
  background-color: var(--azure);
  font-family: Roboto, sans-serif;
  position: relative;
}

.section-page.submit-section {
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/Untitled-1hh.jpg');
  background-position: 0 0, 50% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.section-page.no-top-padding {
  padding-top: 0;
  padding-bottom: 120px;
}

.logo-wrapper {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
}

.logo-grid-wrapper {
  width: 100%;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 0;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.logo-div {
  width: 100%;
  height: 160px;
  border: 0 #000;
  justify-content: center;
  align-items: center;
  padding: 60px 17px;
  display: flex;
}

.logo-div.middle {
  border-left: 1px solid #e4e4e4;
  border-right: 1px solid #e4e4e4;
}

.text {
  min-height: 145px;
  color: var(--grey);
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.text-span {
  color: var(--lime-green);
  font-weight: 700;
  text-decoration: none;
}

.text-info {
  padding-right: 60px;
}

.button-padding {
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.button-padding.left {
  justify-content: flex-start;
}

.page-title {
  width: 100%;
  max-width: none;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.page-title.right {
  max-width: 500px;
  text-align: left;
  align-items: flex-start;
  margin-left: 0;
  margin-right: auto;
  position: -webkit-sticky;
  position: sticky;
}

.page-title.less-margin {
  margin-bottom: 0;
}

.page-title.cta {
  width: 70%;
  color: #fff;
  background-image: linear-gradient(rgba(255, 255, 255, .97), rgba(255, 255, 255, .97)), url('../images/Untitled-2.png');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, contain;
  margin-bottom: 0;
  padding-top: 40px;
  padding-bottom: 40px;
}

.page-title.cta.empty {
  background-image: none;
  padding-top: 0;
  padding-bottom: 0;
}

.page-title.cta.gray {
  background-image: linear-gradient(rgba(239, 249, 251, .94), rgba(239, 249, 251, .94)), url('../images/Untitled-2.png');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, contain;
}

.big-paragraph {
  color: var(--dark-slate-grey);
  margin-top: 10px;
  padding-right: 20px;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  line-height: 28px;
}

.big-paragraph.white {
  color: #fff;
}

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

.big-paragraph.center.percentual {
  width: 40%;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

.big-paragraph.top-padding {
  margin-top: 40px;
}

.cta-grid {
  width: 100%;
  grid-column-gap: 20px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.features-title {
  align-items: flex-start;
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  display: flex;
}

.features-title.cta {
  margin-top: 10px;
}

.section-heading {
  width: 100%;
  max-width: none;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.section-heading.left {
  border: 1px #000;
  align-items: flex-start;
  margin-bottom: 60px;
}

.section-heading.left.padding {
  margin-top: 40px;
  margin-bottom: 40px;
}

.text-field-contact {
  height: 50px;
  min-width: 100%;
  float: left;
  border: 1px solid var(--azure-2);
  background-color: var(--azure);
  color: var(--black-2);
  border-radius: 0;
  margin-bottom: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Roboto, sans-serif;
  font-size: 15px;
  line-height: 25px;
}

.text-field-contact:hover {
  border-bottom-color: #e4e8ee;
}

.success-message {
  background-color: var(--medium-aquamarine);
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  border-radius: 0;
  font-family: Roboto, sans-serif;
  font-size: 15px;
  line-height: 25px;
}

.error-message-second {
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  background-color: red;
  border-radius: 10px;
  padding: 20px;
  font-family: Lato, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 25px;
}

.left-form {
  height: auto;
  text-align: left;
  padding: 40px;
}

.white {
  color: #d2d2f5;
}

.footer-link {
  color: var(--pale-turquoise);
  border: 1px #000;
  margin-bottom: 0;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 36px;
  text-decoration: none;
  transition: border .3s, color .3s;
  display: inline-block;
}

.footer-link:hover {
  color: var(--lime-green);
  border: 1px #000;
  text-decoration: none;
}

.footer-link._2 {
  display: none;
}

.form-block {
  flex-direction: column;
  margin-top: 40px;
  margin-bottom: 20px;
  display: flex;
}

.form-block.in-section {
  width: 100%;
  margin: 0 auto;
}

.footer {
  text-align: center;
  background-color: #000;
  border-top: 1px solid #e3e3e3;
  align-items: flex-start;
  padding: 60px 20px 20px;
  position: relative;
}

.form {
  border: 1px solid var(--azure-2);
  background-color: var(--dark-slate-grey);
  color: #fff;
  border-radius: 0;
  align-items: center;
  padding: 5px 5px 5px 20px;
  display: flex;
}

.form.white {
  background-color: #fff;
}

.form.hero {
  background-color: #fff;
  margin-top: 20px;
  padding-left: 5px;
}

.error-message {
  color: #fff;
  text-align: center;
  background-color: red;
  border-radius: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: Roboto, sans-serif;
  font-size: 15px;
  line-height: 25px;
}

.case-link {
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0;
  padding: 0;
  text-decoration: none;
  transition: transform .4s, box-shadow .4s;
  display: block;
  overflow: hidden;
}

.case-link:hover {
  background-color: #fff;
  transform: translate(0, -5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
}

.image-case-study {
  height: 200px;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: cover;
  border-radius: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.features-name {
  color: #18143b;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

.features-name.link {
  color: var(--black-2);
  margin-bottom: 0;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  line-height: 28px;
  text-decoration: none;
  transition: color .2s;
  display: block;
}

.features-name.link:hover {
  color: var(--lime-green);
}

.features-name.bigger {
  color: var(--dark-slate-grey);
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
}

.features-name.bigger.padding {
  color: var(--dark-slate-grey);
  margin-top: 40px;
  margin-bottom: 10px;
  font-weight: 500;
}

.date-time-text {
  color: var(--dark-slate-grey);
  margin-right: 0;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  transition: color .4s;
  display: inline-block;
}

.date-time-text:hover {
  color: var(--lime-green);
}

.date-time-text.big {
  color: var(--azure);
  font-size: 20px;
}

.date-time-text.padding {
  margin-bottom: 40px;
}

.date-time-text.white {
  color: #fff;
}

.date-time-text.white:hover {
  color: var(--azure-2);
}

.section-column-grid {
  width: 100%;
  grid-template-rows: auto;
  align-items: center;
}

.date-time {
  border: 1px #000;
  align-items: center;
  margin-top: 0;
  padding-top: 0;
  display: flex;
}

.date-time.single-line {
  border: 1px #000;
  margin-top: 0;
  padding-top: 5px;
  padding-bottom: 5px;
}

.date-time.single-line.cms {
  padding-top: 0;
  padding-bottom: 0;
}

.date-time.center {
  border-top-style: none;
  justify-content: center;
  margin-top: 0;
}

.date-time.padding {
  margin-top: 40px;
}

.date-icon {
  width: 15px;
  height: 15px;
  background-image: url('../images/icons8-marker-90_1icons8-marker-90.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 5px;
}

.date-icon.time {
  background-image: url('../images/icons8-clock-104_1icons8-clock-104.png');
  margin-left: 10px;
  margin-right: 5px;
}

.date-icon.time.no-padding, .date-icon.time.no-padding.invert {
  margin-left: 0;
}

.date-icon.time.invert {
  margin-left: 20px;
}

.date-icon.author {
  background-image: url('../images/icons8-account-96_1icons8-account-96.png');
  background-size: cover;
  margin-left: 10px;
}

.date-icon.author.invert.no-padding {
  margin-left: 0;
}

.date-icon.invert {
  width: 20px;
  height: 20px;
  filter: invert();
  margin-right: 10px;
}

.date-icon.certificate {
  width: 20px;
  height: 20px;
  background-image: url('../images/icons8-certificate-96_1icons8-certificate-96.png');
  margin-left: 10px;
  margin-right: 10px;
}

.features-info {
  background-color: #fff;
  padding: 20px 40px 40px;
  overflow: visible;
}

.features-info.single-line {
  width: 100%;
  height: auto;
  border-style: solid none;
  border-width: 0 1px;
  border-color: var(--light-grey);
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0;
  align-items: center;
  margin-top: -1px;
  margin-bottom: 0;
  padding: 20px 40px 20px 0;
  transition: transform .4s;
  display: flex;
  overflow: hidden;
}

.features-info.single-line.less {
  border-left-style: none;
  border-right-style: none;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 20px;
}

.features-info.no-padding {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.features-info.gray {
  background-color: var(--azure);
}

.author-features {
  width: 50px;
  height: 50px;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: cover;
  border: 2px solid #fff;
  border-radius: 0;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 14px;
  overflow: hidden;
}

.small-text {
  text-align: center;
  margin-top: 0;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  line-height: 22px;
}

.small-text.right {
  color: var(--black-2);
  text-align: right;
  font-size: 14px;
  font-weight: 500;
}

.small-link {
  color: var(--lime-green);
  font-family: Roboto, sans-serif;
  font-weight: 500;
  text-decoration: underline;
  display: inline-block;
}

.small-link:hover {
  color: var(--black-2);
  text-decoration: underline;
}

.promo-block {
  grid-template-rows: auto;
}

.promo-block.top-algin {
  grid-column-gap: 40px;
  align-items: center;
}

.form-block-div {
  width: 500px;
  background-color: #fff;
  border: 1px #dbe3ff;
  border-radius: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

.field-label {
  color: var(--black-2);
  text-align: left;
  text-transform: none;
  margin-bottom: 8px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 23px;
}

.top-form {
  background-color: var(--lime-green);
  text-align: center;
  background-image: linear-gradient(rgba(88, 214, 157, .91), rgba(15, 166, 172, .98)), url('../images/Logo-Head-white.png');
  background-position: 0 0, 50% 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-radius: 0;
  padding: 30px;
}

.form-top-text {
  color: #fff;
  margin-bottom: 0;
  font-family: Roboto, sans-serif;
  font-size: 28px;
  font-weight: 300;
  line-height: 38px;
}

.video-button-div {
  z-index: 10;
  width: 200px;
  background-color: #fff;
  border-radius: 0;
  align-items: center;
  padding: 5px 20px 5px 5px;
  text-decoration: none;
  transition: transform .4s;
  display: flex;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
}

.video-button-div:hover {
  transform: translate(0, -10px);
}

.lightbox-link {
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.div-image {
  height: 300px;
  margin-bottom: 40px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, .2);
}

.div-image.video {
  height: 400px;
  background-image: url('../images/Untitled-8.jpg');
  background-size: cover;
  border-radius: 0;
  margin-bottom: 0;
  padding-top: 20px;
  padding-left: 20px;
  font-family: Roboto, sans-serif;
}

.video-text {
  color: #000;
  font-family: Roboto, sans-serif;
  font-weight: 500;
  text-decoration: none;
}

.video-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(to bottom, var(--lime-green), var(--medium-aquamarine));
  border-radius: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 12px;
  transition: background-color .4s;
  display: flex;
}

.video-icon:hover {
  background-color: var(--black-2);
  background-image: none;
}

.div-content {
  padding: 0 0 0 30px;
  position: relative;
}

.div-content.blog-posts {
  flex-direction: column;
  flex: 1;
  align-items: center;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.blog-post-link {
  width: 80%;
  border: 1px none var(--azure);
  color: #333;
  text-transform: capitalize;
  background-color: #fff;
  border-radius: 0;
  align-items: center;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  text-decoration: none;
  transition: transform .4s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.blog-post-link:hover {
  transform: translate(0, -5px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, .1);
}

.blog-post-link.w--current {
  margin-bottom: 20px;
}

.div-holder {
  width: 50%;
  height: 360px;
  max-width: none;
  background-image: url('../images/Untitled-2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0;
  padding: 12px;
  position: relative;
}

.div-holder.date {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: cover;
  transition: background-position .4s;
}

.div-holder.date:hover {
  background-position: 50%;
}

.page-header {
  padding-top: 120px;
  padding-bottom: 120px;
}

.page-header.gray {
  background-color: var(--azure);
}

.page-header.gray.dark {
  height: 600px;
  background-color: var(--black-2);
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50% 20%;
  background-size: cover;
}

.page-header.dark {
  background-color: var(--azure);
  align-items: center;
  padding-top: 140px;
  display: flex;
}

.hero-grid {
  grid-column-gap: 80px;
  grid-template: ". Area"
  / .75fr .75fr;
  align-items: start;
  margin-top: 60px;
}

.hero-grid.center {
  align-items: center;
}

.hero-grid.blog {
  grid-template-columns: .75fr .5fr;
}

.hero-grid.blog.header {
  width: auto;
  height: auto;
  grid-column-gap: 20px;
  background-image: none;
}

.link-header-page {
  color: #8796b4;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #a9bce0;
  border-radius: 10px;
  margin-right: 0;
  padding: 5px 10px;
  text-decoration: none;
}

.link-header-page:hover {
  text-decoration: underline;
}

.link-header-page.white {
  border-style: none solid;
  border-color: #6d5dff var(--azure);
  color: var(--grey);
  background-color: rgba(0, 0, 0, 0);
  border-left-width: 2px;
  border-right-width: 2px;
  border-radius: 0;
  margin-right: -2px;
  padding-left: 20px;
  padding-right: 20px;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  line-height: 24px;
}

.link-header-page.white:hover {
  background-color: var(--azure);
  text-decoration: none;
}

.link-header-page.white.light {
  border-style: none solid;
  border-color: var(--medium-aquamarine) var(--azure);
  color: var(--grey);
  background-color: rgba(0, 0, 0, 0);
  border-right-width: 2px;
  border-radius: 0;
  font-family: Roboto, sans-serif;
}

.link-header-page.white.light:hover, .link-header-page.white.light.w--current {
  background-color: var(--azure);
}

.breadcrumbs-block {
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  justify-content: flex-start;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  font-size: 13px;
  line-height: 23px;
  display: flex;
}

.large-paragraph {
  color: #8686af;
  text-transform: none;
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 30px;
}

.large-paragraph.header {
  color: var(--grey);
  margin-bottom: 0;
  font-family: Roboto, sans-serif;
}

.hero-section-header {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 0;
  display: flex;
}

.hero-section-header.left {
  align-items: flex-start;
}

.text-header {
  color: var(--black-2);
  text-align: center;
  letter-spacing: -1px;
  border-bottom: 2px #000;
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 0;
  font-size: 45px;
  font-weight: 700;
  line-height: 55px;
}

.text-header.small {
  color: var(--light-grey);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
}

.header-section {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 60px;
  display: flex;
}

.light-sea-green {
  width: 100%;
  height: 160px;
  background-color: var(--lime-green);
  border-radius: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}

.light-sea-green.slate-blue {
  background-color: var(--medium-aquamarine);
}

.light-sea-green.black {
  background-color: var(--grey);
}

.light-sea-green.light-cyan {
  background-color: var(--azure-2);
  border: 1px rgba(0, 0, 0, 0);
}

.light-sea-green.dark-blue {
  background-color: var(--black);
}

.light-sea-green.slate-grey {
  background-color: var(--light-grey);
}

.light-sea-green.lavender {
  background-color: var(--azure);
}

.light-sea-green.rebeccapurple {
  background-color: var(--black-2);
}

.color-text {
  color: var(--black-2);
  background-color: #fff;
  border-radius: 5px;
  padding: 5px 20px;
  font-family: Roboto, sans-serif;
}

.grid-scales {
  width: 100%;
  grid-column-gap: 20px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.grid-scales.style {
  grid-column-gap: 20px;
}

.gray-space {
  background-color: #fff;
  border-radius: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
}

.gray-space.blue {
  background-color: var(--lime-green);
}

.gray-space.dark {
  background-color: #18143b;
}

.big-headline {
  color: var(--black-2);
  letter-spacing: -1px;
  margin-bottom: 40px;
  font-family: Roboto, sans-serif;
  font-size: 60px;
  font-weight: 500;
  line-height: 70px;
}

.breaddrumps {
  background-color: #e4f3f7;
}

.big-text {
  color: var(--grey);
  font-size: 18px;
  line-height: 28px;
}

.small {
  color: var(--grey);
  font-size: 14px;
  line-height: 24px;
}

.grid-event {
  width: 80%;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.blog-post-overlay {
  width: 100%;
  height: 100%;
  float: none;
  border: 1px none var(--light-grey);
  background-image: linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2));
  border-radius: 0;
  margin-bottom: 0;
  padding: 12px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.blog-post-overlay:hover {
  background-color: rgba(0, 0, 0, 0);
}

.blog-content-services {
  float: none;
  text-align: left;
}

.blog-content-services.title {
  height: auto;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

.blog-content-services.title.gray {
  background-color: var(--azure);
}

.event-wrapper {
  width: 100%;
  height: 400px;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50% 0;
  background-size: contain;
  border-color: #000;
  border-radius: 0;
  margin-bottom: 20px;
  text-decoration: none;
  transition: transform .4s, box-shadow .4s;
  overflow: hidden;
}

.event-wrapper:hover {
  transform: translate(0, -5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
}

.learn-more {
  color: var(--lime-green);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  padding-right: 5px;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 22px;
  text-decoration: none;
  transition: padding .4s;
  display: block;
}

.learn-more:hover {
  padding-right: 10px;
  text-decoration: underline;
}

.author-div {
  z-index: 10;
  align-items: center;
  padding-top: 20px;
  padding-left: 20px;
  text-decoration: none;
  display: flex;
  position: relative;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.name {
  color: #fff;
  font-family: Roboto, sans-serif;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
}

.meta-category {
  z-index: 10;
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(170deg, var(--dark-slate-grey), #305867 44%, var(--pale-turquoise));
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 0;
  padding: 5px 10px;
  font-family: Roboto, sans-serif;
  font-size: 10px;
  font-weight: 500;
  display: inline-block;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.meta-category.box {
  margin-bottom: 10px;
  position: relative;
}

.meta-category.box.sidebar {
  width: 100%;
  height: 50px;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  transition: transform .4s;
  display: flex;
  bottom: auto;
}

.meta-category.box.sidebar:hover {
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(to bottom, black, var(--black-2));
  transform: translate(0, -5px);
}

.header-text {
  margin-top: 0;
}

.header-text.white {
  color: var(--azure);
  margin-bottom: 0;
}

.header-text.white.left {
  color: #fff;
  font-weight: 700;
}

.header-text.white.big {
  text-align: center;
  text-transform: uppercase;
  font-size: 50px;
  font-weight: 900;
  line-height: 60px;
}

.footer-div-line {
  height: 230px;
  text-align: left;
  border-left: 1px solid #e2eff8;
  padding-left: 30px;
  padding-right: 30px;
}

.footer-div-line.sec {
  border-left-style: none;
}

.footer-div-line.first {
  height: auto;
  border-left-style: none;
  padding-left: 0;
  padding-right: 40px;
}

.div-usefull-links {
  text-align: left;
  flex-direction: column;
  display: flex;
}

.copyright {
  color: var(--light-grey);
  text-align: right;
  border: 1px #000;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  position: relative;
}

.copyright.dorian-hoxha {
  color: var(--grey);
  text-align: left;
  font-family: Merriweather, serif;
  top: 0;
}

.copyright-writter {
  border-top: 1px solid var(--light-grey);
  margin-top: 100px;
  padding-top: 0;
  padding-bottom: 0;
}

.column-footer-copyright {
  border-top: 1px #000;
  padding-right: 10px;
}

.blog {
  width: 70px;
  height: 70px;
  float: left;
  background-image: url('../images/rawpixel-com-323215.jpg');
  background-position: 50%;
  background-size: cover;
  margin-bottom: 10px;
  margin-right: 10px;
}

.blog:hover {
  background-image: linear-gradient(rgba(0, 109, 240, .89), rgba(0, 109, 240, .89)), url('../images/rawpixel-com-323215.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.blog._2 {
  width: 80px;
  height: 80px;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50% 0;
  background-size: cover;
  border-radius: 0;
  margin-bottom: 0;
  margin-right: 0;
  transition: background-position .4s;
}

.blog._2:hover {
  background-image: url('../images/andrew-small-144846-unsplash.jpg');
  background-position: 100%;
  background-size: cover;
}

.title-footer {
  max-width: 500px;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 700;
}

.title-footer.menos {
  margin-bottom: 10px;
}

.all-right {
  text-align: right;
  border: 0 #000;
}

.column-footer-copyright-right {
  border: 1px #000;
  padding-left: 0;
}

.important-link {
  color: var(--pale-turquoise);
  font-family: Roboto, sans-serif;
  font-weight: 500;
  text-decoration: none;
}

.important-link:hover {
  color: var(--lime-green);
  text-decoration: underline;
}

.grid {
  grid-template: "."
  / 1.5fr .25fr .5fr;
}

.columns {
  border: 0 #000;
}

.image-div {
  width: 100px;
  height: 100px;
}

.image-div.icons {
  width: auto;
  height: 100px;
  background-color: #fff;
  border-radius: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-div.logo {
  width: 60px;
  height: 60px;
  background-image: url('../images/Untitled-2.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 40px;
}

.licence-item-wrapper {
  width: 60%;
  background-color: var(--azure);
  border-radius: 0;
  align-items: center;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px;
  display: flex;
}

.licence-item-wrapper:hover {
  border-color: #f0c6a6;
}

.licence-item-wrapper.change-log {
  justify-content: center;
}

.licence-links-wrapper {
  color: #717177;
  flex: 1;
  justify-content: space-between;
  padding-left: 64px;
  padding-right: 64px;
  display: flex;
}

.licence-link {
  color: var(--black-2);
  text-transform: none;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  text-decoration: none;
}

.licence-link:hover {
  color: var(--lime-green);
  font-weight: 400;
  text-decoration: underline;
}

.icon-div {
  width: 50px;
  height: 50px;
  background-image: url('../images/icons8-cloud-100_1icons8-cloud-100.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 32px;
}

.icon-div.image {
  width: 50px;
  height: 50px;
  max-width: none;
  background-image: none;
  margin: 1px;
}

.icon-div.image.four {
  background-image: url('../images/Team-3.jpg');
  background-position: 50%;
  background-size: cover;
  margin-top: 1px;
  margin-left: 1px;
}

.icon-div.image.four.pixels {
  background-image: url('../images/2222.jpg');
}

.icon-div.image.third {
  margin-top: 1px;
  margin-left: 1px;
}

.icon-div.image.third.pixels {
  background-image: url('../images/Untitled-1.jpg');
}

.icon-div.image.sec {
  max-width: none;
  background-image: none;
  margin-top: 1px;
  margin-left: 1px;
}

.icon-div.image.sec.pixels {
  background-image: url('../images/Untitled-8.jpg');
  background-size: cover;
}

.icon-div.image.pixels {
  background-image: url('../images/3452346.jpg');
  background-size: cover;
}

.icon-div.fourth {
  background-image: url('../images/icons8-query-outer-join-100_1icons8-query-outer-join-100.png');
}

.icon-div.grid-second {
  background-color: var(--azure);
  background-image: url('../images/icons9-cloud-100_1icons9-cloud-100.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 32px;
}

.icon-div.thid {
  background-color: var(--azure);
  background-image: url('../images/icons9-cloud-100_1icons9-cloud-100.png');
}

.column-icons {
  margin-bottom: 10px;
}

.column-icons.no-padding {
  margin-bottom: 0;
}

.column-no-padding {
  padding-left: 0;
  padding-right: 0;
}

.changelog-text {
  color: var(--black-2);
  margin-bottom: 0;
}

.bold-white {
  color: #fff;
}

.image-blog {
  width: 140px;
  height: 100px;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: cover;
  border-radius: 0;
  margin-right: 20px;
}

.info-blog {
  border-left: 1px solid var(--light-grey);
  padding-left: 20px;
}

.date-blog {
  color: #fff;
}

.date-blog.bigger {
  font-size: 28px;
  line-height: 20px;
}

.date-blog.events {
  text-align: center;
  font-family: Roboto, sans-serif;
  font-size: 28px;
  font-weight: 700;
  display: inline;
}

.date-blog.events.bigger {
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
}

.date-blog.events.month {
  color: rgba(255, 255, 255, .63);
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
}

.date-div {
  width: 70px;
  height: 70px;
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(146deg, var(--dark-slate-grey) 31%, var(--pale-turquoise));
  border-radius: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.date-div.blog {
  margin-right: 20px;
}

.date-div.padding {
  margin-right: 10px;
}

.line {
  color: var(--grey);
  margin-left: 5px;
  margin-right: 5px;
}

.line.white {
  color: var(--azure);
}

.collection-list-blog, .collection-list-courses {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.collection-list-courses.in-half {
  grid-template-columns: 1fr 1fr;
}

.info-title {
  color: var(--black-2);
  text-transform: none;
  margin-top: 10px;
  margin-bottom: 0;
  font-family: Roboto, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
}

.info-title.white {
  color: #fff;
  margin-bottom: 10px;
  font-family: Roboto, sans-serif;
  font-weight: 700;
  transition: transform .4s;
}

.info-title.white:hover {
  color: #fff;
  transform: translate(0, -5px);
}

.info-title.white.padding {
  color: var(--medium-aquamarine);
  border: 1px #000;
  margin-bottom: 0;
  padding-bottom: 30px;
  font-size: 40px;
  font-weight: 500;
  line-height: 42px;
}

.features-paragraph {
  font-family: Roboto, sans-serif;
}

.features-paragraph.white {
  color: #fff;
}

.div-image-cta {
  width: 60%;
  height: 400px;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: cover;
}

.info-card {
  max-width: 700px;
  background-color: #4760fc;
  border: 1px solid #d9dcec;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 0 0 0 40px;
  display: flex;
}

.info-card.paddings {
  height: 400px;
  max-width: none;
  background-color: var(--lime-green);
  background-image: linear-gradient(135deg, var(--dark-slate-grey), var(--pale-turquoise));
  border-style: none;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  transition: box-shadow .4s, transform .4s;
}

.info-card.paddings:hover {
  transform: translate(0, -5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
}

.sub-text {
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #4760fc;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 500;
  display: inline-block;
}

.sub-text.lighter {
  background-color: rgba(255, 255, 255, .19);
  font-family: Roboto, sans-serif;
}

.info-content {
  width: 50%;
  margin-right: 40px;
}

.blog-header {
  color: #fff;
  text-align: left;
  text-transform: none;
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 500;
  line-height: 42px;
}

.gradient-overlay {
  background-image: linear-gradient(rgba(255, 255, 255, 0) 29%, rgba(0, 0, 0, .78));
  flex-direction: column;
  align-items: flex-end;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.blog-image {
  width: 100%;
  height: 450px;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  text-decoration: none;
  transition: background-position .4s, box-shadow .4s;
  position: relative;
}

.blog-image:hover {
  background-position: 70%;
  box-shadow: 0 16px 30px rgba(22, 26, 37, .3);
}

.blog-content {
  height: 180px;
  border-top: 1px solid rgba(255, 255, 255, .39);
  padding: 20px 25px 40px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.form-card {
  z-index: 2;
  width: 800px;
  height: auto;
  background-color: var(--azure);
  text-align: center;
  background-image: linear-gradient(rgba(239, 249, 251, .44), rgba(239, 249, 251, .44)), url('../images/Logo-Head-white.png');
  background-position: 0 0, 50% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-color: rgba(205, 216, 218, .51);
  border-radius: 0;
  margin: 100px auto 0;
  padding: 60px 100px;
  position: relative;
}

.form-card.white {
  margin-top: 0;
  margin-bottom: 0;
}

.form-card.white.padding {
  margin-top: 100px;
}

.form-card.light {
  background-color: #fff;
  background-image: none;
}

.form-card.light.in-div {
  width: auto;
  background-color: var(--azure);
  padding-left: 60px;
  padding-right: 60px;
}

.form-card.no-padding {
  background-image: linear-gradient(rgba(183, 253, 250, .06), rgba(183, 253, 250, .06)), url('../images/Sobisa-Logo.svg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  margin-top: 0;
  margin-bottom: 0;
}

.form-card.no-padding-bottom {
  margin-bottom: 0;
}

.input {
  color: #000;
  background-color: rgba(0, 0, 0, 0);
  border: 0 #000;
  margin-bottom: 0;
  font-family: Roboto, sans-serif;
}

.input::-ms-input-placeholder {
  color: #fff;
}

.input::placeholder {
  color: #fff;
}

.form-sec {
  color: var(--black-2);
  background-color: #fff;
  border: 1px solid rgba(205, 216, 218, .51);
  border-radius: 0;
  align-items: center;
  padding: 5px 5px 5px 20px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  display: flex;
}

.bold-text {
  text-transform: uppercase;
}

.bold-text.color {
  color: var(--lime-green);
}

.grid-button {
  grid-template-rows: auto;
  grid-template-areas: "Area";
  margin-top: 20px;
}

.courses-title {
  margin-top: 10px;
  margin-bottom: 20px;
}

.blog-and-sidebar {
  width: 100%;
  justify-content: space-between;
  padding-top: 0;
  display: flex;
}

.right-collection-wrapper {
  width: 60%;
  padding-left: 0;
  padding-right: 0;
}

.sidebar {
  width: 30%;
  text-align: left;
  background-color: rgba(0, 0, 0, 0);
  padding: 0 0 15px 20px;
}

.sidebar.left {
  width: 35%;
  border-left: 1px solid var(--light-grey);
  padding-left: 40px;
}

.sidebar.right {
  width: 35%;
  border-right: 1px solid var(--light-grey);
  padding-left: 0;
  padding-right: 40px;
}

.event-overlay {
  height: 440px;
  background-color: rgba(32, 32, 32, .7);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.event-overlay.bigger {
  height: 600px;
}

.author-events {
  margin-top: 60px;
}

.author-events.no-padding {
  margin-top: 0;
}

.collection-list-teacher {
  width: 100%;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.service-heading-second {
  float: none;
  clear: none;
  color: var(--black-2);
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-decoration: none;
}

.team {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  padding: 20px;
}

.social-div {
  display: flex;
}

.social-div.in-team {
  margin-top: 20px;
}

.team-wrapper {
  width: 100%;
  height: auto;
  background-color: #fff;
  border: 1px #dde1e7;
  flex-direction: column;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  transition: transform .4s, box-shadow .4s;
  display: flex;
  position: relative;
}

.team-wrapper:hover {
  transform: translate(0, -5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
}

.team-image {
  width: 100%;
  height: 260px;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: cover;
  border-radius: 0%;
  margin-bottom: 20px;
  position: relative;
}

.team-image.big {
  width: 100%;
  height: 400px;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  margin-bottom: 0;
}

.social-link {
  width: 30px;
  height: 30px;
  border: 1px solid var(--light-grey);
  opacity: .65;
  background-color: #fff;
  background-image: url('../images/icons8-twitter-96-1_1icons8-twitter-96 (1).png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 12px;
  border-radius: 0%;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  padding: 10px;
  display: flex;
}

.social-link:hover {
  opacity: 1;
}

.social-link.facebook {
  border-color: var(--light-grey);
  background-color: #fff;
  background-image: url('../images/icons8-facebook-f-150.png');
  background-size: 14px;
  border-radius: 0%;
}

.social-link.be {
  border-color: var(--light-grey);
  background-image: url('../images/icons8-behance-96_1icons8-behance-96.png');
  background-size: 16px;
  border-radius: 0%;
}

.social-link.instagram {
  border-style: solid;
  border-color: var(--light-grey);
  background-color: #fff;
  background-image: url('../images/icons8-instagram-104-2_1icons8-instagram-104 (2).png');
  background-size: 12px;
  border-radius: 0%;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  transition: opacity .4s;
  display: flex;
}

.collection-list-events {
  grid-column-gap: 40px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.teacher-grid {
  grid-column-gap: 60px;
  grid-template-rows: auto;
  margin-top: 0;
}

.name-teacher {
  margin-bottom: 0;
}

.left {
  text-align: left;
}

.collection-list-posts {
  grid-column-gap: 40px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.collection-list-categories {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.collection-list-categories.padding {
  margin-bottom: 60px;
}

.category-link {
  width: 100.867%;
  text-decoration: none;
}

.div-block {
  background-color: rgba(0, 0, 0, .25);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.drop-list-div {
  width: 220px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 20px;
}

.drop-list-div.first {
  border: 1px #000;
}

.title-dropdown {
  color: var(--black-2);
  font-family: Roboto, sans-serif;
  font-weight: 500;
  line-height: 24px;
}

.nav-link {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}

.nav-link.w--current {
  color: #6a4ee1;
}

.nav-link.dark-text {
  color: var(--dark-slate-grey);
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 20px;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
}

.dots {
  width: 10px;
  height: 10px;
  color: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  background-image: url('../images/Untitled-2.png');
  background-position: 50%;
  background-size: contain;
  border-radius: 0;
  margin-right: 10px;
}

.dropdown-link {
  color: #666;
  align-items: center;
  padding: 10px;
  text-decoration: none;
  display: flex;
}

.dropdown-link:hover {
  background-color: var(--azure);
  border-radius: 0;
}

.dropdown-link.w--current {
  background-color: var(--azure);
  color: #6a4ee1;
  border-radius: 0;
  flex-direction: row;
  align-items: center;
  display: flex;
}

.icon-second {
  font-size: 14px;
}

.dropdown-list {
  margin-left: 2px;
}

.dropdown-list.w--open {
  border: 1px solid #f8f8ff;
  border-radius: 10px;
  margin-left: -570px;
  margin-right: 0;
  display: block;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
}

.dropdown-list.utility {
  background-color: #fff;
  border: 1px solid #f8f8ff;
  border-radius: 10px;
  margin-left: -201px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
}

.dropdown-list.utility.w--open {
  border-style: none;
  border-radius: 0;
  margin-left: auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
}

.nav-text {
  font-size: 16px;
  line-height: 24px;
  position: relative;
}

.symbol-logo {
  width: 50px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0);
  background-image: url('../images/Sobisa-Logo.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 50px;
  margin-bottom: 10px;
}

.about-copy-wrapper {
  width: 85%;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
}

.about-copy-wrapper.padding {
  margin-bottom: 60px;
}

.small-sub-text {
  color: var(--dark-slate-grey);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 5px;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 22px;
}

.section-content {
  text-align: left;
  display: block;
}

.section-content.center.facts {
  width: 600px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.divider {
  height: 1px;
  background-color: var(--light-grey);
  margin-top: 20px;
  margin-bottom: 20px;
}

.divider.more-padding {
  margin-top: 40px;
  margin-bottom: 100px;
}

.sidebar-title {
  margin-top: 0;
  margin-bottom: 0;
}

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

.link-courses {
  text-decoration: none;
  display: block;
}

.collection-list-event {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.features-card {
  background-color: #fff;
  border: 1px solid #e4ecf6;
  border-radius: 6px;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 40px 30px;
  transition: box-shadow .4s;
  display: flex;
}

.features-card:hover {
  background-color: #fff;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, .02);
}

.features-card.no-paddings {
  border-style: none;
  border-radius: 0;
  justify-content: flex-start;
  margin-bottom: 0;
  padding-top: 30px;
  padding-bottom: 30px;
}

.features-card.no-paddings.gray {
  background-color: var(--azure);
  border-style: none;
  border-radius: 0;
}

.grid-info-features {
  width: 80%;
  margin-left: 20px;
}

.grid-info-features.smaller {
  width: 80%;
}

.grid-service-app {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 1px solid rgba(205, 216, 218, .52);
  border-radius: 1px;
  margin-top: 100px;
  box-shadow: 0 8px 20px rgba(32, 32, 32, .1);
}

.grid-service-app.three {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 0;
}

.processes-grid {
  grid-column-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  margin-bottom: 40px;
}

.top-process {
  justify-content: space-between;
  display: flex;
}

.top-process._80 {
  width: 80%;
}

.top-process._90 {
  width: 90%;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
}

.top-process._65 {
  width: 65%;
}

.process-list {
  width: 100%;
  margin-top: 20px;
}

.process-list-item {
  margin-bottom: 20px;
}

.proces-percentage {
  margin-top: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 25px;
}

.colored-bar {
  height: 10px;
  background-color: #b87df9;
  border-radius: 8px;
}

.colored-bar._90 {
  width: 90%;
  background-color: var(--medium-aquamarine);
}

.colored-bar._65 {
  width: 65%;
  background-color: var(--yellow-green);
}

.colored-bar._80 {
  width: 80%;
  background-color: var(--lime-green);
}

.proces-title {
  color: var(--grey);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
}

.process-bar {
  width: 100%;
  height: 10px;
  background-color: var(--azure-2);
  border-radius: 8px;
  margin-bottom: 10px;
}

.process-bar.white {
  background-color: #fff;
}

.review-position {
  color: #6a4ee1;
  font-size: 12px;
}

.review-position.white {
  color: var(--lime-green);
  font-family: Roboto, sans-serif;
  font-size: 15px;
  line-height: 23px;
}

.testimonial-icon {
  width: 20px;
  height: 20px;
  background-image: url('../images/icons8-quote-left-100_1icons8-quote-left-100.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  align-items: center;
  margin-top: 20px;
  padding: 23px;
  display: flex;
}

.testimonials-card {
  width: 100%;
  height: auto;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 0;
  display: flex;
  overflow: hidden;
}

.slide-nav {
  color: #3774f0;
  background-color: #f8f8ff;
  border: 1px solid #d2d2f5;
  border-radius: 10px;
  margin-top: 20px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 8px;
  line-height: 30px;
  display: inline-block;
  position: static;
}

.slide-nav.hide {
  background-color: rgba(0, 0, 0, 0);
  border-color: rgba(0, 0, 0, 0);
  margin-top: 40px;
  display: block;
}

.left-testimonials-arrow {
  width: 30px;
  height: 90px;
  color: #fff;
  background-color: rgba(255, 255, 255, .05);
  margin-left: 0;
  font-size: 13px;
  transition: background-color .4s;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .09);
}

.left-testimonials-arrow:hover {
  background-color: var(--lime-green);
}

.testimonial-slider {
  width: 80%;
  height: auto;
  background-color: rgba(0, 0, 0, 0);
  border: 1px #d2d2f5;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
}

.right-testimonials-arrow {
  width: 30px;
  height: 90px;
  color: #fff;
  background-color: rgba(255, 255, 255, .05);
  margin-right: 0;
  font-size: 13px;
  transition: background-color .4s;
  box-shadow: 0 11px 24px rgba(0, 0, 0, .09);
}

.right-testimonials-arrow:hover {
  background-color: var(--lime-green);
}

.review-name {
  color: #fff;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
}

.avatar {
  width: 80px;
  height: 80px;
  max-width: 100%;
  object-fit: cover;
  background-image: url('../images/teacher-5.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 50%;
  flex: none;
  margin-bottom: 20px;
}

.avatar.second {
  background-image: url('../images/teacher-3.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 100%;
}

.testimonial-text {
  color: #fff;
  text-align: center;
  font-family: Roboto, sans-serif;
  font-size: 28px;
  line-height: 38px;
}

.name-div {
  text-align: center;
  margin-bottom: 15px;
}

.question-wrapper.smaller {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.toogle-wrapper {
  width: 100%;
  border: 1px solid var(--azure-2);
  background-color: #fff;
  border-radius: 0;
  margin-bottom: 16px;
  transition: transform .4s;
}

.toogle-wrapper:hover {
  background-color: var(--azure);
  border-color: #dbe3ff;
  transform: translate(0, -5px);
}

.toogle-wrapper.padding-top {
  margin-top: 60px;
}

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

.toogle-answer {
  text-align: left;
  padding: 0;
  font-size: 17px;
  line-height: 26px;
  display: block;
}

.question-info-block {
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 0%;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
}

.question-info-block.left {
  padding-right: 20%;
}

.toogle-icon {
  width: 25px;
  height: 25px;
  justify-content: center;
  align-items: center;
  margin-right: 12px;
  display: flex;
}

.plus {
  width: 18px;
  height: 2px;
  background-color: var(--lime-green);
  position: absolute;
  transform: rotate(90deg);
}

.toogle-info {
  padding: 20px;
}

.minus {
  width: 18px;
  height: 2px;
  background-color: var(--lime-green);
}

.toogle-title {
  color: var(--black-2);
  text-transform: none;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
}

.paragraph {
  color: #30364d;
}

.grid-block-faq {
  width: 100%;
  grid-column-gap: 40px;
  background-color: var(--azure);
  border-radius: 0;
  grid-template-rows: auto;
  padding: 60px;
}

.toogle-questions {
  width: 100%;
  color: var(--black-2);
  cursor: pointer;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  display: flex;
}

.collection-list-categorie {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.tab-style-image {
  width: 100%;
  opacity: 1;
}

.paragraph-project {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .39);
  border-radius: 0;
  margin-bottom: 10px;
  padding: 4px 10px;
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  text-decoration: none;
  display: inline-block;
}

.paragraph-project:hover {
  border-color: var(--lime-green);
  background-image: linear-gradient(to bottom, var(--lime-green), var(--medium-aquamarine));
}

.project-wrapper {
  width: 100%;
  box-shadow: none;
  color: #212127;
  text-align: center;
  margin-bottom: 20px;
  text-decoration: none;
  transition: all .3s;
  position: relative;
}

.project-wrapper.style-second {
  float: left;
  box-shadow: none;
  margin-bottom: 0;
}

.project-wrapper.style-second:hover {
  transform: translate(0, -5px);
}

.project-header {
  color: #fff;
  margin-top: 0;
  margin-bottom: 5px;
  font-weight: 500;
  text-decoration: none;
}

.overlay-div {
  opacity: 0;
  background-color: rgba(0, 0, 0, .52);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.project-content {
  background-color: rgba(0, 0, 0, 0);
  padding: 20px 10px;
  text-decoration: none;
}

.project-content.style {
  width: 100%;
  height: 100%;
  background-color: rgba(117, 103, 248, .86);
  border-radius: 0;
  margin-top: 0%;
  margin-left: auto;
  margin-right: auto;
  padding: 22% 0;
  display: block;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0;
}

.project-content.style.full {
  background-color: rgba(0, 0, 0, 0);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 20%;
  padding-bottom: 20%;
  display: flex;
}

.project-image {
  background-color: #fff;
  padding: 20px;
  transition: all .4s;
  position: relative;
  overflow: visible;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
}

.center-button-block {
  width: 100%;
  text-align: left;
}

.form-div {
  padding-left: 30px;
  padding-right: 30px;
}

.left-form-div {
  text-align: left;
}

.field-text {
  color: #343e52;
  text-align: left;
  text-transform: none;
  margin-bottom: 8px;
  font-family: Roboto, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 23px;
}

.field-text.contact-us-field {
  color: #3f3f3f;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 400;
}

.field-text.contact-us-field.gray {
  color: var(--black-2);
  font-family: Roboto, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 25px;
}

.text-field-third {
  height: 42px;
  float: none;
  border-radius: 3px;
  margin-bottom: 12px;
  display: inline-block;
}

.text-field-third.contact-form {
  font-size: 13px;
  line-height: 18px;
}

.text-field-third.contact-form.gray {
  height: 50px;
  border: 1px solid var(--azure-2);
  background-color: var(--azure);
  border-radius: 0;
  margin-bottom: 20px;
  padding-left: 12px;
  font-family: Roboto, sans-serif;
}

.text-field-third.contact-form.gray.subject {
  border-radius: 0;
  margin-bottom: 20px;
}

.text-field-third.contact-form.gray.email {
  background-color: var(--azure);
  border-radius: 0;
  padding-left: 40px;
  font-family: Roboto, sans-serif;
}

.text-field-third.contact-form.gray.center {
  text-align: center;
  font-size: 14px;
  line-height: 24px;
}

.contact-content {
  z-index: 1000;
  width: 100%;
  height: auto;
  background-color: #fff;
  border: 1px solid rgba(228, 236, 246, .57);
  border-radius: 0;
  padding: 45px 24px;
  position: relative;
  right: 0;
}

.contact-form.message.gray {
  min-height: 160px;
  border: 1px solid var(--azure-2);
  background-color: var(--azure);
  border-radius: 0;
  margin-bottom: 24px;
  padding-left: 40px;
  font-family: Roboto, sans-serif;
  font-size: 13px;
  line-height: 23px;
}

.grid-contact {
  grid-column-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  margin-top: 100px;
}

.grid-info {
  grid-template: ". Area Area-2"
  / 1fr 1fr 1fr;
}

.image-contact {
  background-image: linear-gradient(rgba(32, 32, 32, .27), rgba(32, 32, 32, .27)), url('../images/2222.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  padding: 60px;
  display: flex;
  position: relative;
}

.newsletter {
  width: 100%;
  grid-column-gap: 5px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.newsletter.new {
  grid-template-columns: 1fr 1fr 1fr;
  margin-right: 5px;
}

.newsletter.padding {
  margin-right: 5px;
}

.imput {
  height: 58px;
  border: 10px none var(--light-grey);
  background-color: var(--azure);
  color: var(--black-2);
  margin-bottom: 0;
  padding-top: 15px;
  padding-bottom: 15px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  line-height: 26px;
}

.error {
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

.hero-section {
  padding: 100px 48px;
}

.hero-section.one {
  background-color: var(--azure-2);
  padding: 120px 0;
  font-family: Roboto, sans-serif;
}

.form-home {
  color: #30364d;
  background-color: #161616;
  border: 1px rgba(0, 0, 0, 0);
  border-radius: 0;
  align-items: center;
  padding: 5px;
  display: flex;
}

.form-home.footer-four {
  width: 100%;
  background-color: var(--black-2);
  color: #000;
  border-style: none;
  border-radius: 0;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5px;
}

.grid-second {
  grid-column-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
  margin-top: 0;
  margin-bottom: 0;
}

.grid-second.banner {
  grid-template-columns: 1fr;
  margin-top: 100px;
  margin-bottom: 60px;
}

.success-message-new {
  color: #000;
  background-color: #f0c6a6;
  border-radius: 0;
  font-family: Roboto, sans-serif;
  font-weight: 400;
}

.courses-wrapper {
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(to bottom, var(--black-2), var(--black)), linear-gradient(to bottom, var(--lime-green), var(--medium-aquamarine));
  margin-top: 0;
  padding: 60px;
}

.link-ourses {
  width: 100%;
  border-bottom: 1px solid rgba(205, 216, 218, .24);
  padding: 20px 20px 0;
  text-decoration: none;
  transition: background-color .4s;
}

.link-ourses:hover {
  background-color: var(--black);
  padding: 20px 20px 0;
}

.sliders {
  height: auto;
}

.utility-page-wrap {
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.utility-page-wrap.gray {
  background-color: var(--azure-2);
}

.utility-page-content {
  z-index: 10;
  width: 380px;
  text-align: center;
  background-color: #fff;
  flex-direction: column;
  padding: 40px;
  display: flex;
  position: relative;
}

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

.icon-on-move {
  width: 400px;
  height: 400px;
  background-image: linear-gradient(rgba(226, 239, 241, .69), rgba(226, 239, 241, .69)), url('../images/Logo-Head-white.png');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, contain;
  position: absolute;
  top: 15%;
  left: 5%;
}

.icon-on-move.gray {
  background-image: linear-gradient(rgba(255, 255, 255, .95), rgba(255, 255, 255, .95)), url('../images/Untitled-2.png');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, contain;
}

.icon-on-move.third {
  opacity: .1;
  background-image: url('../images/Logo-Head-white.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.icon-on-move-2 {
  width: 150px;
  height: 150px;
  background-image: linear-gradient(rgba(226, 239, 241, .69), rgba(226, 239, 241, .69)), url('../images/Logo-Head-white.png');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, contain;
  position: absolute;
  top: 44%;
  left: auto;
  right: 5%;
}

.icon-on-move-2.third {
  opacity: .1;
  background-image: url('../images/Logo-Head-white.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.icon-on-move-3 {
  width: 200px;
  height: 200px;
  background-image: linear-gradient(rgba(226, 239, 241, .64), rgba(226, 239, 241, .64)), url('../images/Logo-Head-white.png');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, contain;
  position: absolute;
  top: auto;
  bottom: 5%;
  left: auto;
  right: auto;
}

.icon-on-move-3.third {
  opacity: .2;
  background-image: url('../images/Logo-Head-white.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.left-title {
  margin-top: 0;
}

.about-image {
  height: 600px;
  background-image: url('../images/3452346.jpg');
  background-size: auto;
}

.icon-image-second {
  width: 48px;
  height: 48px;
  background-color: #5956fd;
  border-radius: 8px;
  margin-bottom: 30px;
  padding: 10px;
  position: relative;
  top: 14px;
  left: 0;
}

.icon-image-second.orange {
  width: 52px;
  height: 52px;
  color: var(--black-2);
  background-color: rgba(0, 0, 0, 0);
  margin-bottom: 20px;
  padding: 0;
}

.icon-header {
  flex-direction: row;
  align-items: center;
  display: flex;
}

.icon-header.center {
  width: 70%;
  justify-content: center;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.heading-half-section {
  color: #343e52;
  margin-top: 10px;
  margin-bottom: 20px;
  font-family: Roboto, sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 46px;
}

.half-section {
  width: 100%;
  padding-left: 60px;
}

.noted {
  background-color: var(--pale-turquoise);
  padding-left: 5px;
  padding-right: 5px;
  display: inline-block;
}

.service-row {
  width: auto;
  margin: 20px 0 0;
  padding-right: 0;
}

.features-column {
  padding-left: 10px;
  padding-right: 10px;
}

.service-div {
  width: 100%;
  height: auto;
  background-color: #fff;
  border: 1px solid #e4e8ee;
  border-radius: 5px;
  margin-bottom: 20px;
  margin-right: 0;
  padding: 24px 20px;
  font-family: Open Sans, sans-serif;
  font-weight: 400;
  transition: box-shadow 40ms;
  display: block;
}

.service-div:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, .1);
}

.service-div.center {
  height: auto;
  border: 1px solid var(--azure-2);
  color: #465cff;
  text-align: center;
  background-color: #fff;
  border-radius: 0;
  margin-bottom: 0;
  padding: 30px 40px 40px;
  font-family: Roboto, sans-serif;
  font-weight: 400;
  transition: transform .4s, box-shadow .4s;
}

.service-div.center:hover {
  transform: translate(0, -5px);
}

.learn-more-div {
  justify-content: center;
  align-items: center;
  display: flex;
}

.arrow {
  width: 20px;
  height: 32px;
  filter: invert();
  background-image: url('../images/icons8-right-arrow-96-1_1icons8-right-arrow-96 (1).png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.collection-blog-footer {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.link-teacher {
  text-transform: none;
  text-decoration: none;
}

.text-text {
  font-family: Roboto, sans-serif;
  font-size: 15px;
  line-height: 25px;
}

.collection-list-wrapper {
  width: 260px;
}

.skills-wrapper {
  width: 100%;
  margin-top: 40px;
}

.link-contact, .links {
  text-decoration: none;
}

.top-link {
  margin-bottom: 0;
}

.nav-line {
  width: 100%;
  background-color: var(--pale-turquoise);
  display: block;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.grid-info-cms {
  width: 400px;
  grid-template: ". Area"
  / 1fr 1fr;
}

.grid-info-cms.width {
  width: 400px;
  grid-template-columns: 1fr 1.5fr;
}

.grid-info-cms.four-parts {
  width: 700px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid-courses {
  grid-template-rows: auto;
  grid-template-areas: ". Area";
  margin-top: 60px;
}

.heading-2 {
  color: var(--black-2);
  font-weight: 700;
}

.lock, ._404 {
  filter: invert();
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.paragraph-2 {
  max-width: 400px;
  color: #fff;
}

.paragraph-3 {
  text-align: left;
  margin-bottom: 60px;
}

.paragraph-4 {
  text-align: left;
}

.image-2 {
  max-width: 400px;
  margin-bottom: 25px;
}

.bold-text-2, .bold-text-3, .paragraph-5, .bold-text-4 {
  color: var(--dark-slate-grey);
}

.image-3 {
  max-width: 500px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.bold-text-5 {
  color: var(--dark-slate-grey);
}

@media screen and (max-width: 991px) {
  .nav-menu {
    z-index: 102;
    background-color: #fff;
    padding-left: 20px;
    padding-right: 20px;
    box-shadow: 0 20px 20px rgba(0, 0, 0, .1);
  }

  .navigation-container {
    padding-left: 0;
    padding-right: 0;
  }

  .navigation-container.navigation {
    align-items: center;
    padding-left: 0;
    padding-right: 0;
  }

  .menu-button {
    color: #000563;
    justify-content: center;
    align-items: center;
    padding-top: 18px;
    display: block;
  }

  .menu-button.w--open {
    color: #000563;
    background-color: rgba(0, 0, 0, 0);
  }

  .navbar {
    position: absolute;
  }

  .section {
    height: auto;
  }

  .section.footer {
    padding-bottom: 0;
  }

  .section.seocnd, .section.third {
    height: auto;
  }

  .section.one {
    height: 1500px;
  }

  .hero {
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
  }

  .hero.second {
    flex-direction: column;
  }

  .hero-info {
    width: 100%;
    height: auto;
    margin-top: 40px;
  }

  .hero-info.second {
    height: auto;
    margin-bottom: 60px;
    padding-top: 140px;
    padding-bottom: 60px;
  }

  .hero-info.one {
    margin-bottom: 100px;
  }

  .hero-image {
    width: 100%;
    height: 700px;
    background-size: cover;
  }

  .hero-image.second {
    width: 100%;
    height: 740px;
    background-position: 50% 100%;
    background-size: 700px;
  }

  .overlay-image {
    background-size: cover;
  }

  .gray-block {
    width: 60%;
    height: 60%;
    top: auto;
    bottom: 0%;
    left: auto;
    right: 0%;
  }

  .social-icon {
    cursor: pointer;
  }

  .social-wrapper {
    margin-top: 60px;
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
  }

  .logo-wrapper {
    grid-template-columns: 1fr;
  }

  .text-info {
    margin-bottom: 40px;
  }

  .page-title.cta {
    width: 100%;
  }

  .big-paragraph.center.percentual {
    width: 60%;
    padding-right: 0;
  }

  .cta-grid {
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .form {
    border-style: solid;
    border-color: var(--azure-2);
    background-color: #fff;
    flex-direction: row;
    padding-left: 5px;
  }

  .section-column-grid {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .date-time, .date-time.padding {
    flex-wrap: wrap;
  }

  .date-icon.certificate.invert {
    margin-left: 0;
  }

  .promo-block.top-algin {
    grid-template-columns: 1fr;
  }

  .form-block-div {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }

  .form-block-div.less-margin {
    padding-left: 0;
    padding-right: 0;
  }

  .field-label {
    font-size: 12px;
    line-height: 22px;
  }

  .div-content.blog-posts {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .blog-post-link {
    width: 100%;
    flex-direction: column;
    padding-right: 0;
  }

  .div-holder {
    width: 100%;
    max-width: none;
    border-bottom: 10px solid #f0c6a6;
    border-right-style: none;
  }

  .div-holder.date {
    border-bottom: 0 rgba(0, 0, 0, 0);
    border-right: 1px rgba(0, 0, 0, 0);
  }

  .page-header {
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-header.dark {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-grid {
    grid-row-gap: 16px;
    grid-template-columns: 1fr;
    grid-template-areas: ".";
    justify-items: start;
  }

  .hero-grid.blog {
    margin-top: 40px;
  }

  .hero-grid.blog.header {
    grid-template-columns: 1fr;
  }

  .breadcrumbs-block {
    justify-content: flex-start;
  }

  .hero-section-header.left {
    text-align: center;
    align-items: flex-start;
  }

  .grid-scales {
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  .gray-space {
    padding-left: 20px;
    padding-right: 20px;
  }

  .big-headline {
    text-align: left;
  }

  .grid-event {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .blog-post-overlay {
    width: 100%;
  }

  .footer-div-line.sec {
    height: auto;
    padding-left: 0;
  }

  .footer-div-line.first {
    height: auto;
    margin-bottom: 30px;
    padding-left: 0;
  }

  .copyright-writter {
    display: block;
  }

  .title-footer {
    margin-top: 0;
  }

  .title-footer.second {
    margin-top: 40px;
  }

  .grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .image-div.logo {
    margin-right: 0;
  }

  .licence-item-wrapper {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-bottom: 20px;
  }

  .licence-info {
    flex: 0 auto;
  }

  .changelog-text {
    text-align: left;
    display: inline-block;
  }

  .date-div.padding {
    width: 70px;
    margin-right: 20px;
  }

  .collection-list-blog, .collection-list-courses {
    grid-template-columns: 1fr 1fr;
  }

  .info-title.white.padding {
    font-size: 35px;
    line-height: 45px;
  }

  .div-image-cta {
    width: 100%;
    height: 320px;
  }

  .info-card.paddings {
    width: 100%;
    height: auto;
    max-width: none;
    flex-direction: column;
    padding-left: 0;
  }

  .info-content {
    width: 100%;
    margin-right: 0;
    padding: 40px;
  }

  .form-card, .form-card.white {
    width: 100%;
  }

  .input {
    margin-bottom: 0;
  }

  .form-sec {
    flex-direction: row;
    padding-left: 5px;
  }

  .blog-and-sidebar {
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
  }

  .right-collection-wrapper {
    width: 100%;
  }

  .sidebar {
    width: 40%;
    margin-right: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .sidebar.left {
    width: 100%;
    border-left-style: none;
    margin-top: 40px;
    margin-left: 0;
    margin-right: 20px;
    padding-left: 0;
  }

  .sidebar.right {
    width: 100%;
    border-right-style: none;
    margin-right: 0;
    padding-right: 0;
  }

  .collection-list-teacher {
    grid-template-columns: 1fr 1fr;
  }

  .social-div {
    flex-direction: row;
    margin-top: 0;
    margin-bottom: 0;
  }

  .social-div.in-team {
    flex-direction: row;
  }

  .team-image {
    background-image: none;
  }

  .collection-list-events, .teacher-grid, .collection-list-posts {
    grid-template-columns: 1fr;
  }

  .category-link {
    text-align: left;
  }

  .drop-list-div.first {
    width: auto;
    border: 1px #000;
  }

  .nav-link.dark-text {
    color: #000;
    padding-top: 10px;
    padding-bottom: 10px;
    display: block;
  }

  .dropdown-link {
    background-color: var(--azure);
  }

  .dropdown-link:hover {
    background-color: #fff;
  }

  .dropdown-list.w--open {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-left: 0;
    position: relative;
  }

  .dropdown-list.utility.w--open {
    background-color: var(--azure);
    box-shadow: none;
    border: 0 rgba(0, 0, 0, 0);
  }

  .about-copy-wrapper {
    width: 100%;
    margin-bottom: 40px;
  }

  .section-content {
    margin-bottom: 40px;
  }

  .section-content.center.facts {
    width: 80%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .collection-list.blog-post, .collection-list-event {
    grid-template-columns: 1fr;
  }

  .features-card {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .features-card.no-paddings {
    width: 100%;
  }

  .features-card.no-paddings.gray.invert {
    background-color: #fff;
  }

  .features-card.no-paddings.invert {
    background-color: var(--azure);
  }

  .grid-info-features {
    text-align: left;
    justify-content: flex-start;
  }

  .grid-info-features.smaller {
    width: 85%;
  }

  .grid-service-app, .grid-service-app.three {
    grid-template-columns: 1fr;
  }

  .processes-grid {
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }

  .left-testimonials-arrow {
    margin-left: -10px;
  }

  .testimonial-slider {
    width: 100%;
    height: 300px;
  }

  .right-testimonials-arrow {
    margin-right: -10px;
  }

  .testimonial-text {
    font-size: 17px;
    line-height: 27px;
  }

  .question-info-block {
    margin-bottom: 60px;
    position: relative;
    top: auto;
  }

  .grid-block-faq {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: minmax(200px, .25fr);
  }

  .toogle-questions {
    text-align: left;
  }

  .project-content.style {
    width: 100%;
    height: 100%;
    padding-top: 29%;
    padding-bottom: 29%;
  }

  .contact-content {
    width: 100%;
    margin-top: 0;
    right: 0;
  }

  .grid-contact {
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .grid-info {
    grid-template-columns: 1fr;
    grid-template-areas: ".";
  }

  .image-contact {
    height: 500px;
  }

  .imput {
    margin-bottom: 0;
  }

  .hero-section.one {
    padding-top: 140px;
  }

  .form-home {
    flex-direction: row;
    padding-left: 5px;
  }

  .form-home.footer-four {
    flex-direction: row;
  }

  .grid-second {
    grid-template-columns: 1fr;
  }

  .grid-second.banner {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .courses-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .icon-on-move.gray {
    width: 300px;
    height: 300px;
  }

  .about-image {
    height: 500px;
  }

  .icon-header.center {
    width: 100%;
  }

  .heading-half-section {
    text-align: left;
  }

  .heading-half-section.padding {
    margin-top: 40px;
  }

  .half-section {
    padding-left: 0;
  }

  .service-div {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }

  .service-div.center {
    width: 100%;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
  }

  .div-wrapper-bottom-padding {
    margin-bottom: 60px;
  }

  .collection-list-wrapper {
    width: 260px;
  }

  .grid-info-cms {
    width: 400px;
    grid-template-columns: 1fr 1fr;
  }

  .grid-courses {
    grid-template-columns: 1fr;
    grid-template-areas: ".";
  }
}

@media screen and (max-width: 767px) {
  .button.color.bigger.full {
    width: 100%;
    margin-top: 5px;
  }

  .nav-button {
    display: none;
  }

  .intro, .navigation-container.navigation {
    padding-left: 0;
  }

  .section.footer {
    padding-bottom: 0;
  }

  .section.seocnd {
    height: 1300px;
  }

  .hero-info {
    margin-top: 0;
  }

  .hero-info.second {
    padding-bottom: 60px;
  }

  .hero-image.second {
    width: 100%;
    height: 550px;
    background-position: 50% 100%;
    background-size: 500px;
  }

  .hero-image.third {
    height: 500px;
  }

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

  .logo-grid-wrapper {
    grid-template-columns: 1fr;
  }

  .logo-div.middle {
    border-style: solid none;
    border-top-width: 1px;
    border-top-color: #e4e4e4;
    border-bottom-width: 1px;
    border-bottom-color: #e4e4e4;
  }

  .big-paragraph.center.percentual {
    width: 60%;
  }

  .cta-grid {
    grid-column-gap: 20px;
    grid-row-gap: 40px;
  }

  .footer {
    padding: 40px 20px;
  }

  .date-time.single-line {
    padding-top: 0;
    padding-bottom: 0;
  }

  .date-icon.certificate.invert {
    margin-left: 0;
  }

  .features-info.single-line {
    padding-right: 0;
  }

  .promo-block {
    grid-template-columns: 1fr;
  }

  .form-block-div {
    width: 100%;
  }

  .div-content.blog-posts {
    padding-right: 40px;
  }

  .hero-grid.blog {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .breadcrumbs-block {
    width: 100%;
  }

  .hero-section-header {
    text-align: center;
  }

  .hero-section-header.left {
    width: 100%;
    text-align: left;
  }

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

  .grid-scales {
    grid-column-gap: 20px;
    grid-row-gap: 40px;
  }

  .big-headline {
    font-size: 50px;
    line-height: 60px;
  }

  .blog-post-overlay {
    background-image: linear-gradient(rgba(0, 0, 0, .22), rgba(0, 0, 0, .22));
    padding-left: 12px;
  }

  .footer-div-line.sec {
    height: auto;
    border-left-style: none;
    padding-left: 0;
    padding-right: 0;
  }

  .footer-div-line.first {
    height: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .copyright {
    text-align: center;
    padding-top: 10px;
    line-height: 22px;
  }

  .copyright.dorian-hoxha {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 0;
  }

  .title-footer {
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .grid {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .image-div.icons {
    margin-bottom: 10px;
  }

  .image-div.logo {
    margin-right: 20px;
  }

  .licence-item-wrapper {
    width: 100%;
    flex-direction: column;
  }

  .changelog-text {
    text-align: left;
    display: inline-block;
  }

  .date-div.padding {
    width: 70px;
    margin-bottom: 0;
  }

  .collection-list-blog, .collection-list-courses, .collection-list-courses.in-half {
    grid-template-columns: 1fr;
  }

  .div-image-cta {
    width: 100%;
    padding-top: 40px;
  }

  .info-card {
    flex-direction: column;
    padding-left: 0;
  }

  .info-card.paddings {
    height: auto;
    padding-left: 0;
  }

  .info-content {
    width: 100%;
    padding: 45px;
  }

  .form-card, .form-card.white, .form-card.light.in-div, .form-card.no-padding {
    padding-left: 40px;
    padding-right: 40px;
  }

  .blog-and-sidebar {
    flex-direction: column;
  }

  .right-collection-wrapper {
    width: 100%;
    flex: 0 auto;
  }

  .sidebar {
    width: 100%;
    margin-right: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .sidebar.left {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .about-copy-wrapper {
    margin-bottom: 0;
  }

  .section-content.center.facts, .features-card {
    width: 100%;
  }

  .grid-info-features {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .grid-info-features.smaller {
    width: 80%;
  }

  .grid-service-app {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .testimonials-card {
    flex-direction: column;
  }

  .left-testimonials-arrow {
    display: block;
  }

  .testimonial-slider {
    height: auto;
  }

  .right-testimonials-arrow {
    display: block;
  }

  .grid-block-faq {
    grid-template-columns: 1fr;
  }

  .toogle-questions {
    text-align: left;
  }

  .collection-list-categorie {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .project-wrapper.style-second {
    margin-bottom: 0;
  }

  .project-content.style {
    padding-top: 27%;
    padding-bottom: 27%;
  }

  .contact-content {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    right: 0;
  }

  .newsletter.new {
    grid-row-gap: 5px;
    grid-template-columns: 1fr;
    margin-left: 5px;
  }

  .form-home.footer-four {
    flex-direction: column;
    padding: 10px;
  }

  .grid-second {
    grid-template-columns: 1fr;
  }

  .about-image {
    height: 400px;
    background-size: cover;
  }

  .icon-header.center {
    width: 90%;
  }

  .service-row {
    width: 100%;
    text-align: center;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .service-div.center {
    margin-bottom: 20px;
  }

  .collection-list-wrapper {
    width: 260px;
  }

  .grid-info-cms.four-parts {
    width: 400px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .image-3 {
    max-width: 90%;
  }
}

@media screen and (max-width: 479px) {
  .button {
    margin-bottom: 10px;
  }

  .button.color.full {
    width: 100%;
    margin-bottom: 0;
  }

  .button.color.bigger {
    width: 100%;
  }

  .button.outline {
    margin-bottom: 0;
  }

  .navigation-container {
    padding-left: 0;
    padding-right: 0;
  }

  .section.seocnd {
    height: 1240px;
  }

  .container.inner {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-info {
    margin-top: 0;
    margin-bottom: 100px;
  }

  .hero-info.second {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .hero-image.second {
    width: 100%;
    height: 260px;
    background-size: contain;
    flex-direction: column;
  }

  .hero-image.third {
    height: 250px;
  }

  .heading.white {
    font-size: 40px;
    line-height: 50px;
  }

  .gray-block {
    height: 50%;
  }

  .page-title.cta {
    width: 100%;
  }

  .big-paragraph.center.percentual {
    width: 80%;
  }

  .cta-grid {
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .text-field-contact {
    min-width: auto;
  }

  .footer {
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
  }

  .form {
    border-radius: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
  }

  .form.white {
    border-radius: 0;
  }

  .form.hero {
    border-radius: 0;
    padding-bottom: 0;
    padding-left: 10px;
  }

  .image-case-study {
    height: 200px;
  }

  .features-name {
    margin-top: 20px;
  }

  .features-name.link {
    margin-top: 10px;
  }

  .date-time-text.white.hide {
    display: none;
  }

  .date-time {
    flex-wrap: wrap;
  }

  .date-time.single-line {
    flex-wrap: wrap;
    padding-top: 0;
    padding-bottom: 0;
  }

  .date-time.center {
    flex-wrap: wrap;
    justify-content: center;
  }

  .date-time.padding {
    margin-top: 20px;
  }

  .date-icon.author.invert.hide {
    display: none;
  }

  .features-info.single-line {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-block-div {
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-image {
    height: 200px;
  }

  .div-content.blog-posts {
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .blog-post-link {
    flex-direction: column;
    padding-right: 0;
  }

  .div-holder {
    width: 100%;
  }

  .page-header.gray.dark {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-grid.blog {
    margin-top: 40px;
  }

  .link-header-page.white {
    width: 100%;
    border-bottom: 2px solid var(--azure);
    border-left-style: none;
    border-right-style: none;
  }

  .link-header-page.white.light {
    border-left-style: none;
    border-right-style: none;
  }

  .breadcrumbs-block {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-section-header {
    text-align: center;
    align-items: center;
  }

  .hero-section-header.left {
    text-align: left;
  }

  .text-header {
    font-size: 28px;
    line-height: 38px;
  }

  .header-section {
    text-align: center;
    align-items: flex-start;
  }

  .grid-scales {
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .gray-space {
    padding-left: 20px;
    padding-right: 20px;
  }

  .big-headline {
    width: 100%;
    font-size: 40px;
    line-height: 50px;
  }

  .blog-content-services.title {
    width: 100%;
    height: auto;
    text-align: left;
  }

  .header-text, .header-text.white.left {
    font-size: 38px;
    line-height: 48px;
  }

  .header-text.white.big {
    font-size: 40px;
    line-height: 50px;
  }

  .footer-div-line.first {
    padding-left: 0;
    padding-right: 0;
  }

  .image-div {
    width: 100px;
    flex: 0 auto;
  }

  .image-div.icons {
    height: auto;
    margin-bottom: 40px;
  }

  .image-div.logo {
    margin-right: 20px;
  }

  .licence-item-wrapper {
    width: auto;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px 15px 14px;
  }

  .licence-links-wrapper {
    flex: 1;
    padding-left: 16px;
    padding-right: 16px;
  }

  .licence-link {
    margin-right: 10px;
    font-size: 12px;
    line-height: 22px;
  }

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

  .image-blog {
    width: 100%;
    height: 200px;
  }

  .info-blog {
    width: 100%;
    border-top: 1px solid var(--light-grey);
    border-left-style: none;
    margin-top: 20px;
    padding-left: 0;
  }

  .date-div.padding {
    margin-bottom: 0;
    margin-right: 0;
  }

  .div-image-cta {
    width: 100%;
    padding-top: 40px;
  }

  .info-card {
    flex-direction: column;
    padding-left: 0;
  }

  .info-card.paddings {
    height: auto;
    flex-direction: column;
    padding-top: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .info-content {
    width: 100%;
    margin-right: 0;
    padding: 20px;
  }

  .blog-content {
    height: auto;
  }

  .form-card {
    padding-left: 25px;
    padding-right: 25px;
  }

  .form-card.light.in-div, .form-card.no-padding {
    padding-left: 20px;
    padding-right: 20px;
  }

  .input {
    text-align: center;
    background-color: #fff;
    border: 1px #d2d2f5;
    border-radius: 10px;
    flex: 1;
    margin-bottom: 10px;
    padding: 15px 0;
  }

  .form-sec {
    border-radius: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
  }

  .grid-button {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-columns: 1fr;
  }

  .blog-and-sidebar {
    padding-left: 0;
    padding-right: 0;
  }

  .sidebar {
    padding-left: 0;
  }

  .collection-list-teacher {
    grid-template-columns: 1fr;
  }

  .team-image.big {
    height: 300px;
  }

  .collection-list-categories.padding {
    grid-template-columns: 1fr;
  }

  .about-copy-wrapper {
    width: 100%;
    margin-bottom: 0;
  }

  .section-content.center.facts {
    width: 100%;
    text-align: center;
  }

  .features-card {
    flex-direction: column;
  }

  .grid-info-features {
    width: 100%;
    margin-left: 0;
  }

  .grid-info-features.smaller {
    width: 100%;
  }

  .grid-service-app.three {
    grid-template-columns: 1fr;
  }

  .testimonials-card {
    flex-direction: column;
  }

  .slide-nav.hide {
    margin-top: 10px;
  }

  .left-testimonials-arrow {
    display: none;
  }

  .testimonial-slider {
    height: 300px;
  }

  .right-testimonials-arrow {
    display: none;
  }

  .question-info-block.left {
    padding-right: 0%;
  }

  .grid-block-faq {
    padding-left: 40px;
    padding-right: 40px;
  }

  .toogle-questions {
    text-align: left;
  }

  .collection-list-categorie {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .paragraph-project {
    margin-bottom: 0;
    font-size: 12px;
    line-height: 22px;
  }

  .project-header {
    font-size: 18px;
    line-height: 28px;
  }

  .project-content.style {
    padding-top: 22%;
    padding-bottom: 22%;
  }

  .form-div {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-content {
    width: 100%;
    position: static;
    right: 0;
  }

  .image-contact {
    padding: 20px;
  }

  .newsletter {
    grid-template-columns: 1fr;
  }

  .newsletter.new {
    grid-row-gap: 5px;
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
  }

  .newsletter.padding {
    height: auto;
    margin-right: 0;
  }

  .imput {
    background-color: var(--azure-2);
    text-align: center;
    flex: 1;
    margin-bottom: 0;
    padding: 15px 0;
  }

  .imput.second {
    margin-bottom: 20px;
  }

  .form-home {
    border-radius: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
  }

  .form-home.footer-four {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 10px;
  }

  .about-image {
    height: 200px;
    background-size: cover;
  }

  .icon-header.center, .service-div, .service-div.center {
    width: 100%;
  }

  .collection-list-wrapper {
    width: 260px;
  }

  .div-form-wrapper, .hero-form-div {
    width: 100%;
  }

  .grid-info-cms {
    width: auto;
    grid-row-gap: 0px;
    grid-template: "."
                   "Area"
                   / 1fr;
    grid-auto-columns: .25fr;
    grid-auto-flow: row;
  }

  .grid-info-cms.width {
    width: auto;
    grid-template-columns: 1.5fr;
  }

  .grid-info-cms.four-parts {
    width: auto;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }
}

#w-node-_078182db-0087-6fed-fcae-2263a6a57af8-a6a57af5 {
  grid-area: 1 / 2 / 2 / 12;
}

#w-node-a4cb8a96-4076-69b8-20e7-868afec73e14-fec73e11 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-b94b5b8e-a8c8-f632-173a-8c06fed8ce60-2e1834b3, #w-node-a091b7d7-1584-7357-a847-85f401d8df9b-dd5567fa, #w-node-_65e18fb3-b34d-6f53-0e1a-21f37bf324de-dd5567fc, #w-node-_647fe047-73b8-b0b9-c2ed-6217c347bf69-dd556803 {
  grid-area: 1 / 2 / 2 / 12;
}

#w-node-_647fe047-73b8-b0b9-c2ed-6217c347bf72-dd556803 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_26d66cd9-7eb7-0cf9-4ba1-836fec2c53b2-dd556803 {
  align-self: center;
  justify-self: center;
}

#w-node-_26d66cd9-7eb7-0cf9-4ba1-836fec2c53b4-dd556803, #w-node-_26d66cd9-7eb7-0cf9-4ba1-836fec2c53b6-dd556803 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-_78480481-1744-88cb-e709-4a10b52c2de9-dd556804 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_398cc5e0-ee2d-e927-187e-7e166d0d0c16-dd556804 {
  align-self: center;
  justify-self: center;
}

#w-node-_398cc5e0-ee2d-e927-187e-7e166d0d0c18-dd556804, #w-node-_398cc5e0-ee2d-e927-187e-7e166d0d0c1a-dd556804 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-_6d6cbadc-51ef-4326-4c86-3918a616cde3-dd55683b, #w-node-_6d6cbadc-51ef-4326-4c86-3918a616cde6-dd55683b, #w-node-_6d6cbadc-51ef-4326-4c86-3918a616cde9-dd55683b, #w-node-_6d6cbadc-51ef-4326-4c86-3918a616cdec-dd55683b, #w-node-_6d6cbadc-51ef-4326-4c86-3918a616cdef-dd55683b, #w-node-_6d6cbadc-51ef-4326-4c86-3918a616cdf2-dd55683b, #w-node-_6d6cbadc-51ef-4326-4c86-3918a616cdf5-dd55683b, #w-node-_6d6cbadc-51ef-4326-4c86-3918a616cdf8-dd55683b {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

@media screen and (max-width: 991px) {
  #w-node-_078182db-0087-6fed-fcae-2263a6a57af8-a6a57af5 {
    grid-column-end: 8;
  }

  #w-node-_3acb6800-44ef-be75-7170-2f1e30471d86-30471d3c {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-a4cb8a96-4076-69b8-20e7-868afec73e14-fec73e11 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-b94b5b8e-a8c8-f632-173a-8c06fed8ce60-2e1834b3, #w-node-a091b7d7-1584-7357-a847-85f401d8df9b-dd5567fa, #w-node-_65e18fb3-b34d-6f53-0e1a-21f37bf324de-dd5567fc, #w-node-_647fe047-73b8-b0b9-c2ed-6217c347bf69-dd556803 {
    grid-column-end: 8;
  }

  #w-node-dbc27dc6-e52d-d861-7f3e-c60026def2ea-dd556803 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_6d6cbadc-51ef-4326-4c86-3918a616cde3-dd55683b, #w-node-_6d6cbadc-51ef-4326-4c86-3918a616cde6-dd55683b, #w-node-_6d6cbadc-51ef-4326-4c86-3918a616cde9-dd55683b, #w-node-_6d6cbadc-51ef-4326-4c86-3918a616cdec-dd55683b, #w-node-_6d6cbadc-51ef-4326-4c86-3918a616cdef-dd55683b, #w-node-_6d6cbadc-51ef-4326-4c86-3918a616cdf2-dd55683b, #w-node-_6d6cbadc-51ef-4326-4c86-3918a616cdf5-dd55683b, #w-node-_6d6cbadc-51ef-4326-4c86-3918a616cdf8-dd55683b {
    grid-column: span 4 / span 4;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_078182db-0087-6fed-fcae-2263a6a57af8-a6a57af5, #w-node-b94b5b8e-a8c8-f632-173a-8c06fed8ce60-2e1834b3, #w-node-a091b7d7-1584-7357-a847-85f401d8df9b-dd5567fa, #w-node-_65e18fb3-b34d-6f53-0e1a-21f37bf324de-dd5567fc, #w-node-_647fe047-73b8-b0b9-c2ed-6217c347bf69-dd556803 {
    grid-column: 1 / 9;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_078182db-0087-6fed-fcae-2263a6a57af8-a6a57af5 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-a4cb8a96-4076-69b8-20e7-868afec73e14-fec73e11 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-b94b5b8e-a8c8-f632-173a-8c06fed8ce60-2e1834b3 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_60f5ebdb-1e71-6450-d25c-da22ed20aebf-dd5567f7, #w-node-_60f5ebdb-1e71-6450-d25c-da22ed20aec2-dd5567f7 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_60f5ebdb-1e71-6450-d25c-da22ed20aec5-dd5567f7, #w-node-_672ee5b6-dcad-b945-95bf-3259e2619ca2-dd5567f8 {
    grid-area: Area;
  }

  #w-node-a091b7d7-1584-7357-a847-85f401d8df9b-dd5567fa, #w-node-_65e18fb3-b34d-6f53-0e1a-21f37bf324de-dd5567fc, #w-node-_647fe047-73b8-b0b9-c2ed-6217c347bf69-dd556803 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-dbc27dc6-e52d-d861-7f3e-c60026def2dd-dd556803 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


