* {
    box-sizing: border-box;
  }
  
body,
html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
  
.clear {
    clear: both !important;
  }
  
.hide {
    display: none !important;
  }
  
.redmsg {
    color: red !important;
    background: #000 !important;
  }
  
#ce4wp_checkout_consent_checkbox_field {
    display: none !important;
  }
  
.img_block_left {
    float: left;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 0 20px 15px 0;
  }
  
  .img_block_left p {
    margin: 0 0 10px 0;
  }
  
  .img_block_left p:empty {
    margin: 0;
  }
  
  p:empty:before {
    content: none;
  }
  
  .pagetitle-section {
    padding-top: 140px;
    background: #181919;
    color: #fff;
  }
  
  .pagetitle-section h1 {
    margin: 0;
  }
  
  .alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1.5em;
  }
  
  .alignright {
    float: right;
    margin-left: 1.5em;
    margin-bottom: 1.5em;
  }
  
  .alignnone {
    float: none;
    clear: both;
  }
  
  .command-wrap {
    display: flex;
    flex-flow: row wrap;
  }
  
  .command-wrap .item {
    width: calc(25% - 20px);
    margin: 0 10px 15px;
  }
  
  .command-wrap .item img {
    border: 1px solid rgba(255, 0, 0, 0.6039215686);
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  
  .review-wrap {
    display: flex;
    flex-flow: row wrap;
  }
  
  .review-wrap .item {
    width: calc(33% - 30px);
    margin: 0 15px 15px;
  }
  
  .news-wrap {
    background: #181919;
    color: #fff;
    padding: 30px 0;
  }
  
  .news-wrap .type-post {
    margin-bottom: 15px;
    font-family: "Open Sans", sans-serif;
    padding-right: 40px;
  }
  
  .news-wrap .type-post a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
  }
  
  .news-wrap .type-post img {
    border: 1px solid rgba(255, 0, 0, 0.6039215686);
    width: 35%;
    -o-object-fit: cover;
    object-fit: cover;
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
  }
  
  .single-news {
    background: #181919;
    color: #fff;
    padding: 30px 0;
  }
  
  .gallery {
    display: flex;
    flex-flow: row wrap;
  }
  
  .gallery .item {
    width: calc(33% - 30px);
    margin: 15px;
  }
  
  .gallery .item img {
    border: 1px solid rgba(255, 0, 0, 0.6039215686);
    width: 345px;
    height: 260px;
    -o-object-fit: cover;
    object-fit: cover;
    transition: 0.5s;
  }
  
  .gallery .item:hover img {
    border: 2px solid red;
    transform: scale(1.1);
  }

  header .top-line {
	background: #000;
    padding: 3px 0 0;
  }
  
  header .top-line a {
    margin: 5px;
    font-family: "Open Sans", sans-serif;
  }
  
  header .top-line a svg {
    width: 15px;
    height: 15px;
    fill: #afafaf;
    transition: .5s;
  }
  
  header .top-line a:hover svg {
    fill: red;
  }
  
  header .top-line .right {
    display: none;
  }
  
  header .navbar {
    z-index: 9999;
    position: fixed;
    top: 22px;
    left: 0;
    right: 0;
    padding: 5px 0;
    transition: .5s;
  }
  
  header .navbar .navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  header .navbar .right-nav {
    display: flex;
    align-items: center;
  }
  
  header .navbar .right-nav a {
    font-family: "Open Sans", sans-serif;
    text-decoration: none;
    color: #ebebeb;
    font-weight: 700;
    font-size: 18px;
    transition: .5s;
    margin-left: 10px;
    margin-top: -8px;
  }
  
  header .navbar .right-nav a:hover {
    color: red;
  }
  
  header .navbar .logo img {
    width: 100%;
    max-width: 186px;
  }
  
  header .navbar .number a {
    font-family: "Open Sans", sans-serif;
    text-decoration: none;
    color: #ebebeb;
    font-weight: 700;
    font-size: 18px;
    transition: .5s;
  }
  
  header .navbar .number a:hover {
    color: red;
  }
  
  header .navbar .menu {
    position: relative;
    cursor: pointer;
    width: 35px;
    height: 20px;
  }
  
  header .navbar .menu span {
    top: 5px;
    left: 0;
    position: absolute;
    width: 35px;
    height: 2px;
    background: #fff;
    transition: .2s;
  }
  
  header .navbar .menu span::after,
  header .navbar .menu span::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 2px;
    background-color: #fff;
    transition: .5s;
  }
  
  header .navbar .menu span::before {
    top: -8px;
  }
  
  header .navbar .menu span::after {
    top: 8px;
  }
  
  header .navbar .menu.active span {
    width: 0;
    height: 0;
  }
  
  header .navbar .menu.active span::before {
    transform: rotate(45deg);
    top: 0;
    height: 3px;
  }
  
  header .navbar .menu.active span::after {
    transform: rotate(-45deg);
    top: 0;
    height: 3px;
  }
  
  header .navbar .hidemenu {
    position: fixed;
    overflow: hidden;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 100%;
    opacity: 0;
    z-index: 999;
    background: rgba(0, 0, 0, .9529411765);
    transition: 1s;
  }
  
  header .navbar .hidemenu .close {
    position: absolute;
    right: 60px;
    top: 30px;
    cursor: pointer;
  }
  
  header .navbar .hidemenu .close span {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 50%;
  }
  
  header .navbar .hidemenu .close span::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 2px;
    top: 23px;
    left: 7px;
    background-color: #fff;
    transform: rotate(45deg);
  }
  
  header .navbar .hidemenu .close span::after {
    position: absolute;
    content: "";
    width: 35px;
    height: 2px;
    top: 23px;
    left: 7px;
    background-color: #fff;
    transform: rotate(-45deg);
  }
  
  header .navbar .hidemenu .menu-wrap {
    padding-left: 15%;
    padding-top: 80px;
  }
  
  header .navbar .hidemenu .menu-wrap ul.menu-ul {
    width: 250px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: my-awesome-counter;
  }
  
  header .navbar .hidemenu .menu-wrap ul.menu-ul .menu-li {
    width: 100%;
    position: relative;
    margin: 10px 0;
    counter-increment: my-awesome-counter;
  }
  
  header .navbar .hidemenu .menu-wrap ul.menu-ul .menu-li .menu-link {
    position: relative;
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: .5s;
  }
  
  header .navbar .hidemenu .menu-wrap ul.menu-ul .menu-li .menu-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 4px;
    top: calc(50% - 2px);
    left: 0;
    background-color: #ef203c;
    transition: .5s;
  }
  
  header .navbar .hidemenu .menu-wrap ul.menu-ul .menu-li:hover .menu-link {
    padding-left: 80px;
    color: #ef203c !important;
  }
  
  header .navbar .hidemenu .menu-wrap ul.menu-ul .menu-li:hover .menu-link::before {
    width: 75px;
  }
  
  header .navbar .hidemenu .menu-wrap ul.menu-ul .menu-li::before {
    left: -30px;
  }
  
  header .navbar .hidemenu .menu-wrap ul.menu-ul .menu-li:nth-child(-n + 9)::before {
    position: absolute;
    content: "0" counter(my-awesome-counter);
    transform: rotate(270deg);
    opacity: .4;
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    color: #fff;
    width: 24px;
    height: 21px;
  }
  
  header .navbar .hidemenu .menu-wrap ul.menu-ul .menu-li.parent {
    position: relative;
  }
  
  header .navbar .hidemenu .menu-wrap ul.menu-ul .menu-li.parent ul {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
  }
  
  header .navbar .hidemenu .menu-wrap ul.menu-ul .menu-li.parent ul li {
    position: relative;
    margin: 10px 0;
  }
  
  header .navbar .hidemenu .menu-wrap ul.menu-ul .menu-li.parent ul li a {
    position: relative;
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: .5s;
  }
  
  header .navbar .hidemenu .menu-wrap ul.menu-ul .menu-li.parent ul li:first-child {
    margin-top: 0;
  }
  
  header .navbar .hidemenu .menu-wrap ul.menu-ul .menu-li.parent:hover ul {
    display: block;
  }
  
  header .navbar .hidemenu.active {
    left: 0;
    opacity: 1;
  }
  
  header .navbar.fixed {
    top: 0;
    background: rgba(24, 25, 25, .92);
  }

  body.woocommerce {
    background: #000;
  }
  
  main .slide-section {
    position: relative;
    width: 100%;
    height: 97vh;
  }
  
  main .slide-section .time-img-desk {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  
  main .slide-section .time-img-mob {
    position: relative;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: none;
  }
  
  main .slide-section .abs {
    width: 100%;
    padding-top: 200px;
  }
  
  main .slide-section .abs .container {
    display: flex;
    justify-content: space-between;
  }
  
  main .slide-section .lefmain {
    width: 50%;
    padding: 10px;
    padding-left: 0;
    z-index: 2;
  }
  
  main .slide-section .time-maintext {
    text-align: left;
    z-index: 2;
    font-weight: 800;
    font-size: 42px;
    color: #ebebeb;
    font-family: "Open Sans", sans-serif;
  }
  
  main .slide-section .time-podtext {
    z-index: 2;
    color: #e1e1e1;
    font-family: "Open Sans", sans-serif;
  }
  
  main .slide-section .form {
    width: 40%;
    z-index: 2;
    background: rgba(0, 0, 0, 0.6235294118);
    padding: 15px;
  }
  
  main .slide-section .form h4 {
    text-align: center;
    color: #ebebeb;
    font-size: 28px;
    margin-top: 0;
  }
  
  main .slide-section .form form {
    margin-top: 30px;
    display: flex;
    flex-flow: column;
    align-items: flex-end;
  }
  
  main .slide-section .form form input {
    margin: 0 auto;
    margin-bottom: 15px;
    background: 0 0;
    border: none;
    outline: 0;
    border-bottom: 1px solid #afafaf;
    padding: 5px;
    width: 100%;
    max-width: 600px;
    color: #ebebeb;
    text-align: center;
    font-size: 18px;
  }
  
  main .slide-section .form form input::-moz-placeholder {
    color: #8e9197;
  }

  main .slide-section .form form input:-ms-input-placeholder {
    color: #8e9197;
  }
  
  main .slide-section .form form input::placeholder {
    color: #8e9197;
  }
  
  main .slide-section .form form .message {
    font-size: 18px;
    color: #fff;
  }
  
  main .slide-section .form form .sendbtn {
    cursor: pointer;
    background: 0 0;
    outline: 0;
    position: relative;
    text-align: center;
    transition: .5s;
    padding: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    border: none;
    transition: .5s;
    max-width: 150px;
    font-size: 18px;
  }
  
  main .slide-section .form form .sendbtn::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 7px;
    border: 1px solid transparent;
    border-top: 1px solid red;
    border-left: 1px solid red;
    left: -7px;
    top: 0;
    transition: .5s;
  }
  
  main .slide-section .form form .sendbtn::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 7px;
    border: 1px solid transparent;
    border-bottom: 1px solid red;
    border-right: 1px solid red;
    right: -7px;
    bottom: 0;
    transition: .5s;
  }
  
  main .slide-section .form form .sendbtn:hover::after,
  main .slide-section .form form .sendbtn:hover::before {
    width: 100%;
    height: calc(100% - 2px);
  }
  
  main .slide-section .form form .sendbtn:hover::before {
    left: 0;
  }
  
  main .slide-section .form form .sendbtn:hover::after {
    right: 0;
  }
  
  main .slide-section.times::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2588235294);
    z-index: 1;
  }
  
  .services-section {
    background: #181919;
    color: #fff;
    padding: 30px 0;
  }
  
  .services-section h2 {
    text-align: center;
  }
  
  .services-section .services-inner {
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
  }
  
  .services-section .services-inner .service {
    position: relative;
    width: 33%;
    height: 250px;
    transition: .5s;
    text-align: center;
  }
  
  .services-section .services-inner .service .service-wrap {
    position: relative;
    transition: .3s;
    z-index: 999;
    overflow: hidden;
  }
  
  .services-section .services-inner .service img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    filter: brightness(.6);
  }
  
  .services-section .services-inner .service .text {
    position: absolute;
    text-align: left;
    width: 80%;
    bottom: 15px;
    left: 20px;
    color: #fff;
    font-family: "Open Sans", sans-serif;
    font-weight: 800;
    font-size: 18px;
  }
  
  .services-section .services-inner .service .swipe {
    position: absolute;
    z-index: -1;
    text-align: left;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    visibility: hidden;
    opacity: 0;
    padding: 15px;
    transform: translateY(100%);
    transition: all .3s .1s ease;
  }
  
  .services-section .services-inner .service .swipe::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, red, #a90000);
    opacity: .9;
    z-index: 1;
  }
  
  .services-section .services-inner .service .swipe .name {
    text-align: left;
    position: relative;
    color: #000;
    opacity: 1;
    text-transform: uppercase;
    font-weight: 900;
    font-style: italic;
    font-size: 24px;
    line-height: 1.444444;
    transition: .3s;
    z-index: 3;
  }
  
  .services-section .services-inner .service .swipe .stext {
    position: relative;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    margin-bottom: 15px;
    transform: translateX(-130%);
    z-index: 3;
    transition: .3s;
  }
  
  .services-section .services-inner .service .swipe .moreser {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    position: relative;
    border: 2px solid #000;
    color: #000;
    padding: 12px 17px;
    border-radius: 5px;
    letter-spacing: 2px;
    text-align: center;
    z-index: 3;
    transition: .3s;
    text-transform: uppercase;
    text-decoration: none;
  }
  
  .services-section .services-inner .service .swipe .moreser:hover {
    background: #000;
    color: #fff;
  }
  
  .services-section .services-inner .service .service-wrap.mobac,
  .services-section .services-inner .service .service-wrap:hover {
    box-shadow: 0 0 4rem rgba(255, 25, 0, .3490196078);
    z-index: 1;
  }
  
  .services-section .services-inner .service .service-wrap.mobac .text,
  .services-section .services-inner .service .service-wrap:hover .text {
    opacity: 0;
  }
  
  .services-section .services-inner .service .service-wrap.mobac .swipe,
  .services-section .services-inner .service .service-wrap:hover .swipe {
    z-index: 2;
    transition: all .3s ease;
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }
  
  .services-section .services-inner .service .service-wrap.mobac .swipe .stext,
  .services-section .services-inner .service .service-wrap:hover .swipe .stext {
    transform: translateX(0);
  }

  .icons-section {
    padding: 20px 0;
    background: #181919;
    color: #fff;
  }
  
  .icons-section .icons-inner {
    display: flex;
    justify-content: center;
  }
  
  .icons-section .icons-inner .icon {
    width: calc(25% - 30px);
    display: flex;
    flex-flow: column;
    align-items: center;
    margin: 0 15px;
    position: relative;
  }
  
  .icons-section .icons-inner .icon::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 7px;
    border-top: 1px solid red;
    border-left: 1px solid red;
    left: 0;
    top: -7px;
    transition: .5s;
  }
  
  .icons-section .icons-inner .icon::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 7px;
    border-bottom: 1px solid red;
    border-right: 1px solid red;
    right: 0;
    bottom: -7px;
    transition: .5s;
  }
  
  .icons-section .icons-inner .icon .num {
    position: relative;
    margin-bottom: 10px;
    font-weight: 800;
    font-size: 36px;
    color: #fff;
    font-family: "Open Sans", sans-serif;
  }
  
  .icons-section .icons-inner .icon .text {
    font-size: 18px;
    text-align: center;
  }
  
  .icons-section .icons-inner .icon:first-child {
    margin-left: 0;
  }
  
  .icons-section .icons-inner .icon:last-child {
    margin-right: 0;
  }
  
  .icons-section .icons-inner .icon.mobac::after,
  .icons-section .icons-inner .icon.mobac::before,
  .icons-section .icons-inner .icon:hover::after,
  .icons-section .icons-inner .icon:hover::before {
    width: calc(100% - 1px);
    height: calc(100% + 12px);
  }
  
  .text-section {
    padding: 50px 0;
    background: #181919;
    color: #fff;
    font-family: "Open Sans", sans-serif;
  }
  
  .text-section h1 {
    margin-bottom: 10px;
    text-align: center;
  }
  
  .text-section h2 {
    margin: 10px 0;
  }
  
  .text-section .text {
    font-size: 14px;
  }
  
  .text-section .text ul {
    float: left;
  }
  
  .text-section .bottom,
  .text-section .upper {
    display: flex;
  }
  
  .text-section .bottom .img-block,
  .text-section .upper .img-block {
    width: 35%;
    padding: 10px;
    display: flex;
    align-items: center;
  }
  
  .text-section .bottom .img-block img,
  .text-section .upper .img-block img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  
  .text-section .bottom .text-block,
  .text-section .upper .text-block {
    width: 65%;
    font-size: 14px;
  }
  
  .text-section .bottom .text-block h2,
  .text-section .upper .text-block h2 {
    font-size: 24px;
  }
  
  .text-section a {
    color: #fff;
    transition: .5s;
  }
  
  .text-section a:hover {
    color: red;
  }

  .primer-section {
    position: relative;
    padding: 40px 0;
    padding-top: 120px;
    background: #181919;
    color: #fff;
    font-family: "Open Sans", sans-serif;
  }
  
  .primer-section h2 {
    display: flex;
    justify-content: space-between;
    font-size: 36px;
    font-weight: 800;
    margin: 0;
  }
  
  .primer-section h2 a {
    margin-top: 15px;
    position: relative;
    text-align: center;
    transition: .5s;
    padding: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    transition: .5s;
    font-size: 18px;
  }
  
  .primer-section h2 a::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 7px;
    border-top: 1px solid red;
    border-left: 1px solid red;
    left: -7px;
    top: 0;
    transition: .5s;
  }
  
  .primer-section h2 a::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 7px;
    border-bottom: 1px solid red;
    border-right: 1px solid red;
    right: -7px;
    bottom: 0;
    transition: .5s;
  }
  
  .primer-section h2 a:hover::after,
  .primer-section h2 a:hover::before {
    width: 100%;
    height: calc(100% - 2px);
  }
  
  .primer-section h2 a:hover::before {
    left: 0;
  }
  
  .primer-section h2 a:hover::after {
    right: 0;
  }
  
  .primer-section .shadowtext {
    position: absolute;
    font-weight: 800;
    opacity: 0.02;
    font-size: 150px;
    top: -110px;
    left: 3px;
    -webkit-text-stroke: 3px red;
  }
  
  .primer-section .podtext {
    max-width: 500px;
    margin-bottom: 20px;
  }
  
  .primer-section .primer-inner {
    display: flex;
    flex-flow: row wrap;
    margin-top: 50px;
  }
  
  .primer-section .primer-inner .primer {
    width: calc(33% - 30px);
    margin: 15px;
  }
  
  .primer-section .primer-inner .primer img {
    border: 1px solid rgba(255, 0, 0, .6039215686);
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .news-section {
    padding: 40px 0;
    background: #181919;
    color: #fff;
    font-family: "Open Sans", sans-serif;
  }
  
  .news-section h2 {
    display: flex;
    justify-content: space-between;
    font-size: 36px;
    font-weight: 800;
    margin: 0;
  }
  
  .news-section h2 a {
    margin-top: 15px;
    position: relative;
    text-align: center;
    transition: .5s;
    padding: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    transition: .5s;
    font-size: 18px;
  }
  
  .news-section h2 a::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 7px;
    border-top: 1px solid red;
    border-left: 1px solid red;
    left: -7px;
    top: 0;
    transition: .5s;
  }
  
  .news-section h2 a::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 7px;
    border-bottom: 1px solid red;
    border-right: 1px solid red;
    right: -7px;
    bottom: 0;
    transition: .5s;
  }
  
  .news-section h2 a:hover::after,
  .news-section h2 a:hover::before {
    width: 100%;
    height: calc(100% - 2px);
  }
  
  .news-section h2 a:hover::before {
    left: 0;
  }
  
  .news-section h2 a:hover::after {
    right: 0;
  }
  
  .news-section .podtext {
    max-width: 390px;
    margin-bottom: 20px;
  }
  
  .news-section .news-inner {
    display: flex;
  }
  
  .news-section .news-inner .news {
    width: calc(33% - 15px);
    margin: 10px 7.5px;
    position: relative;
  }
  
  .news-section .news-inner .news img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    filter: brightness(55%);
  }
  
  .news-section .news-inner .news .date {
    position: absolute;
    left: 18px;
    top: 18px;
    font-size: 10px;
  }
  
  .news-section .news-inner .news .title {
    position: absolute;
    font-size: 18px;
    font-weight: 700;
    left: 20px;
    bottom: 20px;
    transition: .3s;
  }
  
  .news-section .news-inner .news .btn-more {
    width: 115px;
    text-align: center;
    position: absolute;
    left: 20px;
    bottom: 20px;
    opacity: 0;
    transition: .5s;
    padding: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    transition: .5s;
  }
  
  .news-section .news-inner .news .btn-more::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 7px;
    border-top: 1px solid red;
    border-left: 1px solid red;
    left: -7px;
    top: 0;
    transition: .5s;
  }
  
  .news-section .news-inner .news .btn-more::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 7px;
    border-bottom: 1px solid red;
    border-right: 1px solid red;
    right: -7px;
    bottom: 0;
    transition: .5s;
  }
  
  .news-section .news-inner .news .btn-more:hover {
    background: #181919;
  }
  
  .news-section .news-inner .news .btn-more:hover::after,
  .news-section .news-inner .news .btn-more:hover::before {
    width: 100%;
    height: 100%;
  }
  
  .news-section .news-inner .news .btn-more:hover::before {
    left: 0;
  }
  
  .news-section .news-inner .news .btn-more:hover::after {
    right: 0;
  }
  
  .news-section .news-inner .news:hover .title {
    bottom: 100px;
  }
  
  .news-section .news-inner .news:hover .btn-more {
    opacity: 1;
  }

  .question-section {
    padding: 40px 0;
    background: url(../img/formbg.jpg);
    font-family: "Open Sans", sans-serif;
    color: #fff;
  }
  
  .question-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
  }
  
  .question-section .podtext {
    text-align: center;
    font-size: 14px;
  }
  
  .question-section form {
    margin-top: 30px;
    display: flex;
    flex-flow: column;
    align-items: flex-end;
  }
  
  .question-section form input {
    margin: 0 auto;
    margin-bottom: 15px;
    background: 0 0;
    border: none;
    outline: 0;
    border-bottom: 1px solid #afafaf;
    padding: 5px;
    width: 100%;
    max-width: 600px;
    color: #fff;
    text-align: center;
    font-size: 16px;
  }
  
  .question-section form input::-moz-placeholder {
    color: #8e9197;
  }
  
  .question-section form input:-ms-input-placeholder {
    color: #8e9197;
  }
  
  .question-section form input::placeholder {
    color: #8e9197;
  }
  
  .question-section form .sendbtn {
    margin-right: 20%;
    cursor: pointer;
    background: 0 0;
    outline: 0;
    position: relative;
    text-align: center;
    transition: .5s;
    padding: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    transition: .5s;
    border: none;
    max-width: 150px;
    font-size: 18px;
  }
  
  .question-section form .sendbtn::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 7px;
    border: 1px solid transparent;
    border-top: 1px solid red;
    border-left: 1px solid red;
    left: -7px;
    top: 0;
    transition: .5s;
  }
  
  .question-section form .sendbtn::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 7px;
    border: 1px solid transparent;
    border-bottom: 1px solid red;
    border-right: 1px solid red;
    right: -7px;
    bottom: 0;
    transition: .5s;
  }
  
  .question-section form .sendbtn:hover::after,
  .question-section form .sendbtn:hover::before {
    width: 100%;
    height: calc(100% - 2px);
  }
  
  .question-section form .sendbtn:hover::before {
    left: 0;
  }
  
  .question-section form .sendbtn:hover::after {
    right: 0;
  }

  footer {
    position: relative;
    padding: 20px 0;
    padding-top: 80px;
    background: #181919;
    color: #fff;
    font-family: "Open Sans", sans-serif;
  }
  
  footer .top .row {
    display: flex;
    justify-content: space-between;
  }
  
  footer .top img {
    max-width: 200px;
  }
  
  footer .top .fmenu {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: 20px;
  }
  
  footer .top .fmenu li {
    margin: 0 10px;
  }
  
  footer .top .fmenu li a {
    font-family: "Open Sans", sans-serif;
    color: #898989;
    text-decoration: none;
    transition: 0.5s;
  }
  
  footer .top .fmenu li a:hover {
    color: red;
  }
  
  footer .top .social {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  footer .top .social li {
    margin: 0 5px;
  }
  
  footer .top .social li img {
    width: 30px;
    height: 30px;
  }
  
  footer .top .time {
    color: #898989;
    margin-left: 100px;
  }
  
  footer .top .time a {
    font-family: "Open Sans", sans-serif;
    color: red;
    text-decoration: none;
  }
  
  footer .bottom {
    display: flex;
    justify-content: space-between;
    color: #898989;
  }
  
  footer .bottom .row {
    width: 100%;
  }
  
  footer .bottom .row .col-3 {
    width: 35%;
  }
  
  footer .bottom .row .col-9 {
    width: 65%;
  }
  
  footer .bottom .uslugi {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-right: 30px;
  }
  
  footer .bottom .uslugi li {
    margin: 5px 0;
  }
  
  footer .bottom .uslugi li a {
    font-family: "Open Sans", sans-serif;
    color: #898989;
    text-decoration: none;
    transition: 0.5s;
  }
  
  footer .bottom .uslugi li a:hover {
    color: red;
  }
  
  footer .bottom .uslugi li:first-child a {
    color: red;
  }
  
  footer .bottom .footer-icons {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  
  footer .bottom .footer-icons .footer__card {
    margin: 0 15px;
  }
  
  footer .bottom .footer__icon {
    margin-bottom: 10px;
    width: 30px;
    height: 29px;
    background-size: 100% 100%;
  }
  
  footer .bottom .footer__icon-idea {
    background: url(../img/idea.svg);
  }
  
  footer .bottom .footer__icon-check {
    background: url(../img/check.svg);
  }
  
  footer .bottom .footer__icon-second {
    width: 29px;
    background: url(../img/second.svg);
  }
  
  footer .bottom .footer__icon-reward {
    background: url(../img/reward.svg);
  }
  
  footer .bottom .policy-wrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  
  footer .bottom .reting-wrap {
    margin-left: 15px;
  }
  
  footer .bottom .reting {
    display: flex;
    align-items: flex-end;
    color: red;
    font-weight: 900;
    font-size: 42px;
    line-height: 0.8;
  }
  
  footer .bottom .reting img {
    margin-left: 10px;
    max-width: 135px;
  }
  
  footer .bottom .footer__content {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  
  footer .bottom .footer__content.google {
    font-size: 13px;
  }
  
  footer .bottom .footer__policy {
    width: 325px;
    display: flex;
    align-items: flex-end;
    margin-left: 200px;
    font-size: 15px;
  }
  
  .container {
    position: relative;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
  }
  
  .row {
    display: flex;
    flex-wrap: wrap;
  }

  @media screen and (min-width:576px) {
    .container {
      max-width: 540px;
    }
  }

  @media screen and (min-width:768px) {
    .container {
      max-width: 720px;
    }
  }

  @media screen and (min-width:992px) {
    .container {
      max-width: 960px;
    }
  }
  
  @media screen and (min-width:1200px) {
    .container {
      max-width: 1140px;
    }
  }
  
  @media screen and (min-width:1300px) {
    .container {
      max-width: 1220px;
    }
  }
  
  @media screen and (max-width:768px) {
    header .top-line .container {
      display: flex;
      justify-content: space-between;
    }
  
    header .top-line .container a {
      color: #fff;
    }
  
    header .top-line .container a svg {
      width: 20px;
      height: 20px;
    }
  
    header .top-line .container .right {
      display: none;
    }
  
    header .navbar {
      padding: 8px 0;
    }
  
    header .navbar .logo img {
      max-width: 100px;
    }
  
    header .navbar .number a {
      font-size: 16px;
    }
  
    header .navbar .hidemenu .menu-wrap {
      padding-left: 30px;
    }
  
    header .navbar .hidemenu .menu-wrap ul.menu-ul .menu-li.parent ul {
      position: relative;
      display: block;
      padding-left: 10px;
      left: 0;
    }
  
    header .navbar .hidemenu .menu-wrap ul.menu-ul .menu-li.parent ul li a {
      font-size: 15px;
    }
  
    main .slide-section .time-img-desk {
      display: none;
    }
  
    main .slide-section .time-img-mob {
      display: block;
      position: absolute;
    }
  
    main .slide-section .time-podtext {
      display: none;
    }
  
    main .slide-section .time-maintext {
      font-size: 1.5em;
    }
  
    main .slide-section .abs {
      padding-top: 135px;
      text-align: center;
    }
  
    main .slide-section .abs .container {
      flex-flow: row wrap;
      justify-content: center;
    }
  
    main .slide-section .lefmain {
      width: 95%;
      padding: 3px;
    }
  
    main .slide-section .form {
      margin-top: 135px;
      width: 100%;
      padding: 15px;
    }
  
    main .slide-section .form form .message {
      font-size: 16px;
    }
  
    main .services-section h2 {
      font-size: 22px;
    }
  
    main .services-section .services-inner {
      display: block;
    }
  
    main .services-section .services-inner .service {
      display: flex;
      flex-flow: column;
      justify-content: flex-end;
      width: 100%;
      height: 280px;
      margin: 5px 0;
    }
  
    main .icons-section .icons-inner {
      display: flex;
      flex-flow: row wrap;
    }
  
    main .icons-section .icons-inner .icon {
      width: calc(50% - 15px);
      margin: 20px 7.5px;
    }
  
    main .text-section .bottom,
    main .text-section .upper {
      display: block;
    }
  
    main .text-section .bottom .left,
    main .text-section .bottom .right,
    main .text-section .upper .left,
    main .text-section .upper .right {
      width: 100%;
    }
  
    main .primer-section {
      padding-top: 40px;
    }
  
    main .primer-section .shadowtext {
      display: none;
    }
  
    main .primer-section h2 {
      font-size: 24px;
      margin-bottom: 10px;
    }
  
    main .primer-section h2 a {
      font-size: 14px;
      margin-top: 0;
    }
  
    main .primer-section .primer-inner .primer {
      width: calc(50% - 15px);
      margin: 10px 7.5px;
    }
  
    main .news-section .shadowtext {
      display: none;
    }
  
    main .news-section h2 {
      font-size: 20px;
      margin-bottom: 10px;
    }
  
    main .news-section h2 a {
      font-size: 14px;
      margin-top: -8px;
    }
  
    main .news-section .news-inner {
      display: block;
    }
  
    main .news-section .news-inner .news {
      width: 100%;
    }
  
    main .question-section h2 {
      font-size: 30px;
    }
  
    main .question-section form .sendbtn {
      margin-right: 0;
    }
  
    footer .top img {
      width: 100%;
      max-width: 100%;
    }
  
    footer .top .fmenu {
      display: none;
    }
  
    footer .top .social {
      margin-left: 0;
      margin-top: 10px;
      float: left;
    }
  
    footer .top .social img {
      width: 40px;
      height: 40px;
    }
  
    footer .top .time {
      width: 50%;
      float: left;
      margin: 0;
    }
  
    footer .top .time a {
      font-size: 18px;
    }
  
    footer .bottom .row {
      display: block;
    }
  
    footer .bottom .row .col-3,
    footer .bottom .row .col-9 {
      width: 100%;
    }
  
    footer .bottom .row .col-3 .policy-wrap,
    footer .bottom .row .col-9 .policy-wrap {
      display: block;
    }
  
    footer .bottom .row .col-3 .footer-icons,
    footer .bottom .row .col-9 .footer-icons {
      display: none;
    }
  
    footer .bottom .row .col-3 .reting-wrap,
    footer .bottom .row .col-9 .reting-wrap {
      margin: 0;
      margin-top: 10px;
      text-align: center;
    }
  
    footer .bottom .row .col-3 .reting-wrap .reting,
    footer .bottom .row .col-9 .reting-wrap .reting {
      width: 100%;
      justify-content: center;
    }
  
    footer .bottom .row .col-3 .reting-wrap .footer__content,
    footer .bottom .row .col-9 .reting-wrap .footer__content {
      width: 100%;
    }
  
    footer .bottom .row .col-3 .footer__policy,
    footer .bottom .row .col-9 .footer__policy {
      display: block;
      text-align: center;
      margin: 0;
      margin-top: 10px;
      width: 100%;
    }
  }

  .widget-area {
    width: calc(20% - 10px);
    margin-right: 10px;
    float: left;
    padding-top: 250px;
    padding-bottom: 40px;
    background: #000;
    color: #fff;
  }
  
  .widget-area .wc-block-product-categories-list-item {
    margin: 4px 0;
    font-family: sans-serif;
    font-size: 15px;
  }
  
  .widget-area .widget-title {
    color: #fff!important;
  }
  
  .widget-area .wc-block-product-categories-list-item a,
  .widget-area .woocommerce-widget-layered-nav-list__item a {
    color: red!important;
    text-decoration: none!important;
  }
  
  .widget-area .wc-block-product-categories-list-item .count,
  .widget-area .woocommerce-widget-layered-nav-list__item .count {
    display: none;
  }
  
  .widget-area ul {
    padding: 0;
    list-style: none;
  }
  
  .content-area {
    width: 80%;
    float: right;
    padding-top: 120px;
    padding-bottom: 40px;
    background: #000;
  }
  
  .content-area .woocommerce-breadcrumb {
    color: #fff;
  }
  
  .content-area .woocommerce-breadcrumb a {
    color: #c7c7c7;
  }
  
  .content-area .woocommerce-result-count {
    color: #c7c7c7;
  }
  
  .content-area .woocommerce-ordering select {
    border: 1px solid #fff;
    background: 0 0;
    color: #fff;
    padding: 3px 5px;
  }
  
  .content-area .woocommerce-ordering select option {
    color: #000;
  }
  
  .content-area .products li.product {
    padding: 10px!important;
    box-shadow: 0 0 8px 0 rgba(255, 255, 255, .35);
    transition: .3s;
  }
  
  .content-area .products li.product h2 {
    color: #fff;
    font-family: sans-serif;
    font-weight: 400;
    font-size: 15px;
  }
  
  .content-area .products li.product .price {
    text-align: center;
    color: #e31e24!important;
    font-weight: 700!important;
    font-size: 20px!important;
  }
  
  .content-area .products li.product .button {
    width: 100%;
    background: #e31e24;
    color: #000;
    text-align: center;
  }
  
  .content-area .products li.product:hover {
    box-shadow: 0 0 8px 0 #fff;
  }
  
  .content-area .page-numbers {
    color: #fff;
  }
  
  .content-area .page-numbers .current {
    color: #000!important;
  }
  
  .content-area .page-numbers a {
    color: #fff;
    transition: .3s;
  }
  
  .content-area .page-numbers a:hover {
    color: #000!important;
  }
  
  body.single-product aside {
    display: none;
  }
  
  body.single-product .content-area {
    width: 100%;
    float: none;
    color: #fff;
  }
  
  body.single-product .content-area .product_title.entry-title {
    color: #e31e24!important;
  }
  
  body.single-product .content-area .single_add_to_cart_button {
    background: #e31e24;
    color: #fff;
    padding: 13.5px 15px;
    width: 100%;
    max-width: 250px;
    border-radius: 0!important;
    border: 1px solid #e31e24;
    transition: .3s;
  }
  
  body.single-product .content-area .single_add_to_cart_button:hover {
    background: #fff;
    color: #e31e24;
  }
  
  body.single-product .content-area .input-text.qty.text {
    width: 65px;
    height: 45px;
    text-align: center;
  }
  
  body.single-product .content-area p.price,
  body.single-product .content-area span.price {
    color: #fff!important;
    font-size: 24px!important;
  }
  
  body.single-product .content-area .product_meta a {
    color: #e31e24!important;
    text-decoration: none;
  }
  
  body.single-product .content-area #tab-description h2 {
    color: #e31e24;
  }
  
  body.single-product .content-area .tabs.wc-tabs .active {
    color: #000;
  }
  
  body.single-product .content-area p.stars a {
    color: #e31e24!important;
  }

  body.woocommerce-cart main {
    background: #181919;
    padding-top: 50px;
  }
  
  body.woocommerce-cart table.shop_table,
  body.woocommerce-cart table.shop_table td {
    border-color: #fff!important;
  }
  
  body.woocommerce-cart .input-text.qty.text {
    width: 65px;
    height: 45px;
    text-align: center;
  }
  
  body.woocommerce-cart .checkout-button {
    background: #e31e24!important;
    color: #fff;
    border: 1px solid #e31e24;
    transition: .3s;
  }
  
  body.woocommerce-cart .checkout-button:hover {
    background: #fff!important;
    color: #e31e24!important;
  }

  body.woocommerce-checkout main {
    background: #181919;
    padding-top: 50px;
  }
  
  body.woocommerce-checkout .col-1,
  body.woocommerce-checkout .col-2 {
    width: 100%!important;
    float: none!important;
  }
  
  body.woocommerce-checkout #customer_details {
    width: 48%;
    float: left!important;
  }
  
  body.woocommerce-checkout #order_review {
    width: 48%!important;
    float: right;
  }
  
  body.woocommerce-checkout #order_review table.shop_table,
  body.woocommerce-checkout #order_review table.shop_table td,
  body.woocommerce-checkout #order_review table.shop_table th {
    border-color: #fff!important;
  }
  
  body.woocommerce-checkout #payment {
    background: 0 0!important;
  }
  
  body.woocommerce-checkout #place_order {
    background: #e31e24!important;
    color: #fff;
    border: 1px solid #e31e24;
    transition: .3s;
  }
  
  body.woocommerce-checkout #place_order:hover {
    background: #fff!important;
    color: #e31e24!important;
  }
  
  
  

