/* latin - font face defined to be used from local file on server insted of google api fonts CDN */
@font-face {
  font-family: 'Josefin Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Josefin Sans'), local('JosefinSans'), url(../josefin-sans.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}


body {
    background-color: rgb(206, 213, 217);
}

.caption_title {
    font-stretch: ultra-condensed;
    font-size: 1em;
    font-weight: bold;
    font-family: 'Josefin Sans', serif;
    color: rgb(14,47,68);
    margin-top: -2px;
    	
}

.caption_desc {
    font-stretch: ultra-condensed;
    font-size: 0.86em;
    font-family: 'Josefin Sans', serif;
    color: rgb(14,47,68);
    margin-top: -10px;
}

.container {
    margin-top: 125px;
    margin-bottom: 50px;
    padding: 0% 5% 0% 5%;
}

.img-responsive {
    margin-left: auto; 
    margin-right: auto;
    height: 55px;
    width: 55px;
}

.jumbotron {
    height: 100px;
    border-bottom: 5px solid rgb(255,255,255); 
    background-color: rgb(14,47,68);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

#main_image {
    margin-top: -15px;
    width: 270px;
    height: 60px;
}

.sharing-bar {	                                             
    width: 100%;
    text-align: center;
    position: fixed;
    left: 50%;
    top: 87%;
    bottom: 0px;
    transform: translate(-50%);
    border-top: 2px solid white;
    background-color: rgba(14,47,68, 0.75);
}

.sharing-btn {
    display: inline-block;
    margin-left: 10px;
    padding-top: 5px;
    margin-top: 3px;
    font-size: 0.9em;
}

.thumbnail {
    border: 3px solid rgb(62,88,105);
    background-color: rgb(158,171,180);
    height: 160px;
    width: 47%;
    padding: 5px 1px 1px 1px;
    text-align: center;
    float: left;
    margin-left: 5px;
}
/*
.thumbnail:hover {
    border: 3px solid rgb(14,47,68);
    background-color: rgb(62,88,105);	
}
*/
.thumbnail>a:hover {
    text-decoration: none;
}

.thumbnail:hover .caption_title,
.thumbnail:hover .caption_desc {
    color: rgb(206, 213, 217);
}

/*
#wcf {
    animation-name: blinking_border;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
}
*/

@keyframes blinking_border {
    from {border: 3px solid rgb(0,255,0);}
    to {border: 3px solid rgb(62,88,105);}
}


/* CSS HOVER SPECIAL EFFECTS LIBRARY */

.hvr-rectangle-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  background: rgb(158,171,180);
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-rectangle-out:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(62,88,105);
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-rectangle-out:hover, .hvr-rectangle-out:focus, .hvr-rectangle-out:active {
  color: white;
}
.hvr-rectangle-out:hover:before, .hvr-rectangle-out:focus:before, .hvr-rectangle-out:active:before {
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* Buzz Out */
@-webkit-keyframes hvr-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }

  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}

@keyframes hvr-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }

  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}

.hvr-buzz-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-buzz-out:hover, .hvr-buzz-out:focus, .hvr-buzz-out:active {
  -webkit-animation-name: hvr-buzz-out;
  animation-name: hvr-buzz-out;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/**********************************************************************************************************************/
/*                  SPECIAL SETTING FOR HORIZONTALLY TURNED MOBILE SCREENS    (screen height < 400px)                 */
/**********************************************************************************************************************/
@media screen and (max-height: 400px) {

    .container {
        padding: 0px 0px 0px 0px;
    }

    .caption_title {
    	font-size: 1em;
        font-weight: bold;
    }

    .caption_desc {
        font-size: 0.85em;
    }

    .jumbotron {
        height: 75px;
    }

    #main_image {
	    margin-top: -15px;
        width: 229px;
        height: 51px;
    }

    .sharing-bar {
        top: 79%;
    }

    .thumbnail {
        height: 160px;
        width: 47%;
        padding: 3px 0px 0px 0px;
    }

    .row {
	    margin-left: auto;
	    margin-right: auto;
	    width: 100%;
	    padding: 0% 0% 0% 0%;
    }
}


/**********************************************************************************************************************/
/*                                      MOBILE SCREEN CSS SETTINGS    (screen width > 400px)                          */
/**********************************************************************************************************************/
@media screen and (min-width: 400px) {
    .container {
        padding: 0% 10% 0% 10%;
    }
}

/**********************************************************************************************************************/
/*                                      TABLET SCREEN CSS SETTINGS    (screen width > 550px)                          */
/**********************************************************************************************************************/
@media screen and (min-width: 550px) {

    .caption_title {
    	font-size: 1.2em;
    }

    .caption_desc {
        font-size: 1.1em;
    }

    .container {
	    margin-left: 4%;
	    margin-right: 4%;
	    margin-top: 125px;
        width: 92%;
        padding: 0% 0% 0% 2%;
    }

    .jumbotron {
        height: 100px;
    }

    #main_image {
	    margin-top: -15px;
        width: 270px;
        height: 60px;
    }

    .thumbnail {
        height: 195px;
        width: 195px;
        padding: 10px;
        margin-left: 10px;
    }

    .row {
	    margin-left: auto;
	    margin-right: auto;
	    width: 100%;
	    padding: 0% 0% 0% 14%;
    }
}

/**********************************************************************************************************************/
/*                                      TABLET SCREEN CSS SETTINGS    (screen width > 768px)                          */
/**********************************************************************************************************************/
@media screen and (min-width: 768px) {

    .container {
	    margin-top: 225px;
    }

    .jumbotron {
        height: 200px;
    }

    #main_image {
	    margin-top: -15px;
        width: 515px;
        height: 114px;
    }

    .sharing-bar {
        top: 90%;
    }

}

/**********************************************************************************************************************/
/*                                      DESKTOP SCREEN CSS SETTINGS    (screen width > 1280 px)                       */
/**********************************************************************************************************************/

@media screen and (min-width: 1280px) {
    .caption_title {
    	font-size: 1.8em;
        font-weight: bold;
	    margin-top: 5px;
    }

    .caption_desc {
        font-size: 1.25em;
	    margin-top: 5px;
    }
    
    .container {
	    margin-left: 4%;
	    margin-right: 4%;
	    margin-top: 350px;
        width: 90%;
        padding-left: 20px;
        padding-right: 0;
    }

    .img-responsive {
        height: 75px;
        width: 75px;
    }


    .jumbotron {
        height: 275px;
    }

    #main_image {
        width: 750px;
	    height: 180px;
    }

    .row {
	    margin-left: auto;
	    margin-right: auto;
	    width: 90%;
	    padding-left: auto;
	    padding-right: auto;
    }

    .sharing-bar {	                                             
        width: 100%;
        top: 90%;
        text-align: center;
    }

    .sharing-btn {
        display: inline-block;
        margin-left: 10px;
        padding-top: 15px;
        font-size: 0.9em;
    }

    .thumbnail {
        height: 250px;
        width: 250px;
        padding: 10px;
        margin-left: 10px;
    }

}