@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap");
:root{
  --yellow:#f5bf23;
  --black:#111;
  --white:#fff;
  --light-color:#666;
  --light-bg:#eee;
  --box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
  --border:.1rem solid rgba(0,0,0,.3);
}
body.dark :root{
     --main-color:#d3ad7f;
    --black:#13131a;
    --yellow:#f5bf23;
    --bg:#010103;
     --white:#fff;
    --light-color:#666;
    --border:.1rem solid rgba(255,255,255,.3);
}
* {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}
body {
  background: #F1F1F1;
  font-family: 'Roboto', sans-serif;
  -webkit-transition: .3s ease all;
  transition: .3s ease all;

}
body.dark {
    background: #010103;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 9rem;
}

html::-webkit-scrollbar {
  width: .8rem;
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  background: var(--yellow);
     border-radius: 5rem;
}

section {
  padding: 5rem 10%;
}

.heading {
  margin-bottom: 3rem;
  font-size: 3rem;
  color: var(--black);
  text-transform: capitalize;
  padding-left: 1rem;
  border-left: 1rem solid var(--yellow);
}

body.dark .heading{
   
     color:#fff;
   
}

.btn{
 display: inline-block;
  margin-top: 1rem;
  padding: .9rem 3rem;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  font-size: 1.7rem;
  text-transform: capitalize;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
body.dark .btn{
     background: #454444;
 
     
    color:#fff;
}
.btn:hover{
    background: var(--yellow);
  color: var(--black);
    letter-spacing: .2rem;
}

.header{
    background: var(--white);
    display: flex;
    
    align-items: center;
    justify-content: space-between;
    padding:1.5rem 7%;
    border-bottom: var(--border);
   
    position: fixed;
    top:0; left: 0; right: 0;
    z-index: 1000;
}
body.dark .header{
        background: #010103;
    display: flex;
    
    align-items: center;
    justify-content: space-between;
    padding:1.5rem 7%;
    border-bottom: .1rem solid rgba(255,255,255,.3);
   
    position: fixed;
    top:0; left: 0; right: 0;
    z-index: 1000;
}
.header .logo img{
    height: 6rem;
}

.header .navbar a{
    margin:0 1rem;
    font-size: 1.6rem;
    color:black;
}

body.dark header .navbar a{
    color: #fff;
}
.header .navbar a:hover{
    color:var(--yellow);
    border-bottom: .1rem solid yellow;
    padding-bottom: .5rem;
}

.header .icons div{
    color:black;
    cursor: pointer;
    font-size: 2.5rem;
    margin-left: 2rem;
}
body.dark .header .icons div{
    color:#fff;
   
}

.header .icons div:hover{
    color: yellow;
    
}

#menu-btn{
    display: none;
}
 .switch {
  background: #343D5B;
  border-radius: 1000px;
  border: none;
  position: relative;
  cursor: pointer;

  display: flex;
  outline: none;
}
 .switch::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  background: #F1F1F1;
  top: 0;
  left: 0;
  right: unset;
  border-radius: 100px;
  -webkit-transition: .3s ease all;
  transition: .3s ease all;
  -webkit-box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.2);
}
.switch.active {
  background: orange;
  color: #000;
}
 .switch.active::after {
  right: 0;
  left: unset;
}
 .switch span {
  width: 30px;
  height: 30px;
  line-height: 30px;
  display: block;
  background: none;
  color: #fff;
}
/* Inicio//////////////////////////////////////////////////////////////////////////////////////////////////////*/
.home{
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url(../imagenesRaelpa/Portada2.jpg);
    background-size: cover;
    background-position: center;
}


.home .content{
    max-width: 60rem;
}
.home .content h3{
   font-size: 6rem;
  color: #fff;
  text-transform: capitalize;
  text-transform: uppercase;
}
body.dark .home .content h3{
   
    color:#fff;
}
.home .content p{
     font-size: 2rem;
  
    line-height: 1.8;
    padding:1rem 0;
  color: #eee;
 
}
body.dark .home .content p{
  
    color:#eee;
}
/* Sobre nosotros//////////////////////////////////////////////////////////////////////////////////////////////////////*/
.nosotros .row{
    display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3rem;
    
 
}

