
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap');
body {
  background-color: #F3F3F3;
  font-family: 'Open Sans', sans-serif;
}
.mybin{
        position: absolute;
    z-index: 1;
   
    width: 1vw;
        height: auto !important;
   left: 53.8vw;
    top: 35.4%;
}
.item-image{
  width: 100%;
}
.home {
  width: 100%;
  
  height: 100vh;
  position: relative;
  background-image: url(https://images.unsplash.com/photo-1444927714506-8492d94b4e3d?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&s=067f0b097deff88a789e125210406ffe);
  background-image: url(images/gg.jpg);
  background-size: cover;
  background-position: center center;
}

.m-header{
        height: 80px;
	background: #fff;
	    
	  position: fixed;
    right: 0;
    left: 0;
    z-index: 1030;
  
 	top: 0;
 		transition: all 0.5s ease;
}
.sticky{
    top:0;
}
.navbar-shrink{
     padding: 0;
}
.header-top{
    padding: 5px 0;
    position: relative;
    z-index: 1030;
    background: #f3f3f3;
}
/* ====================================
Navigation 
==================================== */

.overlay-navigation {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsla(0, 0%, 100%, 0.2);
  display: none;
  opacity: 0;
}

nav,
nav ul {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}

nav ul li {
  -webkit-flex-basis: 20%;
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  display: none;
}

nav li a {
  position: relative;
  top: 46%;
  color: #fff;
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  letter-spacing: 4px;
  text-decoration: none;
  display: block;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0;
}

nav li a:before {
  content: '';
  width: 70px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 100;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

nav li a:after {
  content: attr(data-content);
  font-size: 0.7rem;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  opacity: 0;
  position: absolute;
  z-index: 100;
  color: #fff;
  display: block;
  margin-right: auto;
  margin-left: auto;
  left: 0;
  right: 0;
  bottom: -50px;
  text-transform: none;
  font-family: 'Open sans', sans-serif;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0;
}

nav li a:hover:before {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

nav li a:hover:after {
  -webkit-transform: translateY(15px);
  -ms-transform: translateY(15px);
  transform: translateY(15px);
  opacity: 1;
}

nav li:nth-of-type(1) {
  background-color: #004682
}

nav li:nth-of-type(2) {
  background-color: rgb(51,107,155)
}

nav li:nth-of-type(3) {
  background-color: rgb(76,125,167)
}

nav li:nth-of-type(4) {
  background-color:rgb(102,144,180)
}

nav li:nth-of-type(5) {
  background-color: rgb(128,163,192)
}


/* ====================================
Burger king
==================================== */

.open-overlay {
  position: absolute;
  right:0;
  top: 1.2rem;
  z-index: 100;
  width: 34px;
  display: block;
  cursor: pointer;
}

.open-overlay span {
  display: block;
  height: 4px;
  background-color: #004682;
  cursor: pointer;
  margin-top: 8px;
}

.animate-top-bar {
  -webkit-animation: animate-top-bar .6s linear 1 both;
  animation: animate-top-bar .6s linear 1 both
}

.animate-bottom-bar {
  -webkit-animation: animate-bottom-bar .6s linear 1 both;
  animation: animate-bottom-bar .6s linear 1 both
}

.animate-middle-bar {
  -webkit-animation: animate-middle-bar .6s linear 1 both;
  animation: animate-middle-bar .6s linear 1 both
}

.animate-out-top-bar {
  -webkit-animation: animate-out-top-bar .6s linear 1 both;
  animation: animate-out-top-bar .6s linear 1 both
}

.animate-out-bottom-bar {
  -webkit-animation: animate-out-bottom-bar .6s linear 1 both;
  animation: animate-out-bottom-bar .6s linear 1 both
}

.animate-out-middle-bar {
  -webkit-animation: animate-out-middle-bar .6s linear 1 both;
  animation: animate-out-middle-bar .6s linear 1 both
}


/* ====================================
Animation keyframes
==================================== */

@keyframes animate-top-bar {
  0% {
    background-color: #004682;
  }
  50% {
    -webkit-transform: translateY(9px);
    transform: translateY(9px)
  }
  80% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    background-color: #004682
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background-color: #29363B;
  }
}

@keyframes animate-bottom-bar {
  0% {
    background-color:#004682;
  }
  50% {
    -webkit-transform: translateY(-9px);
    transform: translateY(-9px)
  }
  80% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    background-color:#004682;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background-color: #29363B;
  }
}

@keyframes animate-middle-bar {
  0% {
    background-color: #004682;
  }
  80% {
    background-color: #004682;
  }
  100% {
    background-color: #29363B;
  }
}

@keyframes animate-out-top-bar {
  0% {
    background-color: #29363B
  }
  50% {
    -webkit-transform: translateY(9px);
    transform: translateY(9px)
  }
  80% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    background-color: #29363B
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background-color: #004682;
  }
}

@keyframes animate-out-bottom-bar {
  0% {
    background-color: #29363B
  }
  50% {
    -webkit-transform: translateY(-9px);
    transform: translateY(-9px)
  }
  80% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    background-color: #29363B;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background-color: #004682;
  }
}

@keyframes animate-out-middle-bar {
  0% {
    background-color: #29363B
  }
  80% {
    background-color: #29363B;
  }
  100% {
    background-color: #004682;
  }
}




/*map*/
/* Breakpoints
// ========================================================================== */
/* 320px */
/* 480px */
/* 599px */
/* 600px */
/* 768px */
/* 967px */
/* 960px */
/* 1400px */
/* Colors 
// ========================================================================== */
/* Convert px to ems
// ========================================================================== */
/* Mixins
// ========================================================================== */
/* Media Query Watcher
// ========================================================================== */
#getActiveMQ-watcher {
  font-family: "break-0";
}
@media (min-width: 20em) {
  #getActiveMQ-watcher {
    font-family: "break-1";
  }
}
@media (min-width: 30em) {
  #getActiveMQ-watcher {
    font-family: "break-2";
  }
}
@media (min-width: 37.5em) {
  #getActiveMQ-watcher {
    font-family: "break-3";
  }
}
@media (min-width: 48em) {
  #getActiveMQ-watcher {
    font-family: "break-4";
  }
}
@media (min-width: 60em) {
  #getActiveMQ-watcher {
    font-family: "break-5";
  }
}

