@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.eot");
  src: url("../fonts/Roboto-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Regular.woff") format("woff"), url("../fonts/Roboto-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Medium.eot");
  src: url("../fonts/Roboto-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Medium.woff") format("woff"), url("../fonts/Roboto-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.eot");
  src: url("../fonts/Roboto-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Bold.woff") format("woff"), url("../fonts/Roboto-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: bold;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Italic.eot");
  src: url("../fonts/Roboto-Italic.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Italic.woff") format("woff"), url("../fonts/Roboto-Italic.ttf") format("truetype");
  font-style: italic;
  font-weight: normal;
}

body {
  font-family: 'Roboto';
  color: #262626;
  overflow-x: hidden;
  background-color: #FFF;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none !important;
}

.row-menu {
  padding: 25px 40px 10px;
  background-color: #050915;
  /* padding-bottom: 100px; */
}

.ul-flex {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding-top: 7px;
}

.navbar-fixed-top {
    position: relative!important;
}

.li-flex {
  list-style-type: none !important;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background: transparent;
  text-align: right;
  font-size: 10px;
  font-family: 'Roboto';
  font-weight: medium;
  text-transform: uppercase;
  margin-bottom: auto;
  margin-top: auto;
}

.li-flex a {
  color: #8289A7;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.li-flex a:hover {
  color: #fff;
  text-decoration: none;
}

.container-ham {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 40%;
  left: 0;
  margin: 0 auto;
  z-index: 6;
}

.container-ham p {
  font-size: 20px;
}

.container-ham a {
  display: inline-block;
  position: relative;
  text-align: left;
  color: #3c3c3c;
  text-decoration: none;
  font-size: 20px;
  overflow: hidden;
  top: 5px;
}

.container-ham a:after {
  content: '';
  position: absolute;
  background: #3c3c3c;
  height: 2px;
  width: 0%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  bottom: 0;
  -webkit-transition: .35s ease;
  transition: .35s ease;
}

.container-ham a:hover:after, .container-ham a:focus:after, .container-ham a:opened:after {
  width: 100%;
}

.button_container {
  position: fixed;
  top: 35px;
  right: 25px;
  height: 20px;
  width: 22px;
  cursor: pointer;
  z-index: 1000;
  -webkit-transition: opacity .25s ease;
  transition: opacity .25s ease;
}

.button_container:hover {
  opacity: 1;
}

.button_container.opened .top {
  -webkit-transform: translateY(7px) translateX(0) rotate(-45deg);
          transform: translateY(7px) translateX(0) rotate(-45deg);
  background: #FFF;
}

.button_container.opened .middle {
  opacity: 0;
  background: #FFF;
}

.button_container.opened .bottom {
  -webkit-transform: translateY(-9px) translateX(0) rotate(45deg);
          transform: translateY(-9px) translateX(0) rotate(45deg);
  background: #FFF;
  width: 100%;
}

.button_container span {
  background: #fff;
  border: none;
  height: 2px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all .35s ease;
  transition: all .35s ease;
  cursor: pointer;
  border-radius: 10px;
  z-index: 1001;
}

.button-learn span {
  background: #fff !important;
  border: none;
  height: 3px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all .35s ease;
  transition: all .35s ease;
  cursor: pointer;
}

.button_container span:nth-of-type(2) {
  top: 8px;
}

.button_container span:nth-of-type(3) {
  top: 16px;
  width: 70%;
  right: 0;
  left: auto;
}

.overlay {
  position: fixed;
  background: #202020;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .35s, visibility .35s, height .35s;
  transition: opacity .35s, visibility .35s, height .35s;
  overflow: hidden;
}

.overlay.open {
  opacity: 1;
  visibility: visible;
  height: 100%;
  z-index: 1002;
  overflow: auto;
}

.overlay.open li {
  -webkit-animation: fadeInRight .5s ease forwards;
          animation: fadeInRight .5s ease forwards;
  -webkit-animation-delay: .35s;
          animation-delay: .35s;
}

.overlay nav {
  position: relative;
  top: 50px;
  font-size: 50px;
  text-align: center;
}

.overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  height: 100%;
  width: 265px;
}

.overlay ul li {
  display: block;
  height: calc(45% / 4);
  min-height: 45px;
  position: relative;
  opacity: 0;
  font-size: 25px;
}

.overlay ul li:nth-child(5) {
  padding-bottom: 40px;
}

.overlay ul li:nth-child(11) {
  padding-top: 40px;
  padding-bottom: 20px;
  font-weight: bold;
}

.overlay ul li.li-booking {
  display: block;
  height: 70px;
  min-height: 50px;
  position: relative;
  opacity: 0;
  font-size: 25px;
}

.overlay ul li a {
  display: block;
  position: relative;
  color: #FFF;
  text-decoration: none;
  overflow: hidden;
}

.overlay ul li a:hover:after, .overlay ul li a:focus:after, .overlay ul li a:active:after {
  width: 100%;
}

.overlay ul li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 1px;
  background: #FFF;
  -webkit-transition: .35s;
  transition: .35s;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

.button_container:before {
  content: "";
  position: absolute;
  top: -14px;
  left: -11px;
  height: 46px;
  width: 46px;
  border-radius: 50%;
  z-index: 10;
  background-color: #202020;
  opacity: .9;
}

.body-overflow {
  overflow-y: hidden !important;
}

.a-phone {
  font-size: 16px;
}

.hr-menu {
  color: #fff;
  opacity: .2;
  background-color: #ffffff;
  margin: 0;
  width: 98%;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
}

.ul-tab {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding-top: 7px;
  padding-left: 0;
}

.li-tab {
  list-style-type: none !important;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background: transparent;
  text-align: left;
  font-size: 14px;
  font-family: 'Roboto';
  font-weight: bold;
  margin-bottom: auto;
  margin-top: auto;
}

