*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cormorant Infant', serif;
    text-decoration: none;
}
body {
    color: #030303;
}
.wrapper {
    background-color: #fff !important;
}
.accordion__content li::marker {
	color: #5F8D4E;
	font-size: 18px;
}
.accordion__content ul {
	list-style-type: square;
	margin-left: 54px;
	margin-bottom: 9px;
}
.ContentGrid {
    padding-top: 100px;
    display: grid;
    grid-template-rows: 45px 1fr;
    row-gap: 10px;
    max-width: 120em;
}
.ContentGrid .Heading {
    text-align: center;
}
.ContentGrid .HeadingOther {
    text-align: center;
    font-weight: bolder;
    width: fit-content;
    margin: 2px auto;
    border-radius: 6px !important;
    border: #5F8D4Eff 1px solid;
    background-color: #5F8D4Eff;
}
.ContentGrid .HeadingOther p {
    padding: 4px 10px 4px 10px;
    display: block;
    cursor: pointer;
    position: relative;
    transition: all 0.4s;
    border-radius: 6px;
}
.ContentGrid .HeadingOther a {
    border-radius: 6px;
}
.ContentGrid .HeadingOther p:hover {
    background-color: rgba(0, 0, 0, 0.1);
}
.MainPlaces {
    display: grid;
    grid-template-rows: repeat(4 1fr);
    max-width: 120em;
    margin-left: auto;
    margin-right: auto;
}
.MainPlaces img {
    width: 100%;
}
.MainPlaces p {
    padding-top: 5px;
    text-align: center;
    font-size: 32px;
}
.MainPlaces div {
    margin: 15px;
}
.MainPlaces div:nth-child(1, 4, 5, 8) {
    width: 30%;
}
.MainPlaces img {
    overflow: hidden;
    -webkit-transition: all 0.7s ease;
    transition: all 0.7s ease;
}
.MainPlaces img:hover {
    border-radius: 50%;
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg) scale(0.9);
}
.Place_Name {
    font-size: 28px;
    text-align: center;
    margin-top: 15% !important;
}
.MainPlaces {
    row-gap: 45px;
}
.MainPlaces div:nth-child(2, 3, 6, 7) {
    width: 30%;
}
.MainPlaces div:nth-of-type(odd) {
    grid-column: 1;
}
.MainPlaces div:nth-of-type(even) {
    grid-column: 2;
}
.PageButton {
    display: block;
    position: relative;
}
.PageButton .Button {
    position: absolute;
    top: 50%;
    left: 50%;
}
.ContentGrid2 {
    padding-top: 40px;
    display: grid;
    grid-template-rows: 45px min-content;
    row-gap: 10px;
    max-width: 120em;
    height: 50%;
}
.ContentGrid2 .Heading {
    color: #030303;
    text-transform: uppercase;
    font-size: 32px;
    font-weight: bolder;
    display: block;
    text-align: center;
    padding: 15px 160px;
    margin-left: 90px;
    margin-right: 90px;
    margin-bottom: 15px;
    border-bottom: #5f8d4ed3 4px solid;
}
.ShowMap {
    text-align: center;
    z-index: 20;
}
.ShowMap iframe {
    width: 90%;
}
.onMap {
    display: grid;
    grid-template-rows: min-content 1fr;
    margin-bottom: 25px;
}
.onMap div:nth-child(1) {
    grid-row: 1;
    width: 80%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5px;
    padding-top: 30px;
    padding-bottom: 10px;
    font-size: 28px;
}
.onMap div:nth-child(2) {
    grid-row: 2;
}
.ReservationProcess .MakeReservation {
    display: grid;
    grid-template-columns: 1fr;
}
.ReservationProcess .MakeReservation .Choose, .ReservationData {
    border: none;
    padding-top: 0;
    font-size: 28px;
    width: 100%;
    text-transform: none;
}
.ReservationProcess select {
    width: 100%;
    height: 30px;
    border: 2px solid #030303;
    padding-left: 10px;
}
.ReservationProcess input[type='text'] {
    height: 30px;
    border: 2px solid #030303;
    padding: 15px;
}
.ReservationProcess .date-input {
    display: grid;
    grid-template-columns: 1fr 1fr !important;
    column-gap: 5%;
}
.ReservationProcess .date-input div {
    width: 100% !important;
    justify-content: space-between;
}
.ReservationProcess .date-input input:first-of-type {
    grid-column: 2;
}
.ReservationProcess .date-input input:last-of-type {
    grid-column: 1;
}
.ReservationProcess .date-input input[type='date'] {
    height: 30px;
    border: 2px solid #030303;
    padding: 15px;
}
.ReservationProcess .date-input input[type='number'] {
    height: 30px;
    border: 2px solid #030303;
    padding: 15px;
}
.ReservationProcess .date-input input {
    width: 100% !important;
}
.ReservationProcess .ReservationData {
    text-align: left !important;
}
.ReservationProcess .InputData {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    margin-left: 0;
}
.ReservationProcess .InputData div:first-child{
    text-align: left;
    font-size: 28px;
    margin-top: auto;
    margin-bottom: auto;
}
.ReservationProcess .number-input {
    justify-content: space-between;
    width: 30%;
}
.ReservationInput {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 50px;
    background-color: #fff;
    margin-top: 100px;
    padding: 10px 160px 40px 160px;
}
.ReservationInput .Heading {
    color: #030303;
    text-align: center;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-size: 36px;
    font-weight: bolder;
    padding-bottom: 20px;
    border-bottom: #5f8d4ed3 4px solid;
}
input {
    color: #9d8665;
}
.ReservationPicture {
    display: grid;
    margin: 50px 50px;
}
.ReservationPicture img {
    width: 100%;
}
.ReservationProcess {
    display: grid;
    grid-template-rows: 45px 1fr;
    width: 100%;
    row-gap: 60px;
    padding: 45px 0;
}
.ReservationProcess .Info {
    color: #fff;
    font-size: 24px;
    margin-top: 15px;
}
.ReservationProcess .Info p {
    padding-bottom: 25px;
}
.ReservationProcess .book {
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    left: 50%;
}
#Hotel {
    width: 100%;
}
.accordion__content p {
    text-indent: 30px;
}

