/*
Theme Name: Pragma
Author: Plexo
Author URI: http://www.plexosistemas.com.ar
Description: Tema para Pragma
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: temaDos
Tags: one-column, two-columns, right-sidebar, flexible-header, accessibility-ready, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/*---Generales---*/
@import url(css/mi-slider.css);
@import url(css/nivo-slider.css);

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color:#fff;
    font-size: 12pt;
    font-family: "arial-unicode-ms", Sans-serif;
 }

header {
    width: 100%;
    height: 30px;
    margin: 0px auto;
}
footer {
    width: 100%;
    height: 100px;
    margin: 0px auto;
    z-index: 100;
    position: relative;
    background-color:#333;
}
main {
    width: 100%;
}
  /*---------Header---------*/

header {
    position: fixed;
    top:0;
    background: #333;
    display: flex;
    flex-wrap: wrap;
    z-index: 100;
}
header label  {
    font-size: 22px;
    color: #14130B;
    padding: 12px;
    display:none;
}
header label:hover  {
    cursor: pointer;
    background:  rgba(0,0,0,.3);
}
#bt-menu {
    display: none;
}
.menu ul {
    margin: 0px;
    padding: 0px;
    display: flex;
    list-style: none;
    justify-content: flex-end;
}
.menu ul li a{
    display: block;
    padding: 7px 30px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    margin-right: 6%;
}
.menu ul li a:hover{
    color: rgb(233, 154, 51);
}
.menu ul li:hover{
    cursor: pointer;
    background:  rgba(0,0,0,.3);
}
.menu{
    width: 100%;
    justify-content: end;
}

/*---------Main-----------*/

main img{
    width: 100%;
}
#boton-td img{
    width: 50%;
    margin-left: 45%;
    z-index: 200;
    transition: all 100ms;
    animation-name: autoborde;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}
#boton-td{
    width: 100%;
    position: relative;
    bottom: 20px;
}
@keyframes autoborde{
   50%{
       transform: scale(1.1);
    }
    100%{
        transform: scale(1);
    }
}

#flota {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    position: relative;  
    bottom: 480px;
    justify-content: flex-end;
    margin:0 auto;
}
#flota img{
    width:100%;
    height: auto;
    max-width: 400px;
    margin-right: 6%;
}
#flota2{
    width: 60%;
    max-width: 800PX;
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-35%) translateY(-70%);
    justify-content: center;
 }
#flota2 h2{
    font-size: 50px;
    font-weight: lighter;
    text-align: center;
   }
#flota2  p{
    font-size: 25px;
    font-weight: lighter;
    text-align: center;   
}
#flota3{
    width: 60%;
    max-width: 800PX;
    position: absolute;
    top: 30%;
    left: 50%;
    justify-content: center;
 }
#flota3 h2{
    font-size: 24px;
    font-weight: lighter;
    text-align: center;
    letter-spacing: 4pt;
    color:#fff;
}
#flota4{
    width: 60%;
    max-width: 800PX;
    position: absolute;
    top: 30%;
    left: 60%;
    justify-content: center;
    background:rgba(0,0,0,.3);
    padding:20px;
}
#flota4 h2{
    font-size: 24px;
    font-weight: lighter;
    text-align: center;
    letter-spacing: 6pt;
    color:#fff;
}
.container-all{
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 6px;
    overflow: hidden;
}
.container-all img{
    width: 1920px;
    height: auto;
    overflow: hidden;
}
.slide{
    display: flex;
    transform: translate3d(0, 0, 0);
    transition: all 600ms;
    animation-name: autoplay;
    animation-duration: 16s;
    animation-direction: alternate;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
}
.item-slide{
    position: relative;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    flex-grow: 0;
    max-width: 100%;
}
.pagination{
    position: relative;
    bottom: 460px;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.pagination-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid white;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 10px;
    text-align: center;
    transition: all 300ms;
}
.pagination-item:hover{
    transform: scale(2);
}
.pagination-item img{
    display: inline-block;
    max-width: none;
    height: 100%;
    transform: scale(1);
    opacity: 0;
    transition: all 300ms;
}
.pagination-item:hover img{
    opacity: 1;
    transform: scale(1);
}
input[id="1"]:checked ~ .slide{
    animation: none;
    transform: translate3d(0, 0, 0);
}
input[id="1"]:checked ~ .pagination .pagination-item[for="1"]{
    background: #fff;
}
input[id="2"]:checked ~ .slide{
    animation: none;
    transform: translate3d(calc(-100% * 1), 0, 0);
}
input[id="2"]:checked ~ .pagination .pagination-item[for="2"]{
    background: #fff;
}
input[id="3"]:checked ~ .slide{
    animation: none;
    transform: translate3d(calc(-100% * 2), 0, 0);
}
input[id="3"]:checked ~ .pagination .pagination-item[for="3"]{
    background: #fff;
}
input[id="4"]:checked ~ .slide{
    animation: none;
    transform: translate3d(calc(-100% * 3), 0, 0);
}
input[id="4"]:checked ~ .pagination .pagination-item[for="4"]{
    background: #fff;
}
@keyframes autoplay{
       8.33% {
        transform: translate3d(calc(-100% * 0), 0, 0);
      }
      25% {
        transform: translate3d(calc(-100% * 0), 0, 0);
      }
      33.33% {
        transform: translate3d(calc(-100% * 1), 0, 0);
      }
      50% {
        transform: translate3d(calc(-100% * 1), 0, 0);
      }
      58.33% {
        transform: translate3d(calc(-100% * 2), 0, 0);
      }
      75% {
        transform: translate3d(calc(-100% * 2), 0, 0);
      }
      83.33% {
        transform: translate3d(calc(-100% * 3), 0, 0);
      }
      100% {
        transform: translate3d(calc(-100% * 3), 0, 0);
      }
}
#blog {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}
#nos{
    background: #333;
}
#tet1{
    position: absolute;
    top:700px;
    left: 0;
 }
