/* COLORES */
/* Main Color: rbg(39, 32, 44) / #27202c */
/* 2nd Color: rgb(222, 253, 185)*/
/* */

/* DISEÑADO POR CRISTIAN ROMERO */
/* CRISTIANROMEROVS@GMAIL.COM */

html{
    scroll-behavior: smooth;
}

*{
    font-family: 'Poppins', sans-serif;
}

/* NAVBAR */

.navbar{
    padding-top: 20px;
    padding-bottom: 20px;
}

.bg-light {
    background-color: #27202c !important;
}

.navbar-dark .navbar-nav .active>.nav-link, .navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .nav-link.show, .navbar-dark .navbar-nav .show>.nav-link {
    color: rgb(222, 253, 185);
}

.navbar-dark .navbar-nav .nav-link {
    color: rgb(222, 253, 185);
}

.navbar a{
    font-weight: 200;
}

.navbar img{
    width: 170px;
    height: auto;
    margin-right: 20px;
}

/* HEADER */

.header{
    margin-top: 40px;
}

.big-text hr{
    background-color: #27202c;
    width: 70%;
    height: 1px;
    margin-top: 70px;
}

.big-text h2{
    color: #412b4f;
    font-weight: 700;
    font-size: 30px;
    width: 80%;
    padding: 20px 0px 0px 30px;
    text-align: left;
    margin-top: 20px;
}

.colorchange{
    display: inline;
    animation: mymove 5s infinite;
}

