* {
  margin: 0;
  padding: 0;
}

html, body{
  width: 100%;
  height: 100%;
  display: block;
}

@font-face {
  font-family: Fea;
  src: url("/moyking/static/fonts/Fea.otf");
}

@font-face {
  font-family: Coco;
  src: url("/moyking/static/fonts/Coco.ttf");
}

input,textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-size: 100%;
  font-weight: 400;
  padding: 5px;
}
input,textarea::-moz-placeholder { /* Firefox 19+ */
  font-size: 100%;
  font-weight: 400;
  padding: 5px;
}
input,textarea:-ms-input-placeholder { /* IE 10+ */
  font-size: 100%;
  font-weight: 400;
  padding: 5px;
}
input,textarea:-moz-placeholder { /* Firefox 18- */
  font-size: 100%;
  font-weight: 400;
  padding: 5px;
}

textarea {
  width: 68%;
  height: 200px;
  resize: none;
  border: 0;
  border-bottom: solid 2px #3b66a5;
  border-top: solid 2px #3b66a5;
  outline: none;
  -webkit-box-shadow: 0px 10px 30px -20px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 10px 30px -20px rgba(0,0,0,0.75);
  box-shadow: 0px 10px 30px -20px rgba(0,0,0,0.75);
}

ul {
  list-style: none;
}

label {
  padding: 10px;
  font-weight: 400;
}

@keyframes bounce {
  10% {margin-top: -40px;}
  30% {margin-top: 0px;}
  40% {margin-top: -30px;}
  50% {margin-top: 0px;}
  60% {margin-top: -20px;}
  70% {margin-top: 0px;}
  80% {margin-top: -10px;}
  90% {margin-top: 0px;}
}

@keyframes box-shadow {
  20% {-webkit-box-shadow: 0px 0px 30px 0px rgba(59,102,165,1);
      -moz-box-shadow: 0px 0px 30px 0px rgba(59,102,165,1);
      box-shadow: 0px 0px 30px 0px rgba(59,102,165,1);}
  40% {-webkit-box-shadow: 0px 0px 50px 5px rgba(59,102,165,1);
      -moz-box-shadow: 0px 0px 50px 5px rgba(59,102,165,1);
      box-shadow: 0px 0px 50px 5px rgba(59,102,165,1);}
  60% {-webkit-box-shadow: 0px 0px 60px 10px rgba(59,102,165,1);
    -moz-box-shadow: 0px 0px 60px 10px rgba(59,102,165,1);
    box-shadow: 0px 0px 60px 10px rgba(59,102,165,1);}
  80% {-webkit-box-shadow: 0px 0px 50px 5px rgba(59,102,165,1);
    -moz-box-shadow: 0px 0px 50px 5px rgba(59,102,165,1);
    box-shadow: 0px 0px 50px 5px rgba(59,102,165,1);}
  100% {-webkit-box-shadow: 0px 0px 30px 0px rgba(59,102,165,1);
    -moz-box-shadow: 0px 0px 30px 0px rgba(59,102,165,1);
    box-shadow: 0px 0px 30px 0px rgba(59,102,165,1);}
}
/* nav bar */
.navbar-container{
  position: fixed;
  width: 100%;
  padding: 0px 20px 0px 20px;
  z-index: 1;
  top: 0%;
  left: 0%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  background: rgba(0,0,0,0);
  transition: background 0.2s ease-in-out;
}

.navbar-logo {
  filter: brightness(0) invert(1);
  padding: 10px;
}

.navbar-logo:hover {
  opacity: 0.8;
  transition: opacity 0.2s ease-in-out;
}

