* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  line-height: 1.6;
}

:root {
  --header_font: "Work Sans", sans-serif;
  --header_font_color: #111827;
  --para_font: "Inter", sans-serif;
  --para_font_color: #363d4f;
  --white: #fff;
  --black: #000;
  --pry_btn_color: #31356e;
  --light_white: #fafafa;
  --medium_white: #e5e5e5;
  --light_grey: #686868;
  --medium_grey: #5a5a5a;
  --grey: #363d4f;
  --shadow_md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow_lg: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
}

body {
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  background: var(--white);
  overflow-x: hidden;
}

body > * {
  transition: 0.4s ease;
}

a {
  font-family: var(--header_font);
  color: var(--header_font_color);
  text-decoration: none;
}

a,
button {
  display: inline-block;
  font-size: 1.6rem;
  cursor: pointer;
  transition: 0.4s ease;
}

p {
  font-family: var(--para_font);
  font-size: 1.6rem;
  line-height: 1.4;
  color: #111827;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--header_font);
  font-size: 2rem;
  line-height: 1.2;
  color: #111827;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  /* padding: 2rem 2rem 0rem 2rem; */
}

.pry_btn {
  width: max-content;
  height: 4rem;
  background: var(--pry_btn_color);
  color: var(--white);
  padding: 0.1rem 2rem;
  border: 0.1rem solid var(--pry_btn_color);
  border-radius: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--header_font);
  font-weight: 600;
  animation: wiggle 1.3s ease-in-out infinite;
}

.pry_btn:hover {
  background: var(--white);
  color: var(--pry_btn_color);
}

/* Desktop Navbar */
nav {
  width: 100vw;
  margin: 0 auto;
  background: var(--light_white);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

.desktop_nav {
  background: var(--white);
  max-width: 90%;
  margin: 0 auto;
  border-radius: 5rem;
  padding: 0.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.desktop_nav .left {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.desktop_nav .left .logo {
  display: flex;
  align-items: center;
  width: 10rem;
  height: 5rem;
}

.desktop_nav .left .logo svg {
  width: 100%;
  height: 100%;
}

.desktop_nav .left .navlist {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.desktop_nav .left .navlist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.desktop_nav .left .navlist li a {
  text-transform: capitalize;
  font-weight: 500;
}

.desktop_nav .left .navlist li i {
  font-size: 1.2rem;
  transition: 0.4s ease;
}

.desktop_nav .left .navlist li i.rotate {
  transform: rotate(-90deg);
  transition: 0.4s ease;
}

.desktop_nav .left .navlist li .modal {
  position: absolute;
  top: 100%;
  left: -5%;
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  display: flex;
  padding: 3rem;
  gap: 3rem;
  box-shadow: var(--shadow_md);
  width: max-content;
  border-radius: 1.2rem;
  background: var(--white);
  z-index: 20;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.desktop_nav .left .navlist li .modal:not(.hidden) {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.desktop_nav .left .navlist li .modal article {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.desktop_nav .left .navlist li .modal article h4 {
  text-transform: uppercase;
  font-size: 1.3rem;
  color: var(--para_font_color);
}

.desktop_nav .left .navlist li .modal article ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.desktop_nav .left .navlist li .modal article ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.desktop_nav .left .navlist li .modal article ul li svg {
  width: 1.5rem;
  height: 1.5rem;
}

.desktop_nav .left .navlist li .modal article ul li p, .desktop_nav .left .navlist li .modal article ul li a {
  font-size: 1.2rem;
}

/* .desktop_nav .middle {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  align-items: center;
  position: relative;
} */

.auth_btn {
  background: transparent;
  color: var(--pry_btn_color);
  display: flex;
  align-items: center;
  gap: .5rem;
  border: .2rem solid var(--pry_btn_color);
  animation: none;
}

.auth_btn:hover {
  color: #fff;
  background: var(--pry_btn_color);
}

/* Mobile Nav */
.mobile_toggle {
  display: none;
  cursor: pointer;
}

.mobile_nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--white);
  z-index: 20;
  padding: 2rem;
  box-shadow: var(--shadow_md);
  height: 50vh;
  overflow-y: scroll;
}

.mobile_nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile_nav ul li ul {
  padding-left: 1.5rem;
  list-style: none;
}

.hidden {
  display: none;
}

.mobile_nav ul li a {
  font-size: 2rem;
  font-weight: 500;
  color: var(--header_font_color);
}

.mobile_nav ul li .pry_btn {
  font-size: 1.4rem;
  color: var(--white);
}

.mobile_nav ul li .pry_btn:hover {
  background: transparent;
  color: var(--pry_btn_color);
}

.mobile_nav:not(.hidden) {
  display: block;
}

.mobile_dropdown_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--header_font);
  font-size: 2rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--header_font_color);
}

.mobile_submenu {
  list-style: none;
  margin-top: 1rem;
  margin-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile_submenu.hidden {
  display: none;
}

.mobile_submenu li p {
  font-size: 1.8rem;
  color: var(--para_font_color);
}

.mobile_nav ul li ul li {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile_nav ul li ul li svg {
  width: 2rem;
  height: 2rem;
}

.mobile_nav .buttons {
  display: flex;
  gap: 1.4rem;
  margin-top: 2rem;
}

.mobile_nav .auth_btn {
  background: transparent;
  color: var(--pry_btn_color) !important;
  display: flex;
  align-items: center;
  gap: .5rem;
  border: .2rem solid var(--pry_btn_color);
  animation: none;
}

.mobile_nav .auth_btn:hover {
  color: #fff !important;
  background: var(--pry_btn_color) !important;
}

@media (max-width: 920px) {
  .desktop_nav .left .navlist,
  .desktop_nav .right {
    display: none;
  }

  .mobile_toggle {
    display: block;
  }

  .desktop_nav {
    width: 100%;
    max-width: 100%;
    justify-content: space-between;
    align-items: center;
    border-radius: 0;
  }
}

/* CONTACT SHOWCASE SECTION */
#contact {
  width: 100%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.574),
    rgba(208, 205, 205, 0.185),
    rgba(254, 226, 226, 0.579)
  );
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10rem 1rem 2rem 1rem;
}

#contact .section_container {
  display: flex;
  gap: 2rem;
  padding: 3rem;
  width: 100%;
}