#tet2{
   position: absolute;
   top:700px;
   right: 0;
}
#tet1 img{
 width: 100%;
 max-width: 300px;
}
#tet2 img{
    width: 100%;
    max-width: 85px;
}
#text {
    width: 80%;
    margin: 50px 14%;
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
}
#text img{
    width: 100%;
    max-width: 400px;
}
#text article{
    max-width: 400px;
    font-size: 15px;
    font-weight: lighter;
    letter-spacing: 4pt;
    text-align: justify;
    color:#fff;
    margin: 30px;
    padding: 20px;
}
#art1 p{
    margin-bottom: 70px;
}
#art2 p{
    margin-bottom: 55px;
}
#art3 p{
    margin-bottom: 40px;
}
#nosotros-titulo{
    width: 80%;
    margin: 0 auto;
    position: absolute;
    top: 700px;
    left: 18%;
    display:flex;
    color:#fff;
    justify-content: center;
}
#nosotros-titulo h1{
    font-size: 20px;
    font-weight: lighter;
    letter-spacing: 6pt;
}
#blog h5{
    font-size: 25px;
    text-align: center;
    padding: 50px;
    margin: 0 auto;
}
#tecno{
    flex-basis: 65%;
    display: flex;
}
#tecno img {
    margin: 0 auto;
    padding: 45px;
}
#redes img{
    margin: 0 auto;
    padding: 45px 25px;
}
#redes{
    flex-basis: 35%;
    display: flex;
}
form {
    width: 90%;
    max-width: 800px;
    margin:auto;
    padding: 10px 20px;
    box-sizing: border-box;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius:7px; 
    border-color:#bbb; 
    border-width: 3px;
}
form h1{
    margin:0;
    font-size: 25px;
    text-align: center;
    margin-bottom: 15px;
}
form input{
    width: 100%;
    margin-bottom: 15px;
    padding: 7px;
    box-sizing: border-box;
    font-size: 15px; 
}
form textarea{
    min-height: 100px;
    max-height: 200px;
    width: 100%;
    margin-bottom: 15px;
    padding: 7px;
    box-sizing: border-box;
    font-size: 15px;
    }
#boton{
    background: #FAA831;
    color:#fff;
    font-weight: bold;
    padding: 10px;
    border-radius: 10px;
    border:0px;
}
#boton:hover{
    cursor: pointer;
}

/*---------Footer-----------*/

footer .contenedor{
    width: 100%;
    margin: 0 auto;
    color:#fff;
    z-index: 100;
    text-align: center;
    line-height: 20px;
    padding: 15px; 
}
footer p{
    font-size: 10px;
}
footer h2{
     font-size: 12px;
     font-weight: lighter;
     margin-bottom: 15px;
}


/*--------- RESPONSIVE -----------*/
@media (max-width:1575px){
#flota2{
     transform: translateX(-10%) translateY(-70%);
}
#flota4{
    left: 50%;
}
#text article{
    max-width: 300px;
    letter-spacing: 3pt;
  
}
#art1 p{
    margin-bottom: 70px;
}
#art2 p{
    margin-bottom: 70px;
}
#art3 p{
    margin-bottom: 40px;
}
}

@media (max-width:1441px){
#text article{
    max-width: 280;
    font-size: 14px;
    margin: 25px;
}
#text img {
 max-width: 280px;
}
#text {
    width: 90%;
    margin: 50px 12%;
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
}
#nosotros-titulo{
    left:20%;
}
#nosotros-titulo h1{
 font-size: 18px;
}
#tecno{
     justify-content: center;
}
#redes{
    justify-content: center;
}
#boton-td{
    Bottom: 20px;
}
#blog {
    bottom: 0px;
}
#flota {
    bottom: 540px;
 }
 .pagination{
         bottom:520px;
 }
}
@media (max-width:1024px){
#text {
    transform: translateX(0%) translateY(5%);
}
#nosotros-titulo{
    width: 60%;
    left:35%;
}
#flota2{
     width: 50%;
     top:45%;
     transform: translateX(0%) translateY(10%);
}
#flota2 h2{
    font-size: 30px;
}
#flota2  p{
    font-size: 15px;
}
#flota3{
    width: 80%;
    top: 30%;
    left: 40%;
}
#flota3 h2{
    font-size: 22px;
}
#flota4{
    width: 60%;
    top: 30%;
    left: 40%;
}
#flota4 h2{
    font-size: 22px;
}
#blog{
    flex-direction: column-reverse;
}
#tecno{
    width: 100%;
    justify-content: center;
}
#redes{
    width: 100%;
    justify-content: center;
}
#flota {
    bottom: 450px;
} 
#flota img{
    max-width: 300px;   
}
.pagination{
    bottom: 380px;
} 
}
@media (max-width:768px){
#nosotros-titulo{
        width: 50%;
        left:40%;
    }
