:root {
  --blue-light: #117dc2;
  --blue-dark: #03256c;
  --dark: #3d4856;
  --brown: #775253;
  --red: #a63d40;
  --light: #f5f5f5;
  --grey: #a1acbd;
  --rose: #b9597f;
}

/* 'base
--- --- --- --- --- --- --- */

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

body {
  font-family: 'Lato', 'Arial', sans-serif;
  min-height: 100vh;
  height: auto;
  background: var(--light);
}

img {
  max-width: 100%;
}

/* 'colors
--- --- --- --- --- --- --- */

.c-white {
  color: #fff;
}

.c-dark {
  color: var(--dark);
}

.c-black {
  color: #000;
}

.bg-blue {
  background: var(--blue-light);
}

.bg-blue-light {
  background-color: var(--blue-light);
}

/* 'typography
--- --- --- --- --- --- --- */

h1 {
  color: var(--dark);
  margin: 0;
  font-size: 3.125rem;
}

h3 {
  font-size: 1.5rem;
  margin: 0;
}

h3 span {
  display: block;
  font-size: 1.25rem;
  font-weight: 400;
}

p {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.quote {
  font-size: 250px;
  font-family: 'Arial', sans-serif;
  line-height: 0;
  opacity: 0.15;
  position: absolute;
  top: 3.75rem;
  z-index: 1;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.title-line {
  position: relative;
}

.title-line:before {
  content: '';
  background: var(--dark);
  display: block;
  height: 2px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: -104%;
  z-index: 1;
}

.title-line.light h1 {
  color: #fff;
}

.title-line.light:before {
  content: '';
  background: #fff;
}

@media screen and (max-width: 1366px) {
  .title-line:before {
    display: none;
  }
}

/* 'buttons & inputs
--- --- --- --- --- --- --- */

.cb_bot {
  opacity: 0;
  height: 0;
  width: 0;
}

.button {
  display: inline-flex;
  justify-content: center;
  border: 1px solid var(--dark);
  color: var(--dark);
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: bold;
  min-width: 150px;
  overflow: hidden;
  padding: 1rem 2rem;
  position: relative;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}

.button.btn-white {
  border: none;
  background: #fff;
  color: #000;
  padding: 0.75rem;
}

.hover-fill {
  background-image: linear-gradient(to right, var(--blue-light) 40%, transparent 60%);
  background-size: 300% 100%;
  background-position: 100%;
}

.hover-fill:hover {
  color: #fff;
  border-color: #fff;
  background-position: 0%;
}

.cta-underline {
  border: none;
  background: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 6px;
}

input,
textarea,
select,
.cb-input,
.file-input {
  background: rgb(161 172 189 / 15%);
  border: none;
  border-bottom: 3px solid transparent;
  color: #000;
  outline: none;
  padding: 1rem;
  width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  border-bottom: 3px solid var(--blue-light);
}

input::placeholder,
textarea::placeholder,
select::placeholder {
  color: #000;
  font-family: 'Lato', 'Arial', sans-serif;
  font-size: 1.125rem;
  opacity: 0.75;
}

input.white,
textarea.white {
  border-color: #fff;
}

input.white::placeholder,
textarea.white::placeholder {
  color: #fff;
}

textarea {
  resize: none;
  min-height: 100px;
}

label.error {
  display: block;
  color: #ed0203;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1rem;
  margin: 0 0 1rem;
  text-align: right;
}

.cb-input {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.125rem;
  opacity: 0.75;
}

.cb-input input[type='checkbox'] {
  margin-bottom: 0;
  width: 30px;
}

.file-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 1rem;
  width: 100%;
}

.file-input div,
.file-input label {
  color: #000;
  font-family: 'Lato', 'Arial', sans-serif;
  font-size: 1.125rem;
  opacity: 0.75;
}

.file-input div {
  padding: 1rem 0;
  width: 100%;
}

.file-input label {
  display: flex;
  align-items: center;
  align-self: stretch;
  margin-left: auto;
  background: #000;
  padding: 0.75rem;
  color: #fff;
  opacity: 1;
  cursor: pointer;
}

.file-input input {
  height: 0;
  opacity: 0;
  margin: 0 !important;
  padding: 0;
  width: 0;
}

.filename {
  font-size: 1rem;
  padding-left: 1rem;
}

.form-layout {
  margin: 0 auto;
  max-width: 750px;
  width: 100%;
}

.form-layout h1 {
  margin-bottom: 2rem;
}

.form-layout .button {
  background: #000;
  border: none;
  color: #fff;
  margin-top: 1rem;
  max-width: 300px;
}

.form-layout input,
.form-layout select,
.form-layout .file-input {
  margin-bottom: 1rem;
}

.form-service {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2.5rem;
  max-height: 95vh;
  height: auto;
  overflow-y: auto;
}

.popup-container {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.25);
}

.popup-container.active {
  display: flex;
}

/* 'layout
--- --- --- --- --- --- --- */

.container {
  margin: 0 auto;
  max-width: 1440px;
  width: calc(100% - 4rem);
}

.container.small {
  max-width: 1024px;
}

.flex {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-space {
  justify-content: space-between;
}

.wrap {
  flex-wrap: wrap;
}

.flex-end {
  justify-content: flex-end;
}

.hide {
  display: none;
}

.msg-success {
  background: #117dc2;
  color: #fff;
  font-weight: bold;
  font-size: 1.125rem;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  padding: 1.25rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
}

/* 'helper
--- --- --- --- --- --- --- */

.mt-spacer {
  margin-top: 130px;
}

.mt-16 {
  margin-top: 1rem;
}

.mt-25 {
  margin-top: 1.5625rem;
}

.mr-20 {
  margin-right: 1.25rem;
}

.mr-25 {
  margin-right: 1.5625rem;
}

.mr-50 {
  margin-right: 3.125rem;
}

.mr-75 {
  margin-right: 3.75rem;
}

.mb-16 {
  margin-bottom: 1rem;
}

.mb-20 {
  margin-bottom: 1.25rem;
}

.mb-5 {
  margin-bottom: 5rem;
}

.py-5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.w-50 {
  width: 50%;
}

.w-60 {
  width: 60%;
}

.w-75 {
  width: 75%;
}

.w-100 {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  html,
  body {
    font-size: 15px;
  }

  .button {
    padding: 0.75rem 2rem;
  }
}

@media screen and (max-width: 768px) {
  .py-5 {
    padding: 3.75rem 0;
  }

  h1 {
    font-size: 2.5rem;
  }

  p {
    line-height: 2rem;
  }
}

@media screen and (max-width: 600px) {
  html,
  body {
    font-size: 14px;
  }

  .py-5 {
    padding: 3.125rem 0;
  }

  h1 {
    font-size: 2rem;
  }

  p {
    line-height: 1.875rem;
  }

  .container {
    width: calc(100% - 3.125rem);
  }

  .popup-container {
    padding: 0 1rem;
    z-index: 12;
  }

  .form-service {
    padding: 2rem 1.25rem;
  }
}
