body{
    background-image: repeating-radial-gradient(#e2d4c6d7 80%, hsl(25, 11%, 61%) 90%, #a79c92 90%);
    background-size: 65px 65px;
}
.body-about-us {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height:auto;
    margin: 0;
}
.about-us {
    background-color: #a18d81;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 10px;
    height: auto;
    width: 1100px;
    margin: auto;
    margin-top: 50px;
    margin-bottom: 50px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25),
        0 10px 10px rgba(0, 0, 0, 0.22);
    border-radius: 20px;
    max-width: 100%;
}
.about-title {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25),
        0 10px 10px rgba(0, 0, 0, 0.22);
    text-align: center;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    height: 100px;
    width: 600px;
    background: linear-gradient(135deg, rgb(255, 222, 59) 0%, rgb(255, 128, 0) 100%);
    max-width: 85%;
    position: relative;
    border-radius: 5px;
}
.contact {
    margin-top: auto;
    margin-bottom: auto;
    font-weight: bolder;
}
.contact h1{
    display: flex;
    align-items: center;
    font-size: 30px;
}
.contact h1 img{
    margin: 0 10px;
}

.slider-about-us {
    display: flex;
    align-items: center;
    cursor: grab;
    user-select: none;
    width: 90%;
    overflow-x: auto;
    scroll-behavior: smooth;
    justify-content: center;
    margin-bottom: 20px;
    /* height: 50%; */
    /* background-color: #a18d81; */
    border-radius: 30%;
    /* margin: 100px 0; */
}

.circle {
    width: 150px;
    height: 170px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    transition: transform 0.5s, filter 0.5s;
    cursor: pointer;
    overflow: hidden;
}

.circle .about {
    display: none;
    position: absolute;
    bottom: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 10px;
    color: white;
    height: 100%;
}

.left-circle {
    transform: translateX(-190px) scale(0.8);
    filter: blur(10px);
    z-index: 0;
}

.middle-circle {
    transform: translateX(0) scale(1.2);
    z-index: 1;
}

.right-circle {
    transform: translateX(190px) scale(0.8);
    filter: blur(10px);
    z-index: 0;
}

.button-container-about {
    position: absolute;
    display: flex;
    justify-content: space-between;
    width: 700px;
}

.button-container-about .about-btn {
    /* background: linear-gradient(135deg, rgb(255, 222, 59) 0%, rgb(255, 128, 0) 100%); */
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.flesh {
    font-size: 40px;
}

.circle .about-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.rectangle {
    position: relative;
    width: 670px;
    height: 400PX;
    background-color: #c2b5ac;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    transition: background-color 0.5s;
    overflow: hidden;
    padding: 35px;
    box-sizing: border-box;
    animation: scale 3s ease-in-out forwards;
    margin-top: 150px;
    margin-bottom:50px;
    border-radius: 5px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25),
    0 10px 10px rgba(0, 0, 0, 0.22);
}
.about-title{
    margin-bottom: 150px;
}
.about-anim {
    width: 300px;
    height: 300px;
}
.about-dis {
    display: flex;
    height: auto;
}
.about-secondary{
    display: none;
}

.job-icon {
    display: flex;
    position: relative;
    font-size: 80px;
    animation: fadeIn 2s ease-in-out;
}
.job-icon1 {
    position: relative;
    display: flex;
    font-size: 80px;
    justify-content: space-between;
    animation: fadeIn 2s ease-in-out;
}
.job-icon img{
    margin: 0 20px;
}
.about-name{
display: flex;
justify-content: center;
}
h3.name{
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
}
p.about-inf{
    font-size: 20px;
    line-height: 40px;
    text-align: justify;
}
.static-content {
    position: absolute;
    top: 10px;
    right: 10px;
    color: black;
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
}

.dynamic-content {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    animation: fadeInUp 0.5s ease-in-out forwards;
    display: inline-block;
    height: 100%;
    align-content: center;
}

.rectangle-below {
    position: relative;
    background-color:transparent;
    margin-bottom: 50px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scale {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}
@media (max-width:1500px) {
    .about-title {
        width: 470px;
    }
    .rectangle{
        width: 680px;
    }
    .about-us{
        width: 830px;
    }

}
@media (max-width:900px) {
    .about-title {
        width: 470px;
    }
    .rectangle{
        width: 620px;
    }
    .about-us{
        width: 730px;
    }

}
@media (max-width:800px) {
    .about-title {
        width: 450px;
    }
    .rectangle{
        width: 590px;
    }
    .about-us{
        width: 710px;
    }

}
@media (max-width:700px) {
    .about-title {
        width: 400px;
    }
    .left-circle {
        transform: translateX(0px) scale(0.8);
    }
    .right-circle{
        transform: translateX(0px) scale(0.8);
    }
    .button-container-about{
        width: 360px;
    }
    .rectangle{
        width: 430px;
        height: auto;
    }
    .about-us{
        width: 520px;
    }
    p.about-inf{
        font-size: 18px;
    }

}
@media (max-width:600px) {
    .about-title {
        width: 400px;
    }
    .left-circle {
        transform: translateX(0px) scale(0.8);
    }
    .right-circle{
        transform: translateX(0px) scale(0.8);
    }
    .button-container-about{
        width: 360px;
    }
    .rectangle{
        width: 390px;
    }
    .about-us{
        width: 450px;
    }
    p.about-inf{
        font-size: 15px;
    }
}
@media (max-width:500px) {
    .about-title {
        width: 400px;
    }
    .left-circle {
        transform: translateX(0px) scale(0.8);
    }
    .right-circle{
        transform: translateX(0px) scale(0.8);
    }
    .button-container-about{
        width: 360px;
    }
    .rectangle{
        width: 350px;
    }
    .about-us{
        width: 380px;
    }
    p.about-inf{
        font-size: 11px;
    }
}
@media (max-width:400px) {
    .about-title {
        width: 300px;
    }
    .left-circle {
        transform: translateX(0px) scale(0.8);
    }
    .right-circle{
        transform: translateX(0px) scale(0.8);
    }
    .button-container-about{
        width: 320px;
    }
    .rectangle{
        width: 295px;
    }
    .body-about-us{
        width: 370px;
    }
    .about-us{
        width: 350px;
    }
    .about-inf{
        font-size: 11px;
    }

}
@media (max-width:360px) {
    .about-title {
        width: 300px;
    }
    .left-circle {
        transform: translateX(0px) scale(0.8);
    }
    .right-circle{
        transform: translateX(0px) scale(0.8);
    }
    .button-container-about{
        width: 320px;
    }
    .rectangle{
        width: 280px;
    }
    .body-about-us{
        width: 300px;
    }
    .about-us{
        width: 330px;
    }
    .about-inf{
        font-size: 10px;
    }

}