
a.five:link {text-decoration:none;}
a.five:visited {text-decoration:none;}
a.five:hover {text-decoration:underline;}




body { 
  margin: 0; 
}

section { 
  padding-top: 0px; 
 }

.sticky { 
  width: 100%;
 }

.fixed {
  position: fixed;
  top:0;
  background-color: rgba(179, 180, 179, 0.3);
 }






body, html {
    height: 100%;
}

.parallax {
    /* The image used */
    background-image: url("imgs-M/New-background.jpg");

    /* Full height */
    height: 100%;

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}






.popup { 
background: rgba(1, 83, 183, 0.9);
      border: 5px solid #FFF; 
      position: absolute; visibility: hidden; 
      font-family: Verdana, Geneva, sans-serif; 
      font-size: small; text-align: justify; 
      padding: 15px; overflow: auto; 
      z-index: 2; 
} 
.popup_bg { 
      position: absolute; 
      visibility: hidden; 
      left: 0px; top: 0px; 
      filter: alpha(opacity=70); /* for IE */ 
      opacity: 0.7; /* CSS3 standard */ 
      background-color: #1d1d1d; 
      z-index: 1; 
} 
.close_button { 
      font-family: Verdana, Geneva, sans-serif; 
      font-size: small; font-weight: bold; 
      float: right; color: red;
      display: block; text-decoration: none; 
      border: 2px solid red; 
      padding: 0px 3px 0px 3px; 
} 
body { margin: 0px; } 
--> 







.container {
    position: relative;
    width: 95%;
}

.image {
  opacity: 1;
  display: block;
  width: 100%;
  height: auto;
  transition: .5s ease;
  backface-visibility: hidden;
}

.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%)
}

.container:hover .image {
  opacity: 0.5;
}

.container:hover .middle {
  opacity: 1;
}

.text {
  background-color: #216cb1;
  color: white;
  font-size: 18px;
  padding: 16px 32px;
cursor:pointer;
  font-family: Arial;
}






.button {
background-color: Transparent;
border: 0px solid #4CAF50;
    color: #4CAF50;
    padding: 16px 32px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    cursor: pointer;
}

.button1 {
    color: white; 
    border: 2px solid white;
}

.button1:hover {
    background-color: #4CAF50;
border: 2px solid #4CAF50;
    color: white;
}








html,body {
  margin: 0;
}
#navbar.navbar_fixed {
  position:fixed;
  top:0px;
  width:100%;
background-color: #1d1d1d;
}
#navbar.navbar_fixed img{
  top:0px;
  width:50%;
valign:top;
}
#navbar.navbar_fixed font{
font-size:0px; font-family:Arial; color:white;font-weight: bold;
}
#navbar.navbar_absolute {
  position:absolute;
  top:0px;
  width:100%;
  height:100px;
background-color: Transparent;
}