.navbar-links {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-links > ul {
  padding: 5px;
  display: flex;
  align-items: center; 
  justify-content: center;
}

.navbar-links > ul > li {
  padding: 10px;
  margin: 0px 10px 0px 10px;
  font-size: 150%;
  font-weight: 400;
}

.navbar-links > ul > li > a {
  color: #f2f2f2;
}

.navbar-links > ul > li > a:hover {
  text-decoration: none;
  color: #3b66a5;
  transition: color 0.2s ease-in-out; 
}


.navbar-contacts {
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-contacts > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.navbar-contacts > ul > li {
  font-size: 150%;
}

.navbar-contacts > ul > li > a {
  color: #f2f2f2;
  opacity: 1;
}

.navbar-contacts > ul > li > a:hover {
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s ease-out;
}

#phone-link-id{
  font-weight: 500;
  padding: 10px;
  border: 2px solid #3b66a5;
  border-radius: 30px;
  -webkit-box-shadow: 0px 0px 20px -5px rgba(59, 102, 165,0.75);
  -moz-box-shadow: 0px 0px 20px -5px rgba(59, 102, 165,0.75);
  box-shadow: 0px 0px 20px -5px rgba(59, 102, 165,0.75);
}

/*Scrolled menu*/

.navbar-container.scrolled {
  position: fixed;
  width: 100%;
  z-index: 2;
  top: 0%;
  left: 0%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  background: #f2f2f2;
  transition: background 0.5s ease-in-out;
  -webkit-box-shadow: 0px 5px 20px -10px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 5px 20px -10px rgba(0,0,0,0.75);
  box-shadow: 0px 5px 20px -10px rgba(0,0,0,0.75);
}

.navbar-container.scrolled > .navbar-logo {
  filter: brightness(1);
  float: left;
}

.navbar-container.scrolled > .navbar-links > ul > li > a {
  color: #3b66a5;
  transition: color 0.2s ease-in-out;
}

.navbar-container.scrolled > .navbar-links > ul > li > a:hover {
  color: #c1d6f0;
  transition: color 0.2s ease-in-out; 
}

.navbar-container.scrolled > .navbar-contacts > ul > li > a {
  color: #383838;
  opacity: 1;
}

.navbar-container.scrolled > .navbar-contacts > ul > li > a:hover {
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s ease-out;
}

.menu {
  display: none;
}

.menu-list {
  display: none;
}

/* self classses */

.container-custom {
  overflow: hidden;
  background: url("/moyking/static/images/back.png") no-repeat fixed; 
}

/* main photo container */
.main-photo {
  overflow: auto;
  height: 100vh;
  width: 100%;
  position: relative;
  /*background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0.5,0)), url("/moyking/static/images/flower-min.jpg") no-repeat center center fixed;*/
  background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.6)), url("/moyking/static/images/pic-drops-min.jpg") no-repeat center center fixed;
  /*background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.0)), url("/moyking/static/images/back-new-year-min.jpg") no-repeat center center fixed;*/
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;

}

/* div */
.center-text {
  position: absolute;
  text-align: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 50%;
  padding: 20px;
  color: #f2f2f2;
}

.main-text-style {
  font-size: 8vw;
  font-family: Fea;
  margin: 0;
}

.text-style {
  font-size: 30px;
  margin: 0;
  text-align: center;
}

/* index icons container */
.circle {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%,-100%);
  animation-name: bounce;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}

.circle:hover {
  filter: brightness(0.7);
}

.icon-container {
  padding: 10px;
  text-align: center;
}

.icon-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.icon-wrap > img {
  width: 30%;
  padding: 10px;
}

.under-icon {
  color:#9b9a9a; 
  font-size: 16px;
  margin-top: 20px;
  text-align: center;
}

.notification {
  position: fixed;
  top: 13%;
  left: 97%;
  width: 25%;
  transform: translate(-97%, -12%);
  z-index: 2;
  background: #f2f2f2;
  box-shadow: 2px 2px 10px 2px hsla(0, 4%, 4%, 0.2);
  border-radius: 10px; 
}

.notification-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.notification-container > span {
  font-size: 150%;
  color: #e4a828;
  border-radius: 30px;
  border: 2px solid #e4a828;
  padding: 10px;
}

#notification-close {
  font-size: 100%;
  color: #999;
  border: none;
  align-self: flex-start;
  padding: 0;
}

.notification-container > p {
  font-weight: 300;
  font-size: 120%;
  padding: 10px;
}

.book-phone-call {
  position: fixed;
  top: 95%;
  left: 95%;
  transform: translate(-95%,-95%);
  z-index: 2;
  background: #3b66a5;
  border: 1px solid #f2f2f2;
  border-radius: 50px;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(59,102,165,1);
  -moz-box-shadow: 0px 0px 30px 0px rgba(59,102,165,1);
  box-shadow: 0px 0px 30px 0px rgba(59,102,165,1);
  animation: 2s linear .1s box-shadow;
  animation-iteration-count: infinite;
}

.book-phone-call:hover {
  transform: scale(1.05) translate(-95%,-95%);
  transition: transform 0.2s ease-in-out;
}

.book-phone-call-wrapper>span{
  font-size: 300%;
  padding: 15px;
  color: #f2f2f2;
}

