/* Font Size and Weight */
/* Flex Positioning */
/*
0 - 600px:		Phone
600-900px:		Tablet portrait
900 - 1200px: 	Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px +:		Big desktop
*/
/*
$breakpoint argument choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
/* fonts */
@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");
@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); } }

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 .3s; }

a:hover {
  color: #328ABA; }

h1, h2, h3, h4, h5, h5 {
  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-size: 1.4rem;
  font-weight: 100; }

.social a i {
  font-size: 2.2rem; }

.hero-header {
  font-family: "Poppins", sans-serif;
  line-height: 1;
  color: #FFF;
  text-transform: uppercase;
  text-shadow: 0 0 4px rgba(1, 1, 1, 0.5); }
  .hero-header .hero-header-top {
    display: block;
    font-size: 7.4rem;
    font-weight: 600;
    animation: textLoad .5s ease-in; }
    @media only screen and (max-width: 48.75em) {
      .hero-header .hero-header-top {
        font-size: 6.4rem; } }
  .hero-header .hero-header-middle {
    display: block;
    font-size: 9.5rem;
    font-weight: 900;
    animation: textLoad .8s ease-in; }
    @media only screen and (max-width: 48.75em) {
      .hero-header .hero-header-middle {
        font-size: 7.5rem; } }
  .hero-header .hero-header-bottom {
    opacity: 1;
    display: block;
    font-size: 2.65rem;
    font-weight: 300;
    animation: textLoad .9s ease-in; }

.hero .hero-contact-bar h2 {
  transition: transform .3s; }
  .hero .hero-contact-bar h2 a {
    text-decoration: none;
    color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center; }
    .hero .hero-contact-bar h2 a i {
      padding-right: 2rem; }
  .hero .hero-contact-bar h2:hover {
    transform: scale(1.05); }

.hero .hero-contact-bar .hero-phone h2 {
  font-size: 6rem;
  font-weight: 900;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center; }
  @media only screen and (max-width: 80em) {
    .hero .hero-contact-bar .hero-phone h2 {
      font-size: 5rem; } }
  .hero .hero-contact-bar .hero-phone h2 i {
    font-size: 6rem;
    padding-right: 2rem; }
    @media only screen and (max-width: 80em) {
      .hero .hero-contact-bar .hero-phone h2 i {
        font-size: 4rem;
        padding-right: 1rem; } }

.hero .hero-email h2 {
  font-size: 3.5rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center; }
  @media only screen and (max-width: 80em) {
    .hero .hero-email h2 {
      padding: 1rem; } }
  @media only screen and (max-width: 31.25em) {
    .hero .hero-email h2 {
      font-size: 2.5rem; } }

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

html {
  scroll-behavior: smooth;
  font-size: 62.5%; }
  @media only screen and (min-width: 112.5em) {
    html {
      font-size: 75%; } }
  @media only screen and (max-width: 80em) {
    html {
      font-size: 56.25%; } }
  @media only screen and (max-width: 57.5em) {
    html {
      font-size: 50%; } }

body {
  box-sizing: border-box; }
  @media only screen and (max-width: 57.5em) {
    body {
      padding: 0; } }

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

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 10rem;
  background-color: #FFF;
  padding: 0 8rem;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  transition: all .3s; }
  @media only screen and (max-width: 80em) {
    .header .logo {
      position: absolute;
      left: 50%;
      transform: translateX(-50%); } }
  .header .logo img {
    min-width: 30rem;
    max-width: 30rem;
    transition: all .3s; }
    @media only screen and (max-width: 80em) {
      .header .logo img {
        min-width: 23rem;
        max-width: 23rem; } }
  .header .menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0; }
    @media only screen and (max-width: 80em) {
      .header .menu {
        justify-content: flex-end; } }
    @media only screen and (max-width: 80em) {
      .header .menu .mobile-menu-btn {
        display: flex; } }
    .header .menu .nav ul {
      list-style: none; }
      .header .menu .nav ul .nav-item {
        display: inline-flex;
        padding-right: 4rem; }
        @media only screen and (max-width: 57.5em) {
          .header .menu .nav ul .nav-item {
            font-size: 1.8rem; } }
        .header .menu .nav ul .nav-item a {
          color: #010101;
          display: inline-block;
          text-decoration: none;
          overflow: hidden;
          padding: 0 2rem;
          position: relative;
          transition: color .1s; }
          .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 {
      color: black;
      transition: color .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; }

