@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200;300;400;600;700&display=swap');

@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost-Light.woff2") format("woff2"), url("../fonts/Jost-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost-Regular.woff2") format("woff2"), url("../fonts/Jost-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost-Italic.woff2") format("woff2"), url("../fonts/Jost-Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost-SemiBold.woff2") format("woff2"), url("../fonts/Jost-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost-Bold.woff2") format("woff2"), url("../fonts/Jost-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
	--blue: #598bfd;
	--indigo: #00328a;
	--purple: #8e44ad;
	--red: #e74c3c;
	--orange: #ffbc52;
	--yellow: #ffdb73;
	--green: #2ecc71;
	--teal: #27ae60;
	--cyan: #16a085;
	--white: #fff;
	--gray: #bdc3c7;
	--gray-light: #d9dcde;
	--gray-dark: #95a5a6;
	--primary: #0072bc;
	--secondary: #6c757d;
	--success: #54d98c;
	--info: #1abc9c;
	--warning: #e67e22;
	--danger: #c0392b;
	--lighter: #f6f5f8;
	--lighter-2: #f9fafa;
	--light: #f0eff3;
	--light-2: #f0eff3;
	--light-3: #efedf5;
	--light-4: #e0ddec;
	--dark: #343a40;
	--dark-blue: #1f2029;
	--darker: #141414;
	--black: #080808;
	--lx-1:#60d2b0;
	--lx-2:#ffcc48;
	--lx-2-3:#f9d25d;
	--lx-3: #ff5282;
	--lx-4: #a05fbb;
	--lx-5: #3ab4b5;
	--lx-6: #3e6acc;
	--lx-1-2:#55b799;
	--lx-2-2:#f4af0d;
	--lx-2-4:#f7f4e0;
	--lx-3-2: #d84a4a;
	--light-green: #afe6d6;
	--light-green-2: #fafffe;
	--light-green-3: #f4fbf9;
	--light-green-3-2: #f1fbf9;
	--light-red: #ffbfd1;
	--light-red-2: #fbf3f5;
	--light-yellow: #ffe6a6;
	--light-blue:#f1f6fb;
	--light-blue-2:#e9f0f7;
	--light-blue-3:#bfcfe0;
	--orange-2:#e16a5d;
	--orange-3:#de5c48;
	--blue-2:#72a0f3;
	--blue-3:#5c8fe2;
	--light-greens: #d7fff3;
	--light-yellows: #fff4d7;
	--light-reds: #ffd9e4;
	--light-blues:#d7e9ff;
	--new-red:#e52233;
}

/* Primary */

