/* Global */
* {
  margin: 0;
  padding: 0;
  font-family: "Josefin Sans";
  text-decoration: none;
  color: #2d2d2d;
}

body {
  background-color: #f5f5f6;
}

/* components class */
button {
  color: white;
  font-size: 1rem;
  padding: 16px;
  border: none;
  background-image: linear-gradient(to bottom, #f93213, #cf0000);
  cursor: pointer;
}

button i {
  color: white;
}

.title-small-lines {
  display: flex;
  width: 100%;
  justify-content: space-around;
  align-items: center;
  margin: 25px 0px 25px 0px;
  flex-direction: row;
}

.title-small-lines h2 {
  width: 100%;
}

.title-small-lines hr {
  width: 100%;
  border: 1px solid #ddd;
}

.title-body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.title-body h3 {
  font-size: 1rem;
  font-weight: normal;
}

.title-body h2 {
  font-size: 2.5rem;
  margin: 12px 0px 12px 0px;
  color: #2d2d2d;
}
.title-body p {
  margin: 0px 0px 12px 0px;
}

.title-body hr {
  height: 20px;
  width: 1px;
  border: none;
  background-color: #2d2d2d;
  margin: 0 auto;
}
.space-v {
  height: 60px;
}
.container-post{
  padding: 25px 0px 25px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.container-post img{
  width: 50%;
}
.container-post h2{
  margin: 25px 0px 15px 0px;
}
.container-post p{
  width: 50%;
  text-align: justify;
  margin-bottom: 25px;
}
.container-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  background-color: rgba(255, 255, 255, 1);
  position: fixed;
}
.container-loading h2 {
  margin-top: 25px;
  font-weight: normal;
}
.container-loading .loading {
  border: 5px solid #f3f3f3;
  border-top: 5px solid #f93213;
  border-radius: 100%;
  width: 80px;
  height: 80px;
  animation: spin 2s linear infinite;
  display: flex;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Modal Blog */
.modal-container {
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  z-index: 1000;
}

.modal-container .modal-box {
  padding: 25px;
  height: 80%;
  width: 50%;
  overflow: auto;
  background-color: white;
}

.modal-container .modal-box img {
  width: 100%;
  margin-bottom: 12px;
}
.modal-container kbd {
  color: white;
  margin: 12px 0px 12px 0px;
  text-decoration: underline;
  cursor: pointer;
}
.modal-container .modal-box h2 {
  font-size: 3rem;
  margin: 0px 0px 12px 0px;
  color: #0a1219;
}
.modal-container .modal-box h4 {
  margin: 12px 0px 12px 0px;
}
.modal-container .modal-box hr {
  margin: 12px 0px 12px 0px;
}
.modal-container .modal-box ul {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  list-style: inside;
}
.modal-container .modal-box small {
  font-size: 1rem;
  margin: 6px 0px 6px 0px;
}
.modal-container .modal-box p {
  text-align: left;
  margin-top: 12px;
}
.modal-container .modal-box a {
  padding: 12px;
  margin: 12px 0px 6px 0px;
  display: flex;
  width: fit-content;
  justify-content: center;
  align-items: center;
  background-color: #f93213;
  color: #fff;
}
.modal-container .modal-box a i {
  margin-right: 6px;
  color: #fff;
}
.insta-btn {
  background-color: #e1306c !important;
}

/* Header */
header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row;
  padding: 0px 50px 0px 50px;
  box-shadow: 0px 12px 12px rgba(0, 0, 0, 0.1);
  z-index: 999;
  position: relative;
  background-color: #111d2b;
}

.h-phone {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  color: white;
}

.h-phone a {
  margin: 0px 12px 0px 12px;
  color: white;
  font-size: 0.8rem;
  font-weight: normal;
  text-decoration: underline;
}
.h-phone i {
  color: white;
  margin-right: 6px;
}

.h-social-media i {
  margin-right: 10px;
  color: white;
  cursor: pointer;
}

.h-social-media button {
  border: none;
  font-size: 0.8rem;
  height: 100%;
  padding: 20px;
  cursor: pointer;
}
.text-container {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-direction: row;
  padding: 20px;
}
.aside-contact {
  padding: 12px;
  display: flex;
  width: 20%;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  background-color: #111d2b;
}
.aside-contact h4 {
  color: white;
  font-size: 1.2rem;
}
.aside-contact p {
  color: white;
  font-weight: 200;
  margin: 12px 0px 12px 0px;
}
.aside-contact i {
  color: white;
  margin-right: 12px;
}
.aside-contact a {
  color: white;
  margin: 6px 0px 6px 0px;
}
.btns-services {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.btns-services button {
  margin: 0px 6px 0px 6px;
}
.text-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  width: 70%;
  padding: 25px;
  box-shadow: 12px 12px 12px rgba(0, 0, 0, 0.1);
  background-color: white;
  flex-direction: column;
}
.text-content p {
  margin: 12px 0px 12px 0px;
  color: #2d2d2d;
  font-size: 1.2rem;
}
.text-content ul {
  list-style: inside;
}
.text-content ul li {
  margin: 12px 0px 12px 0px;
  font-size: 1.2rem;
  color: #2d2d2d;
}
.text-content b {
  color: #f93213;
  font-size: 1.2rem;
  margin: 10px 0px 10px 0px;
}
.text-content .service-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
.text-content .service-container .bg-service {
  width: 100%;
  height: 300px;
  background-position: center;
  background-size: cover;
}
.text-content .service-container .service-info {
  width: 100%;
  margin: 25px 0px 25px 0px;
}
.drop-social-instagram {
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  position: absolute;
  z-index: 999;
  background-color: white;
  padding: 16px;
  margin-top: 15px;
}
.drop-social-instagram hr {
  width: 1px;
  height: 30px;
  border: none;
  margin: 0px 10px 0px 10px;
  background-color: #999;
}
.drop-social-instagram a {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-size: cover;
  background-position: top;
}
.drop-social-linkedin {
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  position: absolute;
  z-index: 999;
  background-color: white;
  padding: 16px;
  margin-top: 15px;
}
.drop-social-linkedin hr {
  width: 1px;
  height: 30px;
  border: none;
  margin: 0px 10px 0px 10px;
  background-color: #999;
}
.drop-social-linkedin a {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-size: cover;
  background-position: top;
}
/* Nav */
nav {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: row;
  padding: 10px 0px 10px 0px;
  background-color: #111d2b;
}

nav img {
  height: 150px;
}

nav ul {
  display: flex;
  flex-direction: row;
  list-style: none;
}

nav ul li {
  padding: 5px;
  color: #f5f5f6;
  font-size: 0.9rem;
  text-align: center;
}

nav ul li:hover {
  cursor: pointer;
  animation: borderBottom 0.4s linear forwards;
}
.sub-menu {
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 12px;
  background-color: #f5f5f6;
  position: absolute;
  z-index: 9999;
  margin-top: 12px;
}
.sub-menu ul {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
.sub-menu ul a li {
  color: #111d2b;
}
.sub-menu-mobile {
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 12px;
  margin-top: 12px;
  background-color: #ddd;
}
.sub-menu-mobile ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  flex-direction: column;
}
.sub-menu-mobile ul a li {
  color: #666;
  margin: 5px 0px 5px 0px;
}
nav h2 {
  color: white;
  font-size: 2rem;
  display: none;
}

/* Banner */
.banner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  width: 100%;
}
.slick-list {
  width: 100%;
}
.backfiltering {
  backdrop-filter: grayscale(100%) brightness(30%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 600px;
}
.backfiltering:hover {
  backdrop-filter: grayscale(0%) brightness(100%);
  transition: all 0.4s ease-in;
}
.banner .banner-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 100%;
  height: 600px;
  background-position: center;
  background-size: cover;
  align-content: center;
}

