@charset "utf-8";
/*-----------------BASICS-------------------*/
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: "Open Sans", sans-serif;
}

img {
    max-width: 100%;
}

h1, h2, h3, h4, h5 {
    font-family: "Glory", sans-serif;
    color: #23a3a8;
}
.glory {
    font-family: "Glory", sans-serif;
}
.content {
    max-width: 800px;
    margin: auto;
	color: #3d3b38;
}
.grid-25 {
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
}

.grid-50 {
    display: grid;
    grid-template-columns: 50% 50%;
}
a {
    text-decoration: none;
}
::marker {
    color: #23a3a8;
}
#content a {
    text-decoration: underline;
    text-decoration-color: #00a5aa;
    text-underline-offset: 4px;
    font-weight: 500;
    color: #3d3b38;
    text-decoration-thickness: 2px;
    transition: all 0.3s ease;
}
#content a:hover {
    text-underline-offset: 3px;

}
/*------------------BUTTON------------------*/
.button-02 {
  border-radius: 5px;
  box-shadow:#00a5a9 0 10px 20px -10px;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  font-family: "Glory", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  opacity: 1;
  outline: 0 solid transparent;
  padding: 8px 18px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: fit-content;
  word-break: break-word;
  border: 0;
  transition: all 0.3s ease;
}
.button-02 {	
    background: #23a3a8;
}

#buttonBack{
	margin:50px 0 100px 0;
}
.button-02:hover{
	box-shadow: #23a3a8 0 10px 5px -10px;
}

/*-----------------HEADER-----------------------------*/
#topHeader {
    height: 15px;
    background: #23a3a8;
}
#header {
    margin: 50px;
}
#logo img {
    max-width: 300px;
}
#headerIllustration {
    width: 600px;
    height: 300px;
	float: right;
}
#headerIllustration img{
	border-top-right-radius: 150px;
    border-bottom-left-radius: 150px;
    object-fit: cover;
    display: block;
    height: 100%;
    width: 100%;
}
/*----------------------------CONTENT-------------------------------*/

#contentBackground {
    background: whitesmoke;
    padding: 130px 0 100px 0;
    margin-top: 100px;
}
.pageTitle {
    font-size: 50px;
    padding-bottom: 50px;
}
/*----------------------------FOOTER-------------------------------*/
#contact {
    padding: 60px 30px;
    color: #888075;
}
span#collegeTitle {
    font-size: 29px;
}
#socialMedia {
    text-align: right;
    align-content: center;
}
.iconSocial {
    font-size: 45px;
    color: #888075;
    margin: 0 30px;
    transition: all 0.3s ease;
}
.iconSocial:hover {
    color: #23a3a8;
}
#contact a {
    color: #23a3a8;
    transition: all 0.3s ease;
	display: inline-block;
}
#contact a:hover {
    transform: translateY(-2px);
}
#copyrights {
    background: #23a3a8;
    text-align: center;
    color: white;
    padding: 15px;
    font-size: 14px;
}
#copyrights a {
    color: white;
    transition: all 0.3s ease;
    display: inline-block;
}
#copyrights a:hover {
    transform: translateY(-2px);
}
/*MENU*/
#menu1 {
    display: none;
}
#menu2 {
    display: block;
}

/*--------------------------RESPONSIVE----------------------------------*/
@media (max-width: 1300px) {

#menu1 {
    display: block;
}
#menu2 {
    display: none;
}
#topHeader {
    display: none;
}
}

@media (max-width: 900px) {
#logo img {
    max-width: 280px;
    display: block;
    margin: auto;
}
.grid-25 {
    grid-template-columns: 50% 50%;
}
.grid-50 {
    grid-template-columns: 100%;
}

#contact {
    text-align: center;
}
#socialMedia {
    text-align: center;
    padding-bottom: 30px;
}
#headerIllustration {
    width: 80%;
    float: none;
    margin: auto;
    margin-top: 50px;
    max-height: 200px;
}
#contentBackground {
    padding: 30px;
}
.pageTitle {
    margin-top: 0;
    text-align: center;
}
}

@media (max-width: 500px) {
    #headerIllustration {
        width: 100%;
    }
.grid-50 {
    grid-template-columns: 100%;
}
}