.main_nav{
    background-color: transparent;
}

.main_nav a{
    font-weight: bold;
}

.span_name{
    font-family:'Segoe UI';
    font-size: 20pt;
    font-weight: bold;
}


.bar_1{
    width: 100%;
    height: 0.5em;
    background-color: #9c9c9c;
}

.div_image{
    position: relative;
    overflow-y: hidden;
    overflow-x: hidden;
    width: 100%;
    display: block;
    margin-left: 0;
    margin-right: 0;
}

.div_image img{
    animation-name: slideInFromAbove;
    animation-duration: 3s;
    animation-timing-function:cubic-bezier(0.19, 1, 0.22, 1);
    width: 100%;
}

.img_desc{
   position: absolute;
   top: 5%;
   left: 5%;
   width: 38%;
   padding: 1% 1% 1% 1%;
   background-color: rgba(240, 255, 255, 0.356);
   animation-name: slideInFromLeft;
   animation-duration: 4s;
}

.img_desc p{
    font-size: 16pt;
    font-family:Verdana;
}

.img_desc h6{
    font-size: 18pt;
    font-family:Verdana;
    font-weight: bold;
}

body{
    background-color: white;
}

.card_item img{
    height: 14em;
}

.card_item p{
    text-align: justify;
}

@media (max-width: 600px) { 
    .span_name{
        font-size: 15pt;
    }
    .span_job{
        font-size: 10pt;
    }
    .img_desc h6 {
        font-size: 10pt;
    }
    .img_desc p{
        font-size: 10pt;
    }
    .img_desc{
        width: 80%;
    }
}

@media (max-width: 1200px) and (min-width:600px) { 

    .img_desc h6 {
        font-size: 12pt;
    }
    .img_desc p{
        font-size: 12pt;
    }
    .img_desc{
        width: 50%;
    }
}

.whatsapp{
    position: sticky;
    bottom: 5%;
    padding-top: 10px;
    padding-right: 2%;
    display: flex;
    justify-content: end;
    align-items: center; 
}

.whatsapp a{
    box-shadow: 0px -4px 3px rgb(27 27 24 / 75%);
}

@keyframes slideInFromAbove {
    from {
        transform: translateY(100%);
        opacity: 0;
        }
    to {
        transform: translateY(0);
        opacity: 1;
    }
  }

  @keyframes slideInFromLeft {
    from {
        transform: translateX(100%);
        opacity: 0;
        }
    to {
        transform: translateX(0);
        opacity: 1;
    }
  }