*{
    padding: 0;
    margin: 0;

}

@font-face {
    font-family: "Bookman Old Style"; 
    src: url("./fonts/Bookman Old Style.ttf") format("truetype"); 
    font-style: normal; 
    font-weight: normal; 
  } 

body{
    font-family: "Bookman Old Style"; 
    color: #b1a296;
    font-size: 16px;
    background-color: #1d1d1d;
}

h3{
    padding: 40px 0;
    font-size: 25px;
    font-weight: bold;
}

p{
    font-size: 18px;
}

a{
    font-size: 20px;
    color: #FDCC94;
    margin-right: 10px;
    transition: color 0.3s ease-in-out;
}


a:hover{color: #fff;
    
}

p a {
    margin-right: 0;
}

li{
    list-style-type: none;

}

.download{
    
    border: 1px solid #fdcc94;
    outline: none;
    background-color: #fdcc94;
    color: #1d1d1d;
    text-decoration: none;
    text-transform: uppercase;
    padding: 14px 7px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    margin: 20px 0 40px;
    display: inline-block;
    font-size: 14px;
}

.download:hover{
    color: #fdcc94;
    background-color: transparent;
}

.link_list{
    display: flex;
    column-gap: 8px;
 
    

    }


    .link_list a {
        color: #fdcc94;    
        font-size: 16px;
        transition:  color 0.3s ease-in-out;
    }
    .link_list a:hover{
       color:#fff; 
    }
 
.main{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;

    height: 100%;
    margin-top: 40px;

}

.info_text{
    margin: auto;
    vertical-align: middle;
    padding-left: 100px;
    max-width: 50%;
    margin-right: 50px;
}

.info_foto{
    width: 50%;    
    margin: auto;
    vertical-align: middle;
    transform: scaleX(-1);
}

.info_foto img{

    width: 100%;
    height: auto;
    filter: grayscale(1);
}

.lang{
    display: flex;
}

.lang div {
    display: block;
    text-align: center;
    cursor: pointer;
    margin-left: 10px;
}



.lang_social{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 0;
}

.lang img{
    max-width: 30px;
    max-height: 30px;
    transition: transform 0.3s ease-in-out;
}

.active{
    transform: scale(1.2);
}

.lang img:hover{
    transform: scale(1.2);
}
    
.link_list{
    padding: 10px 0;
}

/*Icons*/


.fa{
    color: #fff;    
    font-size: 30px !important;
    transition: color 0.3s ease-in-out;
}

.fa-tumblr-square:hover{
    color: #50C878;    
}



.fa-instagram:hover{
    color: fuchsia;    

}
.fa-linkedin-square:hover{
    color: #007AB8;
}

.fa-telegram:hover{
    color: #29b6f6;
}

.fa-facebook-square:hover{
    color: #3b5998;
}

/* tabs*/

.tabs__item:not(._active) {
    display: none;
  }

  .tabs__item {
    /* height: 600px; */
    /* overflow-y: hidden; */
  }

  .tabs__item p {
    margin-bottom: 30px;
  }

.copy{
    color: #fff;
    background-color: #222;
    font-size: 12px;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
}

  /*media*/

  @media (max-width: 1300px) {
    .info_foto img {
        width: 100%;
    }

    h3{
        padding-top: 0px;
    }

    
    .tabs__item {
        height: auto;
        overflow-y: none;
      }

  }

  @media (max-width: 900px) {
    .main{
        height: auto;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }

    .info_foto, .info_text{
        text-align: center;
       
        padding: 0 15px;
    }

         .info_text {
            
            margin: auto;
            margin-top: 30px;
            vertical-align: middle;
            padding-left: 10px;
            padding-right: 10px;
            max-width: 100%;
        
    }

    .info_foto img{
        width: 100%;
    }

    .lang_social{
        justify-content: space-around;
    }

    .link_list{
        justify-content: center;
        padding-bottom: 30px;
    }

    .tabs__item {
        height: auto;
        overflow-y: none;
      }
  
}

@media (max-width: 600px) {
    .link_list{
        flex-direction: column;
        row-gap: 10px;
    }
}

@media (max-width: 400px) {
    .lang_social{
        flex-direction: column-reverse;
    }

    .social{
        margin-bottom: 20px;
    }

    .lang div{
        margin: 0 10px;
    }
}