/* LAYOUT */
@import url("layout/header.css");
@import url("layout/footer.css");
@import url("layout/breadcrumb.css");
@import url("layout/banner.css");

/* COMPONENTS */
@import url("components/buttons.css");
@import url("components/form.css");
@import url("components/social-links.css");
@import url("components/accordion.css");
@import url("components/marquee.css");
@import url("components/tabs.css");
@import url("components/tooltip.css");
@import url("components/password-toggler.css");
@import url("components/slider-controls.css");
@import url("components/keyframes.css");
@import url("components/projects-box.css");
@import url("components/news-box.css");
@import url("components/questions.css");
@import url("components/back-to-top.css");
@import url("components/signature-text.css");

/* VIEWS */
@import url("views/homepage.css");
@import url("views/about-us.css");
@import url("views/projects.css");
@import url("views/architecture.css");
@import url("views/sustainability.css");
@import url("views/news.css");
@import url("views/contact.css");
@import url("views/career.css");
@import url("views/investors.css");

/* ============================================== */
/* ==================== FONTS =================== */
/* ============================================== */

@font-face {
  font-family: "PP Formula";
  font-weight: 100;
  src: url("../fonts/PPFormula/PPFormula-SemiCondensedThin.otf") format("opentype");
}

@font-face {
  font-family: "PP Formula";
  font-weight: 200;
  src: url("../fonts/PPFormula/PPFormula-SemiCondensedExtralight.otf") format("opentype");
}

@font-face {
  font-family: "PP Formula";
  font-weight: 300;
  src: url("../fonts/PPFormula/PPFormula-Light.otf") format("opentype");
}

@font-face {
  font-family: "PP Formula";
  font-weight: 400;
  src: url("../fonts/PPFormula/PPFormula-NarrowRegular.otf") format("opentype");
}

@font-face {
  font-family: "PP Formula";
  font-weight: 500;
  src: url("../fonts/PPFormula/PPFormula-ExtendedMedium.otf") format("opentype");
}

@font-face {
  font-family: "PP Formula";
  font-weight: 600;
  src: url("../fonts/PPFormula/PPFormula-SemiExtendedBold.otf") format("opentype");
}

@font-face {
  font-family: "PP Formula";
  font-weight: 700;
  src: url("../fonts/PPFormula/PPFormula-ExtendedBold.otf") format("opentype");
}

@font-face {
  font-family: "PP Formula";
  font-weight: 800;
  src: url("../fonts/PPFormula/PPFormula-Extrabold.otf") format("opentype");
}

/* ============================================== */
/* ================== VARIABLES ================= */
/* ============================================== */

:root {
  color-scheme: only light;
  --container: 1520px;
  --small-spacing: 2rem 0;
  --regular-spacing: 4rem 0;
  --large-spacing: 6rem 0;
  --x-large-spacing: 8rem 0;
  --nova-dark: #000000;
  --nova-black-1: #303030;
  --nova-light: #ffffff;
  --nova-white-1: #f4f4f4;
  --nova-brown-1: #393232;
  --nova-red-1: #d2402b;
  --nova-blue-1: #66c8f3;
  --nova-green-1: #e2f0e4;
  --nova-green-2: #757e38;
  --nova-grey-1: #e0e0e0;
  --nova-grey-2: #c7c8ca;
  --nova-grey-3: #747474;
  --nova-grey-4: #b0afac;
  --nova-grey-5: #dddfe1;
  --nova-grey-6: #abafb3;
  --transparent: rgba(0, 0, 0, 0);
  --transition: cubic-bezier(0.42, 0, 0.58, 1);
  --letter-spacing-large: 3px;
  --font-80: 5rem;
  --font-60: 3.75rem;
  --font-58: 3.625rem;
  --font-50: 3.125rem;
  --font-48: 3rem;
  --font-46: 2.875rem;
  --font-44: 2.75rem;
  --font-40: 2.5rem;
  --font-36: 2.25rem;
  --font-34: 2.125rem;
  --font-32: 2rem;
  --font-30: 1.875rem;
  --font-28: 1.75rem;
  --font-26: 1.625rem;
  --font-24: 1.5rem;
  --font-22: 1.375rem;
  --font-20: 1.25rem;
  --font-18: 1.125rem;
  --font-16: 1rem;
  --font-14: 0.875rem;
  --font-12: 0.75rem;
  --line-46: 2.875rem;
  --line-30: 1.875rem;
  --line-26: 1.625rem;
  --line-20: 1.25rem;
  --col-2: repeat(6, 1fr);
  --col-5: repeat(5, 1fr);
  --col-3: repeat(4, 1fr);
  --col-4: repeat(3, 1fr);
  --col-6: repeat(2, 1fr);
  --col-12: repeat(1, 1fr);
  --w-25: 25%;
  --w-33: calc(100% / 3);
  --w-50: 50%;
  --w-66: calc(100% / 3 * 2);
  --w-75: 75%;
  --w-100: 100%;
  --home-mask: polygon(50% 0, 100% 40%, 100% 100%, 0 100%, 0 40%);
  --notch-right: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0% 100%);
  --notch-left: polygon(15px 0, 100% 0, 100% 100%, 0% 100%, 0 15px);
  --notch-right-large: polygon(0 0, calc(100% - 100px) 0, 100% 100px, 100% 100%, 0% 100%);
}