body{
    font-family: "Jost", "Arial", sans-serif;
	font-weight: 400;	
	font-size: 16px;
	line-height: 1.65;
	letter-spacing: 0.2px;
	color: var(--gray-dark);
	background-color: var(--white);
	overflow-x: hidden;
}
p{
	font-weight: 400;	
	font-size: 16px;
	line-height: 1.65;
    margin-bottom: 0.5rem;
	letter-spacing: 0.2px;
	color: var(--dark);
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6{
	margin-bottom: 0.5rem;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: 1px;
	color: var(--dark-blue);
}
h1, .h1 {
	font-size: 48px;
	line-height: 60px;
}
h2, .h2 {
	font-size: 36px;
	line-height: 46px;
}
h3, .h3 {
	font-size: 30px;
	line-height: 40px;
}
h4, .h4 {
	font-size: 24px;
	line-height: 32px;
}
h5, .h5 {
	font-size: 20px;
	line-height: 28px;
}
h6, .h6 {
	font-size: 17px;
	line-height: 24px;
}
::selection {
	color: var(--white);
	background-color: var(--primary);
}
::-moz-selection {
	color: var(--white);
	background-color: var(--primary);
}
mark{
	color: var(--white);
	background-color: var(--primary);
}
a:hover {
	text-decoration: none;
}

/* Progress back to top */

.progress-wrap {
	position: fixed;
	right: 20px;
	bottom: 20px;
	height: 50px;
	width: 50px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	box-shadow: inset  0 0 0 2px rgba(0,0,0,0.1);
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.progress-wrap::after {
	position: absolute;
	font-family: 'unicons';
	content: '\ebf2';
	text-align: center;
	line-height: 50px;
	font-size: 20px;
	color: #58b999;
	left: 0;
	top: 0;
	height: 50px;
	width: 50px;
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.progress-wrap:hover::after {
	opacity: 0;
}
.progress-wrap::before {
	position: absolute;
	font-family: 'unicons';
	content: '\ebf2';
	text-align: center;
	line-height: 50px;
	font-size: 20px;
	opacity: 0;
	color: #58b999;
	left: 0;
	top: 0;
	height: 50px;
	width: 50px;
	cursor: pointer;
	display: block;
	z-index: 2;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.progress-wrap:hover::before {
	opacity: 1;
}
.progress-wrap svg path { 
	fill: none; 
}
.progress-wrap svg.progress-circle path {
	stroke: #58b999;
	stroke-width: 4;
	box-sizing:border-box;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.progress-wrap.red::before {
	color: var(--red);
}
.progress-wrap.orange::before {
	color: var(--orange);
}
.progress-wrap.blue::before {
	color: var(--blue);
}
.progress-wrap.purple::before {
	color: var(--purple);
}
.progress-wrap.indigo::before {
	color: var(--indigo);
}
.progress-wrap svg.progress-circle path.red {
	stroke: var(--red);
}
.progress-wrap svg.progress-circle path.orange {
	stroke: var(--orange);
}
.progress-wrap svg.progress-circle path.blue {
	stroke: var(--blue);
}
.progress-wrap svg.progress-circle path.purple {
	stroke: var(--purple);
}
.progress-wrap svg.progress-circle path.indigo {
	stroke: var(--indigo);
}

/* #Colors */

.color-blue {
    color: var(--blue);
}
.color-blue-2 {
    color: var(--blue-2);
}
.color-blue-3 {
    color: var(--blue-3);
}
.color-indigo {
    color: var(--indigo);
}
.color-purple {
    color: var(--purple);
}
.color-red {
    color: var(--red);
}
.color-orange {
    color: var(--orange);
}
.color-yellow {
    color: var(--yellow);
}
.color-green {
    color: var(--green);
}
.color-teal {
    color: var(--teal);
}
.color-cyan {
    color: var(--cyan);
}
.color-white {
    color: var(--white);
}
.color-gray {
    color: var(--gray);
}
.color-gray-light {
    color: var(--gray-light);
}
.color-gray-dark {
    color: var(--gray-dark);
}
.color-primary {
    color: var(--primary);
}
.color-secondary {
    color: var(--secondary);
}
.color-success {
    color: var(--success);
}
.color-info {
    color: var(--info);
}
.color-warning {
    color: var(--warning);
}
.color-danger {
    color: var(--danger);
}
.color-lighter {
    color: var(--lighter);
}
.color-light {
    color: var(--light-2);
}
.color-light-2 {
    color: var(--light-3);
}
.color-light-green {
    color: var(--light-green) !important;
}
.color-light-red {
    color: var(--light-red) !important;
}
.color-light-yellow {
    color: var(--light-yellow) !important;
}
.color-light-blue {
    color: var(--light-blue) !important;
}
.color-light-blue-2 {
    color: var(--light-blue-2) !important;
}
.color-light-blue-3 {
    color: var(--light-blue-3) !important;
}
.color-dark {
    color: var(--dark);
}
.color-darker {
    color: var(--darker);
}
.color-dark-blue {
    color: var(--dark-blue) !important;
    transition: .3s;
}
.color-black {
    color: var(--black);
}
.color-lx-1 {
    color: var(--lx-1) !important;
}
.color-lx-2 {
    color: var(--lx-2) !important;
}
.color-lx-3 {
    color: var(--lx-3) !important;
}
.color-lx-1-2 {
    color: var(--lx-1-2) !important;
}
.color-lx-2-2 {
    color: var(--lx-2-2) !important;
}
.color-lx-3-2 {
    color: var(--lx-3-2) !important;
}
.text-black {
	color: var(--dark);
}
.bg-blue {
    background-color: var(--blue) !important;
}
.bg-indigo {
    background-color: var(--indigo) !important;
}
.bg-purple {
    background-color: var(--purple) !important;
}
.bg-red {
    background-color: var(--red) !important;
}
.bg-orange {
    background-color: var(--orange) !important;
}
.bg-yellow {
    background-color: var(--yellow) !important;
}
.bg-green {
    background-color: var(--green) !important;
}
.bg-teal {
    background-color: var(--teal) !important;
}
.bg-cyan {
    background-color: var(--cyan) !important;
}
.bg-white {
    background-color: var(--white) !important;
}
.bg-light-blue {
    background-color: var(--light-blue) !important;
}
.bg-light-green-2 {
    background-color: var(--light-green-2) !important;
}
.bg-gray {
    background-color: var(--gray) !important;
}
.bg-gray-light {
    background-color: var(--gray-light) !important;
}
.bg-gray-dark {
    background-color: var(--gray-dark) !important;
}
.bg-primary {
    background-color: var(--primary) !important;
}
.bg-secondary {
    background-color: var(--secondary) !important;
}
.bg-success {
    background-color: var(--success) !important;
}
.bg-info {
    background-color: var(--info) !important;
}
.bg-warning {
    background-color: var(--warning) !important;
}
.bg-danger {
    background-color: var(--danger) !important;
}
.bg-lighter {
    background-color: var(--lighter) !important;
}
.bg-lighter-2 {
    background-color: var(--lighter-2) !important;
}
.bg-light {
    background-color: var(--light-2) !important;
}
.bg-light-2 {
    background-color: var(--light-2) !important;
}
.bg-light-3 {
    background-color: var(--light-3) !important;
}
.bg-dark {
    background-color: var(--dark) !important;
}
.bg-dark-blue {
    background-color: var(--dark-blue) !important;
}
.bg-darker {
    background-color: var(--darker) !important;
}
.bg-black {
    background-color: var(--black) !important;
}
.bg-transparent {
    background-color: transparent !important;
}
.bg-lx-1 {
    background-color: var(--lx-1) !important;
}
.bg-lx-2 {
    background-color: var(--lx-2) !important;
}
.bg-lx-3 {
    background-color: var(--lx-3) !important;
}
.bg-lx-4 {
    background-color: var(--lx-4) !important;
}
.bg-fill-1 svg {
	fill: var(--lx-3) !important;
}
.bg-fill-2 svg {
	fill: var(--lx-1) !important;
}
.bg-fill-3 svg {
	fill: var(--lx-2) !important;
}
.bg-fill-4 svg {
	fill: var(--lx-4) !important;
}
.bg-fill-5 svg {
	fill: var(--lx-6) !important;
}
.bg-fill-6 svg {
	fill: var(--lx-5) !important;
}
.svg-light-1 svg {
	fill: var(--white) !important;
}
.svg-light-2 svg {
	fill: var(--white) !important;
}
.svg-light-3 svg {
	fill: var(--white) !important;
}
.svg-light-4 svg {
	fill: var(--white) !important;
}
.svg-light-1:hover svg, .svg-light-2:hover svg, .svg-light-3:hover svg, .svg-light-4:hover svg {
	fill: var(--white) !important;
}

.scale{
	-moz-transform: scale(-1, 1);
	-webkit-transform: scale(-1, 1);
	-o-transform: scale(-1, 1);
	-ms-transform: scale(-1, 1);
	transform: scale(-1, 1);
}

/* Size */

.size-12 {
    font-size: 12px;
}
.size-13 {
    font-size: 13px;
}
.size-14 {
    font-size: 14px;
}
.size-15 {
    font-size: 15px;
}
.size-16 {
    font-size: 16px;
}
.size-17 {
    font-size: 17px;
}
.size-18 {
    font-size: 18px;
}
.size-19 {
    font-size: 19px;
}
.size-20 {
    font-size: 20px;
}
.size-21 {
    font-size: 21px;
}
.size-22 {
    font-size: 22px;
}
.size-23 {
    font-size: 23px;
}
.size-24 {
    font-size: 24px;
}
.size-25 {
    font-size: 25px;
}
.size-26 {
    font-size: 26px;
}
.size-27 {
    font-size: 27px;
}
.size-28 {
    font-size: 28px;
}
.size-29 {
    font-size: 29px;
}
.size-30 {
    font-size: 30px;
}
.size-40 {
    font-size: 40px;
    -moz-transform: scale(1, -1);
    -webkit-transform: scale(1, -1);
    -o-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
    transform: scale(1, -1);
}
.size-50 {
    font-size: 50px;
}

/* #Elements
================================================== */

.section {
    position: relative;
    width: 100%;
    display: block;
}
.over-hide {
    overflow: hidden;
}
.full-height {
	height: 100vh;
}
.min-full-height {
	min-height: 100vh;
}
.height-90 {
	height: 90vh;
}
.height-85 {
	height: 85vh;
}
.height-80 {
	height: 80vh;
}
.height-70 {
	height: 70vh;
}
.height-60 {
	height: 60vh;
}
.height-50 {
	height: 50vh;
}
.padding-top-bottom {
	padding-top: 100px;
	padding-bottom: 100px;
}
.padding-top {
	padding-top: 100px;
}
.padding-bottom {
	padding-bottom: 100px;
}
.padding-top-bottom-120 {
	padding-top: 120px;
	padding-bottom: 120px;
}
.padding-top-120 {
	padding-top: 120px;
}
.padding-bottom-120 {
	padding-bottom: 120px;
}
.padding-top-bottom-100 {
	padding-top: 100px;
	padding-bottom: 100px;
}
.padding-top-100 {
	padding-top: 100px;
}
.padding-bottom-100 {
	padding-bottom: 100px;
}
.padding-top-bottom-80 {
	padding-top: 80px;
	padding-bottom: 80px;
}
.padding-top-80 {
	padding-top: 80px;
}
.padding-bottom-80 {
	padding-bottom: 80px;
}
.padding-top-bottom-60 {
	padding-top: 60px;
	padding-bottom: 60px;
}
.padding-top-60 {
	padding-top: 60px;
}
.padding-bottom-60 {
	padding-bottom: 60px;
}
.padding-top-bottom-50 {
	padding-top: 50px;
	padding-bottom: 50px;
}
.padding-top-50 {
	padding-top: 50px;
}
.padding-bottom-50 {
	padding-bottom: 50px;
}
.padding-bottom-140 {
	padding-bottom: 140px;
}
.padding-top-40 {
	padding-top: 40px;
}
.padding-bottom-40 {
	padding-bottom: 40px;
}
.padding-top-bottom-40 {
	padding-top: 40px;
	padding-bottom: 40px;
}
.padding-top-bottom-35 {
	padding-top: 35px;
	padding-bottom: 35px;
}
.padding-top-35 {
	padding-top: 35px;
}
.padding-bottom-35 {
	padding-bottom: 35px;
}
.padding-top-bottom-30 {
	padding-top: 30px;
	padding-bottom: 30px;
}
.padding-top-30 {
	padding-top: 30px;
}
.padding-bottom-30 {
	padding-bottom: 30px;
}
.padding-top-20 {
	padding-top: 20px;
}
.padding-bottom-20 {
	padding-bottom: 20px;
}
.padding-top-bottom-20 {
	padding-top: 20px;
	padding-bottom: 20px;
}
.border-circle {
	border-radius: 50% !important;
}
.z-bigger {
	z-index: 10;
}
.z-bigger-2 {
	z-index: 9;
}
.z-bigger-3 {
	z-index: 8;
}
.z-bigger-i {
	z-index: 100 !important;
}
.z-bigger-i-2 {
	z-index: 101 !important;
}
.opacity-0 {
	opacity: 0 !important;
}
.opacity-20 {
	opacity: 0.2 !important;
}
.font-style-normal {
	font-style: normal !important;
}
.letter-spacing-1 {
	letter-spacing: 1px !important;
}
.letter-spacing-2 {
	letter-spacing: 2px !important;
}
.letter-spacing-3 {
	letter-spacing: 3px !important;
}
.letter-spacing-4 {
	letter-spacing: 4px !important;
}
.letter-spacing-5 {
	letter-spacing: 5px !important;
}
.font-weight-100 {
	font-weight: 100 !important;
}
.font-weight-200 {
	font-weight: 200 !important;
}
.font-weight-300 {
	font-weight: 300 !important;
}
.font-weight-400 {
	font-weight: 400 !important;
}
.font-weight-500 {
	font-weight: 500 !important;
}
.font-weight-600 {
	font-weight: 600 !important;
}
.font-weight-700 {
	font-weight: 700 !important;
}
.font-weight-800 {
	font-weight: 800 !important;
}
.font-weight-900 {
	font-weight: 900 !important;
}
.img-wrap img {
	width: 100%;
	height: auto;
	display: block;
}
.img-wrap p img {
	width: 15px;
	height: auto;
	display: block;
}
.heading-subtitle {
    position: relative;
    font-size: 14px;
    color: #222;
    line-height: 22px;
    margin-bottom: 15px;
}
.heading-subtitle:before {
    content: '';
    position: absolute;
    left: -70px;
    top: 50%;
    width: 40px;
    height: 2px;
    background-color: #222;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}
.heading-title {
    font-size: 44px;
}
@media (min-width: 320px) and (max-width:991px) {
    .heading-subtitle {
        margin-bottom: 10px;
    }
    .heading-title {
        font-size:30px;
    }
}
@media (min-width: 992px) and (max-width:1200px) {
    .heading-subtitle {
        margin-bottom: 10px;
    }
    .heading-title {
        font-size:35px;
    }
}

.btns-red {
    height: 50px;
    background: #e52233;
    color: #fff;
    display: inline-block;
    position: relative;
    z-index: 1;
    margin: 0;
}

.btns-black {
    height: 50px;
    background: #1f2029;
    color: #fff;
    display: inline-block;
    position: relative;
    z-index: 1;
    margin: 0;
}

.btns-red-text {
    height: 50px;
    background: transparent;
    color: #000;
    display: inline-block;
    position: relative;
    z-index: 1;
    margin: 0;
}

.btns-yellow-img {
    height: 50px;
    background: #ffdb73;
    color: #000;
    display: inline-block;
    position: relative;
    z-index: 1;
    margin: 0
}

.btns-yellow-img img {
    display: inline-block;
    text-align: center;
    line-height: 50px;
    margin: 0 15px 0 30px;
    width: 25px;
    -webkit-filter: invert(1);
   filter: invert(1);
}

.btns-yellow-img small {
    display: inline-block;
    text-align: center;
    line-height: 50px;
    color: #000;
    padding: 0 30px 0 0px;
    font-weight: 600;
    font-family: "Jost","Arial",sans-serif;
    letter-spacing: 2px;
    font-size: 13px;
    text-decoration: none;
    text-transform: uppercase
}

.btns-yellow-img small:before {
    background: #ffac00;
    content: "";
    -moz-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    -webkit-transition: all .5s ease-out;
    -ms-transition: all .5s ease-out;
    transition: all .5s ease-out;
    left: 0;
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    z-index: -1
}

.btns-yellow-img:hover small:before {
    width: 100%
}

.btns-red small, .btns-red-text small, .btns-black small {
  display: block;
  text-align: center;
  line-height: 50px;
  padding: 0 30px 0 30px;
  font-weight: 600;
  font-family: "Jost", "Arial", sans-serif;
  letter-spacing: 2px;
  font-size: 13px;
  text-decoration: none;
  text-transform: uppercase;
}

.btns-red small:before, .btns-black small:before {
    background: #aa1929;
    content: "";
    -moz-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    -webkit-transition: all .5s ease-out;
    -ms-transition: all .5s ease-out;
    transition: all .5s ease-out;
    left: 0;
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    z-index: -1;
}

.btns-red-text small:before {
    background: #e52233;
    content: "";
    -moz-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    -webkit-transition: all .5s ease-out;
    -ms-transition: all .5s ease-out;
    transition: all .5s ease-out;
    left: 0;
    position: absolute;
    width: 2px;
    height: 100%;
    top: 0;
    z-index: -1;
}

.btns-red:hover, .btns-red-text:hover, .btns-black:hover {
    color: #fff;
    -moz-transition: all .5s ease-out .5s;
    -o-transition: all .5s ease-out .5s;
    -webkit-transition: all .5s ease-out .5s;
    -ms-transition: all .5s ease-out .5s;
    transition: all .5s ease-out .5s;
}

.btns-red:hover small:before, .btns-red-text:hover small:before, .btns-black:hover small:before{
    width: 100%;
}

.color-red {
    color: var(--new-red);
}

.RatingBadgeWidget {
    display: inline-block;
    width: 150px;
    height: 50px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.RatingBadgeWidget2 {
    display: inline-block;
    width: 100px;
    height: 50px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    border: 5px solid #FFF;
    border-radius: 5px;
}

.hr-first{
    border: none;
    height: 1px;
    margin: 0;
    background-image: linear-gradient(to right, #FFF, #edeeee, #FFF);
}
.top-menu {
    border-bottom: 1px solid #f2f2f2;
    font-family: 'Nunito Sans', sans-serif;
}

.top-menu .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
}

.top-menu ul.navbar-nav li {
    position: relative;
}

.top-menu ul.navbar-nav > li > a {
    font-size: 13px;
    font-weight: 500;
    padding: 0 15px;
    display: block;
    color: #000;
    position: relative;
}

.top-menu ul li > .sub-menu {
    background-color: #fff;
    width: 200px;
    text-align: left;
    padding: 15px 0;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 201;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-shadow: 0 8px 15px rgb(0 0 0 / 10%);
    box-shadow: 0 8px 15px rgb(0 0 0 / 10%);
}

.top-menu ul li:hover > .sub-menu {
    top: 100%;
    visibility: visible;
    opacity: 1;
}

.top-menu ul li .sub-menu a {
    display: block;
    padding: 5px 25px;
    color: #000;
    font-size: 13px;
    font-weight: 500;
}

.top-menu ul li .sub-menu a:hover {
    padding-left: 30px;
}

.top-menu ul.navbar-nav > li.menu-item-has-children {
  padding-right: 25px;
}

.top-menu ul.navbar-nav > li.menu-item-has-children a:after {
    content: "";
    position: absolute;
    right: 0px;
    top: 6px;
    display: block;
    width: 6px;
    height: 6px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    -webkit-transition: -webkit-transform .2s ease-out;
    transition: -webkit-transform .2s ease-out;
    -o-transition: transform .2s ease-out;
    transition: transform .2s ease-out;
    transition: transform .2s ease-out,-webkit-transform .2s ease-out;
}

.top-menu ul.navbar-nav > li.menu-item-has-children a:hover:after {
    -webkit-transform: rotate(-45deg) translate(-2px,2px);
    -ms-transform: rotate(-45deg) translate(-2px,2px);
    transform: rotate(-45deg) translate(-2px,2px);
}

.top-menu ul.navbar-nav > li.menu-item-has-children .sub-menu a:after {
  display: none;
}

.top-menu .sub-menu .sub-link a {
    color: #000 !important;
}

.top-menu ul.navbar-nav a:hover, .top-menu .active a, .top-menu .actives a {
   color: #ef233c !important;
}

.top-menu .top-link {
    font-size: 14px;
    font-weight: 500;
    padding: 0 15px;
    color: #000;
}

.top-menu .top-link svg {
    width: 18px;
    height: 18px;
    margin-top: -4px;
    fill: #66b799;
    margin-right: 5px;
}

.top-menu .top-link:nth-child(2) svg {
    fill: #ef233c;
}

.top-menu .top-link.svg-link svg {
    height: 18px;
    width: auto;
    margin-top: -4px;
    margin-right: 2px;
}

.site-header .navigation {
  background-color: #fff;
  margin-bottom: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  z-index: 200;
  font-family: 'Nunito Sans', sans-serif;
}
.site-header .navigation > .container {
  position: relative;
}
@media (max-width: 1199px) {
  .site-header .navigation {
    padding: 13px 0;
  }
}
.site-header #navbar {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.site-header #navbar > ul li a:hover,
.site-header #navbar > ul li a:focus,
.site-header #navbar > ul li.current-menu-item a {
  text-decoration: none;
  color: #ef233c !important;
}
.actives a {
  color: #ef233c !important;
}
.sub-link a {
  color: #000 !important;
}
.sub-menu {
  list-style: none;
}
@media screen and (min-width: 1199px) {
  .site-header #navbar {
    /*** hover effect ***/
  }
  .site-header #navbar li {
    position: relative;
  }
  .site-header #navbar > ul > li > a {
    font-size: 16px;
    padding: 35px 5px;
    display: block;
    color: #000;
    font-weight: 600;
    position: relative;
  }
  .site-header #navbar > ul > li > a:before {
    content: "";
    width: 90%;
    height: 32px;
    border: 0;
    position: absolute;
    top: calc(50% - 17px);
    left: 5%;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  .site-header #navbar > ul > li > a:hover:before {
    opacity: 1;
  }
  .site-header #navbar > ul > li.current-menu-item > a,
.site-header #navbar > ul > li.current-menu-parent > a {
    color: #0054a7;
  }
  .site-header #navbar > ul > li.current-menu-item > a:before,
.site-header #navbar > ul > li.current-menu-parent > a:before {
    opacity: 1;
  }
  .site-header #navbar > ul .sub-menu {
    background-color: #fff;
    width: 240px;
    text-align: left;
    padding: 15px 0px 20px 0px;
    position: absolute;
    left: 0;
    top: 95%;
    z-index: 199;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-shadow: 0 11px 15px rgba(0, 0, 0, 0.1);
            box-shadow: 0 11px 15px rgba(0, 0, 0, 0.1);
  }
  .site-header #navbar > ul > li .sub-menu li:last-child {
    border-bottom: 0;
  }
  .site-header #navbar > ul > li .sub-menu a {
    display: block;
    padding: 10px 30px;
    font-size: 14px;
  }
  .site-header #navbar > ul > li .sub-menu a:hover {
    padding-left: 35px;
  }
  .site-header #navbar > ul > li > .sub-menu .sub-menu {
    left: 100%;
    top: 0;
  }
  .site-header #navbar > ul > li > .sub-menu > .menu-item-has-children > a {
    position: relative;
  }
  .site-header #navbar > ul > li > .sub-menu > .menu-item-has-children > a:before {
    font-family: "themify";
    content: "";
    font-size: 11px;
    font-size: 0.4583333333rem;
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .site-header #navbar > ul > li:hover > .sub-menu {
    top: 100%;
    visibility: visible;
    opacity: 1;
  }
  .site-header #navbar .sub-menu > li:hover > .sub-menu {
    left: 100%;
    visibility: visible;
    opacity: 1;
  }
}
@media (max-width: 1199px) {
  .site-header #navbar > ul > li a {
    display: block;
    font-size: 16px;
  }
  .site-header #navbar > ul > li .sub-menu li {
    border-bottom: 0;
  }
  .site-header #navbar > ul .sub-menu > li:last-child {
    border-bottom: 0;
  }
  .site-header #navbar > ul > li > .sub-menu a {
    padding: 8px 15px 8px 20px;
  }
  .site-header #navbar > ul > li > .sub-menu .sub-menu a {
    padding: 8px 15px 8px 0px;
  }
  .site-header #navbar > ul .menu-item-has-children > a {
    position: relative;
  }
  .site-header #navbar > ul .menu-item-has-children > a:before {

  }
}
@media screen and (min-width: 1199px) {
  .site-header .navbar-header .open-btn {
    display: none;
  }
  .site-header #navbar .close-navbar {
    display: none;
  }
}
@media (max-width: 1199px) {
  .site-header {
    /* class for show hide navigation */
  }
  .site-header .container {
    width: 100%;
  }
  .site-header .navbar-header button {
    display: block;
    background-color: #1f2029;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 0;
    padding: 5px 0 0;
    outline: 0;
    position: absolute;
    right: 15px;
    top: calc(50% - 20px);
    z-index: 20;
    border-radius: 0;
    -webkit-transition: all 200ms linear!important;
    transition: all 200ms linear!important;
  }
  .site-header .navbar-header button:hover {
      box-shadow: 0 0px 10px #00000057;
  }
  .site-header .navbar-header button span {
    background-color: #fff;
    width: 20px;
    margin: 0 auto 5px;
    height: 2px;
    margin-bottom: 5px;
    display: block;
  }
  .site-header #navbar {
    background: #fff;
    display: block !important;
    width: 350px;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    position: fixed;
    right: -350px;
    top: 0;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 8px 25px rgb(0 0 0 / 10%);
  }
  .site-header #navbar > ul {
    background-color: #fff;
    position: relative;
    z-index: 101;
  }
  .site-header #navbar ul a {
    color: #000;
  }
  .site-header #navbar ul a:hover,