.banner .banner-item .b-subtitle {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.banner .banner-item .b-subtitle h3 {
  color: white;
  font-size: 2rem;
}

.banner .banner-item .b-subtitle hr {
  width: 1px;
  height: 20px;
  border: none;
  background-color: white;
  margin: 12px 0px 12px 0px;
}

.banner .banner-item h2 {
  color: white;
  font-size: 5rem;
}

.banner .banner-item p {
  color: white;
  font-size: 1rem;
  margin: 25px 0px 25px 0px;
}

.container-main-text {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}

.container-main-text .main-text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 25px;
  width: 90%;
  background-color: white;
  z-index: 555;
  position: relative;
  bottom: 50px;
  text-align: center;
  box-shadow: 0px 12px 22px rgba(0, 0, 0, 0.3);
}
.container-main-text .main-text img {
  width: 10%;
}

.container-main-text .main-text i {
  font-size: 4rem;
  margin-bottom: 16px;
  color: #666;
}

.container-main-text .main-text p {
  width: 50%;
  margin-bottom: 25px;
}

.container-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin: 50px 0px 50px 0px;
}

.container-box .box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0px 6px 0px 6px;
  width: 100%;
  text-align: center;
  flex-direction: column;
}

.container-box .box img {
  width: 35%;
  margin: 12px 0px 12px 0px;
}