@media screen and (max-width: 101em) {
    .ReservationPicture iframe {
        width: 700px;
        height: 600px;
    }
    .ReservationInput {
        column-gap: 15px;
        padding: 10px 40px 30px 40px;
    }
    .ReservationProcess .date-input {
        width: 100%;
    }
}

@media screen and (max-width: 90em) {
    .ReservationInput {
        width: 100%;
    }
    .ReservationProcess {
        display: grid;
        grid-template-rows: 45px 1fr;
        width: 100%;
        row-gap: 40px;
        padding: 45px 0;
    }
    .MakeReservation {
        max-width: 100%;
    }
    .ReservationProcess .date-input {
        width: 100%;
    }
    .ReservationPicture iframe {
        height: 100%;
        width: 100%;
    }
    .ReservationInput {
        column-gap: 10px;
        padding: 10px 30px 30px 30px;
        margin-left: auto;
        margin-right: auto;
    }
    .ReservationProcess .Choose {
        display: block !important;
    }
}

@media screen and (max-width: 82em) {
    .Place_Name {
        margin-top: 5% !important;
    }
    .MakeReservation {
        width: 100% !important;
    }
    .ReservationInput {
        max-width: 100%;
    }
}

@media screen and (max-width: 65em) {
    .ReservationInput {
        display: flex;
        flex-direction: column;
    }
    .ReservationProcess {
        display: flex;
        flex-direction: column;
    }
    .ReservationPicture {
        margin: 0;
    }
}

@media screen and (max-width: 48em) {
    .Place_Name {
        font-size: 22px;
        text-align: justify;
    }
    .MainPlaces {
        display: grid;
        grid-template-columns: 1fr;
    }
    .MainPlaces .Place_Name {
        padding-bottom: 35px;
    }
    .MainPlaces p {
        font-size: 26px;
    }
    .MainPlaces div {
        margin-left: 5px;
        margin-right: 5px;
    }
    .MainPlaces {
        row-gap: 15px;
    }
    .MainPlaces div:nth-child(1, 4, 5, 8) {
        width: 95%;
    }
    .MainPlaces div:nth-child(2, 3, 6, 7) {
        width: 85%;
    }
    .MainPlaces div:nth-child(3) {
        grid-row: 4;
    }
    .MainPlaces div:nth-child(7) {
        grid-row: 8;
    }
    .MainPlaces div:nth-of-type(odd) {
        grid-column: 1;
    }
    .MainPlaces div:nth-of-type(even) {
        grid-column: 1;
    }
    .PageButton .Button {
        display: block !important;
    }
    .ContentGrid2 .Heading {
        font-size: 28px;
        font-weight: bolder;
        display: block;
        text-align: center;
        padding: 15px 10px;
        margin-left: 15px;
        margin-right: 15px;
        margin-bottom: 10px;
    }
    .onMap div:nth-child(1) {
        width: 90%;
        font-size: 22px;
    }
    .ReservationProcess {
        margin-left: auto;
        margin-right: auto;
        padding: 45px 40px;
    }
    .ReservationInput .Heading {
        font-size: 24px;
    }
    .ReservationInput {
        padding: 10px;
        max-width: 750px;
    }
    .ReservationProcess .MakeReservation {
        margin-left: auto;
        margin-right: auto;
        max-width: 80%;
        display: inherit;
    }
    .ReservationPicture {
        display: none;
    }
    .ReservationProcess .number-input {
        justify-content: space-between;
        width: 50%;
    }
    .ReservationProcess .InputData div:first-child {
        text-align: left;
        font-size: 24px;
        margin-top: auto;
        margin-bottom: auto;
    }
    .number-input input[type=number] {
        font-size: 24px;
    }
    .date-input {
        justify-content: center;
        column-gap: 0;
    }
}

@media screen and (max-width: 42em) {
    .ReservationProcess .date-input {
        column-gap: 10px;
        width: 100%;
    }
    .ReservationInput .Heading {
        font-size: 18px;
    }
}