.page {
    padding: 0 10vw;
    padding-bottom: 20vh;
}
.dormitory__slider {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
    margin-bottom: 5vh;
}
.dormitory__slider__item {
    display: grid;
    grid-template-columns: 70% 27%;
    justify-content: space-between;
    align-items: center;
    gap: 3%;
    width: 100%;
    max-width: 75vw;
}
.dormitory__slider__main__slide {
    width: 100%;
    height: 100%;   
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.dormitory__slider__main__image {
    width: 100%!important; ;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    height: 70vh;
    transition: all .3s linear;
    box-shadow: 0 0  10px rgb(20,20,20,.1);
    margin: 0 !important;
    cursor: crosshair;
}
.dormitory__slider__images {
    display: flex;
    justify-content: start;
    align-self: center;
    flex-direction: column;
    width: 100%;
    height: 70vh;
    overflow-y: scroll;
    gap: 10px;
    padding: 0 6px;
}
.dormitory__slider__images img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    cursor:crosshair;
    margin: 0;
    
}
.dormitory__documents {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    width: 100%;
    max-width: 75vw;
}
.anti__coruption {
    margin-bottom: 0;
    padding: 0;
}

.dormitory__about {
    max-width: 75vw;
}
.dormitory__about p {
    margin-bottom: 6px;
}

.dormitory__documents__form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    border-radius: 4px;
    border: 2px solid rgb(20,20,20,.1);
    max-width: 75vw;
    margin: 5vh 0 ;
    padding: 8vh 10vh ;
    box-shadow: 0 0 15px rgb(20,20,20,.07);
}
.dormitory__documents__form h2 {
    font-size: calc((1vw + 1vh) * 2);
}
.form__field {
    /* border: 2px solid; */
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    width: 100%;
    max-width: 60vw;
    margin-bottom: 2vh;
}
.form__field label {
    color: rgb(20,20,20,.4);
    margin-bottom: 2px;
    font-size: calc((1vw + 1vh) * .9);
}
.form__field input, select {
    /* border-bottom: 2px solid rgb(20,20,20,.1); */
    border: 2px solid rgb(20,20,20,.1);
    border-radius: 4px;
    font-size: calc((1vw + 1vh) * 1.05);
    background-color: transparent;
    height: calc((1vw + 1vh) * 2.8);
    width: 100%;
    padding: calc((1vw + 1vh) * .8) ;
    transition: all .3s linear;
    cursor: pointer;
}
option:focus, option:checked, option:hover, option: {
    background-color: #202020;
    color: white;
}
.form__field input:hover, .form__field input:focus, .form__field select:hover, .form__field select:focus  {
    border-color: #202020;
    box-shadow: 0 0 10px rgb(20,20,20,.07);
}
.btn {
    background-color: var(--primary);
    color: var(--white);
    width: calc((1vw + 1vh) * 8);
    border-radius: 10px;
    padding: 2vh 4vw;
    text-align: center;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    font-size: calc((1vw + 1vh) * 1);
    cursor: pointer;
    margin-top: calc((1vw + 1vh) *.4);
    transition: all .3s linear;
}
.btn:hover {
    background-color: white;
    color: rgb(20,20,20);
    box-shadow: 0 0 10px rgb(20,20,20,.08);
}

.dormitory__documents__form__component {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px ;
    width: 100%;
    max-width: 60vw;
}

@media screen and (max-width: 600px) {
    .page {
        padding: 0 2vw;
        padding-bottom: 15vh;
    }
    .dormitory__slider__item {
        max-width: 100%;
        grid-template-columns: 1fr;
    }
    .dormitory__slider__main__image {
        height: 40vh;
    }
    .dormitory__slider__images {
        flex-direction: row;
        overflow-y: hidden;
        overflow-x: auto;
        height: 20vh;
        padding: 0;
    }
    .dormitory__documents {
        max-width: 90vw;
    }
    .dormitory__about {
        max-width: 90vw;
    }
    .dormitory__documents__form {
        max-width: 96vw;
        padding: 6vh 4vw;
        box-shadow: none;
        border: none;   
    }
    .dormitory__documents__form h2 {
        font-size: calc((1vw + 1vh) * 2.8);
    }
    .form__field {
        max-width: 95vw;
    }
    .dormitory__documents__form__component {
        max-width: 95vw;
    }
    .btn {
        width: 100%;
        font-size: calc((1vw + 1vh) * 1.5);
    }
    .form__field label {
        font-size: calc((1vw + 1vh) * 1.35);
    }
    .form__field input, select {
        font-size: calc((1vw + 1vh) * 1.55);
        height: calc((1vw + 1vh) * 5);
    }
    .dormitory__documents__form__component {
        flex-direction: column;
    }
}