@keyframes mymove {
    0% {color: #412b4f;}
    50% {color: #964ac5;}
    100% {color: #412b4f;}
}

.right-img{
    display: grid;
    place-items: center;
}

.right-img img{
    width: 60%;
    height: auto;
    border-radius: 50% 0px 50% 0px;
}

/* BTN CONTACTO */

.btn-contacto{
    display: grid;
    place-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.btn-contacto button{
    background-color: #964ac5;
    color: #fff;
    width: 300px;
    height: 70px;
    border: none;
    border-radius: 8px;
}

.btn-contacto button:hover{
    background-color: #27202c;
    transition: 2s;
}

/** ARROWDOWN **/

.scrolldown{
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transform: translateY(-80px) translateX(-50%)
        rotate(45deg);
  }
  .scrolldown span{
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 35%;
    background-color: #27202c;
    height: 35%;
    border-radius: 50%;
    animation: animate 1.5s linear infinite;
    opacity: 0;
  }
  .scrolldown span:nth-child(1){
    transform: translate(-20px,-20px);
    animation-delay: -0.4s;
  }
  .scrolldown span:nth-child(2){
    transform: translate(0,0);
    animation-delay: -0.2s;
  }
  .scrolldown span:nth-child(3){
    transform: translate(20px,20px);
    animation-delay: 0s;
  }
  @keyframes animate{
    0%{
      top: -5px;
      left: -5px;
      opacity: 0;
    }
    25%{
      top: 0px;
      left: 0px;
      opacity: 1;
    }
    50%,100%{
      top: 5px;
      left: 5px;
      opacity: 0;
    }
} 
  

/* QUIENES SOMOS */

.quienes-somos{
    margin-top: 250px;
    padding-top: 50px;
}

.quienes-somos-text{
    display: grid;
    place-items: center;
}

.quienes-somos-text p{
    margin-top: 30px;
    text-align: justify;
    width: 70%;
    color: #27202c;
}

.quienes-somos h2{
    display: block;
    color: #27202c;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700;
    font-size: 35px;
    text-align: center;
}

.quienes-somos .row{
    display: block;
}

/* ENLACES */

.enlaces{
    margin-top: 50px;
    padding-top: 50px;
    margin-bottom: 100px;
}

.enlaces-text{
    display: grid;
    place-items: center;
}

.enlaces-text ul{
    margin-top: 50px;
    color: #27202c;
}

.enlaces h2{
    display: block;
    color: #27202c;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700;
    font-size: 35px;
    text-align: center;
}

.enlaces .row{
    display: block;
}

/* AREAS */

.areas{
    margin-top: 50px;
    padding-top: 50px;
}

/* .areas .row{
    margin-top: 50px;
} */

.areas h2{
    color: #27202c;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700;
    font-size: 35px;
    text-align: center;
    margin-bottom: 40px;
}

.card-area{
    background-color: #27202c;
    color: #fff;
    font-weight: 400;
    font-size: 12px;
    border-radius: 10px;
    width: 300px;
    height: 300px;
    padding: 20px;
    line-height: 15px;
    -webkit-box-shadow: 10px 10px 5px -5px rgba(0,0,0,0.24);
    -moz-box-shadow: 10px 10px 5px -5px rgba(0,0,0,0.24);
    box-shadow: 10px 10px 5px -5px rgba(0,0,0,0.24);
    cursor: pointer;
    margin-bottom: 30px;
}

.card-area:hover{
    color: rgb(222, 253, 185);
    transition: 2s;
}

.card-area p{
    margin-bottom: 7px;
}

.card-area-title{
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 15px;
    text-align: center;
}

.card-area-title i{
    margin-left: 5px;
}

/* CONTACTANOS */

.contactanos{
    margin-top: 50px;
    background-color: #27202c;
    padding: 15px 0px 30px 0px;
}

.contactanos p{
    color: #fff;
    font-size: 14px;
    font-weight: 200;
    text-align: justify;
}

.contacto input{
    display: block;
    margin-bottom: 8px;
}

.contacto input[type=text], .contacto input[type=email] {
    background-color: #fff;
    border: none;
    width: 400px;
    height: 40px;
    border-radius: 5px;
    color: #3e3e3e;
    font-size: 14px;
    font-weight: 200;
    padding-left: 10px;
}

.contacto textarea{
    background-color: #fff;
    border: none;
    width: 400px;
    height: 150px;
    border-radius: 5px;
    color: #3e3e3e;
    font-size: 14px;
    font-weight: 200;
    padding-left: 10px;
    padding-top: 10px;
}

.contacto input[type=submit] {
    background-color: #fff;
    border: none;
    width: 400px;
    height: 40px;
    border-radius: 5px;
    color: #27202c;
    font-size: 14px;
    font-weight: 600;
}

.contacto input[type=submit]:hover {
    background-color: #3e3e3e;
    color: #fff;
    transition: 2s;
}

.title-negative h2{
    color: #fff;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700;
    font-size: 35px;
    margin-left: 70px;
}

.icon-negative img:hover {
    background-color: rgb(249, 249, 249);
    transition: 2s;
}

.icon-negative img{
    width: 250px;
    height: 250px;
    background-color: #fff;
    border-radius: 8px;
    padding: 10px;
}

.icon-bar{
    position: fixed;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 999;
    -webkit-box-shadow: 4px 3px 5px -3px rgba(42,42,42,0.46);
    -moz-box-shadow: 4px 3px 5px -3px rgba(42,42,42,0.46);
    box-shadow: 4px 3px 5px -3px rgba(42,42,42,0.46);
}
  
.icon-bar a {
display: block;
text-align: center;
padding: 16px;
transition: all 0.3s ease;
color: white;
font-size: 20px;
}

.icon-bar a:hover {
background-color: #27202c !important;
color: white !important;
}

.facebook {
background: rgb(255,255,255);
color: #27202c !important;
}

.twitter {
background: rgb(255,255,255);
color: #27202c !important;
}

.instagram {
background: rgb(255,255,255);
color: #27202c !important;
} 

@media only screen and (max-width: 600px) {
.facebook, .twitter, .instagram{
    font-size: 15px !important;
}
.carousel{
    margin-top: 50px;
}

}

/* FOOTER */

.footer{
    background-color: rgb(222, 253, 185);
    color: #27202c;
    font-weight: 600;
    font-size: 17px;
    padding: 30px 0px 30px 0px;
    height: auto;
    width: 100%;
    display: block;
}

.footer a, .footer p{
    color: #27202c;
    padding: 0px !important;
    margin: 0px !important;
}

.footer p i{
    margin-right: 10px;
}

/* MEDIA QUERYS */


/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/

@media (min-width: 1281px) {
  
    /* CSS */
    
  }
  
  /* 
    ##Device = Laptops, Desktops
    ##Screen = B/w 1025px to 1280px
  */
  
  @media (min-width: 1025px) and (max-width: 1280px) {
    
    /* CSS */
    
  }
  
  /* 
    ##Device = Tablets, Ipads (portrait)
    ##Screen = B/w 768px to 1024px
  */
  
  @media (min-width: 768px) and (max-width: 1024px) {
    
    /* CSS */
    
  }
  
  /* 
    ##Device = Tablets, Ipads (landscape)
    ##Screen = B/w 768px to 1024px
  */
  
  @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    
    /* CSS */
    
  }
  
  /* 
    ##Device = Low Resolution Tablets, Mobiles (Landscape)
    ##Screen = B/w 481px to 767px
  */
  
  @media (min-width: 481px) and (max-width: 767px) {
    
    /* CSS */
    
  }
  
  /* 
    ##Device = Most of the Smartphones Mobiles (Portrait)
    ##Screen = B/w 320px to 479px
  */
  
  @media (min-width: 320px) and (max-width: 480px) {
    
    .big-text h2{
        font-size: 25px;
        width: 100%;
        padding: 20px 0px 0px 30px;
        margin-top: 20px;
    }

    .scrolldown{
        bottom: -50px;
    }
      
    .contacto input[type=text], .contacto input[type=email] {
        width: 300px;
        height: 40px;
    }

    .contacto textarea {
        width: 300px;
        height: 150px;
    }

    .contacto input[type=submit] {
        width: 300px;
        height: 40px;
    }

    .icon-negative img {
        margin-top: 20px;
    }

    .footer {
        font-weight: 600;
        font-size: 15px;
        padding: 30px 0px 30px 0px;
    }

    .icon-bar{
        display: none;
    }
  }