/* =Map Pin Animation
// ========================================================================== */
@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}
@-moz-keyframes pulsate {
  0% {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}
@keyframes pulsate {
  0% {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

/* =Places Map
// ========================================================================== */
#places-map {
    background-size: cover;
     background-image: url(images/worldmap.png);
    padding: 8.25em 1.5625em 2.5em;
    position: relative;
    height: 100vh;
    height: calc(100% - 50px);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    box-shadow:inset 0 0 0 2000px #0000008c;
}
#places-map h1 {
  font-size: 1.3125em;
  margin-top: 0.9523809524em;
  text-align: center;
}
@media (min-width: 37.5em) {
  #places-map h1 {
    font-size: 6.1875em;
    margin-top: 0.5em;
    font-weight:900;
  }
}
#places-map .wu-logo {
  display: none;
  height: 3.875em;
  width: 11.3125em;
}
@media (min-width: 60em) {
  #places-map .wu-logo {
    background: url(https://jeffbridgforth.com/codepen/wu-logo.jpg) no-repeat;
    display: block;
    position: absolute;
    bottom: 1.875em;
    left: 2em;
  }
}
@media (min-width: 87.5em) {
  #places-map .wu-logo {
    left: 50%;
    margin-left: -43.75em;
  }
}
#places-map img {
  height: auto;
  position: relative;
  width: 100%;
  z-index: 1;
}
.secondary-page #places-map .content {
  margin: 0;
  position: relative;
}
@media (min-width: 60em) {
  .secondary-page #places-map .content {
    margin: 0 auto;
  }
}
#places-map .map {
  position: relative;
  max-width: 56.4375em;
  margin-left: auto;
  margin-right: auto;
}
#places-map .map-pins {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
}
#places-map .map-location-marker {
  background: url(images/map-pin.png) no-repeat;
  cursor: pointer;
  position: absolute;
  height: 1.875em;
  margin-top: -1.875em;
  margin-left: -0.7857142857em;
  width: 1.3125em;
  z-index: 3;
  opacity: 1;
    font-size: unset;
}
@media (min-width: 48em) {
  .js #places-map .map-location-marker {
    visibility: hidden;
  }
  .js #places-map .map-location-marker.bounceInDown {
    visibility: visible;
  }
}
#places-map .marker-san-francisco {
  left: 8%;
  top: 30%;
}
@media (max-width: 37.4375em) {
  #places-map .marker-san-francisco {
    left: 6%;
    top: 32%;
  }
}
#places-map .marker-denver {
  left: 13%;
  top: 29%;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
#places-map .marker-argentina {
  left: 29.5%;
  bottom: 21.5%;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
#places-map .marker-dubai {
  left: 64%;
  top: 231%;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
#places-map .marker-costa-rica {
  left: 17.5%;
  top: 50%;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
#places-map .marker-peterborough {
  left: 45.5%;
  top: 20%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
#places-map .marker-vilnius {
  left: 52%;
  top: 18%;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
#places-map .marker-singapore {
  left: 79%;
  bottom: 42%;
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
#places-map .marker-manila {
  left: 84.5%;
  top: 48%;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
#places-map .marker-sydney {
  bottom: 14%;
  right: 7.5%;
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
#places-map .map-location-marker:after {
  -webkit-animation: pulsate 2s ease-in-out infinite;
  -moz-animation: pulsate 2s ease-in-out infinite;
  animation: pulsate 2s ease-in-out infinite;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 100px;
  content: "";
  display: block;
  height: 100px;
  left: -42px;
  opacity: 0;
  position: absolute;
  top: -34px;
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;
  width: 100px;
  z-index: 2;
}

#page-places {
  position: relative;
}

#map-info {
  background: #000;
  color: #fff;
  position: absolute;
  top: -1.5625em;
  left: 50%;
  margin-left: -7.8125em;
  padding: 1.125em;
  width: 15.625em;
  z-index: 10;
}
#map-info .close-btn {
  background: url(http://jeffbridgforth.com/codepen//close-btn.png) no-repeat;
  cursor: pointer;
  display: block;
  height: 0.6875em;
  width: 0.6875em;
  position: absolute;
  right: 1.125em;
  top: 1.125em;
}
@media (min-width: 30em) {
  #map-info {
    top: 50%;
    margin-top: -8.875em;
  }
}
@media (min-width: 60em) {
  #map-info {
    margin-left: -8.875em;
    width: 17.75em;
  }
}
@media (min-width: 48em) {
  #map-info {
    margin-left: 0;
    margin-top: 0;
  }
  #map-info:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 13px 16px 13px 0;
    border-color: transparent #000 transparent transparent;
    position: absolute;
    left: -16px;
  }
  #map-info.san-francisco {
    left: 11%;
    top: 23%;
  }
  #map-info.denver {
    left: 16%;
    top: 21.5%;
  }
  #map-info.argentina {
    left: 32.5%;
    bottom: 0;
    top: auto;
  }
  #map-info.argentina:before {
    top: 152px;
  }
  #map-info.costa-rica {
    bottom: 5%;
    left: 20%;
    top: auto;
  }
  #map-info.costa-rica:before {
    top: 45px;
  }
  #map-info.peterborough {
    top: 12.5%;
    left: 48%;
  }
  #map-info.vilnius {
    top: 10.5%;
    left: 54.5%;
  }
  #map-info.dubai {
    left: 68%;
    top: 180%;
  }
  #map-info.singapore {
    left: auto;
    top: auto;
    bottom: 0%;
    right: 24%;
  }
  #map-info.singapore:before {
    border-width: 13px 0 13px 16px;
    border-color: transparent transparent transparent #000;
    left: auto;
    right: -16px;
    top: 55px;
  }
  #map-info.manila {
    left: auto;
    top: auto;
    bottom: 1.75%;
    right: 18.5%;
  }
  #map-info.manila:before {
    border-width: 13px 0 13px 16px;
    border-color: transparent transparent transparent #000;
    left: auto;
    right: -16px;
  }
  #map-info.sydney {
    left: auto;
    top: auto;
    right: 11.5%;
    bottom: 0;
  }
  #map-info.sydney:before {
    border-width: 13px 0 13px 16px;
    border-color: transparent transparent transparent #000;
    left: auto;
    right: -16px;
    bottom: 50px;
  }
}
#map-info h1 {
  float: left;
  font-size: 1.375em;
  line-height: 1;
  margin-bottom: 0.7272727273em;
  margin-top: 0;
}
#map-info a {
    font-weight:bold;
	color: #01fdfe;
  display: block;
  font-size: 0.75em;
  float: right;
  margin-right: 2.5em;
  margin-top: 0.1em;
  
}
#map-info img {
  height: auto;
  max-width: 100%;
}
/*map*/

.m-h1 {
  color:#fff;

  margin-bottom:100px;

}




.simply-countdown {
  /* The countdown */
  margin-bottom: 2em;
}

