html {
  font-family: Lato, sans-serif;
  font-size: 18px;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  background-color: #faf9f9;
  color: #333;
}

.full-width {
  width: 100%;
}

h1, h2, h3 {
  font-family: Sevillana, cursive;
}

h1 {
  font-size: 42px;
  color: #246c5a;
  font-weight: 300;
}

h2 {
  font-size: 38px;
  color: #246c5a;
  font-weight: 300;
}

h3 {
  font-size: 24px;
  color: #AC4456;
  font-weight: 300;
  font-weight: 300;
}

a, a:visited, a:active {
  text-decoration: none;
  text-transform: uppercase;
}

header {
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background-color: #faf9f9;
  box-shadow: 0 0 15px 15px rgba(0, 0, 0, 0.15);
}
header .logo {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}
header .logo img {
  width: 200px;
}
header nav {
  display: flex;
  justify-content: center;
  padding: 1rem;
  border-top: 1px solid #ddd;
}
header nav a {
  text-align: center;
  width: 120px;
  font-family: Rokkitt;
  font-size: 14px;
  color: #AC4456;
}
@media only screen and (max-width: 450px) {
  header .logo img {
    width: 150px;
  }
  header nav {
    display: flex;
    gap: 0.75rem;
  }
}

.flex-row-mobile-col {
  display: flex;
  flex-direction: row;
  text-align: left;
}
@media only screen and (max-width: 700px) {
  .flex-row-mobile-col {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

.flex {
  flex: 1;
  padding: 1rem;
  display: flex;
}

section {
  z-index: -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background-color: #faf9f9;
}
section .centered {
  width: 100%;
  max-width: 960px;
  box-sizing: border-box;
}
section.hero {
  flex: 1;
  padding: 3rem 1rem;
  text-align: center;
  background-image: url(/public/img/bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  font-size: 1.3rem;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}
section.hero a {
  color: #43e0b9;
  font-weight: bold;
}
@media only screen and (max-width: 450px) {
  section.hero {
    font-size: 1.1rem;
  }
  section.hero .phone {
    display: block;
    width: fit-content;
    margin: 1rem auto;
    background-color: #246c5a;
    color: white;
    padding: 10px 15px;
    font-style: normal;
    border-radius: 15px;
    border-top: 2px solid #2c8670;
    border-left: 2px solid #2c8670;
    border-right: 2px solid #256f5d;
    border-bottom: 2px solid #256f5d;
  }
}
section.services {
  flex: 1;
  padding: 3rem 1rem;
  text-align: center;
  background-image: url(/public/img/pat2.webp);
  background-repeat: repeat;
}
section.services .services-box {
  display: flex;
  gap: 2rem;
}
@media only screen and (max-width: 700px) {
  section.services .services-box {
    flex-direction: column;
  }
}
section.services .box {
  flex: 1;
  border-radius: 15px;
  background-color: #faf9f9;
  text-align: center;
  padding: 1rem;
  font-size: 16px;
}
section.services .box h3 {
  margin-bottom: 0.35rem;
  color: #893644;
}
section.contact {
  background-color: #74303c;
  color: white;
}
section.contact h2 {
  color: white;
  font-weight: 300;
}
section.contact strong {
  color: #4bd1af;
}
section.contact a, section.contact a:visited, section.contact a:active {
  color: white;
  text-transform: lowercase;
}

table {
  line-height: 1.45rem;
  border-collapse: collapse;
  width: 100%;
  font-size: 16px;
}
table td, table th {
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0.725rem 0.96667rem calc(0.725rem - 1px);
}

/*# sourceMappingURL=main.css.map */