.book-call-window{
  position: fixed;
  top: 0%;
  left: 75%;
  transform: translate(100%,0%);
  height: 100%;
  width: 25%;
  background: #ededed;
  z-index: 2;
  -webkit-box-shadow: -5px 0px 26px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: -5px 0px 26px 0px rgba(0,0,0,0.75);
  box-shadow: -5px 0px 26px 0px rgba(0,0,0,0.75);
}

.opened.book-call-window{
  left: 75%;
  transform: translate(0%,0%);
  transition: transform 0.2s cubic-bezier(0.19, 1, 0.22, 1);
}

#book-call-close{
  position: relative;
  left:90%;
  top: 0%;
  transform: translate(-90%,0);
  font-size: 300%;
  color: #383838;
  background: #ededed;
  opacity: 0.7;
}

#book-call-close:hover{
  opacity: 1;
  cursor: pointer;
  transition: opacity 0.2s ease-in-out;
}

.book-call-container{
  position: relative;
  top: 40%;
  transform: translateY(-40%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.book-call-container>form>input{
  background: #ededed;
  outline: none;
  border: none;
  width: 70%;
  border-bottom: 2px solid #3b66a5;
  margin: 0px 15% 30px 15%;
}

.book-call-container>form>input:valid {
  border-bottom: 2px solid #009000;
}

#book-call-button{
  width: 40%;
  margin: 0 30% 20px 30%;
}

.book-call-container>p{
  color: #3b66a5;
  font-size: 180%;
  padding: 30px;
  font-weight: 300;
}

.book-call-container>p>span{
  color: #383838;
  font-weight: 600;
}

.recaptcha-centered {
    text-align: center;
    margin: 5px;
}

.recaptcha-centered > div {
    display: inline-block;
}

.icon-text-style {
  font-size: 130%;
  margin-top: 5%;
  color: #3b66a5;
  font-weight: 600;
  /*font-family: Noto Sans, sans-serif;*/
}

.big-center-text {
  margin-top: 30px;
  margin-bottom: 20px;
  text-align: center;
  font-size: 250%;
  font-weight: 600;
  color: #3b66a5; 
  /*font-family: Noto Sans, sans-serif;*/
}

/* reviews section */
.reviews-corousel {
  padding: 10px 0px 10px;
  margin-top: 10px;
  margin-bottom: 30px;

}

.reviews-cell {
  width: 100%;
  text-align: center;
  padding: 10px;
}

.reviews-cell > h3 {
  color: #3b66a5;
  font-weight: 600;
}

.flickity-button {
  color: #3b66a5 !important;
}

.flickity-page-dots {
  margin-bottom: 20px;
}

.dot {
  background: #3b66a5 !important;
}

.user-icon-wrap > img {
  width: 10%;
  height: 10%;
  padding: 10px;
}

.review-text-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 50%;
  margin-left: 25%;
  background: #f2f2f2;
  border-radius: 30px;
  padding: 20px;
}

.review-text-container > span {
  color: #e4a828;
  padding: 10px;
  border: 2px solid #e4a828;
  border-radius: 30px;
  font-size: 20px;
}

.review-text-container > p {
  font-weight: 300;
  font-size: 140%;
  color: #383838;
}
/* */


/* app download container */

.app-download-container {
  width: 100%;
  overflow: auto;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('/moyking/static/images/picture-phone-min.jpg') no-repeat center center;
  background-size: cover;
  padding-top: 20px;
  padding-bottom: 40px;
}

.phone-img {
  text-align: center;
}

.stores-img-div {
  width: 50%;
  text-align: center;
}

.stores-img-style {
  width: 80%;
  padding: 15px;
}

.stores-text-style {
  font-size: 150%;
  font-weight: 500;
  /*font-family: Noto Sans, sans-serif; */
  color: #f2f2f2;
  text-align: center; 
  padding: 10px;
}
/* bottom information container */

#row {
  margin-left: 15%;
  margin-right: 5%;
  margin-top: 5%;
}

.info-text-style {
  font-size: 140%;
  text-align: left;
  padding-left: 3%;
  text-decoration: none;
  font-weight: bold;
  font-weight: 500;
  display:block;
}

.info-contacts-text-style{
  font-size: 100%;
  text-align: left;
  padding-left: 5%;
  text-decoration: none;
  font-weight: bold;
  font-weight: 500;
  color: #cccccc;
}

