ul {
    list-style-type: disc;
    margin-left: 30px;
  }
ul ul {
    list-style-type: circle;
    margin-left: 60px;
}

hr {
    height: 5px;            
    background-color: rgba(0,0,0,0.4);      
    border: none;                
    width: 90%;
    margin: auto;
    border-radius: 10px;
}

.info .container {
    width: 85%;
    height: auto;
    margin: auto;
    display: flex;
    gap: 5%;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.info .container .content {
    flex: 3;
}

.info .container .content .title {
    font-size: 40px;
    padding: 0 0 15px 0;
    font-weight: 800;
}

.info .container .content .text {
    font-size: 25px;
    text-align: justify;
}

.info .container .content .text p {
    padding: 0 0 20px 0;
}

.info .container .content .text p span {
    font-weight: 800;
}

.info .container .image {
    width: 100%;
    flex: 1;
}

.info .container .image img {
    width: 80%;
    height: auto;
}

#elephant img {
    width: 100%;
}

@media only screen and (max-width: 1300px) {
    .info {
        padding-bottom: 30px;
    }
    .info .container {
        width: 90%;
        flex-direction: column;
        margin: auto;
    }
    .info .container .image {
        margin-top: 30px;
        width: 35%;
        flex: 1;
        display: none;
    }
    .info .container .content .title {
        font-size: 30px;
        padding: 0 0 15px 0;
        font-weight: 800;
    }
    .info .container .content .text {
        font-size: 15px;
    }
}