.container-box .box h5 {
  font-size: 1.5rem;
}

.container-box .box p {
  margin: 12px 0px 12px 0px;
  width: 100%;
}

/* Members */
.container-members {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 25px 0px 25px 0px;
  background-image: url("../img/background.jpg");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.container-members .members {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 90%;
}

.container-members .members .box-member {
  background-color: white;
  margin: 0px 12px 0px 12px;
  text-align: center;
  width: 100%;
  box-shadow: 12px 12px 12px rgba(0, 0, 0, 0.1);
}

.container-members .members .box-member .img-member {
  overflow: hidden;
}

.container-members .members .box-member .img-member img {
  width: 100%;
  background-position: center;
  background-size: cover;
  filter: grayscale(100%);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
}

.container-members .members .box-member .img-member:hover img {
  filter: grayscale(0%);
  transform: scale(1.1);
  transition: all 0.4s ease-in;
}

.container-members .members .box-member h2 {
  margin: 25px 0px 0px 0px;
}

.container-members .members .box-member h4 {
  margin: 6px 0px 25px 0px;
  font-size: 0.9rem;
}
.featuresMember {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.featuresMember h2 {
  font-size: 2.5rem !important;
  margin: 0 !important;
  text-align: center;
}
.featuresMember h4 {
  align-self: flex-start;
  margin-bottom: 12px;
}
.featuresMember small {
  align-self: flex-start;
}
.featuresMember hr {
  margin: 12px 0px 12px 0px;
}
.featuresMember p {
  margin: 12px 0px 12px 0px;
}
.featuresMember a {
  text-decoration: underline;
}
.featuresMember a i {
  margin-right: 6px;
}
.featuresMember .h-social-media {
  margin: 12px 0px 12px 0px;
}
.featuresMember .h-social-media i {
  color: #111d2b;
}

.container-about {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: 25px;
  background-color: white;
}

.container-about .text-about {
  padding: 0px 50px 0px 50px;
  text-align: center;
  width: 100%;
}

.container-about .text-about h3 {
  margin: 0px 0px 20px 0px;
}

.container-about .text-about p {
  margin-top: 20px;
}

.container-about .text-about button {
  margin-top: 25px;
}

.container-about .text-about hr {
  height: 20px;
  width: 1px;
  border: none;
  background-color: #111d2b;
  margin: 0 auto;
}

.container-about .img-about {
  overflow: hidden;
  width: 100%;
}
.container-about .img-about div {
  width: 100%;
  height: 300px;
  margin: 10px;
  background-position: center;
  background-size: cover;
  filter: grayscale(100%);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
}
.container-about .img-about div:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
  transition: all 0.4s ease-in;
}

.banner-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px 0px 50px 0px;
  background-color: #111d2b;
}

.banner-contact h2 {
  color: white;
}

.banner-contact p {
  margin: 6px 0px 25px 0px;
  font-style: italic;
  color: white;
}

/* Depoiments */
.container-depoiments {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 100%;
  padding: 50px 0px 50px 0px;
  margin-bottom: 25px;
  background-image: url("../img/background2.jpg");
  background-size: cover;
  background-attachment: fixed;
}

