/* MEDIA QUERIES */
/* COlORS */
:root {
  --mainTextColor: #ffffff;
  --uiColor: #7bb3d5;
  --uiColor2: #77c7e2;
  --separatorColor: #bfefff;
  --footerBgColor: #182333;
  --fieldBgColor: #0b172a;
  --fieldPlaceholderColor: rgba(255, 255, 255, .24);
  --fieldTextColor: #212121;
  --linear1: #498ebf;
  --linear2: #163155;
  --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, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
}

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

h1 {
  font-size: 80px;
  line-height: 1;
}
@media (min-width: 768px) and (max-width: 1023px) {
  h1 {
    font-size: 48px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  h1 {
    font-size: 40px;
  }
}

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

h3 {
  font-size: 36px;
  font-weight: 600;
}
@media (min-width: 768px) and (max-width: 1023px) {
  h3 {
    font-size: 24px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  h3 {
    font-size: 18px;
  }
}

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: 17px;
  }
}

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

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

p, input {
  font-size: 24px;
  line-height: 1.2;
}
p.p_sm, input.p_sm {
  font-size: 18px;
  color: var(--uiColor2);
}
@media (min-width: 768px) and (max-width: 1023px) {
  p.p_sm, input.p_sm {
    font-size: 14px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  p.p_sm, input.p_sm {
    font-size: 14px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  p, input {
    font-size: 16px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  p, input {
    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/symantec/mainBg.png");
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--mainTextColor);
}

.header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 50px 0 0;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .header {
    padding: 20px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .header {
    justify-content: center;
    padding: 20px;
  }
}
.header .ness-logo {
  position: relative;
  width: 74px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .header .ness-logo {
    width: 50px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .header .ness-logo {
    width: 30px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .header .logo {
    width: 50%;
  }
}
.header .separator {
  width: 1px;
  height: 70px;
  margin-inline: 24px;
  background: #55a5d2;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .header .separator {
    height: 50px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .header .separator {
    height: 30px;
  }
}

.content {
  flex: 1;
  max-width: 1200px;
  width: 100%;
  height: 100%;
  padding: 50px 0 16px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .content {
    padding: 30px 0 16px;
    max-width: 100%;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .content {
    max-width: 100%;
    padding: 0 0 8px;
  }
}
.content .hero {
  width: 100%;
  padding: 50px 0;
  border-bottom: 1px solid var(--separatorColor);
}
@media (min-width: 768px) and (max-width: 1023px) {
  .content .hero {
    width: auto;
    padding: 0 20px 50px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .content .hero {
    width: auto;
    padding: 16px 20px;
  }
}
.content .hero h1 {
  direction: ltr;
  text-align: center;
}
@media (min-width: 320px) and (max-width: 767px) {
  .content .hero h1 {
    margin-top: 0;
  }
}
.content .hero h4 {
  padding-top: 16px;
  color: var(--uiColor);
  text-align: center;
}
.content .sec1 {
  display: flex;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .content .sec1 {
    padding: 0 20px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .content .sec1 {
    flex-direction: column;
    padding: 30px 20px;
  }
}
.content .sec1 .text {
  flex: 1;
  margin-inline-end: 70px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .content .sec1 .text {
    margin-inline-end: 0;
    margin-bottom: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .content .sec1 .text p br {
    display: none;
  }
}
.content .sec1 .cards {
  flex: 1;
}
.content .sec2 {
  border-bottom: 1px solid var(--separatorColor);
}
@media (min-width: 768px) and (max-width: 1023px) {
  .content .sec2 .text {
    padding: 50px 20px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .content .sec2 .text {
    padding: 30px 20px;
  }
}
.content .sec2 .text p {
  padding-bottom: 24px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .content .sec2 .text p {
    padding-bottom: 16px;
  }
}
.content .sec2 .text p:last-child {
  padding-bottom: 0;
}
.content .sec2 .text p span {
  color: var(--uiColor);
}
.content .sec3 {
  padding-bottom: 50px;
  border-bottom: 1px solid var(--separatorColor);
}
@media (min-width: 768px) and (max-width: 1023px) {
  .content .sec3 {
    padding: 0 20px 50px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .content .sec3 {
    padding: 20px;
  }
}
.content .sec3 .card_icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: url("/images/laningPages/symantec/icons_bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 184px;
  max-width: 184px;
  height: 223px;
  max-height: 223px;
  margin-inline-end: 48px;
  padding-top: 32px;
}
.content .sec3 .card_icon:last-child {
  margin-inline-end: 0;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .content .sec3 .card_icon {
    width: 150px;
    max-width: 150px;
    height: 200px;
    max-height: 200px;
    margin-inline-end: 24px;
    padding-top: 24px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .content .sec3 .card_icon {
    width: 150px;
    max-width: 150px;
    height: 200px;
    max-height: 200px;
    margin-inline-end: 24px;
    padding-top: 24px;
  }
}
.content .sec3 .card_icon .icon {
  margin-bottom: 16px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .content .sec3 .card_icon .icon {
    margin-bottom: 12px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .content .sec3 .card_icon .icon {
    margin-bottom: 12px;
  }
}
.content .sec3 .card_icon .p_sm {
  max-width: 120px;
  text-align: center;
  color: var(--mainTextColor);
}
@media (min-width: 768px) and (max-width: 1023px) {
  .content .sec3 .card_icon .p_sm {
    max-width: 100px;
    font-size: 16px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .content .sec3 .card_icon .p_sm {
    max-width: 100px;
    font-size: 16px;
  }
}
.content .sec3 .card_icon .p_sm b {
  font-weight: 500;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .content .sec4 {
    padding: 0 20px 50px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .content .sec4 .flex_wrap {
    flex-direction: column;
  }
}
.content .sec4 .card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  margin-inline-end: 24px;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--uiColor2);
  background-color: #092038;
  background-image: linear-gradient(324deg, var(--linear1), var(--linear2));
  background-blend-mode: soft-light;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .content .sec4 .card {
    margin-inline-end: 16px;
    padding: 16px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .content .sec4 .card {
    margin-inline-end: 0;
    margin-bottom: 16px;
    padding: 16px;
  }
}
.content .sec4 .card:last-child {
  margin-inline-end: 0;
}
.content .sec4 .card h3 {
  color: rgba(255, 255, 255, 0.24);
}
.content .sec4 .card p {
  flex: 1;
}
@media (min-width: 320px) and (max-width: 767px) {
  .content .sec4 .card p {
    padding: 8px 0;
  }
}
.content .sec4 .card a {
  position: relative;
  color: var(--mainTextColor);
  text-decoration: none;
  align-self: flex-end;
}
.content .sec4 .card a:after {
  content: ">";
  margin-inline-start: 8px;
}
.content .text {
  padding: 50px 0;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .content .text {
    padding: 50px 0;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .content .text {
    padding: 0 20px 20px;
  }
}
.content .text h2 {
  padding: 16px 0 32px;
  font-weight: 600;
  line-height: 1;
}
.content .text h2 span {
  color: var(--uiColor);
}
.content .cards {
  padding: 50px 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .content .cards {
    align-items: center;
    justify-content: center;
    padding: 20px 0;
  }
}
.content .cards .card {
  max-width: 190px;
  height: 138px;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--uiColor2);
}
@media (min-width: 768px) and (max-width: 1023px) {
  .content .cards .card {
    max-width: 124px;
    height: 104px;
    padding: 16px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .content .cards .card {
    max-width: 124px;
    height: 104px;
    padding: 16px;
  }
}
.content .cards .card .card_title {
  color: var(--uiColor);
  font-size: 60px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .content .cards .card .card_title {
    font-size: 42px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .content .cards .card .card_title {
    font-size: 42px;
  }
}
.content .cards .card p.p_sm {
  color: var(--mainTextColor);
}
.content .img {
  width: 100%;
}
.content .img img {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .content .img {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 20px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .content .img {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 20px;
  }
}
.content .form-title {
  padding: 50px 50px 0;
  font-weight: 500;
  color: var(--uiColor);
}
@media (min-width: 768px) and (max-width: 1023px) {
  .content .form-title {
    padding: 50px 20px 0;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .content .form-title {
    padding: 20px 20px 0;
  }
}
.content .form-title span {
  font-weight: 300;
}

.legend_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 100px 0 50px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .legend_logo {
    margin: 40px 0 20px;
  }
}
.legend_logo img {
  max-width: 500px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .legend_logo img {
    max-width: 300px;
  }
}

.flex_wrap {
  display: flex;
  align-items: stretch;
  justify-content: center;
}
@media (min-width: 320px) and (max-width: 767px) {
  .flex_wrap {
    flex-wrap: wrap;
  }
}

button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 56px;
  max-height: 56px;
  color: var(--mainTextColor);
  border: none;
  border-radius: 16px;
  background-image: linear-gradient(324deg, var(--linear1), var(--linear2));
  font-size: 24px;
  font-weight: 400;
  transition: all 0.2s ease-in;
}
button:hover {
  background-image: linear-gradient(45deg, var(--linear1), var(--linear2));
}
@media (min-width: 768px) and (max-width: 1023px) {
  button {
    max-width: 100%;
    width: 100%;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  button {
    max-width: 100%;
    width: 100%;
  }
}

.form_wrap {
  padding: 32px;
  border-radius: 24px;
  border: 1px solid var(--uiColor2);
  background: var(--fieldBgColor);
}
@media (min-width: 768px) and (max-width: 1023px) {
  .form_wrap {
    max-width: 86%;
    margin: auto;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .form_wrap {
    max-width: 86%;
    margin: auto;
    padding: 16px;
  }
}
.form_wrap h4, .form_wrap h5 {
  text-align: center;
}
.form_wrap h4 span, .form_wrap h5 span {
  color: var(--uiColor);
}
.form_wrap h5 {
  padding-top: 16px;
}

.form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  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;
    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: 16px;
}
@media (min-width: 320px) and (max-width: 767px) {
  #contactFrom .nessAccMainForm-Item {
    margin-inline-end: 0;
  }
}
#contactFrom .nessAccMainForm-Item:has(input:not(:-moz-placeholder)) label {
  top: -4px;
}
#contactFrom .nessAccMainForm-Item:has(input:hover) label, #contactFrom .nessAccMainForm-Item:has(input:focus) label, #contactFrom .nessAccMainForm-Item:has(input:not(:placeholder-shown)) label {
  top: -4px;
}
#contactFrom .nessAccMainForm-Item label {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--fieldPlaceholderColor);
  padding: 2px 4px;
  background: var(--fieldBgColor);
}
@media (min-width: 768px) and (max-width: 1023px) {
  #contactFrom .nessAccMainForm-Item label {
    top: 24px;
  }
}
#contactFrom .nessAccMainForm-Item input {
  max-width: 216px;
  width: 216px;
  height: 40px;
  margin-top: 4px;
  padding: 8px 16px;
  background: var(--fieldBgColor);
  color: var(--mainTextColor);
  border-radius: 16px;
  border: 1px solid var(--uiColor2);
}
#contactFrom .nessAccMainForm-Item input.redAlertBorder {
  border: 2px solid var(--errorTextColor);
}
@media (min-width: 768px) and (max-width: 1023px) {
  #contactFrom .nessAccMainForm-Item input {
    max-width: 98%;
    width: 98%;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  #contactFrom .nessAccMainForm-Item input {
    max-width: 94%;
    width: 94%;
  }
}
#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;
}
#contactFrom .nessAccMainForm-btnRowItem .nessAccMainForm-Item {
  margin: 0;
}

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 */