#contact .section_container .col_1 {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: flex-start;
  flex-basis: 50%;
}

#contact .section_container .col_1 h3 {
  font-size: 4rem;
  font-weight: bold;
  color: #181d27;
}

#contact .section_container .col_1 p {
  font-size: 1.6rem;
}

#contact .section_container .col_1 ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

#contact .section_container .col_1 ul li {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

#contact .section_container .col_1 ul li i {
  font-size: 2rem;
}

#contact .section_container .col_2 {
  flex-basis: 50%;
  position: relative;
}

#contact .section_container .col_2 svg {
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 2.5rem;
  height: 2.5rem;
}

#contact .section_container .col_2 form {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: #fff;
  border: 0.1rem solid #d0d5dd;
  border-radius: 0.8rem;
}

#contact .section_container .col_2 form div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#contact .section_container .col_2 form div label,
.question_block h5 {
  font-size: 1.5rem;
  text-transform: capitalize;
  font-weight: 700;
  color: #414651;
  font-family: var(--header_font);
}

#contact .section_container .col_2 form div input {
  border: 0;
  background: #fafafa;
  border-radius: 0.8rem;
  width: 100%;
  padding: 2rem 1rem;
  font-size: 1.6rem;
  font-family: var(--header_font);
}

#contact .section_container .col_2 form div input[type="number"] {
  appearance: textfield;
  --moz-appearance: textfield;
}

#contact .section_container .col_2 form div input::placeholder,
.option_text {
  font-size: 1.6rem;
  font-family: var(--header_font);
  color: #717680;
  font-weight: 400;
}

#contact .section_container .col_2 form div textarea {
  border-radius: 0.8rem;
  background: #fafafa;
  width: 100%;
  height: 16rem;
  resize: none;
  border: 0;
  font-family: var(--header_font);
  font-size: 1.6rem;
  padding: 2rem 1rem;
}

#contact .section_container .col_2 form div input:focus,
#contact .section_container .col_2 form div textarea:focus {
  outline: 2px solid #31356e;
}

#field input[type="number"] {
  appearance: textfield !important;
  -moz-appearance: textfield !important;
}

#field input[type="number"]::-webkit-inner-spin-button,
#field input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}

#field input[type="number"]:focus {
  border: 0 !important;
}

#phone_field {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.6rem !important;
}

#phone_input_group {
  display: flex !important;
  align-items: center !important;
  border-radius: 0.8rem !important;
  background: inherit !important;
  overflow: hidden !important;
}

#country_code {
  width: 100% !important;
  display: flex !important;
  flex-direction: row !important;
  border-radius: 0.8rem;
  background: #fafafa;
}

#phone_input_group select {
  width: 30% !important;
  font-family: var(--header_font) !important;
  font-size: clamp(1.6rem, 1.4rem, 1.2rem) !important;
  padding: 1rem 0.8rem !important;
  border: none !important;
  background: #ffffff1a !important;
  color: #717680 !important;
  outline: none !important;
  cursor: pointer !important;
}