.container-depoiments .depoiments {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 80px;
  flex-wrap: wrap;
}

.container-depoiments .depoiments .d-box {
  width: 30%;
  text-align: center;
  margin: 25px;
}

.container-depoiments .depoiments .d-box p {
  width: 100%;
  margin: 0 auto;
  font-size: 1.5rem;
  color: #111d2b;
  font-style: italic;
}

.container-depoiments .depoiments .d-box h2 {
  color: #111d2b;
}

.container-depoiments .depoiments .d-box h3 {
  color: #111d2b;
  font-size: 2rem;
}

/* Blog */
.container-blog {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 80px;
}

.gallery-recent {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row;
  margin: 25px 0px 25px 0px;
}

.gallery-recent .box-blog {
  width: 300px;
  margin: 6px;
  padding: 12px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 12px 12px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.gallery-recent .box-blog img {
  width: 100%;
}
.gallery-recent .box-blog h2 {
  color: #0a1219;
  margin: 12px 0px 0px 0px;
}
.gallery-recent .box-blog p {
  max-width: 15ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: none;
}

/* AboutUs */
.aboutus-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: 25px;
}
.aboutus-container .text-aboutus {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: fit-content;
  flex-direction: column;
  padding: 0px 100px 0px 100px;
}
.aboutus-container .text-aboutus h2 {
  align-self: flex-start;
  font-size: 3rem;
  margin: 0px 0px 25px 0px;
}
.aboutus-container .text-aboutus kbd {
  align-self: flex-start;
  font-size: 2rem;
}
.aboutus-container .text-aboutus small {
  align-self: flex-start;
  font-size: 2rem;
}
.aboutus-container .text-aboutus p {
  width: 100%;
  align-self: flex-start;
}
.aboutus-container .img-aboutus {
  background-image: url("../img/banner-vertical2.png");
  background-size: cover;
  background-position: center;
  width: 50%;
  height: 500px;
}
.about-features {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: 30px 0px 30px 0px;
}
.about-features .box-features {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: center !important;
  flex-direction: column;
  margin: 0px 5px 0px 5px;
  width: 30%;
  height: 300px;
}
.about-features .box-features .icon-features {
  background-color: #111d2b;
  border-radius: 100%;
  padding: 16px;
  width: fit-content;
}
.about-features .box-features .icon-features i {
  font-size: 4rem;
  color: white;
}
.about-features .box-features h2 {
  margin: 20px 0px 20px 0px;
}
.about-features .box-features p {
  width: 100%;
}
/* Contact.html */
.options-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.options-contact .container-whatsapp {
  width: 30%;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  box-shadow: 5px 5px 12px rgba(0, 0, 0, 0.1);
  flex-direction: column;
}
.options-contact .container-whatsapp h2 {
  text-align: center;
  font-weight: normal;
  margin-bottom: 16px;
}
.options-contact .container-whatsapp button {
  background-image: none;
  background-color: #25d366;
}
.options-contact hr {
  height: 100px;
  width: 1px;
  background-color: #999;
  margin: 0px 25px 0px 25px;
  border: none;
}
.options-contact form {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  width: 30%;
  flex-direction: column;
}
.options-contact form label {
  margin-bottom: 5px;
}
.options-contact form input {
  width: 100%;
  height: 40px;
  margin-bottom: 12px;
}
.options-contact form textarea {
  width: 100%;
  resize: none;
  height: 120px;
  margin-bottom: 12px;
}
.options-contact form button {
  width: 100%;
}