.simply-countdown > .simply-section {
  /* coutndown blocks */
  display: inline-block;
  width: 100px;
  height: 100px;
  background: #00b9be;
  margin: 0 4px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  position: relative;
  animation: pulse 1s ease infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.simply-countdown > .simply-section > div {
  /* countdown block inner div */
  display: table-cell;
  vertical-align: middle;
  height: 100px;
  width: 100px;
}

.simply-countdown > .simply-section .simply-amount,
.simply-countdown > .simply-section .simply-word {
  display: block;
  color: white;
  /* amounts and words */
}

.simply-countdown > .simply-section .simply-amount {
  font-size: 30px;
  /* amounts */
}

.simply-countdown > .simply-section .simply-word {
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  font-size: 12px;
  /* words */
}
.count-c{
position: absolute;
    bottom: 30px;
    left: 30%;
}
.m{

 color: #fff;
    padding: 10px 20px;
    border-bottom: 5px solid #004682;
    border-radius: 10px;
     background: linear-gradient(to right, #00b9be 0%, #004682 100%);
   
    font-weight: 900;
}
.m:hover{
  background: linear-gradient(to right, #004682 0%, #00b9be 100%);
  color: #fff;
  text-decoration: none;
}
.adres{

    padding: 10px;
    font-weight: 900;
}
.map {
    padding-top: 5%;
    position: relative;
    margin-left: -15;
    margin-right: -15;
}
.opening_hours {
     position: absolute;
    background: #00b9be9e;
    top: 0.5%;
    left: 60%;
    padding: 1%;
    width: 38%;
}
ul.times {
    list-style: none;
    padding: 0;
    margin: 0;
}
ul.times h3 {
    color: #fff;
    font-size: 2em;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    margin-bottom: 3%;
}
ul.times li {
    border-bottom: 1px solid #B9DEEC;
    margin-bottom: 5px;
    padding-bottom: 5px;
}
i.calender {
    background: url(../images/img-sprite.png)-49px -78px;
    width: 20px;
    height: 20px;
    float: left;
    margin-right: 1%;
}
span.week {
    color: #fff;
    font-size: 0.8125em;
    font-family: 'Open Sans', sans-serif;
}
.hours {
    float: right;
    font-size: 0.8125em;
    color: #fff;
}
.clear {
    clear: both;
}
ul.times p {
    color: #fff;
    font-size: 0.8125em;
    line-height: 1.5em;
    text-align: center;
    margin-top: 5%;
}
ul.times h4 {
    font-size: 1.5em;
    color: #FFF;
    font-family: 'Open Sans', sans-serif;
    font-weight: italic;
    text-align: center;
    font-style: italic;
    margin-top: 5%;
}
.footer-top {
    width: 60%;
    margin: 0 auto;
    padding: 4% 0;
}
.tw{
     float: left;
    color: #00b9be;
    font-size: 80px !important;
    margin-right: 20px;
}
ul.twitter_footer {
    list-style: none;
    padding: 0;
    margin: 0;
}
i.twt_icon {
    background: url(../images/img-sprite.png)no-repeat -335px -119px;
    width: 80px;
    height: 70px;
    float: left;
    margin-right: 5%;
}
ul.twitter_footer li p {
    color:#00b9be;
    font-size: 0.85em;
    line-height: 1.5em;
    margin: 10px 0 0;
    width: 86.5%;
    float: left;
}
span.m_6 {
    color: #044C8F;
}
.footer-bottom {
    background:#fbfbfb;
    position:relative;
    padding-top: 3%;
    padding-bottom: 1%;
    background-image: linear-gradient(to right, rgb(0 185 190),#00b9be, rgba(184, 162, 84, 0));
    background-size: 100% 1px;
    background-position: top;
    background-repeat: no-repeat;
}
h4.m_7 {
    
    font-size: 1.1em;
    font-weight: 400;
    margin-bottom: 6%;
    text-transform: uppercase;
    padding-bottom: 0.7rem;
    background-image: linear-gradient(to right, #00b9be, #00b9be 15%, rgba(184, 162, 84, 0));
    background-size: 100px 2px;
    background-position: left bottom;
    background-repeat: no-repeat;
}
p.m_8 {
    color: #fff;
    font-size: 0.85em;
    line-height: 1.5em;
    text-transform: uppercase;
    margin-bottom: 4%;
}
.subscribe {
    margin-bottom: 4%;
}
.subscribe input[type="text"] {
    background: #B9E8FA;
    transition: border-color 0.3s;
    -o-transition: border-color 0.3s;
    -ms-transition: border-color 0.3s;
    -moz-transition: border-color 0.3s;
    -webkit-transition: border-color 0.3s;
    -webkit-appearance: none;
    border: 1px solid #00BFF0;
    font-family: 'Open Sans', sans-serif;
    outline: none;
    font-size: 0.8125em;
    padding: 10px 20px;
    color: #00BFF0;
    position: relative;
    width: 89%;
    text-transform: uppercase;
}
.f-logo {
    text-align: center;
    margin-top: -10px;
    padding-bottom: 2%;
}
p.m_9 {
    color: #004e82;
    font-size: 0.8125em;
    line-height: 1.8em;
    margin-bottom: 5%;
    margin-top: 20px;
}
p.address {
    color: #004e82;
    font-size: 0.8125em;
    line-height: 1.5em;
}
ul.list {
    float: left;
    width: 50%;
    list-style: none;
}
h4.m_7 {
    color: #004e82;
    font-size: 1.1em;
    font-weight: 900;
    margin-bottom: 6%;
    text-transform: uppercase;
}
ul.list li {
   list-style: none
    margin: 0 20px 0px;
}
ul.list li a{
   list-style: none
    margin: 0 20px 0px;
    color: #004e82;
}
ul.list li i{
  color: #004e82;
  margin-right: 10px;
}
ul.list1 {
    float: left;
    width: 100%;
    list-style: none;
}
.copyright {
    background: #004e82;
    padding: 10px 0 2px;
        border-top: 3px solid #00b9be;
}
.copy {
    text-align:center;
    margin-top: 5px;
}
.social {
    float: right;
}

.social ul {
    margin: 0;
    padding: 0;
}
.social ul li:first-child, ol li:first-child {
    margin-top: 0px;
    margin-left: 0;
}
.social li {
    background: none;
    display: inline-block;
    margin-top: 10px;
    margin-right: 10px;
}
.social a{
  color: #004e82;
}
.copy p{
  color: #fff;
}
.l-img{
   display:inline-block;
  margin-right: 20px;
  
}
.list1 li a{
color: #004e82
}
ul.list1 li i {
    color: #004e82;
    margin-right: 10px;
}
.group{
  padding-bottom: 30px;
    
}

.social-links {
      margin-top: 30px;
    color: #004682;
    font-family: 'Open Sans', sans-serif;
    width: 120px;
    position: absolute;
    right: 5%;
    background: #ffffffcc;
        z-index: 1;
}
.social-links li {
  display: inline;
  list-style-type: none;
  
  float: left;
}

#lang-form div {
  float: left;
  margin-top: 1px;
  font-weight: 900;
}

#lang-form #dropdown-wrapper {
  width: 100px;
  margin-top: 20px;
  z-index: 1000;
}

.dropdownbox {
  margin: 0 auto;
  cursor: pointer;
}

.dropdownbox > p {
  display: block;
  user-select: none;
  -moz-user-select: none;
  /* Safari */
  -khtml-user-select: none;
}

ul.menu {
  margin: 0px;
  padding: 0px;
  list-style: none;
  position: relative;
  margin: 0 0;
  width: 90px;
  overflow: hidden;
  height: 0;
  margin-left: -27px;
  margin-top: 2px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  /*-moz-transform:scale(0); */
  color: #004682;
  cursor: pointer;
  user-select: none;
  -moz-user-select: none;
  /* Safari */
  -khtml-user-select: none;
}
.menu a{
     color: #004682;
}
ul.menu li {
  padding: 2px 0;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

ul.menu li:hover {
  padding-left: 10px;
  color: #00b9be;
  /*background: #1F8EC1;*/
}

.menu.showMenu {
  /*-moz-transform:scale(1);*/
  height: 100px;
}
.about-logo{
  max-height: 300px;
}
.about{
 
    position: relative;
   padding: 130px 0;
   background:#fff;
 color: #004e82;
}
.about-shadow{
        position: absolute;
    top: 0;
    left: -34px;
    max-width: 200%;
    zoom: 1;
    width: 1214px;
}
.a-box{
    padding: 50px;
    background: #e2e2e2b3;
    color: #242424;
    
}
.row-center{
  justify-content: center;
}
.a-h{
  padding-bottom: 1rem;
    /* padding-top: 1rem; */
    background-image: linear-gradient(to right, rgb(255 255 255 / 70%), #01708e 15%, rgba(184, 162, 84, 0));
    background-size: 200px 2px;
    background-position: left bottom;
    background-repeat: no-repeat;

}
.a-p{
    margin-top: 30px;
    margin-bottom: 50px;
    color: #000;
   
    text-indent: 50px;
    text-align: justify;
    padding: 0 100px;
}
.conf{
     position: relative;
    position: relative;
    margin: 0rem 0 0 0;
    padding: 4rem 15px;
    font-size: 1.3rem;
    
    line-height: 1.75em;
    color: #004682;
    background: #f3f3f3;
    letter-spacing: 1px;
}
.globe-box{
      color: #004682;
      padding-top: 5%;
}
.globe-box h3{
margin-bottom: 30px;
}
/* flip box*/

.faria-flip-box {
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}
.faria-flip-box .flip-box-front[data-text-color=dark], .faria-flip-box .flip-box-back[data-text-color=dark] {
  color: #676767;
}
.faria-flip-box .flip-box-front[data-text-color=light], .faria-flip-box .flip-box-back[data-text-color=light], .faria-flip-box .flip-box-front[data-text-color=light] h1, .faria-flip-box .flip-box-back[data-text-color=light] h1, .faria-flip-box .flip-box-front[data-text-color=light] h2, .faria-flip-box .flip-box-back[data-text-color=light] h2, .faria-flip-box .flip-box-front[data-text-color=light] h3, .faria-flip-box .flip-box-back[data-text-color=light] h3, .faria-flip-box .flip-box-front[data-text-color=light] h4, .faria-flip-box .flip-box-back[data-text-color=light] h4, .faria-flip-box .flip-box-front[data-text-color=light] h5, .faria-flip-box .flip-box-back[data-text-color=light] h5, .faria-flip-box .flip-box-front[data-text-color=light] h6, .faria-flip-box .flip-box-back[data-text-color=light] h6 {
  color: #fff;
}
.faria-flip-box .flip-box-front, .faria-flip-box .flip-box-back {
  background-size: cover;
  background-position: center;
  -ms-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -webkit-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.faria-flip-box[data-shadow=light_visibility] .flip-box-back, .faria-flip-box[data-shadow=light_visibility] .flip-box-front {
  box-shadow: 0px 30px 60px rgba(0, 0, 0, 0.2);
}
.faria-flip-box[data-shadow=heavy_visibility] .flip-box-back, .faria-flip-box[data-shadow=heavy_visibility] .flip-box-front {
  box-shadow: 0px 30px 75px rgba(0, 0, 0, 0.4);
}
.faria-flip-box .flip-box-back[data-bg-overlay=true]:after, .faria-flip-box .flip-box-front[data-bg-overlay=true]:after {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: " ";
  display: block;
  opacity: 0.6;
  background-color: inherit;
  backface-visibility: hidden;
}
.faria-flip-box:hover .flip-box-front, .faria-flip-box:hover .flip-box-back {
  -ms-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -webkit-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
}
.faria-flip-box .flip-box-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.faria-flip-box .faria-button {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.faria-flip-box[data-h_text_align=center] .flip-box-back, .faria-flip-box[data-h_text_align=center] .flip-box-front {
  text-align: center;

}
.faria-flip-box[data-h_text_align=right] .flip-box-back, .faria-flip-box[data-h_text_align=right] .flip-box-front {
  text-align: right;
}
.faria-flip-box[data-v_text_align=center] .flip-box-back .inner, .faria-flip-box[data-v_text_align=center] .flip-box-front .inner {
  transform: translateY(-50%) translateZ(60px) scale(0.94);
  -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
  -ms-transform: translateY(-50%) translateZ(60px) scale(0.94);
  top: 50%;
}
.faria-flip-box[data-v_text_align=bottom] .flip-box-back .inner, .faria-flip-box[data-v_text_align=bottom] .flip-box-front .inner {
  -ms-transform: translateZ(60px) scale(0.94);
  transform: translateZ(60px) scale(0.94);
  -webkit-transform: translateZ(60px) scale(0.94);
  bottom: 0;
}
.faria-flip-box[data-v_text_align=top] .flip-box-back .inner, .faria-flip-box[data-v_text_align=top] .flip-box-front .inner {
  -ms-transform: translateZ(60px) scale(0.94);
  transform: translateZ(60px) scale(0.94);
  -webkit-transform: translateZ(60px) scale(0.94);
  top: 0;
}
.faria-flip-box[data-flip-direction=vertical-to-top] .flip-box-back .inner, .faria-flip-box[data-flip-direction=vertical-to-top] .flip-box-front .inner {
  -ms-transform: translateZ(50px) scale(0.95);
  transform: translateZ(50px) scale(0.95);
  -webkit-transform: translateZ(50px) scale(0.95);
}
.faria-flip-box[data-flip-direction=vertical-to-bottom] .flip-box-back .inner, .faria-flip-box[data-flip-direction=vertical-to-bottom] .flip-box-front .inner {
  -ms-transform: translateZ(50px) scale(0.95);
  transform: translateZ(50px) scale(0.95);
  -webkit-transform: translateZ(50px) scale(0.95);
}
.faria-flip-box[data-v_text_align=center][data-flip-direction=vertical-to-bottom] .flip-box-back .inner, .faria-flip-box[data-v_text_align=center][data-flip-direction=vertical-to-bottom] .flip-box-front .inner {
  -ms-transform: translateY(-50%) translateZ(50px) scale(0.95);
  transform: translateY(-50%) translateZ(50px) scale(0.95);
  -webkit-transform: translateY(-50%) translateZ(50px) scale(0.95);
}
.faria-flip-box[data-v_text_align=center][data-flip-direction=vertical-to-top] .flip-box-back .inner, .faria-flip-box[data-v_text_align=center][data-flip-direction=vertical-to-top] .flip-box-front .inner {
  -ms-transform: translateY(-50%) translateZ(50px) scale(0.95);
  transform: translateY(-50%) translateZ(50px) scale(0.95);
  -webkit-transform: translateY(-50%) translateZ(50px) scale(0.95);
}
.faria-flip-box .flip-box-back .inner, .faria-flip-box .flip-box-front .inner {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 60px;
  outline: 1px solid transparent;
  -webkit-perspective: inherit;
  perspective: inherit;
  z-index: 2;
}
.faria-flip-box[data-flip-direction=horizontal-to-left] .flip-box-back {
  -ms-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

body:not(.using-mobile-browser) .faria-flip-box[data-flip-direction=horizontal-to-right]:hover .flip-box-front, .owl-carousel.moving .faria-flip-box[data-flip-direction=horizontal-to-left] .flip-box-back {
  -ms-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.faria-flip-box[data-flip-direction=horizontal-to-right].flipped .flip-box-front {
  -ms-transform: rotateY(180deg) !important;
  -webkit-transform: rotateY(180deg) !important;
  transform: rotateY(180deg) !important;
}
.faria-flip-box[data-flip-direction=horizontal-to-left] .flip-box-front {
  -ms-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

body:not(.using-mobile-browser) .faria-flip-box[data-flip-direction=horizontal-to-left]:hover .flip-box-back, .faria-flip-box[data-flip-direction=horizontal-to-right] .flip-box-front, body:not(.using-mobile-browser) .faria-flip-box[data-flip-direction=horizontal-to-right]:hover .flip-box-back {
  -ms-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.owl-carousel.moving .faria-flip-box[data-flip-direction=horizontal-to-left] .flip-box-front, .owl-carousel.moving .faria-flip-box[data-flip-direction=horizontal-to-right] .flip-box-front {
  -ms-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.faria-flip-box[data-flip-direction=horizontal-to-left].flipped .flip-box-back, .faria-flip-box[data-flip-direction=horizontal-to-right].flipped .flip-box-back {
  -ms-transform: rotateY(0deg) !important;
  -webkit-transform: rotateY(0deg) !important;
  transform: rotateY(0deg) !important;
}

body:not(.using-mobile-browser) .faria-flip-box[data-flip-direction=horizontal-to-left]:hover .flip-box-front, .faria-flip-box[data-flip-direction=horizontal-to-right] .flip-box-back, .owl-carousel.moving .faria-flip-box[data-flip-direction=horizontal-to-right] .flip-box-back {
  -ms-transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.faria-flip-box[data-flip-direction=horizontal-to-left].flipped .flip-box-front {
  -ms-transform: rotateY(-180deg) !important;
  -webkit-transform: rotateY(-180deg) !important;
  transform: rotateY(-180deg) !important;
}
.faria-flip-box[data-flip-direction=vertical-to-top] .flip-box-back {
  -ms-transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

body:not(.using-mobile-browser) .faria-flip-box[data-flip-direction=vertical-to-bottom]:hover .flip-box-front {
  -ms-transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.faria-flip-box[data-flip-direction=vertical-to-bottom].flipped .flip-box-front {
  -ms-transform: rotateX(180deg) !important;
  -webkit-transform: rotateX(180deg) !important;
  transform: rotateX(180deg) !important;
}
.faria-flip-box[data-flip-direction=vertical-to-top] .flip-box-front {
  -ms-transform: rotateX(0deg);
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

body:not(.using-mobile-browser) .faria-flip-box[data-flip-direction=vertical-to-top]:hover .flip-box-back, .faria-flip-box[data-flip-direction=vertical-to-bottom] .flip-box-front, body:not(.using-mobile-browser) .faria-flip-box[data-flip-direction=vertical-to-bottom]:hover .flip-box-back {
  -ms-transform: rotateX(0deg);
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.faria-flip-box[data-flip-direction=vertical-to-top].flipped .flip-box-back, .faria-flip-box[data-flip-direction=vertical-to-bottom].flipped .flip-box-back {
  -ms-transform: rotateX(0deg) !important;
  -webkit-transform: rotateX(0deg) !important;
  transform: rotateX(0deg) !important;
}

body:not(.using-mobile-browser) .faria-flip-box[data-flip-direction=vertical-to-top]:hover .flip-box-front {
  -ms-transform: rotateX(-180deg);
  -webkit-transform: rotateX(-180deg);
  transform: rotateX(-180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.faria-flip-box[data-flip-direction=vertical-to-bottom] .flip-box-back {
  -ms-transform: rotateX(-180deg);
  -webkit-transform: rotateX(-180deg);
  transform: rotateX(-180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.faria-flip-box[data-flip-direction=vertical-to-top].flipped .flip-box-front {
  -ms-transform: rotateX(-180deg) !important;
  -webkit-transform: rotateX(-180deg) !important;
  transform: rotateX(-180deg) !important;
}
.faria-flip-box .flip-box-front i {
  margin-bottom: 20px;
  height: auto !important;
  display: block;
  width: auto !important;
}

[class^=icon-][data-color=extra-color-gradient-1]:before, [class*=" icon-"][data-color=extra-color-gradient-1]:before, [class^=icon-].extra-color-gradient-1:not(.icon-normal):before, [class*=" icon-"].extra-color-gradient-1:not(.icon-normal):before, .faria_icon_wrap[data-color=extra-color-gradient-1] i {
  color: #39dfa5;
  background: linear-gradient(to bottom right, #39dfa5, #1fbdf2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  display: initial;
}

[class^=icon-]:before, [class*=" icon-"]:before {
  text-decoration: inherit;
  speak: none;
}

.faria-footer {
  position: relative;
  z-index: 999;
  text-align: center;
  padding: 20px;
}
/* flip box */
.h-c{
  padding-bottom: 10px;
    background-image: linear-gradient(to right, rgb(0 185 190 / 0%), #00b9be, rgba(184, 162, 84, 0));
    background-size: 100% 3px;
    background-position: bottom;
    background-repeat: no-repeat;
    color: #004682;
    margin-bottom: 50px;
    font-weight:900;

}

.banner_img{
height: 150px;
background-image: linear-gradient(to left, rgb(0 185 190)70%, rgb(184 162 84 / 0%) 30%);
    background-size: 120% 2px;
    background-position: bottom;
    background-repeat: no-repeat;

}
.wrapshadow {
        position: absolute;
    top: 0;
    left: 10%;
    max-width: 200%;
    zoom: 1;
    width: 100%;
    display: none;
}
.main{
    position:relative;
    overflow:hidden;
}
.about_banner_wrap {
    position: relative;
}
h1.m_11 {
        color: #FFF;
    background: #00b8bd;
    padding: 7px 50px;
    font-size: 2em;
    text-transform: uppercase;
    font-weight: 100;
    position: absolute;
    top: -28px;
    text-align: center;
    left: 15px;
    margin: 0;
        background: linear-gradient(to right, #004682 0%, #00b9be 100%);
}
.in-page{
  padding: 100px 0;
}

.in-page p,.in-page div{
    margin-bottom: 20px;
    text-align: justify;
}
.contact{
  padding:100px 0;
  margin-left: 5px;
}
#submit{
      color: #FFF;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95em;
    font-weight: normal;
    padding: 10px 34px 10px 10px;
    text-transform: uppercase;
    background: url(../images/submit_arrow.png)no-repeat 180px 13px #c50e10;
    display: inline-block;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    font-weight: 100;
    border: none;
    cursor: pointer;
        margin-top: 15px;
}
.to input[type="text"] {
    padding: 10px;
    width: 29%;
    font-size: 0.85em;
    font-family: 'Open Sans', sans-serif;
    margin: 10px 0;
    border: none;
    color: #fff;
    background: #004471;
    float: left;
    outline: none;
}
.text {
    float: left;
    width: 63%;
}
nav li a:hover{
    color:#00fff6;
    text-decoration:none;
    
}
.text input[type="text"], .text textarea {
    width: 96.5%;
    font-size: 0.85em;
    margin: 10px 0;
    border: none;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    outline: none;
    background: #004471;

    padding: 10px;
    resize: none;
}
p.m_msg {
    color: #004682;
    font-size: 0.8125em;
    margin: 10px;
}
ul.contact_info {
    padding: 0;
    list-style: none;
    margin: 0;
}
ul.contact_info span {
    color: #fff;
    font-size: 1.5125em;
}
.contact-top_right p {
    color: #004682;
    font-size: 0.8125em;
    line-height: 1.8em;
    margin: 9% 0 7%;
}
.contact_info i{
    margin-right: 10px;
    color: #fff;
    font-size: 20px;
}
.contact h3{
      color: #fff;
}
.contact p{
     color: #fff;
}
.contact_info li{
        margin-bottom: 10px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  margin: 1rem auto;
  box-shadow: 0 3px 7px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.6%;
  background: #fff;
  line-height: 1.4;
  font-family: 'Open Sans', sans-serif;
  border-radius: 5px;
  overflow: hidden;
  z-index: 0;
}
.blog-card a {
  color: inherit;
}
.blog-card a:hover {
  color: #5ad67d;
}
.blog-card:hover .photo {
  transform: scale(1.3) rotate(3deg);
}
.blog-card .meta {
  position: relative;
  z-index: 0;
  height: 200px;
}
.blog-card .photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.2s;
}
.blog-card .details,
.blog-card .details ul {
  margin: auto;
  padding: 0;
  list-style: none;
}
.blog-card .details {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100%;
  margin: auto;
  transition: left 0.2s;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 10px;
  width: 100%;
  font-size: 0.9rem;
}
.blog-card .details a {
  -webkit-text-decoration: none;
          text-decoration: none;
}
.blog-card .details ul li {
  display: inline-block;
}
.blog-card .details .author:before {
  font-family: FontAwesome;
  margin-right: 10px;
  content: "";
}
.blog-card .details .date:before {
  font-family: FontAwesome;
  margin-right: 10px;
  content: "";
}
.blog-card .details .tags ul:before {
  font-family: FontAwesome;
  content: "";
  margin-right: 10px;
}
.blog-card .details .tags li {
  margin-right: 2px;
}
.blog-card .details .tags li:first-child {
  margin-left: -4px;
}
.blog-card .description {
  padding: 1rem;
  background: #fff;
  position: relative;
  z-index: 1;
}
.blog-card .description h1,
.blog-card .description h2 {
  font-family: 'Open Sans', sans-serif;
}
.blog-card .description h1 {
  line-height: 1;
  margin: 0;
  font-size: 1.7rem;
      color: #004682;
}
.blog-card .description h2 {
  font-size: 1rem;
  font-weight: 300;
  text-transform: uppercase;
  color: #a2a2a2;
  margin-top: 5px;
}
.blog-card .description .read-more {
  text-align: right;
}
.blog-card .description .read-more a {
  color: #00b7bd;
  display: inline-block;
  position: relative;
}
.blog-card .description .read-more a:after {
  content: "";
  font-family: FontAwesome;
  margin-left: -10px;
  opacity: 0;
  vertical-align: middle;
  transition: margin 0.3s, opacity 0.3s;
}
.blog-card .description .read-more a:hover:after {
  margin-left: 5px;
  opacity: 1;
}
.blog-card p {
  position: relative;
  margin: 1rem 0 0;
}
.blog-card p:first-of-type {
  margin-top: 1.25rem;
}
.blog-card p:first-of-type:before {
  content: "";
  position: absolute;
  height: 5px;
  background: #00b6bd;
  width: 35px;
  top: -0.75rem;
  border-radius: 3px;
}
.blog-card:hover .details {
  left: 0%;
}



.conf:after {
    bottom: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(17,17,17,0);
    border-bottom-color: #f3f3f3;
    border-width: 30px;
    margin-left: -30px;
}

  .arrow {
        width: 450px;
        height: 50px;
        text-align: right;
        padding: 0 10px 0 0;
        margin: 8px 0;
        background-color: transparent;
        display: block;
        font: 0.844em/36px Arial,sans-serif;
        text-decoration: none;
        color: #444;
        transition:         background-color 0.65s ease-out;
        -moz-transition:    background-color 0.65s ease-out; 
        -webkit-transition: background-color 0.65s ease-out; 
        -o-transition:      background-color 0.65s ease-out;
        overflow: hidden;
    }
    
    .arrow:hover {
        transition:         background-color 0.65s ease-in;
        -moz-transition:    background-color 0.65s ease-in; 
        -webkit-transition: background-color 0.65s ease-in; 
        -o-transition:      background-color 0.65s ease-in; 
        background-color: transparent;
        color: #fff;
    }

    .arrow:hover:before {
        min-width: 65%;
        transition:         min-width 0.7s ease-in;
        -moz-transition:    min-width 0.7s ease-in; 
        -webkit-transition: min-width 0.7s ease-in; 
        -o-transition:      min-width 0.7s ease-in; 
    }

    .arrow:before {
        content: attr(title) ": ";
        height: 50px;
        min-width: 100px;
        text-align: left;
        padding: 0 19px 0 15px;
        background-color: #004e82;
        color: #fff;
        position: relative;
        float:left;
        transition:         min-width 0.7s ease-out;
        -moz-transition:    min-width 0.7s ease-out; 
        -webkit-transition: min-width 0.7s ease-out; 
        -o-transition:      min-width 0.7s ease-out;
    }

    .arrow:after {
        content: "";
        width: 25px;
        height: 40px;
        background-color: #004e82;
        float: left;
        margin: 5px 0 0 -12px;   
        -webkit-box-shadow: 2px -2px 3px -1px #aaa;
        -moz-box-shadow:    2px -2px 3px -1px #aaa;
        box-shadow:         2px -2px 3px -1px #aaa;
        -webkit-transform:  rotate(45deg);
        -moz-transform:     rotate(45deg);
        -o-transform:       rotate(45deg);
        transform:          rotate(45deg); 
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    .snip1543 {
 padding: 0;
  color: #ffffff;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  margin: 10px;
  max-width: 360px;
  min-width: 230px;
  overflow: hidden;
  position: relative;
  text-align: left;
  width: 100%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.snip1543 *,
.snip1543 *:before,
.snip1543 *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.45s ease;
  transition: all 0.45s ease;
}

.snip1543 img {
  backface-visibility: hidden;
  max-width: 100%;
  vertical-align: top;
  height:250px;
}

.snip1543:before,
.snip1543:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: '';
  background-color: #004e82;
  opacity: 0.5;
  -webkit-transition: all 0.45s ease;
  transition: all 0.45s ease;
}

.snip1543:before {
  -webkit-transform: skew(30deg) translateX(-80%);
  transform: skew(30deg) translateX(-80%);
}

.snip1543:after {
  -webkit-transform: skew(-30deg) translateX(-70%);
  transform: skew(-30deg) translateX(-70%);
}

.snip1543 figcaption {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 1;
  bottom: 0;
}

.snip1543 figcaption:before,
.snip1543 figcaption:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #004e82;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
  content: '';
  opacity: 0.5;
  z-index: -1;
}

.snip1543 figcaption:before {
  -webkit-transform: skew(30deg) translateX(-100%);
  transform: skew(30deg) translateX(-100%);
}

.snip1543 figcaption:after {
  -webkit-transform: skew(-30deg) translateX(-90%);
  transform: skew(-30deg) translateX(-90%);
}

.snip1543 h3,
.snip1543 p {
  margin: 0;
  opacity: 0;
  letter-spacing: 1px;
}

.snip1543 h3 {
  font-size: 20px;
    font-weight: 500;
    line-height: 1.2em;
    text-transform: uppercase;
}

.snip1543 p {
  font-size: 0.9em;
}

.snip1543 a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.snip1543:hover h3,
.snip1543.hover h3,
.snip1543:hover p,
.snip1543.hover p {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
  width: 100%;
    text-align: left;
}

.snip1543:hover:before,
.snip1543.hover:before {
  -webkit-transform: skew(30deg) translateX(-20%);
  transform: skew(30deg) translateX(-20%);
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s;
}

.snip1543:hover:after,
.snip1543.hover:after {
  -webkit-transform: skew(-30deg) translateX(-10%);
  transform: skew(-30deg) translateX(-10%);
}

.snip1543:hover figcaption:before,
.snip1543.hover figcaption:before {
  -webkit-transform: skew(30deg) translateX(-40%);
  transform: skew(30deg) translateX(-40%);
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}

.snip1543:hover figcaption:after,
.snip1543.hover figcaption:after {
  -webkit-transform: skew(-30deg) translateX(-30%);
  transform: skew(-30deg) translateX(-30%);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}






figure.snip1477 {
  font-family: 'Raleway', Arial, sans-serif;
  position: relative;
  overflow: hidden;
  margin: 10px;
  min-width: 230px;
  max-width: 360px;
  width: 100%;
  color: #ffffff;
  text-align: center;
  font-size: 16px;
  background-color: #000000;
   padding:0;
}
figure.snip1477 *,
figure.snip1477 *:before,
figure.snip1477 *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.55s ease;
  transition: all 0.55s ease;
}
figure.snip1477 img {
  max-width: 100%;
  backface-visibility: hidden;
  vertical-align: top;
  opacity: 0.9;
}
figure.snip1477 .title {
  position: absolute;
  top: 58%;
  left: 25px;
  padding: 5px 10px 10px;
}
figure.snip1477 .title:before,
figure.snip1477 .title:after {
  height: 2px;
  width: 400px;
  position: absolute;
  content: '';
  background-color: #ffffff;
}
figure.snip1477 .title:before {
  top: 0;
  left: 10px;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
figure.snip1477 .title:after {
  bottom: 0;
  right: 10px;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
figure.snip1477 .title div:before,
figure.snip1477 .title div:after {
  width: 2px;
  height: 300px;
  position: absolute;
  content: '';
  background-color: #ffffff;
}
figure.snip1477 .title div:before {
  top: 10px;
  right: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}
figure.snip1477 .title div:after {
  bottom: 10px;
  left: 0;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}
figure.snip1477 h2,
figure.snip1477 h4 {
  margin: 0;
  text-transform: uppercase;
}
figure.snip1477 h2 {
  font-weight: 400;
}
figure.snip1477 h4 {
  display: block;
  font-weight: 700;
  background-color: #00b9be;
  padding: 5px 10px;
  color: #fff;
}
figure.snip1477 figcaption {
  position: absolute;
  bottom: 42%;
  left: 25px;
  text-align: left;
  opacity: 0;
  padding: 5px 60px 5px 10px;
  font-size: 0.8em;
  font-weight: 500;
  letter-spacing: 1.5px;
 
}
figure.snip1477 figcaption p {
  margin: 0;
}
figure.snip1477 a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
figure.snip1477:hover img,
figure.snip1477.hover img {
  zoom: 1;
  filter: alpha(opacity=35);
  -webkit-opacity: 0.35;
  opacity: 0.35;
}
figure.snip1477:hover .title:before,
figure.snip1477.hover .title:before,
figure.snip1477:hover .title:after,
figure.snip1477.hover .title:after,
figure.snip1477:hover .title div:before,
figure.snip1477.hover .title div:before,
figure.snip1477:hover .title div:after,
figure.snip1477.hover .title div:after {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
figure.snip1477:hover .title:before,
figure.snip1477.hover .title:before,
figure.snip1477:hover .title:after,
figure.snip1477.hover .title:after {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
figure.snip1477:hover figcaption,
figure.snip1477.hover figcaption {
  opacity: 1;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.past-events{
    position:relative;
    /*
    height: 64vh;
    */
    overflow: hidden;
    padding-top: 50px;
}
.home-contact{
    position: relative;
    height: 31vh;
    overflow: hidden;
    padding-top: 50px;
    min-height: 31vw;
}
.footer-bottom .col-md-5 img{
    width: 100%;
    padding: 0 3em;
}
.past-events:after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: '';
    background-color: #fbfbfb;
    opacity: 1;
    -webkit-transition: all 0.45s ease;
    transition: all 0.45s ease;
    transform:skew( 
-56deg
 ) translateX(-48%);
    z-index: -1;
    width: 160vw;
}
.home-contact:after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: '';
    background-color: #fbfbfb;
    opacity: 1;
    -webkit-transition: all 0.45s ease;
    transition: all 0.45s ease;
    transform: skew(52deg) translateX(-50%);
    z-index: -1;
    width: 160vw;
}


.gg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100px;
    background-position: top -1px left;
    background-repeat: no-repeat;
    background-size: contain;
}
	.g-right{
	    width:200px;
		left: auto;
		   background-position: bottom -1px right;
		background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20280%20486'%20enable-background='new%200%200%20280%20486'%3E%3Cg%20transform='rotate(180%20140%20243)'%3E%3ClinearGradient%20id='a'%20gradientUnits='userSpaceOnUse'%20x1='443.927'%20y1='-152.638'%20x2='444.259'%20y2='-153.638'%20gradientTransform='matrix(280%200%200%20-486%20-124155%20-74206)'%3E%3Cstop%20offset='0'%20stop-color='%2301b9be'/%3E%3Cstop%20offset='1'%20stop-color='%23014782'%20stop-opacity='.2'/%3E%3C/linearGradient%3E%3Cpath%20fill='url(%23a)'%20d='M0%20486V0h280z'/%3E%3Cg%20transform='rotate(-180%2098.5%20171.5)'%3E%3Cdefs%3E%3Cfilter%20id='b'%20filterUnits='userSpaceOnUse'%20x='-50'%20y='-5'%20width='446.2'%20height='434'%3E%3CfeColorMatrix%20values='1%200%200%200%200%200%201%200%200%200%200%200%201%200%200%200%200%200%201%200'/%3E%3C/filter%3E%3C/defs%3E%3Cmask%20maskUnits='userSpaceOnUse'%20x='-50'%20y='-5'%20width='446.2'%20height='434'%20id='c'%3E%3Cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20fill='%23fff'%20d='M197%200v343H0z'%20filter='url(%23b)'/%3E%3C/mask%3E%3Cpath%20d='M-48.3%20429l-1.7-1L199.5-5l1.7%201-249.5%20433zm5%200l-1.7-1L204.5-5l1.7%201-249.5%20433zm5%200l-1.7-1L209.5-5l1.7%201-249.5%20433zm5%200l-1.7-1L214.5-5l1.7%201-249.5%20433zm5%200l-1.7-1L219.5-5l1.7%201-249.5%20433zm5%200l-1.7-1L224.5-5l1.7%201-249.5%20433zm5%200l-1.7-1L229.5-5l1.7%201-249.5%20433zm5%200l-1.7-1L234.5-5l1.7%201-249.5%20433zm5%200l-1.7-1L239.5-5l1.7%201L-8.3%20429zm5%200l-1.7-1L244.5-5l1.7%201L-3.3%20429zm5%200L0%20428%20249.5-5l1.7%201L1.7%20429zm5%200L5%20428%20254.5-5l1.7%201L6.7%20429zm5%200l-1.7-1L259.5-5l1.7%201L11.7%20429zm5%200l-1.7-1L264.5-5l1.7%201L16.7%20429zm5%200l-1.7-1L269.5-5l1.7%201L21.7%20429zm5%200l-1.7-1L274.5-5l1.7%201L26.7%20429zm5%200l-1.7-1L279.5-5l1.7%201L31.7%20429zm5%200l-1.7-1L284.5-5l1.7%201L36.7%20429zm5%200l-1.7-1L289.5-5l1.7%201L41.7%20429zm5%200l-1.7-1L294.5-5l1.7%201L46.7%20429zm5%200l-1.7-1L299.5-5l1.7%201L51.7%20429zm5%200l-1.7-1L304.5-5l1.7%201L56.7%20429zm5%200l-1.7-1L309.5-5l1.7%201L61.7%20429zm5%200l-1.7-1L314.5-5l1.7%201L66.7%20429zm5%200l-1.7-1L319.5-5l1.7%201L71.7%20429zm5%200l-1.7-1L324.5-5l1.7%201L76.7%20429zm5%200l-1.7-1L329.5-5l1.7%201L81.7%20429zm5%200l-1.7-1L334.5-5l1.7%201L86.7%20429zm5%200l-1.7-1L339.5-5l1.7%201L91.7%20429zm5%200l-1.7-1L344.5-5l1.7%201L96.7%20429zm5%200l-1.7-1L349.5-5l1.7%201-249.5%20433zm5%200l-1.7-1L354.5-5l1.7%201-249.5%20433zm5%200l-1.7-1L359.5-5l1.7%201-249.5%20433zm5%200l-1.7-1L364.5-5l1.7%201-249.5%20433zm5%200l-1.7-1L369.5-5l1.7%201-249.5%20433zm5%200l-1.7-1L374.5-5l1.7%201-249.5%20433zm5%200l-1.7-1L379.5-5l1.7%201-249.5%20433zm5%200l-1.7-1L384.5-5l1.7%201-249.5%20433zm5%200l-1.7-1L389.5-5l1.7%201-249.5%20433zm5%200l-1.7-1L394.5-5l1.7%201-249.5%20433z'%20mask='url(%23c)'%20fill='%2301b9be'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
	}
	.g-left{
	    background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20280%20486'%20enable-background='new%200%200%20280%20486'%3E%3ClinearGradient%20id='a'%20gradientUnits='userSpaceOnUse'%20x1='-165.106'%20y1='639.263'%20x2='-164.774'%20y2='640.263'%20gradientTransform='matrix(-280%200%200%20486%20-46085%20-310706)'%3E%3Cstop%20offset='0'%20stop-color='%2301b9be'/%3E%3Cstop%20offset='1'%20stop-color='%23014782'%20stop-opacity='.2'/%3E%3C/linearGradient%3E%3Cpath%20fill='url(%23a)'%20d='M0%20486V0h280z'/%3E%3Cg%20transform='rotate(-180%2098.5%20171.5)'%3E%3Cdefs%3E%3Cfilter%20id='b'%20filterUnits='userSpaceOnUse'%3E%3CfeColorMatrix%20values='1%200%200%200%200%200%201%200%200%200%200%200%201%200%200%200%200%200%201%200'/%3E%3C/filter%3E%3C/defs%3E%3Cmask%20maskUnits='userSpaceOnUse'%20id='c'%3E%3Cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20fill='%23fff'%20d='M197%200v343H0z'%20filter='url(%23b)'/%3E%3C/mask%3E%3Cpath%20d='M-48.3%20429l-1.7-1L199.5-5l1.7%201-249.5%20433zm5%200l-1.7-1L204.5-5l1.7%201-249.5%20433zm5%200l-1.7-1L209.5-5l1.7%201-249.5%20433zm5%200l-1.7-1L214.5-5l1.7%201-249.5%20433zm5%200l-1.7-1L219.5-5l1.7%201-249.5%20433zm5%200l-1.7-1L224.5-5l1.7%201-249.5%20433zm5%200l-1.7-1L229.5-5l1.7%201-249.5%20433zm5%200l-1.7-1L234.5-5l1.7%201-249.5%20433zm5%200l-1.7-1L239.5-5l1.7%201L-8.3%20429zm5%200l-1.7-1L244.5-5l1.7%201L-3.3%20429zm5%200L0%20428%20249.5-5l1.7%201L1.7%20429zm5%200L5%20428%20254.5-5l1.7%201L6.7%20429zm5%200l-1.7-1L259.5-5l1.7%201L11.7%20429zm5%200l-1.7-1L264.5-5l1.7%201L16.7%20429zm5%200l-1.7-1L269.5-5l1.7%201L21.7%20429zm5%200l-1.7-1L274.5-5l1.7%201L26.7%20429zm5%200l-1.7-1L279.5-5l1.7%201L31.7%20429zm5%200l-1.7-1L284.5-5l1.7%201L36.7%20429zm5%200l-1.7-1L289.5-5l1.7%201L41.7%20429zm5%200l-1.7-1L294.5-5l1.7%201L46.7%20429zm5%200l-1.7-1L299.5-5l1.7%201L51.7%20429zm5%200l-1.7-1L304.5-5l1.7%201L56.7%20429zm5%200l-1.7-1L309.5-5l1.7%201L61.7%20429zm5%200l-1.7-1L314.5-5l1.7%201L66.7%20429zm5%200l-1.7-1L319.5-5l1.7%201L71.7%20429zm5%200l-1.7-1L324.5-5l1.7%201L76.7%20429zm5%200l-1.7-1L329.5-5l1.7%201L81.7%20429zm5%200l-1.7-1L334.5-5l1.7%201L86.7%20429zm5%200l-1.7-1L339.5-5l1.7%201L91.7%20429zm5%200l-1.7-1L344.5-5l1.7%201L96.7%20429zm5%200l-1.7-1L349.5-5l1.7%201-249.5%20433zm5%200l-1.7-1L354.5-5l1.7%201-249.5%20433zm5%200l-1.7-1L359.5-5l1.7%201-249.5%20433zm5%200l-1.7-1L364.5-5l1.7%201-249.5%20433zm5%200l-1.7-1L369.5-5l1.7%201-249.5%20433zm5%200l-1.7-1L374.5-5l1.7%201-249.5%20433zm5%200l-1.7-1L379.5-5l1.7%201-249.5%20433zm5%200l-1.7-1L384.5-5l1.7%201-249.5%20433zm5%200l-1.7-1L389.5-5l1.7%201-249.5%20433zm5%200l-1.7-1L394.5-5l1.7%201-249.5%20433z'%20mask='url(%23c)'%20fill='%2301b9be'/%3E%3C/g%3E%3C/svg%3E");
	}
	.l-map{
	    max-width: none;
    min-width: none;
    margin: 0;
    background: #fff;
	}
	.about h1{
	   font-weight: 900;
    font-size: 5rem;
	}
	.clearfix:after {
    content:".";
    display:block;
    height:0;
    clear:both;
    visibility:hidden;
}
.m-m{
    margin-bottom:10vh;
    position: absolute;
    top: 40%;
}
.paset-events-h3{
   color: #004e82;
    margin-bottom: 20px; 
}
.header-top img{
    margin-left: 150px;
}
.header-top .container{
    padding-right:0;
}
.hth{
   filter: grayscale(100%)!important;-webkit-filter: grayscale(100%); 
}
.htt{font-size: 4.4vw!important;position: absolute!important;top: 45%!important;line-height: 1.5em!important;left: 5%!important;}
.hht{font-weight: 700!important;font-size: 65!important;}

.contact-top{
   background: #004e82;
    position: relative;
    top: 30px;
    right: 50px; 
     padding: 30px;
}
.contact-top_left{
        background: #004e82ed;
            padding: 30px;
    padding-right: 50px;
}
#fdf{
        right: 0;
    top: 0;
    position: absolute;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 0px solid transparent;
    border-bottom: 30px solid #004e82;
}
.about h2 {
    font-weight: 900;
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.dfd{
    margin-top:50px;
}