header .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
header .logo img {
  width: 200px;
}
header .navigation {
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 920px) {
  header .navigation {
    display: none;
  }
}
header .navigation ul {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
}
header .navigation ul li {
  position: relative;
}
header .navigation ul li a {
  text-decoration: none;
  text-transform: uppercase;
  color: #4c5758;
  font-weight: bold;
  font-size: 15px;
  font-family: Arial, Helvetica, sans-serif;
  text-wrap: nowrap;
}
header .navigation ul li .submenu {
  padding-top: 1rem;
  position: absolute;
  z-index: 999;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
header .navigation ul li .submenu ul {
  background-color: #222;
  flex-direction: column;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
  gap: 1rem;
  padding: 1rem;
  justify-content: center;
  align-items: center;
}
header .navigation ul li .submenu ul a {
  color: #fff;
  text-transform: capitalize;
  padding: 5px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 4px;
}
header .navigation ul li .submenu ul a:hover {
  color: #fff;
  background: #7f8c8d;
}
header .navigation ul li:hover .submenu {
  display: block;
}
header .breadcrumb {
  display: flex;
  width: 26px;
  gap: 7px;
  flex-direction: column;
  margin: 0 auto;
  display: none;
  margin-bottom: 1rem;
}
@media (max-width: 920px) {
  header .breadcrumb {
    display: flex;
  }
}
header .breadcrumb .breadcrumbLine {
  width: 100%;
  height: 3px;
  background: #4c5758;
}

.mobileNavigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  z-index: 999999;
  overflow: hidden;
  color: #fff;
  transition: all 400ms cubic-bezier(0, 0.995, 0.99, 1);
  opacity: 0;
}
.mobileNavigation.open {
  width: 100%;
  max-width: 100vw;
  height: 100%;
  height: 100vh;
  overflow: hidden;
  opacity: 1;
}
.mobileNavigation .closeBtn {
  position: absolute;
  top: 14px;
  right: 10px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.mobileNavigation .closeBtn::before {
  content: "";
  position: absolute;
  height: 3px;
  width: 100%;
  border-top: 3px solid;
  top: 50%;
  transform: rotate(45deg);
  background-color: #fff;
  margin: 0;
  border: 0;
}
.mobileNavigation .closeBtn::after {
  content: "";
  position: absolute;
  height: 3px;
  width: 100%;
  border-top: 3px solid;
  top: 50%;
  transform: rotate(-45deg);
  background-color: #fff;
  margin: 0;
  border: 0;
}
.mobileNavigation:before {
  content: "";
  position: fixed;
  top: -50%;
  left: -50%;
  width: 0;
  height: 0;
  background: rgba(20, 20, 20, 0.95);
  color: #fff;
  transition: all 400ms cubic-bezier(0, 0.995, 0.99, 1);
  border-radius: 500%;
  z-index: -1;
}
.mobileNavigation.open .mobileNav {
  position: fixed;
  overflow-y: auto;
  height: calc(100% - 60px);
  top: 60px;
  width: 100%;
  max-width: 100vw;
  text-align: left;
  left: 0;
}
.mobileNavigation.open:before {
  width: 175%;
  height: 175%;
}
.mobileNavigation .mobileNav {
  padding-top: 10px;
  transition: all 400ms cubic-bezier(0, 0.995, 0.99, 1);
}
.mobileNavigation .mobileNav.slide {
  left: -100%;
}
.mobileNavigation .mobileNav.sub {
  left: 100%;
}
.mobileNavigation .mobileNav.sub .backBtn {
  color: rgba(255, 255, 255, 0.3) !important;
  display: flex;
  gap: 0.5rem;
}
.mobileNavigation .mobileNav.sub.slide {
  left: 0%;
}
.mobileNavigation .mobileNav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobileNavigation .mobileNav ul li {
  font-family: "Arial", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.5em;
  text-transform: capitalize;
  letter-spacing: 0em;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobileNavigation .mobileNav ul li.has-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobileNavigation .mobileNav ul li.has-child .arrow-icon i {
  margin-right: 1.5rem;
  font-size: 2rem;
}
.mobileNavigation .mobileNav ul li a {
  text-decoration: none;
  color: #fff !important;
}

@font-face {
  font-family: "HelveticaNeue-light";
  font-weight: 300;
  src: url("../fonts/helvetica-neue-5/HelveticaNeueLight.otf");
}
@font-face {
  font-family: "HelveticaNeue-regular";
  font-weight: 400;
  src: url("../fonts/helvetica-neue-5/HelveticaNeueLight.otf");
}
@font-face {
  font-family: "HelveticaNeue-medium";
  font-weight: 500;
  src: url("../fonts/helvetica-neue-5/HelveticaNeueMedium.otf");
}
@font-face {
  font-family: "HelveticaNeue-Bold";
  font-weight: 600;
  src: url("../fonts/helvetica-neue-5/HelveticaNeueBold.otf");
}
:root {
  --primary-font: "HelveticaNeue-regular";
  --primary-font-medium: "HelveticaNeue-medium";
  --primary-font-bold: "HelveticaNeue-Bold";
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--primary-font);
  font-size: 16px;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

p {
  margin-top: 0;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1rem;
}

.primary--btn {
  display: flex;
  padding: 1rem;
  min-width: 200px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #1a2430;
  color: #fff;
  font-family: var(--primary-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: none;
}

.paymentFormPage {
  min-height: calc(100vh - 130px);
  position: relative;
}

.successPage {
  min-height: calc(100vh - 130px);
  position: relative;
}
.successPage .paymentForm .paymentFormCols .colRight {
  padding-left: 5rem;
  padding-bottom: 2rem;
}
@media (max-width: 768px) {
  .successPage .paymentForm .paymentFormCols .colRight {
    padding-left: 2rem;
  }
}
.successPage .paymentForm .paymentFormCols .colRight .title {
  margin-bottom: 4rem;
  max-width: 318px;
  position: relative;
  margin: 0 auto 4rem auto;
}
.successPage .paymentForm .paymentFormCols .colRight .title h1 {
  color: #000;
  text-align: center;
  font-family: var(--primary-font-bold);
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.successPage .paymentForm .paymentFormCols .colRight .paymentBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.successPage .paymentForm .paymentFormCols .colRight .paymentBox .price h1 {
  margin-bottom: 1rem;
  color: #000;
  font-family: var(--primary-font-bold);
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.successPage .paymentForm .paymentFormCols .colRight .paymentBox .date p {
  color: #4a5057;
  font-family: var(--primary-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.successPage .paymentForm .paymentFormCols .colRight .paymentInfo ul {
  display: flex;
  margin: 0 -1rem;
  padding-left: 2rem;
  list-style: none;
  width: 100%;
  flex-wrap: wrap;
  border-top: 1px solid #cdcdcd;
  padding-top: 2rem;
}
@media (max-width: 768px) {
  .successPage .paymentForm .paymentFormCols .colRight .paymentInfo ul {
    padding-left: 0rem;
  }
}
.successPage .paymentForm .paymentFormCols .colRight .paymentInfo ul li {
  width: 50%;
  padding: 1rem 1rem;
  color: #1a2430;
  font-family: var(--primary-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.successPage .paymentForm .paymentFormCols .colRight .downloadBtn {
  display: flex;
  justify-content: flex-end;
  margin-top: 2rem;
}

.errorPage {
  min-height: calc(100vh - 130px);
  position: relative;
}
.errorPage .paymentForm .paymentFormCols .colRight {
  padding-left: 5rem;
  padding-bottom: 2rem;
  padding-top: 5rem;
}
@media (max-width: 768px) {
  .errorPage .paymentForm .paymentFormCols .colRight {
    padding-left: 0rem;
  }
}
.errorPage .paymentForm .paymentFormCols .colRight .errorIcon {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.errorPage .paymentForm .paymentFormCols .colRight .title {
  max-width: 318px;
  position: relative;
  margin: 0 auto 4rem auto;
}
.errorPage .paymentForm .paymentFormCols .colRight .title h1 {
  color: #000;
  text-align: center;
  font-family: var(--primary-font-bold);
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.errorPage .paymentForm .paymentFormCols .colRight .payAgainBtn {
  display: flex;
  justify-content: center;
}
.errorPage .paymentForm .paymentFormCols .colRight .contactInfo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 6rem;
  gap: 1rem;
}
.errorPage .paymentForm .paymentFormCols .colRight .contactInfo span {
  color: #4a5057;
  font-family: var(--primary-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: block;
  margin-bottom: 1rem;
}
.errorPage .paymentForm .paymentFormCols .colRight .contactInfo p {
  margin-bottom: 0;
  color: #1a2430;
  text-align: center;
  font-family: var(--primary-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
.errorPage .paymentForm .paymentFormCols .colRight .contactInfo p a {
  margin-bottom: 0;
  color: #1a2430;
  text-align: center;
  font-family: var(--primary-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
}

.paymentForm .paymentFormBg {
  position: absolute;
  left: 0;
  height: 100%;
  width: 50%;
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  .paymentForm .paymentFormBg {
    display: none;
  }
}
.paymentForm .paymentFormCols {
  display: flex;
  margin: 0 -1rem;
}
.paymentForm .paymentFormCols .colLeft {
  width: 50%;
  padding: 0 1rem;
}
@media (max-width: 768px) {
  .paymentForm .paymentFormCols .colLeft {
    display: none;
  }
}
.paymentForm .paymentFormCols .colRight {
  width: 50%;
  padding: 0 1rem;
}
@media (max-width: 768px) {
  .paymentForm .paymentFormCols .colRight {
    width: 100%;
  }
}

.form {
  padding-left: 5rem;
}
@media (max-width: 920px) {
  .form {
    padding-left: 2rem;
  }
}
@media (max-width: 920px) {
  .form {
    padding-left: 0rem;
  }
}
.form .title {
  margin-bottom: 4rem;
  max-width: 318px;
  position: relative;
}
.form .title .icon-back {
  position: absolute;
  left: -18%;
  top: 50%;
  transform: translateY(-100%);
  display: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .form .title .icon-back {
    position: unset;
    transform: unset;
  }
}
.form .title .icon-back.show {
  display: block;
}
.form .title h1 {
  font-family: var(--primary-font-bold);
  color: #000;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 920px) {
  .form.stepTwo .title {
    padding-left: 4rem;
  }
}
@media (max-width: 768px) {
  .form.stepTwo .title {
    padding-left: 0;
  }
}
@media (max-width: 920px) {
  .form.stepTwo .icon-back {
    left: 2%;
  }
}
.form .subTitle {
  margin-bottom: 2rem;
}
.form .subTitle h3 {
  font-family: var(--primary-font-medium);
  color: #1a2430;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.form form #stepTwo {
  display: none;
}
.form form .formCol {
  display: flex;
  margin: 0 -1rem;
}
@media (max-width: 540px) {
  .form form .formCol {
    flex-direction: column;
    margin: 0 0rem;
  }
}
.form form .formCol .formGroup {
  width: 50%;
  padding: 0 1rem;
  margin-bottom: 1.5rem;
}
.form form .formCol .formGroup .error {
  color: #fe0000;
}
@media (max-width: 540px) {
  .form form .formCol .formGroup {
    width: 100%;
    padding: 0;
  }
}
.form form .formCol .formGroup label {
  color: #4a5057;
  font-family: var(--primary-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0.5rem;
  display: inline-block;
}
.form form .formCol .formGroup input[type=text],
.form form .formCol .formGroup input[type=email] {
  width: 100%;
  border: 1px solid #c2c9d2;
  padding: 10px 12px;
  box-sizing: border-box;
}
.form form .formGroup {
  width: 100%;
  margin-bottom: 1.5rem;
}
.form form .formGroup .error {
  color: #fe0000;
}
.form form .formGroup .formGroupTitle h3 {
  font-family: var(--primary-font-medium);
  color: #1a2430;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.form form .formGroup label {
  color: #4a5057;
  font-family: var(--primary-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0.5rem;
  display: inline-block;
}
.form form .formGroup input[type=text],
.form form .formGroup input[type=email],
.form form .formGroup input[type=tel],
.form form .formGroup textarea {
  width: 100%;
  border: 1px solid #c2c9d2;
  padding: 10px 12px;
  box-sizing: border-box;
  outline: none;
}
.form form .formGroup p {
  color: #656363;
  font-family: var(--primary-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.form form .formGroup.submitBtn {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}
.form form .formGroup.submitBtn .paymentLogo {
  display: flex;
  gap: 0.5rem;
}
.form form .formGroup.submitBtn .paymentLogo > div {
  align-self: center;
}
.form form .formGroup.submitBtn input[type=submit] {
  cursor: pointer;
}
.form form .formGroup.submitBtn button {
  cursor: pointer;
}
.form form .formGroup .summaryGroup {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.form form .formGroup .summaryGroup input[type=text] {
  flex: 1;
}

/*# sourceMappingURL=app.css.map */