.nosotros .row .video{
    -webkit-box-flex: 1;
      -ms-flex: 1 1 41rem;
          flex: 1 1 41rem;
}

.nosotros .row .video video{
    width: 100%;
}
.nosotros .row .content{
  -webkit-box-flex: 1;
      -ms-flex: 1 1 41rem;
          flex: 1 1 41rem;
}

.nosotros .row .content h3{
    font-size: 3rem;
   
    color:black;
    text-transform: capitalize;
}
body.dark .nosotros .row .content h3{
    color: #ccc;
}
.nosotros .row .content p{
  font-size: 1.5rem;
  color: black;
  line-height: 2;
  padding: 1rem 0;
}
body.dark .nosotros .row .content p{
    color:#fff;
}
/* Servicios//////////////////////////////////////////////////////////////////////////////////////////////////////*/
.about .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3rem;
  margin-top: 5rem;
}

.about .row .video-container {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 41rem;
          flex: 1 1 41rem;
}

.about .row .video-container video {
  border-radius: 1rem;
  width: 100%;
}

.about .row .video-container .controls {
  text-align: center;
  padding: 2rem 0;
}

.about .row .video-container .controls span {
  display: inline-block;
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
  background: #000;
  cursor: pointer;
  margin: .7rem;
}
 body.dark .about .row .video-container .controls span {
       background: #fff;
 }
.about .row .video-container .controls span:hover {
  background: #f5bf23;
 
}
 body.dark .about .row .video-container .controls span:hover{
       background: #f5bf23;
 }
.about .row .content {
  
          flex: 1 1 30rem;
text-align: center;
}

/*
.about .row .content h3 {
  color: #fff;
  font-size: 4rem;
  margin-top: .5rem;
}*/

.about .row .content p {
  padding: .5rem 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #000;
  line-height: 2;
}
body.dark .about .row .content p{
    color: #aaa;
}
.about .row .content .icons-container{
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    
   
    gap: 1.5rem;
    align-items: flex-end;

 
}

.about .row .content .icons-container .icons{
    background: #000;
    flex:1 1 15rem;
    padding: 2rem;
/*    text-align: center;
    border:var(--border);
    border-radius: var(--border-radius);*/
}

body.dark .about .row .content .icons-container .icons{
 background: #13131a;
}
.about .row .content .icons-container .icons i{
    font-size: 2rem;
 margin-bottom: 1rem;
 color: yellow;
   
}
.about .row .content .icons-container .icons span{
    font-size: 1rem;
    color: #ccc;
    display: block;
    
}
/* proyectos//////////////////////////////////////////////////////////////////////////////////////////////////////*/
.projects {
  background: var(--black);
}

.projects .heading {
  color: var(--white);
}

.projects .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}

.projects .box-container .box {
  cursor: initial;
}

.projects .box-container .box:hover .image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.projects .box-container .box .image {
  height: 20rem;
  overflow: hidden;
}

.projects .box-container .box .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.projects .box-container .box .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: var(--white);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.projects .box-container .box .content .info {
  padding: 1rem 2rem;
}

.projects .box-container .box .content .info h3 {
  font-size: 1.7rem;
  color:#111;
  text-transform: capitalize;
}

.projects .box-container .box .content .info p {
  font-size: 1.5rem;
  color:#666;
  line-height: 2;
}

.projects .box-container .box .content i {
  width: 5.5rem;
  font-size: 2rem;
  background: #f5bf23;
  color: #fff;
  cursor: pointer;
  text-align: center;
  line-height: 7.5rem;
}

/*Bolsa de trabajo////////////////////////////////////////////////////////////////////////////////////////////*/
.review .row{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}

.review .row .information {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 35rem;
          flex: 1 1 35rem;
}
.review .row .information span {
  font-size: 2rem;
  color: black;
  
}
body.dark .review .row .information span {
 
  color: #f00;
}
.review .row .information h3 {
  font-size: 2rem;
  color: black;
  padding-top: 1rem;
}
body.dark .review .row .information h3 {
    color: #fff;
}
.review .row .information p {
  font-size: 1.5rem;
  line-height: 1.5;
  color: black;
  padding: 1rem 0;
}
body.dark .review .row .information p {
    color: #aaa;
}
.review .row .information samp {
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--yellow);
  padding: 1rem 0;
}

