@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
@keyframes pictures {
  0% {
    transform: scale(1,1) translateY(0);
  }
  50% {
    transform: scale(.9,1.1) translateY(-10px);
  }
  100% {
    transform: scale(1,1) translateY(0);
  }
}
@keyframes opacitys {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.ccc{
    color:#f59e0d;
    font-size:27px !important;
}
body {
  font-family: 'Roboto';
  font-size: 16px;
  line-height: 1.3;
  color: #000;
  margin: 0;
  background: #FFF;
}
.wrapper {
  position: relative;
  overflow: hidden;
}
.container {
  max-width: 1200px;
  position: relative;
  z-index: 5;
}
p.big {
  font-size: 20px;
}
@media (max-width: 767px) {
  p.big {
    font-size: 18px;
  }
}
.min-title {
  font-size: 20px;
}
.title {
  font-size: 45px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .title {
    font-size: 28px;
  }
}
.bold {
  font-weight: 700;
}
p,
.min-title,
.title {
  margin: 0;
  position: relative;
  z-index: 5;
}
.order a {
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flex;
  display: -o-inline-flex;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
}
.order a,
.order button {
  border-radius: 50px;
  padding: 15px 30px;
  min-width: 200px;
  cursor: pointer;
  border: none;
  min-height: 55px;
  text-transform: uppercase;
  background: #f59e0d;
  color: #000;
}
.order a:hover,
.order button:hover {
  background: #ffda07;
}
a,
button {
  transition: all 0.2s ease-in-out;
}
a:active,
a:focus,
button:active,
button:focus {
  outline: none !important;
}
.form ::-webkit-input-placeholder {
  color: #dcdfe2;
}
.form ::-moz-placeholder {
  color: #dcdfe2;
}
.form :-moz-placeholder {
  color: #dcdfe2;
}
.form :-ms-input-placeholder {
  color: #dcdfe2;
}
.form label.error {
  display: none !important;
}
.form input,
.form select,
.form textarea {
  border-radius: 2px;
  border: 2px solid #dcdfe2;
  color: #000;
  width: 100%;
  outline: none;
  font-size: 18px;
  background-color: #fff;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: #3d3d3d;
}
.form input.error,
.form select.error,
.form textarea.error {
  border-color: #E76767;
  box-shadow: 0 0 4px #CC0000;
}
.form input {
  height: 60px;
  line-height: 60px;
  padding: 0 20px;
}
.form select {
  height: 60px;
}
.form textarea {
  padding: 10px 15px;
}
.form .order button {
  min-height: 60px;
}
.manage {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  background: #fff;
  height: 45px;
  line-height: 45px;
  padding: 0 15px;
  z-index: 1001;
  box-shadow: 0px 1px 5px -1px rgba(0,0,0,0.61);
}
.manage .logo img {
  width: 40px;
}
.humb {
  width: 40px;
  padding: 8px 7px;
  background: transparent;
  position: fixed;
  top: 5px;
  right: 10px;
  z-index: 10000;
  cursor: pointer;
  background: #fed100;
  transition: 0.3s;
}
.humb.active {
  background: none;
}
.humb.active .dv-2 {
  opacity: 0;
}
.humb.active .dv-1 {
  transform: rotate(-45deg);
}
.humb.active .dv-3 {
  transform: rotate(45deg) translate(-10px,-10px);
}
.humb div {
  height: 4px;
  background: #000;
  transition: 0.3s;
}
.humb div:not(:last-of-type) {
  margin-bottom: 3px;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  height: 100%;
  width: 290px;
  background: #fff;
  z-index: 9999;
  transition: 0.3s;
  padding: 50px 30px 50px 30px;
  overflow-y: scroll;
  background: #f59e0d;
}
.mobile-menu.active {
  transform: none;
}
.mobile-menu .close-menu {
  position: absolute;
  top: 11px;
  right: 11px;
  font-size: 30px;
  line-height: 10px;
  height: 10px;
  color: #ffffff;
  cursor: pointer;
  transition: 0.3s;
}
.mobile-menu .close-menu:hover {
  color: #d41584;
}
.mobile-menu .logo {
  margin: 0 0 40px 0;
}
.mobile-menu .logo img {
  width: 60px;
}
.mobile-menu .menu > div:not(:last-of-type) {
  margin-bottom: 15px;
}
.mobile-menu .menu > div > a {
  text-transform: uppercase;
  padding: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  color: #f8f8f8;
  box-shadow: none;
  outline: none;
}
.mobile-menu .menu > div > a.active {
  text-decoration: underline;
}
.mobile-menu .menu > div .dropdown-menu {
  position: relative !important;
  transform: none !important;
  top: initial !important;
  float: none !important;
  border-radius: 0;
  padding: 15px;
}
.mobile-menu .menu > div .dropdown-menu div:not(:last-of-type) {
  margin-bottom: 5px;
}
.mobile-menu .menu > div .dropdown-menu div a {
  color: #000;
  box-shadow: none;
  outline: none;
}
.mobile-menu .menu > div .dropdown-menu div a.active {
  text-decoration: underline;
}
.menu-back {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.69);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.menu-back.active {
  opacity: 1;
  visibility: visible;
}
.social {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social a {
  text-decoration: none;
}
.social a:not(:last-of-type) {
  margin-right: 20px;
}
.social a:hover {
  opacity: 0.6;
}
.header {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 100%;
  color: #fff;
}
.header .h-top {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}
.header .h-top .order a {
  width: 100%;
  background: #f1f1f1;
  max-width: 300px;
  border-radius: 0;
}
.header .h-top .order a:hover {
  background: #f59e0d;
}
.header .h-top .icon {
  margin: 0 12px 0 0;
}
.header .h-top .phones a {
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.header .h-top .phones a:hover {
  color: #f59e0d;
}
.header .h-bottom {
  left: 0;
  top: 0;
  width: 100%;
  background: none;
  transition: 0.3s;
}
.header .h-bottom.active {
  position: fixed;
  background: rgba(0,0,0,0.8);
}
.header .h-bottom.active .menu > div a {
  line-height: 50px;
  box-shadow: none;
  outline: none;
}
.header .h-bottom.active .order a,
.header .h-bottom.active .order button {
  min-height: 40px;
  padding: 5px 10px;
}
.header .h-bottom .menu {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.header .h-bottom .menu div a {
  padding: 0;
  box-shadow: 0;
  outline: none;
  border-radius: 0;
  border: none;
}
.header .h-bottom .menu > div.open > a {
  background: rgba(255,255,255,0.2);
}
.header .h-bottom .menu > div > a {
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  display: block;
  line-height: 60px;
  padding: 5px 10px;
  text-decoration: none;
  white-space: nowrap;
}
.header .h-bottom .menu > div > a:after {
  transition: 0.3s;
}
.header .h-bottom .menu > div > a:not(.active):hover {
  background: rgba(255,255,255,0.2);
}
.header .h-bottom .menu > div > a:after {
  transition: 0.3s;
}
.header .h-bottom .menu > div > a.active {
  background: #f59e0d !important;
}
.header .h-bottom .menu .dropdown-menu {
  min-width: 0;
  padding: 26px 50px 33px 35px;
  border: none;
  border-radius: 0;
  margin: 0;
  background: #f1f1f1;
  min-width: 570px;
}
.header .h-bottom .menu .dropdown-menu.cnt-2 {
  column-count: 2;
}
.header .h-bottom .menu .dropdown-menu div:not(:last-of-type) {
  margin-bottom: 10px;
}
.header .h-bottom .menu .dropdown-menu div a {
  line-height: 1;
  color: #353535;
  border-bottom: 1px solid transparent;
  text-transform: none;
  position: relative;
  text-decoration: none;
}
.header .h-bottom .menu .dropdown-menu div a:hover,
.header .h-bottom .menu .dropdown-menu div a.active {
  border-color: #3498db;
}
.header .h-bottom .menu .dropdown-menu div a:hover:before,
.header .h-bottom .menu .dropdown-menu div a.active:before {
  opacity: 1;
}
.header .h-bottom .menu .dropdown-menu div a:before {
  position: absolute;
  content: '';
  right: calc(100% + 5px);
  top: 0.3em;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 7px;
  border-color: transparent transparent transparent #f5a00d;
  opacity: 0;
  transition: 0.3s;
}
.header .h-bottom .menu .dropdown-menu div a:hover {
  border-color: #f59e0d;
}
@media (max-width: 1199px) {
  .header .h-bottom {
    display: none;
  }
  .header .h-top {
    padding: 75px 0 15px 0;
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .header .h-top .order a {
    min-width: 160px;
    padding: 5px 10px;
    min-height: 45px;
  }
  .header .h-top .location {
    max-width: 290px;
    text-align: left;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .header .h-top .location {
    max-width: 200px;
    text-align: left;
  }
}
@media (max-width: 767px) {
  .header .h-top .order a {
    min-width: 0;
    padding: 5px 10px;
    min-height: 45px;
    max-width: 200px;
  }
}
@media (max-width: 575px) {
  .header .location {
    margin: 15px 0 15px 0;
  }
  .header .phones {
    margin: 20px 0 0 0;
  }
}
.main {
  position: relative;
  padding: 245px 0 170px 0;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.main:before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.47);
  z-index: 2;
}
.main video {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  min-height: 100%;
  min-width: 100%;
}
.main .m-top .logo {
  padding: 0 35px 0 0;
  margin: 0 35px 0 0;
  border-right: 2px solid #f59e0d;
}
.main h1 {
  margin: 60px 0 115px 0;
}
@media (max-width: 767px) {
  .main {
    padding: 245px 0 55px 0;
  }
  .main .logo img {
    width: 100px;
  }
  .main h1 {
    margin: 50px 0 45px 0;
  }
}
@media (max-width: 575px) {
  .main {
    padding-top: 325px;
  }
}
.services {
  padding: 100px 0 130px 0;
  text-align: center;
}
.services .title {
  margin: 0 0 45px 0;
}
.services .s-block {
  position: relative;
  overflow: hidden;
  max-width: 390px;
  margin: 30px auto 0;

}
.services .s-block:hover:before {
  opacity: 1;
  visibility: visible;
}
.services .s-block:before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.54);

  transition: 0.3s;

}
.services .s-block .pic img {
  width: 100%;
  max-width: 100%;
}
.services .s-block .s-inn {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  color: #fff;
  padding: 15px 15px 40px 15px;
}
.services .s-block .s-inn p {
  margin: 0 0 30px 0;
  text-transform: uppercase;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .services {
    padding: 60px 0 70px 0;
  }
  .services .title {
    margin: 0 0 25px 0;
  }
  .services .s-block:before {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 767px) {
  .services {
    padding: 40px 0 50px 0;
  }
  .services .title {
    margin: 0 0 25px 0;
  }
  .services .s-block:before {
    opacity: 1;
    visibility: visible;
  }
}
.steps {
  padding: 95px 0 80px 0;
  text-align: center;
  background: url(../images/steps-bg.jpg) no-repeat center top / cover;
  background-attachment: fixed;
  color: #fff;
}
.steps .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -7px;
  animation: 2s ease opacitys infinite;
}
.steps .arrow.arr-2 {
  animation-delay: 2.3s;
}
.steps .arrow.arr-3 {
  animation-delay: 2.6s;
}
.steps .arrow.arr-4 {
  animation-delay: 2.9s;
}
.steps .arrow.arr-5 {
  animation-delay: 3.2s;
}
.steps .s-block {
  margin: 62px auto 0;
}
.steps .s-block:hover .icon {
  animation: 0.7s ease pictures;
  transition-delay: 0.4s;
  box-shadow: 1px 2px 11px 2px rgba(0,0,0,0.52);
}
.steps .s-block .icon {
  width: 141px;
  height: 141px;
  padding: 30px;
  margin: 0 auto 29px;
  border: 1px solid #f59e0d;
  border-radius: 50%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.steps .s-block .icon img {
  max-width: 100%;
  max-height: 100%;
}
.steps .order {
  margin: 65px 0 0 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .steps .arrow {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .steps {
    padding: 45px 0 55px 0;
  }
  .steps .arrow {
    display: none !important;
  }
  .steps .s-block {
    margin: 40px auto 0;
  }
  .steps .s-block .icon {
    width: 111px;
    height: 111px;
  }
  .steps .order {
    margin: 45px 0 0 0;
  }
}
.questions {
  padding: 80px 0 100px 0;
  text-align: center;
}
.questions .min-title {
  margin: 50px 0 60px 0;
}
.questions .min-title span {
  text-transform: uppercase;
}
.questions .forma {
  max-width: 740px;
  margin: auto;
}
.questions .forma input {
  padding: 0 40px;
}
.questions .forma .order button {
  border-radius: 0;
  color: #fff;
}
@media (max-width: 767px) {
  .questions {
    padding: 35px 0 50px 0;
  }
  .questions .min-title {
    margin: 25px 0 40px 0;
  }
}
@media (max-width: 575px) {
  .questions .forma .order {
    margin: 15px 0 0 0;
  }
  .questions .forma .order button {
    width: 100%;
  }
}
.footer {
  position: relative;
  color: #fff;
}
.footer:before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #2f2f2f;
}
.footer .map {
  height: 100%;
}
.footer .f-block {
  padding: 40px 30px 120px 30px;
  background-color: #2f2f2f;
}
.footer .f-block .fb-inner {
  max-width: 550px;
}
.footer .f-top {
  margin: 0 0 100px 0;
}
.footer .logo img {
  width: 140px;
}
.footer .links {
  font-size: 14px;
}
.footer .links div:not(:last-of-type) {
  margin-bottom: 15px;
}
.footer .links div a {
  color: #fff;
}
.footer .icon {
  margin: 0 20px 0 0;
  width: 24px;
  text-align: center;
}
.footer .phones .icon {
  margin-top: 7px;
}
.footer .phones a {
  font-size: 25px;
  font-weight: 700;
  color: #ffc000;
  text-decoration: none;
}
.footer .phones a:hover {
  color: #fff;
}
.footer .info .i-block {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.footer .info .i-block:not(:last-of-type) {
  margin-bottom: 18px;
}
.footer .info p {
  flex: 1;
}
.footer .info a {
  color: #fff;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .footer .logo img {
    width: 100px;
  }
  .footer .phones a {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .footer .f-top {
    margin: 0 0 50px 0;
  }
  .footer .f-top .logo img {
    width: 100px;
  }
  .footer .f-block {
    padding: 30px 15px 50px 15px;
  }
  .footer .f-block .fb-right {
    max-width: 350px;
    margin: auto;
  }
  .footer .f-block .fb-right .info {
    text-align: left;
  }
  .footer .map {
    height: 300px;
  }
}
@media (max-width: 575px) {
  .footer {
    text-align: center;
  }
  .footer .f-top {
    margin: 0 0 30px 0;
  }
  .footer .f-top .logo {
    margin: 0 0 20px 0;
  }
  .footer .f-block .phones {
    justify-content: center;
  }
  .footer .f-block .fb-right {
    margin: 30px auto 0;
  }
  .footer .f-block .fb-right .info .i-block {
    justify-content: center;
  }
}