#info-phone {
  font-size: 150%;
  color: #c1d6f0;
}

.info-contacts-text-style a {
  color: #cccccc;
}

.info-contacts-text-style a:hover {
  text-decoration: none;
  opacity: 0.8;
}

.footer-logo {
  filter: brightness(0) invert(1);
}

.info-text-style a {
  color: #c1d6f0;
  display:inline-block;
  margin: 12px 0px 12px 0px;
}

.info-text-style a:hover {
  text-decoration: none;
  opacity: 0.8;
}

.info-text-style ul > li > a{
  color: #cccccc;
  font-size: 80%;
}

.info-text-style ul > li > a:hover {
  text-decoration: none;
  opacity: 0.8;
}

.media-info-container {
  font-size: 200%;
  margin-top: 20px;
}

/* id's */
#custom-row {
  margin-left: 10%;
  margin-right: 5%;
  margin-top: 3%;
}

#icons-row {
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 20px;
}

#top-text {
  margin-bottom: 30px;
}

#info-id {
  height: 400px;
  background: rgba(30, 30, 30,1);
}

#phone-text-id {
  color: #f2f2f2;
}

/* sections */
#index-main-section {
  margin-bottom: 30px;
}


#app-download-section{
}

#contacts-section {
  margin-top: 0px;
}


/* media icons style*/

.fa {
  margin: 3%;
  padding: 10px;
  width: 45px;
  text-align: center;
  text-decoration: none;
  color: #383838;
}

#media-id{
  color: #f2f2f2;
}

#media-id:hover{
  opacity: 0.8;
}

.fa:hover {
  text-decoration: none;
  opacity: 0.8;
}

#media-in-menu {
  display: none;
}

/* contacts */

.contacts-box {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  border: 1px solid #ededed;
  margin: 0px 50px 50px 50px;
}

.contacts-box > div {
  padding: 20px;
}

.contacts-box-addr {
  text-align: center;
}

.contacts-box-addr > a {
  font-size: 120%;
  color: #383838;
  font-weight: 400;
}

.contacts-box-addr > a:hover {
  opacity: 0.7;
  text-decoration: none;
  transition: opacity 0.2s ease-in-out;
}

.contacts-box-phone {
  padding: 5px;
  text-align: center;
}

.contacts-box-phone > a {
  font-size: 150%;
  color: #383838;
  font-weight: 600;
}

.contacts-box-phone > a:hover {
  opacity: 0.7;
  text-decoration: none;
  transition: opacity 0.2s ease-in-out;
}

.contacts-box-mail {
  padding: 5px;
  text-align: center;
}

.contacts-box-mail > a {
  font-size: 150%;
  color: #383838;
  font-weight: 400;
}

.contacts-box-mail > a:hover {
  opacity: 0.7;
  text-decoration: none;
  transition: opacity 0.2s ease-in-out;
}

.contacts-box-media {
  padding: 5px;
  text-align: center;
}

.contacts-box-media > a {
  font-size: 200%;
  color: #3b66a5;
  font-weight: 400;
}


.map-contacts-cntr{
  position: relative;
}

.contacts-container {
  position: absolute;
  top: 30%;
  right: 5%;
  transform: translate(-5%,-30%);
  z-index: 1;
  font-size: 120%;
  background: rgba(59, 102, 165, 0.9);
  border-radius: 5px;
  padding: 50px;
}

#contacts-header{
  color: #f2f2f2;
}

.contacts-txt-stl {
  color: #c1d6f0;
  font-weight: 400;
  margin: 20px 0px 20px 0;
}

.contacts-txt-stl > a {
  text-decoration: none;
}

.contacts-txt-stl > a:hover {
  opacity: 0.8;
}

.contacts-text-style {
  font-weight: 600;
  font-size: 110%;
  color: #f2f2f2;
}

.media-info-container > a {
  color: #f2f2f2;
}

.contacts-container > a:hover {
  text-decoration: none;
}

.logo-container > img{
  width: 65%;
  margin: 10px 10px 30px 10px;
}

#map {
  height: 500px;
  width: 100%;
}

.input-style {
  width: 30%;
  margin: 10px 10px 10px 0px;
  border: 0;
  border-bottom: solid 2px #3b66a5;
  outline: none;
}

#email-bckgr {
  padding: 50px 0 50px 0;
  background: #3b66a5;
}

