html,
body {
    overflow-x: hidden;
}

.intro {
    padding: 6rem 0;
}

.intro .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.intro h2 {
    margin-bottom: 3rem;
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 700;
    color: inherit;
}

.intro .content {
    display: flex;
    align-items: center;
}

.intro p {
    flex: 3;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: justify;
    color: #000;
}

.intro a {
    color: inherit;
    transition: color 0.3s;
}

.intro a:hover {
    color: inherit;
}

.intro .image {
    flex: 2;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-left: 3rem;
}

.intro .image img {
    display: block;
    width: 100%;
    height: auto;
}

.divide-line {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 1.5rem;
    margin-bottom: 6rem;
    padding: 0 1rem;
}

.divide-line > * {
    margin-right: 4rem;
}

.divide-line > *:last-child {
    margin-right: 0;
}

.divide-line .earth {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 160px;
}

.divide-line .earth img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.divide-line .line {
    flex: 1;
    height: 2px;
    background-color: #000;
}

.divide-line .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 280px;
    height: 140px;
}

.divide-line .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.areas {
    padding: 6rem 0;
}

.areas h2 {
    margin-bottom: 3rem;
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: inherit;
}

.areas .list {
    display: flex;
    flex-direction: column;
}

.areas .list > .item {
    margin-bottom: 6rem;
}

.areas .list > .item:last-child {
    margin-bottom: 0;
}

.areas .content {
    display: flex;
    align-items: center;
}

.areas .item:nth-child(odd) .content {
    flex-direction: row;
}

.areas .item:nth-child(odd) .content > * {
    margin-right: 3rem;
}

.areas .item:nth-child(even) .content {
    flex-direction: row-reverse;
}

.areas .item:nth-child(even) .content > * {
    margin-left: 3rem;
}

.areas .content > *:last-child {
    margin-right: 0;
    margin-left: 0;
}

.areas .content img {
    width: 60%;
    height: auto;
}

.areas .info {
    width: 40%;
    padding: 2rem;
    background-color: rgba(0, 0, 0, .7);
    border-radius: 1rem;
}

.areas .info h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    color: #fff;
}

.areas .info p {
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 100;
    color: #fff;
    text-align: justify;
}

@media (max-width: 1600px) {
    .areas .info {
        width: 40%;
    }
}

@media (max-width: 1200px) {
    .areas .list > .item {
        margin-bottom: 4rem;
    }
    
    .areas .content > * {
        margin-right: 2rem;
    }
    
    .areas .content img {
        width: 55%;
    }
    
    .areas .info {
        width: 45%;
        padding: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .divide-line > * {
        margin-right: 3rem;
    }

    .divide-line .earth {
        width: 120px;
        height: 120px;
    }

    .divide-line .logo {
        width: 200px;
        height: 100px;
    }
    
    .areas .info h3 {
        font-size: 1.3rem;
    }
    
    .areas .info p {
        font-size: 0.9rem;
    }
}

@media (max-width: 900px) {
    .areas .content > * {
        margin-right: 1.5rem;
    }
    
    .areas .info {
        padding: 1.25rem;
    }
    
    .areas .info h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .areas .info p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

@media (max-width: 768px) {
    .intro {
        padding: 4rem 0;
    }

    .intro h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .intro .content {
        flex-direction: column;
    }

    .intro p {
        font-size: 1.125rem;
        line-height: 1.5;
    }

    .intro .image {
        width: 100%;
        max-width: 450px;
        margin-left: 0;
        margin-top: 1.5rem;
    }

    .divide-line > * {
        margin-right: 2rem;
    }

    .divide-line .earth {
        width: 80px;
        height: 80px;
    }

    .divide-line .logo {
        width: 140px;
        height: 70px;
    }

    .areas {
        padding: 3rem 0;
    }

    .areas h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .areas .list > .item {
        margin-bottom: 3rem;
    }

    .areas .content {
        flex-direction: column !important;
    }

    .areas .item:nth-child(odd) .content > *,
    .areas .item:nth-child(even) .content > * {
        margin-left: 0;
        margin-right: 0;
    }

    .areas .content > *:last-child {
        margin-bottom: 0;
    }

    .areas .content img {
        width: 100%;
        max-width: 450px;
    }

    .areas .info {
        width: 100%;
        max-width: 450px;
        border-radius: 0.5rem;
    }
    
    .areas .info h3 {
        font-size: 1.25rem;
    }
    
    .areas .info p {
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .intro {
        padding: 3rem 0;
    }
    
    .intro h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .intro p {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .divide-line > * {
        margin-right: 0.5rem;
    }

    .divide-line .earth {
        width: 30px;
        height: 30px;
    }

    .divide-line .logo {
        width: 50px;
        height: 25px;
    }
    
    .areas {
        padding: 2rem 0;
    }
    
    .areas h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .areas .list > .item {
        margin-bottom: 2rem;
    }
    
    .areas .info {
        padding: 1rem;
    }
    
    .areas .info h3 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
    
    .areas .info p {
        font-size: 0.875rem;
        line-height: 1.3;
    }
}
@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(150px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-150px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.research-item img,
.research-item .info {
    opacity: 0;
    transform: translateX(150px); 
    transition: all 1s ease-out; 
}

.research-item.animate img {
    opacity: 1;
    transform: translateX(0); 
}

.research-item.animate .info {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .research-item img,
    .research-item .info {
        transform: translateY(50px) !important;
    }
    
    .research-item.animate img,
    .research-item.animate .info {
        transform: translateY(0) !important;
    }
}

.awards {
    padding: 6rem 0;
}

.awards h2 {
    margin-bottom: 3rem;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 600;
    line-height: 2.5rem;
    text-align: center;
    color: #000;
}

.awards .list {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.awards .list > * {
    margin-bottom: 2rem;
}

.awards .item {
    display: flex;
    border-bottom: 2px dashed #ccc;
}

.awards .year {
    font-size: 1.25rem;
    line-height: 1.5rem;
    font-weight: 700;
    color: #212121;
    margin-right: 2rem;
}

.awards h3 {
    display: inline;
    margin-right: 0.5rem;
    font-size: 1rem;
    line-height: 1.75rem;
    font-weight: 700;
    color: #212121;
}

.awards p {
    display: block;
    font-size: 1rem;;
    line-height: 1.75rem;
    font-weight: 100;
    color: #212121;
}

@media (max-width: 768px) {
    .awards {
        padding: 3rem 0;
    }

    .awards h2 {
        font-size: 1.25rem;
    }

    .awards .year {
        font-size: 1rem;
        margin-right: 1rem;
    }

    .awards h3 {
        font-size: 0.875rem;
        line-height: 1.5rem;
    }

    .awards p {
        font-size: 0.875rem;
        line-height: 1.5rem;
    }
}


