@charset "utf-8";

*,*::before,*::after {
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body {
    width:100vw;
    height:100vh;
    min-height:700px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin:0 auto;
    background: rgb(1,84,160);
    background: linear-gradient(34deg, rgba(1,84,160,1) 38%, rgba(222,156,24,0.8281687675070029) 90%);
    background-repeat:no-repeat ;
    background-size: cover;
}



header {
    width:100%;
    height:10%;
    max-height:100px;
    background-color: #0154A0;
    box-shadow: 1px 10px 18px 5px rgba(0,0,0,0.75);
    -webkit-box-shadow: 1px 10px 18px 5px rgba(0,0,0,0.75);
    -moz-box-shadow: 1px 10px 18px 5px rgba(0,0,0,0.75);
    display: grid;
    grid-template-columns: 200px 200px;
    grid-template-rows: 100px;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    text-align: center;
}

header img {
    grid-column: 1/2;
    position: relative;
    top:-10px;
}

a {
    color:rgb(165, 175, 185);
    text-decoration: none;
}

footer {
    height:20%;
    background-color: #0154A0;
    display:grid;
    padding: 0 50px;
    grid-template-columns: auto repeat(3, auto);
    grid-template-rows: 50px auto ;
    justify-items: center;
    align-items: start;
    color:white;
    column-gap: 10px;
    box-shadow: 0px -7px 18px 5px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px -7px 18px 5px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px -7px 18px 5px rgba(0,0,0,0.75);
}

footer h3 {
    margin-top:20px;
    font-variant: small-caps;
}

footer h3:first-of-type {
    grid-column: 1/2;
}

footer h3:nth-of-type(2) {
    grid-column: 2/3;
}

footer h3:nth-of-type(3) {
    grid-column: 3/4;
}

footer h3:last-of-type {
    grid-column: 4/5;
}

ul {
    list-style-type: none;
    display: grid;
    grid-template-columns: auto;
    font-size: 12px;
}

form {
    display:grid;
    width:100%;
    margin:50px auto;
    gap: 15px;
}

form > input {
    margin: 0 auto;
}

form label {
    margin-left: 15%;
}

input[type=text] {
    height:40px;
    min-width:250px;
    width:70%;
}

input[type=submit], #login-btn {
    height:40px;
    width: 150px;
    margin:30px auto;
    color: rgb(231, 206, 80);;
    font-weight: 600;
    font-variant: small-caps;
    background-color: #0154A0;
    border:none;
}

input[type=submit]:hover {
    background-color: rgba(1, 84, 160, 0.7);
    cursor: pointer;
}

input::placeholder {
    padding-left:10px;
}

header > div {
    width:fit-content;
}

header > div {
    grid-column: 2/3;
}

.grid-container {
    height:70%;
    /* max-width: 1500px; */
    display:grid;
    margin:0 auto;
    justify-content: center;
    grid-template-columns: 60% 40%;
    grid-template-rows: 70%;
}

.left-panel {
    width:100%;
    height:70vh;
    grid-column: 1/2;
    grid-row: 1/2;
    background-image: url("/assets/teamwork.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    opacity: 90%;
}

.right-panel {
    height:100%;
    min-width: 250px;
    max-width: 600px;
    grid-column: 2/3;
    grid-row: 1/2;
}

.right-panel h2 {
    margin: 50px;
    text-align: center;
}

#position-relative-1 {
    color: white;
    font-size: 40px;
    width:70%;
    -webkit-text-stroke: 1px rgb(145, 136, 84);
    margin:10% 20px;
}

#position-relative-2 {
    color: white;
    font-size: 40px;
    width:50%;
    -webkit-text-stroke: 1px rgb(145, 136, 84);
    margin:20% 20px 30px 300px;
}


#footer-follow {
    grid-column: 1/2;
    grid-row: 2/3;
    grid-template-rows: auto repeat(5, auto);
}

#footer-follow li:nth-of-type(1)::before {
    content: '';
    display: inline-block;
    height: 14px;
    width: 14px;
    background-image: url(/assets/ig_logo.png);
    background-size: cover;
    margin-right:10px;
}

#footer-follow li:nth-of-type(2)::before {
    content: '';
    display: inline-block;
    height: 14px;
    width: 14px;
    background-image: url(/assets/fb_logo.png);
    background-size: cover;
    margin-right:10px;
}
#footer-follow li:nth-of-type(3)::before {
    content: '';
    display: inline-block;
    height: 14px;
    width: 14px;
    background-image: url(/assets/youtube_logo.png);
    background-size: cover;
    margin-right:10px;
}
#footer-follow li:nth-of-type(4)::before {
    content: '';
    display: inline-block;
    height: 14px;
    width: 14px;
    background-image: url(/assets/twitter_logo.png);
    background-size: cover;
    margin-right:10px;
}
#footer-follow li:nth-of-type(5)::before {
    content: '';
    display: inline-block;
    height: 14px;
    width: 14px;
    background-image: url(/assets/linkedin_logo.png);
    background-size: cover;
    margin-right:10px;
}
#footer-about {
    grid-column: 2/3;
    grid-row: 2/3;
    grid-template-rows: auto repeat(5, auto);
    
}

#footer-students {
    grid-column: 3/4;
    grid-row: 2/3;
    grid-template-rows: auto repeat(5, auto);
}

#footer-partners {
    grid-column: 4/5;
    grid-row: 2/3;
    grid-template-rows: auto repeat(5, auto);
}

#login-btn {
    grid-column: 2/3;
    transition: all 0.2s ease-in-out;
}


#login-btn {
    transition: all 0.2s ease-in-out;
}

#login-btn::before {
    content: "";
    position: absolute;
    width: 150px;
    height: .1em;
    top: 65px;
    right: 150px;
    background-color: rgb(222,156,24);
    visibility: hidden; 
    transform: scaleX(0);
    transition: all 0.2s ease-out;
}

#login-btn:hover:before {
    visibility: visible;
    transform: scaleX(1);
}

footer ul {
    transition:all .2s ease-out;
}

footer ul::before {
    content: "";
    width:100%;
    height: .1em;
    position:relative;
    top:-5px;
    left:0;
    background-color:rgb(222,156,24);
    visibility:hidden;
    transform: scaleX(0);
    transition:all .2s ease-out;
}

footer ul:hover:before {
   visibility: visible;
   transform: scale(1);
    transition:all .2s ease-out;
}



