/*
Theme Name: Labmed
Text Domain: Labmed
Version: 1.1
Author: Labmed
*/

@import "./css/reset.css";
@import "./css/colors.css";
@import "./css/fonts.css";
@import "./css/header.css";
@import "./css/footer.css";
@import "./css/components.css";
@import "./css/landing.css";
@import "./css/program.css";

html {
    scroll-behavior: smooth;
}

body {
  background: var(--white);
  overflow-x: hidden;
}

.page_wrapper {
  position: relative;
  z-index: 1;
}

* {
  font-family: 'barlow_medium', Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--brown);
}

.test {
  min-height: 3000px;
}

img {
  width: 100%;
  height: auto;
}

p {
  color: var(--black_dimmed);
  font-size: 16px;
  max-width: 650px;
  padding-bottom: 24px;
}

a {
  text-decoration: none;
  position: relative;
  cursor: pointer;
}

.section {
  background: var(--white);
  position: relative;
  padding: 120px 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.divider {
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed var(--black);
  margin-bottom: 24px
}

h1 {
  font-family: 'mono_medium', Arial, Helvetica, sans-serif;
  font-size: 80px;
}

h2 {
  font-family: 'barlow_medium', Arial, Helvetica, sans-serif;
  font-size: 48px;
  line-height: 1.2;
}

h3 {
  font-family: 'barlow_medium', Arial, Helvetica, sans-serif;
  font-size: 24px;
}

h4 {
  font-family: 'mono_regular', Arial, Helvetica, sans-serif;
  font-size: 20px;
}

h6 {
  display: block;
    font-family: 'mono_regular', Arial, Helvetica, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--blue);
}

.svg-plus-button {
  color: var(--black);
  --svg-plus-fill: var(--white);
  transition: 0.3s;
}

.one_half {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

}

.one_third {
  width: 33.3333%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.svg-cross-button {
  transition: all 0.3s;
}
.svg-cross-button:hover {
  transform: rotate(90deg);
}

.navigation_screen .svg-cross-button {
  color: var(--white);
}

.pattern_image {
  padding: 16px 0;
  height: 140px;
  width: auto;
  object-fit: cover;
}

@media (max-width: 1250px) {
h2 {
    font-size: 32px;
}
}

@media (max-width: 650px) {
  .one_half {
    width: 100%;
    border-bottom: 1px dashed var(--black);
  }

  .one_half:last-of-type {
    width: 100%;
    border-bottom: 0px;
  }
}
