/* Add here all your CSS customizations */

html .text-color-dark, html .text-dark {
	color: #10478D !important
}

/* START LOADER CSS */
.fullpage-loader {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  background: #fff;
  z-index: 9999;
  opacity: 1;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
}
.fullpage-loader .fullpage-loader__logo {
  position: relative;
}
.fullpage-loader .fullpage-loader__logo:after {
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: shine 2.5s infinite cubic-bezier(0.42, 0, 0.58, 1);
          animation: shine 2.5s infinite cubic-bezier(0.42, 0, 0.58, 1);
  background: rgba(255, 255, 255, 0.8);
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, white), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 50%, rgba(255, 255, 255, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#00ffffff',GradientType=1 );
  /* IE6-9 */
}

@-webkit-keyframes shine {
  0% {
    -webkit-transform: translateX(-100%) skew(-30deg);
            transform: translateX(-100%) skew(-30deg);
  }
  100% {
    -webkit-transform: translateX(200%) skew(-30deg);
            transform: translateX(200%) skew(-30deg);
  }
}

@keyframes shine {
  0% {
    -webkit-transform: translateX(-100%) skew(-30deg);
            transform: translateX(-100%) skew(-30deg);
  }
  100% {
    -webkit-transform: translateX(200%) skew(-30deg);
            transform: translateX(200%) skew(-30deg);
  }
}
.fullpage-loader--invisible {
  opacity: 0;
}

/* END LOADER CSS */
/*code {
  padding: 0 .5ch;
}*/
/*
body {
  max-width: 960px;
  margin: auto;
}*/

.fullpage-loader img {
  max-width: 100%;
}


.yt-play-button { 
  background: red;
  border-radius: 50% / 10%;
  color: #FFFFFF;
  font-size: 18px; /* change this to change size */
  height: 43px;
  /*margin: 20px auto;*/
  margin-bottom: 5px;
  padding: 0;
  position: relative;
  text-align: center;
  text-indent: 0.1em;
  transition: all 150ms ease-out;
  width: 59px;
}

.yt-play-button:hover {
  background: darkorange;
}

.yt-play-button::before { 
  background: inherit;
  border-radius: 5% / 50%;
  bottom: 9%;
  content: "";
  left: -5%;
  position: absolute;
  right: -5%;
  top: 9%;
}

.yt-play-button::after {
  border-style: solid;
  border-width: 1em 0 1em 1.732em;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.75);
  content: ' ';
  font-size: 0.75em;
  height: 0;
  margin: -1em 0 0 -0.75em;
  top: 50%;
  position: absolute;
  width: 0;
}

#header .header-nav-main nav > ul > li > a {
  font-size: 18px !important;
}

.border-bottom {
  border-bottom: 2px solid;
  border-radius: 130px 50px/4px 2px;
}

.no-a-bg {
  background-color: #f7f7f7 !important;
}