* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
	font-family: lobster;
	src: url(../fonts/Sarala-Regular.ttf);
}

/***** Variables *****/
:root {
    --red: 215, 12, 12;
    --orange: 215, 46, 12;
    --gray: 180, 180, 180;
    --shadow_color: 100, 100, 100;
}

/***** Tags *****/
html,
body {
    height: 100%;
    overflow-x: hidden;
    background-color: rgb(255, 255, 255);
}

body * {
    font-family: Helvetica, Verdana, Geneva, Tahoma, sans-serif;
}

textarea {
    resize: none;
}

a {
    text-decoration: none;
    color: black;
}

a:hover {
    text-decoration: none;
}

/***** CREATED TAGS STYLE *****/


/********************************************* GENERAL STYLE *********************************************/

/***** FORM STLE *****/
form div {
    position: relative;
}

.form_component {
    width: 100%;
    padding: 5px 7px;
    font-size: 16px;
    border: 1px solid rgba(150, 150, 150, 0.5);
    border-radius: 5px;
    outline: 0;
    transition: 0.5s;
}

.form_component:focus {
    border: 1px solid;
    box-shadow: 0 0 3px 0 transparent;
}

.button_submit {
    width: 100%;
    padding: 9px 0;
    font-size: 20px;
    color: white;
    border: 1px solid rgba(150, 150, 150, 0.5);
    cursor: pointer;
}

div.password > .eye_password {
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    cursor: pointer;
}

div.search > .magnifying_glass {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    color: rgb(var(--gray));
}


/***** TEXT STYLE *****/
.bold {
    font-weight: bold;
}

.non_bold {
    font-weight: normal;
}

.underline {
    text-decoration: underline black;
}

.italic {
    font-style: italic;
}

/***** ORGANIZATION STYLE *****/

.container_center {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1%;
}

.center {
    margin: 0 auto;
}

.clear {
    clear: both;
}

/***** ICONS STYLE *****/
.icon_header {
    font-size: 18px;
}

.icon_login {
    font-size: 20px;
}

/***** TABLE STYLE *****/
.table {
    display: table;
    border-collapse: collapse;
}

.table_row {
    display: table-row;
}

.table_cell {
    display: table-cell;
}

/***** RANDOM STYLE *****/


/********************************************* HEADER STYLE *********************************************/

header.page_header {
    width: 100%;
    min-height: 100px;
    background-color: rgb(var(--red));
}

header.page_header > div.container_center {
    padding-top: 7px;
    padding-bottom: 7px;
    display: grid;
    grid-template-columns: 20% auto;
}

header.page_header .logo_wrapper {
    width: 100px;
    text-align: center;
}

header.page_header .logo_wrapper img {
    width: 100%;
}

header.page_header .logo_wrapper span {
    font-family: lobster;
    font-size: 35px;
    color: white;
}

header.page_header .menu_wrapper {
    padding-bottom: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

header.page_header .menu_wrapper .menu_row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

header.page_header .menu_row a {
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

header.page_header .menu_wrapper .menu_row > * {
    margin-left: 15px;
}

header.page_header .menu_wrapper input {
    padding-left: 35px;
    border-radius: 20px;
}

header.page_header .menu_wrapper input:focus {
    border: 1px solid rgb(var(--gray));
    box-shadow: 0 0 2px 1px rgb(var(--gray));
}

header.page_header div.menu_wrapper a[selected-page="y"] {
    border-bottom: 2px solid white;
}


/********************************************* FOOTER STYLE *********************************************/

footer.page_footer {
    width: 100%;
    padding: 20px 0 10px 0;
    background-color: rgb(var(--red));
    color: white;
}

footer.page_footer div.container_center {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

footer.page_footer div.container_center > * {
    width: 30%;
    text-align: center;
}

footer.page_footer form .form_component {
    margin-bottom: 15px;
    border-radius: 0;
}

footer.page_footer form input[type=submit] {
    padding: 7px 15px;
    background-color: rgb(var(--orange));
    color: white;
    border: 1px solid white;
    border-radius: 5px;
}

footer.page_footer .social_medias {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

footer.page_footer .social_medias i {
    font-size: 50px;
}

footer.page_footer .social_medias a > i {
    color: white;
}

footer.page_footer .social_medias a > i:hover {
    color: rgb(var(--gray));
}

footer.page_footer .cred_card {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer.page_footer .cred_card i {
    font-size: 50px;
}

footer.page_footer .cred_card i:not(:nth-of-type(1)) {
    margin-left: 10px;
}

footer.page_footer div.container_center > p {
    width: 100%;
    margin: 30px 0 0 0;
    text-align: center;
}


/********************************************* ERROR STYLE *********************************************/

.container_error section.error > div.container_center {
    padding: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container_error section.error i {
    margin-right: 20px;
    font-size: 80px;
}

.container_error section.error a {
    color: rgb(var(--orange));
}


/********************************************* HOME STYLE *********************************************/

.container_home {
    width: 100%;
}

.container_home > section.syschool_description {
    padding: 100px 0;
    background-color: rgb(230, 230, 230);
}

.container_home section.syschool_description > div.container_center {
    display: flex;
    align-items: center;    
}

.container_home section.syschool_description img {
    width: 50%;
}

.container_home section.syschool_description div.syschool_text {
    width: 50%;
    padding: 0 20px;
    font-size: 15px;
}

.container_home section.syschool_description a {
    padding: 10px 20px;
    background-color: rgb(var(--red));
    color: white;
    text-align: center;
    border-radius: 5px;
}

.container_home section.syschool_benefits {
    width: 100%;
    min-height: 20px;
    background-color: rgb(var(--orange));
}

.container_home section.syschool_benefits div.container_center {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
}

.container_home section.syschool_benefits div.ind_benfit {
    width: 30%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    color: white;
}

.container_home section.syschool_benefits div.ind_benfit i {
    font-size: 90px;
}

.container_home section.syschool_benefits div.ind_benfit h2 {
    margin: 18px 0;
    font-size: 20px;
    text-align: center;
}


/********************************************* ABOUT STYLE *********************************************/

.container_about {
    padding: 20px 0;
}

.container_about span.title {
    display: block;
    font-family: lobster;
    color: rgb(var(--red));
}

.container_about span.title:not(:nth-of-type(1)) {
    margin-top: 20px;
}

.container_about p.description {
    margin: 0;
    font-size: 15px;
    text-indent: 20px;
}

.container_about .container_center:nth-of-type(2) {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.container_about .container_center:nth-of-type(2) div.title_soc {
    width: 100%;
    margin-top: 20px;
}

.container_about .info_soc {
    width: 30%;
    margin-bottom: 10px;
    padding: 15px;
    border: 2px solid rgb(var(--gray));
    border-radius: 5px;
}

.container_about .info_soc img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}


/********************************************* SYSCHOOL STYLE *********************************************/

.container_syschool > .container_center > .img_syschool {
    width: 90%;
    margin: 0 auto 50px auto;
}

.container_syschool > .container_center img {
    width: 100%;
}

.container_syschool > .container_center p {
    text-indent: 30px;
}