::-webkit-scrollbar {
    display: none;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body{
    font-family: Montserrat;
    display: grid;
    justify-items:center;
    background-color: white;
    min-height: 100vh;
    
}

/* Nav Section */

.header{
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    width: 100%;
    position: sticky;
    top: 0;
    font-weight: 650;
    font-size: 18px;
}

li.nav{
    display: flex;
    align-content: center;
}

nav.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 96%;
    padding: 15px;
}

.checkbtn{
    font-size: 30px;
    cursor: pointer;
    display: none;
}

#check{
    display: none;
}

ul.main-list {
    width: 60%;
    list-style-type: none;
    display: flex;
	justify-content: space-around;
}

a.nav-items:hover{
    transition-duration: 0.4s;
    text-decoration: underline #950000;
    color:#950000;
    cursor: pointer;
}


a.nav-items{
    display: block;
    align-content: center;
    text-decoration: none;
    color: black;

}

button.CVbutton{
    height: 50px;
    width: 130px;
    color:white;
    background-color: #950000;
    box-shadow: 3.5px 3.5px black;
    border-radius: 25px; 
    overflow: hidden;
    cursor: pointer;
    transition-duration: 0.3s;
    font-size: 16px;
    font-weight: 650;
    
}

li.mobile-button{
    display: none;
}

.CVbutton:hover {
    background-color: white;
    color: #950000;
}


hr.nav{
    width: 100%;
    height: 3px;
    color: #950000;
    background-color: #950000; 
}

.main{
    width: 90%;
    display: grid;
    justify-items: center;
}
/* contact Page */

section.contact-section{
    height: 75vh;
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: flex-end;
}

h1.connect-heading{
    padding-right:5%;
    color:#D00000;
    font-size: 65px;
    font-weight: 600;
}

p.contact-about{
    padding-top: 30px;
    padding-right: 5%;
    color: black;
    font-size: 18px;
    font-weight: 400;
}

/* form */

form.contact-form{
    display:flex;
    flex-direction: column;
    justify-content: center;
}

section.basic{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

input.basic{
    height: 80px;
    width: 300px;
    margin: 5px;
    padding: 20px;
    background-color: #FFF3F3;
    color: rgba(0, 0, 0, 0.60); 
    font-size: 18px;
    box-shadow: 5px 5px 0px rgba(101.79, 0, 0, 0.80);
}

textarea.basic{
    height: 80px;
    width: 300px;
    margin: 5px;
    padding: 20px;
    background-color: #FFF3F3;
    color: rgba(0, 0, 0, 0.60); 
    font-size: 18px;
    box-shadow: 5px 5px 0px rgba(101.79, 0, 0, 0.80);
}

/* Footer Section */

footer.footer-container {
    height: 55vh;
    min-height: 450px;
    width: 100%;
    background-color: #950000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    margin-top: 5%;
    font-size: 18px;
  }
    
  div.footer-content{
    width: 75%;
    height: 80%;
    align-content: center;
  }
    
  div.links-section{
    height: 50%;
    display: flex;
    justify-content: space-around;
  }
    
  ul.footer-ul{
    list-style: none;
    
    li{
    margin-bottom: 13px;
    }
  }
  
  a.footer {
    color: white;
    text-decoration: none;
  }
  
  a.footer:hover {
    color: yellow;
    transition: 0.3s;
    text-decoration: underline;
  }
    
  div.links{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    }
    
  .footer-h3{
    margin-bottom: 20px;
    }
    
  div.footer-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    }
    
  hr.footer{
    margin: 3% 0 3% 0;
    height: 3px;
    color: white;
    background-color: white;
    }
   
  p.footer{
    text-align: center;
    font-size: 15px;
    }
  
  div.logoFooter{
    width:20%;
    display: block;
    align-content: center;
  }
  
  img.logoFooter{
    width: 100%;
    height:auto;
    object-fit: cover;
  }
