/* MIXINS RESPONSIVO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}
*::-moz-selection {
  background: #af0601;
  color: #fff;
}
*::selection {
  background: #af0601;
  color: #fff;
}
* img::-moz-selection {
  background: transparent;
}
* img::selection {
  background: transparent;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
}

a {
  text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
}

p {
  font-family: "Montserrat", sans-serif;
}

section {
  padding: 5rem 0;
}

.header {
  padding: 24px 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #fff;
}
.header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 70vw;
  margin: 0 auto;
  transition: 0.2s;
  font-family: "Montserrat", sans-serif;
}
@media only screen and (max-width: 1640px) {
  .header nav {
    width: 90vw;
  }
}
@media only screen and (max-width: 1400px) {
  .header nav {
    width: 96vw;
  }
}
.header nav a {
  font-weight: 700;
  color: #288abd;
  position: relative;
}
.header nav a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -6px;
  left: 0;
  background: transparent;
}
.header nav .underline::after {
  background: rgba(40, 138, 189, 0.6);
}
.header nav .logo img {
  width: 263px;
  -o-object-fit: contain;
     object-fit: contain;
}
.header nav .menu {
  display: flex;
  gap: 3rem;
}
@media only screen and (max-width: 1200px) {
  .header nav .menu {
    gap: 1.8rem;
  }
}
@media only screen and (max-width: 992px) {
  .header nav .menu {
    display: none;
  }
}
.header nav .menu a {
  transition: 0.2s;
}
@media only screen and (max-width: 1200px) {
  .header nav .menu a {
    font-size: 0.9rem;
  }
}
.header nav .menu a:hover {
  color: #af0601;
}
.header nav .wpp img {
  width: 57px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 375px) {
  .header nav .wpp img {
    width: 36px;
    margin: 0 0.5rem 0 0;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.modal.active {
  display: block;
  opacity: 1;
}
.modal .modal-content {
  background-color: #0a111e;
  margin: 15% auto;
  padding: 2rem;
  border-radius: 4px;
  width: 80%;
  max-width: 700px;
  position: relative;
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.modal .modal-content.active {
  transform: translateY(0);
  opacity: 1;
}
.modal .modal-content .close-modal {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s ease-in-out;
  color: #fff;
}
.modal .modal-content .close-modal:hover {
  color: #af0601;
}
@media only screen and (max-width: 768px) {
  .modal .content {
    width: 90%;
    margin: auto;
  }
}
.modal .content .modal-header {
  display: flex;
  align-items: baseline;
  flex-direction: column-reverse;
  background: #0a111e;
  justify-content: left;
}
.modal .content .modal-header .divisor {
  width: 12rem;
  height: 3px;
  background-color: #af0601;
  margin: 1.8rem 0 2rem 0;
  background: #288abd;
  margin: 1.5rem 0 1rem 0;
  width: 6rem;
}
.modal .content .modal-header h1 {
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 3px;
}
@media only screen and (max-width: 1640px) {
  .modal .content .modal-header h1 {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .modal .content .modal-header h1 {
    font-size: 2.25rem;
  }
}
.modal .content .title {
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
  text-transform: none;
  color: #fff;
  font-size: 3rem;
  width: 500px;
}
@media only screen and (max-width: 1640px) {
  .modal .content .title {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .modal .content .title {
    font-size: 2.25rem;
  }
}
@media only screen and (max-width: 576px) {
  .modal .content .title {
    width: 100%;
    font-size: 2rem;
  }
}
.modal .content form {
  margin: 2rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.modal .content form .form-group input, .modal .content form .form-group select {
  width: 100%;
  padding: 1rem;
  font-size: 16px;
  outline: 2px solid transparent;
  transition: 0.2s;
  border-radius: 6px;
  border: none;
}
.modal .content form .form-group input:focus, .modal .content form .form-group select:focus {
  outline: 2px solid #288abd;
}
.modal .content form .btn {
  cursor: pointer;
  font-size: 1rem;
  padding: 1.2rem 3rem;
  border: none;
  text-transform: uppercase;
  font-weight: 500;
  transition: 0.2s;
  border-radius: 50px;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  color: #fff;
  background-color: #af0601;
  width: 100%;
  text-align: center;
  justify-content: center;
  border-radius: 6px;
}
@media only screen and (max-width: 768px) {
  .modal .content form .btn {
    font-size: 0.8rem;
  }
}
@media only screen and (max-width: 375px) {
  .modal .content form .btn {
    padding: 1.2rem 2rem;
  }
}
.modal .content form .btn:hover {
  transform: scale(1.02);
}
.modal .content form .btn:hover {
  background-color: #e20801;
}

.mission {
  background: #288abd;
}
.mission .wrapper {
  width: 70vw;
  margin: 0 auto;
  transition: 0.2s;
  display: flex;
  gap: 6rem;
}
@media only screen and (max-width: 1640px) {
  .mission .wrapper {
    width: 90vw;
  }
}
@media only screen and (max-width: 1400px) {
  .mission .wrapper {
    width: 96vw;
  }
}
@media only screen and (max-width: 1400px) {
  .mission .wrapper {
    gap: 2rem;
  }
}
@media only screen and (max-width: 992px) {
  .mission .wrapper {
    flex-wrap: wrap;
  }
}
.mission .wrapper .section-header {
  display: flex;
  flex-direction: column;
  width: 40%;
}
@media only screen and (max-width: 992px) {
  .mission .wrapper .section-header {
    width: 100%;
  }
}
.mission .wrapper .section-header .title {
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
  color: #fff;
  width: 320px;
  opacity: 0;
}
@media only screen and (max-width: 1640px) {
  .mission .wrapper .section-header .title {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .mission .wrapper .section-header .title {
    font-size: 2.25rem;
  }
}
@media only screen and (max-width: 992px) {
  .mission .wrapper .section-header .title {
    width: 60%;
    text-align: center;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 576px) {
  .mission .wrapper .section-header .title {
    width: 70%;
  }
}
@media only screen and (max-width: 375px) {
  .mission .wrapper .section-header .title {
    width: 100%;
  }
}
.mission .wrapper .section-header #divisor {
  width: 12rem;
  height: 3px;
  background-color: #af0601;
  margin: 1.8rem 0 2rem 0;
  margin-bottom: 1rem;
  opacity: 0;
}
@media only screen and (max-width: 992px) {
  .mission .wrapper .section-header #divisor {
    margin: 2rem auto 0.9rem auto;
  }
}
.mission .wrapper .section-header p {
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  margin: 1rem 0 0 0;
  opacity: 0;
}
@media only screen and (max-width: 768px) {
  .mission .wrapper .section-header p {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 992px) {
  .mission .wrapper .section-header p {
    width: 90%;
  }
}
@media only screen and (max-width: 992px) {
  .mission .wrapper .section-header p {
    width: 80%;
    text-align: center;
    margin: 0.4rem auto;
  }
}
@media only screen and (max-width: 576px) {
  .mission .wrapper .section-header p {
    width: 100%;
  }
}
.mission .wrapper .section-header p span {
  font-weight: 700;
}
.mission .wrapper .media-wrapper {
  width: 60%;
  opacity: 0;
}
@media only screen and (max-width: 992px) {
  .mission .wrapper .media-wrapper {
    width: 100%;
  }
}
.mission .wrapper .media-wrapper img, .mission .wrapper .media-wrapper iframe {
  width: 100%;
  height: 660px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 4px solid #1daccc;
}
.mission .wrapper .media-wrapper figcaption {
  text-align: center;
  opacity: 0;
}
.mission .wrapper .media-wrapper figcaption p {
  font-size: 1.1rem;
  font-weight: 500;
  color: #1daccc;
  margin: 0.8rem 0 0 0;
  font-style: italic;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .mission .wrapper .media-wrapper figcaption p {
    font-size: 1rem;
  }
}

footer {
  background: #288abd;
  padding: 4rem 0;
}
footer .wrapper {
  width: 70vw;
  margin: 0 auto;
  transition: 0.2s;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media only screen and (max-width: 1640px) {
  footer .wrapper {
    width: 90vw;
  }
}
@media only screen and (max-width: 1400px) {
  footer .wrapper {
    width: 96vw;
  }
}
footer .wrapper .logo {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}
footer .wrapper .logo img {
  filter: brightness(50);
  width: 260px;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .wrapper .logo a {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}
footer .wrapper .social {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0 0 0;
}
footer .wrapper .social img {
  width: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}

.jazzz {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
}
.jazzz img {
  width: 44px;
  -o-object-fit: contain;
     object-fit: contain;
}

.page-home .menu #home {
  color: #af0601;
}
.page-home .menu #home::after {
  background: #af0601;
}

.banner {
  overflow: hidden;
  padding: 24px 0;
  width: 100vw;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.banner #img-banner {
  position: absolute;
  top: 2%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -99;
}
@media only screen and (max-width: 1640px) {
  .banner #img-banner {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.banner .text-wrapper {
  width: 70vw;
  margin: 0 auto;
  transition: 0.2s;
  margin: 4rem auto 0 12rem;
  z-index: 1;
}
@media only screen and (max-width: 1640px) {
  .banner .text-wrapper {
    width: 90vw;
  }
}
@media only screen and (max-width: 1400px) {
  .banner .text-wrapper {
    width: 96vw;
  }
}
@media only screen and (max-width: 1640px) {
  .banner .text-wrapper {
    margin: 4rem auto 0 2rem;
  }
}
@media only screen and (max-width: 1200px) {
  .banner .text-wrapper {
    margin: 4rem auto 0 0;
  }
}
@media only screen and (max-width: 992px) {
  .banner .text-wrapper {
    margin: 0 auto;
  }
}
.banner .text-wrapper .title {
  font-size: 4rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-shadow: 4px 4px 24px rgba(0, 0, 0, 0.5);
  text-align: left;
}
@media only screen and (max-width: 1640px) {
  .banner .text-wrapper .title {
    font-size: 3.5rem;
  }
}
@media only screen and (max-width: 992px) {
  .banner .text-wrapper .title {
    font-size: 3rem;
    text-align: center;
  }
}
@media only screen and (max-width: 768px) {
  .banner .text-wrapper .title {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 375px) {
  .banner .text-wrapper .title {
    font-size: 2rem;
  }
}
.banner .text-wrapper .title span {
  font-weight: 200;
  font-size: 3.38rem;
}
@media only screen and (max-width: 1640px) {
  .banner .text-wrapper .title span {
    font-size: 2.85rem;
  }
}
@media only screen and (max-width: 992px) {
  .banner .text-wrapper .title span {
    font-size: 2.38rem;
  }
}
@media only screen and (max-width: 768px) {
  .banner .text-wrapper .title span {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 375px) {
  .banner .text-wrapper .title span {
    font-size: 1.8rem;
  }
}
.banner .text-wrapper .btn {
  cursor: pointer;
  font-size: 1rem;
  padding: 1.2rem 3rem;
  border: none;
  text-transform: uppercase;
  font-weight: 500;
  transition: 0.2s;
  border-radius: 50px;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  color: #fff;
  background-color: #af0601;
  margin: 6rem 0;
}
@media only screen and (max-width: 768px) {
  .banner .text-wrapper .btn {
    font-size: 0.8rem;
  }
}
@media only screen and (max-width: 375px) {
  .banner .text-wrapper .btn {
    padding: 1.2rem 2rem;
  }
}
.banner .text-wrapper .btn:hover {
  transform: scale(1.02);
}
.banner .text-wrapper .btn:hover {
  background-color: #e20801;
}
@media only screen and (max-width: 992px) {
  .banner .text-wrapper .btn {
    margin: 4rem auto 0 auto;
  }
}
@media only screen and (max-width: 768px) {
  .banner .text-wrapper .btn {
    margin: 3rem auto;
  }
}
.banner .img-wrapper {
  position: absolute;
  right: 10%;
  bottom: 0;
  z-index: 1;
}
@media only screen and (max-width: 1640px) {
  .banner .img-wrapper {
    right: 3%;
  }
}
@media only screen and (max-width: 992px) {
  .banner .img-wrapper {
    display: none;
  }
}
.banner .img-wrapper img {
  width: 28vw;
  height: 100%;
}
@media only screen and (max-width: 1640px) {
  .banner .img-wrapper img {
    width: 32vw;
  }
}

.mini-banners {
  padding: 0;
}
.mini-banners .items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
}
@media only screen and (max-width: 768px) {
  .mini-banners .items {
    flex-wrap: wrap;
  }
}
.mini-banners .items .item {
  background: url(../assets/imgs/minibannerbg.jpg);
  background-size: 100% 100%;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 250px;
  padding: 0 0 0 1.4rem;
  opacity: 0;
}
@media only screen and (max-width: 1640px) {
  .mini-banners .items .item {
    width: 33%;
  }
}
@media only screen and (max-width: 1400px) {
  .mini-banners .items .item {
    padding: 2rem 0;
    flex-direction: column;
    height: 380px;
  }
}
@media only screen and (max-width: 768px) {
  .mini-banners .items .item {
    width: 50%;
  }
}
.mini-banners .items .item:nth-child(2) img, .mini-banners .items .item:nth-child(3) img {
  margin: 0 4rem 0 -1rem;
}
.mini-banners .items .item .img-wrapper {
  overflow: hidden;
}
.mini-banners .items .item .img-wrapper img {
  width: 100%;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 1640px) {
  .mini-banners .items .item .img-wrapper img {
    width: -moz-max-content;
    width: max-content;
    height: 150px;
  }
}
@media only screen and (max-width: 1400px) {
  .mini-banners .items .item .img-wrapper img {
    width: 100%;
    height: 130px;
  }
}
.mini-banners .items .item .info-wrapper {
  width: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  position: relative;
  right: 5%;
}
@media only screen and (max-width: 1400px) {
  .mini-banners .items .item .info-wrapper {
    width: 50%;
    align-items: center;
    text-align: center;
    right: 0;
  }
}
@media only screen and (max-width: 992px) {
  .mini-banners .items .item .info-wrapper {
    width: 80%;
  }
}
.mini-banners .items .item .info-wrapper .title {
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
  color: #fff;
  font-size: 2rem;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
@media only screen and (max-width: 1640px) {
  .mini-banners .items .item .info-wrapper .title {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .mini-banners .items .item .info-wrapper .title {
    font-size: 2.25rem;
  }
}
@media only screen and (max-width: 992px) {
  .mini-banners .items .item .info-wrapper .title {
    font-size: 1.8rem;
  }
}
.mini-banners .items .item .info-wrapper .title span {
  font-size: 1.1rem;
}
@media only screen and (max-width: 992px) {
  .mini-banners .items .item .info-wrapper .title span {
    font-size: 0.95rem;
  }
}
@media only screen and (max-width: 768px) {
  .mini-banners .items .item .info-wrapper .title span {
    font-size: 0.8rem;
  }
}
.mini-banners .items .item .info-wrapper p {
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin: 1rem 0 0 0;
}
@media only screen and (max-width: 768px) {
  .mini-banners .items .item .info-wrapper p {
    font-size: 1rem;
  }
}
.mini-banners .items .item .info-wrapper .btn {
  cursor: pointer;
  font-size: 1rem;
  padding: 1.2rem 3rem;
  border: none;
  text-transform: uppercase;
  font-weight: 500;
  transition: 0.2s;
  border-radius: 50px;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
  margin: 1.5rem 0 0 0;
  font-size: 0.8rem;
  padding: 0.8rem 2.4rem;
}
@media only screen and (max-width: 768px) {
  .mini-banners .items .item .info-wrapper .btn {
    font-size: 0.8rem;
  }
}
@media only screen and (max-width: 375px) {
  .mini-banners .items .item .info-wrapper .btn {
    padding: 1.2rem 2rem;
  }
}
.mini-banners .items .item .info-wrapper .btn:hover {
  transform: scale(1.02);
}
.mini-banners .items .item .info-wrapper .btn:hover {
  background-color: #fff;
  color: #000;
}

.about {
  width: 70vw;
  margin: 0 auto;
  transition: 0.2s;
}
@media only screen and (max-width: 1640px) {
  .about {
    width: 90vw;
  }
}
@media only screen and (max-width: 1400px) {
  .about {
    width: 96vw;
  }
}
.about .section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about .section-header .title {
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
  color: #288abd;
  text-align: center;
  opacity: 0;
}
@media only screen and (max-width: 1640px) {
  .about .section-header .title {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .about .section-header .title {
    font-size: 2.25rem;
  }
}
.about .section-header #divisor {
  width: 12rem;
  height: 3px;
  background-color: #af0601;
  margin: 1.8rem 0 2rem 0;
  opacity: 0;
}
.about .section-header .text {
  font-size: 1.1rem;
  font-weight: 500;
  color: #288abd;
  width: 53rem;
  text-align: center;
  opacity: 0;
}
@media only screen and (max-width: 768px) {
  .about .section-header .text {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 992px) {
  .about .section-header .text {
    width: 90%;
  }
}
.about .items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 4rem 0 0 0;
}
@media only screen and (max-width: 768px) {
  .about .items {
    margin: 3rem 0 0 0;
    flex-wrap: wrap;
    gap: 2rem;
  }
}
.about .items .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
@media only screen and (max-width: 768px) {
  .about .items .item {
    width: 100%;
  }
}
.about .items .item img {
  width: 110px;
}
@media only screen and (max-width: 992px) {
  .about .items .item img {
    width: 100px;
  }
}
@media only screen and (max-width: 768px) {
  .about .items .item img {
    width: 120px;
  }
}
.about .items .item .title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #288abd;
  text-transform: uppercase;
  margin: 1rem 0 0 0;
  width: 60%;
  text-align: center;
}
@media only screen and (max-width: 1200px) {
  .about .items .item .title {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 992px) {
  .about .items .item .title {
    font-size: 0.9rem;
  }
}
@media only screen and (max-width: 768px) {
  .about .items .item .title {
    font-size: 1rem;
    width: 30%;
  }
}
.about .btn {
  margin: 4rem auto 0 auto;
  cursor: pointer;
  font-size: 1rem;
  padding: 1.2rem 3rem;
  border: none;
  text-transform: uppercase;
  font-weight: 500;
  transition: 0.2s;
  border-radius: 50px;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  color: #fff;
  background-color: #af0601;
}
@media only screen and (max-width: 768px) {
  .about .btn {
    font-size: 0.8rem;
  }
}
@media only screen and (max-width: 375px) {
  .about .btn {
    padding: 1.2rem 2rem;
  }
}
.about .btn:hover {
  transform: scale(1.02);
}
.about .btn:hover {
  background-color: #e20801;
}

.services {
  background: #cee1ee;
  display: flex;
  align-items: center;
  padding: 0;
}
.services #service-img {
  width: 50%;
  height: 920px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 768px) {
  .services #service-img {
    display: none;
  }
}
.services .side-wrapper {
  width: 50%;
  padding: 0 8rem;
}
@media only screen and (max-width: 1400px) {
  .services .side-wrapper {
    padding: 0 4rem;
  }
}
@media only screen and (max-width: 768px) {
  .services .side-wrapper {
    width: 100%;
    padding: 4rem;
  }
}
.services .side-wrapper .title {
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
  color: #288abd;
  width: 700px;
  opacity: 0;
}
@media only screen and (max-width: 1640px) {
  .services .side-wrapper .title {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .services .side-wrapper .title {
    font-size: 2.25rem;
  }
}
@media only screen and (max-width: 1640px) {
  .services .side-wrapper .title {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .services .side-wrapper .title {
    text-align: center;
  }
}
.services .side-wrapper #divisor {
  width: 12rem;
  height: 3px;
  background-color: #af0601;
  margin: 1.8rem 0 2rem 0;
  opacity: 0;
}
@media only screen and (max-width: 768px) {
  .services .side-wrapper #divisor {
    margin: 2rem auto;
  }
}
.services .side-wrapper .items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.services .side-wrapper .items .item {
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
}
@media only screen and (max-width: 768px) {
  .services .side-wrapper .items .item {
    justify-content: center;
  }
}
.services .side-wrapper .items .item img {
  width: 18px;
}
.services .side-wrapper .items .item p {
  font-size: 1.1rem;
  font-weight: 500;
  color: #000;
  font-weight: 600;
  font-style: italic;
}
@media only screen and (max-width: 768px) {
  .services .side-wrapper .items .item p {
    font-size: 1rem;
  }
}
.services .side-wrapper .btn {
  cursor: pointer;
  font-size: 1rem;
  padding: 1.2rem 3rem;
  border: none;
  text-transform: uppercase;
  font-weight: 500;
  transition: 0.2s;
  border-radius: 50px;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  color: #fff;
  background-color: #af0601;
  opacity: 0;
  margin: 3rem 0;
}
@media only screen and (max-width: 768px) {
  .services .side-wrapper .btn {
    font-size: 0.8rem;
  }
}
@media only screen and (max-width: 375px) {
  .services .side-wrapper .btn {
    padding: 1.2rem 2rem;
  }
}
.services .side-wrapper .btn:hover {
  transform: scale(1.02);
}
.services .side-wrapper .btn:hover {
  background-color: #e20801;
}
@media only screen and (max-width: 768px) {
  .services .side-wrapper .btn {
    margin: 3rem auto 0 auto;
  }
}

.actions {
  display: flex;
  padding: 0;
}
@media only screen and (max-width: 768px) {
  .actions {
    flex-direction: column;
  }
}
.actions .l-side, .actions .r-side {
  width: 50%;
  padding: 4rem 8rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media only screen and (max-width: 992px) {
  .actions .l-side, .actions .r-side {
    padding: 4rem 1rem;
    align-items: center;
    justify-content: center;
  }
}
@media only screen and (max-width: 768px) {
  .actions .l-side, .actions .r-side {
    text-align: center;
    width: 100%;
  }
}
.actions .l-side .icon-wrapper, .actions .r-side .icon-wrapper {
  margin: 0.5rem 0 0 0;
  opacity: 0;
}
.actions .l-side .icon-wrapper img, .actions .r-side .icon-wrapper img {
  width: 132px;
}
@media only screen and (max-width: 1400px) {
  .actions .l-side .icon-wrapper img, .actions .r-side .icon-wrapper img {
    width: 124px;
  }
}
.actions .l-side .wrapper, .actions .r-side .wrapper {
  display: flex;
  gap: 4rem;
}
@media only screen and (max-width: 1400px) {
  .actions .l-side .wrapper, .actions .r-side .wrapper {
    flex-direction: column;
    gap: 2rem;
  }
}
.actions .l-side .wrapper .title, .actions .r-side .wrapper .title {
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
  width: 354px;
  color: #fff;
  opacity: 0;
}
@media only screen and (max-width: 1640px) {
  .actions .l-side .wrapper .title, .actions .r-side .wrapper .title {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .actions .l-side .wrapper .title, .actions .r-side .wrapper .title {
    font-size: 2.25rem;
  }
}
@media only screen and (max-width: 992px) {
  .actions .l-side .wrapper .title, .actions .r-side .wrapper .title {
    font-size: 2rem;
  }
}
.actions .l-side .wrapper #divisor, .actions .r-side .wrapper #divisor {
  width: 12rem;
  height: 3px;
  background-color: #af0601;
  margin: 1.8rem 0 2rem 0;
  background: #fff;
  opacity: 0;
}
@media only screen and (max-width: 768px) {
  .actions .l-side .wrapper #divisor, .actions .r-side .wrapper #divisor {
    margin: 2rem auto;
  }
}
.actions .l-side .wrapper .btn, .actions .r-side .wrapper .btn {
  cursor: pointer;
  font-size: 1rem;
  padding: 1.2rem 3rem;
  border: none;
  text-transform: uppercase;
  font-weight: 500;
  transition: 0.2s;
  border-radius: 50px;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
  margin: 3rem 0 0 0;
  opacity: 0;
}
@media only screen and (max-width: 768px) {
  .actions .l-side .wrapper .btn, .actions .r-side .wrapper .btn {
    font-size: 0.8rem;
  }
}
@media only screen and (max-width: 375px) {
  .actions .l-side .wrapper .btn, .actions .r-side .wrapper .btn {
    padding: 1.2rem 2rem;
  }
}
.actions .l-side .wrapper .btn:hover, .actions .r-side .wrapper .btn:hover {
  transform: scale(1.02);
}
.actions .l-side .wrapper .btn:hover, .actions .r-side .wrapper .btn:hover {
  background-color: #fff;
  color: #000;
}
@media only screen and (max-width: 992px) {
  .actions .l-side .wrapper .btn, .actions .r-side .wrapper .btn {
    padding: 1rem 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .actions .l-side .wrapper .btn, .actions .r-side .wrapper .btn {
    margin: 2.5rem auto 0 auto;
  }
}
.actions .l-side {
  background: #af0601;
  justify-content: flex-end;
}
@media only screen and (max-width: 768px) {
  .actions .l-side {
    justify-content: center;
  }
}
.actions .r-side {
  background: #288abd;
}

.blog .wrapper {
  width: 70vw;
  margin: 0 auto;
  transition: 0.2s;
}
@media only screen and (max-width: 1640px) {
  .blog .wrapper {
    width: 90vw;
  }
}
@media only screen and (max-width: 1400px) {
  .blog .wrapper {
    width: 96vw;
  }
}
.blog .wrapper .section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.blog .wrapper .section-header .title {
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
  color: #288abd;
}
@media only screen and (max-width: 1640px) {
  .blog .wrapper .section-header .title {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .blog .wrapper .section-header .title {
    font-size: 2.25rem;
  }
}
.blog .wrapper .section-header #divisor {
  width: 12rem;
  height: 3px;
  background-color: #af0601;
  margin: 1.8rem 0 2rem 0;
}
.blog .wrapper .items {
  margin: 1rem 0 0 0;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .blog .wrapper .items {
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
  }
}
.blog .wrapper .items .item {
  width: 30%;
}
@media only screen and (max-width: 992px) {
  .blog .wrapper .items .item {
    width: 33%;
  }
}
@media only screen and (max-width: 768px) {
  .blog .wrapper .items .item {
    width: 80%;
  }
}
@media only screen and (max-width: 576px) {
  .blog .wrapper .items .item {
    width: 90%;
  }
}
.blog .wrapper .items .item img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 1640px) {
  .blog .wrapper .items .item img {
    height: 300px;
  }
}
@media only screen and (max-width: 992px) {
  .blog .wrapper .items .item img {
    height: 220px;
  }
}
.blog .wrapper .items .item .title {
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
  color: #288abd;
  font-size: 1.8rem;
  text-transform: math-auto;
  margin: 1rem 0;
}
@media only screen and (max-width: 1640px) {
  .blog .wrapper .items .item .title {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .blog .wrapper .items .item .title {
    font-size: 2.25rem;
  }
}
@media only screen and (max-width: 1640px) {
  .blog .wrapper .items .item .title {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 992px) {
  .blog .wrapper .items .item .title {
    font-size: 1.5rem;
  }
}
.blog .wrapper .items .item .text-wrapper {
  height: 90px;
  overflow: hidden;
}
.blog .wrapper .items .item .text-wrapper p {
  font-size: 1.1rem;
  font-weight: 500;
  color: #000;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 768px) {
  .blog .wrapper .items .item .text-wrapper p {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 992px) {
  .blog .wrapper .items .item .text-wrapper p {
    font-size: 0.95rem;
  }
}
.blog .wrapper .items .item .btn {
  cursor: pointer;
  font-size: 1rem;
  padding: 1.2rem 3rem;
  border: none;
  text-transform: uppercase;
  font-weight: 500;
  transition: 0.2s;
  border-radius: 50px;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  color: #fff;
  background-color: #af0601;
  margin: 2rem 0 0 0;
  font-size: 0.95rem;
}
@media only screen and (max-width: 768px) {
  .blog .wrapper .items .item .btn {
    font-size: 0.8rem;
  }
}
@media only screen and (max-width: 375px) {
  .blog .wrapper .items .item .btn {
    padding: 1.2rem 2rem;
  }
}
.blog .wrapper .items .item .btn:hover {
  transform: scale(1.02);
}
.blog .wrapper .items .item .btn:hover {
  background-color: #e20801;
}
@media only screen and (max-width: 992px) {
  .blog .wrapper .items .item .btn {
    padding: 1rem 2rem;
  }
}

.page-about .menu #about {
  color: #af0601;
}
.page-about .menu #about::after {
  background: #af0601;
}
.page-about .page-header {
  margin: 4rem 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.page-about .page-header h1 {
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
  color: #288abd;
  font-size: 3rem;
}
@media only screen and (max-width: 1640px) {
  .page-about .page-header h1 {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .page-about .page-header h1 {
    font-size: 2.25rem;
  }
}
.page-about .page-header .divisor {
  width: 12rem;
  height: 3px;
  background-color: #af0601;
  margin: 1.8rem 0 2rem 0;
  background: #288abd;
}
.page-about .about-info {
  width: 70vw;
  margin: 0 auto;
  transition: 0.2s;
}
@media only screen and (max-width: 1640px) {
  .page-about .about-info {
    width: 90vw;
  }
}
@media only screen and (max-width: 1400px) {
  .page-about .about-info {
    width: 96vw;
  }
}
.page-about .about-info img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.page-about .about-info .content {
  margin: 6rem 0 2rem 0;
}
.page-about .about-info .content .title {
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
  color: #288abd;
  text-align: center;
}
@media only screen and (max-width: 1640px) {
  .page-about .about-info .content .title {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .page-about .about-info .content .title {
    font-size: 2.25rem;
  }
}
.page-about .about-info .content .text-wrapper {
  display: flex;
  gap: 6rem;
  margin: 4rem 0 0 0;
}
@media only screen and (max-width: 992px) {
  .page-about .about-info .content .text-wrapper {
    gap: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .page-about .about-info .content .text-wrapper {
    gap: 1rem;
    margin: 2rem 0 0 0;
    flex-direction: column;
  }
}
.page-about .about-info .content .text-wrapper .left p, .page-about .about-info .content .text-wrapper .right p {
  font-size: 1.1rem;
  font-weight: 500;
  color: #565656;
  font-size: 1.2rem;
  line-height: 1.8;
  text-align: justify;
}
@media only screen and (max-width: 768px) {
  .page-about .about-info .content .text-wrapper .left p, .page-about .about-info .content .text-wrapper .right p {
    font-size: 1rem;
  }
}
.page-about .diferenciais {
  width: 70vw;
  margin: 0 auto;
  transition: 0.2s;
}
@media only screen and (max-width: 1640px) {
  .page-about .diferenciais {
    width: 90vw;
  }
}
@media only screen and (max-width: 1400px) {
  .page-about .diferenciais {
    width: 96vw;
  }
}
.page-about .diferenciais .text-wrapper h2 {
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
  text-transform: none;
  color: #288abd;
}
@media only screen and (max-width: 1640px) {
  .page-about .diferenciais .text-wrapper h2 {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .page-about .diferenciais .text-wrapper h2 {
    font-size: 2.25rem;
  }
}
.page-about .diferenciais .text-wrapper ul {
  margin: 2rem 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.page-about .diferenciais .text-wrapper ul li {
  font-size: 1.1rem;
  font-weight: 500;
  color: #565656;
  font-size: 1.2rem;
  line-height: 1.8;
}
@media only screen and (max-width: 768px) {
  .page-about .diferenciais .text-wrapper ul li {
    font-size: 1rem;
  }
}
.page-about .diferenciais .call {
  margin: 6rem 0 0 0;
}
.page-about .diferenciais .call h3 {
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
  color: #288abd;
  text-transform: none;
  font-weight: 300;
  font-style: italic;
  text-align: center;
  font-size: 2rem;
  width: 1140px;
  margin: auto;
}
@media only screen and (max-width: 1640px) {
  .page-about .diferenciais .call h3 {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .page-about .diferenciais .call h3 {
    font-size: 2.25rem;
  }
}
@media only screen and (max-width: 992px) {
  .page-about .diferenciais .call h3 {
    width: 100%;
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 576px) {
  .page-about .diferenciais .call h3 {
    font-size: 2rem;
  }
}
.page-about .diferenciais .call .btn {
  cursor: pointer;
  font-size: 1rem;
  padding: 1.2rem 3rem;
  border: none;
  text-transform: uppercase;
  font-weight: 500;
  transition: 0.2s;
  border-radius: 50px;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  color: #fff;
  background-color: #af0601;
  margin: 3rem auto 0 auto;
}
@media only screen and (max-width: 768px) {
  .page-about .diferenciais .call .btn {
    font-size: 0.8rem;
  }
}
@media only screen and (max-width: 375px) {
  .page-about .diferenciais .call .btn {
    padding: 1.2rem 2rem;
  }
}
.page-about .diferenciais .call .btn:hover {
  transform: scale(1.02);
}
.page-about .diferenciais .call .btn:hover {
  background-color: #e20801;
}
.page-about .depoimentos {
  background: #f7f7f7;
}
.page-about .depoimentos .wrapper {
  width: 70vw;
  margin: 0 auto;
  transition: 0.2s;
  display: flex;
  align-items: baseline;
  gap: 6rem;
}
@media only screen and (max-width: 1640px) {
  .page-about .depoimentos .wrapper {
    width: 90vw;
  }
}
@media only screen and (max-width: 1400px) {
  .page-about .depoimentos .wrapper {
    width: 96vw;
  }
}
.page-about .depoimentos .wrapper .text-wrapper .title {
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
  text-transform: none;
  color: #288abd;
  font-size: 2.5rem;
  width: 280px;
}
@media only screen and (max-width: 1640px) {
  .page-about .depoimentos .wrapper .text-wrapper .title {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .page-about .depoimentos .wrapper .text-wrapper .title {
    font-size: 2.25rem;
  }
}
.page-about .depoimentos .wrapper .text-wrapper .divisor {
  width: 12rem;
  height: 3px;
  background-color: #af0601;
  margin: 1.8rem 0 2rem 0;
  background: #cecece;
  width: 6rem;
  margin: 1.5rem 0;
}
.page-about .depoimentos .wrapper .text-wrapper .text {
  font-size: 1.1rem;
  font-weight: 500;
  color: #288abd;
  text-transform: uppercase;
}
@media only screen and (max-width: 768px) {
  .page-about .depoimentos .wrapper .text-wrapper .text {
    font-size: 1rem;
  }
}
.page-about .depoimentos .carrossel {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-about .depoimentos .carrossel .carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.page-about .depoimentos .carrossel .carousel-container .carousel {
  display: flex;
  transition: transform 0.5s ease;
}
.page-about .depoimentos .carrossel .carousel-container .carousel-item {
  flex: 0 0 50%; /* 2 slides */
  padding: 2rem;
  font-size: 1.5rem;
  border-radius: 4px;
}
@media only screen and (max-width: 992px) {
  .page-about .depoimentos .carrossel .carousel-container .carousel-item {
    flex: 0 0 100%; /* 1 slide */
  }
}
.page-about .depoimentos .carrossel .carousel-container .carousel-item .title {
  font-size: 1.3rem;
  color: #565656;
}
.page-about .depoimentos .carrossel .carousel-container .carousel-item .company {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #565656;
  margin: 0.2rem 0 0 0;
}
.page-about .depoimentos .carrossel .carousel-container .carousel-item .company span {
  font-size: 0.9rem;
}
.page-about .depoimentos .carrossel .carousel-container .carousel-item .company img {
  width: 80px;
}
.page-about .depoimentos .carrossel .carousel-container .carousel-item .text {
  margin: 1rem 0 0 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #565656;
}
.page-about .depoimentos .carrossel .carousel-container .carousel-item .profile {
  margin: 1.5rem 0 0 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #565656;
}
.page-about .depoimentos .carrossel .carousel-container .carousel-item .profile img {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-about .depoimentos .carrossel .carousel-container .carousel-item .profile .text-wrapper p {
  font-size: 1rem;
  font-weight: 700;
  line-height: 0.5;
  margin: 0.6rem 0 0 0;
}
.page-about .depoimentos .carrossel .carousel-container .carousel-item .profile .text-wrapper span {
  font-size: 0.9rem;
}
.page-about .depoimentos .carrossel .carousel-container .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  color: #000;
  padding: 0.8rem;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1;
  background: transparent;
}
.page-about .depoimentos .carrossel .controls {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.page-about .depoimentos .carrossel .controls button {
  border: none;
  cursor: pointer;
}
.page-about .depoimentos .carrossel .controls button img {
  width: 32px;
}
.page-about .depoimentos .carrossel .controls .prev {
  transform: rotate(180deg);
}
.page-about .depoimentos .carrossel .controls .next {
  margin: 0.4rem 0 0 0;
}
.page-about .instagram {
  width: 70vw;
  margin: 0 auto;
  transition: 0.2s;
  margin: 4rem auto;
}
@media only screen and (max-width: 1640px) {
  .page-about .instagram {
    width: 90vw;
  }
}
@media only screen and (max-width: 1400px) {
  .page-about .instagram {
    width: 96vw;
  }
}
.page-about .instagram h2 {
  text-transform: none;
  color: #288abd;
  font-weight: 300;
  font-style: italic;
  font-size: 2.4rem;
  margin: 0 0 1rem 0;
}
.page-about .instagram h2 span {
  font-weight: 600;
}

.page-services .menu #services {
  color: #af0601;
}
.page-services .menu #services::after {
  background: #af0601;
}
.page-services .page-header {
  margin: 4rem 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.page-services .page-header h1 {
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
  color: #288abd;
  font-size: 3rem;
}
@media only screen and (max-width: 1640px) {
  .page-services .page-header h1 {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .page-services .page-header h1 {
    font-size: 2.25rem;
  }
}
.page-services .page-header .divisor {
  width: 12rem;
  height: 3px;
  background-color: #af0601;
  margin: 1.8rem 0 2rem 0;
  background: #288abd;
}
.page-services .info-services {
  width: 70vw;
  margin: 0 auto;
  transition: 0.2s;
}
@media only screen and (max-width: 1640px) {
  .page-services .info-services {
    width: 90vw;
  }
}
@media only screen and (max-width: 1400px) {
  .page-services .info-services {
    width: 96vw;
  }
}
.page-services .info-services #main-img {
  width: 100%;
  height: auto;
  max-height: 800px;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-services .info-services .content {
  margin: 2rem 0;
}
.page-services .info-services .content .title {
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
  color: #288abd;
  text-align: center;
  text-transform: none;
}
@media only screen and (max-width: 1640px) {
  .page-services .info-services .content .title {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .page-services .info-services .content .title {
    font-size: 2.25rem;
  }
}
.page-services .info-services .content .text-wrapper {
  display: flex;
  gap: 6rem;
  margin: 1rem auto 0 auto;
  width: 950px;
}
@media only screen and (max-width: 992px) {
  .page-services .info-services .content .text-wrapper {
    width: 100%;
  }
}
.page-services .info-services .content .text-wrapper p {
  font-size: 1.1rem;
  font-weight: 500;
  color: #565656;
  font-size: 1.2rem;
  line-height: 1.8;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .page-services .info-services .content .text-wrapper p {
    font-size: 1rem;
  }
}
.page-services .info-services .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 6rem 0 0 0;
}
.page-services .info-services .items .item img {
  width: 100%;
  height: 360px;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-services .info-services .items .item .title {
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  color: #288abd;
  text-align: center;
  text-transform: none;
  width: 280px;
  margin: 1rem auto;
}
@media only screen and (max-width: 1640px) {
  .page-services .info-services .items .item .title {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .page-services .info-services .items .item .title {
    font-size: 2.25rem;
  }
}
@media only screen and (max-width: 1640px) {
  .page-services .info-services .items .item .title {
    font-size: 2rem;
  }
}
.page-services .info-services .btn {
  cursor: pointer;
  font-size: 1rem;
  padding: 1.2rem 3rem;
  border: none;
  text-transform: uppercase;
  font-weight: 500;
  transition: 0.2s;
  border-radius: 50px;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  color: #fff;
  background-color: #af0601;
  margin: 4rem auto 0 auto;
}
@media only screen and (max-width: 768px) {
  .page-services .info-services .btn {
    font-size: 0.8rem;
  }
}
@media only screen and (max-width: 375px) {
  .page-services .info-services .btn {
    padding: 1.2rem 2rem;
  }
}
.page-services .info-services .btn:hover {
  transform: scale(1.02);
}
.page-services .info-services .btn:hover {
  background-color: #e20801;
}
.page-services .vantagens {
  width: 70vw;
  margin: 0 auto;
  transition: 0.2s;
  padding-top: 0;
}
@media only screen and (max-width: 1640px) {
  .page-services .vantagens {
    width: 90vw;
  }
}
@media only screen and (max-width: 1400px) {
  .page-services .vantagens {
    width: 96vw;
  }
}
.page-services .vantagens p {
  font-size: 1.1rem;
  font-weight: 500;
  color: #565656;
  font-size: 1.2rem;
  line-height: 1.8;
  margin: 4rem 0;
}
@media only screen and (max-width: 768px) {
  .page-services .vantagens p {
    font-size: 1rem;
  }
}
.page-services .vantagens .text-wrapper h2 {
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
  text-transform: none;
  color: #288abd;
}
@media only screen and (max-width: 1640px) {
  .page-services .vantagens .text-wrapper h2 {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .page-services .vantagens .text-wrapper h2 {
    font-size: 2.25rem;
  }
}
.page-services .vantagens .text-wrapper ul {
  margin: 2rem 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.page-services .vantagens .text-wrapper ul li {
  font-size: 1.1rem;
  font-weight: 500;
  color: #565656;
  font-size: 1.2rem;
  line-height: 1.8;
}
@media only screen and (max-width: 768px) {
  .page-services .vantagens .text-wrapper ul li {
    font-size: 1rem;
  }
}

.page-blog .menu #blog {
  color: #af0601;
}
.page-blog .menu #blog::after {
  background: #af0601;
}
.page-blog .page-header {
  margin: 4rem 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.page-blog .page-header h1 {
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
  color: #288abd;
  font-size: 3rem;
}
@media only screen and (max-width: 1640px) {
  .page-blog .page-header h1 {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .page-blog .page-header h1 {
    font-size: 2.25rem;
  }
}
.page-blog .page-header .divisor {
  width: 12rem;
  height: 3px;
  background-color: #af0601;
  margin: 1.8rem 0 2rem 0;
  background: #288abd;
}
.page-blog .items {
  width: 70vw;
  margin: 0 auto;
  transition: 0.2s;
  display: flex;
  justify-content: space-between;
  margin: 4rem auto 6rem auto;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1640px) {
  .page-blog .items {
    width: 90vw;
  }
}
@media only screen and (max-width: 1400px) {
  .page-blog .items {
    width: 96vw;
  }
}
@media only screen and (max-width: 1640px) {
  .page-blog .items {
    gap: 3rem 0;
  }
}
.page-blog .items .item {
  width: 32%;
}
@media only screen and (max-width: 1640px) {
  .page-blog .items .item {
    width: 48%;
  }
}
@media only screen and (max-width: 768px) {
  .page-blog .items .item {
    width: 100%;
  }
}
.page-blog .items .item img {
  width: 100%;
  height: 380px;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-blog .items .item .title {
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
  color: #288abd;
  text-transform: none;
  margin: 1rem 0;
  font-size: 2.4rem;
}
@media only screen and (max-width: 1640px) {
  .page-blog .items .item .title {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .page-blog .items .item .title {
    font-size: 2.25rem;
  }
}
@media only screen and (max-width: 992px) {
  .page-blog .items .item .title {
    font-size: 2rem;
  }
}
.page-blog .items .item .text-wrapper {
  height: 90px;
  overflow: hidden;
}
.page-blog .items .item .text-wrapper p {
  font-size: 1.1rem;
  font-weight: 500;
  color: #288abd;
  font-size: 1.1rem;
  line-height: 1.4;
  width: 100%;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 768px) {
  .page-blog .items .item .text-wrapper p {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 992px) {
  .page-blog .items .item .text-wrapper p {
    font-size: 0.95rem;
  }
}
.page-blog .items .item .text, .page-blog .items .item p {
  font-size: 1.1rem;
  font-weight: 500;
  color: #288abd;
  font-size: 1.1rem;
  line-height: 1.4;
  width: 100%;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 768px) {
  .page-blog .items .item .text, .page-blog .items .item p {
    font-size: 1rem;
  }
}

.page-single-blog .menu #blog {
  color: #af0601;
}
.page-single-blog .menu #blog::after {
  background: #af0601;
}
.page-single-blog .page-header {
  margin: 4rem 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.page-single-blog .page-header h1 {
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
  color: #288abd;
  font-size: 3rem;
}
@media only screen and (max-width: 1640px) {
  .page-single-blog .page-header h1 {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .page-single-blog .page-header h1 {
    font-size: 2.25rem;
  }
}
.page-single-blog .page-header .divisor {
  width: 12rem;
  height: 3px;
  background-color: #af0601;
  margin: 1.8rem 0 2rem 0;
  background: #288abd;
}

.single-blog {
  width: 70vw;
  margin: 0 auto;
  transition: 0.2s;
  display: flex;
  gap: 2rem;
  margin: 4rem auto;
}
@media only screen and (max-width: 1640px) {
  .single-blog {
    width: 90vw;
  }
}
@media only screen and (max-width: 1400px) {
  .single-blog {
    width: 96vw;
  }
}
.single-blog .wrapper {
  width: 75%;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .single-blog .wrapper {
    width: 95%;
  }
}
.single-blog .wrapper .content .btn {
  color: #288abd;
  font-weight: 500;
  display: flex;
}
.single-blog .wrapper .content .btn2 {
  color: #288abd;
  font-weight: 500;
  display: flex;
  margin: 2rem 0 0 0;
}
.single-blog .wrapper .content img {
  width: 100%;
  height: 660px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  margin: 1rem 0 0 0;
}
@media only screen and (max-width: 768px) {
  .single-blog .wrapper .content img {
    height: 440px;
  }
}
.single-blog .wrapper .content .title {
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
  margin: 1rem 0;
  color: #288abd;
  text-transform: math-auto;
}
@media only screen and (max-width: 1640px) {
  .single-blog .wrapper .content .title {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .single-blog .wrapper .content .title {
    font-size: 2.25rem;
  }
}
.single-blog .wrapper .content p {
  font-size: 1.1rem;
  font-weight: 500;
  color: #000;
  font-size: 1.2rem;
  line-height: 1.6;
}
@media only screen and (max-width: 768px) {
  .single-blog .wrapper .content p {
    font-size: 1rem;
  }
}

.page-contact {
  background: #0a111e;
}
.page-contact .menu #contact {
  color: #af0601;
}
.page-contact .menu #contact::after {
  background: #af0601;
}
.page-contact .wrapper {
  width: 70vw;
  margin: 0 auto;
  transition: 0.2s;
  padding: 5rem 0;
}
@media only screen and (max-width: 1640px) {
  .page-contact .wrapper {
    width: 90vw;
  }
}
@media only screen and (max-width: 1400px) {
  .page-contact .wrapper {
    width: 96vw;
  }
}
.page-contact .wrapper .page-header {
  display: flex;
  align-items: baseline;
  flex-direction: row;
}
@media only screen and (max-width: 768px) {
  .page-contact .wrapper .page-header {
    flex-direction: column-reverse;
  }
}
.page-contact .wrapper .page-header .divisor {
  width: 12rem;
  height: 3px;
  background-color: #af0601;
  margin: 1.8rem 0 2rem 0;
  background: #288abd;
}
.page-contact .wrapper .page-header h1 {
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 3px;
  margin: 0 0 0 1.5rem;
}
@media only screen and (max-width: 1640px) {
  .page-contact .wrapper .page-header h1 {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .page-contact .wrapper .page-header h1 {
    font-size: 2.25rem;
  }
}
.page-contact .wrapper .sides {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 4rem;
  margin: 2rem 0 0 0;
}
@media only screen and (max-width: 992px) {
  .page-contact .wrapper .sides {
    gap: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .page-contact .wrapper .sides {
    flex-direction: column;
  }
}
.page-contact .wrapper .sides .left {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .page-contact .wrapper .sides .left {
    width: 90%;
    margin: auto;
  }
}
.page-contact .wrapper .sides .left .title {
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
  text-transform: none;
  color: #fff;
  font-size: 4rem;
  width: 560px;
}
@media only screen and (max-width: 1640px) {
  .page-contact .wrapper .sides .left .title {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .page-contact .wrapper .sides .left .title {
    font-size: 2.25rem;
  }
}
@media only screen and (max-width: 576px) {
  .page-contact .wrapper .sides .left .title {
    width: 100%;
    font-size: 2rem;
  }
}
.page-contact .wrapper .sides .left form {
  margin: 2rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.page-contact .wrapper .sides .left form .form-group input, .page-contact .wrapper .sides .left form .form-group select {
  width: 100%;
  padding: 1rem;
  font-size: 16px;
  outline: 2px solid transparent;
  transition: 0.2s;
  border-radius: 6px;
  border: none;
}
.page-contact .wrapper .sides .left form .form-group input:focus, .page-contact .wrapper .sides .left form .form-group select:focus {
  outline: 2px solid #288abd;
}
.page-contact .wrapper .sides .left form .btn {
  cursor: pointer;
  font-size: 1rem;
  padding: 1.2rem 3rem;
  border: none;
  text-transform: uppercase;
  font-weight: 500;
  transition: 0.2s;
  border-radius: 50px;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  color: #fff;
  background-color: #af0601;
  width: 100%;
  text-align: center;
  justify-content: center;
  border-radius: 6px;
}
@media only screen and (max-width: 768px) {
  .page-contact .wrapper .sides .left form .btn {
    font-size: 0.8rem;
  }
}
@media only screen and (max-width: 375px) {
  .page-contact .wrapper .sides .left form .btn {
    padding: 1.2rem 2rem;
  }
}
.page-contact .wrapper .sides .left form .btn:hover {
  transform: scale(1.02);
}
.page-contact .wrapper .sides .left form .btn:hover {
  background-color: #e20801;
}
.page-contact .wrapper .sides .right {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media only screen and (max-width: 768px) {
  .page-contact .wrapper .sides .right {
    width: 90%;
  }
}
.page-contact .wrapper .sides .right .info .icon-wrapper {
  background: #288abd;
  padding: 1rem;
  border-radius: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-max-content;
  width: max-content;
}
.page-contact .wrapper .sides .right .info .icon-wrapper img {
  width: 22px;
}
.page-contact .wrapper .sides .right .info .text-wrapper p {
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
  margin: 0.8rem 0;
}
.page-contact .wrapper .sides .right .info .text-wrapper a {
  color: #fff;
  font-weight: 500;
  font-style: italic;
  font-size: 1.2rem;
}
.page-contact .wrapper .sides .right .social .social-media {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.page-contact .wrapper .sides .right .social .social-media .icon-wrapper {
  transition: 0.2s;
  background: rgba(40, 138, 189, 0.1);
  padding: 1rem;
  border-radius: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-contact .wrapper .sides .right .social .social-media .icon-wrapper:hover {
  background: #288abd;
}
.page-contact .wrapper .sides .right .social .social-media .icon-wrapper img {
  width: 22px;
}
.page-contact iframe {
  width: 100%;
  height: 800px;
  border: none;
  position: relative;
  top: 5px;
}/*# sourceMappingURL=style.css.map */