#flota{
     bottom: 420px;
}
#flota2{
    transform: translateX(-100%) translateY(100%);
}
#flota3{
    top: 50%;
    left: 20%;
}
#flota4{
    width: 80%;
    left: 22%;
}
#flota img{
    max-width: 280px;
    margin: 0 auto;
}
#boton-td img{
    width: 50%;
    z-index: 100;
}
#boton-td{
    left:0;
    bottom: 15px;
    margin: 0 auto;
    text-align: center;
}
#redes{
    justify-content: center;
}
header{
    height: 50px;
    justify-content: center;
}
.menu ul{
    justify-content: center;
}
.menu ul li a{
    display: block;
    padding: 14px 30px;
    margin:2px;
    border-radius: 10px;
    border:2px solid #fff;
    background: rgba(0,0,0,.3);
}
.menu ul li:hover{
    cursor: pointer;
    border-radius: 10px;
    background:  rgba(0,0,0,.5);
}
.menu{
    width: 100%;
    justify-content: end;
}
.pagination{
    bottom: 330px;
}
}
@media (max-width:700px){
#flota{
         flex-direction: column-reverse;
         bottom: 580px;
}
#flota img{
        max-width: 260px;
}
#flota2{
    width: 80%;
    transform: translateX(-50%) translateY(-250%);
    background: rgba(255, 255, 255, 0.5);
}
#flota3{
    top: 40%;
    left: 10%;
}
#flota4{
    width: 90%;
    left: 16%;
}
#boton-td img{
        width: 85%;
        z-index: 200;
        margin: 0 auto;
}
#boton-td{
     bottom: 60px;
}
.pagination{
   bottom: 570px;
}
.container-all{
        height: 650px;
} 
#tecno img{
    padding: 15px;
}
}
@media (max-width:426px){
#nos{
    height: 2500px;
}
#text {
    margin: 50px auto;
    transform: translateX(0%) translateY(25%);
}
#nosotros-titulo{
width: 60%;
top:850px;
left:25%;
}

#flota2{
 width: 96%;
 position: absolute; 
 top: -10%;
 left: 50%;
 transform: translateX(-50%) translateY(-70%);
 color: #fff;
 border: 1px solid;
 border-radius: 10px;
 padding: 5px;
 background:none;
}
#flota2 h2{
    font-size: 22px;
}
#flota2 p{
    font-size: 12px; 

}
#flota3{
    width: 96%;
    top: -15%;
    left: 2%;
    border: 1px solid;
    border-radius: 10px;
    color: #fff;
    padding: 15px;
}
#flota3 h2{
    font-size: 15px;
}
#flota4{
    width: 96%;
    top: -15%;
    left: 2%;
    background: none;
    border: 1px solid;
    border-radius: 10px;
    color:#fff;
    padding: 15px;
}
#flota4 h2{
    font-size: 15px;
    letter-spacing: 2pt;
}
#redes img{
        margin: 0 auto;
        padding: 25px;
        }
header {
   justify-content: flex-end;
}
header label {
    display: block;
    color: #fff;
}
#flota {
    bottom: 480px;
}
#flota img{
     z-index: 100;
}
#flota .uno{
    width: 200px;
    margin: 0 auto;
}
.pagination{
    bottom: 270px;
 }
#boton-td{
    bottom: -20px;
    margin-bottom: 45px;
}
.container-all{
    height: 530px;
    background: #333;
}
.container-all img{
    width: 1000px;
}
.slide{
    position: relative;
    top:220px;
}
.menu{
    position: absolute;
    top: 50px;
    right: 0px;
    background: rgba(0,0,0,.5);
    width: 100%;
    margin-right: -100%;
}
.menu ul {
    flex-direction: column;
}
.menu ul li a{
    font-size:22px;
    border: none;
    background: none;
}
.menu li{
    border-top: 1px solid rgb(233, 154, 51);
}
#bt-menu:checked ~ .menu {
    transition: all 0.5s;
    margin-right: 0px;
}
footer .contenedor{
    width: 90%;
    height: 100px;
}
footer h2{
    font-size: 14px;
    margin-bottom: 12px;
}
}
@media (max-width:375px){
#flota .uno{
     width: 180px;
}
.pagination{
     bottom: 250px;
}
}
