﻿/*
Theme Name: NFS Service
Theme URI: 
Description: 
Version: 1.0
Author: Maxim Brilliant
Author URI: https://www.instagram.com/maksimbrilliant/
*/


@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
   
  
  

   
html {
    margin: 0 auto;
    overflow-x: hidden !important;
}

* {
	padding: 0; margin:0;
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	outline:none !important;
}
   
body {
    margin: 0 auto;
    padding: 0;
    overflow-x: hidden !important;
}

p {
    font-size: 16px;
    line-height: 160%;
	color:#000;
}

a {
	text-decoration:none;
	outline:none !important;
}

a:hover {
	text-decoration:none;
}

a:active {
	text-decoration:none;
}

input[type="text"]:focus { outline: none; }
input[type="email"]:focus { outline: none; }
textarea[type="text"]:focus { outline: none; }
input[type="button"]:focus { outline: none; }

/*
	transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
	
	-moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg); 
    transform: rotate(360deg);
*/


.page_loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999999999999;
    background: #213356;
    align-items: center;
    justify-content: center;
    display: flex;
	text-align:center;
	transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}

.page_loader.hidden_loader {
    opacity: 0;
    visibility: hidden;
	transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}

.page_loader span {
    color: #647493;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    display: table;
    margin: 0 auto;
    margin-top: 20px;
    animation: pulsar 1.5s linear infinite;
}

.page_loader img {
    max-width: 250px;
}

@keyframes rotate {
  from {
    transform: rotate(-360deg);
  }
}

@keyframes pulsar {
  0% {
    opacity: 1; }
	50% {
    opacity: 0.5; } 
	100% {
    opacity: 1; } 
}

.container {
    width: 100% !important;
    max-width: 1200px;
}

.header__nav {
    background: #3266CC;
    padding: 24px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
	transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}

.header__nav.header_fixed {
    padding: 10px 0px;
	transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}

.header__nav.header_fixed .header__nav__flex_logo img {
    max-width: 200px;
	transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}

.header {
    margin-top: 100px;
    height: 100%;
    position: relative;
}

.header:after {
    content: '';
    width: 100%;
    position: absolute;
    height: 100%;
    background: rgb(0 0 0 / 60%);
    top: 0;
}

.header .container {
    height: 100%;
}

.header_container {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 120px 0px;
}

.header_container__mobile_btn a {
	text-decoration:none !important;
}

.header__nav__flex_logo img {
    max-width: 270px;
    width: 100%;
    height: auto;
	transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}

.header__nav__flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__nav__flex_social svg {
    width: 35px;
    height: 35px;
    display: table;
	opacity:1;
	transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}

.header__nav__flex_social svg:hover {
	opacity:0.8;
	transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}

.header__nav__flex_social {
    display: flex;
    gap: 10px;
}

.header__nav__flex_social a {
    display: table;
}

.header__nav__flex_lang img {
    width: 30px;
    height: auto;
}

