.info {}

.info__container {
	margin: 30px auto 60px;
	max-width: 1000px;
}

.info__header {
	margin-bottom: 50px;
    font-size: 25px;
    font-weight: bold;
    text-align: center;
	color: #0a589c;
}

.info__text {
	margin-bottom: 30px;
    text-align: justify;
}

.info__text--center {
    text-align: center;
}

.info__buttons {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.info__button{
	padding: 0 25px;
	margin: 0 10px;
	width: 250px;
}

.map {}

.map__container {
    height: 500px;
    margin: 100px auto 200px;
    width: 100%;
    max-width: 1000px;
    height: 100%;
    height: 500px;
}

.info__details {
	padding: 10px 20px 5px;
	border: 1px solid #80808078;
	border-bottom-color: transparent;
}

.info__details:last-child {
	border-bottom: 1px solid #80808078;
}

.info__summary {
	margin-bottom: 5px;
	display: list-item;
	font-weight: bold;
	cursor: pointer;
}


@media screen and (max-width: 768px) {
	.info__container {
		margin-left: 15px;
		margin-right: 15px;
	}
	.map__container {
		margin-left: 0;
		margin-right: 0;
	}
}

@media screen and (max-width: 576px) {
	.info__text {
		font-size: 13px;
	}
	.info__buttons {
		flex-direction: column;
	}
	.info__button {
		height: 50px;
		font-size: 13px;
	}
}

@media screen and (max-width: 450px) {
    .info__header {
        font-size: 23px;
    }
}