.email-sender-container {
  text-align: center;
  width: 60%;
  margin-left: 20%;
  margin-right: 20%;
  background: #fff;
  padding: 10px;
  -webkit-box-shadow: 0px 0px 50px -10px rgba(0,0,0,1);
  -moz-box-shadow: 0px 0px 50px -10px rgba(0,0,0,1);
  box-shadow: 0px 0px 50px -10px rgba(0,0,0,1);
}

.email-txt-stl {
  font-weight: 600;
  color: #383838;
  font-size: 250%;
}

.icon-email {
  color: #3b66a5;
}

/* gallery */
.gallery-img{
  width: 100%;
  transform: translate(0,-25%);
  filter: brightness(60%);
}


.gallery-img:hover{
  filter: brightness(100%);
  transition: filter cubic-bezier(0.4, 0, 0.2, 1) 500ms;
  cursor: zoom-in;
}

#gallery-column {
  max-height: 190px;
  overflow: hidden;
  margin-bottom: 20px; 
}

.expanded-photo {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: fixed;
  padding-top: 110px;
  top: 0;
  left: 0;
  z-index: 1;
  display: none;
  overflow: auto;
}

.expanded-img-wrapper{
  display: flex;
  margin-left: 20%;
  width: 60%;
  justify-content: center;
  align-items: center;
}

#expanded-img {
    width: 70%;
    height: 70%;
}

#expanded-img:hover {
  cursor: zoom-out;
}

.close-btn {
  position: absolute;
  top: 70px;
  right: 20px;
  color: #ffffff;
  font-size: 300%;
  color: #ffffff;
}

.close-btn:hover {
  cursor: pointer;
  transform: scale(0.95);
  color: #999;
}

.next, .prev {
  position: absolute;
  font-size: 300%;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  text-align: center;
}

.prev {
  left: 20%;
}

.next {
  right: 20%;
}

.prev:hover,
.next:hover {
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

#gallery-row{
  padding: 40px 4px 40px 4px;
} 

.no-photo-icon {
  text-align: center;
}

.no-photo-icon > img {
  width: 60%;
  opacity: 0.2;
}

/* preloader */

.no-js #loader { display: none;  }
.js #loader { display: block; position: absolute; left: 100px; top: 0; }
.se-pre-con {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url('/moyking/static/preloader.gif') center no-repeat #fff;
}


/*  calculate price */

#calculate-price {
  margin-bottom: 60px;
}


#calc-price-container {
  text-align: center;
  padding: 20px;

}

.cars-img {
}

.sedan-cl {
  width: 80%;
  padding: 10px; 
  border-bottom: solid 3px rgba(255,255,255,0);
}

.crossover {
  width: 80%;
  border-bottom: solid 3px rgba(255,255,255,0);
}

.big{
  width: 80%; 
  border-bottom: solid 3px rgba(255,255,255,0);
}

.premium {
  width: 90%;
  border-bottom: solid 3px rgba(255,255,255,0);
}


label > input{ 
  position: absolute;
}
label > input + img{ /* IMAGE STYLES */
  cursor:pointer;
}
label > input:checked + img{ /* (RADIO CHECKED) IMAGE STYLES */
  border-bottom: solid 3px #3b66a5;
  transition: border-bottom 0.5s ease-in-out;
}

.price-txt-stl {
  color:#383838;
  font-size: 180%;
  font-weight: 550;
}

.price-marked {
  color: #3b66a5;
}

.service-desc {
  width: 100%;
}

.service-select {
  width: 60%;
  margin: 0px 20% 0px 20%;
}

.included-center {
  font-size: 120%; 
  color:#383838;
  padding: 10px;
  font-weight: 600;
}

.price-included > li {
  display: none;
  font-weight: 600;
  font-size: 90%;
  padding: 5px;
  color: #3b66a5;
  margin: 5px;
}
.price-included > li:hover {
  transform: scale(1.1);
  transition: transform 0.5s ease-out;
}

.nano-included {
  display: none;
  font-weight: 600;
  font-size: 90%;
  padding: 5px;
  color: #3b66a5;
  margin: 5px;
}
.nano-included:hover {
  transform: scale(1.1);
  transition: transform 0.5s ease-out;
}

#price-row {
  padding: 20px;
  border: 1px solid #ededed;
  border-radius: 5px;
}

/*PRICE page*/
.mobver-price {
  display: none;
}

.table-head{
  color: #383838; 
  font-size: 120%;
  font-weight: 500;
}

