/* Version 1.1 */

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1.5;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.25;
}
ol,
ul,
li {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

body {
  font-family: "Open Sans";
}

a {
  color: currentColor;
  text-decoration: none;
}

:root {
  --white: #ffffff;
  --light-grey: #e4e4e4;
  --black: #2b2b2b;
  --dark-blue: #00315f;
  --yellow: #fcb116;
  --dark-green: #305c00;
}

:root {
  --font-small: 1.1rem;
  --font-medium: 1.3rem;
  --font-medium-large: 1.6rem;
  --font-large: 2.5rem;
  --font-x-large: 3rem;
}

.xl {
  font-size: var(--font-x-large);
  font-weight: 100;
  line-height: 120%;
  /*   margin-bottom: 2rem; */
}

.lg {
  font-size: var(--font-large);
  /*   margin-bottom: 2rem; */
  line-height: 1.25;
  font-weight: 200;
  color: var(--black);
}

.md {
  line-height: 150%;
  font-weight: 300;
  /*   margin-bottom: 4rem; */
  font-size: var(--font-medium);
  color: var(--darker-grey);
}

.sm {
  font-size: var(--font-small);

  font-weight: 100;
  line-height: 150%;
  /*   margin-bottom: 3rem; */
  color: var(--black);
}

:root {
  --padding-top: 3rem;
  --padding-right: 2rem;
  --padding-bottom: 3rem;
  --padding-left: 2rem;
}

button,
input[type="submit"],
input[type="reset"] {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}
.padding--block {
  padding: var(--padding-top) var(--padding-right) var(--padding-bottom)
    var(--padding-left);
}

@media only screen and (min-width: 475px) {
  :root {
    --padding-top: 3.5rem;
    --padding-right: 2.5rem;
    --padding-bottom: 3.5rem;
    --padding-left: 2.5rem;
    --font-small: 1.3rem;
    --font-medium: 1.4rem;
    --font-medium-large: 1.6rem;
    --font-large: 2.5rem;
    --font-x-large: 3rem;
  }
}

@media only screen and (min-width: 600px) {
  :root {
    --padding-top: 4.5rem;
    --padding-right: 3rem;
    --padding-bottom: 4.5rem;
    --padding-left: 3rem;
    --font-small: 1.3rem;
    --font-medium: 1.4rem;
    --font-medium-large: 1.6rem;
    --font-large: 2.5rem;
    --font-x-large: 3rem;
  }
}

@media only screen and (min-width: 1024px) {
  :root {
    --padding-top: 5.5rem;
    --padding-right: 4rem;
    --padding-bottom: 5.5rem;
    --padding-left: 4rem;
    --font-medium-large: 1.8rem;
    --font-large: 2.6rem;
    --font-x-large: 3.5rem;
  }
}

@media only screen and (min-width: 1200px) {
  :root {
    --padding-top: 7rem;
    --padding-right: 6rem;
    --padding-bottom: 7rem;
    --padding-left: 6rem;
    --font-large: 2.8rem;
    --font-x-large: 4rem;
  }
}

@media only screen and (min-width: 1366px) {
  :root {
    --font-x-large: 5rem;
  }
}

@media only screen and (min-width: 1440px) {
  :root {
    --padding-top: 9vw;
    --padding-right: 7vw;
    --padding-bottom: 9vw;
    --padding-left: 7vw;
  }
}

.py--0 {
  padding-top: 0;
  padding-bottom: 0;
}

.px--0 {
  padding-left: 0;
  padding-right: 0;
}

.pb--0 {
  padding-bottom: 0;
}
.pt--0 {
  padding-top: 0;
}

.py--half {
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
}

.pb--half {
  padding-bottom: var(--padding-bottom);
}

.pt--half {
  padding-top: var(--padding-top);
}

.pr--half {
  padding-right: var(--padding-right);
}

.pl--half {
  padding-left: var(--padding-left);
}

.px--half {
  padding-left: var(--padding-left);
  padding-right: var(--padding-right);
}

@media only screen and (min-width: 1024px) {
  .py--half {
    padding-top: calc(var(--padding-top) / 2);
    padding-bottom: calc(var(--padding-bottom) / 2);
  }

  .pb--half {
    padding-bottom: calc(var(--padding-bottom) / 2);
  }

  .pt--half {
    padding-top: calc(var(--padding-top) / 2);
  }

  .pr--half {
    padding-right: calc(var(--padding-right) / 2);
  }

  .pl--half {
    padding-left: calc(var(--padding-left) / 2);
  }

  .px--half {
    padding-left: calc(var(--padding-left) / 2);
    padding-right: calc(var(--padding-right) / 2);
  }
}

.white {
  color: white;
}

.grey {
  color: var(--dark-grey);
}

p {
  letter-spacing: 1px;
  line-height: 150%;
}

h1,
h2,
h3 {
  font-family: "Lora", serif;
}

h4,
h5,
p,
a,
button {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
}

header {
  width: 100vw;
  height: max-content;
  background: linear-gradient(
    180deg,
    rgb(18 18 18 / 84%) 2.4%,
    rgb(38 38 38 / 46%) 59.62%,
    rgba(83, 83, 83, 0) 100%
  );
  display: flex;
  position: fixed;
  align-items: center;
  padding: 1rem 5rem;
  z-index: 999999;
}

.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

.logo img {
  height: 6rem;
}

.nav__links {
  display: flex;
  flex-direction: row;
  margin-left: auto;
  color: white;
  padding-right: 4rem;
  font-weight: 400;
  gap: 30px;
  text-transform: uppercase;
}

.btn {
  position: relative;
  padding: 1rem 2rem;

  text-transform: uppercase;
  overflow: hidden;
  z-index: 1;
  text-align: center;
  min-width: max-content;
  background-color: var(--white);
  color: var(--black);
  margin-left: auto;
  font-size: 1rem;
}

.contact__links {
  display: flex;
  justify-content: end;
  padding: 2rem 2rem 0rem 2rem;
  gap: 5rem;
  background: linear-gradient(180deg, #00203c53 0%, #00356388 100%);
}

.contact__item svg {
  height: 20px;
  fill: white;
}

.contact__item {
  display: flex;
  gap: 10px;
  align-items: center;
  color: white;
  text-transform: uppercase;
  font-weight: 500;
}

.social__icons {
  margin-left: auto;
}

.social__icons svg {
  height: 30px;
  fill: #00203c;
}

@media screen and (max-width: 1000px) {
  .secondary__nav {
    gap: 30px;
  }

  .cta__button {
    display: none;
  }
}

.burger {
  display: none;
  padding: 0;
  margin-left: auto;
}

@media screen and (max-width: 1000px) {
  .burger {
    display: block;
    z-index: 99999;
  }

  header {
    padding: 2rem;
  }

  .nav__link {
    display: none;
  }

  .nav__links {
    display: none !important;
  }
}

.burger span {
  width: 22px;
  height: 1px;
  margin: 5px;
  background-color: rgb(255, 255, 255);
  transition: transform 0.3s ease;
  display: block;
}

@media screen and (max-width: 550px) {
  .contact__links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

.burger {
  background: none;
  border: none;
  appearance: none;
}

@media screen and (max-width: 1200px) {
  .nav-links {
    position: absolute;
    top: 0;
    right: 0;
    min-height: 100vh;
    width: 100%;
    color: var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translate(0);
    transition: transform 0.5s ease-in;
    gap: 40px;
    z-index: 9999;
    background: #003563;
    color: white;

    justify-content: flex-start;
  }
}

.nav-links a {
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: 600;
}

.burger.active .line1 {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active .line2 {
  opacity: 0;
}

.burger.active .line3 {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-links {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 0;
}

.nav-active {
  transform: translate(100%);
}

@media screen and (min-width: 1000px) {
  .cta__button {
    display: flex;
  }

  .nav-links {
    display: none;
  }
}

@media screen and (max-width: 1000px) {
  .nav-links-desktop {
    display: none;
  }
}

.nav__links {
  display: flex;
  gap: 10px;
}

.nav__item a {
  padding: 1rem;
}

.nav__links .nav__item {
  color: var(--white);
  position: relative;
}

.nav__item.dropdown {
  position: relative;
}

.nav__item.dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #35353571;
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.nav__item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 0;
  margin: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--white);
  text-decoration: none;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.dropdown-toggle {
  cursor: pointer;
}

.nav__links .nav__item.nav__item--active > a::after {
  transform: translateX(0%);
}

.nav__links .nav__item > a {
  position: relative;
  overflow: hidden;
}

.nav__links .nav__item > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: var(--dark-orange);
  transform: translateX(-101%);
  transition: var(--fast-speed);
}

.nav__links .nav__item:hover a::after {
  transform: translateX(0%);
}

.nav__links .nav__item:hover .inner__nav {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.nav__links .nav__item .inner__nav {
  z-index: 999;
  background-color: #003563;
  position: fixed;
  display: grid;
  grid-template-columns: 1fr;
  padding: 1.5rem 1.5rem 1.5rem 1.5em;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: var(--mid-speed);
}

.nav__links .nav__item .inner__nav .inner__nav__links {
  display: grid;
  grid-template-columns: 1fr;
  -moz-column-gap: 4rem;
  column-gap: 4rem;
}

.nav__links .nav__item .inner__nav .inner__nav__links li {
  width: -moz-max-content;
  width: max-content;
}

.inner__nav__links li {
  margin-bottom: 1rem !important;
}

.nav__links
  .nav__item
  .inner__nav
  .inner__nav__links
  li.nav__item--active
  > a::after {
  transform: translateX(0%);
}

.nav__links .nav__item .inner__nav .inner__nav__links li a {
  position: relative;
  overflow: hidden;
}

.nav__links .nav__item .inner__nav .inner__nav__links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: var(--dark-orange);
  transform: translateX(-101%);
  transition: var(--fast-speed);
}

.inner__nav__menu {
  display: flex;
  flex-direction: column;
  gap: 30px;
  z-index: 99999;
}

@media screen and (max-width: 1000px) {
  .burger {
    display: block;
    z-index: 999999;
  }

  .nav__links {
    display: none;
  }

  .secondary__nav {
    display: none;
  }
}

@media screen and (max-width: 1000px) {
  .cta__button {
    display: none;
  }
}

.mobile__sub li a {
  font-size: 1rem;
}

.nav-links span {
  font-size: 1.2rem;
}

.mobile__sub {
  display: none;
}

.show {
  display: flex;
}

.mobile__sub {
  flex-direction: column;
  gap: 20px;
  align-items: center;
  margin-bottom: 2rem;
}

.mobile-active {
  transform: translate(-100%);
}

.main__nav__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  right: 0;
  position: absolute;
  width: 60%;
  min-width: 250px;
  transform: translateX(100%);
  transition: all 0.4s ease;
  z-index: 998;

  &.active {
    transform: translateX(0%);
  }

  .main__nav {
    padding: 1.5rem 1.5rem 1.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: var(--black);
    color: white;
    width: 100%;
    height: 100%;
    padding-top: 12rem;
    position: relative;

    .main__inner__nav {
      padding: 1.5rem 1.5rem 1.5rem 2.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      background-color: var(--black);
      color: white;
      width: 100%;
      height: 100%;
      padding-top: 12rem;
      position: absolute;
      top: 0;
      left: 0;
      transform: translateX(100%);
      transition: all 0.4s ease;

      &.active {
        transform: translateX(0%);
      }
    }
  }
}

.main__nav__item,
.main__inner__nav li {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.main__nav__link svg {
  height: 24px;
  padding-left: 1rem;
  fill: white;
}

.main__inner__nav svg {
  height: 24px;
  padding-right: 1rem;
  fill: white;
}

.main__nav__link,
.main__inner__nav li {
  display: flex;
  align-items: center;
  fill: white;
}

.back__btn {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

@media screen and (max-width: 600px) {
  .main__nav__wrapper {
    width: 100%;
  }
}

.logo svg {
  height: 8rem;
}

.hero__container {
  width: 100%;
  min-height: 70vh;
  background-image: url("assets/hero-image.png");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero__container:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
}

.hero__content {
  text-align: center;
  position: relative;
  z-index: 999;
  display: flex;
  align-items: center;
  flex-direction: column;
  max-width: 1000px;
  margin: auto;
}

.hero__content h3 {
  color: white;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 2rem;
  margin-top: 3rem;
}

.hero__content h2 {
  font-size: 3rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.hero__content p {
  color: rgb(235, 235, 235);
}

.logo img {
  height: 10rem;
  margin-bottom: 2rem;
}

.footer__container {
  width: 100%;
  background-color: var(--dark-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer__container p {
  color: rgb(196, 196, 196);
  text-align: center;
}

.welcome__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

.welcome__container > div {
  max-width: 768px;
}

.welcome__title {
  font-size: 3rem;
  color: var(--black);
}

.button {
  background: var(--dark-blue);
  padding: 1rem 2rem;
  color: white;
  width: max-content;
  margin-top: 2rem !important;
  margin: auto;
}

.banner {
  width: 100%;
  background-color: var(--dark-blue);
  color: white;
  padding: 0.8rem;
  text-align: center;
  z-index: 999;
  position: relative;
  text-transform: uppercase;
  font-size: 0.8em;
}

.video__section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video__section iframe {
  width: 80%;
  height: 400px;
}

.button__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;

  gap: 1rem;
}

.button__image img {
  width: 100%;
  position: relative;
  height: 400px;
  object-fit: cover;
}

.button__item {
  position: relative;
  transition: ease-in-out 0.2s;
}

.button__item:hover {
  transform: translateY(-5px);
}

.button__content {
  display: flex;
  width: 100%;
  position: absolute;
  padding: 1rem;
  font-size: 1.5rem;
  color: white;
  text-transform: uppercase;
  text-align: center;
  justify-content: center;
  bottom: 0rem;
  align-items: center;
  z-index: 999;
  font-weight: 600;
  border-bottom: 20px solid var(--dark-blue);
}

.button__overlay {
  width: 100%;
  height: 100%;
  background: #00315f;
  background: linear-gradient(
    180deg,
    rgba(0, 49, 95, 0) 0%,
    rgba(0, 49, 95, 0.801) 80%,
    rgb(0, 49, 95) 90%,
    rgba(0, 49, 95, 1) 100%
  );

  position: absolute;
  z-index: 1;
}

.contact__container {
  background-color: #ffd74a;
  text-align: center;
  padding: 6rem;
}

.contact__title {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.contact__icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.contact__icon svg {
  width: 1.2rem;
}

.contact__icon p {
  margin-bottom: 0;
  font-weight: 700;
  color: var(--dark-blue);
}

@media only screen and (max-width: 1024px) {
  .button__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 768px) {
  .button__grid {
    grid-template-columns: 1fr;
  }
}
