/* ===== Hero Section ===== */

body {
    display: flex;
    flex-direction: column;
}

.header {
    background-color: white;
}

.hero {
    background-color: rgb(250, 248, 246);
    margin-top: 80px;
    margin-bottom: 100px;
    margin-inline: 200px;
    border-radius: 30px;
    padding-inline: 100px;
}

.hero-head {
    padding-top: 20px;
    padding-bottom: 30px;
}

.back-nav {
    font-size: 20px;
}

.hero-head-title {
    font-size: 40px;
    font-weight: bold;
}

.hero-main {}

.project-img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 30px;
}

.hero-content {
    margin-top: 40px;
    display: flex;
    width: 100%;
    padding: 20px;
    justify-content: space-between;
}

.hero-left {
    width: 600px;
    font-size: 22.5px;
}

.hero-right {}

.card {
    background-color: rgba(196, 179, 169, 0.01);
    display: flex;
    width: 500px;
    padding: 15px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid rgb(60, 46, 37, 0.1);
}

.card-left {
    background-color: rgba(39, 30, 24, 0.055);
    border-radius: 10px;
    margin-right: 20px;
}

.card-icon {
    height: 25px;
    margin: 10px;
}

.card-right {}

.card-right-head {
    font-size: 13px;
}

.card-right-body {
    font-size: 17px;
    font-weight: bold;
}

.project-gallery-head {
    display: flex;
    justify-content: space-between;
}

.project-gallery-head-left {
    font-size: 22px;
    font-family: 'Arimo', sans-serif;
    font-weight: bold;
}

.project-gallery-head-right {}

.project-gallery-head-slid {
    display: flex;
    align-items: center;
    width: 100px;
    justify-content: space-between;
}

.project-gallery-head-slid-left {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-color: rgb(60, 46, 37, 0.1);
    border-width: 2px;
    border-style: solid;
}

.project-gallery-head-slid-right {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-color: rgb(60, 46, 37, 0.1);
    border-width: 2px;
    border-style: solid;
}

.arrow-left {
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-right {
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-gallery-images {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgb(60, 46, 37, 0.1);
}

.gallery-image {
    width: 400px;
    border-radius: 20px;
}

.project-gallery-content {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;

}

.gallery-content {
    width: 500px;
}

.gallery-content-head {
    font-size: 17px;
    color: rgb(60, 46, 37, 0.4);
    font-weight: bold;
}

.gallery-content-body {
    margin-right: 10px;
    margin-top: 15px;
    font-size: 15px;
    font-weight: 400;
    color: rgb(60, 46, 37, 0.8);
}

.content-body-point {
    margin-left: 50px;
}

.project-user {
    background-color: white;
    border-radius: 30px;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-block: 40px;
    margin-bottom: 40px;
}

.project-user-header {
    font-size: 28px;
    font-weight: bold;
    color: rgb(60, 46, 37);
}

.project-user-body {
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    width: 400px;
    color: rgb(60, 46, 37, 0.8);
}

.project-user-button {
    font-size: 15px;
    font-weight: 400;
    background-color: rgb(60, 46, 37, 0.8);
    color: white;
    padding: 15px;
    border-radius: 50px;
    border: none;
    margin-top: 30px;
    padding-inline: 40px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}