.site-header #navbar ul li.current a {
    color: #ef233c;
  }
  .site-header #navbar .navbar-nav {
    height: auto;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .site-header #navbar .close-navbar {
    background-color: #fff;
    width: 60px;
    height: 60px;
    color: #000;
    border: 0;
    outline: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 20;
  }
  .site-header #navbar .close-navbar .ti-close {
    position: relative;
    top: 1px;
  }
  .site-header #navbar > ul > li {
    border-bottom: 0;
  }
  .site-header #navbar > ul > li > a {
    padding: 10px 15px 10px 35px;
  }
  .site-header .slideInn {
    right: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .site-header .navbar-toggler .first-angle,
.site-header .navbar-toggler .last-angle {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  .site-header .x-close .middle-angle {
    opacity: 0;
  }
  .site-header .x-close .first-angle {
    position: absolute;
    -webkit-transform: rotate(-44deg);
    top: 16px;
    left: 10px;
  }
  .site-header .x-close .last-angle {
    -webkit-transform: rotate(44deg);
    position: absolute;
    top: 16px;
    right: 10px;
  }
}

@media (max-width: 1199px) {
  .site-header .navbar-collapse.collapse {
    display: none;
  }
  .site-header .navbar-collapse.collapse.in {
    display: block;
  }
  .site-header .navbar-header .collapse,
.site-header .navbar-toggle {
    display: block;
  }
  .site-header .navbar-header {
    float: none;
  }
  .site-header .navbar-right {
    float: none;
  }
  .site-header .navbar-nav {
    float: none;
  }
  .site-header .navbar-nav > li {
    float: none;
  }
}


/*--------------------------------------------------------------
	#header-style-1
--------------------------------------------------------------*/
.header-style-1 {
  position: relative;
  z-index: 201;
}
.header-style-2 {
  position: relative;
  z-index: 200;
}

@media screen and (min-width: 1300px) {
   .site-header #navbar > ul > li > a {
        padding: 35px 15px;
  }
}

