/*___Screen load___*/
.load-screen {
  position: fixed;
  z-index: 10000;
  width: 100%;
  height: 100%;
  background-color: rgba(65, 120, 160, 1);
}

.load-screen video {
  width: 100%;
    height: 100%;
    /* border-radius: 100%; */
    object-fit: cover;
    opacity: 0.8;
}

/*___Quienes somos___*/

.main-who-we-are {
  background-color: rgba(65, 120, 160, 1);
  color: #fff;
  padding: 40px 40px 40px 0;
}

.main-who-we-are .title {
  background-color: #4097cb;
  width: 25%;
  height: auto;
  border-radius: 0 15px 15px 0;
  position: absolute;
}

.main-who-we-are .title h1 {
  color: #ffffff;
  font-size: 4rem;
  text-transform: uppercase;
  letter-spacing: 6px;
  margin: 20px 0 20px 50%;
}

.main-who-we-are .text {
  font-size: 1.5rem;
  margin: 40px auto 80px auto;
  text-align: left;
}

@media only screen and (min-width: 1024px) and (max-width: 5024px) {
  .main-who-we-are .row {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .main-who-we-are {
    padding: 40px;
    text-align: center;
  }

  .main-who-we-are .title {
    width: 60%;
    padding: 5px;
    border-radius: 12px;
    margin: 0 auto;
    position: inherit;
  }

  .main-who-we-are .title h1 {
    font-size: auto;
    margin: auto;
  }

  .main-who-we-are .text {
    width: 60%;
    margin: 30px auto 0 auto;
    text-align: center;
  }
}

@media only screen and (max-width: 767px) {
  .main-who-we-are {
    padding: 40px;
    text-align: center;
  }

  .main-who-we-are .title {
    padding: 5px;
    border-radius: 12px;
    width: 80%;
    margin: 0 auto;
    position: inherit;
  }

  .main-who-we-are .title h1 {
    font-size: 2.5rem;
    margin: auto;
  }

  .main-who-we-are .text {
    width: 80%;
    margin: 30px auto 0 auto;
    text-align: center;
  }
}

/*___Lo que podemos hacer___*/

.main-what-we-do {
  background-color: rgba(65, 120, 160, 1);
  background-size: cover;
  background-image: url("../../media/images/PANTALLAS-33.jpg");
  background-attachment: fixed;
  min-height: 100vh;
  padding: 50px;
  text-align: center;
}

.main-what-we-do .title {
  text-transform: uppercase;
}

.main-what-we-do .title h1 {
  font-size: 4rem;
  text-transform: uppercase;
  letter-spacing: 6px;
  margin: 20px 0 0 0;
}

.main-what-we-do .text {
  font-size: 1.5rem;
  margin: 20px auto 0 auto;
}

.main-what-we-do .services {
}

.services-container-m {
  color: #fff;
  width: 100%;
  transition: 0.2s;
  border-radius: 25px;
  padding: 20px;
  margin: 10px 0;
  background: -webkit-linear-gradient(180deg, #4097cb 90%, #4097cb);
  background: -o-linear-gradient(180deg, #4097cb 90%, #4097cb);
  background: -moz-linear-gradient(180deg, #4097cb 90%, #4097cb);
  background: linear-gradient(180deg, #4097cb 90%, #4097cb);
  text-align: center;
}

.services-container-m img {
  height: auto;
  width: 100%;
  position: relative;
}

.floating {
  animation-name: floating;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

@keyframes floating {
  0% {
    transform: translate(0, 0px);
  }
  50% {
    transform: translate(0, 15px);
  }
  100% {
    transform: translate(0, -0px);
  }
}

.services-container-m-text {
  margin-top: 20px;
}

.services-container-m-text h2 {
  font-size: 2rem;
}

.services-container-m-text p {
  font-size: 20px;
}

@media only screen and (min-width: 1024px) and (max-width: 5024px) {
  .services {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .services-container-m {
    width: 28%;
    float: left;
    margin: 10px;
    height: 500px;
  }

  .services-container-m img {
    height: 200px;
    width: auto;
  }

  .services-container-m-text {
    margin-top: 50px;
  }

  .services-container-m p {
    font-size: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .main-what-we-do {
    padding: 40px;
  }

  .main-what-we-do .title {
    margin: 0 auto;
  }

  .main-what-we-do .title h1 {
    font-size: auto;
    margin: auto;
  }

  .main-what-we-do .text {
    margin: 30px auto 0 auto;
  }

  .services-container-m {
    padding: 50px;
  }

  .services-container-m img {
    height: auto;
    width: 50%;
    position: relative;
  }

  .services-container-m-text {
    margin-top: 20px;
  }

  .services-container-m-text h2 {
    font-size: 3rem;
  }

  .services-container-m-text p {
    font-size: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .main-what-we-do {
    padding: 40px;
    text-align: center;
  }

  .main-what-we-do .title {
    margin: 0 auto;
  }

  .main-what-we-do .title h1 {
    font-size: 2.5rem;
    margin: auto;
  }

  .main-what-we-do .text {
    margin: 30px auto 0 auto;
  }
}

/* Como trabajamos */

.main-how-we-work {
  padding: 50px;
  text-align: left;
  color: #fff;
  background-size: cover;
  background-image: url("../../media/images/PANTALLAS-34.jpg");
}

.main-how-we-work-deco {
  background-color: #4178a0;
  width: 34%;
  height: 100px;
  position: absolute;
  border-radius: 0 15px 15px 0;
  left: 0;
  margin-top: 120px;
}

.main-how-we-work-info {
  z-index: 1;
}

.main-how-we-work h1 {
  text-transform: uppercase;
  color: #fff;
  font-size: 4rem;
  letter-spacing: 6px;
  width: 40%;
  margin-top: 55px;
}

.main-how-we-work p {
  font-size: 1.5rem;
  margin: 20px auto;
}

.main-how-we-work .accordion-item {
  background-color: rgba(255, 255, 255, 0.9);
  width: 70%;
  margin: 20px auto;
  border-radius: 40px;
}

.main-how-we-work .accordion-item button {
  border-radius: 40px !important;
  color: #3075a5;
}

.main-how-we-work .accordion-button {
  background-color: #fff;
}

.main-how-we-work .accordion-button img {
  height: 40px;
  width: 40px;
  margin: 0 15px;
}

.main-how-we-work .accordion-body {
  border-radius: 25px;
  /* margin-bottom: 12px; */
  width: 100%;
  margin: 0 auto 12px auto;
  font-family: "helveticaLight";
  color: #3075a5;
}

@media only screen and (min-width: 1024px) and (max-width: 5024px) {
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .main-how-we-work {
    text-align: center;
  }

  .main-how-we-work-deco {
    display: none;
  }

  .main-how-we-work h1 {
    width: 100%;
  }

  .main-how-we-work .accordion-item {
    width: 80%;
  }
}

@media only screen and (max-width: 767px) {
  .main-how-we-work-deco {
    display: none;
  }

  .main-how-we-work h1 {
    font-size: 2.5rem;
    width: 100%;
  }

  .main-how-we-work p {
    font-size: 1.5rem;
  }

  .main-how-we-work {
    text-align: center;
  }

  .main-how-we-work .accordion-item {
    width: 100%;
  }
}

/* Nuestros proyectos */

.main-our-projects {
  padding: 50px;
  background-size: cover;
  background-image: url("../../media/images/PANTALLAS-33.jpg");
  background-attachment: fixed;
  text-align: center;
}

.main-our-projects .title {
}

.main-our-projects .title h1 {
  color: #4097cb;
  font-size: 4rem;
  text-transform: uppercase;
  letter-spacing: 6px;
  margin: 20px 0;
}

.main-our-projects .cards {
  margin: 20px 0;
}

.main-our-projects .cards .project {
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 45px rgb(0 0 0 / 20%);
}

.main-our-projects .cards .project img {
  width: 100%;
  height: auto;
  border-radius: 20px 20px 0 0;
}

.main-our-projects .cards .project .project-title {
  padding: 15px;
}

@media only screen and (min-width: 1024px) and (max-width: 5024px) {
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
}

@media only screen and (max-width: 767px) {
  .main-our-projects .title h1 {
    font-size: 2.5rem;
  }
}

/* Contacto */

.main-contact {
  padding: 50px;
  background-size: cover;
  background-image: url("../../media/images/PANTALLAS-34.jpg");
  /*background-image: url("../../media/images/PANTALLAS-33.jpg");*/
  background-attachment: fixed;
  text-align: center;
}

.main-contact .title {
}

.main-contact .title h1 {
  color: #fff;
  /*color: #4097cb;*/
  font-size: 5rem;
  text-transform: uppercase;
  letter-spacing: 6px;
  margin: 20px 0;
}

.main-contact-form form {
  background-color: #fff;
  padding: 40px;
  border-radius: 25px;
}

.textbox-ss {
  background-color: #ffe0ee;
  border-radius: 10px;
  color: #929292;
  font-size: 14px;
  padding: 5px 20px;
}

.main-contact-buttons {
  height: 40px;
}

.contact-btn {
  color: #fff;
  background: -webkit-linear-gradient(90deg, #3075a2, #4097cb 50%);
  background: -o-linear-gradient(90deg, #3075a2, #4097cb 50%);
  background: -moz-linear-gradient(90deg, #3075a2, #4097cb 50%);
  background: linear-gradient(90deg, #3075a2, #4097cb 50%);
  border-radius: 25px;
  width: 25%;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 120%;
  transition: 0.2s;
  margin-top: 4px;
}

.contact-btn:hover {
  color: #fff;
  margin-top: 0px;
}


.main-event-modal {
  background-color:#3075a2;
  background-image: url("../../media/images/background-promo.png");
  background-size: cover;
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  color: #fff;
  position: relative;
}

.main-event-modal .close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #fff;
  font-weight: bold;
}

.main-event-modal .section {
  width: 50%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-event-modal .section table {
  text-align: left;
  color: #fff;
}

.main-event-modal .section table a {
  color: #fff;
}

.main-event-modal .section table p {
  margin: 0;
  font-weight: bold;
}

.main-event-modal .section h1 {
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  color: #fff;
}

.main-event-modal .section p {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #fff;
}

.main-event-modal .section .image {
  text-align: center;
}

.main-event-modal .section .image img {
  height: auto;
  width: 300px;
}

.main-event-modal .section .cta {
  text-align: center;
}

.main-event-modal .section .cta .promo-cta {
  padding: 10px 20px;
  border: none;
  border-radius: 15px;
  background-color: #1e3a5e;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.2s;
  animation: beat 1s infinite alternate;
}

.main-event-modal .section .cta .promo-cta:hover {
  animation: none;
  transform: scale(1.1);
}

.campaign-space {
  padding: 20px;
}

.campaign-space .campaign-item {
  box-shadow: 2px 2px 20px #0c0c0c;
  background-color: #fff;
  margin: 10px auto;
  border-radius: 10px;
  width: 100%;
  transition: 0.2s;

  animation: beat 1.5s infinite alternate;

}

.campaign-space .campaign-item:hover {
  animation: none;
}

.campaign-space .campaign-item .image img{
  width: 100%;
  height: auto;
  border-radius: 10px 10px 0 0;
}

.campaign-space .campaign-item .text{
  padding: 10px;
}

/* Heart beat animation */
@keyframes beat {
  to {
      transform: scale(1.1);
  }
}

@media only screen and (min-width: 1024px) and (max-width: 5024px) {
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .main-contact {
    background: -webkit-linear-gradient(90deg, #4097cb 50%, #3075a2 50%);
    background: -o-linear-gradient(90deg, #4097cb 50%, #3075a2 50%);
    background: -moz-linear-gradient(90deg, #4097cb 50%, #3075a2 50%);
    background: linear-gradient(90deg, #4097cb 50%, #3075a2 50%);
    background-size: cover;
  }
}

@media only screen and (max-width: 767px) {
  .main-contact {
    background: -webkit-linear-gradient(90deg, #4097cb 50%, #3075a2 50%);
    background: -o-linear-gradient(90deg, #4097cb 50%, #3075a2 50%);
    background: -moz-linear-gradient(90deg, #4097cb 50%, #3075a2 50%);
    background: linear-gradient(90deg, #4097cb 50%, #3075a2 50%);
    background-size: cover;
  }

  .main-contact .title h1 {
    font-size: 2.5rem;
  }

  .contact-btn {
    width: 80%;
  }

  .main-event-modal .section {
    width: 100%;
}

.campaign-space .campaign-item {
  width: 100%;
}

}

/*Maintenance*/

.maintenance-container {
  height: calc(100vh - 140px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  margin-top: 50px;
}

.maintenance-container .content {
  text-align: center;
  color: #fff;
  font-size: 20px;
}

.maintenance-container .content a {
  color: #fff;
}

/* Cotiza ahora */

.quote-now {
  padding: 50px;
  background-size: cover;
  background-image: url("../../media/images/PANTALLAS-18.jpg");
  text-align: center;
  padding: 40px;
  min-height: 100vh;
}

.quote-now-buttons {
  height: 40px;
}

.quote-now-step {
  padding: 20px;
  width: 70%;
  text-align: center;
  background-color: #fff;
  border-radius: 25px;
  margin: 150px auto 20px auto;
}

.quote-now-steps {
}

.quote-now-steps img {
  height: auto;
  width: 150px;
}

@media only screen and (min-width: 1024px) and (max-width: 5024px) {
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  
  .quote-now {
    padding: 60px;
  }

  .quote-now-step {
    width: 100%;
    margin: 250px auto 20px auto;
  }
}

@media only screen and (max-width: 767px) {

  .quote-now {
    padding: 60px;
  }

  .quote-now-step {
    width: 100%;
    margin: 150px auto 20px auto;
  }
}
