body {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
}
.about {
    display: flex;
    min-height: 350px;
    padding: 30px;
    background-color: #392214;
    flex-direction: column;
    justify-content: center;
    padding-top: 120px;
    padding-bottom: 50px;
}
.about-container {
    display: flex;
    align-item: center;
    border-top: 1px solid gray;
    justify-content: space-between;
    padding-left: 50px;
    padding-right: 50px;
}
.about-container > .column1 {
    width: 65%;
    display: flex;
    justify-content: space-between;
}
.about-container .text {
    color: white;
    margin-top: 20px;
    width: 520px;
}
.about img {
    margin-top: -80px;
    width: 200px;
    height: 200px;
    background-color: white;
    border-radius: 50%;
}
.about-img {
    display: flex;
    flex-direction: column;
}
.about-img div {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
}
.about-img img {
    object-fit: cover;
}
.about-img span {
    margin-top: 10px;
    color: white;
}
.projects {
    min-height: 550px;
    background-color: #f7f6f1;
    display: flex;
    flex-direction: column;
}
.projects > div {
    margin-top: 20px;
    padding-left: 120px;
    padding-right: 120px;
}
.project-item .project-images {
    display: flex;
}
.project-item img {
    object-fit: cover;
    width: 300px;
    width: 100%;
    display: block;
    border-radius: 8px;
}
.project-item > .project-images div {
    margin-right: 20px;
    display: flex;
}
.project-item > .project-images div:last-child {
    margin-right: 0;
}
.circle-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #603a22;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}

.circle-button:hover {
    background-color: #555;
}

.arrow {
    border: solid white;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 10px;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

/* .circle-button:hover .arrow { */
/* transform: rotate(-45deg) translate(5px, -2px); */
/* } */

.view-more {
    color: #392214;
    margin-top: 12px;
    font-size: 20px;
    font-weight: bold;
}
.ind-about {
    box-sizing: border-box;
    width: 100%;
    min-height: 350px;
    padding: 30px;
    background-color: #392214;
    align-items: center;
    display: flex;
    justify-content: space-between;
}
.ind-about a {
    color: white;
    font-size: 18px;
}
.ind-about .container-about {
    color: white;
    font-size: 20px;
    width: 50%;
}
.ind-about p {
    color: white;
    font-size: 24px;
    display: flex;
    justify-content: space-between;
}

.ind-about h1 {
    padding-left: 10%;
}

.ind-about .about-text {
    padding-left: 10%;
    width: 100%;
}
.ind-about .params {
    padding-right: 5%;
    width: 35%;
    margin-top: 80px;
}
.project-heading {
    color: white;
}
.final-results {
    background-color: #f7f6f1;
    padding-top: 50px;
    margin-bottom: 20px;
}

.final-images {
    padding-left: 20px;
    padding-right: 20px;
}
.final-images > div {
    display: flex;
    margin-top: 30px;
    justify-content: space-around;
}
.final-images img {
    width: 49%;
}
.more-button {
    display: flex;
    flex-direction: columns;
    align-items: center;
    justify-content: center;
}

footer {
    background-color: #392214;
    text-align: center;
    padding: 8px;
    color: white;
}

@media only screen and (max-width: 1300px) {
    .project-item .project-images .last {
        display: none;
    }
    .about-container {
        flex-direction: column;
        align-items: center;
    }
    .about-container > .column1 {
        width: 90%;
    }
    .about-container > .column2 {
        width: 90%;
        text-align: left;
    }
    .about img {
        margin-top: 0px;
    }
    .about .text {
        margin-left: 20px;
    }
    .about-container {
        border-top: 0;
    }
    .about {
        padding-top: 30px;
    }
}

@media only screen and (max-width: 920px) {
    .project-item .project-images .last {
        display: block;
    }
    .project-item .project-images {
        display: block;
    }
    .project-item .project-images div {
        margin-top: 20px;
    }
    .about-container > .column1 {
        flex-direction: column;
        text-align: center;
    }
    .about-container {
        border-top: 0;
    }
    .about-container > .column1 .text {
        text-align: center;
        width: auto;
        margin-left: 0;
    }
    .about-container > .column1 .about-img img {
        margin-top: 0;
    }
    .about-container > .column1 .about-img {
        margin-top: 0;
        align-items: center;
    }
    .about-container > .column2 {
        text-align: center;
    }
}

@media only screen and (max-width: 920px) {
    .final-images img {
        width: 98%;
    }
    .ind-about {
        flex-direction: column;
        justify-content: center;
    }
    .ind-about .container-about {
        width: 80%;
    }
    .ind-about .about-text {
        padding-left: 0;
    }
    .ind-about h1 {
        padding-left: 0;
    }
    .ind-about .params {
        padding-right: 0;
        width: 80%;
    }

    .final-images > div {
        flex-direction: column;
        align-items: center;
    }
    .final-images > div img {
        margin-top: 20px;
    }
}
@media only screen and (max-width: 600px) {
    .projects > div {
        padding-left: 45px;
        padding-right: 45px;
    }
    .project-item h2 {
        font-size: 18px;
    }
    .ind-about p {
        font-size: 18px;
    }
    .ind-about span:last-child {
        text-align: right;
    }
    .ind-about h1 {
        font-size: 22px;
    }
    .ind-about .about-text {
        font-size: 18px;
    }
}
