
*
{
    margin: 0;
    padding: 0;
}
body
{
    /* background: linear-gradient(135deg, #5ea3d0, #bf8dd2); */
    background: linear-gradient(135deg, rgb(2, 2, 223), rgb(0, 0, 68));
}
#overview
{  
    background: #fff;
    padding:0 1em;
    
}
#overview ul
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style:none;
}
#overview img
{
    width: 10vmin;
    height: 8vmin;
    /* float: right; */
}
#overview #company-name
{
    font-size: 5vmin;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    text-decoration: underline;
}
/* -- scoial icons -- */
.social-icons
{
    position: absolute;
    top: 10em;
    left: 0;
    position: fixed;
}
/* -- section -- */
.columns
{
    width: 100%;
    display: grid;
    grid-template-columns: 28% 44% 28%;
}
.column
{
    padding:1em;
    font-size: 1.2em;
    cursor: pointer;

}
.courses
{
    text-align: center;
    color: #fff;
}
.courses h3
{
    font-size: 1.5em;
    color: #fff;
    font-weight: bold;
    position: relative;
}
.courses h3::before
{
    content: "";
    position:absolute;
    width: 50px;
    bottom: 0;
    height: 3px;
    border-radius: 5px;
    background-color: orange;
}
.courses p
{
    overflow: auto;

}

.courses p:hover
{
    color: orange;
}

.form .container
{
    padding: 0 1em;
    box-shadow: 1px 1px 10px 2px white;
    border: 2px solid white;
    
}
.container h1
{
    font-size: 3vmax;
    color: #fff;
    text-align: center;
    text-shadow: 2px 2px 2px black;
    border-bottom: solid 1px white;
    padding-bottom: 6px;
    margin-bottom: 15px;
}
.user-input-box
{
    width: 100%;
}
.user-input-box label
{
    font-size: 1em;
    color: #fff;
    padding-bottom: 2em;
}
.user-input-box input
{
    width: 100%;
    padding: 3px 5px;
    font-size: 0.8em;
    margin-bottom: 10px;
    margin-top: 5px;
    border: none;
    outline: none;
    border-radius: 3px;
}
.user-input-box input:hover,
.user-input-box select:hover
{
    box-shadow: 1px 2px 12px 1px skyblue;
}
.user-input-box select
{
    width: 101%;
    padding:3px 5px;
    font-size:0.8em;
    margin-bottom: 10px;
    margin-top: 5px;
    border: none;
    outline: none;
    border-radius: 3px;
    background-color: #fff;
}
.container .form-submit-btn  input
{
    width: 101%;
    color: #fff;
    background:  rgb(0, 0, 87);
    text-align: center;
    border-radius: 3px;
    padding: 3px 0;
    font-size: 1.8vmax;
    font-weight: 500;
    border: none;
    outline: none;
    margin:0.3em 0;
}
.form-submit-btn input:hover
{
    background: rgb(4, 4, 207);
    color: rgb(255, 255, 255);
    box-shadow: 1px 1px 4px 1px #fff;
}
footer
{
    background: #fff;
    padding: 1em 4em 0 4em;
}
footer h2
{
    font-size: 2vmax;
    color: #000;
    position: relative;
}
footer h2::before
{
    content: "";
    position:absolute;
    width: 30px;
    bottom: 0;
    height: 3px;
    border-radius: 5px;
    background-color: orange;
}
.info
{
    padding:0 2em 0.5em 2em;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.info h4
{
    font-size: 1.5vmax;
    color: #000;
    margin-bottom: 5px;
}
.info div
{
    margin-left: 5px;
    margin-top: 10px;
}
.info span a
{
    text-decoration: none;
    color:#000;
}
.info img
{
    margin-right: 5px;
}

.copyright
{
    text-align: center;
    font-size:10px;
    color: #000;
   background: rgb(224, 224, 224);
}



@media (max-width:800px)
{
    .columns
    {
        display: grid;
        grid-template-columns:repeat(1, 1fr)
    }
    .courses
    {
        display: none;
    }
    .social-icons
    {
        display: none;
    }
   
    footer
    {
    padding: 1em 1em 0.5em 1em;
    }
     .container .form-submit-btn #submit 
    {
        display: block;
        margin-top: 0.5em;
        margin-bottom: 0.2em;
    }
   
}