#phone_input_group input {
  width: 60% !important;
  flex: 1 !important;
  font-family: var(--header_font) !important;
  font-size: clamp(1.6rem, 1.4rem, 1.2rem) !important;
  padding: 2rem 0.5rem !important;
  border: none !important;
  outline: none !important;
  background: inherit !important;
  color: #000 !important;
}

#phone_input_group input::placeholder {
  font-size: 1.6rem;
  font-family: var(--header_font);
  color: #717680;
  font-weight: 400;
}

#phone_input_group:focus-within {
  border: 2px solid #31356e;
}

#phone_input_group:focus-within input {
  outline: none;
}

.product_interest {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.question_block {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.options label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: #e2e2e2;
  padding: 0.5rem 0;
  user-select: none;
  font-family: var(--para_font);
  font-size: clamp(1.4rem, 1.2rem, 1rem);
  cursor: pointer;
}

.option input[type="checkbox"],
.option input[type="radio"] {
  display: none;
}

.checkbox {
  width: 1.8rem;
  height: 1.8rem;
  border: 0.2rem solid var(--medium_white);
  margin-right: 0.8rem;
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.option input[type="checkbox"]:checked + .checkbox,
.option input[type="radio"]:checked + .checkbox {
  background: linear-gradient(135deg, #31356e 0%, #2a6bb8 100%);
  border-color: #31356e;
}

#contact .section_container .col_2 form .pry_btn {
  width: 100%;
  animation: none;
  margin-top: 3rem;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  font-size: 1.6rem;
  font-family: var(--header_font);
  cursor: pointer;
  border: none;
  background: linear-gradient(135deg, #31356e 0%, #2a6bb8 100%);
  color: #fff;
  border-radius: 0.8rem;
  transition: background 0.3s ease;
}

#contact .section_container .col_2 form .pry_btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

#contact .section_container .col_2 form .pry_btn .loader {
  border: 0.2rem solid #fff;
  border-top: 0.2rem solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 1.2rem;
  height: 1.2rem;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* SECTION MISSION */
#mission {
  width: 100%;
  text-align: center;
  background: #31356e;
  padding: 3.5rem;
  position: relative;
}

#mission h3 {
  width: 90%;
  margin: 0 auto;
  font-size: 2.8rem;
  color: #fff;
  font-weight: 600;
}

#mission svg {
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  top: 2rem;
  right: 3rem;
}

/* FOOTER */
footer {
  width: 100%;
  background: linear-gradient(
    to bottom,
    rgba(248, 241, 241, 0.8),
    rgba(253, 250, 250, 0.952),
    rgba(253, 248, 248, 0.9)
  );
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.footer_container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.footer_container .row_1 .logo svg {
  width: 12rem;
  height: 4rem;
}

.footer_container .row_1 p {
  font-size: 1.6rem;
  color: #111827;
  text-align: left;
}

.footer_container .row_2 {
  display: flex;
  gap: 1.2rem;
  justify-content: space-between;
  border-bottom: 0.1rem solid #e9eaeb;
  padding-bottom: 5rem;
}

.footer_container .row_2 article h4 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.footer_container .row_2 article ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer_container .row_2 article ul li a {
  text-transform: capitalize;
  font-size: 1.6rem;
  font-weight: 400;
  color: #535862;
}

.footer_container .row_3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer_container .row_3 .col_1 {
  display: flex;
  gap: 2rem;
  align-items: center;
  padding: 3rem 0;
}

.footer_container .row_3 .col_1 p {
  font-weight: 300;
  font-size: 1.6rem;
  color: #535862;
}

.footer_container .row_3 .col_1 a {
  font-weight: 500;
  font-size: 1.6rem;
  color: #535862;
}

/* .footer_container .row_3 .col_2 svg {
  width: 15rem;
  height: 5rem;
} */


.footer_container .row_3 .col_2 {
  display: flex;
  gap: 1.5rem;
  padding: 2rem 0;
}

.footer_container .row_3 .col_2 a {
  font-size: 3rem;
}

.footer_container .row_3 .col_2 a i {
  font-size: 100%;
  line-height: 0;
  color: var(--pry_btn_color);
}

/* Responsive */
@media (max-width: 1024px) {
  #contact .section_container {
    flex-direction: column;
  }

  #contact .section_container .col_1 h3 {
    font-size: 3.5rem;
  }

  #contact .section_container .col_1 p {
    font-size: 1.8rem;
  }
}