.hero {
  background: linear-gradient(to left bottom, #262858, #35387c);
  height: calc(100vh - 8rem);
  margin-top: 8rem; }
  .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%;
    padding: 10rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: kenBurns 60s ease-out;
    animation-iteration-count: 2; }
    @media only screen and (max-width: 80em) {
      .hero .hero-bg-img {
        min-height: 100%;
        background-size: cover;
        animation: unset; } }
    @media only screen and (max-width: 80em) {
      .hero .hero-bg-img {
        animation: unset; } }
    @media only screen and (max-width: 48.75em) {
      .hero .hero-bg-img {
        flex-direction: column;
        justify-content: center;
        animation: unset;
        background-position: bottom center; } }
    .hero .hero-bg-img .hero-text {
      width: 50vw; }
      @media only screen and (max-width: 48.75em) {
        .hero .hero-bg-img .hero-text {
          display: flex;
          justify-content: center;
          align-items: center;
          width: 100%; } }
    .hero .hero-bg-img .hero-icon {
      width: 50vw;
      display: flex;
      justify-content: center;
      align-items: center;
      animation: textLoad 1.1s ease-in; }
      @media only screen and (max-width: 48.75em) {
        .hero .hero-bg-img .hero-icon {
          width: 100%; } }
      .hero .hero-bg-img .hero-icon .svg-container {
        border-radius: 50%; }
        .hero .hero-bg-img .hero-icon .svg-container svg {
          color: #FFF;
          fill: #FFF;
          max-width: 55rem;
          width: 45rem;
          height: 45rem;
          border: 6px solid rgba(255, 255, 255, 0.1);
          border-radius: 50%;
          padding: 4rem;
          object-fit: contain; }
          @media only screen and (max-width: 80em) {
            .hero .hero-bg-img .hero-icon .svg-container svg {
              width: 25rem;
              height: 25rem; } }
  .hero .hero-contact-bar {
    background-color: #a81a28;
    font-family: "Poppins", sans-serif;
    color: #FFF;
    display: flex;
    position: absolute;
    bottom: 0; }
    @media only screen and (max-width: 80em) {
      .hero .hero-contact-bar {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%; } }
    .hero .hero-contact-bar .hero-phone {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 50vw; }
      @media only screen and (max-width: 80em) {
        .hero .hero-contact-bar .hero-phone {
          padding: 1rem; } }
      @media only screen and (max-width: 48.75em) {
        .hero .hero-contact-bar .hero-phone {
          width: 100vw; } }
    .hero .hero-contact-bar .hero-email {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 50vw; }
      @media only screen and (max-width: 48.75em) {
        .hero .hero-contact-bar .hero-email {
          width: 100vw; } }