.table-text {
  color: #383838; 
  font-size: 110%;
  font-weight: 400;
}

.table-price-text {
  color:#3b66a5; 
  font-size: 110%;
  font-weight: 500;
}

#price-in-table {
  text-align: center;
  padding: 20px;
  font-size: 130%;
  font-weight: 600;
}

/* services */
.service-txt-stl {
  padding: 40px;
  font-size: 140%; 
  font-weight: 500;
  color: #f2f2f2;
}

#txt-back-box {
  background: linear-gradient(rgba(59, 102, 165,0.9), rgba(59, 102, 165,0.9));
  -webkit-box-shadow: -11px 13px 58px -16px rgba(0,0,0,0.75);
  -moz-box-shadow: -11px 13px 58px -16px rgba(0,0,0,0.75);
  box-shadow: -11px 13px 58px -16px rgba(0,0,0,0.75);
}

.service-main-txt {
  font-weight: 600;
  color: #f2f2f2;
  font-size: 150%;
}

#moika {
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)), url("/moyking/static/images/moika-min.jpg") no-repeat center center fixed;
}

#polish {
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)), url("/moyking/static/images/polish-min.jpg") no-repeat center center fixed;
}

#dryclean {
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)), url("/moyking/static/images/dryclean-min.jpg") no-repeat center center fixed;
}

#coating {
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)), url("/moyking/static/images/coating-min.jpg") no-repeat center center fixed;
}

#moika,
#polish,
#dryclean,
#coating {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  -webkit-transform: translate3d(0,0,0);
  margin: 5px 0px 0px 0px;
  padding: 50px;
  filter: grayscale(0.5);
}

/* head title  */

.head-title-wrapper{
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin-bottom: 50px;
}

.margin-zero{
  margin: 0;
}

.head-title-img{
  width: 100%;
}

.head-title-img > img{
  width: 100%;
  /* filter: contrast(10%); */
  filter: brightness(30%);
  transform: translateY(-25%);
}

.head-title{
  position: absolute;
  padding: 0px 10px 0px 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 300%;
  font-weight: 700;
  color: #f2f2f2;
}

.head-title::after{
  content: "";
  display: block;
  width: 70%;
  margin-left: 15%;
  border-bottom: 3px solid #3b66a5;
}

/* promotions */
.promotion-container{
  width: 80%;
  padding: 10px;
  margin-left: 10%; 
}

.promotion-wrapper{
  margin-bottom: 50px;
  display: flex;
  flex-flow: column;
  align-items: center;
}

.promotion-title{
  width: 100%;
  padding: 10px;
  text-align: center;
  font-size: 200%;
  font-weight: 700;
  margin: 0px;
}

.promotion-title::after{
  content: "";
  display: block;
  width: 70%;
  margin-left: 15%;
  border-bottom: 3px solid #3b66a5;
}

