:root {
   --blue: #FA6601;
   --cyan: #1C3E95;
   --whitecyan: #4b9cd3;
   --iceblue: #0061a9;
   --white: #ffffff;
   --gray: #767676;
   --black: #151515;
 }

@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;700&display=swap');

* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
  font-family: 'Source Sans Pro', sans-serif;
  text-decoration: none;
  list-style: none;
}

/* GENERAL */
body {
   font-size: 16x;
   background-color: var(--white);
   min-height: 100vh;
 }

 /* MULTILENGUAJE */
 section[lang="es"] {
  display: none;
}
section[lang="en"] {
  display: block;
}
.lang-en,
.language-selector .lang-en {
  display: block;
}
.lang-es,
.language-selector .lang-es {
  display: none;
}


 /* ENCABEZADO */
header {
   width: 100%;
      position: fixed;
   top: 0;
   left: 0;
   background: #fff;
   z-index: 2;
 }
 .header__superior {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  /* background-color: #4dc247; */
}
.logo {
  flex-shrink: 0;
  margin-right: auto;
}
.logo img {
   width: 250px;
 }
 .right-content {
    display: flex;
    align-items: center;
    gap: 10px;
}
.search {
    display: flex;
    align-items: center;
}
.search input {
    height: 30px;
    width: 250px;
    padding: 0 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.language-selector {
    display: flex;
    align-items: center;
}
.language-selector button {
    padding: 0;
    margin: 0;
}
.language-selector button:first-child {
    margin-right: 3px;
}
button {
 /*  font-size: 16px; */
  /* padding: 10px; */
  /* margin-right: 10px; */
  border: none;
  /* border-radius: 5px; */

}
button:hover {
  cursor: pointer;
}

/* CONTENEDOR MENU */
.container__menu {
   width: 100%;
   height: 70px;
  background: #1C3E95;
  padding: 0px 20px;
}
.menu {
   max-width: 1200px;
   margin: auto;
   height: 100%;
   justify-content: center;

 }
nav {
   height: 100%;
   display: flex;
   width: 100%;
   align-items: center;
 }
 nav > ul {
   height: 100%;
   display: flex;
}
nav ul li {
height: 100%;
list-style: none;
position: relative;
}
 nav > ul > li > a{
   width: 100%;
   height: 100%;
   color: #FFF;
      display: flex;
         align-items: center;
      padding: 25px;
      text-transform: uppercase;
      font-size: 14px;
      transition: all 300ms ease;
 }
nav>ul>li>a:hover {
   transform: scale(1.1);
   background: #FA6601;
   box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .5);
 
 }
 nav>ul>li:first-child>a {
   background-image: url(/images/home.png);
   background-size: 24px;
   background-repeat: no-repeat;
   background-position: center center;
   padding: 20px 50px;
 }
 
 nav>ul>li:first-child:hover>a {
   background-image: url(/images/home.png);
   background-size: 24px;
   background-repeat: no-repeat;
   background-position: center center;
 }

 /* home */
 #marca1 {
   transform: scale(1.1);
   background-color: #FA6601;
   box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .5);
   padding: 34px;
   padding-left: 90px;
 }

 /* about */
 #marca2 {
  transform: scale(1.1);
  background-color: #FA6601;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .5);
  /* padding: 34px; */
/*   padding-left: 90px; */
}

/* contact */
#marca3 {
  transform: scale(1.1);
  background-color: #FA6601;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .5);
  /* padding: 34px; */
/*   padding-left: 90px; */
}

/* find a career */
#marca4 {
  transform: scale(1.1);
  background-color: #FA6601;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .5);
  /* padding: 34px; */
  /* padding-left: 90px; */
}

 /* SUBMENU */
nav ul li ul {
   width: 200px;
   display: flex;
   flex-direction: column;
   background: rgba(255, 255, 255, 0.9);
   box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
   position: absolute;
   top: 90px;
   left: -5px;
   padding: 14px 0px;
   visibility: hidden;
   opacity: 0;
   z-index: 10;
   transition: all 300ms ease;
 }
 nav ul li:hover ul {
   visibility: visible;
   opacity: 1;
   top: 70px;
 }
 nav ul li ul:before {
   content: '';
   width: 0;
   height: 0;
   border-left: 12px solid transparent;
   border-right: 12px solid transparent;
   border-bottom: 12px solid white;
   position: absolute;
   top: -12px;
   left: 20px;
 }
 nav ul li ul li a {
   display: block;
   color: #1C3E95;
   padding: 6px;
   padding-left: 12px;
   margin-top: 10px;
   font-size: 14px;
   text-transform: uppercase;
   transition: all 300ms ease;
 }
 nav ul li ul li a:hover {
   background: #1C3E95;
   color: #fff;
   transform: scale(1.1);
   padding-left: 30px;
   font-size: 14px;
   box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .5);
 }