@media screen and (min-width: 1400px) {
   .site-header #navbar > ul > li > a {
        font-size: 16px;
        padding: 35px 20px;
        display: block;
        color: #000;
        position: relative;
  }
  .header-style-1 .navbar-header, .header-style-2 .navbar-header {
    padding-left: 7px;
  }
  .header-style-1 .header-right, .header-style-2 .header-right {
    right: 38px;
  }
  .header-style-1 #navbar, .header-style-2 #navbar {
    padding-left: 100px;
  }
}

@media screen and (min-width: 1500px) {
   .site-header #navbar > ul > li > a {
        padding: 35px 30px;
  }
}

@media screen and (min-width: 1600px) {
   .site-header #navbar > ul > li > a {
        padding: 35px 35px;
  }
}

.header-style-1 .container-fluid.container-header, .header-style-2 .container-fluid.container-header {
  max-width: 1774px;
  margin: 0 auto;
  position: relative;
}
.navbar-brand {
    height: 100%;
    padding: 9px 0 1px 0;
}
.navbar-brand img {
    height: 100%;
    width: auto;
    display: block;
    margin: 0;
}
.header-style-1 .navigation, .header-style-2 .navigation {
  background-color: transparent;
}
.header-style-1 .navbar-brand, .header-style-2 .navbar-brand {
  display: inline-block;
}
.header-style-1 .navbar-brand img, .header-style-2 .navbar-brand img {
  max-height: 50px;
}
@media (max-width: 991px) {
  .header-style-1 .navbar-brand img, .header-style-2 .navbar-brand img {
    max-height: 40px;
  }
  .navbar-brand img {
    padding: 0 15px;
   }
}
@media screen and (min-width: 1199px) {
  .header-style-1 #navbar, .header-style-2 #navbar {
    padding-left: 50px;
  }
}
.header-style-1 .header-right, .header-style-2 .header-right {
  position: absolute;
  right: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1199px) {
  .header-style-1 .header-right, .header-style-2 .header-right {
    right: 70px;
  }
}
@media (max-width: 767px) {
  .header-style-1 .header-right, .header-style-2 .header-right {
    right: 65px;
  }
}
.header-style-1 .header-right button, .header-style-2 .header-right button {
  background: transparent;
  padding: 0;
  border: 0;
  outline: 0;
}
.header-style-1 .header-right > div, .header-style-2 .header-right > div {
  float: left;
  position: relative;
  margin-right: 15px;
}
@media (max-width: 767px) {
  .header-style-1 .header-right > div, .header-style-2 .header-right > div {
    margin-right: 10px;
  }
}
.header-style-1 .header-right > div:last-child, .header-style-2 .header-right > div:last-child {
  margin: 0 0 0 0;
  position: relative;
}

/*--------------------------------------------------------------
	#header-style-2
--------------------------------------------------------------*/
.header-style-2 {

}
@media (max-width: 767px) {
  .header-style-2 .header-right {
    right: 65px;
  }
}

.site-header .sticky-header {
  width: 100%;
  position: fixed;
  left: 0;
  top: -200px;
  z-index: 0;
  opacity: 0;
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
  background: white;
  -webkit-box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
}

.site-header .sticky-on {
  background: #fff;
  opacity: 1;
  top: 0;
}

.top-block-measuring .top-measuring, .top-block-calculator .top-calculator, .top-block-cart .full {
  height: 40px;
  min-width: 40px;
  margin: 19px 0;
  background: rgb(102,183,153);
  background: -webkit-gradient(linear, 0 100%, 0 0, color-stop(0.5, rgba(102,183,153,1)), color-stop(0.5, rgba(76,166,133,1)));
  background: -webkit-linear-gradient(90deg, rgba(102,183,153,1) 50%, rgba(76,166,133,1) 50%);
  background: -moz-linear-gradient(90deg, rgba(102,183,153,1) 50%, rgba(76,166,133,1) 50%);
  background: -o-linear-gradient(90deg, rgba(102,183,153,1) 50%, rgba(76,166,133,1) 50%);
  background: linear-gradient(90deg, rgba(102,183,153,1) 50%, rgba(76,166,133,1) 50%);
  display: flex;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 200ms linear !important;
  transition: all 200ms linear !important;
}

.top-block-measuring .top-measuring:hover, .top-block-calculator .top-calculator:hover, .top-block-cart .full:hover {
  box-shadow: 0 0px 10px #73b799a8;
}

.top-block-measuring .top-measuring svg, .top-block-calculator .top-calculator svg , .top-block-cart .full svg {
  width: auto;
  height: 26px;
  margin: 7px 0;
  fill: #FFF;
}

.top-block-cart .full span {
    display: block;
    position: absolute;
    top: 12px;
    right: -5px;
    font-size: 11px;
    line-height: 16px;
    font-weight: 600;
    width: 16px;
    height: 16px;
    border-radius: 100%;
    text-align: center;
    box-shadow: 0 0px 20px #73b799a8;
    background: #fff;
    color: #000;
}

.top-block-call .top-call {
  height: 40px;
  min-width: 40px;
  margin: 19px 0;
  background: rgb(239 35 60);
  background: -webkit-gradient(linear, 0 100%, 0 0, color-stop(0.5, rgba(239,35,60,1)), color-stop(0.5, rgba(215,11,57,1)));
  background: -webkit-linear-gradient(90deg, rgba(239,35,60,1) 50%, rgba(215,11,57,1) 50%);
  background: -moz-linear-gradient(90deg, rgba(239,35,60,1) 50%, rgba(215,11,57,1) 50%);
  background: -o-linear-gradient(90deg, rgba(239,35,60,1) 50%, rgba(215,11,57,1) 50%);
  background: linear-gradient(90deg, rgba(239,35,60,1) 50%, rgba(215,11,57,1) 50%);
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
  padding: 7px 0;
  display: flex;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 200ms linear !important;
  transition: all 200ms linear !important;
}

.top-block-call .top-call:hover {
  box-shadow: 0 0px 10px #ef233c78;
}

.top-block-call .top-call svg {
  width: auto;
  height: 24px;
  margin-top: 1px;
  fill: #FFF;
}

.top-block-call .top-call span {
  padding-left: 10px;
  padding-top: 1px;
}

@media (min-width: 768px) {
    .top-block-call .top-call {
      padding: 7px 8px;
    }
}

.top-block-measuring:hover .measuring-form, .top-block-call:hover .call-form {
  opacity: 1;
  visibility: visible;
}

.top-block-measuring .measuring-form, .top-block-call .call-form {
  background-color: #fff;
  min-width: 270px;
  text-align: left;
  padding: 20px 22px 22px 22px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 200;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0 11px 15px rgb(0 0 0 / 10%);
  box-shadow: 0 11px 15px rgb(0 0 0 / 10%);
}

@media (max-width: 576px) { 
    .top-block-measuring .measuring-form, .top-block-call .call-form {
        top: calc(100% - 6px);
    }
}

@media (min-width: 576px) { 
    .top-block-measuring .measuring-form, .top-block-call .call-form {
        top: calc(100% + 3px);
    }
}

@media (min-width: 992px) { 
    .top-block-measuring .measuring-form, .top-block-call .call-form {
        top: 100%;
    }
}

@media (min-width: 1200px) { 
    .top-block-measuring .measuring-form, .top-block-call .call-form {
        top: calc(100% + 9px);
    }
    .top-block-call .top-call:hover {
      box-shadow: 0 0px 20px #ef233c78;
    }
    
    .top-block-measuring .top-measuring:hover, .top-block-calculator .top-calculator:hover, .top-block-cart .full:hover {
      box-shadow: 0 0px 20px #73b799a8;
    }
}

.top-block-measuring .measuring-form a, .top-block-call .call-form a {
  color: #000;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.top-block-measuring .measuring-form a:hover {
  color: #66b799;
}

.top-block-call .call-form a:hover {
  color: #ef233c;
}

.inner-description {
  font-size: 13px;
  margin-bottom: 0;
}

.inner-phone {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.inner-time {
  font-size: 14px;
  font-weight: 700;
  margin: 4px 0 20px 0;
}

.btn-new-top {
  height: 45px;
  font-size: 15px;
  background: #66b799;
  color: #FFF  !important;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0 8px 15px rgb(0 0 0 / 10%);
  box-shadow: 0 8px 15px rgb(0 0 0 / 10%);
}

.btn-new-top:hover {
  box-shadow: 0 0px 20px #73b799a8;
}

.btn-new-top.btn-new-red {
  background: #ef233c;
}

.btn-new-top.btn-new-red:hover {
  box-shadow: 0 0px 20px #ef233c78;
}

.btn-new-top:disabled {
  opacity: .8;
}

.top-mobile-menu {
    width: 100%;
    padding: 0 60px 0 25px;
    height: 61px;
    line-height: 60px;
    border-bottom: 1px solid #f4f4f4;
}

.top-mobile-menu .top-link {
    font-size: 14px;
    font-weight: 500;
    padding: 0 15px 0 5px;
    color: #000;
}

.top-mobile-menu .top-link svg {
    width: 18px;
    height: 18px;
    margin-top: -4px;
    fill: #66b799;
    margin-right: 5px;
}

.top-mobile-menu .top-link:nth-child(2) svg {
    fill: #ef233c;
}

.contact-mobile-menu {
    height: auto;
    max-width: 100%;
    margin: 0;
    padding: 20px 35px 0px 35px;
    border-bottom: 1px solid #f4f4f4;
}

.contact-mobile-menu a {
    color: #66b799
}

.bottom-mobile-menu {
    height: auto;
    max-width: 100%;
    margin: 0;
    padding: 20px 35px 20px 35px;
    border-top: 1px solid #f4f4f4;
    font-size: 13px;
}

.bottom-mobile-menu ul {
    margin: 0;
    padding: 0;
    column-count: 2;
}

.bottom-mobile-menu li {
    font-size: 13px;
    list-style-type: none;
    margin: 0;
    padding: 5px 0;
}

.bottom-mobile-menu li.active a{
    color: #ef233c!important;
}

.section-new .container-fluid {
    max-width: 1774px;
    margin: 0 auto;
    position: relative;
}

.top-block-phone .top-phone {
	padding: 0;
	height: 40px;
}

.top-block-phone .top-phone .inner-description{
	font-size: 13px;
	margin: 0;
	margin-top: -6px;
	margin-bottom: -6px;
}

.top-block-phone .top-phone .inner-phone {
	font-size: 22px;
	font-weight: 700;
	margin: 0;
	line-height: 43px;
	letter-spacing: 0;
}

.top-block-phone .top-phone .inner-phone a {
	color: #000;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.top-block-phone .top-phone .inner-phone a:hover {
	color: #d70b39;
}

.icon-menu {
    height: auto;
    max-width: 100%;
    margin: 0;
    padding: 15px 35px 15px 35px;
}

.icon-menu .icon-menu-item {
  border: 1px solid var(--light-3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  margin: 15px 0;
  padding: 0 5px 5px 5px;
}

.icon-menu .icon-menu-item img{
    width: 100px;
    height: 100px;
    -o-object-fit: contain;
    object-fit: contain;
  filter: grayscale(100%);
  transition: .3s;
}

.icon-menu .icon-menu-item.active img{
  filter: grayscale(0%);
}

a.icon-menu-item:hover img{
  filter: grayscale(0%);
}

.icon-menu .icon-menu-item p {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--dark);
}



/* MEGAMENU */

.site-header #navbar li.big-menu {
	position:inherit;
}

