.arDiv i {
    background-color: rgb(247, 88, 66);
    padding: 1.2rem;
    border-radius: 0.9rem;
    ;
}

.achievements {
    height: 95vh;
}

.arDiv:nth-child(2) .arDiv {
    background-color: rgb(0, 191, 142);
}

.arDiv:nth-child(3) .arDiv {
    background-color: rgb(108, 99, 255);
}

.archivements-content {
    background-color: rgb(46, 50, 103);
    padding: 15px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s ease-in-out;
}

.achievement {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.archivementCon {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.arDivCon h3 {
    margin: 20px 0px;
    font-weight: bold;
}

.archivements-content:hover {
    background: #424890;
    box-shadow: 0 2rem 2rem rgba(0, 0, 0, 0.3);
}

.our-team {
    text-align: center;
    background: #2e3267;
    box-shadow: inset 0 0 3rem rgba(0, 0, 0, 0.5);
}

.our-team h2 {
    font-weight: bold;
    margin-bottom: 2rem;
}

.team {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.teams {
    cursor: pointer;
    background-color: rgb(66, 72, 144);
    padding: 2rem;
    border: 1px solid transparent;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.teams:hover {
    background-color: transparent;
    border: 1px solid blue;
}

.teams h4 {
    margin-top: 1.4rem;
    font-weight: bold;
}

.teams p {
    color: rgba(255, 255, 255, 0.7);
}

.links {
    background-color: rgb(108, 99, 255);
    border-radius: 15px 0 0 15px;
    padding: 1rem;
    width: fit-content;
    height: fit-content;
    position: absolute;
    right: -49px;
    top: 100px;
    transition: all 0.5s ease-in-out;
}

.teams:hover .links {
    right: 0;
}

@media screen and (max-width: 1024px) {
    .achievement {
        grid-template-columns: auto;
        text-align: center;
    }

    .achievements {
        height: fit-content;
    }

    .right-achivements {
        margin-top: 2rem;
    }

    .container {
        width: 100%;
    }

    .team {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .team {
        grid-template-columns: repeat(2, 1fr);
    }
}