@keyframes SlideUp{
    from{
        opacity: 0.2;
        transform: translateY(300px);
    }
    to{
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes SlideDown{
    from{
        transform: translateY(-2000px);
    }
    to{
        transform: translateY(0px);
    }
}

@keyframes Appear{
    from{
        opacity: 0;
        scale: 0.5;
    }
    to{
        opacity: 1;
        scale: 1;
    }
}

@keyframes SlideRight{
    from{
        transform: translateX(-300px);
    }
    to{
        transform: translateX(0px);
    }
}

@keyframes SlideLeft{
    from{
        transform: translateX(var(--distance, 300px));;
    }
    to{
        transform: translateX(0px);
    }
}

.AboutUsStart {
    margin-top: 22vh;
    width: 80%;
    display: flex;
    flex-direction: column;
}

.AboutUsStart h3 {
    font-size: 3vh;
     background: linear-gradient(90deg, #fd9275, #fe84a3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    width: 9%;
    margin-bottom: 0;
}

.AboutUsStart h1 {
    width: 52%;
    font-size: 6vh;
     background: linear-gradient(90deg, #3aaeff, #939deb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-top: 2vh;
}

.AboutUsStart p {
    width: 50%;
    font-size: 2.5vh;
    color: white;
}

.AboutContainer {
    margin-top: 10vh;
   display: flex;
   width: 80%;
   justify-content: space-between;
   margin-bottom: 5vh;
}

.MissionDiv {
    display: flex;
    background-color: rgb(19, 19, 19);
    border: 4px solid rgb(26, 26, 26);
    box-shadow: 0 0 20px rgb(0, 0, 0);
    padding: 1%;
    border-radius: 4vh;
    align-items: center;
    justify-content: center;
    width: 43%;
    animation: SlideRight linear;
    animation-timeline: view();
    animation-range: entry 0 cover 20%;
}

.MissionDiv h3{
    font-size: 3vh;
     background: linear-gradient(90deg, #fd9275, #fe84a3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    width: 47%;
}

.MissionDiv p{
    color: white;
    font-size: 1.75vh;
}

.MissionDiv img{
    height: 30vh;
    margin-right: 2vh;
}

.ValuesDiv{
    width: 50%;
    height: 13vh;
    animation: SlideLeft linear;
    animation-timeline: view();
    animation-range: entry 0 cover 30%;
}

.ValuesDiv h1{
   font-size: 3vh;
     background: linear-gradient(90deg, #3aaeff, #939deb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    width: 24%;
}

.ValueDivsHolder {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
}

.ValueDivsHolder div{
    width: 27%;
    height: 4vh;
}

.ValueDivsHolder h3{
    color: white;
    font-weight: 500;
    font-size: 2.3vh;
}

.ValueDivsHolder p{
    color: rgb(214, 214, 214);
    font-weight: 300;
    font-size: 1.7vh;
}

.ValueIcons {
    font-family: 'Material Symbols Outlined';
    font-size: 5vh;
    transition: 0.3s;
    margin-right: 0.8vh;
    margin-left: 0.8vh;
    color: #3aaeff;
    font-variation-settings:
        'FILL' 0,
        'wght' 700,
        'GRAD' 0,
        'opsz' 48;
}

.ValueIcons:nth-child(2) {
    font-family: 'Material Symbols Outlined';
    font-size: 5vh;
    transition: 0.3s;
    margin-right: 0.8vh;
    margin-left: 0.8vh;
    color: #6ba5f4;
    font-variation-settings:
        'FILL' 0,
        'wght' 700,
        'GRAD' 0,
        'opsz' 48;
}

.ValueIcons:nth-child(3) {
    font-family: 'Material Symbols Outlined';
    font-size: 5vh;
    transition: 0.3s;
    margin-right: 0.8vh;
    margin-left: 0.8vh;
    color: #939deb;
     font-variation-settings:
        'FILL' 0,
        'wght' 700,
        'GRAD' 0,
        'opsz' 48;
}

.Staff-Div {
    display: flex;
    width: 80%;
    justify-content: space-evenly;
    margin-top: 2vh;
    margin-bottom: 13vh;
    animation: SlideUp linear;
    animation-timeline: view();
    animation-range: entry 0 cover 30%;
}

.InStaffDiv {
    width: 38%;
    display: flex;
    justify-content: center;
    align-items: center;
      background-color: rgb(19, 19, 19);
    border: 4px solid rgb(26, 26, 26);
    box-shadow: 0 0 20px rgb(0, 0, 0);
    padding: 1vh;
    padding-right: 6vh;
    padding-left: 6vh;
    border-radius: 3vh;
}

.InStaffDiv img {
    height: 25vh;
    margin-right: 6vh;
    border-radius: 100%;
}

.MeetTheTeamText {
    display: flex;  
    align-items: center;
    flex-direction: column;
    width: 100%;
    margin-top: 20vh;
}

.MeetTheTeamText h1{
    color: white;
    font-weight: 500;
    margin-bottom: 0.7vh;
}

.MeetTheTeamText div{
    width: 5%;
    height: 0.5vh;
    background: linear-gradient(90deg, #fd9275, #fe84a3);
    border-radius: 10000px;
}

.InStaffDiv h1 {
     font-size: 3vh;
     background: linear-gradient(90deg, #3aaeff, #939deb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 4vh;
    font-weight: 500;
    margin-bottom: 0;
}

.InStaffDiv h3 {
    color: white;
    font-size: 2.5vh;
    font-weight: 500;
    margin-top: 0;
}

.InStaffDiv p {
    color: white;
    font-size: 2vh;
    font-weight: 400;
    margin-top: 0;
}

@media (max-width: 1200px) {
    .AboutUsStart {
        margin-top: 15vh;
    }

    .AboutUsStart h3 {
        width: 100%;
        text-align: center;
    }

    .AboutUsStart h1 {
        width: 100%;
        text-align: center;
        font-size: 5vh;
    }

    .AboutUsStart p {
        width: 100%;
        text-align: center;
    }

    .AboutContainer {
        flex-direction: column;
        margin-top: 4vh;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .MissionDiv {
        width: 80%;
        flex-direction: column;
    }

    .MissionDiv img{
        margin-right: 0;
    }

    .MissionDiv div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .MissionDiv h3{
        text-align: center;
        width: 80%;
    }

    .MissionDiv p{
        text-align: center;
        width: 80%;
        margin-bottom: 2.5vh;
    }

    .ValuesDiv {
        display: flex;
        flex-direction: column;
        width: 90%;
        margin-top: 4vh;
    }

    .ValuesDiv h1{
        width: 100%;
        text-align: center;
    }

    .ValueDivsHolder div {
        margin-top: 1vh;
        width: 30%;
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .ValueDivsHolder div h3{
        font-size: 2vh;
    }

    .ValueDivsHolder div p{
        font-size: 1.5vh;
        text-align: center;
    }

    .Staff-Div {
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }

    .InStaffDiv {
        margin-right: 0;
        display: flex;
        flex-direction: column;
        width: 50%;
        margin-bottom: 10vh;
    }

    .InStaffDiv img{
        margin-right: 0;
    }

    .InStaffDiv h1 {
        text-align: center;
    }

    .InStaffDiv h3 {
        text-align: center;
    }
}