.mobilePage{
    display: none;
}

.desktopPage{
    display: block;
}

.pageSection{
    padding-bottom: 5%;
}

.pageTitle{
    width: 100%;
    margin-top: 5%;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5vw;
    text-align: center;
    color: darkred;
    text-decoration: underline;
}
.pageSubtitle{
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2vw;
    text-align: center;
    color: black;
}


.sectionTitle{
    width: 30%;
    margin-left: 35%;
    margin-right: 35%;
    font-family: 'Montserrat', sans-serif;
    font-size: 2vw;
    text-align: center;
    color: darkred;
    border-bottom-style: solid;
    border-bottom-width: 1px;
}

.sectionSubtitle{
    text-align: center;
	font-family: 'Montserrat', sans-serif;
    font-size: 2vw;
}

.sectionText{
    font-family: 'Montserrat', sans-serif;
    font-size: 1vw;
    text-align: center;
    text-decoration: none;
}

/* Become member */

.linksContainer{
    width: 100%;
    float: left;
    text-align: center;
    display: flex;
    justify-content: center;
}

.pdfLink{
    text-align: center;
    float: left;
    margin-top: 4%;
    margin-bottom: 4%;
}

.pdfImage{
    width: 30%;
}

.pdfImage:hover{
    box-shadow: 0em 0em 0.5em 0.3em #000000;
    border-radius: 50%;
	cursor: pointer;
}

/* Contact us */
.messageBox{
	margin-top: 2%;
}
.messageTitle{
	width: 30%;
    margin-left: 35%;
    margin-right: 35%;
    font-family: 'Montserrat', sans-serif;
    font-size: 2vw;
    text-align: center;
    color: darkred;
    border-bottom-style: solid;
    border-bottom-width: 1px;
}

.messageDescription{
	font-family: 'Montserrat', sans-serif;
    font-size: 1vw;
    text-align: center;
    text-decoration: none;
	width: 96%;
	margin-left: 2%;
	margin-right: 2%;
}

.messageForm {
    width: 100%;
    text-align: center;
    margin-top: 1%;
	padding-bottom: 5%;
}

.selectType {
    width: 13%;
    margin-right: 35%;
    margin-left: 35%;
    font-size: 1vw;
    color: black;
    font-family: 'Montserrat', sans-serif;
    border-radius: 1rem;
}

.selectType:hover{
	cursor: pointer;
}

.optionType:hover{
	cursor: pointer;
}

.fromContact {
    width: 25%;
    margin-right: 15%;
    margin-left: 15%;
    margin-top: 1%;
    font-size: 1vw;
    color: black;
    font-family: 'Montserrat', sans-serif;
    border-radius: 1rem;
}

.messageText{
	width: 100%;
    margin-top: 2%;
	margin-bottom: 2%;
}

.messageTextArea{
    width: 50%;
    resize: none;
	border-radius: 0.5rem;
	font-size: 1vw;
    color: black;
    font-family: 'Montserrat', sans-serif;
}

.submit{
	text-align: center;
    width: 10%;
	font-family: 'Montserrat', sans-serif;
    font-size: 1vw;
	color: white;
	background-color: darkred;
	font-weight: bold;
	border: none;
	padding: 1%;
	border-radius: 10px;
}

.submit:hover{
    color: white;
    background-color: black;
    cursor: pointer;
}

.resultPopup{
	display: none;
	align-items: center;
	text-align: center;
	justify-content: center;
    top:0;
    width: 100%;
    position: fixed;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 3;
}

.popupWindow{
	width: 30%;
	background-color: whitesmoke;
	border-radius: 0.5rem;
}

.popupImg {
    width: 10%;
    margin: 5%;
}

.closePopup {
    width: 20%;
    font-size: 1vw;
    color: black;
    font-family: 'Montserrat', sans-serif;
    border-radius: 1rem;
    margin: 5%;
}

.resultMessage {
    font-size: 1vw;
    font-family: 'Montserrat', sans-serif;
}

.closePopup:hover{
	cursor: pointer;
}

.sentButton:hover{
	background-color: rgba(0, 100, 0, 0.5);
}

.errorButton:hover{
	background-color: rgba(139,0,0,0.5);
}

.errorMessage{
	font-size: 1vw;
    color: darkred;
    font-family: 'Montserrat', sans-serif;
}

@media (max-width: 414px), (orientation: portrait) {
    .desktopPage{
        display: none;
    }
    .mobilePage{
        display: block;
    }
}