:root {
  --gray: #707070;
  --lightGray: #a8a8a8;
  --blue: #0033cc;
  --limeGreen: #01ef60;
  --lightBlue: rgb(245, 245, 247);
  --darkBlue: #1b045d;
  --heroBlue: #f1effc;
  --fontGray: #717171;
  --fontSizePrimary: 1rem;
}

* {
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background-color: var(--lightBlue);
  color: var(--fontGray);
  font-size: var(--fontSizePrimary);
}

.bg-blue {
  background-color: var(--blue);
}
.bg-white {
  background-color: white;
}
.bg-heroblue {
  background-color: var(--heroBlue);
}
.align-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-gray {
  color: var(--fontGray);
}
.text-blue {
  color: var(--blue);
}

.logo-container {
  color: white;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.logo-image {
  width: 2rem;
}
.logo-text {
  font-size: 1.5rem;
  letter-spacing: 0.4px;
  color: white;
  font-weight: 600;
  margin-top: -2px;
  margin-left: 5px;
}
.info-button {
  display: inline-block;
  min-width: 10.3rem;
  text-decoration: none;
  text-align: center;
  padding: 0.6rem;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--darkBlue);
  border: 2px solid var(--limeGreen);
  border-radius: 10px;
  background-color: var(--limeGreen);
}

