body {
  font-family: "bebas-neue-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
}
#departments {
  display: flex;
  max-width: 100dvw;
  height: 100dvh;
  gap: 20px;
}
#departments > div {
  flex: 1;
  overflow: hidden;
  position: relative;
}
#departments > div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}
#departments > div:hover img {
  transform: scale(1.1, 1.1);
}
#departments .text-container {
  position: absolute;
  z-index: 5;
  color: #fff;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#departments .text-container > div {
  display: flex;
  flex-direction: column;
  max-width: 80%;
}
#departments .text-container > div > span {
  color: #F39B26;
  font-size: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  text-align: left;
  font-family: "bebas-neue-pro-expanded", sans-serif;
  font-weight: 400;
  font-style: normal;
}
#departments .text-container h1 {
  font-size: 97px;
  font-family: "bebas-neue-pro-expanded", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  line-height: 86px;
  letter-spacing: -2px;
}
#departments .text-container h1 span {
  display: block;
}
#departments .text-container h1 > span:last-child {
  font-size: 77px;
}
#departments .text-container h1.insurance > span:last-child {
  font-size: 48px;
  margin-top: -8px;
}
#intro-container {
  max-width: 100vw;
  overflow: hidden;
  position: relative;
}
#intro-container #logo {
  position: absolute;
  max-width: 285px;
  top: 30px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 10;
}
.btn-container {
  margin-top: 15px;
}
.btn {
  padding: 15px 50px;
  display: inline-block;
  font-family: "bebas-neue-pro-expanded", sans-serif;
  font-size: 21px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
}
.btn.btn-primary {
  background: #F39B26;
  color: #19325B;
  transition: all 0.5s ease;
}
.btn.btn-primary:hover {
  background: #fff;
  color: #19325B;
}
.btn.btn-secondary {
  color: #fff;
  background: #19325B;
  transition: all 0.5s ease;
}
.btn.btn-secondary:hover {
  background: #fff;
  color: #19325B;
}
.text-blue {
  color: #19325B !important;
}
.text-white {
  color: #fff !important;
}
/* 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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
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;
}
@media screen and (max-width: 768px) {
  #departments {
    flex-direction: column;
    height: auto;
  }
}
@media screen and (max-width: 576px) {
  #intro-container #logo {
    text-align: center ;
    top: 20px;
  }
  #intro-container #logo img {
    max-height: 45px;
    width: auto;
  }
  #departments > div:first-child {
    height: auto;
    aspect-ratio: 1/1.3;
  }
  #departments .text-container h1 {
    font-size: 60px;
    line-height: 54px;
  }
  #departments .text-container h1 > span:last-child {
    font-size: 47px;
  }
  #departments .text-container h1.insurance > span:last-child {
    font-size: 29px;
    line-height: 26px;
    margin-top: 5px;
  }
}
/*# sourceMappingURL=main.css.map */