.about-section {
  display: flex;
  gap: 20rem;
  padding: 10rem 15rem; }
  @media only screen and (max-width: 48.75em) {
    .about-section {
      flex-direction: column;
      gap: 5rem;
      padding: 15rem; } }
  @media only screen and (max-width: 31.25em) {
    .about-section {
      padding: 8rem; } }
  .about-section h2 {
    color: #262858; }
  .about-section p {
    margin-bottom: 3rem; }
  .about-section .about-info {
    opacity: 0;
    flex: 3; }
    @media only screen and (max-width: 18.75em) {
      .about-section .about-info {
        opacity: 1; } }
  .about-section .hours {
    opacity: 0;
    flex: 1; }
    @media only screen and (max-width: 18.75em) {
      .about-section .hours {
        opacity: 1; } }
    .about-section .hours p {
      font-size: 1.8rem;
      margin-bottom: 1rem; }
      @media only screen and (max-width: 18.75em) {
        .about-section .hours p {
          font-size: 2.8rem; } }
      .about-section .hours p.light {
        font-weight: 200; }
  .about-section.scroll-effect .about-info {
    opacity: 1;
    animation: scrollEffect .8s ease-in; }
  .about-section.scroll-effect .hours {
    opacity: 1;
    animation: scrollEffect .8s ease-in; }

.services {
  background: #328ABA;
  padding: 10rem 15rem; }
  @media only screen and (max-width: 80em) {
    .services {
      padding: 10rem 5rem; } }
  .services h2 {
    color: #FFF;
    flex: 4;
    text-align: center; }
  .services .services-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40rem; }
    @media only screen and (max-width: 80em) {
      .services .services-container {
        gap: 5rem; } }
    @media only screen and (max-width: 48.75em) {
      .services .services-container {
        align-items: flex-start;
        flex-direction: column; } }
    .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-size: 2.5rem;
        font-weight: 800;
        padding-block: .5rem; }
        .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 .services-container ul li .service-extra {
          padding-left: 4.5rem;
          font-size: 1.8rem;
          font-weight: 200; }
  .services .services-bottom {
    margin-top: 5rem;
    text-align: center; }
    .services .services-bottom h3 {
      color: #FFF; }
    .services .services-bottom p {
      font-size: 2.5rem;
      font-weight: 800; }
  .services.scroll-effect .services-1 {
    opacity: 1;
    animation: slideRight .8s ease-in-out; }
  .services.scroll-effect .services-2 {
    opacity: 1;
    animation: slideLeft .8s ease-in-out; }

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10rem; }
  @media only screen and (max-width: 48.75em) {
    .footer {
      flex-direction: column; } }
  .footer .left-container img {
    width: 25rem; }
  .footer .right-container p {
    font-size: 1.8rem;
    font-weight: 200;
    line-height: 2; }
    .footer .right-container p a.phone {
      text-decoration: none; }
    .footer .right-container p a i {
      padding-right: 1.3rem;
      color: #a81a28; }

.photo-gallery {
  margin-top: 10rem; }
  .photo-gallery img {
    object-fit: cover;
    width: 100%;
    min-height: 100%;
    padding: 1rem; }
  .photo-gallery-row-1, .photo-gallery-row-2, .photo-gallery-row-3 {
    display: grid;
    grid-auto-rows: 1; }
    @media only screen and (max-width: 48.75em) {
      .photo-gallery-row-1, .photo-gallery-row-2, .photo-gallery-row-3 {
        display: flex;
        flex-wrap: wrap; } }
    @media only screen and (max-width: 48.75em) {
      .photo-gallery-row-1 img:last-child, .photo-gallery-row-2 img:last-child, .photo-gallery-row-3 img:last-child {
        width: 100%; } }
  .photo-gallery-row-1 {
    grid-template-columns: 40% 20% 40%; }
  .photo-gallery-row-2 {
    grid-template-columns: 50% 25% 25%; }
  .photo-gallery-row-3 {
    grid-template-columns: 30% 20% 50%; }

.header .icon {
  background-color: #FFF;
  border: 0;
  cursor: pointer;
  padding: 0;
  position: absolute;
  top: 50%;
  right: 4rem;
  transform: translateY(-50%);
  height: 30px;
  width: 30px;
  display: none;
  align-self: flex-end; }
  .header .icon:focus {
    outline: 0; }
  .header .icon .line {
    background-color: #262858;
    height: 4px;
    width: 20px;
    margin-bottom: -2px;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 5px;
    transition: transform .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 only screen and (max-width: 80em) {
    .header .icon {
      display: block; } }

@media only screen and (max-width: 80em) {
  .header .nav {
    background: #FFF;
    display: block;
    height: 100vh;
    width: 20rem;
    position: absolute;
    top: 10rem;
    left: -20rem;
    padding-top: 3rem;
    padding-left: 2rem;
    z-index: 2;
    transition: left .3s; } }

@media only screen and (max-width: 80em) {
  .header .nav ul li {
    display: block;
    padding-right: 4rem;
    padding-bottom: 2rem; } }

@media only screen and (max-width: 80em) {
  .header .nav.active {
    left: 0; } }

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