.login {
     margin-left: auto;
     width: 36%;
 }
 .login form {
   display: flex;
   align-items: center;
 }
 .login form input[type="text"],
.login form input[type="password"] {
  height: 30px;
  margin-right: 10px;
  border: 2px solid #ccc;
  border-radius: 4px;
}
.login form button[type="submit"] {
  background-color: #FA6601;
  border: none;
  color: white;
   border-radius: 4px;
    text-decoration: none;
      margin: 1px 1px;
      font-size: 1em;
  padding: 5px 25px;
  text-align: center;
}


/* PONER BANDERAS JUNTAS */
#btn-en, #btn-es {
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
}

#btn-en img, #btn-es img {
    height: 20px;
    width: auto;
}

/* FIN */


/* CONTENEDOR y SECCIONES */
section {
   position: relative;
   min-height: 600px;
   display: flex;
   align-items: center;
   justify-content: center;
   transform-style: preserve-3d;
   height: 115vh;
 }

/* Sección 1 */
.section-1 {
   padding-top: 20px;
   width: 100%;
   height: 50vh;
   background-attachment: fixed;
   background-position: center;
   background-repeat: no-repeat;
   background-size: cover;
   width: auto;
   height: 700px;
   color: #FFF;
 }
 .section1-text {
   position: absolute;
   top: 65%;
   left: 50%;
   transform: translate(-50%, -50%);
   background-color: rgba(0, 0, 0, 0.4);
   letter-spacing: 1.5px;
   font-size: 18px;
   color: white;
   text-shadow: 2px 2px 4px black;
   width: 80%;
   height: 60%;
   border-radius: 10px;
   padding: 20px;
   overflow: hidden;
   -webkit-transform: translate(-50%, -50%);
   -moz-transform: translate(-50%, -50%);
   -ms-transform: translate(-50%, -50%);
   -o-transform: translate(-50%, -50%);
 }
 .btn__btn-primary {
   background-color: #0061A9;
   color: white;
   padding: 14px 20px;
   margin: 8px 0;
   border: none;
   border-radius: 5px;
   cursor: pointer;
   transition: all 0.3s ease;
   max-width: 100px;
   -webkit-border-radius: 5px;
   -moz-border-radius: 5px;
   -ms-border-radius: 5px;
   -o-border-radius: 5px;
 }
 .btn__btn-primary:hover {
   background-color: #73A6D3;
   transform: scale(1.1);
   -webkit-transform: scale(1.1);
   -moz-transform: scale(1.1);
   -ms-transform: scale(1.1);
   -o-transform: scale(1.1);
 }
 .btn__btn-primary:active {
   background-color: #6389E4;
   transform: scale(0.95);
 }
 /* SECCION 1 - VIDEO - VENTANA MODAL */
dialog {
   position: fixed;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 640px;
   height: 480px;
   max-width: 80%;
   max-height: 80%;
   overflow-y: auto;
 }
.my-video {
   width: 100%;
   height: 100%;
 }

 /* SECCION DOS*/
.section-2 {
   display: flex;
   justify-content: center;
   flex-direction: column;
   background-color: #F7F7F7;
   font-size: 1rem;
   height: 80vh;
 }
.section2-text h1 {
   font-size: 2rem;
   color: #6389E4;
 }
 .section2-text {
   font-family: "varela", helvetica, tahoma, arial, sans-serif;
   font-size: 17px;
   color: #555555;
   position: absolute;
   top: 60%;
   left: 50%;
   transform: translate(-50%, -40%);
   width: 60%;
   height: 55%;
   padding: 10px;
   text-align: justify;
   z-index: 0;
 }
 .btn,
 .btn-primary {
   color: #6389E4;
   border: 2px solid rgba(0, 0, 0, 1);
   padding: 0.6em 2.5em;
   text-decoration: none;
   border-radius: 50px;
   margin-bottom: 20px;
   margin: 20px;
 }
 .section2-images {
   display: flex;
   z-index: 1;
 }

