:root {
  --white: #fff;
  --black: #000;
  --font-color-base: #666;
  --font-color-dark: #212529;
  --font-color-light: #b0aebe;
  --font-color-contrast: #00ccff;
  --bg-contrast: #F2F2FA;
  --bg-light: #f4f4f4;
  --footer-color: #001e2b;

  --5px: 0.313rem;
  --10px: 0.625rem;
  --12px: 0.75rem;
  --14px: 0.875rem;
  --15px: 0.938rem;
  --16px: 1rem;
  --18px: 1.125rem;
  --20px: 1.25rem;
  --30px: 1.875rem;
  --40px: 2.5rem;
  --50px: 3.125rem;
  --75px: 4.688rem;
  --100px: 6.25rem;
  --150px: 9.75rem;
}

/* Makes it so that the page scrolls instead of skipping when using anchor tags to 
move to a different part of the page. */
html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  /* This is set to make sure the browser doesn't change the line-spacing. */
  line-height: 2;
  letter-spacing: 0;
  color: var(--font-color-base);
  margin: 0;
  padding: 0;
}

*,
::after,
::before {
  box-sizing: border-box;
}

a { text-decoration: none; }

img {
  width: 100%;
  max-width: 100%;
  vertical-align: middle;
  border-style: none;
  border-radius: var(--15px);
}

.grid-container div img {
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
}

h3 { 
  font-size: var(--40px);
  margin: 0;
  line-height: 1.5;
}

.btn-light-dark,
.btn-light-light,
.btn-dark {
  display: inline-block;
  font-weight: 600;
  font-size: var(--12px);
  color: var(--white);
  letter-spacing: 3;
  width: fit-content;
  text-align: center;
  cursor: pointer;
  /* The words can't be selected. */
  user-select: none;
  background-color: transparent;
  /* Gives the button a clean edge. */
  border: 1px solid transparent;
  padding: var(--15px) var(--30px);
  border-radius: var(--5px);
  /* If a hover effect is added, this will create a smooth transition. */
  transition: ease-in-out 0.3s;
}

.btn-light-dark { 
  background-image: linear-gradient(90deg, var(--font-color-light) 0%,#737fbc 100%);
  box-shadow: 0 5px 10px rgba(255, 255, 255, 0.3);
}

.btn-light-light { 
  background-image: linear-gradient(90deg, var(--font-color-light) 0%,#737fbc 100%);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.btn-dark { 
  background-image: linear-gradient(90deg,#0c71c3 0%,#3f465e 100%);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.title-container {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  padding: 100px 15px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 800px;
  text-align: center;
}

.grid-container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 75px 25px;
  justify-items: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

.parallax-title-container { 
  background-blend-mode: multiply;
  width: 100%;
  height: fit-content;
  background-repeat: no-repeat;
  background-attachment: fixed;
  margin-top: 75px;
  background-size: cover;
  background-position-x: center;
}

.parallax-title-container .title-container {
  color: var(--white);
}

.parallax-title-container .title-container span:first-child {
  letter-spacing: 5;
  font-size: var(--20px);
  font-weight: 600;
}

.parallax-title-container .title-container .title {
  padding: 0;
  line-height: 1.6;
  font-size: var(--40px);
  font-weight: 600;
  color: white;
}

.parallax-title-container .title-container div {
  font-size: var(--20px);
}

.parallax-title-container .title-container a { margin-top: var(--50px); }

/************************************************** Sections on each page */
/************************************ header */

header {
  background-color: var(--white);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 50;
}

header > div {
  display: flex;
  align-items: center;
  height: 75px;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  justify-content: space-between;
}

.header-logo {
  width: 250px;
}

[aria-controls="menuDropdown"] {
  display: none;
}

.menu-items a {
  padding: 0 var(--10px);
  color: var(--font-color-base);
}

/************************************ .inquire-now */

.inquire-now {
  background-image: url(../Assets/twisted-glass.jpg);
  background-size: cover;
  padding-bottom: var(--100px);
  background-attachment: fixed;
}

.inquire-now .title-container {
  color: var(--white);
}

.inquire-now .title-container span {
  letter-spacing: 5;
  font-size: var(--20px);
}

.inquire-now .title-container h2 {
  font-size: 3.438rem;
  margin: 0;
}

.contact-cards {
  padding: var(--75px) 0;
}

.contact-us, .hours {
  width: 100%;
  height: 100%;
  text-align: center;
  padding: var(--30px);
  border-radius: var(--10px);
  background-image: linear-gradient(90deg, transparent, rgba(255, 255, 255, 1), transparent);
}

.contact-us span i {
  background-color: #0C71C3;
  color: var(--white);
}

.hours span i {
  background-color: rgba(12,113,195,0.18);
  color: #0C71C3;
}

.contact-us h6, .hours h6 {
  font-size: var(--16px);
  color: var(--font-color-dark);
  margin: 0;
  margin-bottom: var(--20px);
}

.contact-us div, .hours div {
  line-height: 1.5;
}

/************************************ footer */

footer {
  background-color: var(--footer-color);
}

footer .container {
  display: flex;
  width: fit-content;
  margin: auto;
  color: var(--white);
  font-size: var(--12px);
  align-items: center;
}

footer .container > div:first-child {
  width: var(--100px);
}

footer .container h6 {
  font-size: var(--14px);
  margin: 0;
}