.review .row .review-slider {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 60rem;
          flex: 1 1 60rem;
}

.review .row .review-slider .slide {
  background: linear-gradient(130deg, black 93%, transparent 90%);
  padding: 2rem 3rem;
  
}

body.dark .review .row .review-slider .slide {
  background: linear-gradient(130deg, #111 93%, transparent 90%);
}
.review .row .review-slider .slide p {
  font-size: 1.5rem;
  line-height: 2;
  color: wheat;
}

body.dark .review .row .review-slider .slide {
  color:#aaa;
}
.review .row .review-slider .slide .user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1.5rem;
}

.review .row .review-slider .slide .user img {
  height: 5rem;
  width: 5rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin-right: 1rem;
}

.review .row .review-slider .slide .user h3 {
  font-size: 1rem;
  color: #fff;
}
body.dark .review .row .review-slider .slide .user h3 {
    color: #666;
}
.review .row .review-slider .slide .user span {
  color: var(--yellow);
  font-size: 1.5rem;
}

.review .row .review-slider .slide .user i {
  font-size: 5rem;
  margin-left: auto;
  margin-right: 1.5rem;
  color: var(--yellow);
}

/*Contacto///////////////////////////////////////////////////////////////////*/

.contact .row{
    display: flex;
    background:#131217;
    flex-wrap: wrap;
    gap:1rem;
}
body.dark .contact .row{
    background: #111;
}


.contact .row .map{
    flex:1 1 45rem;
    width: 150%;
    object-fit: cover;
}

.contact .row form{
    flex:1 1 45rem;
    padding:5rem 2rem;
    text-align: center;
}

.contact .row form h3{
    text-transform: uppercase;
    font-size: 3.5rem;
    color:#fff;
}

.contact .row form .inputBox{
    display: flex;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
    background:var(--bg);
    border:var(--border);
}

.contact .row form .inputBox span{
    color:#fff;
    font-size: 2rem;
    padding-left: 2rem;
}

.contact .row form .inputBox input{
    width: 100%;
    padding:2rem;
    font-size: 1.7rem;
    color:#fff;
    text-transform: none;
    background:none;
}
/*avisos//////////////////////////////////////////////////////////////////*/
.blogs {
  background: var(--light-bg);
}
body.dark .blogs{
    background: #010103;
}
.blogs .slide {
  text-align: center;
}

.blogs .slide:hover .image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.blogs .slide .image {
  height: 25rem;
  width: 90%;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: -3rem;
}

.blogs .slide .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.blogs .slide .content {
  padding: 2rem;
  padding-top: 5rem;
  background: var(--white);
  -webkit-box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.2);
}
body.dark .blogs .slide .content {
      background:var(--black);
}
.blogs .slide .content h3 {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
}
body.dark .blogs .slide .content h3 {
    color: #ccc;
}
.blogs .slide .content p {
  padding: 1rem 0;
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
}
body.dark .blogs .slide .content p {
 
  color: white;

}

.credit {
  background: #222;
  text-align: center;
  font-size: 1rem;
  padding: 1rem .5rem;
  color: white;
  

}
body.dark credit{
    color:#aaa;
}
.credit .links {
  background: #222;
  text-align: right;
  font-size: 1rem;
  padding: 1rem .5rem;
  color: black;
  

}
body.dark .credit .links{
    color: #aaa;
}

.credit span {
  color: #aaa;
}
 
body.dark .credit span {
  color: #ffffff;
}
.credit span:hover{
    color: var(--yellow);
}





.logo-container {
    position: relative;
    width: 1000%:
  text-align:center;
}

