@charset "utf-8";
/* CSS Document */

html {
	font-family: "Roboto", sans-serif;
}

    body {
      font-family: "Roboto", sans-serif;
      line-height: 1.6;
      background: #f9f9f9;
      color: #333;
    }

    header, nav, footer {
      background-color: black;
      color: white;
    }

    header {
      padding: 1em;
      text-align: center;
    }

.logito {
	height: 90px;
	width: 90px;
	position: absolute;
    top:12px;
    left: 30px;
	
}

    nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      background-color: #005599;
    }

    nav a {
      padding: 1em;
      text-decoration: none;
      color: white;
    }

	nav a:hover  {
		background: #62d552;
		color: black;
		border-radius: 20px;
		font-weight: 500;
		}


    main {
      /*padding: 2em;*/
      max-width: 1200px;
      margin: auto;
    }

	.contact-box {
      padding: 1.5em;
      border-radius: 8px;
      box-shadow: 0 0 8px rgba(0,0,0,0.1);
      max-width: 600px;
      margin: auto;
	  
    }

    section {
      margin-bottom: 3em;
    }

    h1 {
      color: white;
	  font-size: 40px;
	  margin: 0px;
    }

.tagline {
	font-size: 20px;
	color: #62d552;
	margin: 0px;
}

h2 {
	color: #3e4790;
	padding: .05em;
    max-width: 1200px;
    margin: auto;
	font-size: 30px;
}

.container {
	position: relative;
    text-align: center;
    color: white;
}

.about {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}
.about-us {
	color: white;
	text-shadow: 2px 2px black;
}

section .us {
	padding: 2vw;
	border-radius: 20px;
	color: white;
	font-family: "Roboto", serif;
	font-size: 16px;
	text-shadow: 2px 2px black;
}

.background {
	object-fit: cover;
	width: 100% ;
	height: 100%;
	position: absolute;
	inset: 0;
	z-index: -1;
}



    .staff {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1em;
    }

    .staff article {
      background: #fff;
      padding: 1em;
      border-radius: 8px;
      box-shadow: 0 0 5px rgba(0,0,0,0.1);
    }
.staff img {
	height: 250px;
	width: 240px;
}

.staff p {
	font-size: 12px;
}

    ul.client-list {
      list-style: disc inside;
    }

    footer {
      text-align: center;
      padding: .5em;
      font-size: 0.9em;
    }

    @media (max-width: 768px) {
      nav {
        flex-direction: column;
      }

      main {
        padding: 1em;
      }
    }

h3{
	color: #62d552;
	text-shadow: 2px 2px 2px #3e4790;
}

.clients-logos {
	height: 600px;
	width: 600px;
}


/* ------CONTACT FORM------ */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap");


.formcarry-container * {
  box-sizing: border-box;
	font-family: "Inter", sans-serif;

  /* colors */
  --color-blue: #2552d0;
  --color-light-blue: #3266e3;
  --color-gray: #e5e7eb;
  --color-dark-gray: #9da3ae;
  --color-pink: #edadd2;
}

.formcarry-container {
  /* container */
  width: 50%;
  max-width: 500px;
  display: block;
  margin: 10vh auto 0 auto;
}

.formcarry-form label {
  display: block;
  padding: 12px 0 2px 0;
  letter-spacing: -0.2px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
}

.formcarry-form input,
.formcarry-form textarea {
  font-size: 16px;
  display: block;
  width: 100%;
  padding: 10px;
  background-color: var(--color-gray);
  border: none;
  border: 4px solid var(--color-gray);
  outline: none;
  border-radius: 8px;
  color: var(--color-dark-gray);
}

.formcarry-form input:focus,
.formcarry-form textarea:focus {
  background-color: #fff;
  color: var(--color-dark-gray);
}

.formcarry-form input:focus:required:invalid {
  border-color: var(--color-pink);
  background-color: #fff;
}

.formcarry-form button {
  display: block;
  margin-top: 12px;
  width: 100%;
  padding: 12px 20px;
  border-radius: 8px;
  border-color: transparent;
  background-color: var(--color-blue);
  color: #fff;
  font-weight: 700;
  font-size: 18px;

  transition: 300ms all;
}

.formcarry-form button:hover {
  background-color: var(--color-light-blue);
}

.formcarry-alert {
  padding: 12px;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  margin-top: 12px;
  display: none;
}

.formcarry-alert.visible {
  display: block;
}

.formcarry-alert.success {
  background: #69cf9d;
}

.formcarry-alert.error {
  background: #de524c;
}


/* ---CONTACT BUTTON--*/
  
.my-button {
  background-color: #62d552;
  color: white;
  padding: 20px;
  border-radius: 10px;
  font-size: 30px;
  font-weight: 600;
  box-shadow: 2px 2px 2px black;
  cursor: pointer;

}

.my-button:hover {
  background-color: #2989e5;
	padding:20px;
  
}

.boton {
	padding: 20px 20px 20px 20px;
}