body{
    overflow-x: hidden;
    
}

.about{
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 900px;
    margin-top: -50px;
}
.about .title-about-main {
    font-size: 60px;
    font-weight: 800;   
}

.about .table{
    box-sizing: border-box;
    margin: auto;
    
    display: flex;
    align-content: center;
    justify-content: center;
}
.about .photo{

}
.about .photo .background{
    margin-left: 50px;
    float: left;
    width: 100%;
    max-width: 500px;
    height: 100%;
    background-image: url(../../assets/rachel%20photo%20for%20website/bossit-plicosh.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 40px;
}

.about header{
    text-align: center;
    margin-bottom: 20px;
}
.about header .tiny-line{
    display: block;
    margin: auto;
    width: 200px;
    height: 2px;
    border-radius: 50%;
    background-color: #000;
    margin-top: -20px;
    margin-bottom: 50px;
}
.about .table {
  height: auto;
  float: left;
  width: 50%;
}
.about .photo{
    height: 700px;
  float: left;
  width: 50%;
    
    
}
.about .table .table-content{
    width:  100%;
    height: auto;
    margin: auto;
    padding: 0px 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    
}
.about .table .card-of-about{
    width: 45%;
    max-width: 250px;
    float: left;
    margin: 2%;
    height: 200px;
    border-radius: 20px;
    box-shadow: 0px 30px 40px -20px hsl(229, 6%, 66%);
    
    box-sizing: border-box;
    padding: 10px 15px;
    
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-direction: column;
    
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.about .table .card-of-about h3{
    color: hsl(234, 12%, 34%);
    font-weight: 900;
    font-size: 24px;
}
.about .table .card-of-about p{
    color: hsl(229, 6%, 66%);
    font-size: 20px;
}
.about .table .card-of-about p span{
    
}

/* On screens that are 992px wide or less, go from four columns to two columns */
@media screen and (max-width: 800px) {
  .about .table {
      width: 100%;
      min-height: 400px;
  }
    .about .table .table-content{
        justify-content: center;
    }
    .about .photo{
        width: 100%;
        min-height: 400px;
        display: flex;
        justify-content: center;
    }
    .about .photo img{
        float: none;
        margin: auto;
        
    }
    .about .photo .background{
        margin:  35px 15px;
    }  
}

@media screen and (max-width: 500px) {

    .about .table .card-of-about{
        width: 100%;
    }
}