.promotion-desc-wrapper{
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.promotion-description{
  padding: 10px;
  font-size: 150%;
  font-weight: 400;
  width: 80%;
  text-align: center;
  color: #383838;
}

.promotion-highlighted{
  margin: 10px;
  font-size: 150%;
  font-weight: 600;
  padding: 15px;
  color: #3b66a5;
  border: 2px #3b66a5 solid;
  border-radius: 30px;
}

.footnote{
  text-align: center;
  width: 50%;
  margin-left: 25%;
  color: #999;
  font-size: 130%;
}

@media(max-width: 1260px){

  .navbar-container{
    padding: 0 10px 0 10px;
  }

  .navbar-container > .navbar-links, .navbar-container > .navbar-contacts{
    display: none;
  }

  .menu {
    display: block;
  }

  .logo {
    margin-top: 10px;
    margin-left: -15px;
    width: 30%;
    height: 100%;
  }

  #menu-btn {
    right: 3%;
    top: 15%;
    position:absolute;
  }

  .menu-list {
    display: block;
    width: 100vw;
    height: 100vh;
    transform: translate(100%, 0%);    
    position: absolute;
    text-align: center;
    list-style-type: none;       
    color: #ffffff;
    background: linear-gradient(rgba(59, 102, 165,1), rgba(59, 102, 165,0.8));
    transition: background-color 3s ease-out;
    -webkit-transition: background-color 3s ease-out;
    -moz-transition: background-color 3s ease-out;
    -o-transition: background-color 3s ease-out;
    background-color: #e66465;
    padding-top: 60px; 
    top: 0%;
    left: 0%;
  }

  .menu span {
    display: block;
    width: 25px;
    height: 4px;
    margin: 5px;
    position: relative;
    
    background: #ffffff;
    border-radius: 3px;
    
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                opacity 0.55s ease;
    opacity: 1;
  }

  .navbar-container.scrolled > .menu span {
    display: block;
    width: 25px;
    height: 4px;
    margin: 5px;
    position: relative;
    
    background: #3b66a5;
    border-radius: 3px;
    
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                opacity 0.55s ease;
    opacity: 1;
  }

  .navbar-container.scrolled > .opened span {
    background: #f2f2f2;
  }

  .navbar-container.scrolled > .opened span:nth-child(2) {
    opacity: 0;
  }

  .opened .menu-list {

    transform: translate(0, 0);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);

  }

  .opened .menu-list li > a > p {
    margin: 10px;
    font-size: 150%;
    font-weight: 900;
    color: #ffffff;
  }

  .opened .menu-list li > a {
    text-decoration: none;
  }

  .opened .menu-list li > a > p:hover {
    filter: brightness(0.7);
    text-decoration: none; 
  }

  .opened span {
    background: #f2f2f2;
    z-index: 1;
  }

  .opened span:nth-child(1) {
    transform: rotate(45deg) translate(1px,-1px);
    transform-origin: 0 0;

  }

  .opened span:nth-child(2) {
    opacity: 0;
  }

  .opened span:nth-child(3) {
    transform: rotate(-45deg) translate(-1px,-1px);
    transform-origin: 0 0;
  }

  .opened #media-in-menu {
    display: block;
    font-size: 200%;
  }

  .book-call-window{
    width: 100%;
  }
  
  .book-call-window.opened{
    left: 0%;
  }

  .opened .book-call-container>p>span:nth-child(2){
    opacity: 1;
    background: #ededed;
  }

  #book-call-close{
    color: #383838;
  }

}

