@import url("./assets/css/reset.css");
/*
Theme Name: Webrom 3.0
Version: 1.00
Author: Webrom
Author URI: https://webrom.lt
Text Domain: webrom-theme
Domain Path: /languages
*/

:root {
  /* Color variables */
  --black_white50: #ffffff;
  --black_white950: #040404;

  --neutral50: #fcfcfc;
  --neutral100: #eeeeee;
  --neutral200: #cfcfcf;
  --neutral300: #b3b3b3;
  --neutral400: #989898;
  --neutral500: #7c7c7c;
  --neutral600: #636363;
  --neutral700: #494949;
  --neutral800: #323232;
  --neutral900: #1b1b1b;

  --primary300: #8a92da;
  --primary400: #636ecd;
  --primary500: #3c4ac1;
  --primary600: #303b9a;
  --primary700: #242c74;
  --primary800: #2a375e;
  --primaryColors700: #19223e;

  --secondary300: #b0feeb;
  --secondary400: #95fee4;
  --secondary500: #7bfedd;
  --secondary600: #62cbb1;
  --secondary700: #4a9885;

  --success300: #03e089;
  --success400: #03ca7c;
  --success500: #02b36d;
  --success600: #018e56;
  --success700: #016a3e;

  --error300: #d67f74;
  --error400: #c85446;
  --error500: #ba2918;
  --error600: #952113;
  --error700: #70190e;
}

body {
  overflow-x: hidden;
  overflow-y: visible;
  background-color: var(--black_white950);
}

a {
  text-decoration: none;
  color: var(--black_white50);
}

button {
  background: unset;
  border: unset;
  cursor: pointer;
  color: var(--black_white50);
}

main {
  /* background-color: var(--black_white950); */
  /* overflow: hidden; */
  overflow-x: clip;
  overflow-y: visible;
}

html,
body {
  height: auto;
  overflow-y: visible;
}

ul,
ol,
li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.rest-of-the-page {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.rest-of-the-page.show {
    opacity: 1;
    transform: translateY(0);
}

.container {
  max-width: 1440px;
  margin: auto;
  width: 100%;
  padding: 0 100px;
  position: relative;
  transition: width 0.4s ease;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

.display-6xl {
  font-size: 70px;
  line-height: 70px;
  font-weight: 400;
  font-family: "DMSans";
}

.display-5xl {
  font-size: 60px;
  line-height: 78px;
  font-weight: 400;
  font-family: "DMSans";
}

h1,
.h1 {
  font-size: 60px;
  line-height: 78px;
  font-weight: 400;
  font-family: "DMSans";
}

h2,
.h2 {
  font-size: 30px;
  line-height: 41px;
  font-weight: 400;
  font-family: "DMSans";
}

h3,
.h3 {
  font-size: 24px;
  line-height: 33px;
  font-weight: 400;
  font-family: "DMSans";
}

h4,
.h4 {
  font-size: 20px;
  line-height: 27px;
  font-weight: 400;
  font-family: "DMSans";
}

h5,
.h5 {
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
  font-family: "DMSans";
}

h6,
.h6 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  font-family: "DMSans";
}

.body-xl-regular {
  font-size: 20px;
  line-height: 27px;
  font-weight: 400;
  font-family: "DMSans";
}

.body-lg-regular {
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
  font-family: "DMSans";
}

.body-md-regular {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  font-family: "DMSans";
}

.body-sm-regular {
  font-size: 14px;
  line-height: 19px;
  font-weight: 400;
  font-family: "DMSans";
}

.body-xl-semibold {
  font-size: 20px;
  line-height: 27px;
  font-weight: 600;
  font-family: "DMSans";
}

.body-lg-semibold {
  font-size: 18px;
  line-height: 25px;
  font-weight: 600;
  font-family: "DMSans";
}

.body-md-semibold {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  font-family: "DMSans";
}

.body-sm-semibold {
  font-size: 14px;
  line-height: 19px;
  font-weight: 600;
  font-family: "DMSans";
}

.btn-md-regular {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  font-family: "DMSans";
}

.btn-sm-regular {
  font-size: 14px;
  line-height: 19px;
  font-weight: 400;
  font-family: "DMSans";
}

.btn-xs-regular {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  font-family: "DMSans";
}

/* Responsive */
@media (max-width: 768px) {
  .display-6xl {
    font-size: 44px;
    line-height: 56px;
  }

  .display-5xl {
    font-size: 30px;
    line-height: 42px;
  }

  h1,
  .h1 {
    font-size: 30px;
    line-height: 42px;
  }

  h2,
  .h2 {
    font-size: 18px;
    line-height: 25px;
  }

  h3,
  .h3 {
    font-size: 18px;
    line-height: 25px;
  }

  h4,
  .h4 {
    font-size: 16px;
    line-height: 25px;
  }

  h5,
  .h5 {
    font-size: 14px;
    line-height: 19px;
  }

  h6,
  .h6 {
    font-size: 14px;
    line-height: 19px;
  }

  .body-xl-regular {
    font-size: 16px;
    line-height: 25px;
  }

  .body-lg-regular {
    font-size: 14px;
    line-height: 19px;
  }

  .body-md-regular {
    font-size: 14px;
    line-height: 19px;
  }

  .body-sm-regular {
    font-size: 12px;
    line-height: 16px;
  }

  .body-xl-semibold {
    font-size: 16px;
    line-height: 25px;
  }

  .body-lg-semibold {
    font-size: 14px;
    line-height: 19px;
  }

  .body-md-semibold {
    font-size: 14px;
    line-height: 19px;
  }

  .body-sm-semibold {
    font-size: 12px;
    line-height: 16px;
  }

  .btn-md-regular {
    font-size: 14px;
    line-height: 19px;
  }

  .btn-sm-regular {
    font-size: 12px;
    line-height: 16px;
  }

  .btn-xs-regular {
    font-size: 10px;
    line-height: 14px;
  }
}

/* Green btn */
.green-btn {
  display: flex;
  padding: 0px 24px;
  height: 50px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 4px;
  background: var(--secondary500, #7bfedd);
  margin-top: 32px;
  color: var(--black_white950);
  transition: background-color 0.4s ease;
}

.green-btn:hover {
  background: var(--secondary300, #b0feeb);
}

.green-btn:active {
  background: var(--secondary400);
}

.green-btn:disabled {
  background: var(--neutral100);
  color: var(--neutral500);
  pointer-events: none;
}

/* Blue btn */
.blue-btn {
  display: inline-flex;
  padding: 0px 24px;
  height: 50px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 4px;
  background: var(--primary500, #3c4ac1);
  color: var(--black_white50);
  transition: background 0.4s ease;
}

.blue-btn:hover {
  background: var(--primary700, #242c74);
}

.blue-btn:active {
  background: var(--primary400, #636ecd);
}

.blue-btn:focus {
  border: 1px solid var(--primary300, #8a92da);
  background: var(--primary500, #3c4ac1);
}

.blue-btn:disabled {
  background: var(--neutral100, #eee);
  color: var(--neutral500);
}

@media (max-width: 768px) {
  .blue-btn,
  .green-btn {
    height: 45px;
  }
}