.big-menu {

}

.big-menu .big-menu-wrap {
	display: block;
	position: absolute;
	max-width:100vw;
	width: 200%;
	top: 100%;
	left: 0;
    padding-right: 15px;
    padding-left: 15px;
	margin: 0;
	background: var(--white);
	z-index: -1;
	opacity: 0;
	left:50%;
	pointer-events: none;
	transform:translateX(-50%) translateY(20px);
	transition: opacity .15s ease, z-index 0s .2s, transform .15s ease;
}

.big-menu .big-menu-wrap:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 100%;
    left: 0;
    display: flex;
    width: 100%;
    height: 100vh;
    background: var(--dark-blue);
    opacity: .15;
    pointer-events: none;
    transform: translateY(-20px);
    transition: transform .2s ease-in;
}

.menu-item-has-children.big-menu:hover .big-menu-wrap {
	z-index: 1;
	opacity: 1;
	pointer-events: all;
	transform:translateX(-50%) translateY(0);
	transition: opacity .3s ease .1s, transform .3s ease .1s;
}

.menu-item-has-children.big-menu:hover>.big-menu-wrap:after {
    transform: none;
    transition: transform .2s linear;
}

.big-menu-link {
	color: var(--black);
}

.menu-item-has-children.big-menu:hover>.big-menu-link, .menu-item-has-children.big-menu.current-menu-parent .big-menu-link {
    color: #e8475d !important;
    transition: color .2s ease-out
}

.menu-item-has-children.big-menu .big-menu-link:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    width: 100%;
    height: 3px;
    background: #e8475d;
    transform: scaleX(0);
    transform-origin: 50% 50%;
    transition: transform .3s ease;
}

.menu-item-has-children.big-menu .big-menu-link:hover:after, .menu-item-has-children.big-menu:hover>.big-menu-link:after {
    transform: none;
    transition: transform .3s ease;
}

.big-menu .big-menu-image-block {
	position: relative;
	width: 100%;
	height: auto;
	margin-top: 30px;
	margin-bottom: 20px;
}

.big-menu .big-menu-image-block img {
    display: inline-block;
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.big-menu .big-menu-image-block h6 {
	margin-top: 20px;
	margin-bottom: 0;
	color: var(--black);
	transition: color .3s ease;
	 display: -webkit-box;
	-webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
	overflow: hidden;
	padding-right: 15px;
	font-size: 14px;
	font-weight: 600;
}

.big-menu .big-menu-image-block:hover h6, .big-menu .big-menu-text-block:hover h6 {
	color: #e8475d;
}

.big-menu .big-menu-text-block {
	position: relative;
	width: 100%;
	height: auto;
	
}

.big-menu .big-menu-text-block h6 {
	margin-bottom: 30px;
	padding-top: 20px;
	color: var(--black);
	font-size: 14px;
	font-weight: 600;
	transition: color .3s ease;
	 display: -webkit-box;
	-webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
	overflow: hidden;
	border-top: 1px solid var(--lighter);
}

.big-menu .big-menu-bottom {
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 30px;
    margin-bottom: 30px;
    border-top: 1px solid var(--lighter)
}

.big-menu .big-menu-bottom .btns-yellow-img {
    background: #e52233;
}

.big-menu .big-menu-bottom .btns-yellow-img img {
    filter: none;
}

.big-menu .big-menu-bottom .btns-yellow-img small {
    color: #FFF;
}

.big-menu .big-menu-bottom .btns-yellow-img small:before {
    background: #aa1929;
}




.new-conversion-measuring {
    background-repeat: no-repeat;
    background-size: 200px, auto, contain;
    background-position: right bottom;
    background-color: #f1f6fb;
    background-image: url(../images/conversion-measuring.png);
    transition: all 250ms linear;
    box-shadow: 0px 20px 50px -5px rgb(149 164 175 / 30%);
}

.new-conversion-callback {
    background-repeat: no-repeat;
    background-size: 200px, auto, contain;
    background-position: right bottom;
    background-color: #f1f6fb;
    background-image: url(../images/conversion-callback.png);
    transition: all 250ms linear;
    box-shadow: 0px 20px 50px -5px rgb(149 164 175 / 30%);
}

@media (min-width: 768px) {
	.new-conversion-measuring {
	    background-size: contain;
	}
	.new-conversion-callback {
	    background-size: contain;
	}
}
.product-header {
    font-family: 'Nunito Sans', sans-serif;
}

.product-header.head-title {
    border-bottom: 1px solid #f2f2f2;
    border-top: 1px solid #f2f2f2;
}

.top-product-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    z-index: 1;
    background-position: center;
}

.background-product-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #13191f;
    opacity: .5;
}

.product-header .col-12 {
    margin: 180px 0 60px 0;
}

.product-header.head-title .col-12 {
    margin: 30px 0 30px 0;
}

.product-header .product-header-title {
    padding-bottom: 20px;
    color: #fbfbfb;
    font-weight: 600;
    letter-spacing: -.8px;
}

.product-header.head-title .product-header-title {
    padding: 0;
    margin: 0;
    color: #000;
}

.product-header .product-header-description {
    line-height: 1.6;
    font-weight: 600;
    font-size: 18px;
    color: #fbfbfb;
}
.breadcrumb {
	padding: 0;
	margin-bottom: 0;
	list-style: none;
	background-color: transparent;
	border-radius: 0;
	border: none;
}
.breadcrumb-big {
    padding: 30px 0 30px;
}
.breadcrumb-item + .breadcrumb-item {
	padding-left: 10px;
}
.breadcrumb-item + .breadcrumb-item::before {
	padding-right: 10px;
	color: var(--dark-blue);
	content: "/";
}
.breadcrumb-big .breadcrumb-item + .breadcrumb-item::before {
	padding-right: 10px;
	color: var(--dark-blue);
	content: "|";
}
.breadcrumb-item a span, .breadcrumb-item.active span, .breadcrumb-link{
    color: var(--dark-blue);
    font-weight: 400;
    font-size: 15px;
}
.breadcrumb-big .breadcrumb-item a span, .breadcrumb-big .breadcrumb-item.active span, .breadcrumb-big .breadcrumb-link{
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
}

.breadcrumb-big .breadcrumb-link {
    text-decoration: underline;
    color: #000;
}
.breadcrumb-item a:hover span, .breadcrumb-link:hover {
    color: #ef233c;
}
.breadcrumb-link + .breadcrumb-link {
	margin-left: 25px;
}

.breadcrumb-big .breadcrumb-link + .breadcrumb-link {
	margin-left: 20px;
}
.product-promo, .product-photo {
    padding: 60px 0 60px;
    font-family: 'Nunito Sans', sans-serif;
}

.product-promo.promo-no-top {
    padding: 0 0 60px;
}

