* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif; 
    /*to stick at bottom*/
    display: grid;
    grid-template-rows: 1fr auto;
}

/*NAVIGATION STYLE*/
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 1rem;
    color: white;
    border-bottom: black 2px solid;
}

.menu-icon {
    font-size: 2rem;
    cursor: pointer;
    color: black;
}

.brand-title a {
    font-size: 2rem;
    font-variant: small-caps;
    color: black;
    font-weight: 700;
    text-decoration: none;
}

.blue{
color:#47a0ff;
}

/* The side navigation menu */
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: white;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidenav a {
    padding: 16px 15px;
    text-decoration: none;
    font-size: 1.5rem;
    font-variant: small-caps;
    text-align: center;
    color: black;
    display: block;
    transition: 0.3s;
    font-weight: 500;
}

#special{
  background: #1c89ff;
  color: white;
  width: 60%;
  margin: 0 auto;
  padding: 15px;
  border-radius: 5px;
  transition: all 1s;
}

#special:hover{
   background: #124c86;
}

.sidenav a:hover {
    color: #027bfd;
}

.sidenav .closebtn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    cursor: pointer;
}

/* overlay */
.overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
    display: none;
}

/*Contact Info Style*/
.container {
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 34px;
    margin-top: 97px;
  }
  
  h2 {
    text-align: center;
    font-weight: 700;
    color: #000000;
    font-size: 2.2em;
    letter-spacing: 1px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-variant: small-caps;
  }
  
  .blue{
    color: #027bfd;
  }
  
  .contact-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
  }
  
  .contact-table tr {
    border-bottom: 2px solid #ccc;
  }
  
  .contact-table td {
    padding: 10px;
    font-family: 'Tahoma', sans-serif;
  }

  .contact-table td:first-child {
    font-weight: bold;
    width: 150px;
  }
  
  .titles{
    font-variant: small-caps;
    font-size: 18px;
  }



/*Footer Style*/
footer{
  background-color: #f5f5f5;
  height: auto;
  margin-top: 14%;
  
}

.footer-content{
 display: flex;
 justify-content: center;
 flex-direction: column;
 padding-top: 10px;
}


.socials{
 list-style: none;
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 2rem 0 2rem 0;
}

.socials li a i{
 margin: 0 15px;
 text-decoration: none;
 color: black;
 font-size: 2rem;
 transition: color .4s ease;
}

.footer-bottom{
 background: #000;
 padding: 5px 0;
 text-align: center;
 font-family:'Tahoma', sans-serif;
}

.footer-bottom p {
  color:white;
}

.footer-bottom p:hover{
  text-decoration: underline;
}




/* -------Media Query for mobile view------- */

/*nav icon*/
@media screen and (max-width: 768px) {
    .menu-icon {
        display: block;
    }
}

/*Logo Nav*/
@media (max-width: 700px) {
  .brand-title a {
    font-size: 1.7rem;
  }
}

/*contact*/
@media screen and (max-width: 700px) {
    h2 {
        font-size: 35px;
    }
}
