/* MEDIA QUERIES */
/* COlORS */
:root {
  --mainTextColor: #212121;
  --invertedTextColor: #ffffff;
  --uiColor: #a6ce39;
  --uiColor2: #437696;
  --footerBgColor: #212121;
  --bgColor: #ffffff;
  --formBgColor: #a6ce39;
  --fieldBgColor: #ffffff;
  --fieldPlaceholderColor: #666666;
  --fieldTextColor: #212121;
  --errorTextColor: #e40707;
}

/* TEXT */
h1, h2, h3, h4, h5, h6, p, a, li, label {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1;
  margin: 0;
  padding: 0;
}

h1 {
  font-weight: 600;
}

h2, h3, h4, h5, h6 {
  font-weight: 500;
}

p, a, li, label {
  font-weight: 400;
}

h3 {
  font-size: 70px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  h3 {
    font-size: 40px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  h3 {
    font-size: 24px;
  }
}

h4 {
  font-size: 40px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  h4 {
    font-size: 24px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  h4 {
    font-size: 18px;
  }
}

h5 {
  font-size: 36px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  h5 {
    font-size: 21px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  h5 {
    font-size: 16px;
  }
}

h6 {
  font-size: 24px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  h6 {
    font-size: 20px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  h6 {
    font-size: 16px;
  }
}

p, li {
  font-size: 18px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  p, li {
    font-size: 16px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  p, li {
    font-size: 14px;
  }
}

label {
  font-size: 16px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  label {
    font-size: 16px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  label {
    font-size: 12px;
  }
}

/* DESIGN */
body {
  direction: rtl;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
  background: var(--bgColor);
  color: var(--mainTextColor);
}

.content {
  flex: 1;
  max-width: 1200px;
  width: 100%;
  height: 100%;
  padding: 30px 0 8px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .content {
    max-width: 100%;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .content {
    max-width: 100%;
    padding: 20px 0 8px;
  }
}
.content .header {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .content .header {
    padding: 0 50px 24px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .content .header {
    padding: 0 20px 16px;
  }
}
.content .header .main-logo {
  height: 54px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .content .header .main-logo {
    height: 50px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .content .header .main-logo {
    height: 30px;
    padding: 0;
  }
}
.content .hero {
  padding: 0 50px 0 0;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .content .hero {
    width: 100%;
    max-width: -webkit-fill-available;
    max-width: -moz-available;
    max-width: stretch;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .content .hero {
    padding: 0 20px;
  }
}
.content .hero .title {
  position: relative;
  color: var(--uiColor2);
  z-index: 10;
}
.content .hero .title h3:nth-child(2) {
  font-weight: 400;
}
@media (min-width: 320px) and (max-width: 767px) {
  .content .hero .title h3 br {
    display: none;
  }
}
.content .hero .hero_content {
  width: 100%;
  margin-top: -120px;
  display: flex;
  justify-content: space-between;
  align-items: start;
}
@media (min-width: 320px) and (max-width: 767px) {
  .content .hero .hero_content {
    flex-direction: column;
  }
}
.content .hero .hero_content .illusration {
  max-width: 40%;
  width: 40%;
  min-width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 320px) and (max-width: 767px) {
  .content .hero .hero_content .illusration {
    max-width: 100%;
    width: 100%;
  }
}
.content .hero .hero_content .illusration img {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: auto;
}
.content .hero .hero_content .illusration p {
  position: relative;
  max-width: 80%;
  padding-top: 24px;
  font-size: 20px;
  color: var(--uiColor2);
}
@media (min-width: 768px) and (max-width: 1023px) {
  .content .hero .hero_content .illusration p {
    font-size: 13px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .content .hero .hero_content .illusration p {
    padding-top: 16px;
    font-size: 13px;
  }
}
.content .hero .hero_content .illusration p:before {
  content: '"';
  position: absolute;
  top: 16px;
  right: -20px;
  font-size: 32px;
  font-weight: 800;
}
.content .hero .hero_content .illusration p:after {
  content: '"';
  position: absolute;
  bottom: -20px;
  left: 60px;
  font-size: 32px;
  font-weight: 800;
}
.content .hero .hero_content .text {
  padding-top: 140px;
}
.content .hero .hero_content .text h5 {
  padding: 16px 0;
  font-weight: 400;
}
@media (min-width: 320px) and (max-width: 767px) {
  .content .hero .hero_content .text h5 {
    padding-bottom: 4px;
  }
}
.content .hero .hero_content .text h5:first-child {
  padding-bottom: 24px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .content .hero .hero_content .text h5:first-child {
    padding-bottom: 16px;
  }
}
.content .flex-wrap {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
}
@media (min-width: 320px) and (max-width: 767px) {
  .content .flex-wrap {
    flex-direction: column;
  }
}
.content .lists {
  padding: 30px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .content .lists {
    margin-top: 0;
    padding: 30px 50px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .content .lists {
    margin-top: 0;
    padding: 16px 20px;
  }
}
.content .lists .list {
  width: -moz-fit-content;
  width: fit-content;
  padding: 16px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .content .lists .list {
    padding: 0;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .content .lists .list {
    margin-bottom: 16px;
    padding: 0;
  }
}
.content .lists .list ul {
  margin: 0;
  padding: 16px 0 0 0;
}
@media (min-width: 320px) and (max-width: 767px) {
  .content .lists .list ul {
    padding: 8px 0;
  }
}
.content .lists .list ul li {
  list-style-type: none;
  padding-bottom: 8px;
  font-size: 24px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .content .lists .list ul li {
    font-size: 16px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .content .lists .list ul li {
    font-size: 16px;
  }
}
.content .lists .list ul li span {
  color: var(--uiColor);
  font-weight: 500;
}
.content .lists .list.color2 ul li span {
  color: var(--uiColor2);
}
.content .lists .list.color2 .list-title {
  color: var(--uiColor2);
}
.content .list-title {
  color: var(--uiColor);
}
.content .form-title {
  padding: 0 50px;
  color: var(--uiColor);
}
@media (min-width: 320px) and (max-width: 767px) {
  .content .form-title {
    padding: 0 20px;
  }
}
.content .form_subtitle {
  padding: 8px 50px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .content .form_subtitle {
    padding: 0 20px;
  }
}

button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 44px;
  max-height: 44px;
  color: var(--fieldTextColor);
  border: none;
  border-radius: 50px;
  background-image: linear-gradient(to bottom, #ffffff 0%, #fafafa 10%, #ededed 34%, #d8d8d8 57%, #bababa 79%, #ababab 100%);
  font-size: 32px;
  font-weight: 400;
  transition: all 0.2s ease-in;
}
button:after {
  content: url(/images/laningPages/cloud-trainings/btnIcon.png);
  width: 38px;
  height: 38px;
  margin-inline-start: 8px;
}
button:hover {
  background-image: linear-gradient(to top, #ffffff 0%, #fafafa 10%, #ededed 34%, #d8d8d8 57%, #bababa 79%, #ababab 100%);
}

.form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background: var(--formBgColor);
  padding: 32px 0;
}
.form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

#contactFrom {
  max-width: 1200px;
  width: 100%;
  padding: 0 50px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  #contactFrom {
    max-width: 100%;
    padding: 0;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  #contactFrom {
    max-width: 100%;
    padding: 0;
  }
}
#contactFrom .nessAccMainForm-rowItem {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0;
}
@media (min-width: 768px) and (max-width: 1023px) {
  #contactFrom .nessAccMainForm-rowItem {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  #contactFrom .nessAccMainForm-rowItem {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
  }
}
#contactFrom .nessAccMainForm-rowItem > :nth-child(-n+3) {
  grid-row: 1;
}
#contactFrom .nessAccMainForm-rowItem > :nth-child(n+4) {
  grid-row: 2;
}
#contactFrom .nessAccMainForm-Item {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-inline-end: 0;
}
@media (min-width: 320px) and (max-width: 767px) {
  #contactFrom .nessAccMainForm-Item {
    margin-inline-end: 0;
  }
}
#contactFrom .nessAccMainForm-Item label {
  color: var(--invertedTextColor);
}
#contactFrom .nessAccMainForm-Item input {
  max-width: 100%;
  height: 28px;
  margin-top: 4px;
  padding: 8px 16px;
  background: var(--fieldBgColor);
  color: var(--fieldTextColor);
  border-radius: 2px;
  border: none;
}
@media (min-width: 768px) and (max-width: 1023px) {
  #contactFrom .nessAccMainForm-Item input {
    max-width: 100%;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  #contactFrom .nessAccMainForm-Item input {
    max-width: 100%;
  }
}
#contactFrom .nessAccMainForm-Item input.redAlertBorder {
  border: 2px solid var(--errorTextColor);
}
#contactFrom .nessAccMainForm-Item .mainAccreqColor {
  color: var(--errorTextColor);
}
#contactFrom .nessAccMainForm-Item .mainAcctErrorAlert {
  position: absolute;
  bottom: 4px;
  left: 8px;
  color: var(--errorTextColor);
  font-size: 16px;
  font-weight: 400;
}
#contactFrom .nessAccMainForm-Item .mainAcctErrorAlert.disabeld {
  display: none;
}
#contactFrom .nessAccMainForm-btnRowItem {
  align-content: end;
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: -webkit-fill-available;
  max-width: -moz-available;
  max-width: stretch;
  padding: 8px;
  background: var(--footerBgColor);
}
footer a {
  color: var(--invertedTextColor);
}/*# sourceMappingURL=css.css.map */