* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  position: relative;
  font-family: "Montserrat", sans-serif;
}

h2 {
  margin-bottom: 13rem;
  font-size: 3rem;
  text-shadow: 2px 2px #c7c7c7;
  z-index: 10;
}

nav {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 1200px;
  left: 50%;
  padding-top: 1rem;
  font-weight: bold;
  transform: translate(-50%);
  background-color: #fff;
  z-index: 1000;
}
nav a {
  padding: 1rem 5rem;
  font-size: 1.8rem;
  color: #4a92a9;
  text-decoration: none;
}

section {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 13rem;
  padding: 13rem 3rem 0;
}

.hero-section {
  position: relative;
  max-width: 1200px;
  height: 500px;
  margin: 0 auto;
  background-color: white;
}
.hero-section img {
  position: absolute;
  top: 0;
  right: 0px;
  width: 500px;
  height: 520px;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-section::after {
  content: "";
  position: absolute;
  left: 267px;
  top: 89px;
  width: 701px;
  height: 431px;
  -webkit-clip-path: polygon(0 0, 65% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 65% 0, 100% 100%, 0% 100%);
  background-color: #ffffff;
  z-index: 1;
}
.hero-section h1 {
  position: absolute;
  top: 220px;
  padding-left: 4rem;
  line-height: 6rem;
  font-size: 4rem;
  z-index: 10;
}
.hero-section h1 span,
.hero-section h1 a {
  font-weight: normal;
  font-size: 3rem;
}
.hero-section h1 .name {
  color: #4a92a9;
}
.hero-section h1 a {
  text-decoration: none;
  color: black;
}

.services-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1;
}
.services-section .title-underline {
  position: absolute;
  top: 150px;
  width: 200px;
  height: 30px;
  transform: skew(-30deg);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  background-color: #e6e6e6;
}
.services-section .services {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  width: 100%;
}
.services-section .services__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  width: 18%;
}
.services-section .services__item i {
  font-size: 6rem;
}
.services-section .services__item h3 {
  font-size: 1.8rem;
  color: #4a92a9;
}
.services-section .services__item__text {
  font-size: 1.6rem;
  line-height: 2.4rem;
}
.services-section .services__item__text p {
  margin-bottom: 1rem;
}
.services-section .services__item__text ul {
  margin-left: 2rem;
}

.prices-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.prices-section .title-underline {
  position: absolute;
  top: 150px;
  width: 200px;
  height: 30px;
  transform: skew(-30deg);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  background-color: #e6e6e6;
}
.prices-section .prices-info {
  margin-bottom: 10rem;
}
.prices-section .prices-info p {
  margin-bottom: 2rem;
  font-size: 2rem;
  font-style: italic;
  color: #4a92a9;
  text-align: center;
}
.prices-section .prices {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  width: 100%;
}
.prices-section .prices__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  width: 25%;
}
.prices-section .prices__item i {
  font-size: 6rem;
  margin-bottom: 1rem;
}
.prices-section .prices__item p {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 3rem;
}
.prices-section .prices__item p span {
  color: #4a92a9;
}

.contact-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 13rem;
}
.contact-section .title-underline {
  position: absolute;
  top: 150px;
  width: 200px;
  height: 30px;
  transform: skew(-30deg);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  background-color: #e6e6e6;
}
.contact-section .contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10rem;
}
.contact-section .contact__info {
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.contact-section .contact__info__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 30%;
  margin-bottom: 3rem;
  font-size: 2rem;
}
.contact-section .contact__info__item__title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}
.contact-section .contact__info__item__title i {
  margin-right: 2rem;
}
.contact-section .contact__info__item__value {
  margin-bottom: 4rem;
  font-weight: bold;
  text-align: center;
  color: #4a92a9;
}

footer {
  background-color: #195468;
  padding: 1.5rem 0;
  font-size: 1.6rem;
  text-align: center;
  color: white;
}

.hidden {
  display: none;
}

.hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 6px;
  color: black;
  background-color: #d2e4ea;
  cursor: pointer;
  z-index: 100000;
}
.hamburger i {
  font-size: 3rem;
}

.fa-facebook {
  font-size: 3rem;
  color: #0a76c9;
}

.facebook-mobile {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 100000;
}
.facebook-mobile i {
  font-size: 4rem;
}

@media only screen and (max-width: 1160px) {
  nav {
    justify-content: center;
  }
}
@media only screen and (max-width: 960px) {
  .hero-section {
    display: flex;
    justify-content: center;
    text-align: center;
    background: url(/img/hero.png);
    background-repeat: no-repeat;
    background-size: cover;
  }
  .hero-section h1 {
    font-size: 3.7rem;
  }
  .hero-section .name {
    font-weight: bold;
  }
  .hero-section img {
    display: none;
  }
  .hero-section::after {
    background-color: rgb(255, 255, 255);
    width: 100%;
    height: 100%;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    left: 0;
    opacity: 0.8;
  }
  .services-section .services {
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }
  .services-section .services__item {
    gap: 2rem;
    width: 70%;
  }
  .services-section .services__item__text {
    width: 100%;
  }
}
@media only screen and (max-width: 820px) {
  nav {
    flex-direction: column;
    justify-content: flex-start;
    gap: 6rem;
    padding-top: 12rem;
    width: 100vw;
    height: 100vh;
  }
  nav a {
    font-size: 3rem;
  }
  nav img {
    width: 300px;
  }
  .hero-section {
    height: 400px;
  }
  .hero-section::after {
    top: 0;
  }
  .hero-section h1 {
    font-size: 3rem;
    top: 130px;
  }
  .contact-section .contact {
    flex-direction: column;
    gap: 5rem;
  }
  .contact-section .contact__info {
    height: 300px;
  }
}
@media only screen and (max-width: 570px) {
  .hero-section {
    height: 380px;
  }
  .hero-section h1 {
    padding: 0;
    top: 90px;
  }
  .hero-section::after {
    top: 0;
  }
  h2 {
    text-align: center;
    margin-bottom: 8rem;
  }
  section {
    padding-top: 5rem;
  }
  .services-section .title-underline {
    top: 70px;
  }
  .prices-section .title-underline {
    top: 70px;
  }
  .prices-section .prices-info {
    margin-bottom: 5rem;
  }
  .prices-section .prices {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  .prices-section .prices__item {
    width: 100%;
    margin-bottom: 2rem;
  }
  .contact-section .title-underline {
    top: 70px;
  }
  iframe {
    width: 300px;
    height: 300px;
  }
}/*# sourceMappingURL=style.css.map */