:root {
    --first-background: rgb(0, 0, 0);
    --second-background: rgb(236, 236, 236);
    --third-background: white;
    --fourth-background: #cea56c;
    --firs-textcolor: #00a99d;
    --second-textcolor: #cea56c;
}

body {
    overflow-x: hidden;
}

.dra-info-about {
    padding-top: 70px;
}

.dra-info-img {
    width: 250px !important;
}

.dra-info-img:hover {
    transform: translate(0px, -5px);
}

.separator {
    width: 100%;
    height: 100px;
}

.up-curve-separator {

    transform: rotate(180deg);
}

.about-item {
    display: flex;
    flex-direction: row;
    justify-content: space-around;

}

.about-item-img img {
    width: 400px;
    border-radius: 20px;
    border: 8px double var(--second-textcolor);
    transition: .5s ease;
}

.about-item-img img:hover {
    transform: translate(0px, -4px);
}

.about-item-text {
    width: 50%;
}

.black-div {
    margin: -2px;
    background-color: var(--first-background);
    color: white;
    flex-direction: row-reverse;
}

footer {
    margin-top: 40px;
}

@media only screen and (max-width: 768px) {
    body,html{
overflow-x: hidden;
    }
    .separator{
        width: 110%;
    }
    .dra-info-img-container{
        display: flex;
        flex-direction:row;
        justify-content: center;


    }
    .dra-info-img{
        width: 45%!important;
    }
    .about-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-item-img {
        width: 80%;
    }
    .about-item-img img{
        width: 100%;
    }
    .about-item-text{
        width: 85%;
        text-align: center;
    }
}