@keyframes SlideUp{
    from{
        opacity: 0.2;
        transform: translateY(300px);
    }
    to{
        opacity: 1;
        transform: translateY(0px);
    }
}

.ContactTopDiv {
    margin-top: 22vh;
    width: 80%;
    display: flex;
    flex-direction: column;
}

.ContactTopDiv h3 {
    font-size: 3.5vh;
     background: linear-gradient(90deg, #fd9275, #fe84a3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    width: 12%;
    margin-bottom: 0;
}

.ContactTopDiv h1 {
    width: 48%;
    font-size: 8vh;
    background: linear-gradient(90deg, #fd9275, #fe84a3, #939deb, #3aaeff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-top: 2vh;
    margin-bottom: 0.4vh;
}

.ContactTopDiv p {
    width: 50%;
    font-size: 2.5vh;
    margin: 0%;
    color: white;
}

.ContactBoxsHolder {
    width: 80%;
    margin-top: 5vh;
}

.ContactBoxs {
    display: flex;
    width: fit-content;
    height: fit-content;
    width: 70%;
    justify-content: space-between;
}

.Box {
    height: 16vh;
    width: fit-content;
      background-color: rgb(19, 19, 19);
    border: 4px solid rgb(26, 26, 26);
    box-shadow: 0 0 20px rgb(0, 0, 0);
    padding: 2%;
    border-radius: 2vh;
}

.Box span {
     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' 1,
        'wght' 700,
        'GRAD' 0,
        'opsz' 28;
}

.Box p{
    margin: 0%;
    color: rgb(216, 216, 216);
    font-weight: 400;
}

.Box h2 {
    margin: 1.5%;
    color: white;
}

.BookAGetaway {
    width: 80%;
    height: 20vh;
     display: flex;
    justify-content: space-evenly;
    align-items: center;
     background-color: rgb(19, 19, 19);
    box-shadow: 0 0 20px rgb(0, 0, 0);
     border: 5px solid transparent;
     border-radius: 15px;
    background-image: 
    linear-gradient(rgb(19, 19, 19), rgb(19, 19, 19)), 
    linear-gradient(to right,#fd9275, #fe84a3, #939deb, #3aaeff);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    padding: 1%;
    margin-top: 20vh;
    margin-bottom: 3vh;
}

.BookAGetaway img {
    height: 20vh;
}

.BookAGetaway div{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.BookAGetaway h2{
    font-size: 4vh;
    margin: 0;
    color: white;
}

.BookAGetaway p {
    font-size: 2vh;
    color: rgb(219, 219, 219);
    font-weight: 400;
}

.BookAGetaway button{
    background: linear-gradient(90deg, #939deb, #3aaeff);
    border-radius: 100vh;
    border: 0;
    font-size: 3vh;
    font-weight: 550;
    padding: 2vh;
    padding-right: 6vh;
    padding-left: 6vh;
    color: rgb(19, 19, 19);
    display: flex;
    align-items: center;
    transition: 0.2s;
}

.BookAGetaway button:hover{
   font-size: 3.1vh;
   cursor: pointer;
   box-shadow: 0 0 20px rgb(0, 0, 0);
}

@media (max-width: 600px) {
    .ContactTopDiv {
        width: 80%;
    }

    .ContactTopDiv h3{
        width: 100%;
        font-size: 3vh;
    }

    .ContactTopDiv h1{
        width: 100%;
    }

    .ContactTopDiv h1{
        width: 100%;
        font-size:6vh;
    }

    .ContactTopDiv p{
        width: 100%;
        font-size:2vh;
    }

    .ContactBoxs {
        display: flex;
        flex-direction: column;
        height: fit-content;
        width: 100%;
        padding: 0;
        justify-content: center;
        align-items: center;
    }

    .Box {
        width: 90%;
        height: fit-content;
        margin-top: 4vh;
    }

    .BookAGetaway {
        flex-direction: column;
        height: fit-content;
        padding: 5%;
    }

    .BookAGetaway h2{
        width: 100%;
        text-align: center;
    }

    .BookAGetaway p{
        width: 100%;
        text-align: center;
    }
}