



/*//////////////////////////////////////////////////////////////////
[ FONT ]*/
select {
    width: 100%;
    padding: 10px;
}
@font-face {
  font-family: Poppins-Regular;
  src: url('../fonts/poppins/Poppins-Regular.ttf'); 
}

@font-face {
  font-family: Poppins-Medium;
  src: url('../fonts/poppins/Poppins-Medium.ttf'); 
}

@font-face {
  font-family: Poppins-Bold;
  src: url('../fonts/poppins/Poppins-Bold.ttf'); 
}

@font-face {
  font-family: Poppins-SemiBold;
  src: url('../fonts/poppins/Poppins-SemiBold.ttf'); 
}




/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

* {
	margin: 0px; 
	padding: 0px; 
	box-sizing: border-box;
}

body, html {
	height: 100%;
	font-family: Poppins-Regular, sans-serif;
}

/*---------------------------------------------*/
a {
	font-family: Poppins-Regular;
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

a:focus {
	outline: none !important;
}

a:hover {
	text-decoration: none;
  color: #fff;
  color: -webkit-linear-gradient(left, #565d67, #17a3ea);
  color: -o-linear-gradient(left, #565d67, #17a3ea);
  color: -moz-linear-gradient(left, #565d67, #17a3ea);
  color: linear-gradient(left, #565d67, #17a3ea);
}

/*---------------------------------------------*/
h1,h2,h3,h4,h5,h6 {
	margin: 0px;
}

p {
	font-family: Poppins-Regular;
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
}

ul, li {
	margin: 0px;
	list-style-type: none;
}


/*---------------------------------------------*/
input {
	outline: none;
	border: none;
}

textarea {
  outline: none;
  border: none;
}

textarea:focus, input:focus {
  border-color: transparent !important;
}

input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }
input:focus:-ms-input-placeholder { color:transparent; }

textarea:focus::-webkit-input-placeholder { color:transparent; }
textarea:focus:-moz-placeholder { color:transparent; }
textarea:focus::-moz-placeholder { color:transparent; }
textarea:focus:-ms-input-placeholder { color:transparent; }

input::-webkit-input-placeholder { color: #adadad;}
input:-moz-placeholder { color: #adadad;}
input::-moz-placeholder { color: #adadad;}
input:-ms-input-placeholder { color: #adadad;}

textarea::-webkit-input-placeholder { color: #adadad;}
textarea:-moz-placeholder { color: #adadad;}
textarea::-moz-placeholder { color: #adadad;}
textarea:-ms-input-placeholder { color: #adadad;}

/*---------------------------------------------*/
button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

iframe {
	border: none !important;
}


/*//////////////////////////////////////////////////////////////////
[ Utility ]*/
.txt1 {
  font-family: Poppins-Regular;
  font-size: 13px;
  color: #666666;
  line-height: 1.5;
}

.txt2 {
  font-family: Poppins-Regular;
  font-size: 13px;
  color: #333333;
  line-height: 1.5;
}

/*//////////////////////////////////////////////////////////////////
[ login ]*/

.limiter {
  width: 100%;
  margin: 0 auto;
}

.container-login100 {
  width: 100%;  
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
/*  background: #f2f2f2;  
*/}

.wrap-login100 {
  width: 390px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 40px 55px 33px 55px;

  box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
}


/*------------------------------------------------------------------
[ Form ]*/

.login100-form {
  width: 100%;
}

.login100-form-title {
  display: block;
  font-family: Poppins-Bold;
  font-size: 30px;
  color: #333333;
  line-height: 1.2;
  text-align: center;
}
.login100-form-title i {
  font-size: 60px;
}

/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
  width: 100%;
  position: relative;
  border-bottom: 2px solid #adadad;
  margin-bottom: 30px;
}
.wrap-input101 {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
} 

.input100 {
  font-family: Poppins-Regular;
  font-size: 15px;
  color: #555555;
  line-height: 1.2;

  display: block;
  width: 100%;
  height: 45px;
  background: transparent;
  padding: 0 5px;
}

/*---------------------------------------------*/ 
.focus-input100 {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-input100::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;

  background: #6a7dfe;
  background: -webkit-linear-gradient(left, #565d67, #17a3ea);
  background: -o-linear-gradient(left, #565d67, #17a3ea);
  background: -moz-linear-gradient(left, #565d67, #17a3ea);
  background: linear-gradient(left, #565d67, #17a3ea);
}

.focus-input100::after {
  font-family: Poppins-Regular;
  font-size: 15px;
  color: #999999;
  line-height: 1.2;

  content: attr(data-placeholder);
  display: block;
  width: 100%;
  position: absolute;
  top: 16px;
  left: 0px;
  padding-left: 5px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.input100:focus + .focus-input100::after {
  top: -15px;
}

.input100:focus + .focus-input100::before {
  width: 100%;
}

.has-val.input100 + .focus-input100::after {
  top: -15px;
}

.has-val.input100 + .focus-input100::before {
  width: 100%;
}

/*---------------------------------------------*/
.btn-show-pass {
  font-size: 15px;
  color: #999999;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  padding-right: 5px;
  cursor: pointer;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.btn-show-pass:hover {
  color: #6a7dfe;
  color: -webkit-linear-gradient(left, #565d67, #17a3ea);
  color: -o-linear-gradient(left, #565d67, #17a3ea);
  color: -moz-linear-gradient(left, #565d67, #17a3ea);
  color: linear-gradient(left, #565d67, #17a3ea);
}

.btn-show-pass.active {
  color: #6a7dfe;
  color: -webkit-linear-gradient(left, #565d67, #17a3ea);
  color: -o-linear-gradient(left, #565d67, #17a3ea);
  color: -moz-linear-gradient(left, #565d67, #17a3ea);
  color: linear-gradient(left, #565d67, #17a3ea);
}



/*------------------------------------------------------------------
[ Button ]*/
.container-login100-form-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 13px;
}

.wrap-login100-form-btn {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 25px;
  overflow: hidden;
  margin: 0 auto;
}

.login100-form-bgbtn {
  position: absolute;
  z-index: -1;
  width: 300%;
  height: 100%;
  background: #a64bf4;
  background: -webkit-linear-gradient(right, #565d67, #17a3ea, #565d67, #17a3ea);
  background: -o-linear-gradient(right, #565d67, #17a3ea, #565d67, #17a3ea);
  background: -moz-linear-gradient(right, #565d67, #17a3ea, #565d67, #17a3ea);
  background: linear-gradient(right, #565d67, #17a3ea, #565d67, #17a3ea);
  top: 0;
  left: -100%;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.login100-form-btn {
  font-family: Poppins-Medium;
  font-size: 13pt;
  font-weight:bold;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  height: 50px;
}

.wrap-login100-form-btn:hover .login100-form-bgbtn {
  left: 0;
}


/*------------------------------------------------------------------
[ Responsive ]*/

@media (max-width: 576px) {
  .wrap-login100 {
    padding: 77px 15px 33px 15px;
  }
}



/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 2px;
  padding: 4px 25px 4px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0px;
  pointer-events: none;

  font-family: Poppins-Regular;
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f06a";
  font-family: FontAwesome;
  font-size: 16px;
  color: #c80000;

  display: block;
  position: absolute;
  background-color: #fff;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 5px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}






noscript {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: table;
  background-color: #000;
  z-index: 99999999;
}

noscript h1.no-script {
  display: table-cell;
  vertical-align: middle;
  color: #fff;
  text-align: center;
}





.app-store,
.google-play {
  display: block;
  position: relative;
  margin: 0 auto 30px;
  width: 160px;
  height: 60px;
  padding-left: 54px;
  text-align: left;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background-color 0.5s ease, border-color .5s ease, color .5s ease;
  cursor: pointer;
}

.app-store::after,
.google-play::after {
  content: none;
}

.app-store span,
.google-play span {
  font-size: 10px;
  display: block;
  line-height: 1;
  margin-top: 13px;
  margin-bottom: -5px;
  letter-spacing: -0.5px;
}

.app-store .fa,
.google-play .fa {
  font-size: 25px;
  position: absolute;
  top: 50%;
  left: 25px;
}

.app-store .fa.google-play-bg,
.google-play .fa.google-play-bg {
  opacity: .2;
  top: 23%;
  -webkit-transition: opacity .5s ease;
  -moz-transition: opacity .5s ease;
  -ms-transition: opacity .5s ease;
  -o-transition: opacity .5s ease;
  transition: opacity .5s ease;
}

.app-store .fa.google-play-bg:before,
.google-play .fa.google-play-bg:before {
  content: '';
  position: absolute;
  top: 3px;
  background: url("../img/play-market.png") top center no-repeat;
  width: 26px;
  height: 27px;
  background-size: 100%;
}

.app-store:hover,
.google-play:hover {
  border: 1px solid white;
}

.app-store:hover .fa.google-play-bg,
.google-play:hover .fa.google-play-bg {
  opacity: 1;
}


.app-store {
  float: left;
}


.google-play {
  letter-spacing: -0.95px;
  float: right;
}


.main_block .app-store,
.main_block .google-play {
  display: none;
}


@media (max-width: 991px) {
  
  #timer {
    top: 5%;
  }

  
  .timer {
    top: 5%;
  }

  
  .main_block {
    padding: 52px 0 0 0;
  }
  
  .main_block.carousel {
    padding: 37px 0 0 0;
  }

  
  
  .navbar-header {
    width: 100%;
  }

  
  
  .main-text {
    padding-left: 50px;
    padding-right: 50px;
  }

  
  
  .main_block_text {
    padding-left: 35px;
    padding-right: 35px;
  }

  
  .top-left-block {
    will-change: transform;
    will-change: -webkit-transform;
    transform: rotate(15deg) translate(10%, -89%) scale(1.7);
    z-index: -1;
  }

  @keyframes thumb {
    0% {
      transform: rotate(14deg) translate(8%, -59%);
    }
    100% {
      transform: rotate(15deg) translate(8%, -59%);
    }
  }
  
  .info-about-app .main-block {
    height: 75%;
    top: 50%;
  }
  
  .info-about-app .info-section {
    top: 19.45%;
    right: 10%;
    width: 50%;
  }
  
  .info-about-app .app-img {
    left: 4%;
    will-change: transform;
    transform: translate(0, -50%);
  }

  
  .navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
    position: absolute;
    top: -139px;
  }
}

@media (max-width: 767px) {
  
  #timer {
    top: 54%;
    transform: translateY(-50%);
  }

  
  .timer {
    top: 0;
  }

  
  .main_block {
    padding: 39px 0 0 0;
  }
  
  .main_block .subscribe {
    width: 60%;
  }
  
  .main_block .subscribe.open {
    width: 90%;
  }
  
  .main_block.contacts {
    padding: 56px 0 0 0;
  }
  
  .main_block.carousel {
    padding: 9px 0 0 0;
  }
  
  .main_block.main-page header h1 {
    letter-spacing: 6px;
  }
  
  .main_block > header h1 {
    font-size: 30px;
    letter-spacing: 6px;
    margin: 0 auto 28px;
  }
  
  .main_block > header h1.main-page-heading {
    line-height: 1.2;
    letter-spacing: 5px;
  }
  
  .main_block .main_block_text {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .main_block .main_block_text p, .main_block .main_block_text .info address {
    font-size: 14px;
    line-height: 2.15;
    margin: 0 0 30px 0px;


  }
  
  .main_block .main_block_text p.main-text, .main_block .main_block_text .info address.main-text {
    padding-left: 0;
    padding-right: 0;
  }
  
  .main_block .main_block_text .category-group > li {
    width: 56px;
  }
  
  .main_block.about-app {
    padding: 22px 0 0 0;
  }
  
  .main_block .open-info-about-app {
    display: none;
  }
  
  .main_block .app-store,
  .main_block .google-play {
    display: block;
    float: none;
  }
  
  .main_block .app-store span,
  .main_block .google-play span {
    margin-bottom: -1px;
  }

  
  .top-left-block {
    display: none;
  }

  
  .owl-carousel.demos {
    max-width: 100%;
    margin: 0;
  }
  
  .owl-carousel.demos img {
    opacity: 1;
  }

  
  .info-about-app {
    display: none;
  }
  
  .info-about-app.open {
    display: none;
  }

  
  .mobile-show-index {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 99999;
    text-align: center;
  }
  
  .mobile-show-index.open {
    display: block;
  }

  
  .fotorama__stage__frame .fotorama__html {
    display: table;
  }

  
  .fotorama__nav, .fotorama__stage {
    overflow: visible !important;
  }

  
  .fotorama__wrap--only-active .fotorama__nav,
  .fotorama__wrap--only-active .fotorama__stage {
    width: 100% !important;
  }

  
  nav.hide {
    display: block !important;
  }

  
  .main_block.about-app.close {
    opacity: 1;
  }

  
  #bgvid {
    display: none;
  }

  
  figure {
    float: none;
    display: block;
    margin: 0 auto;
  }
}


@media screen and (max-width: 991px) {
  
  .check-group {
    padding-left: 0;
  }

  
  .radio-group {
    padding-left: 0;
  }

  
  .link-group {
    padding-left: 0;
    margin-top: 11px;
  }

  
  .button-group {
    padding-left: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  
  ol.left {
    float: none;
  }
  
  ol.marg-right-110 {
    margin-right: 0;
  }

  
  p img, .main_block_text .info address img {
    display: block;
    float: none;
    margin: 7px auto 15px;
  }

  
  blockquote {
    padding: 37px 0 0 0;
  }

  
  input[type="text"].typo_form_name {
    width: 100%;
    float: none;
  }

  
  .typo_form_select {
    float: none;
  }

  
  .check-group,
  .radio-group,
  .link-group {
    margin-bottom: 10px;
  }
}


.marg-bot-23 {
  margin-bottom: 23px;
}


.marg-bot-6 {
  margin-bottom: 6px;
}


.marg-bot-9 {
  margin-bottom: 9px;
}


.marg-bot-17 {
  margin-bottom: 9px;
}


.marg-bot-12 {
  margin-bottom: 12px;
}


.marg-bot-18 {
  margin-bottom: 18px;
}


.marg-bot-40 {
  margin-bottom: 40px;
}


.marg-bot-41 {
  margin-bottom: 41px;
}


.marg-bot-10 {
  margin-bottom: 10px;
}


.marg-bot-11 {
  margin-bottom: 11px;
}


.marg-bot-7 {
  margin-bottom: 7px;
}


.marg-bot-37 {
  margin-bottom: 37px;
}


.marg-bot-19 {
  margin-bottom: 19px;
}


.marg-bot-50 {
  margin-bottom: 50px;
}


.marg-right-110 {
  margin-right: 110px;
}





.image_bg {
  background: rgba(0, 0, 0, 0.5) url(../img/slider1.jpg) 50% 50% fixed;
  background-size: cover;
}


.gradient_bg {
  background: #34a6a9;
  
  background: -moz-linear-gradient(top, #34a6a9 0%, #534088 87%);
  
  background: -webkit-linear-gradient(top, #34a6a9 0%, #534088 87%);
  
  background: linear-gradient(to bottom, #34a6a9 0%, #534088 87%);
  
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#34a6a9', endColorstr='#534088',GradientType=0 );
  
}

.gradient_bg .wrapp .preload-bg, .gradient_bg .wrapp .preload-bg .preloaderWraper {
  background-color: black;
}

.gradient_bg .wrapp #loadPrecent {
  color: #fff;
}

.gradient_bg .wrapp.done .preload-bg, .gradient_bg .wrapp.done .preload-bg .preloaderWraper, .gradient_bg .wrapp.hide-preloader .preload-bg, .gradient_bg .wrapp.hide-preloader .preload-bg .preloaderWraper {
  background-color: transparent;
}




.color_bg {
  background-color: #e4f7fe;
}


.color_bg .wrapp .preload-bg, .color_bg .wrapp .preload-bg .preloaderWraper {
  background-color: white;
}

.color_bg .wrapp #loadPrecent {
  color: #000;
}

.color_bg .wrapp.done .preload-bg, .color_bg .wrapp.done .preload-bg .preloaderWraper, .color_bg .wrapp.hide-preloader .preload-bg, .color_bg .wrapp.hide-preloader .preload-bg .preloaderWraper {
  background-color: rgba(255, 255, 255, 0);
}

.color_bg .wrapp .preload-bg, .color_bg .wrapp .preload-bg .preloaderWraper {
  background-color: white;
}

.color_bg .wrapp #loadPrecent {
  color: #000;
}

.color_bg .wrapp.done .preload-bg, .color_bg .wrapp.done .preload-bg .preloaderWraper, .color_bg .wrapp.hide-preloader .preload-bg, .color_bg .wrapp.hide-preloader .preload-bg .preloaderWraper {
  background-color: rgba(255, 255, 255, 0);
}

.color_bg h1, .color_bg h2, .color_bg h3, .color_bg h4, .color_bg h5, .color_bg h6,
.color_bg .h1, .color_bg .h2, .color_bg .h3, .color_bg .h4, .color_bg .h5, .color_bg .h6 {
  color: black;
}

.color_bg .main_block header h1 {
  color: black;
}

.color_bg p, .color_bg .main_block_text .info address, .main_block_text .info .color_bg address,
.color_bg .main_block_text .info address {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
}

.color_bg a {
  color: rgba(0, 0, 0, 0.5);
  font-weight: 500;
}

.color_bg a:hover, .color_bg a:active {
  color: black !important;
}

.color_bg a:focus {
  color: rgba(0, 0, 0, 0.5) !important;
}

.color_bg .subscribe .subscribe-btn {
  border: 1px solid rgba(0, 0, 0, 0.5);
  color: rgba(0, 0, 0, 0.5);
}

.color_bg .subscribe .subscribe-btn:hover, .color_bg .subscribe .subscribe-btn:active {
  border: 1px solid black;
  color: black !important;
}

@media (min-width: 992px) {
  
.color_bg .main_block_text p.title-text, .color_bg .main_block_text .info address.title-text,
.color_bg .main_block_text .info address.title-text {
  color: #000;
}
.color_bg .category-group > li a svg {
  fill: rgba(0, 0, 0, 0.5);
}
.color_bg .category-group > li a:hover svg {
  fill: black;
}
.color_bg .category-group > li.active a svg {
  fill: black;
}
.color_bg .item .item-info .team-name {
  color: #000;
}
.color_bg .bottom {
  background-color: transparent;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.color_bg .bottom .close-this::before {
  background-color: rgba(0, 0, 0, 0.6);
}
.color_bg .bottom .close-this::after {
  background-color: rgba(0, 0, 0, 0.6);
}
.color_bg .bottom .close-this:hover::before {
  background-color: black;
}
.color_bg .bottom .close-this:hover::after {
  background-color: black;
}
.color_bg .map .bottom {
  background-color: #fff;
}
.color_bg .stack__images li {
  background: url("../img/app-black-bg.svg") 100% 100% no-repeat;
}
.color_bg .myScroll span {
  background-color: rgba(0, 0, 0, 0.5);
}
.color_bg .app-store,
.color_bg .google-play {
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.color_bg .app-store:hover,
.color_bg .google-play:hover {
  border: 1px solid black;
}
.color_bg .info-about-app .info-about-app_block {
  height: -webkit-calc(100% - 100px);
  height: -moz-calc(100% - 100px);
  height: calc(100% - 100px);
}
.color_bg .fotorama--fullscreen.open {
  background-color: #fff;
}
.color_bg .fotorama--fullscreen .fotorama__nav-wrap {
  height: 80px;
  background-color: #fff;
}
.color_bg .fotorama--fullscreen .fotorama__nav,
.color_bg .fotorama--fullscreen .fotorama__stage {
  background-color: #fff !important;
}
.color_bg .fotorama__stage__frame.fotorama__loaded--img.fotorama__active {
  background-color: #fff;
}
.color_bg .fotorama--fullscreen .fotorama-info .team-name {
  color: #000 !important;
}
.color_bg .fotorama--fullscreen .fotorama-info .team-name .team-work {
  color: rgba(0, 0, 0, 0.6);
}
.color_bg .fotorama-style.size-320 .bottom {
  margin-top: 0;
  background-color: transparent;
}
.color_bg .full-canvas {
  background-color: rgba(255, 255, 255, 0.1);
}
.color_bg .full-canvas.opened {
  background-color: white;
}
@media screen and (max-device-width: 767px) {
  body {
    background-color: #000;
  }
  #bgvid {
    display: none;
  }
}
