.container-maps {
    width: 85vw;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
}

/*  */
.container-contact {
    position: relative;
    width: 85vw;
    height: min-content;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
}
/* 
.imgContact {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover !important;
} */

.container-contact img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    z-index: 0;
}

.blur-massage {
    position: absolute;
    left: 0;
    top: 0;
    backdrop-filter: blur(5px);
    width: 100%;
    height: 100%;
    z-index: 1;
}

/*  */

.container-form {
    width: 80vw;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    position: absolute;
    z-index: 2;
}

.container-form span {
    font-size: 1.2em;
    color: var(--putih);
    margin-bottom: 10px;
    font-weight: bolder;
}

.form-massage {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 20px;
}

.form-massage div input,
.form-massage div textarea {
    padding: 25px;
    padding-left: 25px;
    padding-right: 25px;
    border: 0;
    width: 80vw;
}

.form-massage div input {
    border-radius: 50px !important;
}

.form-massage div textarea {
    border-radius: 20px !important;
    resize: none;
}

.box-send {
    background: var(--putih) !important;
    height: min-content;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    border-radius: 20px;
    padding: 10px;
    border: 0;
    outline: none;
    gap: 10px;
    color: var(--text-color);
    font-size: 15px !important;
    width: 150px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.box-send img {
    width: 20px;
    height: 20px;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

.box-send:hover img {
    transform: rotate(42deg) translate(-2px, 0);
    -webkit-transform: rotate(42deg) translate(-2px, 0);
    -moz-transform: rotate(42deg) translate(-2px, 0);
    -ms-transform: rotate(42deg) translate(-2px, 0);
    -o-transform: rotate(42deg) translate(-2px, 0);
}

/*  */
.container-team {
    width: 100vw;
    height: 100px;
    user-select: none;
    cursor: grab;
    display: flex;
    gap: 10px;
    overflow: scroll;
    scrollbar-width: none;
}

.container-team img {
    width: 50%;
    height: 50%;
    object-fit: contain;
    user-select: none;
    filter: grayscale();
}