.li-tab a {
  color: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.li-tab a:hover {
  color: #e80000;
  text-decoration: none;
}

.row-tabs {
  padding: 0px 40px;
  background-color: #050915;
}
.prod-row-tabs {
  padding-bottom: 35px; 
}

.row-tabs-header {
    padding: 0px 40px 29px;
}

.soc-flex {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding-top: 7px;
  padding-left: 0;
}

.soc-flex a {
  display: block;
  list-style-type: none !important;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-bottom: auto;
  margin-top: auto;
  -webkit-transition: .2s;
  transition: .2s;
}

.soc-flex a img {
    max-height: 14.75px;
    margin-left: auto;
    display: block;
}

.soc-flex a:hover {
  opacity: .7;
}

.soc-flex-menu {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding-top: 7px;
  padding-left: 0;
  padding-bottom: 60px;
}

.soc-flex-menu a {
  display: block;
  list-style-type: none !important;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  margin-bottom: auto;
  margin-top: auto;
  margin-right: auto;
}

.soc-flex-menu a img {
    max-height: 14.75px;
}

.back-main {
  padding-top: 100px;
  background-image: url(../img/back-main.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 525px;
  background-position: center;
}

.h1-main {
  color: #fff;
  font-size: 62px;
  font-weight: bold;
  text-align: center;
}

.h2-main {
  color: #fff;
  font-size: 30px;
  font-weight: normal;
  text-align: center;
  margin-top: 12px;
}

.block-offer {
  background-color: #fff;
  margin-top: -70px;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(48, 48, 137, 0.1);
          box-shadow: 0px 5px 15px 0px rgba(48, 48, 137, 0.1);
}

.row-offer {
  padding-top: 70px;
}

.h1-offer {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 35px;
}

.p-offer {
    font-size: 16px;
    color: #262626;
}

.ul-offer {
  padding-left: 30px;
  padding-top: 15px;
  margin-bottom: 0;
  padding-bottom: 55px;
}

.ul-offer li {
  color: #FFA140;
  padding-left: 20px;
  font-size: 23px;
  line-height: 23px;
  margin-bottom: 17px;
}

.ul-offer li span {
  font-size: 16px;
  color: #262626;
  font-weight: normal;
}

.a-download {
  background-color: #FFA140;
  padding: 14px 40px 14px 40px;
  font-size: 18px;
  color: #ffffff;
  position: relative;
  border-radius: 4px;
  -webkit-transition: .3s;
  transition: .3s;
  display: block;
  margin-bottom: 30px;
  margin-top: 40px;
  max-width: 185px;
  text-align: center;
  transition: .3s;
}

.a-download:hover {
  color: #ffffff;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}

.section-products {
  padding-top: 125px;
  padding-bottom: 100px;
}

.h1-products {
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 65px;
}

.block-products {
  background-color: #f4f5f5;
  padding: 35px 0 25px 0;
}

.h2-products {
  font-size: 30px;
  color: #262626;
}

.product-hover {
    cursor: pointer;
}

.product-hover:hover .block-details {
    background-color: #FFA140;
    color: #ffffff;
}

.product-hover:hover .p-details {
  color: #fff;
}

.product-hover:hover .block-details:after {
  opacity: 1;
  right: 32px;
}

.p-products {
  font-size: 16px;
  max-width: 170px;
  color: #262626;
}

.img-products {
  margin-left: auto;
  margin-right: auto;
  display: block;
  max-height: 238px;
}

.col-products {
  margin-bottom: auto;
  margin-top: auto;
}

.p-details {
  color: #fff;
  font-size: 18px;
  padding: 22px 0 22px 65px;
  margin-top: 6px;
  margin-bottom: 0;
}

.block-details {
  background-color: #F4F5F5;
  position: relative;
  -webkit-transition: .3s;
  transition: .3s;
}

.block-details .p-details {
  color: #262626;
  -webkit-transition: .3s;
  transition: .3s;
}

.block-details:after {
  content: url(../img/arrow-white.svg);
  opacity: 0;
  -webkit-transition: .3s;
  transition: .3s;
  position: absolute;
  right: 37px;
  top: 25px;
}

.col-products-yellow {
  margin-bottom: auto;
  margin-top: auto;
}

.section-blue {
  background-image: url(../img/back-blue.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 125px;
  padding-bottom: 155px;
  background-position: center;
}

.p-about-bold {
  font-size: 22px;
  font-weight: bold;
  color: #ffffff;
}

.p-about {
  font-size: 18px;
  color: #ffffff;
}

.section-news {
  padding: 90px 0;
}

.section-partners {
  padding: 90px 0;
}

.h1-news {
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 65px;
}

.block-news {
  -webkit-box-shadow: 0px 5px 15px 0px rgba(48, 48, 137, 0.1);
          box-shadow: 0px 5px 15px 0px rgba(48, 48, 137, 0.1);
  height: 100%;
  -webkit-transition: .3s;
  transition: .3s;
}

.p-news-date {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #262626 !important;
}

.p-news-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0;
  color: #262626 !important;
}

.block-p-news {
  padding: 35px 32px 45px;
}

.img-news {
  width: 100%;
}

.col-lg-to5-block {
  margin-top: auto;
  margin-bottom: auto;
  padding-bottom: 50px;
}

.col-lg-to5-block img {
  max-width: 90%;
  max-height: 120px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  padding: 0 20px;
}

.img-av {
  max-width: 65% !important;
}

footer {
  background-color: #000000;
}

.container-footer {
  padding: 70px 0;
}

.p-title-footer {
  font-size: 12px;
  margin-bottom: 35px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.a-title-footer {
  font-size: 14px;
  margin-bottom: 15px;
  color: #ffffff;
  display: block;
  -webkit-transition: .3s;
  transition: .3s;
}

.a-title-footer:hover {
  color: #e80000;
}

.section-tituls {
  background-color: #fff;
  padding: 90px 0;
}

.block-tituls {
  background-color: #f4f5f5;
  padding: 35px 45px 25px;
}

.bold {
  font-weight: bold;
}

.block-director {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-director {
  font-size: 18px;
  margin-bottom: 0;
  line-height: 24px;
  margin-bottom: auto;
  margin-top: auto;
  margin-left: 24px;
}

.p-quote {
  font-style: italic;
  font-size: 18px;
  line-height: 25px;
}

.block-img-tituls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.block-12st {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: auto;
}

.block-img-tituls img {
  margin-bottom: auto;
  margin-top: auto;
  margin-left: auto;
  padding-bottom: 20px;
}

.block-img-tituls img:first-child, .block-img-tituls img:nth-child(8) {
  margin-left: 0px;
}

.owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 40px;
}

.owl-dot {
  width: 16px;
  height: 16px;
  border-radius: 10px;
  border: #707070 1px solid !important;
  position: relative;
  margin: 0 5px;
  -webkit-transition: .3s;
  transition: .3s;
}

.owl-dot:after {
  content: "";
  position: absolute;
  top: 2.5px;
  left: 3px;
  height: 8.5px;
  width: 8.5px;
  border-radius: 10px;
  background: #fff !important;
  -webkit-transition: .3s;
  transition: .3s;
}

.owl-dot.active:after {
  content: "";
  position: absolute;
  top: 2.5px;
  left: 3px;
  height: 8.5px;
  width: 8.5px;
  border-radius: 10px;
  background: #FFA140 !important;
  -webkit-transition: .3s;
  transition: .3s;
}

.li-drop {
  position: relative;
}

.li-drop:hover {
  z-index: 10000;
}

.dropmenu {
  position: absolute;
  top: 100%;
  left: 33px;
  padding: 0px;
  width: 100%;
  text-align: center;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.dropmenu li {
  opacity: 0;
  padding: 7px 20px;
  display: none;
  background: #000;
  -webkit-transition: .3s;
  transition: .3s;
  min-width: auto;
  margin-top: 4px;
  white-space: nowrap;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.li-drop:hover > .dropmenu li {
  -webkit-animation: animDrop .3s ease-in-out forwards;
          animation: animDrop .3s ease-in-out forwards;
  display: block;
}

.li-drop-two {
  position: relative;
}

.li-drop-two:hover {
  z-index: 10000;
}

.dropmenu-two {
  position: absolute;
  top: 100%;
  padding: 0px;
  width: 100%;
  -webkit-perspective: 1000px;
  perspective: 1000px;
  left: -20px;
  padding-top: 12px;
}

.dropmenu-two li {
  opacity: 0;
  padding: 7px 20px;
  background: #000;
  display: none;
  -webkit-transition: .3s;
  transition: .3s;
  min-width: auto;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  list-style: none;
  font-weight: normal;
  font-size: 12px;
}

.li-drop-two:hover > .dropmenu-two li {
  -webkit-animation: animDrop .3s ease-in-out forwards;
          animation: animDrop .3s ease-in-out forwards;
  display: block;
}

#headingOne, #headingTwo {
  position: relative;
}

.btn-accordion {
  position: absolute;
  right: 0;
  background: transparent;
  top: 0;
  border: 0;
}

.img-rotate {
  width: 15px;
}

.ul-accordion {
  display: block !important;
  margin-top: 15px !important;
  margin-bottom: 10px !important;
}

.li-accordion {
  -webkit-animation: fadeInUpTop 0.5s ease forwards !important;
          animation: fadeInUpTop 0.5s ease forwards !important;
  -webkit-animation-delay: 0.35s !important;
          animation-delay: 0.35s !important;
  max-width: 210px;
  opacity: 1 !important;
  height: auto !important;
  min-height: auto !important;
  margin-bottom: 10px !important;
}

.a-accordion {
  font-size: 12px !important;
  font-weight: normal;
}

@-webkit-keyframes animDrop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: .9;
  }
}

@keyframes animDrop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: .9;
  }
}

@media (max-width: 992px) {
  .col-news {
    padding-bottom: 30px;
  }
  .h1-offer {
    margin-top: 30px;
  }
  .block-img-tituls {
    padding-top: 50px;
  }
  .back-main {
    padding-top: 31px;
    background-size: 1500px;
    background-position: 66% bottom;
    background-color: #040811;
  }
  .block-img-logo-mob {
    margin-bottom: 70px;
    margin-left: 20px;
  }
  .block-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: auto;
    margin-top: auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: 60%;
  }
  .h1-main, .h2-main {
    width: 100%;
  }
  .back-main {
    height: 100vh;
  }
  .p-details {
    color: #fff;
    font-size: 18px;
    padding: 22px 0;
    text-align: center;
  }
  .block-details {
    margin-bottom: 40px;
  }
  .header-template {
      padding-top: 40px;
  }
}


