html, body {
  max-width: 100% !important;
  overflow-x: hidden !important;
}

body {
  background-color: #f0f0f7;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  width: 100%;
}

.container{
  width: 1200px;
}

.containercli{
  width: 1200px;
  padding: 2%;
}
h1 {
  color: #004258;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 20%;
}
h2 {
  color: #ffffff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 80%;
}
h3 {
  color: #ffffff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 50%;
  padding-top: 5%;
  padding-bottom: 5%;
}
.pservicios {
  color: #ffffff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 130%;

  padding: 5%;
}
.leftp {
  font-family: "Poppins", sans-serif, Light 300;
  font-size: 90%;
  text-align: justify;
  padding-left: 10%;
  padding-right: 10%;
  padding-bottom: 0%;
  padding-top: 3%;
}
.rightp {
  font-family: "Poppins", sans-serif, Light 300;
  font-size: 90%;
  text-align: justify;
  padding-left: 10%;
  padding-right: 10%;
  padding-bottom: 1%;
  padding-top: 3%;
}
.sectionblue {
  display: block;
  background-color: #004258;
  width: 110%;
  padding: 5%;
}

.sectionblack {
  display: block;
  background-color: #1a2229;
  width: 100%;
  padding: 5%;
}

.sectionwhite {
  display: block;
  background-color: white;
  width: 100%;
}

.sectionblue1 {
  margin-top: 7%;
  display: block;
  background-color: #cfdee5;
  width: 100%;
  padding: 5%;
}


.button {
  background-color: white;
  color: #004258;
  border: 2px solid #004258;
  border-radius: 22px;
  padding: 12px 40px;

  transition-duration: 0.4s;
}

.button:hover {
  background-color: #004258;
  color: white;
}

.buttonn {
  background-color: white;
  color: #1a2229;
  border: 2px solid #1a2229;
  border-radius: 22px;
  padding: 12px 40px;
  font-size: 18px;

  transition-duration: 0.4s;
}

.button:hover {
  background-color: #1a2229;
  color: white;
}

.button1 {
  background-color: #004258;
  color: whitesmoke;
  border: 2px solid white;
  border-radius: 22px;
  padding-left: 10%;
  padding-right: 10%;
  padding-bottom: 1%;
  padding-top: 1%;
  text-align: center;
  

  transition-duration: 0.4s;
}

.button1:hover {
  background-color: white;
  color: #004258;
  border: solid 1px #004258;
}

.button2{
  background-color: #004258;
  color: whitesmoke;
  border: 2px solid white;
  border-radius: 22px;
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 1%;
  padding-top: 1%;
  text-align: center;
  font-size: 100%;

  transition-duration: 0.4s;
}

.button2:hover{
  background-color: white;
  color: #004258;
  border: solid 1px #004258;
}

.foot {
  display: block;
  background-color: #1a2229;
  width: 100%;
  color: white;
  padding-top: 5%;
}

#menuToggle {
  display: block;
  position: relative;
  top: -27px;
  left: 10px;

  z-index: 1;

  -webkit-user-select: none;
  user-select: none;
}

#menuToggle a {
  text-decoration: none;
  color: white;

  transition: color 0.3s ease;
}

#menuToggle a:hover {
  color: rgb(173, 245, 255);
}

#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -15px;
  left: -15px;

  cursor: pointer;

  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */

  -webkit-touch-callout: none;
}

/*
   * Just a quick hamburger
   */
#menuToggle span {
  display: block;
  width: 28px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;

  background: #73d9f3;
  border-radius: 3px;

  z-index: 1;

  transform-origin: 0px 0px;

  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}

#menuToggle span:first-child {
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

/* 
   * Transform all the slices of hamburger
   * into a crossmark.
   */
#menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #73d9f3;
}

/*
   * But let's hide the middle one.
   */
#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
   * Ohyeah and the last one should go the other direction
   */
#menuToggle input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}

/*
   * Make this absolute positioned
   * at the top left of the screen
   */
#menu {
  position: absolute;
  width: 50%;
  margin: -100px 0 0 -50px;
  padding: 70px;
  padding-top: 125px;
  padding-bottom: 100%;

  background: #004258;
  opacity: 0.8;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */

  transform-origin: 0% 0%;
  transform: translate(-100%, 0);

  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

#menu li {
  padding: 13px 0;
  font-size: 180%;
}

/*
   * And let's slide it in from the left
   */
#menuToggle input:checked ~ ul {
  transform: none;
}

/* código CSS */
.logo {
  position: absolute;
  left: 2%;
  
  top: 10%;
  width: 18%;
  margin: 0 auto;
  z-index: -100;
}

.you {
  position: absolute;
  left: 79%;
  width: 2.5%;
  padding-top: 33%;
  margin: 0 auto;
  z-index: 10;
}

.tw {
  position: absolute;
  left: 82%;
  padding-top: 33%;
  width: 2.5%;
  margin: 0 auto;
  z-index: 10;
}

.in {
  position: absolute;
  left: 85%;
  padding-top: 33%;
  width: 2.5%;
  margin: 0 auto;
  z-index: 10;
}

.ins {
  position: absolute;
  left: 88%;
  padding-top: 33%;
  width: 2.5%;
  margin: 0 auto;
  z-index: 10;
}

.fac {
  position: absolute;
  left: 91%;
  padding-top: 33%;
  width: 2.5%;
  margin: 0 auto;
  z-index: 10;
}

.wsp {
  position: absolute;
  left: 94%;
  padding-top: 33%;
  width: 2.5%;
  margin: 0 auto;
  z-index: 10;
}

.redes {
  width: 10%;
  padding-top: 2%;
}

.aliados {
  width: 80%;
  padding-top: 10%;
  
}

.ir-arriba {
  display: none;
  padding: 20px;
  background: #024959;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.fts {
  padding-top: 5%;
  padding-bottom: 0%;
}

.serviciosb {
  border-top: 1px solid gray;
  border-right: 1px solid gray;
  border-bottom: 1px solid gray;
  border-left: 1px solid gray;
  border-radius: 10px;
  padding: 5%;
  margin-top: 3%;
}

.serviciosa {
  border-top: 1px solid gray;
  border-right: 1px solid gray;
  border-bottom: 1px solid gray;
  border-left: 1px solid gray;
  border-radius: 10px;
  padding: 5%;
  margin-top: 3%;
}

.icon {
  width: 25%;
  margin-left: 35%;
}

#name {
  width: 100%;
  margin: 1%;
}

#phone {
  width: 46%;
  margin: 1%;
}

#mail {
  width: 48%;
  margin: 1%;
}

#mensaje {
  width: 100%;
  margin: 1%;
}
#sel1 {
  width: 48%;
  margin: 1%;
}
#sel2 {
  width: 48%;
  margin: 1%;
}
.btn {
  margin-left: 50%;
  width: 15%;
}

.serviciosc {
  border-radius: 10px;
  padding: 5%;
  margin-top: 3%;
  box-shadow: 1px 1px 1px 1px rgb(207, 207, 207);
}

.logomin {
  width: 300%;
  padding: 20%;
  margin-left: 50%;
  margin-top: 55%;
}

/* Style the navbar */
#navbar {
  overflow: hidden;
  background-color: #1a2229;
  padding-right: 5%;
}

/* Navbar links */
#navbar a {
  float: right;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px;
  text-decoration: none;
  
}

/* Page content */
.content {
  padding: 16px;
  padding-right: 5%;
}

/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .content {
  padding-top: 60px;
}