.logo-container img {
    width: 1000%;
  height: 40rem;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.footer .flexslider{
	width: 100%;
	position: relative;
}

.footer .slides{
	overflow: hidden;
}

.footer .flexslider .slides img{
	
  width: 100%;
}

.footer .slides,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer .flex-control-nav{
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: 5%;
	z-index: 999;
}

.footer .flex-control-nav li{
	display: inline-block;
	margin: 0 6px;
}

.footer .flex-control-nav li a{
	display: block;
	background:#fff;
	width: 12px;
	height: 12px;
	border-radius: 12px;
	text-indent: -9999px;
}
body.dark .footer .flex-control-nav li a{
    background:#000;
}
.footer .flex-control-nav li a:hover{
	background:#fff;
}

body.dark .footer .flex-control-nav li a:hover{
	background:#000;
}
.footer .flex-control-nav li a.flex-active{
	background: #fff;	
}
body.dark .footer .flex-control-nav li a.flex-active{
	background: #000;	
}
.footer .flex-direction-nav a{
	display: block;
	text-decoration: none;
	position: absolute;
	top: 50%;
	z-index: 999;
	width: 40px;
	height: 40px;
	overflow: hidden;
	opacity: 0;
	-webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.footer .flex-direction-nav .flex-prev{
	left: 0;
}

.footer .flex-direction-nav .flex-next{
	right: 0;
}

.footer .flex-direction-nav a:before {
  font-family: "flexslider-icon";
  font-size: 40px;
  display: inline-block;
  content: '\f001';
  color: #fff;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
}
body.dark .footer .flex-direction-nav a:before {
    color: #111;
}
.footer .flex-direction-nav a.flex-next:before {
  content: '\f002';
}



.footer .flexslider:hover .flex-direction-nav .flex-prev{
	opacity: 0.7;
	left: 10px;
}

.footer .flexslider:hover .flex-direction-nav .flex-prev:hover{
	opacity: 1;
}

.footer .flexslider:hover .flex-direction-nav .flex-next{
	opacity: 0.7;
	right: 10px;
}

.footer .flexslider:hover .flex-direction-nav .flex-next:hover{
	opacity: 1;
}

.footer .box-container {
  display: -ms-grid;
  display: grid;
  background: #eee;
  -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 1.5rem;
}
body.dark .footer .box-container {
  background: black;  
}
.footer .box-container .box {
  padding: 1rem 0;
}

.footer .box-container .box .logo {
  padding-bottom: 1rem;
}
.footer .box-container .box .logo img{
    height: 7rem;
}
.footer .box-container .box h3 {
  font-size: 2.2rem;
  color: black;
  padding: 1rem 0;
}
body.dark .footer .box-container .box h3 {
    color:#fff;
}
.footer .box-container .box p {
  font-size: 1.4rem;
  color: #22222;
  padding: 1rem 0;
  line-height: 2;
}
body.dark .footer .box-container .box p{
    color: #aaa;
}
.footer .box-container .box p i {
  padding-right: .5rem;
  color: var(--yellow);
 
}

.footer .box-container .box .share {
  padding-top: 1rem;
}

.footer .box-container .box .share a {
  height: 4.5rem;
  width: 4.5rem;
  line-height: 4rem;
  font-size: 2rem;
  border-radius: 50%;
  font-size: 1.7rem;
  border: 0.2rem solid var(--yellow);
  color: var(--yellow);
  margin-right: .5rem;
  text-align: center;
}

.footer .box-container .box .share a:hover {
   color:var(--yellow);
  color: #111;
}

.footer .box-container .box .links {
  font-size: 1.4rem;
  color: black;
  padding: 1rem 0;
  display: block;
}
body.dark .footer .box-container .box .links {
    color: #aaa;
}
.footer .box-container .box .links:hover {
 color: var(--yellow);
}

.footer .box-container .box .links:hover i {
  padding-right: 2rem;
}

.footer .box-container .box .links i {
  padding-right: .5rem;
   color: var(--yellow);
}












/* media queries  */
@media (max-width:991px){

    html{
        font-size: 55%;
    }

    .header{
        padding:1.5rem 2rem;
    }

    section{
        padding:2rem;
    }

}

@media (max-width:768px){

    #menu-btn{
        display: inline-block;
    }

    .header .navbar{
        position: absolute;
        top:100%; right: -100%;
        background: #fff;
        width: 30rem;
        height: calc(100vh - 9.5rem);
    }

    .header .navbar.active{
        right:0;
    }

    .header .navbar a{
        color:var(--black);
        display: block;
        margin:1.5rem;
        padding:.5rem;
        font-size: 2rem;
    }

    .header .search-form{
        width: 90%;
        right: 2rem;
    }

    .home{
        background-position: left;
        justify-content: center;
        text-align: center;
    }

    .home .content h3{
        font-size: 4.5rem;
    }

    .home .content p{
        font-size: 1.5rem;
    }

}

@media (max-width:450px){

    html{
        font-size: 50%;
    }

}