@media (max-width: 768px) {
  .container-custom {
    background: none;
  }

  .notification {
    width: 50%;
  }
  
  .notification-container > span {
    font-size: 100%;
    color: #e4a828;
    padding: 5px;
    border-radius: 30px;
    border: 2px solid #e4a828;
  }
  
  #notification-close{
    font-size: 100%;
    align-self: flex-start;
    color: #999;
    border: none;
  }
  
  .notification-container > p {
    color: #999;
    font-weight: 400;
    font-size: 90%;
    padding: 5px;
  }

  .main-photo {
    background: linear-gradient(rgba(59, 102, 165,1), rgba(59, 102, 165,0.5));
    /*background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.6)), url("/moyking/static/images/flower-min.jpg") no-repeat center center fixed;*/
    transition: background-color 3s ease-out;
    -webkit-transition: background-color 3s ease-out;
    -moz-transition: background-color 3s ease-out;
    -o-transition: background-color 3s ease-out;
    background-color: #9ee664;    
  }
  
  .user-icon-wrap > img {
    width: 25%;
    height: 25%;
    padding: 10px;
  }

  .reviews-cell {
    width: 100%;
    text-align: center;
    padding: 10px;
  }

  .review-text-container {
    width: 80%;
    margin-left: 10%;
    padding: 15px;
  }

  .review-text-container > p {
    font-weight: 400;
    font-size: 100%;
  }

  .center-text {
    padding: 0; 
    width: 90%;
  }

  .main-text-style {
    font-size: 20vw;
  }

  .text-style {
    font-size: 6vw;
  }
  .circle-container {
    display: none;
  }
  .icon-text-style {
    font-size: 100%;
  }

  .under-icon {
    margin-left: 0%;
    margin-right: 0%;
    width: 100%;
  }

  .sedan-cl {
    width: 70%;
    padding: 0px;  
  }

  .premium{
    width: 90%;
    padding: 0px; 
  }

  .big-center-text {
    font-size: 200%;
  }
  .phone-img {
    display: none;
  }
  .stores-img-div {
    width: 70%;
    margin-left: 15%;
  }

  .stores-text-style {
    font-size: 130%;
    text-align: center; 
  }

  #gallery-text {
    margin-top: 70px;
    margin-bottom: 10px;
  }
  .img-shadow{
    height: auto;
  }

  #info-id {
    display: none;
  }

  .logo-container {
    display: none;
  }
  .app-download-container {
    background: linear-gradient(rgba(59, 102, 165,0.9), rgba(59, 102, 165,0.5));
    background-color: #e66465;
  }


  #custom-row{
    margin: 0;
  }

  #top-text{
    top: 30px;
  }

  .price{
    text-align: center;
  }

  #price-row {
    border: none;
    margin-top: -50px; 
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }

  #icons-row {
    margin-left: 0;
    margin-right: 0;
  }

  .under-icon {
    text-align: center;
  }

  #expanded-img {
    width: 90%;
    max-height: 80vh;
    margin-left: 5%;
  }

  .prev {
    left: 5%;
  }

  .next {
    right: 5%;
  }

  .close-btn {
    top: 50px;
    right: 10px;
  }

  .service-select {
    width: 70%;
    margin: 40px 15% 40px 15%;
  }

  .service-select > p {
    text-align: center;
  }

  .service-desc {
    width: 80%;
    margin-left: 10%;
  }
  .price {
    width: 60%;
    margin-left: 20%;
  }
  .email-sender-container {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    padding: 10px;
  }

  .contacts-txt-stl {
    font-size: 100%;
  }

  textarea {
    width: 90%;
    height: 100px;
  }
  .contacts-center {
    text-align: center;
  }

  .contacts-container {
    position: static;
    top: 0%;
    left: 0%;
    transform: translate(0%,0%);
    background: (0,0,0,1);
    text-align: center;
  }
  .media-info-container {
    text-align: center;
  }

  .mobver-price {
    display: block;
    margin-bottom: 20px;
  }

  .table-text {
    text-align: center;
  }

  .table-price-text {
    text-align: center;
    font-size: 130%;
  }

  p.table-price-text {
    margin: 5px;
  }

  .table-responsive {
    display: none;
  }

  #price-in-table {
    border: 2px solid rgb(193,214,240);
    border-radius: 30px;
    width: 50%;
    margin-left: 25%;
    text-align: none;
    padding: 10px;
    -webkit-box-shadow: 1px 3px 7px 0px rgba(135,135,135,1);
    -moz-box-shadow: 1px 3px 7px 0px rgba(135,135,135,1);
    box-shadow: 1px 3px 7px 0px rgba(135,135,135,1);

  }

  #included-list {
    display: block;
  }

  #less-margin {
    margin-bottom: 0px;
  }

  .service-txt-stl {
    padding: 30px;
    font-size: 120%; 
  }

  .service-main-txt {
    font-weight: 600;
    font-size: 150%;
  }

  #moika,
  #polish,
  #dryclean,
  #coating {
    background: linear-gradient(rgba(59, 102, 165,1), rgba(59, 102, 165,0.7));
    background-color: #e66465;
    filter: grayscale(0);
    transform: scale(1.0);
    padding: 10px;
  }
  
  .head-title-wrapper{
    height: 150px;
  }
  
  .promotion-container{
      width: 100%;
      margin-left: 0;
  }
  
  .promotion-description{
    font-size: 130%;
    font-weight: 400;
    padding: 5px;
  }
  
  .footnote{
      width: 90%;
      margin-left: 5%;
  }
}

@media (min-width: 768px) and (max-width: 990px){  
  .logo {
    width: 100%;
  }

  .main-text-style {
    font-size: 10vw;
  }

  .text-style {
    font-size: 5vw;
  }

  .phone-img {
    text-align: initial;
    margin-left: 25%;
  }

  .stores-img-div {
    margin-top: 30px;
    width: 90%;
    text-align: center;
  }

  .stores-img-style {
    width: 40%;
  }

  .stores-text-style {
    font-size: 130%;
    font-weight: 500; 
    /*font-family: Noto Sans, sans-serif; */
    text-align: center; 
  }

  .img-shadow{
    width: 60%;
    height: auto;
    text-align: center;
  }

  #gallery {
    text-align: center;
  }

  .stores-img-div {
    width: 80%;
    margin-left: 10%;
  }

}

@media (min-width: 768px) and (max-width: 1316px){
  .expanded-photo {
    padding-top: 150px;
  }
  .close-btn {
    top: 120px;
  }

  .opened .menu-list li > a > h4 {
    font-size: 50px; 
  }
}  

@media (min-width: 1600px) {

  .container {
    width: 70%;
    margin-left: 15%;
  }

  .icon-style {
    width: 22%;
  }

  .icon-text-style {
    font-size: 200%;
  }

}
