/* Font Size and Weight */
/* Flex Positioning */
/**************************************
New Media Query Mixins
**************************************/
/**************************************
Color Variables
**************************************/
/**************************************
Color Map
**************************************/
/**************************************
Get key and value from color map
**************************************/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
.text-red {
  color: #a81a28;
}

.bg-red {
  background-color: #a81a28;
}

.text-navy-blue {
  color: #262858;
}

.bg-navy-blue {
  background-color: #262858;
}

.text-black {
  color: #010101;
}

.bg-blue {
  background-color: #328ABA;
}

.text-white {
  color: #FFF;
}

.bg-white {
  background-color: #FFF;
}

/**************************************
Fonts
**************************************/
/**************************************
Padding and Margin
**************************************/
/**************************************
Border Radius
**************************************/
/**************************************
Transition Speeds
**************************************/
.container {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
}

@media (min-width: 0px) {
  .col-12-xs {
    box-sizing: border-box;
    flex-grow: 0;
    width: 100%;
  }
}
@media (min-width: 56.25rem) {
  .col-6-tab-port {
    box-sizing: border-box;
    flex-grow: 0;
    width: 50%;
  }
}
@keyframes kenBurns {
  0% {
    background-size: 120%;
    background-position: bottom;
  }
  100% {
    background-size: 180%;
    background-position: center;
  }
}
@keyframes textLoad {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  80% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes scrollEffect {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  80% {
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  80% {
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideRight {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.p-0 {
  padding: 0;
}

.p-1 {
  padding: 0.5rem;
}

.p-2 {
  padding: 1rem;
}

.p-8 {
  padding: 4rem;
}

.p-9 {
  padding: 4.5rem;
}

.p-16 {
  padding: 8rem;
}

.p-20 {
  padding: 10rem;
}

.pl-0 {
  padding-left: 0;
}

.pl-4 {
  padding-left: 2rem;
}

.pl-9 {
  padding-left: 4.5rem;
}

.pl-10 {
  padding-left: 5rem;
}

.pl-16 {
  padding-left: 8rem;
}

.pr-0 {
  padding-right: 0;
}

.pr-2 {
  padding-right: 1rem;
}

.pr-3 {
  padding-right: 1.5rem;
}

.pr-4 {
  padding-right: 2rem;
}

.pr-8 {
  padding-right: 4rem;
}

.pr-10 {
  padding-right: 5rem;
}

.pr-16 {
  padding-right: 8rem;
}

.pt-0 {
  padding-top: 0;
}

.pt-1 {
  padding-top: 0.5rem;
}

.pt-6 {
  padding-top: 3rem;
}

.pt-20 {
  padding-top: 10rem;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-1 {
  padding-bottom: 0.5rem;
}

.pb-4 {
  padding-bottom: 2rem;
}

.pb-20 {
  padding-bottom: 10rem;
}

.mt-5 {
  margin-top: 5rem;
}

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

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

.br-sm {
  border-radius: 0.2rem;
}

.br-full {
  border-radius: 50%;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.d-inline-block {
  display: inline-block;
}

.flex-gap-4 {
  gap: 4rem;
}

.flex-gap-5 {
  gap: 5rem;
}

.flex-column {
  flex-direction: column;
}

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

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

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

.align-items-start {
  align-items: flex-start;
}

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

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.p-fixed {
  position: fixed;
}

.font-size-md {
  font-size: 1.8rem;
}

.font-size-xl {
  font-size: 2.2rem;
}

.font-size-xxl {
  font-size: 2.4rem;
}

.font-thinnest {
  font-weight: 200;
}

.font-bolder {
  font-weight: 800;
}

.w-100 {
  width: 100%;
}

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

/**************************************************************** 
Modal Window Classes
****************************************************************/

html {
  font-size: 62.5%;
}

body {
  font-family: "Opens Sans", sans-serif;
  line-height: 1.7;
}

p {
  font-size: 1.4rem;
}

a {
  color: #010101;
  transition: color 0.3s;
}

a:hover {
  color: #328ABA;
}

h1, h2, h3 {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
}

h2.section-header {
  font-size: 5rem;
  font-weight: 900;
}

h3 {
  font-size: 4rem;
  font-weight: 800;
}

.nav-item {
  font-weight: 100;
}

.hero-header {
  font-family: "Poppins", sans-serif;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 0 4px rgba(1, 1, 1, 0.5);
}
.hero-header .hero-header-top {
  font-size: 2.4em;
  font-weight: 600;
  animation: textLoad 0.5s ease-in;
}
@media (min-width: 37.5rem) {
  .hero-header .hero-header-top {
    font-size: 4.4em;
  }
}
.hero-header .hero-header-middle {
  font-size: 7.5rem;
  font-weight: 900;
  animation: textLoad 0.8s ease-in;
}
@media (min-width: 37.5rem) {
  .hero-header .hero-header-middle {
    font-size: 5.5em;
  }
}
.hero-header .hero-header-bottom {
  opacity: 1;
  font-size: 1.65em;
  font-weight: 300;
  animation: textLoad 0.9s ease-in;
}

.hero .hero-contact-bar h2 {
  transition: transform 0.3s;
}
.hero .hero-contact-bar h2 a {
  text-decoration: none;
}
.hero .hero-contact-bar h2:hover {
  transform: scale(1.05);
}
.hero .hero-contact-bar .hero-phone h2 {
  font-size: 3em;
  font-weight: 900;
}
@media (min-width: 75rem) {
  .hero .hero-contact-bar .hero-phone h2 {
    font-size: 6rem;
  }
}
.hero .hero-contact-bar .hero-phone h2 i {
  font-size: 4rem;
}
@media (min-width: 75rem) {
  .hero .hero-contact-bar .hero-phone h2 i {
    font-size: 6rem;
  }
}
.hero .hero-email h2 {
  font-size: 2.5rem;
  font-weight: 600;
}
@media (min-width: 75rem) {
  .hero .hero-email h2 {
    padding: 0;
  }
}
@media (min-width: 37.5rem) {
  .hero .hero-email h2 {
    font-size: 2.2em;
  }
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  scroll-behavior: smooth;
  font-size: 50%;
}
@media (min-width: 112.5rem) {
  html {
    font-size: 75%;
  }
}
@media (min-width: 75rem) {
  html {
    font-size: 62.5%;
  }
}
@media (min-width: 56.25rem) {
  html {
    font-size: 56.25%;
  }
}

body {
  box-sizing: border-box;
  padding: 0;
}

::selection {
  background-color: #a81a28;
  color: #FFF;
}

.header {
  height: 10rem;
  top: 0;
  left: 0;
  z-index: 1;
  transition: all 0.3s;
}
.header .logo {
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 75rem) {
  .header .logo {
    position: relative;
    left: unset;
    transform: unset;
  }
}
.header .logo img {
  min-width: 23rem;
  max-width: 23rem;
  transition: all 0.3s;
}
@media (min-width: 75rem) {
  .header .logo img {
    min-width: 30rem;
    max-width: 30rem;
  }
}
.header .menu {
  gap: 1rem;
}
@media (min-width: 75rem) {
  .header .menu {
    justify-content: center;
  }
}
.header .menu .nav {
  height: 100vh;
  width: 20rem;
  top: 10rem;
  left: -20rem;
  z-index: 2;
  transition: left 0.3s, top 0.3s;
}
@media (min-width: 75rem) {
  .header .menu .nav {
    position: relative;
    background: none;
    width: auto;
    height: auto;
    top: unset;
    left: unset;
    padding: 1rem 0;
  }
}
.header .menu .nav.active {
  left: 0;
}
@media (min-width: 75rem) {
  .header .menu .nav.active {
    left: unset;
  }
}
.header .menu .nav ul {
  list-style: none;
}
@media (min-width: 75rem) {
  .header .menu .nav ul .nav-item {
    font-size: 1.4rem;
    display: inline-flex;
    padding-bottom: 0;
  }
}
.header .menu .nav ul .nav-item a {
  text-decoration: none;
  overflow: hidden;
  transition: color 0.1s;
}
@media (min-width: 75rem) {
  .header .menu .nav ul .nav-item a::before {
    content: "";
    background: #a81a28;
    position: absolute;
    left: 50%;
    top: 0;
    padding: 4rem;
    width: 100%;
    z-index: -1;
    transform: scaleX(0) translateX(-50%);
    transform-origin: left;
    transition: transform 0.2s cubic-bezier(0, 0.9, 0.4, 0);
  }
  .header .menu .nav ul .nav-item a:hover {
    color: #FFF;
  }
  .header .menu .nav ul .nav-item a:hover::before {
    transform: scaleX(1) translateX(-50%);
    transform-origin: left;
  }
}
.header .menu .social a {
  transition: color 0.3s;
}
.header .menu .social a:hover {
  color: #328ABA;
}
.header.scroll {
  height: 6rem;
}
.header.scroll .logo img {
  min-width: 20rem;
  max-width: 20rem;
}
.header.scroll .menu .nav {
  top: 6rem;
}
@media (min-width: 75rem) {
  .header.scroll .menu .nav {
    top: 0;
  }
}
.header .icon {
  border: 0;
  cursor: pointer;
  top: 50%;
  right: 4rem;
  transform: translateY(-50%);
  height: 30px;
  width: 30px;
}
.header .icon:focus {
  outline: 0;
}
.header .icon .line {
  height: 4px;
  width: 20px;
  margin-bottom: -2px;
  top: 10px;
  left: 5px;
  transition: transform 0.4s linear;
}
.header .icon .line.line2 {
  top: auto;
  bottom: 10px;
}
.header .icon.open .line1 {
  transform: rotate(-45deg) translateY(5.5px) translateX(-2px);
}
.header .icon.open .line2 {
  transform: rotate(45deg) translateY(-3.5px);
}
@media (min-width: 75rem) {
  .header .icon {
    display: none;
  }
}

#contact {
  scroll-margin-top: 6rem;
}

.hero {
  background: linear-gradient(to left bottom, #262858, #35387c);
  height: calc(100vh - 18rem);
  margin-top: 10rem;
}
@media (min-width: 56.25rem) {
  .hero {
    height: calc(100vh - 13rem);
  }
}
@media (min-width: 75rem) {
  .hero {
    height: 100vh;
    margin-top: 0;
  }
}
.hero .hero-bg-img {
  background: url(../img/victor-furtuna-TXd1kXSlMic-unsplash.jpg) no-repeat;
  mix-blend-mode: lighten;
  background-position: center;
  min-height: 90%;
  width: 100%;
  animation: unset;
}
@media (min-width: 75rem) {
  .hero .hero-bg-img {
    flex-direction: row;
    gap: unset;
    min-height: 100%;
    background-size: cover;
    animation: kenBurns 60s ease-out;
    animation-iteration-count: 2;
  }
}
@media (min-width: 37.5rem) {
  .hero .hero-bg-img {
    justify-content: center;
    align-items: center;
    background-position: center;
  }
}
.hero .hero-bg-img .hero-icon {
  animation: textLoad 1.1s ease-in;
}
.hero .hero-bg-img .hero-icon .svg-container svg {
  fill: #FFF;
  max-width: 55rem;
  width: 20rem;
  height: 20rem;
  border: 6px solid rgba(255, 255, 255, 0.1);
  object-fit: contain;
}
@media (min-width: 56.25rem) {
  .hero .hero-bg-img .hero-icon .svg-container svg {
    width: 45rem;
    height: 45rem;
  }
}
.hero .hero-contact-bar {
  bottom: 0;
}
@media (min-width: 56.25rem) {
  .hero .hero-contact-bar {
    font-size: 2rem;
  }
}
@media (min-width: 75rem) {
  .hero .hero-contact-bar {
    font-size: 1.5rem;
  }
}
@media (min-width: 75rem) {
  .hero .hero-contact-bar .container {
    flex-direction: row;
  }
}

@media (min-width: 37.5rem) {
  .about-section {
    padding: 15rem;
  }
}
@media (min-width: 56.25rem) {
  .about-section {
    flex-direction: row;
    gap: 20rem;
    padding: 10rem 15rem;
  }
}
.about-section .about-info {
  opacity: 1;
  flex: 3;
}
.about-section .hours {
  opacity: 0;
  flex: 1;
}
.about-section .hours p {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.about-section.scroll-effect .about-info {
  opacity: 1;
  animation: scrollEffect 0.8s ease-in;
}
.about-section.scroll-effect .hours {
  opacity: 1;
  animation: scrollEffect 0.8s ease-in;
}

@media (min-width: 75rem) {
  .services {
    padding: 10rem 15rem;
  }
}
.services h2 {
  flex: 4;
}
@media (min-width: 75rem) {
  .services .services-container {
    align-items: center;
    flex-direction: row;
    gap: 40rem;
  }
}
.services .services-container .services-1 {
  opacity: 0;
}
.services .services-container .services-2 {
  opacity: 0;
}
.services .services-container ul {
  list-style: none;
}
.services .services-container ul li {
  font-weight: 800;
}
.services .services-container ul li::before {
  content: "\f00c";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  padding-right: 2rem;
  color: #a81a28;
}
.services .services-container ul li.services-double-line {
  line-height: 1;
}
.services.scroll-effect .services-1 {
  opacity: 1;
  animation: slideRight 0.8s ease-in-out;
}
.services.scroll-effect .services-2 {
  opacity: 1;
  animation: slideLeft 0.8s ease-in-out;
}

@media (min-width: 37.5rem) {
  .footer {
    flex-direction: row;
  }
}
.footer .left-container img {
  width: 25rem;
}
.footer .right-container p {
  line-height: 2;
}
.footer .right-container p a.phone {
  text-decoration: none;
}

.photo-gallery {
  margin-top: 10rem;
}
.photo-gallery img {
  object-fit: cover;
  width: 100%;
  min-height: 100%;
  padding: 1rem;
}

.easter-egg {
  background: rgba(168, 26, 40, 0);
  transition: all 0.4s ease-in-out;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.easter-egg.discovered {
  background: rgba(168, 26, 40, 0.7);
  z-index: 5;
  pointer-events: all;
}
.easter-egg.discovered .easter-egg-bg {
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.6s cubic-bezier(0.12, 1.04, 0.46, 1.08);
}
.easter-egg .easter-egg-bg {
  background: url("../img/dog-sprinkler.gif");
  background-size: cover;
  left: 50%;
  top: 50%;
  width: 35rem;
  height: 35rem;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.6s cubic-bezier(0.62, -0.22, 0.33, 0.89);
  box-shadow: 0px 0px 27px rgba(1, 1, 1, 0.25);
}
@media (min-width: 37.5rem) {
  .easter-egg .easter-egg-bg {
    width: 55rem;
    height: 55rem;
  }
}
@media (min-width: 75rem) {
  .easter-egg .easter-egg-bg {
    width: 85rem;
    height: 85rem;
  }
}
.easter-egg .easter-egg-bg i {
  top: 0;
  right: 0;
  cursor: pointer;
  transition: color 0.3s, transform 0.3s;
}
.easter-egg .easter-egg-bg i:hover {
  color: rgba(255, 255, 255, 0.7);
  transform: scale(1.15);
}