@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --white: #e2e8f0;
    --grey: #94a3b88e;
    --blue: #47494e59;
    --lightblue: #041329;
    --lightblue-2: #041329;
}

/* 
    --blue: #090d1759;
    --lightblue: #1d2531;
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: var(--lightblue);
    padding: 3rem 0;
    gap: 2.5rem;
    font-family: 'Poppins', sans-serif;
}

img {
    height: 100%;
    width: 100%;
}

.img {
    height: 150px;
    width: 150px;
    overflow: hidden;
    border-radius: 50%;
    border: 3px solid var(--white);
    margin-bottom: 1rem;
}

.news {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0px 20px;
    box-sizing: border-box;
}

.news a {
    display: block;
    width: 100%;
    max-width: 420px;
    text-decoration: none;
}

.news img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
    border-radius: 20px;
    box-shadow: 0 4px 40px rgba(44, 44, 44, 0.1);
}

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

.icon .name {
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--white);
}

.icon .sub {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--grey);
    display: flex;
    align-items: center;
    text-align: center;
    gap: 5px;
}

.icon .sub {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--grey);
    display: flex;
    align-items: center;
    gap: 5px;
}

.icon .sub-awards {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--grey);
    display: flex;
    align-items: center;
    gap: 5px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 448px;
}

.links-btn {
    display: flex;
    align-items: center;
    text-align: center;
    gap: 1rem;
    width: 100%;
}

.awards-video {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;    
    width: 100%;
    padding: 0 25px;
    gap: 10px;
    box-sizing: border-box;
}

.awards-video img {
    flex: 1;
    min-width: 0;
    max-width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;

    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.awards-video img:hover {
    transform: scale(1.1);
    cursor: pointer;
}

.item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color: var(--blue);
    padding: 10px;
    border-radius: 1.0rem;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    transition: .3s;
}

.item:hover {
    transform: scale(1.1);
}

.item-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.item-wrap div {
    padding: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--lightblue);
    border-radius: 0.7rem;
}

.footer h4 {
    align-items: center;
    text-align: center;
    color: var(--grey);
    font-weight: 600;
}

.footer h5 {
    align-items: center;
    text-align: center;
    color: var(--grey);
    font-weight: 400;
}

.map {
    width: 90%px;
    height: 268px;
    border-radius: 10px;
}

@media (width <= 468px) {
    .links, .hero {
        width: 100%;
        padding: 0 1rem;
    }
}