/* SECCION TRES*/
.section-3 {
   background: url(/images/WebDesign.jpg);
   background-size: cover;
   width: auto;
   background-position: center;
   background-attachment: fixed;
   padding-top: -60px;
   height: 80vh;
   background-color: #1d3dcc;
   position: relative; 
 }
 .section-3::before {
   content: "";
   display: block;
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: #000;
   opacity: 0.3; 
 }
 .section3-text {
   font-family: "varela", helvetica, tahoma, arial, sans-serif;
   color: #ffffff;
   font-size: 17px;
   position: absolute;
   top: 60%;
   left: 50%;
   width: 60%;
   height: 55%;
   padding: 10px;
   transform: translate(-50%, -40%);
   text-shadow: 2px 2px 4px black;
   text-align: justify;
   z-index: 0;
 }
 .section3-text p {
   background-color: rgba(0, 0, 0, 0.2);
 }
 .section3 h1 {
   font-size: 2.5rem;
   text-align: center;
   font-family: "varela", helvetica, tahoma, arial, sans-serif;
   color: #FFF;
 }
 .section3 h2 {
   font-size: 1.5rem;
   font-family: sans-serif;
   color: #FFF;
 }
 .section3 a {
   border: 2px solid rgba(0, 0, 0, 1);
   padding: 0.6em 2.5em;
   text-decoration: none;
   border-radius: 50px;
   margin-bottom: 20px;
   margin: 20px;
   color: #f2f2f2;
   background-color: rgba(28, 62, 149, 0.5);
   padding: 10px 20px;
   border-radius: 10px;
   text-decoration: none;
   font-weight: bold;
 }
 .section3 a:hover {
   background-color: rgba(250, 102, 1, 0.5);
 }
 
 /* SECCION CUATRO */

 .carousel .service-active img {
  width: 230px;
  height: 230px;
  border-radius: 10%;
  object-fit: cover;
   position: absolute;
   top: 160px;
   right: -190px;
 }

  .carousel .service-hidden img {
    width: 230px;
    height: 230px;
       border-radius: 10%;
    object-fit: cover;
  position: absolute;
  top: 160px;
  right: -190px;
 }