/* ============================================== */
/* ================== RESET CSS ================= */
/* ============================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  /* scroll-behavior: smooth; */
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  font-variant-numeric: tabular-nums;
}

body {
  font-family: "PP Formula";
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  overflow-wrap: break-word;
}

a {
  text-decoration: none;
  font-size: var(--font-16);
  font-weight: 700;
  line-height: normal;
}

p {
  font-size: var(--font-16);
  font-weight: 300;
  line-height: var(--line-26);
}

ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 0;
  outline: none;
}

input[type="number"] {
  appearance: textfield;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
}

figure {
  margin: 0;
  unicode-bidi: unset;
}

/* ============================================== */
/* ================== MAIN CSS ================== */
/* ============================================== */

.app {
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track-piece {
  background: var(--nova-light);
}

::-webkit-scrollbar-track {
  background: var(--nova-brown-1);
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: var(--nova-brown-1);
}

::-webkit-scrollbar-thumb:hover {
  opacity: 0.7;
}

.eg-container {
  padding: 0 1rem;
  max-width: var(--container);
  margin: 0 auto;
}

.brand-logo {
  display: block;
}

.brand-logo > img {
  width: 240px;
}

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-icon > svg {
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  max-width: 30px;
  max-height: 30px;
}

.home-icon::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='50' viewBox='0 0 51 45' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 45V16.6574L25.4927 0L51 16.6574V45H0Z' fill='%23D2402B'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
  width: 60px;
  height: 50px;
}

.notched-image {
  clip-path: var(--notch-right-large);
  aspect-ratio: 729/410;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-image {
  clip-path: var(--home-mask);
  aspect-ratio: 700/600;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.alert-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 5px;
  padding: 1rem;
}

.alert-box.success {
  background: rgb(0, 207, 110);
}

.alert-box.error {
  background: rgb(242, 61, 61);
}

.alert-box > .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.alert-box > .icon > svg {
  fill: var(--nova-light);
}

.alert-box > p {
  color: var(--nova-light);
  font-size: var(--font-20);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 200;
  margin-top: 4px;
}

/* ============================================== */
/* ================ ROOT QUERIES ================ */
/* ============================================== */

@media (max-width: 1600px) {
  :root {
    --container: 1420px;
    --font-60: 3.375rem;
    --font-50: 2.75rem;
    --font-48: 2.625rem;
    --font-46: 2.5rem;
    --font-40: 2.25rem;
    --font-36: 2rem;
    --font-30: 1.75rem;
    --font-24: 1.375rem;
    --font-22: 1.25rem;
    --font-20: 1.125rem;
    --font-18: 1rem;
    --line-46: 2.625rem;
    --line-30: 1.75rem;
    --line-26: 1.5rem;
  }
}

@media (max-width: 1400px) {
  :root {
    --container: 1220px;
    --font-60: 3rem;
    --font-50: 2.375rem;
    --font-48: 2.25rem;
    --font-46: 2.125rem;
    --font-40: 2rem;
    --font-36: 1.75rem;
    --font-30: 1.625rem;
    --font-24: 1.25rem;
    --font-22: 1.125rem;
    --line-46: 2.375rem;
    --line-30: 1.625rem;
    --line-26: 1.375rem;
  }
  .brand-logo > img {
    width: 200px;
  }
}

@media (max-width: 1200px) {
  :root {
    --font-60: 2.625rem;
    --font-50: 2.125rem;
    --font-48: 2rem;
    --font-46: 1.875rem;
    --font-40: 1.75rem;
    --font-36: 1.625rem;
    --font-30: 1.5rem;
    --font-24: 1.125rem;
    --font-20: 1rem;
    --font-16: 0.875rem;
    --font-14: 0.75rem;
    --line-46: 2rem;
    --line-30: 1.5rem;
    --line-26: 1.25rem;
  }
}

@media (max-width: 992px) {
  :root {
    --font-60: 2.25rem;
    --font-50: 2rem;
    --font-48: 1.875rem;
    --font-46: 1.75rem;
    --font-40: 1.625rem;
    --font-36: 1.5rem;
    --font-30: 1.375rem;
    --line-46: 1.75rem;
    --line-30: 1.375rem;
    --line-26: 1.125rem;
    --x-large-spacing: 6rem 0;
    --large-spacing: 4rem 0;
    --regular-spacing: 2rem 0;
    --home-mask: polygon(50% 0, 100% 30%, 100% 100%, 0 100%, 0 30%);
  }
}

@media (max-width: 576px) {
  :root {
    --font-60: 2rem;
    --font-50: 1.875rem;
    --font-48: 1.75rem;
    --font-46: 1.625rem;
    --font-40: 1.5rem;
    --font-36: 1.375rem;
    --font-30: 1.25rem;
    --notch-right-large: polygon(0 0, calc(100% - 50px) 0, 100% 50px, 100% 100%, 0% 100%);
    --notch-right: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 0% 100%);
  }
  .brand-logo > img {
    width: 180px;
  }
}
