* {
	margin: 0;
	padding: 0;
	overflow: visible;
	font-family: sans-serif;
	border: 0;
}

html {
	font-size: 1vw;
}

body{
	background-color: #05053b;
	overflow-x: hidden;
}

#navbar{
	height: 10vh;
	width: 100vw;
	overflow: hidden;
	display: flex;
    flex-grow: 1;
	justify-content: center;
	align-items: center;
	background-color: #05053b;
	top: 0;
	position: fixed;
	padding: 1vh 0;
    transition: 0.4s;
	z-index: 99;
	/*font-size: 1.7vw;*/
	font-size: 2vw;
	border-bottom: 3px solid rgb(251, 225, 102);
}

#logoContainer{
	height: 10vh;
	width: 20vw;
	flex-grow: 1;
	transition: 0.4s;
	position: fixed;
	overflow: hidden;
	z-index: 100;
}

#headerLogo{
	height: 100%;
	width: 100%;
	object-fit: contain;
}

#navButtonsContainer{
	width: 100%;
	height: 60%;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
}

.navButtonsSideContainer{
	display: inline-flex;
	justify-content: space-between;
	/*width: 35vw;*/
	width: 38vw;
}

#navButtonsLeft{
	margin-left: 3vw;
}

#navButtonsRight{
	margin-right: 3vw;
}

.navbarButton{
	text-decoration: none;
	color: white;
	font-weight: bold;
}

.navbarButton:hover{
	text-decoration: underline;
	color: lightgrey;
	font-weight: bold;
}

/*
================
  MAIN CONTENT
================
*/

#mainContainer{
    width: 100%;
    height: 2500px;
    top: 15vh;
    position: absolute;
    color: white;
    text-align: center;
} 

#textTitle{
    font-size: 50px;
    margin-top: 20px;
}

#introText{
    font-size: 30px;
    margin: 20px auto auto auto;
    width: 800px;
    text-align: justify;
    border-left: 3px solid rgb(251, 225, 102);
    padding: 0 10px;
    line-height: 1.3;
}

a{
    color: rgb(251, 225, 102);
}

.sectionContainer{
    margin: auto;
    margin-top: 100px;
    width: 80vw;
    height: auto;
    text-align: justify;
    border-top: 3px solid rgb(251, 225, 102);
    padding: 15px;
    padding-bottom: 0;
}

.sectionContainerSmall{
    height: 275px;
}

.sectionContainerLeft{
    border-left: 3px solid rgb(251, 225, 102);
}

.sectionContainerRight{
    border-right: 3px solid rgb(251, 225, 102);
    direction: rtl;
}

.subtitle{
    font-size: 45px;
    margin-bottom: 10px;
}

.subtitleLeft{
    text-align: left;
}
.subtitleRight{
    text-align: right;
}

.sectionText{
    font-size: 25px;
    line-height: 1.6;
    text-align: justify;
}

.sectionImgContainer{
    height: 275px;
    width: 275px;
    overflow: hidden;
}

#newsletterImgContainer{
    height: 275px;
    width: 195px;
    overflow: hidden;
}

.sectionImgContainerLeft{
    float: right;
    margin-left: 15px;
}

.sectionImgContainerRight{
    float: left;
    margin-right: 15px;
}

.sectionImg{
    height: 100%;
    width: 100%;
    object-fit: contain;
}

/*
===================
  MOBILE SETTINGS
===================
*/

@media all and (max-width: 500px){
    #navbar{
    	font-size: 2.1vw;
    }
    
    .navButtonsSideContainer{
    	width: 37vw;
    }
    
    #navButtonsLeft{
    	margin-left: 2vw;
    }
    
    #navButtonsRight{
    	margin-right: 2vw;
    }
    
    #mainContainer{
        width: 100vw;
        height: auto;
        /*border: 1px solid red;*/
        overflow: visible;
        margin: auto;
        margin-bottom: 200px;
        position: relative;
        bottom: 0;
        left: 0;
        right: 0;
    }
    
    #textTitle{
        text-align: center;
        font-size: 30px;
        margin-top: 10px;
    }
    
    #introText{
        font-size: 12px;
        margin: 14px auto auto auto;
        width: 330px;
        text-align: justify;
        border-left: 2px solid rgb(251, 225, 102);
    }
    
    .sectionContainer{
        margin-top: 50px;
        border-top: 2px solid rgb(251, 225, 102);
        width: 330px;
        padding: 7px;
        padding-bottom: 0;
    }
    
    .sectionContainerSmall{
        height: 130px;
    }
    
    .sectionContainerRight{
        border-right: 2px solid rgb(251, 225, 102);
    }
    
    .sectionContainerLeft{
        border-left: 2px solid rgb(251, 225, 102);
    }
    
    .subtitle{
        font-size: 20px;
        margin-bottom: 7px;
    }
    
    .sectionText{
        font-size: 12px;
        line-height: 1.4;
    }
    
    .sectionImgContainer{
        height: 130px;
        width: 130px;
    }
    
    #newsletterImgContainer{
        height: 130px;
        width: 92px;
    }
    
    .sectionImgContainerLeft{
        margin-left: 7px;
    }
    
    .sectionImgContainerRight{
        margin-right: 7px;
    }
}