@media (max-width: 450px) {
  .col-small {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .h2-products {
    text-align: center;
  }
  .p-products {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .block-director {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .img-director {
    margin-top: 25px;
    margin-bottom: 10px;
  }
  .p-director {
    margin-left: 0;
  }
  .block-img-tituls img {
    margin-right: auto;
  }
  .h1-main {
    font-size: 43px;
  }
  .h2-main {
    font-size: 20px;
    margin-top: 25px;
  }
  .back-main {
    padding-top: 31px;
    background-size: 1000px;
    background-position: 66% bottom;
    background-color: #040811;
  }
}

@media (min-width: 992px) {
  .col-lg-to5-block {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }
  .block-news:hover {
    -webkit-box-shadow: 0px 2px 10px 0px rgba(48, 48, 137, 0.1);
            box-shadow: 0px 2px 10px 0px rgba(48, 48, 137, 0.1);
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  .img-offer-white {
    margin-bottom: 40px;
    }
    #pageHeader {
        padding-top: 50px;
    }
    .h1-offer, .p-offer {
        padding-right: 30px;
    }
}

@media (max-width: 768px) {
  .col-footer {
    padding-bottom: 40px;
  }
  .row-offer .col-lg-7 {
    margin: 0 20px;
  }
}

@media (max-width: 576px) {
  .block-offer {
    margin-top: 0px;
  }
  .line-break-xs {
    width: 100%;
  }
  .block-img-tituls img:first-child {
    margin-left: auto;
  }
  .block-img-tituls img:nth-child(4) {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .block-img-tituls img:nth-child(5) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .block-img-tituls div:nth-child(6) {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .block-img-tituls img:nth-child(8),
  .block-img-tituls img:nth-child(9),
  .block-img-tituls img:nth-child(11),
  .block-img-tituls img:nth-child(12),
  .block-img-tituls div:nth-child(10) {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .block-img-tituls img:nth-child(8) {
    margin-left: auto;
  }
  .block-img-tituls img {
    margin-right: auto;
  }
  .block-img-tituls img {
    padding-bottom: 40px;
  }
  .h1-products, .h1-news {
    font-size: 36px;
    margin-bottom: 35px;
  }
  .h1-products {
    margin-bottom: 35px;
  }
  .section-blue {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .section-tituls {
    background-color: #fff;
    padding: 90px 0 0px;
  }
  .section-partners {
    padding: 0 0 90px;
  }
  .footer__links li:nth-child(4) {
    padding: 0 11px 0 0px;
  }
  .footer__links li:nth-child(2):after {
    display: none;
  }
  .footer__links, .a-title-footer {
    font-size: 16px;
  }
  .p-title-footer {
    font-size: 14px;
  }
  .h1-offer {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .ul-offer {
    padding-bottom: 33px;
  }
  .a-download {
    max-width: none;
    padding: 14px 40px;
    text-align: center;
  }
  .a-download::before {
    top: 17px;
    left: 23%;
  }
  .ul-offer li {
    line-height: 21px;
  }
  .img-offer-white {
    max-width: 233px;
  }
  .container-footer {
    padding: 70px 20px;
  }
}

@media (min-width: 576px) {
  .line-break-sm {
    width: 100%;
  }
}

@media (max-width: 1199px) {
  .footer__lang {
    -webkit-transition: 2s height;
    transition: 2s height;
  }
  .footer__lang__col {
    width: 100%;
  }
  .footer__links {
    margin-top: 160px;
  }
  .footer__container {
    background-image: url(../img/back-footer-mob.jpg);
    background-position: 50% 0;
  }
}

@media (min-width: 670px) {
  #owl-demo {
    position: relative;
  }
  .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    margin-top: -13px;
  }
  .owl-prev, .owl-next {
    position: absolute;
  }
  .owl-prev {
    left: -25px;
  }
  .owl-next {
    right: -25px;
  }
}

@media (max-width: 670px) {
  .owl-nav {
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-bottom: 40px;
    padding-top: 20px;
  }
  .owl-prev {
    margin-right: 10px;
  }
  .owl-next {
    margin-left: 10px;
  }
  .a-download {
    margin-bottom: 20px;
  }
  .owl-dots {
    display: none;
  }
}

.pushFooterDown {
  padding-top: 50px;
}

.footer {
  margin-bottom: -25px;
}

.footer__container {
  background: url(../img/back-footer-xl.jpg) center #000 no-repeat;
  padding: 35px 0 40px;
  z-index: 5;
  position: relative;
  font-size: 13px;
  color: #999;
}

.footer__links {
  margin-top: 15px;
  margin-bottom: 0px;
  padding-left: 0;
}

.footer__links a {
  color: #999;
  text-decoration: none;
  display: block;
  -webkit-transition: .2s color;
  transition: .2s color;
}

.footer__links a:hover {
  color: #e80000;
}

.footer__links li {
  display: inline-block;
  position: relative;
  padding: 0 11px 0 4px;
}

.footer__links li:first-child {
  padding: 0 11px 0 0px;
}

.footer__links li::after {
  content: "";
  position: absolute;
  right: 1px;
  top: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  background: #999;
  margin: auto;
}

.footer__links li:last-child::after {
  display: none;
}
.footer__links li:nth-child(2)::after {
  display: none;
}

.footer__copy {
  margin: 2px 0 15px;
  padding-bottom: 15px;
  color: #373737;
}

@media screen and (max-width: 991px) {
  .pushFooterDown {
    padding-top: 0;
  }
  .footer__container {
    background-image: url(../img/back-footer-md.jpg);
  }
}

@media screen and (max-width: 767px) {
  .footer__links {
    margin-top: 160px;
  }
  .footer__container {
    background-image: url(../img/back-footer-sm.jpg);
    background-position: 50% 0;
  }
}

@media screen and (max-width: 575px) {
  .pushFooterDown {
    padding-top: 0;
  }
  .footer__links li::after {
    height: 80%;
  }
  .footer__links li {
    margin-bottom: 10px;
  }
  .footer__copy {
    margin-top: 15px;
  }
  .footer__container {
    background-image: url(../img/back-footer-xs.jpg);
    background-position: 0 0;
  }
}
/* product page */
.prod-section-first {
	background-color: #F7F7F7;
	padding: 70px 0;
}
.prod-img-plus {
  max-width: 230px;
}
.prod-img-mac {
  max-width: 300px;
}
.prod-flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
		-ms-flex-pack: justify;
			justify-content: space-between;
	max-width: 275px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
}

.prod-p-main {
	font-weight: bold;
	font-size: 12px;
	color: #ffa140;
}

.prod-h1-main {
	font-weight: bold;
	font-size: 40px;
	margin-bottom: 35px;
}
.prod-block-pluses {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	padding: 17px 20px;
	background-color: #fff;
	margin-bottom: 16px;
	width: 100%;
}

.prod-p-pluses {
	font-size: 14px;
	margin-bottom: 0;
	margin-left: 20px;
	margin-top: auto;
	margin-bottom: auto;
}

.prod-block-btns {
	display: flex;
	max-width: 650px;
	justify-content: space-between;
}
.prod-block-btns-mobile {
	display: flex;
	max-width: 500px;
	justify-content: space-between;
}
.prod-a-download {
	background-color: #FFA140;
	padding: 14px 40px 14px 40px;
	font-size: 18px;
	color: #ffffff;
	position: relative;
	border-radius: 4px;
	-webkit-transition: .3s;
	transition: .3s;
	display: block;
	margin-bottom: 30px;
	margin-top: 40px;
	width: 218px;
	max-width: 100%;
	text-align: center;
	transition: .3s;
}
.prod-a-download:hover {
	color: #ffffff;
	-webkit-transform: translateY(5px);
			transform: translateY(5px);
}
.prod-p-underline {
  margin-top: 52px;
  margin-bottom: auto;
  text-align: center;
  font-size: 14px;
}
.prod-a-underline {
  font-size: 14px;
	display: block;
	color: #262626!important;
	text-decoration: underline #262626!important;
	margin-top: auto;
  margin-bottom: auto;
}
.prod-a-underline:hover {
	text-decoration: none!important;
}

.prod-section-devices {
	padding: 105px 0 120px;
}
.prod-h2-devices {
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 30px;
	max-width: 444px;
}
.prod-p-devices {
	font-size: 16px;
	color: #8289a7;
	max-width: 444px;
}

/* slider */
.prod-section-requires {
	background-color: #f7f7f7;
	padding: 60px 0 80px;
}
.act {
	display: block;
	background-color: #fff;
	font-size: 16px;
	color: #262626!important;
	text-align: center;
	width: 140px;
	max-width: 100%;
	border-radius: 5px;
	padding: 13px 20px;
	margin-right: 15px;
	transition: .3s;
}
.act:hover {
	background-color: #FFA140;
	color: #fff!important;
}
.act-active {
	background-color: #FFA140;
	color: #fff!important;
}
.act-active p i {
	color: #fff!important;
}

i {
	font-size: 22px;
	margin-right: 10px;
	color: #8289A7;
	transition: .3s;
}
.act:hover i {
	color: #fff!important;
}
.act p {
	margin-bottom: 0;
}
.br-i {
  display: none;
}

.owl-require {
	margin-top: 50px;
}
.prod-p-requires {
	font-size: 16px;
	font-weight: bold;
}
.prod-ul-requires {
	list-style-image: url(../img/prod-marker.svg); 
	padding-left: 16px;
	margin-bottom: 35px;
}
.prod-ul-requires li {
	font-size: 14px;
	color: #8289a7;
	padding-left: 12px;
	margin-bottom: 8px;
}
.prod-a-requires {
	font-size: 16px;
	display: block;
	width: 287px;
	max-width: 100%;
	text-align: center;
	border: 1px solid #FFA140;
	border-radius: 4px;
	padding: 20px 35px;
	color: #262626;
	margin-top: 30px;
	transition: .3s;
}
.prod-a-requires:hover {
	color: #fff;
	background-color: #FFA140;
}
.prod-section-quote {
	padding: 120px 0 100px;
	background-image: url(../img/back-quote.png);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.prod-p-quote-desc {
	color: #8289a7;
	font-size: 12px;
	margin-bottom: 30px;
	text-align: center;
}
.prod-p-quote {
	color: #fff;
	font-size: 22px;
	font-weight: bold;
	font-style: italic;
	margin-bottom: 35px;
	text-align: center;
	max-width: 637px;
	margin-left: auto;
	margin-right: auto;
}
.prod-section-graphs {
	padding: 80px 0;
	background-color: #F7F7F7;
}
.prod-p-graphs {
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 40px;
}
/* media prod */

@media (max-width: 1199px) {
	.prod-block-product {
		margin-top: auto;
		margin-bottom: auto;
		margin-left: auto;
		margin-right: auto;
	}
	.d-me-lg-flex {
		display: flex;
	}
}
@media screen and (max-width: 991px) {
	.prod-p-main {
		text-align: center;
		margin-top: 50px;
	}
	.prod-h1-main-n {
		margin-top: 50px;
  }
	.prod-h1-main {
		text-align: center;
	}
	.d-me-md-flex {
		display: flex;
	}
	.prod-block-devices {
		margin-top: auto;
		margin-bottom: auto;
	}
}
@media screen and (max-width: 767px) {
	.prod-block-devices {
		margin-bottom: 50px;
	}
}
@media screen and (max-width: 575px) {
	.prod-block-btns {
		display: block;
	}
	.prod-a-download {
		margin-left: auto;
		margin-right: auto;
  }
  .prod-p-underline {
    margin-bottom: 10px;
    margin-top: 0;
  } 
  .prod-p-underline .prod-a-underline {
    margin-bottom: 0px;
  } 
	.prod-a-underline {
		text-align: center;
		margin-bottom: 10px;
  }
	.act {
		margin-bottom: 10px;
		margin-left: 5px;
    margin-right: 5px;
  }
  .br-i {
    display: block;
  }
  i {
    margin-right: 0;
  }
}
@media screen and (max-width: 340px) {
	.prod-p-graphs {
		font-size: 28px;
	}
}
/* Contacts */
.cont-h1-contacts {
  font-weight: bold;
  font-size: 40px;
  margin-bottom: 75px;
  margin-top: 50px;
}
.cont-a-contacts {
  color: #262626;
  text-decoration: #262626 underline!important;
  transition: .3s;
}
.cont-a-contacts:hover {
  color: #e80000;
  text-decoration: #e80000 underline!important;
  text-decoration: none;
}
.cont-iframe-contacts {
  max-width: 100%;
}
.cont-col-contacts {
  padding-bottom: 70px;
}
.cont-bold {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
	.cont-iframe-contacts {
		padding-bottom: 50px;
	}
}
/* free edition */
.section-main-free {
	background-image: url(../img/back-free.jpg);
	background-repeat: no-repeat;
	background-size: cover;
  background-position: center;
  padding: 50px 0 100px;
}
.free-h1-main {
	font-size: 50px;
	text-align: center;
	color: #ffffff;
	font-weight: bold;
	margin-bottom: 17px;
}
.free-p-main {
	font-size: 18px;
	text-align: center;
	color: #ffffff;
	display: block;
	max-width: 574px;
	margin-bottom: 75px;
	margin-left: auto;
	margin-right: auto;
}
.free-block-main {
	display: flex;
	min-height: 600px;
}
.free-block-input {
	max-width: 563px;
	margin-left: auto;
	margin-right: auto;
}
.free-form-input {
	border-radius: 4px;
	border: 0;
	padding: 15px;
	font-size: 14px;
	width: 360px;
	max-width: 100%;
	margin-right: 15px;
}
.free-btn-form {
	border-radius: 4px;
	border: 0;
	padding: 15px 28px;
	color: #ffffff;
	background: #FFA140;
	font-size: 14px;
}
.free-a-compare {
	font-size: 14px;
	text-align: center;
	display: block;
	max-width: 137px;
	margin-top: 75px;
	margin-left: auto;
	margin-right: auto;
}
.free-a-compare p {
	color: #ffffff;
	margin-bottom: 0;
}
.free-a-compare:after {
    content: "";
    position: relative;
    display: block;
    background: #ffffff;
    height: 1px;
    margin: 1.5px 0;
    margin-left: auto; margin-right: auto;
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955), opacity 0.175s linear;
    opacity: 1;
}
.free-a-compare:hover:after {
    opacity: 0;
    transform: scaleX(0);
    transition: transform 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955), opacity 0.175s linear;
}
.free-h1-pluses {
	font-size: 40px;
	font-weight: bold;
	margin-bottom: 95px;
}

.section-pluses {
	padding: 140px 0 160px;
}
.free-p-pluses {
	font-size: 18px;
	font-weight: bold;
	margin-top: 25px;
	margin-bottom: 13px;
}
.free-p-pluses-desc {
	color: #8289a7;
	font-size: 14px;
}
.free-block-pluses {
	max-width: 80%;
	margin-left: auto;
	margin-right: auto;
}

.free-section-black {
	background-image: url(../img/free-back-black.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding: 170px 0;
}
.free-p-black {
	color: #9b9da0;
	font-size: 16px;
}
.free-h1-black {
	color: #ffffff;
	font-size: 40px;
	margin-bottom: 24px;
}
.free-block-black {
	display: flex;
	margin-bottom: 40px;
}
.free-p-marker {
	font-size: 16px;
	color: #ffffff;
	margin-bottom: 0;
	margin-left: 17px;
	max-width: 322px;
}

.free-section-requires {
	padding: 80px 0;
	background-color: #F7F7F7;
}
.free-h1-requires {
	font-size: 40px;
	font-weight: bold;
	margin-bottom: 55px;
}

.free-section-virus {
	padding: 130px 0;
}
.free-h1-virus {
	font-size: 40px;
	font-weight: bold;
}
.free-p-virus {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 15px;
	margin-top: 65px;
}
.free-p-virus-desc {
	font-size: 14px;
	margin-bottom: 15px;
	color: #8289a7;
}
.free-block-virus {
	display: flex;
}

.free-section-form-footer {
	background-color: #F7F7F7;
	padding: 130px 0 120px;
}
.free-h1-form-footer {
	font-size: 40px;
	font-weight: bold;
	text-align: center;
	max-width: 651px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 50px;
}
/* media free edition */
@media screen and (max-width: 767px) {
	.free-form-input {
		margin-right: 0;
		margin-bottom: 20px;
		display: block;
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}
	.free-btn-form {
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
	.free-block-pluses, .free-p-black {
		margin-bottom: 70px;
	}
	.free-h1-virus {
		margin-top: 100px;
	}
}
@media screen and (max-width: 566px) {
	.free-h1-main {
		margin-top: 70px;
	}
	.free-a-compare {
		padding-bottom: 80px;
	}
}
@media screen and (max-width: 450px) {
	.free-h1-virus, .free-h1-form-footer, .free-h1-requires, .free-h1-black, .free-h1-pluses {
		font-size: 35px;
	}
}

/* Advanced Business Security */
.bus-section-main {
	background-image: url(../img/bus-back-main.png);
	background-repeat: no-repeat;
	background-size: cover;
  background-position: center;
  padding: 50px 0 100px;
}
.bus-block-tab {
  background-color: #fff;
  padding: 35px 40px;
  border-radius: 5px;
}
.bus-block-circles {
  display: flex;
  justify-content: space-between;
}
.h1-range {
  font-size: 18px;
  margin-bottom: 23px;
  font-weight: normal;
}
.bus-tab p {
  margin-top: 15px;
  margin-bottom: 0;
}
.bus-tab.tab-active p {
  font-weight: bold;
}
.bus-tab-span {
  border-radius: 50%;
  width: 15px;
  height: 15px;
  border: 1px solid #8289A7;
  display: block;
  background-color: #fff;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  transition: .3s;
}
.bus-tab.tab-active .bus-tab-span {
  background-color: #FFA140;
  border: 1px solid #FFA140;
  display: block;
}
.bus-tab.tab-active .bus-tab-span:after {
  content: "";
  width: 23px;
  height: 23px;
  position: absolute;
  margin-left: -5px;
  margin-top: -5px;
  border-radius: 50%;
  border: 1px solid #FFA140;
}
.bus-block-years {
  display: flex;
  justify-content: space-between;
}
.bus-span-year {
  width: 25px;
  height: 25px;
  display: block;
  border: 1px solid #8289A7;
  transition: .3s;
}
.bus-block-years div {
  display: flex;
  cursor: pointer;
}
.bus-tab-years p {
  margin-left: 18px;  
}
.tab-year-active p {
  font-weight: bold;
}
.tab-year-active .bus-span-year {
  background-color: #FFA140;
  border: 1px solid #FFA140;
}
.bus-span-year img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 7px;
}
.bus-input-range {
  width: 100%;

}
.bus-a-buy {
  background-color: #FFA140;
  padding: 14px 40px 14px 40px;
  font-size: 18px;
  color: #ffffff;
  position: relative;
  border-radius: 4px;
  display: block;
  margin-top: 40px;
  width: 225px;
  max-width: 100%;
  text-align: center;
  transition: .3s;
}
.bus-a-buy:hover {
  transform: translateY(5px);
  color: #ffffff;
}



.rangecontainer {
  width: 100%;
  margin-bottom: 30px;
}

.range {
  -webkit-appearance: none;
  width: 100%;
  height: 1px;
  background: #CECECE;
  outline:none;
}

.range:hover {
  opacity: 1;
}
.range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border: 0;
  background: url(../img/circle.svg);
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}
.bus-range-lighter {
  position: relative;
  width: 100%;
  height: 30px;
}
.bus-range-lighter span {
  position: absolute;
  width: 30px;
  height: 30px;
  left: 0;
  top: 0;
  background-color: red;
}

.bus-p-total {
  margin-top: 23px;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}
.bus-p-demo {
  font-size: 18px;
  margin-top: 25px;
}
.demo {
  float: right;
  font-weight: bold;
}
.total {
  font-weight: bold;
}
.bus-block-total {
  border-top: 1px dashed #CECECE;
  margin-top: 20px;
}
.div-range {
  margin-top: 10px;
}
.bus-span-range-left, .bus-span-range-right {
  font-size: 14px;
  font-weight: bold;
}
.bus-span-range-left {
  margin-left: 7px;
}
.bus-span-range-right {
  float: right;
}

.bus-block-main {
  margin-top: auto;
  margin-bottom: auto;
}
.bus-h1-main {
  font-size: 50px;
  color: #ffffff;
  margin-bottom: 45px;
  max-width: 600px;
  font-weight: bold;
}
.bus-p-main {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 60px;
}
.bis-block-a {
  display: flex;
  justify-content: space-between;
  max-width: 500px;
}
.bus-a-main {
  font-size: 14px;
  text-align: center;
  display: block;
  position: relative;
}
.bus-a-main:after {
  content: "";
  position: relative;
  display: block;
  background: #ffffff;
  height: 1px;
  margin: 1.5px 0;
  margin-left: auto; margin-right: auto;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955), opacity 0.175s linear;
  opacity: 1;
}
.bus-a-main:hover:after {
  opacity: 0;
  transform: scaleX(0);
  transition: transform 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955), opacity 0.175s linear;
}
.bus-a-main:before {
  content: "";
  position: absolute;
  bottom: 0;
  display: block;
  background: #FFA140;
  height: 1px;
  width: 100%;
  margin: 1.5px 0;
  margin-left: auto; margin-right: auto;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955), opacity 0.175s linear;
  transition-delay: .25s;
  opacity: 0;
}
.bus-a-main:hover:before {
  opacity: 1;
  transform: scaleX(1);
}
.bus-a-main p {
	color: #ffffff;
	margin-bottom: 0;
}

.bus-h1-dev {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 50px;
}
.bus-p-dev {
  font-size: 16px;
  color: #8289a7;
  margin-bottom: 0;
}
.bus-block-dev {
  display: flex;
}

#form-bus-selector {
  margin-top: 30px;
}
.bus-block-input {
  width: 75%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
.bus-form-input {
  width: 100%;
  background-color: transparent;
  border: 0;
  border-bottom: solid 1px #6f6f6f;
  padding: 10px 17px 6px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  max-width: 500px;
  border-radius: 0;
  -webkit-transition: .3s;
  transition: .3s;
  outline: none;
}
.bus-form-input:focus {
  border-bottom: solid 1px #FFA140;
}
.bus-btn-form {
  background-color: #FFA140;
  padding: 14px 40px 14px 40px;
  font-size: 18px;
  color: #ffffff;
  position: relative;
  border-radius: 4px;
  display: block;
  margin: 80px 0 40px;
  width: 221px;
  max-width: 100%;
  text-align: center;
  border: none;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  transition: .3s;
}
.bus-btn-form:hover {
  transform: translateY(5px);
}
.modal-header {
  border: none;
}
.bus-form-h1 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 40px;
}

