*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box; }

/* Fix the bug that causes body go out of screen border and because of that horizontal scrolling. */
/* https://stackoverflow.com/a/42798283/5184474 */
html,
body {
  position: relative; }

html {
  scroll-behavior: smooth; }

body {
  font-size: 62.5%; }

/*
body {
    overflow: auto;
}
*/
/* http://meyerweb.com/eric/tools/css/reset/
    v2.0 | 20110126
    License: none (public domain)
*/
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;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block; }

ol,
ul {
  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; }

a {
  text-decoration: none; }

:root {
  --color-primary: #263137;
  --color-secondary: #FAFF00;
  --color-white: #FFF;
  --color-light-gray: #CACACA;
  --color-gray: #676760;
  --color-black: #070707;
  --width-inner-bg: 1440px;
  --width-inner-sm: 1226px;
  --width-inner-xsm: 880px;
  --width-inner-tablet: 640px;
  --width-inner-mobile: 311px; }

.pointer {
  cursor: pointer; }

.underline {
  text-decoration: underline; }

.img {
  width: 100%;
  height: auto;
  object-fit: contain; }

.mb-10 {
  margin-bottom: 10px; }

.mb-30 {
  margin-bottom: 30px; }

.mb-60 {
  margin-bottom: 60px; }

.heading-primary {
  font-family: "Monument Extended";
  font-size: 2rem;
  line-height: 150%;
  color: var(--color-secondary); }

.text {
  font-size: 22px;
  line-height: 150%;
  color: var(--color-white); }

.btn {
  width: 100%;
  padding: .5rem 1.5rem;
  background-color: var(--color-secondary);
  font-size: 2.6rem;
  font-size: 26px;
  line-height: 150%;
  border: none; }

.container {
  width: 100%;
  display: flex;
  justify-content: center; }
  .container--store-bg {
    background-image: url(../images/store.png);
    background-position: center;
    background-size: cover; }
  .container__inner {
    width: 100%; }
  .container__inner-thin {
    width: 100%;
    max-width: var(--width-inner-mobile); }

@media only screen and (min-width: 768px) {
  .btn {
    width: fit-content; }

  .container__inner {
    width: 100%;
    max-width: var(--width-inner-tablet); }
  .container__inner-thin {
    width: 100%;
    max-width: var(--width-inner-tablet); } }
@media only screen and (min-width: 1440px) {
  .heading-primary {
    font-size: 54px; }

  .text {
    font-size: 28px; }

  .btn {
    font-size: 3.3rem;
    font-size: 33px; }

  .container__inner {
    width: 100%;
    max-width: var(--width-inner-bg); }
  .container__inner-thin {
    width: 100%;
    max-width: var(--width-inner-sm); } }
@font-face {
  font-family: "Monument Extended";
  src: url(../fonts/MonumentExtended-Regular.otf); }
.body {
  background-color: #121111;
  font-family: Arial, Helvetica, sans-serif; }

.top-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100vh;
  background-image: url(../images/bg.png);
  color: var(--color-white); }
  .top-screen__parts-image {
    width: 100%;
    max-width: var(--width-inner-mobile); }
  .top-screen__logo-stroke {
    margin-bottom: 2rem; }

.header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  justify-items: center;
  padding-top: 1.5rem; }
  .header__left-part {
    text-align: center; }
  .header__middle-part {
    order: -1;
    width: 54px;
    height: auto; }
  .header__right-part {
    display: none; }

.main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }

.location {
  display: grid;
  grid-template-rows: 1fr minmax(250px, 400px);
  padding: 6rem 0;
  gap: 3rem; }
  .location__text-container {
    display: flex;
    flex-direction: column; }
  .location__link {
    color: var(--color-black); }
  .location__btn-container {
    margin-top: 2rem; }
  .location__btn {
    display: flex;
    justify-content: center;
    color: var(--color-black); }
  .location__img-container {
    display: flex;
    justify-content: center; }

.hours-of-operation {
  width: 100%;
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--color-white); }
  .hours-of-operation__link {
    color: var(--color-white); }

.contact-us {
  padding: 4rem 0; }
  .contact-us__contact-form {
    display: grid;
    gap: 1rem; }
  .contact-us__25-years {
    margin-top: 2rem;
    text-align: center; }

.contact-form__input {
  padding: 1rem 1.5rem;
  background-color: #2C2929;
  border: 1px solid #CED4DA;
  color: #CED4DA; }
.contact-form__textarea {
  padding: 1rem 1.5rem;
  background-color: #2C2929;
  border: 1px solid #CED4DA;
  color: #CED4DA; }
.contact-form__submit-container {
  display: flex;
  justify-content: center;
  margin-top: 2rem; }
.contact-form__submit {
  -webkit-appearance: none;
  -moz-appearance: none; }

.footer {
  display: flex;
  flex-direction: column; }
  .footer__top-container {
    background-color: #070707;
    padding: 2rem 0; }
  .footer__bottom-container {
    display: flex;
    justify-content: center;
    color: var(--color-secondary);
    padding: 1.5rem 0; }
  .footer__bottom-container-link {
    color: var(--color-secondary); }

.footer-top-container {
  display: flex;
  justify-content: center;
  color: #74746B; }
  .footer-top-container__inner {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    gap: 1rem; }
  .footer-top-container__left {
    display: flex;
    flex-direction: column; }
  .footer-top-container__middle {
    order: -1; }
  .footer-top-container__right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #74746B; }
  .footer-top-container__right-link {
    color: #74746B; }

@media only screen and (min-width: 768px) {
  .top-screen {
    height: initial; }
    .top-screen__parts-image {
      width: 100%;
      max-width: var(--width-inner-tablet); }

  .header {
    display: grid;
    grid-template-columns: 1fr 95px 1fr;
    gap: 1rem; }
    .header__left-part {
      text-align: right; }
    .header__middle-part {
      order: initial;
      width: initial;
      height: auto; }
    .header__right-part {
      display: block; }

  .location {
    grid-template-columns: 2fr 1.5fr;
    grid-template-rows: 1fr;
    gap: 5rem;
    align-items: center; }
    .location__btn {
      display: inline; }

  .contact-us__contact-form {
    grid-template-columns: 1fr 1fr;
    gap: 1rem; }

  .contact-form__textarea {
    grid-column: 1 / 3; }
  .contact-form__submit-container {
    grid-column: 1 / 3; }

  .footer-top-container__inner {
    grid-template-columns: 3fr 1fr 3fr; }
  .footer-top-container__left {
    text-align: right;
    align-items: flex-end; }
  .footer-top-container__middle {
    order: initial; }
  .footer-top-container__right {
    align-items: flex-start; } }
@media only screen and (min-width: 1024px) {
  .top-screen__parts-image {
    max-width: var(--width-inner-xsm); } }
@media only screen and (min-width: 1440px) {
  .top-screen__parts-image {
    max-width: var(--width-inner-sm); }

  .hours-of-operation__break {
    display: none; } }
@media only screen and (min-width: 1660px) {
  .top-screen__parts-image {
    max-width: var(--width-inner-bg); } }

/*# sourceMappingURL=main.css.map */
