
/* Page body Style */
body {
    background-image: url('images/bg-black.jpg');
    background-color: #000000;
    font-family: Comic Sans MS;
}

/* Navigation bar style */
.nav-item {
    margin-top: 8px;
    background-color: #6A0201;
    width: 100%;
    height: 40%;
    margin-left: 15px;
    color: #ffffff;
    padding-left: 5px;
    font-size: 13px;
}
.nav-item:hover {
    text-decoration: underline;
    color: #ffffff;
}

/* Text Style */
#red-color-text {
    color: red;
    text-transform: uppercase;

}

#yellow-color-text {
    color: #FFE6B1;

}

/* White color link */

.white-color-link {
    color: white;
    margin-left: 20px;
}
.white-color-link:hover {
    text-decoration: underline;
    color: rgb(179, 176, 176);
}


/* Page links style */

.footlink {
    color: #FFE6B1;
    text-decoration: none;
}
.footlink:hover {
    color: red;
    text-decoration: underline;
}

/* Horizontal line */

#horizontal-line {
    border-top: 2px solid #ffffff;
    width: 100%;
}

/* Footer style */

.footer {
    background-color: rgb(59, 59, 59);
    text-align: center;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
	padding: 10px;
    
}
.footer > .r_link {
    color: #ffffff;
    text-decoration: none;
    text-align: center;
	margin: 10px;
	font-size: 16px;
}

.footer > .r_link:hover {
    background-color: rgb(230, 223, 223);
    color: #000000;
}

/* Country Flag Style */

.flag {
    width: 30px;
    height: 26px;
}

/* Image Gallery Style */
.image-gallery-link {
    color: #FFCC02;
    font-size: 13px;
    text-align: center;
}
.image-gallery-link:hover {
    color: #FFCC02;
    text-decoration: underline;
}

.halfspan {
    width: 49%;
    float: left;
}
.halfspan.right {
    float: right;
}
.career_form h2 {
    color: #631a35;
    margin-bottom: 10px;
    padding-bottom: 5px;
    display: block;
    font-size: 24px;
    font-weight: 400;
    border-bottom:1px solid #eee;
}
.career_form label {
    margin: 5px 0 0 0;
    display: block;
    font-weight: 400;
}
input.c-input, textarea.c-input {
    width: 100%;
    float: left;
    height: 40px;
    padding: 10px;
    color: #333;
    border: 1px solid #ccc;
    margin: 0 0 15px 0;
    font-size: 14px;
    font-weight: 300;
    transition: all .5s;
    background: #fff;
}
input.c-input[type=file] {
    padding: 0 10px;
}
input.c-input:hover, textarea.c-input:hover,
input.c-input:focus, textarea.c-input:focus {
    border: 1px solid #3e4095;
    outline: 0px;
    transition: all .5s;
}
textarea.c-input {
    height: 80px;
}
input.c-btn {
    float: left;
    margin-top: 15px;
    padding: 10px 30px;
    background: #269da1;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    border: 0px;
    transition: all .5s;
}
input.c-btn:hover, input.c-btn:focus {
    background: #FFCC02;
    transition: all .5s;
}
input.c-btn, input.c-btn:focus {
    background: #FFCC02;
    transition: all .5s;
}

label {
   
    color: #fff!important;
}

/* Image Gallery */

.gallery-block{
    padding-bottom: 60px;
    padding-top: 60px;
  }
  
  .gallery-block .heading{
      margin-bottom: 50px;
      text-align: center;
  }
  
  .gallery-block .heading h2{
      font-weight: bold;
      font-size: 1.4rem;
      text-transform: uppercase;
  }
  
  .gallery-block.compact-gallery .item{
    overflow: hidden;
    margin-bottom: 0;
    background: black;
    opacity: 1;
  }
  
  .gallery-block.compact-gallery .item .image{
    transition: 0.8s ease;
  }
  
  .gallery-block.compact-gallery .item .info{
    position: relative;
      display: inline-block;
  }
  
  .gallery-block.compact-gallery .item .description{
    display: grid;
      position: absolute;
      bottom: 0;
      left: 0;
      color: #fff;
      padding: 10px;
      font-size: 17px;
      line-height: 18px;
      width: 100%;
      padding-top: 15px;
      padding-bottom: 15px;
      opacity: 1;
      color: #fff;
      transition: 0.8s ease;
      text-align: center;
      text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
      background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.39));
  }
  
  .gallery-block.compact-gallery .item .description .description-heading{
    font-size: 1em;
    font-weight: bold;
  }
  
  .gallery-block.compact-gallery .item .description .description-body{
    font-size: 0.8em;
    margin-top: 10px;
    font-weight: 300;
  }
  
  @media (min-width: 576px) {
  
    .gallery-block.compact-gallery .item .description {
      opacity: 0; 
    }
  
    .gallery-block.compact-gallery .item a:hover .description {
      opacity: 1; 
    } 
  
    .gallery-block .zoom-on-hover:hover .image {
      transform: scale(1.3);
      opacity: 0.7; 
    }
  }
  