/* Footer */
footer {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  padding: 25px 0px 25px 0px;
  background-color: #111d2b;
}
footer .f-col {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: left !important;
  flex-direction: column;
  width: 20%;
  height: 100%;
  padding: 0px 12px 0px 12px;
}
.col-logo {
  width: 40% !important;
}
footer .f-col p {
  width: 100%;
  color: #999;
  margin: 12px 0px 12px 0px;
}
footer .f-col h2 {
  width: 100%;
  color: white;
  margin: 12px 0px 12px 0px;
}
footer .f-col i {
  margin-right: 6px;
  color: white;
  font-size: 1.3rem;
}
footer .f-col a {
  width: 100%;
  color: white;
  margin: 16px 0px 0px 0px;
}
footer .f-col b {
  width: 100%;
  color: white;
  margin: 12px 0px 0px 0px;
}
footer .f-col img {
  width: 100%;
}
footer .f-col iframe {
  margin-top: 12px;
}
.credits {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0px 12px 0px;
}
.credits a {
  color: #111d2b;
}
.menu-mobile {
  padding: 12px 0px 12px 0px;
  display: none;
}
.menu-mobile a:hover {
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.4s ease-in;
}

/* Animations */
@keyframes borderBottom {
  0% {
    border-bottom: 0px solid #f5f5f6;
  }

  100% {
    border-bottom: 2px solid #f5f5f6;
  }
}

/* Responsivo */
@media only screen and (max-width: 900px) {
  * {
    text-align: center !important;
  }
  nav {
    flex-direction: column;
  }
  nav ul {
    display: none;
  }
  nav img {
    width: 100%;
    height: 80px;
  }
  nav h2 {
    display: flex;
    margin: 12px 0px 12px 0px;
  }
  header {
    display: none;
  }
  .container-post p{
    width: 80%;
    text-align: justify;
  }
  .container-members .members {
    flex-direction: column;
  }
  .container-box {
    flex-direction: column;
  }
  .banner .banner-item {
    height: 300px;
  }
  .backfiltering {
    height: 300px;
  }
  .container-about {
    flex-direction: column-reverse;
  }
  .container-about .text-about {
    padding: 30px 25px 30px 25px;
  }
  .container-depoiments .depoiments {
    flex-direction: column;
  }
  .container-depoiments .depoiments .d-box {
    width: 90%;
  }
  .container-depoiments .depoiments .d-box h2 {
    margin: 25px 0px 25px 0px;
  }
  .gallery-recent {
    flex-direction: column;
  }
  .gallery-recent .box-blog {
    width: 90%;
  }
  .container-members .members .box-member {
    margin: 25px 0px 25px 0px;
  }
  .modal-container .modal-box {
    width: 80%;
  }
  .banner-contact {
    text-align: center;
  }
  .container-main-text .main-text p {
    width: 80%;
  }
  .aboutus-container {
    flex-direction: column;
  }
  .aboutus-container .text-aboutus {
    justify-content: center;
    width: 80%;
    padding: 0px;
  }
  .aboutus-container .text-aboutus p {
    margin: 0px 0px 25px 0px;
  }
  .aboutus-container .text-aboutus small {
    align-self: center;
  }
  .aboutus-container .text-aboutus kbd {
    align-self: center;
  }
  .options-contact {
    flex-direction: column;
  }
  .options-contact form {
    width: 90%;
  }
  .options-contact hr {
    width: 90%;
    height: 1px;
    margin: 25px 0px 25px 0px;
  }
  .options-contact .container-whatsapp {
    width: 90%;
  }
  .about-features {
    flex-direction: column;
  }
  .about-features .box-features {
    width: 80%;
    margin: 0px 0px 0px 0px;
  }
  footer {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  footer .f-col {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: 25px 0px 25px 0px;
  }
  .banner .banner-item h2 {
    font-size: 2.5rem;
  }
  .banner .banner-item .b-subtitle h3 {
    font-size: 1rem;
  }
  .container-main-text .main-text img {
    width: 50%;
  }
  .title-body h2 {
    font-size: 2rem;
    margin: 12px 0px 12px 0px;
  }
  .title-body p {
    width: 70%;
  }
  .aboutus-container .img-aboutus {
    width: 90%;
  }
  .modal-container .modal-box a {
    width: auto;
  }
  .modal-container .modal-box ul {
    align-items: center;
  }
  .text-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .aside-contact {
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  .text-content {
    width: 90%;
    margin-top: 20px;
  }
  .text-content ul {
    align-self: center;
  }
  .text-content p {
    align-self: center;
  }
  .btns-services {
    flex-direction: column;
  }
  .btns-services button {
    margin: 6px 0px 6px 0px;
  }
}