.section-4 {
    background-color: #0061a9;
    padding: 50px 0;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-title {
    color: white;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.services-slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.slider-nav {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.slide {
    display: none;
    width: 800px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    display: block;
    opacity: 1;
}

.slide-enter {
    animation: slideEnter 0.5s forwards;
}

.slide-exit {
    animation: slideExit 0.5s forwards;
}

@keyframes slideEnter {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideExit {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50px);
    }
}

.slide-content {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px;
}

.slide-text {
    flex: 1;
    max-width: 400px;
}

.slide-text h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
}

.slide-text p {
    color: white;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: justify;
}

.slide-image {
    flex: 1;
    max-width: 400px;
    height: 300px;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* SECCION CINCO */
.section-5 {
   padding-top: 0px;
   width: 100%;
   height: 100vh;
   height: 600px;
   background: url(/images/WorkWithUS.jpg);
   background-attachment: fixed;
   background-position: center;
   background-size: cover;
   width: auto;
   color: #FFF;
 }
 .section5-text {
   font-family: "varela", helvetica, tahoma, arial, sans-serif;
   font-size: 17px;
   color: #222222;
   position: absolute;
   top: 60%;
   left: 50%;
   transform: translate(-50%, -40%);
   width: 60%;
   height: 55%;
   padding: 10px;
   text-align: justify;
   z-index: 0;
 }
 .section5-text p{
   background-color: rgba(0, 0, 0, 0.2);
   color: #ccc;
 }
 .section5-text h1{
   color: #222222;
 }

 /* SECCION SEIS */
.section-6 {
   background-color: #153075;
   color: #FFF;
   width: 100%;
   height: 60vh;
   display: flex;

   flex-direction: column;
   justify-content: center;
   align-items: center;
   padding-top: 0px;
   background-attachment: fixed;
   background-position: center;
   background-size: cover;
 }
 .section-6 input[type="text"],
 .section-6 input[type="email"],
 .section-6 textarea {
   width: 110%;
   border-radius: 4px;
   /* padding: 12px 300px; */
   padding: 12px 300px 12px 5px;
   margin: 10px 0;
 /*   box-sizing: border-box; */
   border: 1px solid #ccc;
 /*   resize: vertical; */
/*    max-width: 700px !important;  */
 }

 .center-text-contact-form {
   text-align: center;
   background-color: rgba(21, 48, 117, 1);
   color: #f2f2f2;
   padding-top: 10px;
   font-family: 'Raleway', sans-serif;
   margin-bottom: 20px; 
 }
.title_form h1 {
   position: absolute;
   background-color: #153075;
   text-align: center;
   color: #ffffff;
   font-family: 'Raleway', sans-serif;
 }
 label {
   font-weight: bold;
 }
 .section-6 input[type="submit"] {
   width: 100%;
   background-color: #FA6601;
   color: white;
   padding: 18px 20px;
   margin: 8px 0;
   border: none;
   border-radius: 4px;
   cursor: pointer;
 }
 .section-6 input[type="submit"]:hover {
   background-color: #45a049;
 }
 
 /* BOTON FROM SUBMIT */
.cool-button {
   max-width: 100px;
   cursor: pointer;
   transition: all 0.3s ease;
 }
 .cool-button:hover {
   transform: scale(1.1);
 }
 .cool-button:active {
   background-color: #F57D2C;
   transform: scale(0.95);
 }

 /* FOTTER */
 .rounded-image {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  object-fit: cover;
  margin: 0 20px;
  position: relative;
  top: -150px;
}
.main-footer {
   background-color: #000000;
   padding-top: 30px;
   height: 60vh;
   width: 100%;
   height: 150px;
   color: #FFF;
   display: flex;
 }
 .footer-1,
.footer-2,
.footer-3 {
  flex: 1;
}
.left,
.center,
.right {
  text-align: center;
}
.center {
   padding-top: 30px;
 }
 .right{

 }
 .right ul li a {
   color: #FFF;
   text-decoration: none;
 }
 .right ul li a:hover {
   color: #FFF;
   text-decoration: none;
 }
 .center ul {
   display: flex;
   transform: translate(-50%, -50%);
 }
 .ceneter ul li {
   list-style: none;
 }
 .center ul li a {
   width: 60px;
   height: 60px;
   background-color: #fff;
   text-align: center;
   line-height: 60px;
   font-size: 35px;
   margin: 0 10px;
   display: block;
   border-radius: 50%;
   position: relative;
   overflow: hidden;
   border: 3px solid #fff;
   z-index: 1;
 }
.center ul li a .icon {
   position: relative;
   color: #262626;
   transition: .5s;
   z-index: 3;
 }
 .center ul li a:hover .icon {
   color: #fff;
   transform: rotateY(360deg);
 }
 .center ul li a:before {
   content: "";
   position: absolute;
   top: 100%;
   left: 0;
   width: 100%;
   height: 100%;
   background: #f00;
   transition: .5s;
   z-index: 2;
 }
 .center ul li a:hover:before {
   top: 0;
 }
 /* facebook, linkedin,instagram,TIKTOK,WHATSAPP,twitte,telegram */
 .center ul li:nth-child(1) a:before {
   background: #3b5998;
 }
 .center ul li:nth-child(2) a:before {
   background: #0077b5;
 }
 .center ul li:nth-child(3) a:before {
   background: #F94E46;
 }
 .center ul li:nth-child(4) a:before {
   background: #000;
 }
 .center ul li:nth-child(5) a:before {
   background: #4dc247;
 } */
 /* .center ul li:nth-child(6) a:before {
   background: #55acee;
 }
 /* .center ul li:nth-child(7) a:before {
   background: #0088cc;
 }

 
 /* DISPLAY GRIP */
.container {
   display: grid;
   grid-template-areas:
     "header header"
     "navbar navbar"
     "section1 section2"
     "section3 section4"
     "section5 section6"
     "footer footer";
 }
 
 header {
   grid-area: header;
 }
 nav {
   grid-area: navbar;
 }
 section:nth-of-type(1) {
   grid-area: section1;
 }
 section:nth-of-type(2) {
   grid-area: section2;
 }
 section:nth-of-type(3) {
   grid-area: section3;
 }
 section:nth-of-type(4) {
   grid-area: section4;
 }
 section:nth-of-type(5) {
   grid-area: section5;
 }
 section:nth-of-type(6) {
   grid-area: section6;
 }
 footer {
   grid-area: footer;
 }

/* RESPONSIVE */
.icon__menu{
   font-size: 26px;
   color: #f2f2f2;
   cursor: pointer;
   width: 26px;
   height: 100%;
   display: flex;
   align-items: center;
}
#label__check{
   width: 26;
   height: 100%;
   display: none;
}
#check__menu{
  display: none;
}


 
 @media screen and (max-width: 720px) {
   .search input {
     display: none;
   }
   .header__superior{
      padding: 10px;
   }
   .logo img{
      width: 180px;
   }
   nav > ul {
      flex-direction: column;
      background-color: #023877;
      position:fixed;
      left: 0;
      top: 158px;
      width: 100%;
      height: 0px;
      transition: all 300ms ease;
      z-index: 100;
      opacity: 0;
      visibility: hidden;
}
nav > ul > li > a:hover {
   transform: scale(1);
}
nav ul li ul {
   left: 90px;
}
nav > ul > li:hover ul {
   top: 50px;
}
nav > ul > li:first-child a{
   background-position: 20px;
}
#marca1 {
   transform: scale(1);
}
#label__check{
   display: block;
}
.icon__menu{
   display: flex;
}
#check__menu:checked ~ nav > ul {
   height: 300px;
   visibility: visible;
   opacity: 1;
}
 }

/* Ajustes para el footer */
.footer-2 .center ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 0;
}

.footer-2 .center ul li a {
    background: white;
    color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-2 .center ul li a:hover {
    transform: translateY(-3px);
    background: #f5f5f5;
}

.footer-2 .center ul li a i {
    font-size: 20px;
}