/*Start Menu Desktop*/
.menu-desk_header {
  /* background: linear-gradient(to right, #43cea2, var(--blue)); */
  background-color: var(--blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4.5em;
  top: 0;
  left: 0;
  position: fixed;
  width: 100%;
  padding: 0 7rem 0 7rem;
}
.menu-desk {
  list-style-type: none;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-inline-start: 0;
}
.menu-desk_item {
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  cursor: pointer;
}
.menu-desk_item:hover {
  border-bottom: 3px solid var(--limeGreen);
}
.menu-desk_button {
  text-decoration: none;
  text-wrap: nowrap;
  color: white;
  padding-left: 2em;
  padding-right: 2em;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  font-size: 0.9rem;
}
/*End Menu Desktop*/

/*Start Menu Mobile*/
.menu-mobile_header {
  /* background: linear-gradient(to right, #43cea2, var(--blue)); */
  background: var(--blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4.5em;
  top: 0;
  left: 0;
  position: fixed;
  width: 100%;
  padding: 0 1.5rem 0 1.5rem;
  display: none;
}
.menu-mobile {
  list-style-type: none;
  display: none;
  flex-direction: column;
  background-color: var(--blue);
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  padding: 2rem;
}
.menu-mobile_show {
  display: block;
}
.menu-mobile_item {
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  cursor: pointer;
}
.menu-mobile_item:hover {
  border-bottom: 3px solid var(--limeGreen);
}
.menu-mobile_button {
  text-decoration: none;
  color: white;
  padding-left: 1.5rem;
  text-transform: capitalize;
  letter-spacing: 1.5px;
  font-size: 1.2rem;
}
.menu-mobile_close {
  text-align: right;
  cursor: pointer;
  width: 100%;
}
.menu-mobile_burger {
  display: block;
}
.menu-mobile_closeicon {
  width: 1.5rem;
}
/*End Menu Mobile*/

.button-info a:hover {
  background-color: var(--blue);
  color: white;
}
.wrapper {
  margin-left: 10em;
  margin-right: 10em;
  padding: 0;
}
.hero-container {
  /* background: linear-gradient(to right, #43cea2, #0033cc); */
  background-color: var(--blue);
  display: flex;
  flex-direction: row;
  margin-top: 70px;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  width: 100%;
  height: 90vh;
  min-height: 90vh;
}
.hero-left {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-left: 10rem;
}
.hero-right {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-icons {
  width: 65%;
}
.hero-title {
  text-align: left;
  width: 100%;
  font-size: 3.7rem;
  font-weight: bold;
  color: white;
  margin: 0;
}
.hero-title span::before {
  content: '';
  display: inline-block;
  height: 40px;
  width: 10px;
  background-color: var(--limeGreen);
}
.hero-message {
  margin-top: 2rem;
  /* color: #52ceef; */
  color: #7ff8ff;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.hero-line {
  margin-left: -50px;
}
.client-title {
  color: var(--blue);
  margin-top: 4.5rem;
  margin-bottom: 4rem;
}
.client-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.client-logo {
  width: 7.5rem;
}
.title {
  color: var(--blue);
  text-align: center;
  margin-top: 5rem;
  margin-bottom: 5rem;
}
.services-container {
  display: flex;
  flex-direction: row;
  column-gap: 3rem;
  justify-content: center;
  color: var(--fontGray);
}
.services-card {
  border: 0px;
  width: 15rem;
  padding: 2.5rem 2rem;
  background-color: white;
  border-radius: 0.7rem;
  box-shadow: 0px 0px 10px 0px #d2d7e6;
}
.services-detail {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.services-card img {
  width: 3rem;
  fill: #491ace;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 29rem 29rem;
  margin-top: 8rem;
  margin-bottom: 5rem;
  gap: 1.5rem;
}
.services-cell {
  color: white;
  padding: 4.5rem 4.5rem 2rem 4.5rem;
  border-radius: 1rem;
}
.services-cell_title {
  font-size: 1.2rem;
  text-align: left;
  font-weight: 500;
  margin: 0;
}
.services-cell_image {
  width: 4rem;
  margin-top: 2.5rem;
  margin-bottom: 2rem;
}
.services-image_phone {
  width: 19rem;
  margin-left: 1rem;
}
.services-cell_list {
  padding-inline-start: 1.25rem;
}
.container-button {
  margin-top: 7rem;
  margin-bottom: 7rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.container-button #ios,
#android {
  border-radius: 10px;
  text-align: center;
  background-color: white;
  font-weight: bold;
  width: 10rem;
  margin: 20px;
  padding: 17px 40px 17px 40px;
}
#android {
  color: white;
  text-transform: uppercase;
  background-color: var(--limeGreen);
}
.feat {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 5rem;
}
.container-feat {
  background-color: white;
}
.feat div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.feat-left,
.feat-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 35vw;
}
.feat-left div,
.feat-right div {
  display: flex;
  flex-direction: column;
}
.feat-left p,
.feat-right p {
  width: 100%;
  margin-bottom: 0;
}
.feat-left p:first-child {
  color: var(--blue);
}
.feat-right p:first-child {
  color: var(--blue);
}
.feat-center {
  width: 30vw;
  margin: 0px 20px 0px 20px;
}
.feat-center img {
  width: 11rem;
}
.feat-card {
  min-width: 20rem;
  max-width: 22rem;
  box-shadow: 0px 0px 7px 0px #d2d7e6;
  margin: 25px 0px 25px 0px;
  border-radius: 10px;
  padding: 25px 20px 25px 20px;
}
.feat-card_title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: bold;
}

.about-wrapper {
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 0.5fr 1fr;
  gap: 1.5rem;
  margin-left: 10em;
  margin-right: 10em;
  padding: 0;
}
.about-company {
  background-color: var(--blue);
  padding: 4rem;
  border-radius: 1rem;
}
.about-name {
  font-size: 1.8rem;
  letter-spacing: 1.3px;
  margin-bottom: 1rem;
}
.office-image {
  border-radius: 1rem;
  background-image: url('../images/company-soft4.png');
  background-repeat: no-repeat;
  background-size: cover;
}
.office--blur {
  border-radius: 1rem;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 5, 179, 0.29);
}
.towers-image {
  grid-column: 1 / 3;
  border-radius: 1rem;
  background-image: url('../images/santacruz.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: -200px;
  height: 30rem;
}
.towers--blur {
  border-radius: 1rem;
  width: 100%;
  height: 100%;
  background-color: #3e1d9c91;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.towers-logo {
  width: 3.5rem;
}
.towers-description {
  max-width: 75%;
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.7rem;
  font-weight: 600;
}

.contact-message {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--fontGray);
  background-color: white;
  height: 200px;
  font-size: 1.1rem;
  padding: 0 2rem 0 2rem;
}
.contact-container {
  display: flex;
  flex-direction: row;
}
.contact-map {
  width: 50%;
  height: 28rem;
}
.contact-wrapper {
  display: flex;
  background-color: var(--lightBlue);
  align-items: center;
  justify-content: center;
  width: 50%;
}
.contact-address {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  color: var(--blue);
  font-size: 1rem;
}
.contact-description {
  color: var(--fontGray);
  margin-top: 10px;
}