@media screen and (max-width:768px) {
    .widget-area {
        position: fixed;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        float: none;
        background: #000;
        color: #fff;
        overflow: hidden;
        z-index: 9999;
        overflow-y: scroll;
        transition: .3s;
    }
      
    .widget-area.open {
        width: 60%;
        padding: 10px;
    }
      
      .widget-area .wc-block-product-categories-list-item {
        margin: 4px 0;
        font-family: sans-serif;
        font-size: 15px;
      }
      
      .widget-area .widget-title {
        color: #fff!important;
      }
      
      .widget-area .wc-block-product-categories-list-item a,
      .widget-area .woocommerce-widget-layered-nav-list__item a {
        color: red!important;
        text-decoration: none!important;
      }
      
      .widget-area .wc-block-product-categories-list-item .count,
      .widget-area .woocommerce-widget-layered-nav-list__item .count {
        display: none;
      }
      
      .widget-area ul {
        padding: 0;
        list-style: none;
      }

      .content-area {
        width: 100%;
        float: none;
        padding-top: 80px;
        padding-bottom: 40px;
        background: #000;
      }
      
      .content-area .btn.filter {
        width: 100%;
        padding: 5px 0;
        text-align: center;
        text-transform: uppercase;
        background: #e31e24;
        color: #fff;
        font-family: sans-serif;
        margin-bottom: 10px;
      }
      
      .content-area .woocommerce-breadcrumb {
        color: #fff;
      }
      
      .content-area .woocommerce-breadcrumb a {
        color: #c7c7c7;
      }
      
      .content-area .woocommerce-result-count {
        color: #c7c7c7;
      }
      
      .content-area .woocommerce-ordering select {
        border: 1px solid #fff;
        background: 0 0;
        color: #fff;
        padding: 3px 5px;
      }
      
      .content-area .woocommerce-ordering select option {
        color: #000;
      }
      
      .content-area .products li.product {
        padding: 10px!important;
        box-shadow: 0 0 8px 0 rgba(255,255,255,.35);
        transition: .3s;
      }
      
      .content-area .products li.product h2 {
        color: #fff;
        font-family: sans-serif;
        font-weight: 400;
        font-size: 15px;
      }
      
      .content-area .products li.product .price {
        text-align: center;
        color: #e31e24!important;
        font-weight: 700!important;
        font-size: 20px!important;
      }
      
      .content-area .products li.product .button {
        width: 100%;
        background: #e31e24;
        color: #000;
        text-align: center;
      }
      
      .content-area .products li.product:hover {
        box-shadow: 0 0 8px 0 #fff;
      }
      
      .content-area .page-numbers {
        color: #fff;
      }

      .content-area .page-numbers .current {
        color: #000 !important;
      }
    
      .content-area .page-numbers a {
        color: #fff;
        transition: .3s;
      }
    
      .content-area .page-numbers a:hover {
        color: #000 !important;
      }
    
    
      body.single-product aside {
        display: none;
    }
    
    body.single-product .content-area {
        width: 100%;
        float: none;
        color: #fff;
    }
    
    body.single-product .content-area .product_title.entry-title {
        color: #e31e24 !important;
        font-size: 20px !important;
    }
    
    body.single-product .content-area .single_add_to_cart_button {
        background: #e31e24;
        color: #fff;
        padding: 13.5px 15px;
        width: 100%;
        max-width: 200px;
        border-radius: 0 !important;
        border: 1px solid #e31e24;
        transition: .3s;
    }
    
    body.single-product .content-area .single_add_to_cart_button:hover {
        background: #fff;
        color: #e31e24;
    }
    
    body.single-product .content-area .input-text.qty.text {
        width: 65px;
        height: 45px;
        text-align: center;
    }
    
    body.single-product .content-area p.price,
    body.single-product .content-area span.price {
        color: #fff !important;
        font-size: 24px !important;
    }
    
    body.single-product .content-area .product_meta a {
        color: #e31e24 !important;
        text-decoration: none;
    }
    
    body.single-product .content-area #tab-description h2 {
        color: #e31e24;
    }
    
    body.single-product .content-area .tabs.wc-tabs li {
        padding: 0 10px !important;
    }
    
    body.single-product .content-area .tabs.wc-tabs .active {
        color: #000;
    }
    
    body.single-product .content-area p.stars a {
        color: #e31e24 !important;
    }
    
    body.woocommerce-cart main {
        background: #181919;
        padding-top: 0;
    }
    
    body.woocommerce-cart table.shop_table {
        border-color: #fff !important;
    }
    
    body.woocommerce-cart table.shop_table td {
        border-color: #fff !important;
    }
    
    body.woocommerce-cart table.shop_table .input-text.qty.text {
        width: 65px;
        height: 45px;
        text-align: center;
    }
    
    body.woocommerce-cart .checkout-button {
        background: #e31e24 !important;
        color: #fff;
        border: 1px solid #e31e24;
        transition: .3s;
    }
    
    body.woocommerce-cart .checkout-button:hover {
        background: #fff !important;
        color: #e31e24 !important;
    }
    
    body.woocommerce-checkout main {
        background: #181919;
        padding-top: 0;
    }
    
    body.woocommerce-checkout .col-1,
    body.woocommerce-checkout .col-2 {
        width: 100% !important;
        float: none !important;
    }
    
    body.woocommerce-checkout #customer_details {
        width: 100%;
        float: none !important;
    }
    
    body.woocommerce-checkout #order_review {
        width: 100% !important;
        float: none;
    }
    
    body.woocommerce-checkout #order_review table.shop_table {
        border-color: #fff !important;
    }
    
    body.woocommerce-checkout #order_review table.shop_table td,
    body.woocommerce-checkout #order_review table.shop_table th {
        border-color: #fff !important;
    }
    
    body.woocommerce-checkout #payment {
        background: 0 0 !important;
    }
    
}