html,
body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

html {
  min-width: var(--min-width);
}

* {
  box-sizing: border-box;
}

@font-face {
  font-family: "Roboto";
  src: url("./assets/fonts/Roboto-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("./assets/fonts/Roboto-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("./assets/fonts/Roboto-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("./assets/fonts/Roboto-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("./assets/fonts/Roboto-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Condensed";
  src: url("./assets/fonts/RobotoCondensed-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Condensed";
  src: url("./assets/fonts/RobotoCondensed-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Condensed";
  src: url("./assets/fonts/RobotoCondensed-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --font: "Roboto", Helvetica, Arial, sans-serif;
  --font-cond: "Roboto Condensed", Helvetica, Arial, sans-serif;

  --min-width: 1366px;

  --white: #fff;
  --black: #000;

  --success: #669900;
  --success-02: #558000;
  --primary: #c43d2f;
  --warning: #fb3;
  --warning-02: #ebad32;

  --darker-grey: #222;
  --grey-04: #ccc;
  --grey: #666;
  --light-grey: #888;
  --dark-grey: #444;
  --lighter-grey: #d7d7d7;
  --grey-line: #ddd;
  --lightest-grey: #f6f6f6;
  --light-grey-new: #BDBDBD;
  --dark-blue: #030A0E;
  --dark-blue1: #1C2F38;
  --dark-blue2: #10181C;

  --alert: #ff4444;
  --white-t-5: rgba(255, 255, 255, 0.05);
  --white-t-50: rgba(255, 255, 255, 0.5);
  --white-t-75: rgba(255, 255, 255, 0.75);
  --white-t-20: rgba(255, 255, 255, 0.2);
  --black-t-75: rgba(0, 0, 0, 0.75);
  --black-t-25: rgba(0, 0, 0, 0.25);
  --black-t-20: rgba(0, 0, 0, 0.2);
  --black-t-10: rgba(0, 0, 0, 0.1);
  --black-t-60: rgba(0, 0, 0, 0.6);
  --black-t-40: rgba(0, 0, 0, 0.4);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  box-shadow: none;
  transition: all .2s linear;
}

::-webkit-scrollbar-track {
  background-color: var(--grey-04);
  border: none;
}

::-webkit-scrollbar-thumb {
  background-clip: content-box;
  border: 2px solid transparent;
  background-color: var(--light-grey);
  border-radius: 10px;
  transition: all 1s linear;
}

:hover::-webkit-scrollbar-thumb {
  background-color: var(--primary);
}

.l-landing-page {
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.c-header-top {
  height: 30px;
  background-color: var(--darker-grey);
  line-height: 20px;
  display: flex;
  justify-content: space-between;
}
.c-header-top__right {
  display: flex;
  align-items: center;
}
.c-header-top__link {
  padding: 0 4px;
  color: var(--white-t-75);
  font-family: var(--font-cond);
  font-size: 11px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.2s linear;
}
.c-header-top__link:hover {
  background-color: var(--white-t-20);
  color: var(--white);
}
.c-header-top__link--icon {
  width: 20px;
  height: 20px;
  padding: 0;
  margin-right: 2px;
}
.c-header-top__time {
  padding: 0 10px;
  border-left: 1px solid var(--white-t-50);
  color: var(--white-t-50);
  font-weight: 600;
}
.l-landing-page-inner {
  background: url(./assets/svg/lp-bg.jpg) no-repeat top center;
  background-color: var(--grey-04);
  background-size: cover;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.l-landing-page-top {
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-family: var(--font);
}
.c-logo {
  width: auto;
  max-width: 400px;
  margin-top: 50px;
}

.c-landing-page__title,
.c-landing-page__content {
  color: var(--dark-grey);
  font-family: var(--font-cond);
  margin: 5px 0;
  color: var(--white);
}

.c-landing-page__title {
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font);
}
.c-landing-page__content {
  font-size: 18px;
  color: var(--lighter-grey);
}
.c-form-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
.c-form {
  width: 320px;
  padding: 20px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--dark-blue1) 0%, var(--dark-blue2) 100%);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
}

.c-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 30px;
  margin-left: auto;
  background-color: var(--warning);
  color: var(--dark-grey);
  font-size: 12px;
  font-family: var(--font-cond);
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.2s linear;
  margin-bottom: 10px;
  border: 0;
  outline: none;
  text-decoration: none;
  cursor: pointer;
}
.c-button:hover {
  background-color: var(--warning-02);
}
.c-button.c-button--success {
  background-color: var(--success);
  color: var(--white);
  margin-bottom: 0
}
.c-button--success:hover {
  background-color: var(--success-02);
}
.c-button:active {
  opacity: 0.7;
}
.c-form-text {
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  margin: 10px 5px;
  color: var(--white);
}
.l-landing-page__main {
  padding: 0 20px 20px;
  margin-top: 20px;
}
.c-card {
  flex: 1;
  cursor: pointer;
  background: linear-gradient(90deg, var(--dark-blue1) 0%, var(--dark-blue2) 100%);
  color: var(--dark-grey);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.2s linear;
  box-shadow: 0 1px 1px rgb(0 0 0 / 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}
.c-card::before {
  width: 100%;
  content: "";
  display: block;
  aspect-ratio: 2/1;
}
.c-card:hover {
  transform: translate(0, -10px);
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.75);
}

.c-card:hover .c-card__title:after {
  border-color: var(--primary);
}
.c-card:hover .c-card__title {
  color: var(--primary);
}
.c-card__img {
  position: absolute;
  top: 0;
  width: 100%;
  flex: 1;
  aspect-ratio: 2/1;
  object-fit: cover;
}
.c-card__description {
  min-height: 90px;
  font-size: 14px;
  font-family: var(--font);
  text-align: center;
  padding: 10px 20px 20px 20px;
  color: var(--light-grey-new);
}
.c-card__title {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 20px 10px 20px;
  font-size: 24px;
  font-weight: 500;
  line-height: 22px;
  text-align: center;
  font-family: var(--font-cond);
  text-transform: uppercase;
  color: var(--white);
  transition: all 0.2s linear;
}
.c-card__title:after {
  content: "";
  display: inline-block;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  padding: 6px;
  transform: rotate(-45deg);
  transition: all 0.2s linear;
}
.l-card-wrapper {
  display: flex;
  align-items: center;
  flex: 1;
  grid-gap: 20px;
}
#footer {
  position: relative;
  width: 100%;
  padding: 0;
  margin-top: 10px;
  background: var(--dark-blue);
  background-size: contain;
  color: var(--dark-grey);
  font-family: var(--font-cond);
  font-size: 12px;
  text-align: center;
}
#footer-wrapper > div {
  margin: 0;
  padding: 20px 0;
}
#footer-wrapper > div:nth-child(even) {
  background-color: var(--white-t-5);
}
#legal {
  padding: 20px;
  color: var(--light-grey);
}
#legal a {
  color: var(--light-grey);
  text-decoration: none;
}
