@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro");

html body{
    display:flex;
    color:#1C2021;
    margin:0 0 0 0;
    padding-top:0;
    font-family: 'Source Sans Pro', sans-serif;
    background: white;
    height:100%;
    padding-bottom:10px;
}
body:hover{
    cursor:default;
}


.modal {
    display: none; 
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
 
}


.modal-header {
    padding: 2px 16px;
    background-color: #7e83e7;
    color: white;
}


.modal-body {padding: 2px 16px;}



.modal-content {
  position:absolute;

    background-color: #fefefe;
    margin-left:25%;
    margin-right:25%;
    margin-top:25vh;
    padding: 0;
    border: 1px solid #888;
    width: 50%;
 
}








.noselect{
    -webkit-touch-callout: none; 
    -webkit-user-select: none;   
    -khtml-user-select: none;    
    -moz-user-select: none;      
    -ms-user-select: none;       
    user-select: none;  
    cursor:default;
}


.content{
    
    flex-direction: column;
   
    margin-right:auto;
    margin-left:auto;
    display:flex;
    height:auto;
    width:100%;
        box-shadow: 3px 4px 5px 3px rgba(0,0,0,0.53);
    
}



.title {
    display: inline-flex;
    color:white;
    background-color:#1a237e;
    padding-bottom:5px;
    margin-left:0;
    margin-right:0;
    flex-direction: row;
    height:150px;
    width:100%;
  
    
    
}
.logo {
   
    width:200px;
    
    
}

.slogan{
   text-align: center;
    margin-top: auto;
    margin-bottom: auto;
    font-size:25px;
    padding:20px;
    margin-left: auto;
    margin-right: auto; 
}

.nav{
    
    display:flex;
    margin-top: 0;
    width:100%;
    justify-content: space-around;
    text-align: center;
    flex-wrap: nowrap;
    font-size: 30px;
  box-shadow: 0px 3px 3px -2px rgba(0,0,0,0.75);
 
   
}



a{
    text-decoration: none;
    color:black;
}

a:hover{
    color:#1a237e;
    font-weight: 900;

}

.sidebar a{
    color:white;
}

.products {
    padding-top:10px;
    padding-bottom:10px;
    width:100%;
    color:black;
   
    background-color: #e0e0e0;
}
.support {
    padding-top:10px;
    padding-bottom:10px;
    width:100%;
  color:black;
background-color: #e0e0e0;
   
}





.left {
    
    width:75%;
    display:flex;
    flex-direction: column;
    
}
.right {
    justify-content: center;
     width:25%;
    display:flex;
    flex-direction: column;
    
}


.wrapper {
   display:flex;
  
}

.writing{
    width:90%;
    display:flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
   margin-top:5%;
    padding-bottom: 40px;
    
}


.sidebar{
    display:inline-flex;
    flex-direction: column;
    width:100%;
    height:100%;
    justify-content: space-around;
   
    color:white;
    padding-top:50px;
    padding-bottom:50px;
    margin-bottom: auto;
    
   
}

.sideitem {
    text-align: center;
    width:80%;
   
   box-shadow: 0px 0px 3px 1px rgba(0,0,0,0.75);
    margin-left: auto;
    margin-right: auto;
    background-color: #7e83e7;
    margin-top:10px;
    margin-bottom:10px;
    padding-top:10%;
    padding-bottom:10%;
 
}


.quote{
    display:flex;
    margin-bottom:40px;
    margin-left: auto;
    margin-right: auto;
    padding-top:20px;
    padding-bottom: 28px;
    font-size: 24px;
    width:80%;
    box-shadow: 0px 0px 3px 1px rgba(0,0,0,0.75);
    font-weight: 400;
    justify-content: center;
    align-self: flex-end;
    background-color: #e0e0e0;
    color:black;
}



.footer {
    display:flex;
    font-size: 20px;
    padding-top:30px;
    padding-bottom:20px;
    font-size: 15px;
    justify-content: center;
    flex-wrap: nowrap;
    width:100%;
    background-color:#1a237e;
    color:white;  
    align-self: flex-end;
}



@media screen and (min-width: 1000px) {
    .content{
        width:900px;  
    }
    
    .modal-content {
      display:block;
        left:0;
        right:0;
        margin-left:auto;
        margin-right:auto;
        width:450px;
    }
}

@media screen and (max-width: 500px) {
    .sidebar{
        flex-direction: row; 
    }
    .wrapper{
        flex-direction: column;
    }
    .right {
        flex-direction: column-reverse;
        width:100%;
    }
    .left{
        width:100%;}
    
   
}








