*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.navigation{
    background: black;
}
.glow {
    animation: glow 1s ease-in-out infinite alternate;
}
    
.brand{
    font-size: 40px !important;
    font-weight: bold ;
}
.menu{
    font-size: 20px !important;
    color: white !important;
    margin-left: 20px;
    margin-right: 20px;
}
.menu:hover{
    padding: 11px;
    background-color: white;
    color: rgb(239, 53, 167) !important;
    border-radius: 15px;
}

/* Middle */
.mid{
    width: 100%;
    height: 110vh;
}
.midrap{
    width: 90%;
    margin: auto;
}
.midrap h1{
    text-align: left;
    font-family: 'Times New Roman', Times, serif;
    color: violet;
    padding-top: 15px;
}
.midrap1{
    display: grid;
    grid-template-columns: auto auto auto auto;
    grid-column-gap: 20px;
    grid-row-gap: 15px;
    padding-top: 15px;
}
.img-wrapper{
    display: inline-block;
    border-radius: 15px;
    overflow: hidden;
}
.inner-img {
    transition: 0.3s;
}
.inner-img:hover {
    transform: scale(1.1);
}

/* Middle */
.mid1{
    width: 100%;
    height: 310vh;
}
.midrap2{
    width: 90%;
    margin: auto;
}
.midrap2 h1{
    text-align: left;
    border-left: 4px solid red;
    padding-left: 8px;

}
.midrap3{
    display: grid;
    grid-template-columns: auto;
    grid-row-gap: 10px;
    margin-top: 15px;
}
.box{
    margin-top: 10px;
    display: grid;
    grid-template-columns: auto auto;
    grid-column-gap: 20px;
    border-bottom: 1px solid #111;
}
.box1 img{
    width: 100%;
    height: 100%;
}



/* Footer */
.foot{
    width: 100%;
    height: 48vh;
    background-color: #af043d;
    margin-top: 2px;
}
.footrap{
    width: 80%;
    margin: auto;
    display: grid;
    grid-template-columns: auto auto auto;
    grid-column-gap: 30px;
}
.box11 h2{
    text-align: center;
    padding-top: 20px;
    color: white;
    font-size: 30px;
    border-bottom: 2px solid wheat;
}
.box11 p{
    text-align: justify;
    padding-top: 15px;
    color: snow;
    font-size: 20px;
}
.box11 h5{
    padding-top: 20px;
    color: wheat;
}
.box11 a{
    text-decoration: none;
    color: white;
    font-size: 20px;
}
.box11 a:hover{
    text-decoration: underline;
    color: wheat;
}
.footer-social-links{
    font-size: 20px;
    text-align: left;
    margin-top: 20px;
}
.footer-social-links a{
    width: 30px;
    height: 30px;
    line-height: 25px !important;
    position: relative;
    margin: 0 5px;
    text-align: center;
    display: inline-block;
    color: #111;
    
    -webkit-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);  
    -moz-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000); 
    -o-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -ms-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000); 
    transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}
.footer-social-links a i,
.footer-social-links a span{
    position: relative;
    top: 2px;
    left: 1px; 
}
.footer-social-links a:before{
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #f8f6f6;
    
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    
    -webkit-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);  
    -moz-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000); 
    -o-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -ms-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000); 
    transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    
}
.footer-social-links a:hover{
    color: #fff;
}
.footer-social-links a:hover:before{
    background: #111;
}
  
  /* Footer */
.footer1{
    width: 100%;
    height: 10vh;
    margin-top: 1px;
    background-color: plum;
}
.footrap1{
    width: 80%;
    margin: auto;
}
.footrap1 p{
    padding-top: 20px;
    color: purple;
    text-align: center;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 25px;
}
#copy{
    color: white;
}