.header__nav__flex_soc_lang {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav.header__nav__flex_nav a {
    padding: 13px 20px;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    text-decoration: none !important;
    position: relative;
}


nav.header__nav__flex_nav a:after {
    content: '';
    width: 0%;
    height: 2px;
    position: absolute;
    background: #fff;
    left: 0;
    bottom: 0;
	transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}

nav.header__nav__flex_nav a:hover:after {
    width: 100%;
	transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}

nav.header__nav__flex_nav ul {
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

.header_container h1 {
    font-weight: 600;
    color: #fff;
    font-size: 45px;
    margin: 0;
    line-height: 120%;
    max-width: 653px;
    margin-bottom: 35px;
}

.header_container p {
    font-weight: 500;
    color: #fff;
    font-size: 18px;
    margin: 0;
    max-width: 740px;
}

.header_container h2 {
    font-weight: 500;
    color: #fff;
    font-size: 18px;
    margin: 0;
    max-width: 740px;
}

.header_container h1 span {
    font-weight: 600;
    color: #FF7A00 !important;
}

.header_container h1 font {
    font-weight: 600;
    color: #FF7A00 !important;
}

.header_container h2 span {
    font-weight: 600;
    color: #FF7A00 !important;
}

.header_container h2 font {
    font-weight: 600;
    color: #FF7A00 !important;
}

.header_container h3 span {
    font-weight: 600;
    color: #FF7A00 !important;
}

.header_container h3 font {
    font-weight: 600;
    color: #FF7A00 !important;
}

.header_container h4 span {
    font-weight: 600;
    color: #FF7A00 !important;
}

.header_container h4 font {
    font-weight: 600;
    color: #FF7A00 !important;
}

.header_container h5 span {
    font-weight: 600;
    color: #FF7A00 !important;
}

.header_container h5 font {
    font-weight: 600;
    color: #FF7A00 !important;
}

.header_container h6 span {
    font-weight: 600;
    color: #FF7A00 !important;
}

.header_container h6 font {
    font-weight: 600;
    color: #FF7A00 !important;
}

.header_container li {
    font-weight: 400;
    color: #fff;
    font-size: 16px;
    margin: 0;
    list-style: none;
    position: relative;
    padding-left: 50px;
    max-width: 200px;
}

.header_container li:after {
    content: '';
    width: 35px;
    height: 35px;
    background: url(img/checkout.svg) no-repeat center;
    position: absolute;
    background-size: 70%;
    border: 1px solid rgb(255 255 255 / 60%);
    border-radius: 100%;
    padding: 0px;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
}

.header_container ul {
    margin: 0;
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.header_container_btn {
    margin-top: 35px;
}

.button_style {
    font-weight: 500;
    color: #fff;
    font-size: 15px;
    background: #FF7A00;
    display: table;
	border:none;
	cursor:pointer;
    padding: 16px 15px;
    border-radius: 5px;
	text-align:center;
	width:100%;
	transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}

.button_style:hover {
	background: #e76e00;
	transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
} 

.header_container_btn {
    margin-top: 35px;
    max-width: 220px;
}

.section_container {
    margin-top: 60px;
}

.section_title h1 {
    font-size: 30px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.section_title h2 {
    font-size: 30px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.section_title h4 {
    font-size: 30px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.section_title h5 {
    font-size: 30px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.section_title h6 {
    font-size: 30px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.section_title h3 {
    font-size: 30px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.section_title p {
    font-size: 18px;
    font-weight: 400;
    color: #000;
    margin: 0;
    margin-top: 10px;
}

section {
    padding: 80px 0;
}

section.services {
    background: #eee;
}

.services__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 5px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.services__grid_sub_bg {
    background: rgb(50 102 204);
    padding: 15px 0px;
    position: relative;
}

.services__grid_sub_bg:after {
    content: '';
    width: 100%;
    height: 100%;
    background: url(img/road.jpg) no-repeat center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.05;
}

.services__grid_box:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: url(img/header.jpg) no-repeat center;
    background-size: cover;
    top: 0;
    left: 0;
    opacity: 0.02;
}

.services__grid_box * {
    position: relative;
    z-index: 1;
}

.services__grid_box img {
    height: auto;
    position: absolute;
    max-height: 180px;
    left: 40px;
    bottom: 35px;
}

.services__grid_box {
    background: #151417;
    padding: 25px;
    height: 100%;
    position: relative;
    padding-bottom: 210px;
    overflow: hidden;
    border-radius: 5px;
    padding-top: 35px;
}

.button_style_white {
    display: table;
    border: 2px solid #747474;
    color: #747474;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 5px;
    width: 100%;
	cursor:pointer;
    text-align: center;
	transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}

.button_style_white:hover {
    color: #b3b0b0;
	background:#747474;
	transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}

.services__grid_btn {
    position: absolute;
    bottom: 0;
    left: 50%;
	max-width:150px;
	width:100%;
	z-index:1;
    transform: translate(-50%, 0);
    opacity: 0;
	transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}

.services__grid_box:hover .services__grid_btn {
	bottom:15px;
    opacity: 1;
	transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}

.services__grid_btn a {
	text-decoration:none !important;
}

.services__grid_box h4 {
    font-weight: 500;
    color: #ff7a00;
    line-height: 160%;
    margin: 0;
    margin-bottom: 10px;
    font-size: 18px;
    text-transform: uppercase;
}

.services__grid_box h4 span {
    font-weight: 500;
    color: #fff;
}

.services__grid_box p {
    font-weight: 400;
    font-size: 16px;
    color: #505050;
    line-height: 160%;
    margin: 0;
}

.services__grid_sub_box img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
	transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}

.services__grid_sub {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 250px);
    grid-gap: 5px;
    position: relative;
    margin-bottom: 5px;
}

.services__grid_box:before {
    width: 90%;
    height: 83%;
    position: absolute;
    content: '';
    background: #3266cc;
    left: 10px;
    top: 45px;
    border-radius: 5px;
    opacity: 0.05;
}

.services__grid_sub_box:hover .services__grid_btn {
	bottom:15px;
    opacity: 1;
	transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}

.services__grid_sub_box .button_style_white {
    color: #dfdfdf;
    border-color: #dfdfdf;
}

.services__grid_sub_box .button_style_white:hover {
    background: #dfdfdf;
	color:#747474;
}

.services__grid_sub>div:nth-child(1) {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 2;
    overflow: hidden;
}

.services__grid_sub>div:nth-child(2) {
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 2;
    overflow: hidden;
}

.services__grid_sub>div:nth-child(3) {
    grid-column-start: 5;
    grid-column-end: 7;
    grid-row-start: 1;
    grid-row-end: 2;
    overflow: hidden;
}

.services__grid_sub>div:nth-child(4) {
    grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: 2;
    grid-row-end: 3;
    overflow: hidden;
}

.services__grid_sub>div:nth-child(5) {
    grid-column-start: 4;
    grid-column-end: 7;
    grid-row-start: 2;
    grid-row-end: 3;
    overflow: hidden;
}

.services__grid_sub_box {
    position: relative;
    height: 100%;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.services__grid_sub_box_cont {
    position: relative;
    z-index: 1;
    padding: 0 75px;
}

.services__grid_sub_box_cont h4 {
    font-weight: 500;
    color: #fff;
    line-height: 160%;
    margin: 0;
    margin-bottom: 50px;
    margin-top: 126px;
    font-size: 18px;
    text-transform: uppercase;
    text-align: center;
	transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}

.services__grid_sub_box_cont h1 {
	font-size:18px;
}

.services__grid_sub_box_cont h2 {
	font-size:18px;
}

.services__grid_sub_box_cont h3 {
	font-size:18px;
}

.services__grid_sub_box_cont h4 {
	font-size:18px;
}

.services__grid_sub_box_cont h5 {
	font-size:18px;
}

.services__grid_sub_box_cont h6 {
	font-size:18px;
}

.services__grid_sub_box_cont p {
    font-weight: 400;
    font-size: 16px;
    color: #dfdfdf;
    line-height: 160%;
    margin: 0;
    text-align: center;
    min-height: 76px;
    visibility: hidden;
    opacity: 0;
	transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}

.services__grid_sub_box:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: radial-gradient(#1b1c23, #080708);
    opacity: 0.75;
}

.services__grid_sub_box:hover .services__grid_sub_box_cont h4 {
	margin-top:0;
	margin-bottom:10px;
	transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}

.services__grid_sub_box:hover .services__grid_sub_box_cont p {
	opacity:1;
	visibility:visible;
	min-height:0;
	transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}

.services__grid_sub_box:hover img {
    filter: blur(4px);
	transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}

.services__grid_sub_box_cont.no_p h4 {
    margin: 0 !important;
}

.services__grid_end {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
    height: 250px;
    margin-top: 15px;
}

.services__grid_end a {
	text-decoration:none !important;
}

.services__grid_end .services__grid_sub_box_cont {
    padding: 0 25px;
}

.services__grid_end .services__grid_sub_box {
    border-bottom: 5px solid #3266cc;
}

section.warranty {
    background: #ff7a00;
    position: relative;
    overflow: hidden;
}

.warranty_container {
    position: relative;
    z-index: 1;
}

.section_title.white * {
    color: #fff;
}

.section_title font {
    font-weight: 600;
    color: #ff7a00 !important;
}

.section_title span {
    font-weight: 600;
    color: #ff7a00 !important;
}

.warranty_container__content_plash_box {
    background: rgb(255 255 255);
    position: relative;
    display: table;
    border-radius: 5px;
    padding: 15px 25px;
    max-width: 330px;
}

.warranty_container__content_plash_box h1 {
    font-weight: 500;
    color: #000000;
    line-height: 160%;
    margin: 0;
    font-size: 18px;
    text-transform: uppercase;
}

.warranty_container__content_plash_box h2 {
    font-weight: 500;
    color: #000000;
    line-height: 160%;
    margin: 0;
    font-size: 18px;
    text-transform: uppercase;
}

.warranty_container__content_plash_box h3 {
    font-weight: 500;
    color: #000000;
    line-height: 160%;
    margin: 0;
    font-size: 18px;
    text-transform: uppercase;
}

.warranty_container__content_plash_box h4 {
    font-weight: 500;
    color: #000000;
    line-height: 160%;
    margin: 0;
    font-size: 18px;
    text-transform: uppercase;
}

.warranty_container__content_plash_box h5 {
    font-weight: 500;
    color: #000000;
    line-height: 160%;
    margin: 0;
    font-size: 18px;
    text-transform: uppercase;
}

.warranty_container__content_plash_box h6 {
    font-weight: 500;
    color: #000000;
    line-height: 160%;
    margin: 0;
    font-size: 18px;
    text-transform: uppercase;
}

.warranty_container__content_plash_box p {
    font-weight: 400;
    font-size: 16px;
    color: #505050;
    line-height: 160%;
    margin: 0;
}

.warranty_container__content_plash {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 700px;
}

.warranty_container__content_plash>div:nth-child(3) .warranty_container__content_plash_box {
    margin-left: 84px;
    position: relative;
}

.warranty_container__content_plash>div:nth-child(3) .warranty_container__content_plash_box:after {
    content: '';
    width: 100px;
    height: 100%;
    position: absolute;
    background: linear-gradient(90deg, rgb(255 255 255 / 0%), #ffffff);
    top: 0;
    left: -115px;
    border-radius: 5px;
}

.warranty_container__content_plash>div:nth-child(3) .warranty_container__content_plash_box:before {
    content: '';
    width: 200px;
    height: 100%;
    position: absolute;
    background: linear-gradient(-90deg, rgb(255 255 255 / 0%), #ffffff);
    top: 0;
    right: -215px;
    border-radius: 5px;
}

.warranty_container__content .section_title h1 {
    max-width: 560px;
}
.warranty_container__content .section_title h2 {
    max-width: 560px;
}
.warranty_container__content .section_title h3 {
    max-width: 560px;
}
.warranty_container__content .section_title h4 {
    max-width: 560px;
}
.warranty_container__content .section_title h5 {
    max-width: 560px;
}
.warranty_container__content .section_title h6 {
    max-width: 560px;
}


.warranty_plash {
    width: 70%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.warranty_plash:before {
    content: '';
    width: 102%;
    height: 102%;
    background: url(img/warranty.jpg) no-repeat center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: -1%;
    opacity: 1;
    filter: blur(4px);
}

.warranty_plash:after {
    background: radial-gradient(#1b1c23, #080708);
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.6;
}

.warranty_icon img {
    max-width: 500px;
}

.warranty_icon {
    position: absolute;
    right: -75px;
    bottom: -20px;
    opacity: 0.05;
}

.warranty_container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.warranty_container__form {
    background: #fff;
    padding: 25px;
    padding-top: 35px;
    border-radius: 5px;
}

.form_box label {
    font-weight: 400;
    font-size: 14px;
    color: #505050;
    line-height: 160%;
    margin: 0;
    display: table;
}

.warranty_container__form h4 {
    font-weight: 600;
    color: #ff7a00;
    line-height: 160%;
    margin: 0;
    font-size: 18px;
    text-transform: uppercase;
    max-width: 330px;
    margin-bottom: 25px;
}

.input_style {
    width: 100%;
    height: 48px;
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid #d1d1d1;
    background: #fbfbfb;
	transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}

.input_style:focus {
    border: 1px solid #ff7a00;
	transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}

.form_box {
    margin-bottom: 20px;
}

.form_box:last-child {
    margin-bottom: 0px;
}

.company_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.company_grid__slider {
    width: 100%;
    height: 100%;
    position: relative;
}

section.company {
    padding: 0;
    position: relative;
}

.company_grid__slider img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.company_grid__slider:after {
    content: '';
    width: 100%;
    position: absolute;
    height: 100%;
    background: radial-gradient(#1b1c23, #080708);
    top: 0;
    left: 0;
    opacity: 0.6;
}

.company_grid__content {
    display: flex;
    justify-content: end;
}

.company_grid__content_box {
    max-width: 600px;
    padding: 15px;
    padding-right: 50px;
}

.company_grid__content_box_content_btn {
    max-width: 230px;
    margin-top: 35px;
}

.company_grid__content_box {
    max-width: 600px;
    padding: 50px 15px;
    padding-right: 50px;
}

.company_grid__content_box_content p {
    font-weight: 400;
    font-size: 16px;
    color: #505050;
    line-height: 160%;
    margin: 0;
    margin-bottom: 20px;
}

.height_full {
    height: 100%;
}

.company_logo {
    position: absolute;
    top: 20%;
    z-index: -1;
    opacity: 0.05;
}

.company_logo img {
    width: 600px;
}

.faq_grid__box_icon {
    margin-bottom: 20px;
}

.faq_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.faq_grid__box {
    padding: 25px;
    padding-top: 35px;
    height: 100%;
}

.faq_grid>div:nth-child(1) .faq_grid__box {
    background: #19181a;
}

.faq_grid>div:nth-child(2) .faq_grid__box {
    background: #ff7a00;
}

.faq_grid>div:nth-child(3) .faq_grid__box {
    background: #fdfdfd;
}

.faq_grid>div:nth-child(4) .faq_grid__box {
    background: #19181a;
}

.faq_grid>div:nth-child(6) .faq_grid__box {
    background: #fdfdfd;
}

.faq_grid>div:nth-child(5) .faq_grid__box {
    background: #ff7a00;
}

.faq_grid>div:nth-child(7) .faq_grid__box {
    background: #19181a;
}

.faq_grid>div:nth-child(8) .faq_grid__box {
    background: #ff7a00;
}

.faq_grid__box h4 {
    font-weight: 500;
    color: #000000;
    line-height: 160%;
    margin: 0;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.faq_grid__box_body p {
    font-weight: 400;
    font-size: 16px;
    color: #505050;
    line-height: 160%;
    margin: 0;
    margin-bottom: 20px;
}

.faq_grid>div:nth-child(1) .faq_grid__box h4 {
    color: #838383;
}

.faq_grid>div:nth-child(5) .faq_grid__box p {
    color: #1e0e00;
}

.faq_grid>div:nth-child(8) .faq_grid__box p {
	color: #1e0e00;
}

.faq_grid>div:nth-child(1) .faq_grid__box p {
    color: #838383;
}

.faq_grid>div:nth-child(4) .faq_grid__box h4 {
    color: #838383;
}

.faq_grid>div:nth-child(7) .faq_grid__box h4 {
    color: #838383;
}

.faq_grid>div:nth-child(4) .faq_grid__box p {
    color: #747474;
}

.faq_grid>div:nth-child(7) .faq_grid__box p {
    color: #838383;
}

.faq_grid>div:nth-child(2) .faq_grid__box p {
    color: #1e0e00;
}



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

.faq_btn {
    max-width: 230px;
    margin: 0 auto;
    margin-top: 60px;
}

.faq_grid__box_icon {
    margin-bottom: 20px;
    display: table;
    position: relative;
}

.faq_grid__box_icon svg {
    width: 60px;
    height: 60px;
    display: table;
}

.faq_grid__box_icon {
    margin-bottom: 20px;
    display: table;
    position: relative;
    width: 60px;
    height: 60px;
	z-index:1;
}


.faq_grid__box_icon img {
    width: 60px;
    height: 60px;
    display: table;
}

footer {
    background: #19181a;
}

.footer__flex_logo img {
    width: 100%;
    height: auto;
}

.footer__flex_logo {
    max-width: 200px;
}

.footer__flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    gap: 50px;
}

.footer__flex_contact {
    max-width: 195px;
}

.footer__flex_contact * {
    font-weight: 400;
    font-size: 14px;
    color: #747474;
    line-height: 160%;
    margin: 0;
    margin-bottom: 5px;
    display: table;
    display: flex;
    gap: 5px;
    text-decoration: none !important;
	transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}

.footer__flex_contact a:hover {
	color:#c7c5c5;
	transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}

.footer__flex_nav a {
    font-weight: 400;
    font-size: 14px;
    color: #747474;
    line-height: 160%;
    margin: 0;
    margin-bottom: 0;
    display: table;
	transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}

.footer__flex_nav a:hover {
	color:#c7c5c5;
	transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}

.footer__flex_nav ul {
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer__flex_contact img {
    margin: 0;
    width: 18px;
    height: 18px;
	margin-top:2px;
}

footer {
    padding-top: 50px;
}

.footer_copyright {
    padding: 15px 0px;
    background: #000;
}

.footer_copyright__flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
	gap:20px;
}

.footer_copyright__flex * {
    font-weight: 400;
    font-size: 14px;
    color: #747474;
    line-height: 160%;
    margin: 0;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0px;
    display: table;
    display: flex;
    gap: 15px;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}

.footer_copyright__flex a:hover {
	color:#c7c5c5;
	transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}

.header_container.in {
    padding: 60px 0px;
}

.header img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.company.in {
    padding: 80px 0;
}

.company_grid.in .company_grid__content_box {
    padding-left: 0;
}


.company_grid.in .company_grid__slider {
    border-radius: 5px;
    overflow: hidden;
}

section.company.in .company_logo {
    left: 0;
    bottom: 50px;
    top: auto;
}

.company_grid.in .company_grid__content_box_content p {
    position: relative;
    padding-left: 25px;
}

.company_grid.in .company_grid__content_box_content p:after {
    content: '';
    width: 20px;
    height: 20px;
    background: url(img/checkout.svg) no-repeat center;
    background-size: 100%;
    position: absolute;
    left: 0;
    top: 0px;
}

section.faq.bg {
    background: #eee;
}

.faq_grid__box_body.small_h4 h4 {
    margin: 0 !important;
    text-transform: inherit;
}

.pro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
    height: 250px;
    margin-top: 15px;
}

.pro__grid .services__grid_sub_box_cont p {
    opacity: 1;
    visibility: visible;
}

.pro__grid .services__grid_sub_box_cont {
    padding: 0 18px;
}

.pro__grid .services__grid_sub_box_cont p a {
    color: #ff7a00;
}

.services__grid_sub_box.center img {
    opacity: 0.1;
    filter: blur(0px) !important;
}

.services__grid_sub_box.center .services__grid_btn {
    opacity: 1;
    max-width: 200px;
    position: relative;
    bottom: 0 !important;
    margin-top: 15px;
}


body.admin-bar .header__nav {
    top: 32px;
}

.company_grid__content_box_box * {
    font-size: 16px;
    line-height: 180%;
    margin-bottom: 25px;
	color:#000;
}

section.single_page_container {
    position: relative;
}

section.single_page_container .company_logo {
    top: auto;
    bottom: 50px;
    left: 0;
}

.company_grid__content_box_box img {
    max-width:100%;
	height:auto;
}

.alignleft {
	float:left;
	margin-right:20px;
	margin-bottom:20px;
}

.alignright {
	float:right;
	margin-left:20px;
	margin-bottom:20px;
}

.company_grid__content_box_box li {
    margin-bottom: 0;
    margin-left: 25px;
}

h3.form_container_title {
    text-align: center;
    margin: 0;
    font-weight: 600;
    color: #000;
    margin: 15px 0;
}

.form_container_input_box {
    margin-top: 20px;
    margin-bottom: 20px;
}

p.form_container_sub_title {
    font-size: 15px;
    text-align: center;
    margin: 0;
}

.x-style {
    width: 30px !important;
    height: 30px !important;
    background: url(img/x2.svg) no-repeat center;
    background-size: 80%;
    font-size: 0 !important;
}

div#jGrowl {
    display: none !important;
}

ul#feedback-infolist strong {
    font-size: 18px;
    font-weight: 600;
}

@media (max-width:1199px) {
.header__nav__flex_logo img {
    max-width: 210px;
}
.header {
    margin-top: 88px;
}
.services__grid_sub {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
}
.services__grid_sub>div {
    grid-column-start: auto !important;
    grid-column-end: auto !important;
    grid-row-start: auto !important;
    grid-row-end: auto !important;
}
.services__grid_sub_box {
    min-height: 280px;
}
.services__grid_sub_box .services__grid_sub_box_cont h4 {
    margin-top: 0;
    margin-bottom: 10px;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}
.services__grid_sub_box .services__grid_sub_box_cont p {
    opacity: 1;
    visibility: visible;
    min-height: 0;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}
.services__grid_sub_box .services__grid_btn {
    bottom: 15px;
    opacity: 1;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}
.faq_grid {
    grid-template-columns: 1fr 1fr;
}
.services__grid_box .services__grid_btn {
    bottom: 15px !important;
    opacity: 1 !important;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}
}

@media (max-width:991px) {
.mobile_burger_cont {
    display: block !important;
}
.mobile_burger span {
    width: 30px;
    height: 2px;
    background: #fff;
    display: table;
    margin-bottom: 8px;
}
.mobile_burger span:last-child {
    margin-bottom: 0px;
}
nav.header__nav__flex_nav {
    position: fixed;
    right: -400px;
    top: 0;
    bottom: 0;
    background: #fff;
    width: 100%;
    max-width: 375px;
    padding: 50px 25px;
    box-shadow: 0 0 15px 0px rgb(0 0 0 / 20%);
	transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}
nav.header__nav__flex_nav.active_menu {
    right: 0px;
	transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}
.header_nav__shadow {
    position: fixed;
    background: rgb(0 0 0 / 50%);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
	visibility:hidden;
	opacity:0;
	transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}
.header_nav__shadow.active_shadow {
	visibility:visible;
	opacity:1;
	transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}
.header__nav__flex_nav_close {
    width: 40px;
    height: 40px;
    background: url(img/x2.svg) no-repeat center;
    position: absolute;
    background-size: 60%;
    left: 0;
    top: 0;
}
nav.header__nav__flex_nav ul {
    flex-direction: column;
    gap: 20px;
}
nav.header__nav__flex_nav a:after {
    background: #000;
}
nav.header__nav__flex_nav a {
    color: #000;
}
.services__grid {
    grid-template-columns: 1fr 1fr;
}
.services__grid_sub_box_cont {
    padding: 0 15px;
}
.warranty_container {
    flex-direction: column;
    gap: 50px;
}
.footer__flex {
    flex-wrap: wrap;
}
.pro__grid {
    grid-template-columns: 1fr;
	height:auto;
}
nav.header__nav__flex_nav {
    top: 32px;
}
}

@media (max-width:767px) {
.services__grid_end {
    grid-template-columns: 1fr;
    height: auto;
}
.services__grid_end .services__grid_sub_box_cont.no_p {
    padding-top: 50px;
    padding-bottom: 50px;
}
.company_grid {
    grid-template-columns: 1fr;
}
body.admin-bar .header__nav {
    top: 46px;
}
nav.header__nav__flex_nav {
    top: 46px;
}
}

@media (max-width:650px) {
.header_container ul {
    flex-direction: column;
    align-items: flex-start;
}
.header_container li {
    max-width: 100%;
}
.header_container {
    padding: 60px 0px;
}
.header_container h1 {
    font-size: 38px;
}
.services__grid_sub_box_cont {
    position: relative;
    z-index: 1;
    padding: 0 15px;
}
.services__grid_sub_box_cont {
    padding-top: 30px;
}
.footer_copyright__flex {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

}

@media (max-width:550px) {
.header__nav__flex_logo img {
    max-width: 200px;
}
.header {
    margin-top: 83px;
}
.header__nav__flex_soc_lang {
    gap: 20px;
}
.header__nav__flex_social svg {
    width: 30px;
    height: 30px;
}
.header_container h1 {
	font-size: 30px;
}
.header_container p {
    font-size: 15px;
}
.services__grid {
    grid-template-columns: 1fr;
}
.services__grid_sub {
    grid-template-columns: 1fr;
}
.services__grid_sub_box {
    min-height: auto;
}
.services__grid_sub_box_cont {
    padding-top: 30px;
    padding-bottom: 85px;
}
.warranty_plash {
    width: 100%;
    height: 70%;
}
.warranty_container__content_plash_box {
    padding: 15px;
    max-width: 100%;
}
.warranty_container__content_plash_box h1 {
    font-size: 16px;
}
.warranty_container__content_plash_box h2 {
    font-size: 16px;
}
.warranty_container__content_plash_box h3 {
    font-size: 16px;
}
.warranty_container__content_plash_box h4 {
    font-size: 16px;
}
.warranty_container__content_plash_box h5 {
    font-size: 16px;
}
.warranty_container__content_plash_box h6 {
    font-size: 16px;
}
.faq_grid {
    grid-template-columns: 1fr;
}
}

@media (max-width:450px) {
.header_container__mobile_btn {
    display: block !important;
    margin-bottom: 40px;
}
}

@media (max-width:420px) {
.header__nav__flex_social {
    display: none;
}
nav.header__nav__flex_nav.active_menu {
    max-width: 80%;
}
.header__nav__flex_social.mobile {
    display: flex !important;
    justify-content: center;
    margin-top: 20px;
	gap:0;
}
.header__nav__flex_social svg {
    width: 35px;
    height: 35px;
}
.header__nav__flex_social.mobile a {
    padding: 10px;
}
}

@media (max-width:375px) {}
