.product-promo {
	background: linear-gradient(180deg, #FFFFFF 0%, #F6F7FA 100%);
	margin: 0 0 20px 0;
}

.product-promo.promo-block-gray {
	background: linear-gradient(0deg, #FFFFFF 0%, #F6F7FA 100%);
	margin: 20px 0 0  0;
}

.product_application {
	background-color: #F6F7FA;
	padding: 80px 0 60px 0;
	margin: 20px 0 20px 0;
}

.product_application img {
	border-radius: 10px;
}

.product-promo-gallery .swiper-buttons, .product-gallery .swiper-buttons {
    padding: 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  justify-content: flex-end;
}

.product-promo-gallery .swiper-button-prev-i, .product-promo-gallery .swiper-button-next-i, .product-gallery .swiper-button-prev-i, .product-gallery .swiper-button-next-i {
    position: static;
	margin: 30px 0;
    width: 24px;
    height: 24px;
    -webkit-transform: none;
    transform: none;
    outline: 0;
    transition: .2s ease;
    text-decoration: none;
}

.product-promo-gallery .swiper-button-prev-i.swiper-button-disabled, .product-promo-gallery .swiper-button-next-i.swiper-button-disabled, .product-gallery .swiper-button-prev-i.swiper-button-disabled, .product-gallery .swiper-button-next-i.swiper-button-disabled  {
    display: none;
}

.product-promo-gallery .swiper-button-next-i, .product-gallery .swiper-button-next-i {
    margin-left: 40px;
}

.product-promo-gallery .icon, .product-gallery .icon {
    width: 100%;
    height: 100%;
    fill: #231f20;
}

.product-promo-gallery .icon:hover, .product-gallery .icon:hover {
    fill: #ef233c;
    cursor: pointer;
}

.product-promo-gallery .swiper-button-next-i:hover, .product-gallery .swiper-button-next-i:hover {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
}

.product-promo-gallery .swiper-button-prev-i:hover, .product-gallery .swiper-button-prev-i:hover {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
}

.product-promo-intro-h {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 20px;
    margin: 0;
    font-family: "Jost","Arial",sans-serif;
}

.product-promo-description {
  padding: 20px 0 30px 0;
  margin: 0;
}

.product-promo-check {
  padding: 0px 15px 30px 15px;
}

.product-promo-check h6 {
	font-size: 16px;
	font-weight: 500;
	color: #000;
	font-family: "Jost","Arial",sans-serif;
}

.product-promo-check h6 svg path{
	stroke: #4ca685;
}

.product-promo-intro {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    font-family: "Jost", "Arial", sans-serif;
}


.product-promo-price {
    font-size: 55px;
    margin: 0 0 30px 0;
    font-weight: 300;
    line-height: 55px;
}
.product-promo-price span{
    padding: 0 5px 0 0;
}

.product-promo-sale-block {
    display: block;
    height: 30px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.product-promo-oldprice {
	position: relative;
    margin: 0;
    display: inline-block;
    font-weight: 300;
    font-size: 30px;
    line-height: 31px;
    height: 30px;
    color: #656565;
}

.product-promo-oldprice:after {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    bottom: 50%;
    margin-bottom: -1px;
    background: #656565;
}

.product-promo-sale {
    margin: 0 0 0 10px;
    height: 23px;
    display: inline-block;
    color: #fff;
    padding: 2px 8px;
    font-weight: 700;
    font-size: 13px;
    background: #e52233;
    border-radius: 4px
}

.product-promo .btns-red {
    margin: 0 0 20px 0;
}

.product-promo .btns-red-text, .product-promo .btns-yellow-img {
    margin: 0 20px 20px 0;
}

.product-gallery .swiper-slide {
    width: 100%;
    margin-right: 30px;
}

@media (min-width: 768px) { 
  .product-gallery .swiper-slide {
    width: 50%;
    width: calc(100%/2 - 15px);
    margin-right: 30px;
  }
}

@media (min-width: 1200px) { 
  .product-gallery .swiper-slide {
    width: 33.33%;
    width: calc(100%/3 - 20px);
    margin-right: 30px;
  }
}

.product-gallery .swiper-slide:last-child {
  margin-right: 0;
}

.gallery {
	*zoom: 1;
	position: relative;
    overflow: hidden;
	border-radius: 10px;
}

.gallery:after,.gallery:before {
	display: table;
	content: "";
}

.gallery:after {
	clear: both;
}

.gallery a {
	display: block;
	overflow: hidden;
	text-decoration: none;
	z-index: 1;
}

.gallery a:after,.gallery a:before {
	background: 0 0;
	content: "";
	left: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	border-radius: 10px;
}

.gallery a:before {
	-moz-transition: all .5s ease-out;
	-o-transition: all .5s ease-out;
	-webkit-transition: all .5s ease-out;
	-ms-transition: all .5s ease-out;
	transition: all .5s ease-out;
	opacity: 0;
	z-index: 1;
}

.gallery a:after {
	z-index: 10;
}

.gallery a:hover:before {
    background: linear-gradient(180deg, rgba(8, 20, 32, 0.0001) 0%, #000 100%);
    mix-blend-mode: multiply;
    opacity: 0.5;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    position: absolute;
    content: "";
    z-index: 9;
}

.gallery a:hover:after {
	background: url(../images/zoom.svg) center center no-repeat;
}

.gallery img {
	display: block;
    width: 100%;
    object-fit: cover;
    -webkit-transition: all 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
    transition: all 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
    transition: transform 500ms ease;
}

.gallery:hover img {
    -webkit-transform: scale(1.05) rotate(1deg);
    transform: scale(1.05) rotate(1deg)
}

.tab-pane .gallery:hover img {
    -webkit-transform: none;
    transform: none;
}

.tab-pane .gallery {
	border-radius: 0;
}


.h6-box {
     margin: 0 0 50px 0;
}

.h6-box .before-title {
    position: relative;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 15px;
    letter-spacing: 2.6px;
    padding-left: 60px;
    font-family: "Jost", "Arial", sans-serif;
    color: #000;
}

.h6-box .before-title:before {
    position: absolute;
    top: 6px;
    left: 0px;
    width: 50px;
    height: 2px;
    background: #e52233;
    content: "";
}

.h6-box h6 {
    font-weight: 100;
    margin: 10px 0 0 0;
}

.faq-info {
  display: block;
  padding: 45px;
  margin-right: 30px;
  margin-top: 10px;
  position: relative;
  background: linear-gradient(45deg, var(--indigo) 0, var(--primary) 100%);
  box-shadow: 0px 40px 40px -5px rgb(149 164 175 / 50%);
}

.faq-info:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 25px 15px 0;
    border-color: transparent #00388e transparent transparent;
    position: absolute;
    left: 10%;
    bottom: -15px;
}

.faq-info p {
  	color: #fff;
    width: 100%;
    display: block;
    margin-bottom: 25px;
    opacity: 0.9;
}

.faq-info p:last-child {
    margin-bottom: 0;
}

.product-faq > .card {
	background-color: #fff;
	border: 0px solid rgba(21, 21, 21, 0.14);
	border-radius: 0;
	margin-bottom: 10px;
}

.product-faq > .card .card-header {
	padding: 0;
	margin-bottom: 0;
	background-color: transparent;
	border: none;
}

.product-faq > .card .card-body {
	padding: 20px;
	padding-top: 0;
	color: var(--dark);
}

.product-faq > .card:not(:first-of-type) .card-header:first-child {
	border-radius: 0;
}

.product-faq > .card:not(:first-of-type):not(:last-of-type) {
	border-bottom: 1px solid rgba(21, 21, 21, 0.14);
	border-radius: 0;
}

.product-faq > .card:first-of-type {
	border-bottom: 0px solid rgba(21, 21, 21, 0.14);
	border-radius: 0;
}

.product-faq > .card:last-of-type {
	border-radius: 0;
	margin-bottom: 0;
}

.btn-accordion {
	position: relative;
	display: block;
	width: 100%;
	padding: 12px 40px 12px 0;
	cursor: pointer;
	font-weight: 500;
	letter-spacing: 0.4px;
	color: var(--dark-blue);
	font-size: 20px;
	line-height: 24px;
    -webkit-transition: all 250ms linear;
    transition: all 250ms linear; 
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
}

.product-faq .btn-accordion {
	font-size: 20px;
	padding-right: 40px;
}

.btn-accordion::before,
.btn-accordion::after {
	position: absolute;
	display: block;
	width: 13px;
	height: 1px;
	content: '';
	right: 20px;
	top: 24px;
	background-color: var(--gray-dark);
	-webkit-transition: all 250ms linear;
	transition: all 250ms linear;
}

.btn-accordion[aria-expanded="false"]::after {
	transform: rotate(90deg);
}

.btn-accordion[aria-expanded="false"]::before {
	transform: rotate(180deg);
}

.tabs-application .swiper-slide {
    width: 100%;
    margin-right: 30px;
}

@media (min-width: 576px) { 
  .tabs-application .swiper-slide {
    width: 50%;
    width: calc(100%/2 - 15px);
    margin-right: 30px;
  }
}

@media (min-width: 992px) { 
    .tabs-application .swiper-slide {
    width: 33.33%;
    width: calc(100%/3 - 20px);
    margin-right: 30px;
  }
}

@media (min-width: 1299px) { 
  .tabs-application .swiper-slide {
    width: 25%;
    width: calc(100%/4 - 22.5px);
    margin-right: 30px;
  }
}

@media (min-width: 1699px) { 
  .tabs-application .swiper-slide {
    width: 20%;
    width: calc(100%/5 - 24px);
    margin-right: 30px;
  }
}

.tabs-application .swiper-slide:last-child {
  margin-right: 0;
}

.application-slider-item {
    position: relative;
}

.application-slider-item .application-slider-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.application-slider-item .application-slider-image img {
    width: 100%;
    object-fit: cover;
    -webkit-transition: all 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
    transition: all 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
    transition: transform 500ms ease;
}

.application-slider-item:hover img {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
    -webkit-transition: all 2s cubic-bezier(0.3, 1, 0.35, 2) 0s;
    transition: all 2s cubic-bezier(0.3, 1, 0.35, 2) 0s;
}

.application-slider-item .application-slider-image::before {
    background: linear-gradient(180deg, rgba(8, 20, 32, 0.0001) 0%, #000 110%);
    mix-blend-mode: multiply;
    opacity: 0.6;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    position: absolute;
    content: "";
    z-index: 9;
}

.application-slider-item .application-slider-image .application-slider-description {
    display: block;
    position: absolute;
    bottom: 70px;
    left: 0;
	right: 0;
    z-index: 10;
    color: #FFF;
    font-size: 16px;
    line-height: 22px;
    padding: 0px 25px;
	opacity: 0;
	transition: 0.5s;
}

.application-slider-item .application-slider-image .application-slider-price {
    display: block;
    position: absolute;
    bottom: 28px;
    left: 0;
    right: 0;
    z-index: 10;
    color: #FFF;
    font-size: 20px;
    line-height: 22px;
    padding: 0px 25px;
    opacity: 0;
    transition: 0.5s;
}

.application-slider-item:hover .application-slider-image::before {
	opacity: 1
}

.application-slider-item:hover .application-slider-description, .application-slider-item:hover .application-slider-price {
	opacity: 1
}

.application-slider-item .application-slider-content {
	display: block;
	position: absolute;
	bottom: 35px;
	padding: 0px 25px;
	max-width: 80%;
	z-index: 10;
	transition: 0.3s;
	opacity: 1;
}

.application-slider-item:hover  .application-slider-content {
	opacity: 0
}

.application-slider-item .application-slider-content h5 {
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 22px;
    margin: 0;
    overflow: hidden;
    font-weight: 500;
	color: #FFF;
}

.product_slider_promo {
	background-color: #f6f7fa;
}

.product_slider_promo .swiper-slide {
	overflow: hidden;
}

.product_slider_promo_image { 
	display: block;
    height: 0;
    width: 100%;
    height: 400px;
    padding-top: 0;
    overflow: hidden;
    position: relative;
}

@media (min-width: 991px) { 
    .product_slider_promo_image { 
      clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
      display: block;
      height: 0;
      width: 100%;
      height: 400px;
      padding-top: 0;
      overflow: hidden;
      position: relative;
   }
}

.product_slider_promo_image img {
    position: absolute;
    top: 50%;
    left: 50%;
    object-fit: cover;
    max-width: none;
    max-height: none;
    width: 100% !important;
    height: 100% !important;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-height: 100%;
    max-width: 100%;
    padding: 0 30px;
}

.product_slider_promo_content {
	padding: 0 30px;
}

.product_slider_promo_content h2 {
	font-size: 35px;
	line-height: 40px;
	letter-spacing: -1px;
}

.product_slider_promo_content p {
	font-size: 17px;
	    padding-bottom: 20px;
}

@media (min-width: 991px) { 
    .product_slider_promo_image img {
		padding: 0;
	}

	.product_slider_promo_content {
		padding: 0;
		padding-right: 20px;
	}
}

@media (min-width: 1799px) { 
	.product_slider_promo_content {
		padding: 0;
		padding-right: 30px;
	}
}

@media (min-width: 1920px) { 
	.product_slider_promo_content {
		padding: 0;
		padding-right: 100px;
	}
}

@media (min-width: 2400px) { 
	.product_slider_promo_content {
		padding: 0;
		padding-right: 400px;
	}
}


.product_slider_promo > .swiper-pagination-bullets {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    z-index: 12;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.product_slider_promo > .swiper-pagination {
    text-align: right;
    transition: .3s opacity;
    transform: translate3d(0,0,0);
    z-index: 10;
    max-width: 1774px;
	margin: 0 auto;
    position: relative;
	margin-top: -30px;
	padding-right: 15px;
    padding-left: 15px;
}

.product_slider_promo .swiper-pagination-bullets {
    bottom: 20px;
    left: 0;
    width: 100%;
    z-index: 100;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.product_slider_promo .swiper-pagination-bullet {
    display: inline-block;
    border-radius: 9999px;
    width: 12px;
    height: 12px;
    background-color: transparent;
    border: 1px solid var(--dark-blue);
    opacity: 1;
    cursor: pointer;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.product_slider_promo .swiper-pagination-bullet:hover {
	background-color: transparent;
}
.product_slider_promo .swiper-pagination-bullet-active:hover,
.product_slider_promo .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--dark-blue);
    width: 40px;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.product_slider_promo .swiper-pagination-bullet:active,
.product_slider_promo .swiper-pagination-bullet:focus {

}
.product-tab-block {
    padding: 60px 0 60px;
    font-family: 'Nunito Sans', sans-serif;
}

.product-tabs:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    pointer-events: none;
    width: 70px;
    height: 30px;
    background: -webkit-gradient(linear,right top,left top,color-stop(40%,#fff),to(hsla(0,0%,100%,0)));
    background: -webkit-linear-gradient(right,#fff 40%,hsla(0,0%,100%,0));
    background: -o-linear-gradient(right,#fff 40%,hsla(0,0%,100%,0) 100%);
    background: linear-gradient(270deg,#fff 40%,hsla(0,0%,100%,0));
}

.product-tabs .swiper-wrapper.nav.nav-tabs  {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
    flex-wrap: nowrap;
    border: none;
}

.product-tabs:before {
    content: "";
    position: absolute;
    top: 30px;
    z-index: -1;
    pointer-events: none;
    width: 100%;
    height: 2px;
    background: #ecf1f7;
}

.product-tabs .swiper-slide {
    width: auto;
}

.product-tabs .nav-item {
    margin: 0px 20px 7px 0;
    padding: 0;
    border: 0;
    height: 25px;
}

.product-tabs .nav-item:last-child {
    margin-right: 80px;
}

.product-tabs .nav-link {
    position: relative;
    border: 0;
    margin: 0;
    color: #000;
    font-size: 20px;
    font-weight: 600;
    -webkit-transition: color .2s ease-in;
    -o-transition: color .2s ease-in;
    transition: color .2s ease-in;
}

.product-tabs .nav-link:active, .product-tabs .nav-link:focus, .product-tabs .nav-link:hover {
    color: #da0d32 !important
}

.product-tabs .nav-link.active {
    color: #000 !important
}

.product-tabs .nav-link:before {
    left: 0;
    width: 100%;
    background: #ecf1f7
}

.product-tabs .nav-link:after,.product-tabs .nav-link:before {
    content: "";
    position: absolute;
    bottom: -10px;
    height: 2px;
}

.product-tabs .nav-link:after {
    left: 0;
    width:100%;
    background-color: #da0d32;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: -webkit-transform .2s ease-in;
    transition: -webkit-transform .2s ease-in;
    -o-transition: transform .2s ease-in;
    transition: transform .2s ease-in;
    transition: transform .2s ease-in,-webkit-transform .2s ease-in
}

.product-tabs .nav-link.active:after {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-transition: -webkit-transform .2s ease-out;
    transition: -webkit-transform .2s ease-out;
    -o-transition: transform .2s ease-out;
    transition: transform .2s ease-out;
    transition: transform .2s ease-out,-webkit-transform .2s ease-out
}

.product-tabs .tab-pane {
    padding-top: 40px;
    color: #000;
    font-size: 15px;
}

.product-tabs .tab-pane h1, .product-tabs .tab-pane h2,  .product-tabs .tab-pane h3, .product-tabs .tab-pane h4, .product-tabs .tab-pane h5, .product-tabs .tab-pane h6 {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
}

.product_application h1, .product_application h2,  .product_application h3, .product_application h4, .product_application h5, .product_application h6 {
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
}

.product-tabs .tab-pane p, .product_application p {
    padding-bottom: 20px;
}

.product-tabs .tab-pane table {
    margin-top: -0.5rem;
}

.tabs-gallery-five .swiper-slide {
    width: 100%;
    margin-right: 30px;
}

@media (min-width: 576px) { 
  .tabs-gallery-five .swiper-slide {
    width: 50%;
    width: calc(100%/2 - 15px);
    margin-right: 30px;
  }
}

@media (min-width: 992px) { 
    .tabs-gallery-five .swiper-slide {
    width: 33.33%;
    width: calc(100%/3 - 20px);
    margin-right: 30px;
  }
}

@media (min-width: 1299px) { 
  .tabs-gallery-five .swiper-slide {
    width: 25%;
    width: calc(100%/4 - 22.5px);
    margin-right: 30px;
  }
}

@media (min-width: 1699px) { 
  .tabs-gallery-five .swiper-slide {
    width: 20%;
    width: calc(100%/5 - 24px);
    margin-right: 30px;
  }
}

.tabs-gallery-five .swiper-slide:last-child {
  margin-right: 0;
}

.tabs-gallery-five .img-wrap img {
  display: block;
    width: 100%;
    object-fit: cover;
}

.tab-gallery .swiper-buttons {
    padding: 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  justify-content: flex-end;
}

.tab-gallery .swiper-button-prev-i, .tab-gallery .swiper-button-next-i {
    position: static;
    margin: 30px 0;
    width: 24px;
    height: 24px;
    -webkit-transform: none;
    transform: none;
    outline: 0;
    transition: .2s ease;
    text-decoration: none;
}

.tab-gallery .swiper-button-prev-i.swiper-button-disabled, .tab-gallery .swiper-button-next-i.swiper-button-disabled {
    display: none;
}

.tab-gallery .swiper-button-next-i {
    margin-left: 40px;
}

.tab-gallery .icon {
    width: 100%;
    height: 100%;
    fill: #231f20;
}

.tab-gallery .icon:hover {
    fill: #ef233c;
    cursor: pointer;
}

.tab-gallery .swiper-button-next-i:hover {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
}

.tab-gallery .swiper-button-prev-i:hover {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
}



.product-tabs .js-color-image {
    width: 100%;
    height: 0;
    padding-top: 72.2%;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transition: background .4s ease-out;
    -o-transition: background .4s ease-out;
    transition: background .4s ease-out;
}

.product-tabs .js-prof:hover, .product-tabs .js-col:hover {
    cursor: pointer;
}

.product-tabs .btn-js {
  padding: 0 15px;
  margin-right: 10px;
}

.product-tabs .js-prof img, .product-tabs .js-col img, .product-tabs .btn-js {
  border: 2px solid #FFF;
  transition: border-color .2s ease;  
}


.product-tabs .js-prof:hover img, .product-tabs .js-col:hover img, .product-tabs .btn-js:hover, .product-tabs .js-prof.active img, .product-tabs .js-col.active img, .product-tabs .btn-js.active {
    border: 2px solid #da0d32;
}

.pulse {
    position: absolute;
    height: 1rem;
    width: 1rem;
    border-radius: 9999px
}

.pulse:before {
    -webkit-animation: Pulse 3s ease-out infinite;
    animation: Pulse 3s ease-out infinite
}

.pulse:after,.pulse:before {
    content: "";
    border: 1px solid #000;
    position: absolute;
    height: 1rem;
    width: 1rem;
    border-radius: 9999px;
    opacity: 0
}

.pulse:after {
    -webkit-animation: Pulse 3s ease-out 1.5s infinite;
    animation: Pulse 3s ease-out 1.5s infinite
}

@-webkit-keyframes Pulse {
    0% {
        top: 0;
        left: 0;
        height: 1rem;
        width: 1rem;
        opacity: 0
    }

    1% {
        top: 0;
        left: 0;
        height: 1rem;
        width: 1rem;
        opacity: 1
    }

    99% {
        top: -5rem;
        left: -5rem;
        height: 11rem;
        width: 11rem;
        opacity: 0
    }

    to {
        top: 0;
        left: 0;
        height: 1rem;
        width: 1rem;
        opacity: 0
    }
}

@keyframes Pulse {
    0% {
        top: 0;
        left: 0;
        height: 1rem;
        width: 1rem;
        opacity: 0
    }

    1% {
        top: 0;
        left: 0;
        height: 1rem;
        width: 1rem;
        opacity: 1
    }

    99% {
        top: -5rem;
        left: -5rem;
        height: 11rem;
        width: 11rem;
        opacity: 0
    }

    to {
        top: 0;
        left: 0;
        height: 1rem;
        width: 1rem;
        opacity: 0
    }
}

.block-image-on-text-image img{
    height: auto;
    max-width: 100%;
}

.block-image-on-text-content {
    background: #F6F7FA;
    padding: 30px 25px 30px 25px;

}

@media (min-width: 1200px) {
    .block-image-on-text-image {
        margin-right: -270px;
    }
    .block-image-on-text-content {
        padding: 60px 50px 60px 50px;
    }
}

.block-image-on-text-content p {
    color: #000;
}

.product-tabs .tab-pane p.block-image-on-text-intro {
    padding-bottom: 0;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    font-family: "Jost", "Arial", sans-serif;
}

.block-image-on-text-price {
    font-size: 22px;
    line-height: 45px;
}
.block-image-on-text-price span{
    font-size: 45px;
}
.product-section {
    padding: 30px 0 30px;
    font-family: 'Nunito Sans', sans-serif;
}

.section-bottom-0 {
    padding-bottom: 0;
}

.section-top-0 {
    padding-top: 0;
}

.section-top-30 {
    padding-top: 30px;
}

 .tabs-sale .swiper-slide {
    width: 100%;
    margin-right: 30px;
 }

@media (min-width: 768px) { 
  .tabs-sale .swiper-slide {
    width: 50%;
    width: calc(100%/2 - 15px);
    margin-right: 30px;
  }
}

@media (min-width: 992px) { 
    .tabs-sale .swiper-slide {
    width: 33.33%;
    width: calc(100%/3 - 20px);
    margin-right: 30px;
  }
}

@media (min-width: 1200px) { 
  .tabs-sale .swiper-slide {
    width: 25%;
    width: calc(100%/4 - 22.5px);
    margin-right: 30px;
  }
}

.sale-slider-item, .news-slider-item {
    position: relative;
}

.sale-slider-item .sale-slider-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.sale-slider-item .sale-slider-image img, .news-slider-item .news-slider-image img {
    width: 100%;
    object-fit: cover;
    -webkit-transition: all 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
    transition: all 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
    transition: transform 500ms ease;
}

.sale-slider-item:hover img, .news-slider-item:hover img {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
    -webkit-transition: all 2s cubic-bezier(0.3, 1, 0.35, 2) 0s;
    transition: all 2s cubic-bezier(0.3, 1, 0.35, 2) 0s;
}

.sale-slider-item .sale-slider-image::before {
    background: linear-gradient(180deg, rgba(8, 20, 32, 0.0001) 0%, #000 110%);
    mix-blend-mode: multiply;
    opacity: 0.7;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    position: absolute;
    content: "";
    z-index: 9;
}

.news-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #F6F7FA 100%);
}

.tabs-news .swiper-slide {
    width: 100%;
    margin-right: 30px;
}

@media (min-width: 768px) { 
  .tabs-news .swiper-slide {
    width: 50%;
    width: calc(100%/2 - 15px);
    margin-right: 30px;
  }
}

@media (min-width: 1200px) { 
  .tabs-news .swiper-slide {
    width: 33.33%;
    width: calc(100%/3 - 20px);
    margin-right: 30px;
  }
}

.tabs-news .swiper-slide:last-child, .tabs-sale .swiper-slide:last-child {
  margin-right: 0;
}

.news-slider-item .news-slider-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.swiper-slide-visible .news-slider-item .news-slider-image::before {
    opacity: 1;
    background: -webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.5)),color-stop(26.52%,transparent),color-stop(70.42%,transparent),to(rgba(0,0,0,.5)));
    background: -webkit-linear-gradient(top,rgba(0,0,0,.5),transparent 26.52%,transparent 70.42%,rgba(0,0,0,.5));
    background: -o-linear-gradient(top,rgba(0,0,0,.5) 0,transparent 26.52%,transparent 70.42%,rgba(0,0,0,.5) 100%);
    background: linear-gradient(180deg,rgba(0,0,0,.5),transparent 26.52%,transparent 70.42%,rgba(0,0,0,.5));
    mix-blend-mode: multiply;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    position: absolute;
    content: "";
    z-index: 9;
}

.news-date {
    display: block;
    position: absolute;
    top: 30px;
    left: 20px;
    z-index: 10;
    color: #FFF;
    font-size: 14px;
    font-weight: 700;
}

.news-slider-item .news-slider-image p {
    display: block;
    position: absolute;
    top: 27px;
    right: 20px;
    z-index: 10;
    max-width: 55%;
    text-align: right;
}

.news-slider-item .news-slider-image p span {
    display: inline-block;
    color: #FFF;
    padding: 2px 8px;
    margin-left: 15px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
    background: #e52233;
    border-radius: 4px;
}

.sale-slider-item .sale-slider-content, .news-slider-item .news-slider-content {
    padding: 0px 20px 30px;
    margin-top: -156px;
    z-index: 12;
    bottom: 0;
    position: absolute;
}

.news-slider-item .news-slider-content {
    padding: 0px 20px 30px;
}

.sale-slider-item .sale-slider-content p {
    color: #FFF;
    font-weight: 900;
}

.sale-slider-item .sale-slider-content h5 {
    color: #FFF;
    font-size: 25px;
    margin: 0;
    margin-bottom: 10px;
    font-weight: 500;
}

.news-slider-item .news-slider-content h5 {
    color: #FFF;
    font-size: 20px;
    margin: 0;
    margin-bottom: 0;
    overflow: hidden;
    font-weight: 500;
}

.sale-slider-item p.sale-slider-description {
    font-weight: 500;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-height: 22px;
    min-height: 66px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.tab-gallery .swiper-buttons {
    padding: 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  justify-content: flex-end;
}

.tab-gallery .swiper-button-prev-i, .tab-gallery .swiper-button-next-i {
    position: static;
    margin: 30px 0;
    width: 24px;
    height: 24px;
    -webkit-transform: none;
    transform: none;
    outline: 0;
    transition: .2s ease;
    text-decoration: none;
}

.tab-gallery .swiper-button-prev-i.swiper-button-disabled, .tab-gallery .swiper-button-next-i.swiper-button-disabled {
    display: none;
    opacity: 0;
    cursor: default;
}

.tab-gallery .swiper-button-next-i {
    margin-left: 40px;
}

.tab-gallery .icon {
    width: 100%;
    height: 100%;
    fill: #231f20;
}

.tab-gallery .icon:hover {
    fill: #ef233c;
    cursor: pointer;
}

.tab-gallery .swiper-button-next-i:hover {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
}

.tab-gallery .swiper-button-prev-i:hover {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
}

.calculator-right-bottom-block {
  position: fixed;
  right: 20px;
  bottom: 20px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 10px;
  z-index: 10;
  box-shadow: none;
  background-color: #ef233c;
  -webkit-animation: fadeInFromNone 1.5s ease-out;
  -moz-animation: fadeInFromNone 1.5s ease-out;
  -o-animation: fadeInFromNone 1.5s ease-out;
  animation: fadeInFromNone 1.5s ease-out;
    -moz-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    -webkit-transition: all .5s ease-out;
    -ms-transition: all .5s ease-out;
    transition: all .5s ease-out;
}

.calculator-right-bottom-block img {
  height: 100%;
  width: 100%;
  padding: 7px
}

.calculator-right-bottom-block:hover {
  background-color: #aa1929;
}

@-webkit-keyframes fadeInFromNone {
    0% {
        display: none;
        opacity: 0;
    }
    1% {
        display: block;
        opacity: 0;
    }
    100% {
        display: block;
        opacity: 1;
    }
}
@-moz-keyframes fadeInFromNone {
    0% {
        display: none;
        opacity: 0;
    }
    1% {
        display: block;
        opacity: 0;
    }
    100% {
        display: block;
        opacity: 1;
    }
}
@-o-keyframes fadeInFromNone {
    0% {
        display: none;
        opacity: 0;
    }
    1% {
        display: block;
        opacity: 0;
    }
    100% {
        display: block;
        opacity: 1;
    }
}
@keyframes fadeInFromNone {
    0% {
        display: none;
        opacity: 0;
    }
    1% {
        display: block;
        opacity: 0;
    }
    100% {
        display: block;
        opacity: 1;
    }
}

.chat-right-bottom-block {
  position: fixed;
  right: 20px;
  bottom: 90px;
  height: auto;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 10;
  box-shadow: none;
  -webkit-animation: fadeInFromNone 1.5s ease-out;
  -moz-animation: fadeInFromNone 1.5s ease-out;
  -o-animation: fadeInFromNone 1.5s ease-out;
  animation: fadeInFromNone 1.5s ease-out;
  -moz-transition: all .5s ease-out;
  -o-transition: all .5s ease-out;
  -webkit-transition: all .5s ease-out;
  -ms-transition: all .5s ease-out;
  transition: all .5s ease-out;
}

.chat-right-bottom-block .telegram, .chat-right-bottom-block .whatsapp {
    position: relative;
    height: 50px;
    display: block;
    width: 50px;
    right: 0;
    bottom: 0;
}

.chat-right-bottom-block .whatsapp {
    bottom: 20px;
}

.chat-right-bottom-block .telegram:hover img, .chat-right-bottom-block .whatsapp:hover img {
	filter: contrast(90%);
}

.chat-right-bottom-block .telegram img, .chat-right-bottom-block .whatsapp img {
    height: 50px;
    width: 50px;
    border-radius: 10px;
	filter: contrast(110%);
	-moz-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    -webkit-transition: all .5s ease-out;
    -ms-transition: all .5s ease-out;
    transition: all .5s ease-out;
}

.hr-block .hr-product, .hr-bottom{
    border: none;
    height: 1px;
    margin: 20px 0;
    background-image: linear-gradient(to right, #FFF, #edeeee, #FFF);
}

.hr-block .hr-product:last-of-type {
    display: none;
}

.marquee {
    position: relative;
    width: 100vw;
    max-width: 100%;
    height: 100px;
    overflow: hidden;
    font-size: 120px;
    font-weight: 500;
    margin-top: -60px;
    background-color: #F6F7FA;
    font-family: 'Nunito Sans', sans-serif;
    text-transform: uppercase
}

.marquee .track {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 140s linear infinite
}

.marquee .content {
    opacity: 0.1;
    line-height: 1.2;
    font-weight: 700;
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-30%)
    }
}