:root {
    --nav-link-color-activate: rgb(48, 66, 84);
    ;
    /* You can change this color */
    --main-color: rgb(243, 238, 234);
    --green-color: rgb(89, 124, 142);
    --white-color: white;
    --pink-color: #FFCBE0;
    --blue-dark: #2F4156;

    --blue-color: #A9DEFF;
}

.arimo {
  font-family: "Arimo", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

#page4_bgr{
    height: 760px;
    width: 100%;
    background-color: var(--main-color);
    position: relative;
}

.certificate {
    position: absolute;
    top: 300px;
    left: 6%;
    width: 40%;
    display: flex;
    justify-content: space-between;
}

.certificate img {
    width: 48%;
    height: auto;
    margin-bottom: 20px;
}

.activity {
    position: absolute;
    left: 55%;
    top: 12%;
    color: black;
    width: 30%;
}

.activity-text {
    margin-bottom: 50px;;
}
.activity-duration {
    font-size: 30px;
    font-weight: 600;
    margin-top: 30px;
}

.activity-company {
    font-size: 25px;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: justify;
}
.activity-job {
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 5px;
    margin-left: 20px;
}

.language {
    position: absolute;
    left: 10%;
    bottom: 10%;
    color: black;
    width: 30%;
}

.language-info {
    font-size: 25px;
    font-weight: 400;
    margin-top: 10px;
}
.language-info > ul {
    margin-left: 25px;
}

.language-info > ul > li {
    /* margin-left: 15px; */
    margin-bottom: 10px;;
}

.hobies {
    position: absolute;
    left: 55%;
    bottom: 10%;
    color: black;
    width: 40%;
}

.hobies-info {
    font-size: 25px;
    font-weight: 400;
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
}

.hobies-item {
    width: 24%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 23px;
}

.hobies-item > span {
    text-align: center;
    margin-top: 10px;;
}

.page_transition {
    position: absolute;
    left: 47%;
    bottom: 2%;
    z-index: 20;

    display: flex;
    align-items: center;
    background-color: var(--blue-color);
    /* màu hồng nhạt */
    padding: 15px 30px;
    border-radius: 50px;
    max-width: fit-content;
    gap: 50px;
    font-family: 'Poppins', sans-serif;
    color: #2b2e4a;
    font-weight: 900;
    font-size: 1.8rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.page_transition:hover {
    background-color: #96D4FB;
    cursor: pointer;
}