.bus-section-black {
  background-image: url(../img/bus-back-black.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 115px 0;
}
.bus-h1-icons {
  font-size: 40px;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 85px;
  text-align: center;
}
.bus-img-icons {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.bus-p-icons {
  font-size: 18px;
  color: #ffffff;
  font-weight: bold;
  margin-top: 40px;
  max-width: 150px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.bus-a-icons {
  background-color: #FFA140;
  padding: 14px 40px 14px 40px;
  font-size: 18px;
  color: #ffffff;
  position: relative;
  border-radius: 4px;
  display: block;
  margin-top: 110px;
  margin-left: auto;
  margin-right: auto;
  width: 246px;
  max-width: 100%;
  text-align: center;
  transition: .3s;
}
.bus-a-icons:hover {
  transform: translateY(5px);
  color: #ffffff;
}

.bus-section-form-footer {
  padding: 70px 0 160px;
}
.bus-block-form {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  background-color: #F7F7F7;
  padding: 70px 100px;
}
.bus-h1-form-feed {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 70px;
}
.bus-block-input-feed {
  margin-bottom: 20px;
}
.bus-form-input-feed {
  width: 100%;
  background-color: transparent;
  border: 0;
  border-bottom: solid 1px #E9E9F0;
  padding: 15px 8px;
  font-size: 16px;
  display: block;
  max-width: 330px;
  border-radius: 0;
  transition: .3s;
  outline: none;
}
.bus-form-input-feed:focus {
  border-bottom: solid 1px #FFA140;
}
.bus-form-input-feed::placeholder { 
  color: #8289A7;
}
.bus-btn-form-feed {
  background-color: #FFA140;
  padding: 14px 19px;
  font-size: 18px;
  color: #ffffff;
  position: relative;
  border-radius: 4px;
  display: block;
  margin: 60px 0 0;
  width: 229px;
  max-width: 100%;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: .3s;
}
.bus-btn-form-feed:hover {
  transform: translateY(5px);
}

.bus-section-pluses {
  padding: 120px 0 70px;
}
.bus-h1-pluses {
  font-size: 40px;
  font-weight: bold;
  max-width: 710px;
  margin-bottom: 35px;
}
.bus-p-pluses {
  font-size: 16px;
  max-width: 525px;
  color: #8289a7;
  margin-bottom: 70px;
}
.bus-block-pluses {
  border: 1px solid #F7F7F7;
  border-radius: 5px;
  padding: 30px 15px 25px;
  height: 100%;
  transition: .3s;
}
.bus-block-pluses:hover {
  border: 1px solid #ffffff;
  box-shadow: 0px 6px 27px 0px rgba(48, 48, 137, 0.05);
}
.bus-block-pluses:hover .bus-img-pluses {
  opacity: 1;
}
.bus-img-pluses {
  display: block;
  margin-left: auto;
  margin-right: auto;
  opacity: .7;
  transition: .3s;
}
.bus-p-pluses-title {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
}
.bus-ul-pluses {
  padding-left: 21px;
  padding-top: 15px;
}
.bus-ul-pluses li {
  color: #FFA140;
  padding-left: 5px;
  font-size: 16px;
  margin-bottom: 6px;
}
.bus-ul-pluses li span {
  color: #8289A7;
  font-size: 14px!important;
}
/* Business security */
.bus-section-main-2nd {
	background-image: url(../img/bus-back-main-2.png);
	background-repeat: no-repeat;
	background-size: cover;
  background-position: center;
  padding: 50px 0 100px;
}
.bus-p-dev-sec {
  font-size: 16px;
  color: #8289a7;
  margin-bottom: 0;
  max-width: 440px;
}
.bus-p-icons-sec {
  font-size: 18px;
  color: #ffffff;
  font-weight: bold;
  margin-top: 40px;
  max-width: 238px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
/* Elite */
.bus-section-main-3rd {
	background-image: url(../img/bus-back-main-3.png);
	background-repeat: no-repeat;
	background-size: cover;
  background-position: center;
  padding: 50px 0 100px;
}
.bus-p-icons-elite {
  font-size: 18px;
  color: #ffffff;
  font-weight: bold;
  margin: 40px 0 90px;
  max-width: 277px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.bus-p-icons-elite-3 {
  max-width: 230px;
}
.bus-a-icons-elite {
  margin-top: 70px;
}
.bus-yellow {
  color: #ffa140;
}
.bus-section-hyper {
  padding: 150px 0;
  background-color: #F7F7F7;
}
.bus-tab-hyper {
  padding: 5px 18px;
  border: #FFA140 1px solid;
  margin-right: 16px;
  font-size: 16px;
  margin-bottom: 17px;
}
.bus-p-dev-elite {
  font-size: 16px;
  color: #8289a7;
  margin-bottom: 70px;
}
.bus-h1-pluses-elite {
  font-size: 35px;
  font-weight: bold;
  max-width: 710px;
  margin-bottom: 35px;
}
/* Ultra */
.bus-section-main-4th {
	background-image: url(../img/bus-back-main-4.png);
	background-repeat: no-repeat;
	background-size: cover;
  background-position: center;
  padding: 50px 0 100px;
  min-height: 600px;
}
.bus-h1-dev-ultra {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 50px;
}
.bus-a-ultra {
  background-color: #FFA140;
  padding: 14px 24px;
  font-size: 16px;
  color: #ffffff;
  position: relative;
  border-radius: 4px;
  display: block;
  width: 246px;
  max-width: 100%;
  text-align: center;
  transition: .3s;
}
.bus-a-ultra:hover {
  transform: translateY(5px);
  color: #ffffff;
}
.bus-a-ultra:before {
  content: none;
}
.bus-a-ultra p {
  margin-bottom: 0;
}
.bus-a-main-ultra {
  height: 25px;
  margin-top: auto;
  margin-bottom: auto;
}
.bus-block-a-ultra {
  display: flex;
  justify-content: space-between;
  max-width: 680px;
}
.bus-p-icons-ultra {
  font-size: 15px;
  color: #ffffff;
  font-weight: bold;
  margin: 40px 0 90px;
  max-width: 277px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.bus-block-main-ultra {
  height: 450px;
}
/* Media advanced business */

@media (max-width: 991px) {
  .bus-block-tab {
    margin-top: 70px;
  }
  .bus-block-dev {
    margin-top: 50px;
  }
  .col-lg-to-5 {
    margin-bottom: 40px;
  }
}
@media (min-width: 992px) {
  .col-lg-to-5 {
      -ms-flex: 0 0 20%;
      flex: 0 0 20%;
      max-width: 20%;
      position: relative;
      width: 100%;
      min-height: 1px;
      padding-right: 15px;
      padding-left: 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .bus-block-tab {
    padding: 50px 30px;
  }
  .col-lg-to-5 {
    padding-right: 10px;
    padding-left: 10px;
  }
  .bus-block-pluses {
    padding: 30px 9px 25px;
  }
}
@media (max-width: 767px) {
  .bus-p-icons {
    margin-bottom: 70px;
  }
  .bus-block-form {
    padding: 70px 40px;
  }
  .section-pluses {
    padding: 100px 0 160px;
  }
  .bus-section-pluses {
    padding: 120px 0 0;
  }
  .bus-block-a-ultra {
    display: block;
  }
  .bus-a-ultra {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
  }
  .bus-a-main-ultra {
    max-width: 175px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
  }
  .bus-block-main-ultra {
    height: auto;
  }
}
@media (max-width: 575px) {
  .bus-block-mob {
    display: flex;
  }
  .bus-img-pluses {
    margin-left: 0;
    margin-right: 20px;
  }
  .bus-p-pluses-title {
    text-align: left;
  }
  .bus-section-form-footer {
    padding: 100px 0 15px;
  }
}

@media (max-width: 450px) {
  .bis-block-a, .bus-block-years {
    display: block;
  }
  .bus-a-main {
    max-width: 175px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
  }
  .bus-a-main p {
    margin-left: 5px;
  }
  .bus-h1-dev, .bus-h1-icons, .bus-h1-pluses, .bus-h1-form-feed, .bus-h1-main, .bus-h1-pluses-elite, .bus-h1-dev-ultra, .bus-h1-form-feed {
    font-size: 25px;
  }
  .bus-ul-pluses {
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
  }
  .bus-tab-hyper {
    padding: 5px 10px;
    margin-right: 5px;
    font-size: 14px;
    flex-grow: 1;
    text-align: center;
  }
}
