/* MEDIA QUERIES */
/* COlORS */
:root {
  --mainTextColor: #ffffff;
  --invertedTextColor: #ffffff;
  --uiColor: #a6f60c;
  --footerBgColor: #2f3132;
  --bgColor: #ffffff;
  --formBgColor: #56b2fa;
  --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;
}

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

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

h3 {
  font-size: 64px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  h3 {
    font-size: 50px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  h3 {
    font-size: 36px;
  }
}

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

h5 {
  font-size: 24px;
  font-weight: 400;
}
@media (min-width: 768px) and (max-width: 1023px) {
  h5 {
    font-size: 22px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  h5 {
    font-size: 20px;
  }
}

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

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

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

/* DESIGN */
body {
  direction: rtl;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
  /*background: url("/images/laningPages/akamai-ness/mainBg.png");*/
  background-repeat: no-repeat;
  background-size: cover;
  backdrop-filter: blur(8px);
  color: var(--mainTextColor);
  background-color: #0b2e59;
}

.content {
  flex: 1;
  max-width: 1200px;
  width: 100%;
  height: 100%;
  background: url("/images/laningPages/akamai-ness/mainBg.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 32px 0 16px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .content {
    max-width: 100%;
    background-position: top;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .content {
    max-width: 100%;
    padding: 20px 0 8px;
    background: url("/images/laningPages/akamai-ness/mainBgMobile_full.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
  }
}
.content .header {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: flex-start;
  padding-bottom: 20px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .content .header {
    padding: 0 20px 16px;
  }
}
.content .header .main-logo {
  height: 64px;
  margin-inline-start: 20px;
  padding-inline-start: 20px;
  border-right: 1px solid var(--mainTextColor);
}
@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;
    margin-inline-start: 10px;
    padding-inline-start: 10px;
  }
}
.content .header .main-logo:last-child {
  margin-inline-start: 0;
  padding-inline-start: 0;
  border: 0;
}
.content .hero {
  display: block;
  padding: 0 50px;
}
@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;
  }
}
.content .hero h3 {
  margin-top: -10px;
  color: var(--uiColor);
}
@media (min-width: 320px) and (max-width: 767px) {
  .content .hero h3 {
    margin-top: 10px;
    padding: 0 20px;
  }
}
.content .mobile_img {
  display: none;
  max-height: 300px;
  overflow: visible;
}
@media (min-width: 320px) and (max-width: 767px) {
  .content .mobile_img {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.content .mobile_img img {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: auto;
}
.content .text {
  padding: 50px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .content .text {
    padding: 32px 20px;
  }
}
.content .text h5 {
  line-height: 1.2;
}
.content .text h5:first-child {
  padding-bottom: 20px;
}
.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 .list {
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 50px;
  padding: 0 50px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .content .list {
    margin-bottom: 16px;
    padding: 0 20px;
  }
}
.content .list ul {
  margin: 0;
  padding: 16px 0 0 0;
}
.content .list ul li {
  display: flex;
  list-style-type: none;
  padding-bottom: 16px;
}
.content .list ul li p {
  line-height: 1.2;
}
.content .list ul li span {
  font-weight: 500;
}
.content .list ul li::before {
  content: "";
  width: 10px;
  min-width: 10px;
  height: 10px;
  margin-inline-end: 16px;
  margin-top: 4px;
  align-self: start;
  border-radius: 10px;
  border: 2px solid var(--uiColor);
}
@media (min-width: 320px) and (max-width: 767px) {
  .content .list ul li::before {
    align-self: flex-start;
    margin: 2px 0 0 8px;
  }
}
.content .list-title {
  color: var(--uiColor);
}
.content .form-title {
  padding: 0 50px;
  color: var(--mainTextColor);
  font-weight: 400;
}
@media (min-width: 320px) and (max-width: 767px) {
  .content .form-title {
    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/akamai-ness/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%;
}
@media (min-width: 768px) and (max-width: 1023px) {
  #contactFrom {
    max-width: 100%;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  #contactFrom {
    max-width: 100%;
  }
}
#contactFrom .nessAccMainForm-rowItem {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0 50px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  #contactFrom .nessAccMainForm-rowItem {
    display: flex;
    flex-direction: column;
  }
}
@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: 16px;
}
@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 {
  height: 28px;
  margin-top: 4px;
  padding: 8px 16px;
  background: var(--fieldBgColor);
  color: var(--fieldTextColor);
  border-radius: 2px;
  border: none;
}
#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 */