.form-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--lightGray);
  background-color: white;
  padding: 6rem 0 15rem 0;
}
.form-title {
  font-size: 1.5rem;
  color: var(--blue);
  font-weight: 600;
  text-align: left;
}
.form-description {
  text-align: justify;
  margin: 10px;
  padding: 1rem 0 1rem 0;
}
.form-col {
  display: flex;
  flex-direction: row;
}
.form-data {
  max-width: 27rem;
  display: flex;
  flex-direction: column;
}
.form-input {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  margin: 10px;
  padding: 0.5rem;
  border: 2px solid #e0e0f7;
  border-radius: 5px;
  color: var(--fontGray);
}
.form-data input::placeholder,
textarea::placeholder {
  color: #d6d6de;
}
.form-data input:focus,
textarea:focus {
  outline: none !important;
  border: 2px solid var(--blue);
}
.form-send {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 10px;
  height: 3rem;
  background-color: var(--blue);
  color: white;
  border: 0px;
  border-radius: 0.7rem;
  font-weight: bold;
  letter-spacing: 1.5px;
  cursor: pointer;
}
.footer {
  padding: 4rem;
  background-color: var(--blue);
  height: 22rem;
  color: white;
  display: flex;
  flex-direction: column;
  border-bottom-style: solid !important;
  border-bottom: 1rem;
  border-bottom-color: var(--darkBlue);
}
.footer-menu {
  display: flex;
  flex-direction: row;
  height: 100%;
}
.footer-company {
  display: flex;
  flex-direction: row;
  column-gap: 0.5rem;
  padding-top: 0.5rem;
  width: 100%;
  height: fit-content;
  font-size: 1.4rem;
  letter-spacing: 1.2px;
}
.footer-logoimage {
  width: 2rem;
}
.footer-logotext {
}
.footer-menuitem {
  list-style: none;
  line-height: 2.25rem;
  width: 100%;
  padding: 0;
  margin: 0;
}
.footer-menubutton {
  text-decoration: none;
  color: white;
}
.footer-up {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--limeGreen);
  border-radius: 100%;
  width: 3rem;
  height: 3rem;
  text-decoration: none;
}
.footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*Modal Message Error, Success*/
.modal-message {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  -webkit-transition: opacity 400ms ease-in;
  -moz-transition: opacity 400ms ease-in;
  transition: opacity 400ms ease-in;
  height: 100%;
  width: 100%;
}
.modal-message:target {
  visibility: visible;
  opacity: 1;
}

.alert-container {
  position: absolute;
  border-radius: 0.6rem;
  width: auto;
  min-width: 18rem;
  max-width: 400px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: white;
  font-size: 0.9rem;
}
.alert-title {
  border-radius: 0.6rem 0.6rem 0 0;
  padding: 0.3rem 1rem 0.3rem 1rem;
  display: flex;
  justify-content: space-between;
  background: var(--blue);
  color: white;
}
.alert-close {
  color: white;
  text-decoration: none;
}
.alert-message {
  color: var(--fontGray);
  text-align: left;
  padding: 1rem;
  min-width: 8rem;
  min-height: 6rem;
}


.menu-lang {
  width: max-content;
  background-color: rgb(10, 51, 173);
  border-radius: 0.4rem;
  padding: 0.15rem 0.3rem;
}
.menu-lang_selected {
  cursor: pointer;
  list-style: none;
  display: flex;
  flex-direction: row;
  column-gap: 0.25rem;
  align-items: center;
  justify-content: center;
  color: white;
}
.menu-lang_dropicon {
  width: 1rem;
}

/*Close Menu Lang when click outside*/
.menu-lang[open] summary::before {
  content: '';
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  cursor: auto;
}
.menu-lang_image {
  width: 1.5rem;
  height: 1.5rem;
}
.menu-lang_list {
  position: absolute;
  display: flex;
  flex-direction: column;
  margin-top: 0.5rem;
  background-color: white;
  border-radius: 0.5rem;
  border: 1px solid var(--heroBlue);
}
.menu-lang_item {
  display: flex;
  flex-direction: row;
  column-gap: 0.25rem;
  align-items: center;
  justify-items: center;
  text-decoration: none;
  color: var(--blue);
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
}
.menu-lang_item:hover {
  background-color: var(--heroBlue);
  border-radius: 0.5rem;
}
