*{
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    margin: 0;
}
#container{
    width: 100%;
    height: auto;
}
/*  NAVIGATION BAR  */
.navi{
    background-image: url(../pics/front3.jpg);
    width: 100%;
    height: 753px;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}
#logo{
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    padding: 12px;
    padding-top: 25px;
    margin-left: 20px;
    position: absolute;
    font-weight: bold;
    background-color: #262525;
    color: #d9e4e6;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.links{
    margin-left: 220px;
}
.links .navbutton{
    color: #252728;   
    text-decoration: none;
    margin: 0;
    float: left;
    text-align: center;
    font-size: 19px;
    padding-top: 5px;
    padding-right: 5px;
    margin-top: 20px;
    line-height: 20px;
    display: block;
    margin-left: 45px;
    position: relative;

}
.links .navbutton:after{
    display:block;
  content: '';
  border-bottom: solid 3px #ffffff;  
  padding-bottom: 5px;
  transform: scaleX(0);  
  transition: transform 250ms ease-in-out;
}
.social{
    background-color: black;
    padding: 12px;
    display: table;
    float: right;
   font-size: 15px;
   position: relative;
   margin-top: 10px;
   padding-left: 20px;
   line-height: 20px;
   border-top-left-radius:20px;
   border-bottom-left-radius:20px; 
}
.social a{
    margin-right: 35px;
    color: #ebebeb;
}
/*  NAVIGATION BAR HOVER EFFECT  */
.links a:hover{
    color: #ffffff;
}
.links a:hover:after{
    transform: scaleX(1);
}
.social a:hover{
    color: #686868;
}

/* DROP DOWN */
.dropdown{
    margin: 0;
    padding:0;
    padding-left: inherit; 
    float: left;
}
.dropdown-content{
    position: absolute;
    min-width: 100px;
    float: none;
    padding: 0px 0px;
    margin-left: 45px;
    font-size: 16px;
    background-color: #222222;
    display: none;
    margin-top: 53px;
    box-shadow: 0px 8px 16px 0px #00000033;
}
.dropdown-content a{
    float: none;
    color: rgb(255, 255, 255);
    padding: 2px 12px;
    margin: 17px 0px;
    text-decoration: none;
    display: block;
    text-align: center;
}
.dropdown:hover .dropdown-content{
    display: block;
}
.dropdown-content a:hover{
    color: #aaaaaa
}
/* SUB DROP DOWNS */
.subdropdown-content{
    margin-left: 125.5px;
    display: none;
    top: 40px;
    position: absolute;
    background-color: #333333;
}
.subdropdown:hover .subdropdown-content{
    display: block;
}
/* PICTEXT  */
.pictext h1{
    color: #1b1a1f;
    font-size: 35px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    letter-spacing: 20px;
}
.pictext p{
    color: #e6e6e6;
    top: 49%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    letter-spacing: 20px;
    font-size: 17px;
    font-weight: bold;
    padding: 12px;
}
.pictext a{
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    text-align: center;
    letter-spacing: 10px;
    padding: 10px;
    /* border: #1b1a1f solid 2px; */
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.pictext a p{
    top: 85%;
    left: 55%;
    display: none;
    font-size: 30px;
    padding: 0;
    margin: 0;
    margin-top: 20px;
}
.pictext a:hover p{
    display: block;
}
.pictext a:hover{
    background-color: #1b1a1f;
    color: #e0e0e0;
    transition-duration: 0.6s;
}
/* FORM */
#form{
    width: 100%;
    height: 950px;
    margin: 0;
    background-color: #e6e6e6;
    position: relative;
}
#form h1{
    margin-top: 0;
    font-family: sans-serif; 
    color:#505050; 
    text-align: center; 
    padding-top: 50px;
    letter-spacing: 10px;
}
#form .contactpara {
    font-family: sans-serif; 
    font-size: 20px;
    color:#252525; 
    text-align: center; 
    letter-spacing: 10px;
}
.center{
    min-width: 1200px;
     padding-top: 100px;
     margin-left: 100px;
}
.row{
    margin: 8px ;
}
.row,
.row > .column {
  padding: 8px;

}

.column1{
    float: left;
    width: 700px;
    min-height: 405px;
}
.column2{
    float: left;
    width: 500px;
    min-height: 405px;
}
.info{
    width: 600px;
}
input{
    height: 55px;
    margin-top: 15px;
    width: 550px;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid #e6e6e6;
}
select{
    width: 300px;
    height: 50px;
    margin-top: 15px;
    padding: 12px;
    border-radius: 20px;
    border: 1px solid #e6e6e6;
    color: #505050;
    
}
textarea{
    font-family: sans-serif;
    width: 550px;
    margin-top: 15px;
    padding: 19px;
    border: 1px solid #e6e6e6;
    border-radius: 20px;
}
input:hover,select:hover,textarea:hover{
    border: 1px solid #666666;
}
input, textarea, select{
     outline: none;
     box-shadow: 0px 4px 9px 0px #3a3a3a41;
}
.button{
    width: 550px;
    /* background-color: #222222;0 */
    background-image: linear-gradient(to right, #2C3E50 , #4CA1AF);
    border: none;
    color: white;
    padding: 16px 32px;
    border-radius: 20px;
    margin-top: 17px;
    text-align: center;
    font-size: 16px;
    letter-spacing: 5px;
    outline: none;
    cursor: pointer;
}
.button:hover{
    opacity: 0.8;
    transition: 0.3s;
}
.about-us{
    background-color: #fafafa;
    margin-top: 30px;
    padding: 20px;
    padding-left: 30px;
}
.about-us h2{
    font-family: sans-serif; 
    color:#505050; 
    text-align: center; 
    padding-top: 5px;
    letter-spacing: 8px;
}
.graytext{
    color: #5f5f5f;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin-top: 1px;
    font-size: 15px;
    font-weight: bold;
}
/* FOOTER */
footer{
    background-color: #222222;
    height: 60px;
    text-align: center;
}
footer h4{
    color: #e6e6e6;
    margin: 0;
    padding: 0;
    padding-top:20px; 
}