/*
Author: Venore Creative Worldwide
Email: info@venorecreative.com
File: style.css
*/


/* IMPORT CSS */
@import url(fonts.css);
@import url(normalize.css);
@import url(responsive.css);
/* IMPORT CSS */



/* CONFIGRATION */
:root{
  --font-text-family: 'Montserrat', sans-serif;
  --font-text-weight: normal;
  --font-text-size-xs: 12px;
  --font-text-size-sm: 14px;
  --font-text-size-md: 16px;
  --font-text-size-lg: 20px;
  --font-text-size-xl: 24px;
  --font-text-size-xxl: 30px;
  --font-text-size-3xl: 40px;
  --font-text-size-4xl: 50px;
  --font-text-line-height: 1.4;

  --body-bg: #1A1A1A;
  --body-header-top-bg: #1A1A1A;
  --body-footer-bottom-bg: #1A1A1A;
  --text-color: #FFFFFF;
  --black-color: #252525;
  --dark-gray-color: #252525;
  --gray-color: #1F2540;
  --blue-color: #0058A5;
  --white-color: #FFFFFF;
  --light-gray-to-blue-color: #E7EEF8;
  --light-gray-to-gray-color: #E7EEF8;
  --light-gray-to-dark-gray: #8D9093;
  --page-nav-pill-gray: #E7EEF8;
  --gray-to-dark-gray-color: #F5F8FD;
  --gray-to-light-gray-color: #F5F8FD;
  --gray-to-gray-color: #F5F8FD;
  --orange-color: #FFCB00;
  --red-color: #DB1919;
  --green-color: #007B52;
  --box-color: #FFFFFF;
  --label-color: #575757;
  --risk-color: #707070;

  --border-color-light: #E7EEF8;
  --border-color-dark: #CDD9EA;

  --scrollbar-bg: #f8f8f8;
  --scrollbar-thumb: var(--blue-color);

  --border-radius-xs:5px;
  --border-radius-sm:10px;
  --border-radius-md:15px;
  --border-radius-lg:20px;
  --border-radius-xl:25px;
  --border-radius-xxl:30px;

  --box-shadow-other-xs: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  --box-shadow-other-sm: rgba(149, 157, 165, 0.2) 0px 7px 29px 0px;
  --box-shadow-other-md: rgba(149, 157, 165, 0.2) 0px 18px 50px -10px;
  --box-shadow-other-lg: rgba(149, 157, 165, 0.12) 0px 2px 4px 0px, rgba(149, 157, 165, 0.32) 0px 2px 16px 0px;
}
/* CONFIGRATION */


/* OTHER COMPONENT */
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-thumb {
    background: var(--scrollbar-thumb);
}
::-webkit-scrollbar-track {
    background: var(--scrollbar-bg);
}
* {
	margin: 0;
	padding: 0;
	font-family: inherit;
	outline: none!important;
	list-style: none!important
}
*:after,
*:before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
	margin: 0
}
html,
body {
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-o-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-smooth: antialiased;
	scroll-behavior: smooth;
	overflow-x: hidden;
}
body {
	background-color: var(--body-bg)!important;
	color: var(--text-color)!important;
	font-family: var(--font-text-family)!important;
	font-size: var(--font-text-size-sm)!important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: var(--font-text-size-lg);
	color: var(--text-color);
	font-family: var(--font-text-family)!important;
	font-weight: bold;
  margin-bottom: 0px;
  line-height: var(--font-text-title-line-height);
}
p {
	color: var(--text-color);
	line-height: var(--font-text-line-height);
	margin-bottom: 0px;
}
a {
	color: var(--text-color);
	text-decoration: none!important;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all .3s ease-in-out;
	outline: none!important;
	box-shadow: none!important
}
a:hover {
	color: var(--text-color);
	text-decoration: none!important;
	transition: all 0.3s ease-in-out
}
a:focus {
	outline: none!important;
	box-shadow: none!important
}
img {
	max-width: 100%
}
button {
	-webkit-transition: all 0.3s ease-in-out;
	transition: all .3s ease-in-out;
	outline: none!important;
}
ul,
li,
ol {
	margin: 0;
	padding: 0
}
fieldset {
	border: 0 none;
	margin: 0 auto;
	padding: 0
}
label {
	color: var(--text-color);
}
input:focus,
textarea:focus {
	outline: none!important;
	box-shadow: none!important
}
.fs-4{
  font-size: 4px!important
}
.fs-5{
  font-size: 5px!important
}
.fs-6{
  font-size: 6px!important
}
.fs-7{
  font-size: 7px!important
}
.fs-8{
  font-size: 8px!important
}
.fs-9{
  font-size: 9px!important
}
.fs-10{
  font-size: 10px!important
}
.fs-11{
  font-size: 11px!important
}
.fs-12{
  font-size: 12px!important
}
.fs-13{
  font-size: 13px!important
}
.fs-14{
  font-size: 14px!important
}
.fs-15{
  font-size: 15px!important
}
.fs-16{
  font-size: 16px!important
}
.fs-17{
  font-size: 17px!important
}
.fs-18{
  font-size: 18px!important
}
.fs-19{
  font-size: 19px!important
}
.fs-20{
  font-size: 20px!important
}
.fs-21{
  font-size: 21px!important
}
.fs-22{
  font-size: 22px!important
}
.fs-23{
  font-size: 23px!important
}
.fs-24{
  font-size: 24px!important
}
.fs-25{
  font-size: 25px!important
}
.fs-26{
  font-size: 26px!important
}
.fs-27{
  font-size: 27px!important
}
.fs-28{
  font-size: 28px!important
}
.fs-29{
  font-size: 29px!important
}
.fs-30{
  font-size: 30px!important
}
.fs-31{
  font-size: 31px!important
}
.fs-32{
  font-size: 32px!important
}
.fs-33{
  font-size: 33px!important
}
.fs-34{
  font-size: 34px!important
}
.fs-35{
  font-size: 35px!important
}
.fs-36{
  font-size: 36px!important
}
.fs-37{
  font-size: 37px!important
}
.fs-38{
  font-size: 38px!important
}
.fs-39{
  font-size: 39px!important
}
.fs-40{
  font-size: 40px!important
}
.fw-100{
  font-weight: 100!important
}
.fw-200{
  font-weight: 200!important
}
.fw-300{
  font-weight: 300!important
}
.fw-400{
  font-weight: 400!important
}
.fw-500{
  font-weight: 500!important
}
.fw-600{
  font-weight: 600!important
}
.fw-700{
  font-weight: 700!important
}
.fw-800{
  font-weight: 800!important
}
.fw-900{
  font-weight: 900!important
}
.fw-normal{
  font-weight: normal!important
}
.fw-bold{
  font-weight: bold!important
}
.text-height-reset{
  line-height: 1!important
}
.text-height-0 {
  line-height: 1.2!important;
}
.text-height-1 {
  line-height: 1.5!important;
}
.text-height-2 {
  line-height: 2!important;
}
.text-height-3 {
  line-height: 2.5!important;
}
.text-height-4 {
  line-height: 3!important;
}
.text-height-5 {
  line-height: 3.5!important;
}
.text-justify{
  text-align: justify!important;
}
.m-6{
  margin:5rem!important;
}
.mt-6{
  margin-top:5rem!important;
}
.mb-6{
  margin-bottom:5rem!important;
}
.ms-6{
  margin-left:5rem!important;
}
.me-6{
  margin-right:5rem!important;
}
.my-6{
  margin:5rem 0rem!important;
}
.mx-6{
  margin:0rem 5rem!important;
}
.m-7{
  margin:7rem!important;
}
.mt-7{
  margin-top:7rem!important;
}
.mb-7{
  margin-bottom:7rem!important;
}
.ms-7{
  margin-left:7rem!important;
}
.me-7{
  margin-right:7rem!important;
}
.my-7{
  margin:7rem 0rem!important;
}
.mx-7{
  margin:0rem 7rem!important;
}
.mt-5px{margin-top:5px!important;}
.mt-10px{margin-top:10px!important;}
.mt-15px{margin-top:15px!important;}
.mt-20px{margin-top:20px!important;}
.mt-25px{margin-top:25px!important;}
.mt-30px{margin-top:30px!important;}
.mt-35px{margin-top:35px!important;}
.mt-40px{margin-top:40px!important;}
.mt-45px{margin-top:45px!important;}
.mt-50px{margin-top:50px!important;}
.mt-55px{margin-top:55px!important;}
.mt-60px{margin-top:60px!important;}
.mt-65px{margin-top:65px!important;}
.mt-70px{margin-top:70px!important;}
.mt-75px{margin-top:75px!important;}
.mt-80px{margin-top:80px!important;}
.mt-85px{margin-top:85px!important;}
.mt-90px{margin-top:90px!important;}
.mt-95px{margin-top:95px!important;}
.mt-100px{margin-top:100px!important;}
.mb-5px {margin-bottom:5px!important;}
.mb-10px{margin-bottom:10px!important;}
.mb-15px{margin-bottom:15px!important;}
.mb-20px{margin-bottom:20px!important;}
.mb-25px{margin-bottom:25px!important;}
.mb-30px{margin-bottom:30px!important;}
.mb-35px{margin-bottom:35px!important;}
.mb-40px{margin-bottom:40px!important;}
.mb-45px{margin-bottom:45px!important;}
.mb-50px{margin-bottom:50px!important;}
.mb-55px{margin-bottom:55px!important;}
.mb-60px{margin-bottom:60px!important;}
.mb-65px{margin-bottom:65px!important;}
.mb-70px{margin-bottom:70px!important;}
.mb-75px{margin-bottom:75px!important;}
.mb-80px{margin-bottom:80px!important;}
.mb-85px{margin-bottom:85px!important;}
.mb-90px{margin-bottom:90px!important;}
.mb-95px{margin-bottom:95px!important;}
.mb-100px{margin-bottom:100px!important;}
.ms-5px {margin-left:5px!important;}
.ms-10px{margin-left:10px!important;}
.ms-15px{margin-left:15px!important;}
.ms-20px{margin-left:20px!important;}
.ms-25px{margin-left:25px!important;}
.ms-30px{margin-left:30px!important;}
.ms-35px{margin-left:35px!important;}
.ms-40px{margin-left:40px!important;}
.ms-45px{margin-left:45px!important;}
.ms-50px{margin-left:50px!important;}
.ms-55px{margin-left:55px!important;}
.ms-60px{margin-left:60px!important;}
.ms-65px{margin-left:65px!important;}
.ms-70px{margin-left:70px!important;}
.ms-75px{margin-left:75px!important;}
.ms-80px{margin-left:80px!important;}
.ms-85px{margin-left:85px!important;}
.ms-90px{margin-left:90px!important;}
.ms-95px{margin-left:95px!important;}
.ms-100px{margin-left:100px!important;}
.me-5px {margin-right:5px!important;}
.me-10px{margin-right:10px!important;}
.me-15px{margin-right:15px!important;}
.me-20px{margin-right:20px!important;}
.me-25px{margin-right:25px!important;}
.me-30px{margin-right:30px!important;}
.me-35px{margin-right:35px!important;}
.me-40px{margin-right:40px!important;}
.me-45px{margin-right:45px!important;}
.me-50px{margin-right:50px!important;}
.me-50px{margin-right:50px!important;}
.me-55px{margin-right:55px!important;}
.me-60px{margin-right:60px!important;}
.me-65px{margin-right:65px!important;}
.me-70px{margin-right:70px!important;}
.me-75px{margin-right:75px!important;}
.me-80px{margin-right:80px!important;}
.me-85px{margin-right:85px!important;}
.me-90px{margin-right:90px!important;}
.me-95px{margin-right:95px!important;}
.me-100px{margin-right:100px!important;}

.pt-5px{padding-top:5px!important;}
.pt-10px{padding-top:10px!important;}
.pt-15px{padding-top:15px!important;}
.pt-20px{padding-top:20px!important;}
.pt-25px{padding-top:25px!important;}
.pt-30px{padding-top:30px!important;}
.pt-35px{padding-top:35px!important;}
.pt-40px{padding-top:40px!important;}
.pt-45px{padding-top:45px!important;}
.pt-50px{padding-top:50px!important;}
.pt-55px{padding-top:55px!important;}
.pt-60px{padding-top:60px!important;}
.pt-65px{padding-top:65px!important;}
.pt-70px{padding-top:70px!important;}
.pt-75px{padding-top:75px!important;}
.pt-80px{padding-top:80px!important;}
.pt-85px{padding-top:85px!important;}
.pt-90px{padding-top:90px!important;}
.pt-95px{padding-top:95px!important;}
.pt-100px{padding-top:100px!important;}
.pb-5px {padding-bottom:5px!important;}
.pb-10px{padding-bottom:10px!important;}
.pb-15px{padding-bottom:15px!important;}
.pb-20px{padding-bottom:20px!important;}
.pb-25px{padding-bottom:25px!important;}
.pb-30px{padding-bottom:30px!important;}
.pb-35px{padding-bottom:35px!important;}
.pb-40px{padding-bottom:40px!important;}
.pb-45px{padding-bottom:45px!important;}
.pb-50px{padding-bottom:50px!important;}
.pb-55px{padding-bottom:55px!important;}
.pb-60px{padding-bottom:60px!important;}
.pb-65px{padding-bottom:65px!important;}
.pb-70px{padding-bottom:70px!important;}
.pb-75px{padding-bottom:75px!important;}
.pb-80px{padding-bottom:80px!important;}
.pb-85px{padding-bottom:85px!important;}
.pb-90px{padding-bottom:90px!important;}
.pb-95px{padding-bottom:95px!important;}
.pb-100px{padding-bottom:100px!important;}
.ps-5px {padding-left:5px!important;}
.ps-10px{padding-left:10px!important;}
.ps-15px{padding-left:15px!important;}
.ps-20px{padding-left:20px!important;}
.ps-25px{padding-left:25px!important;}
.ps-30px{padding-left:30px!important;}
.ps-35px{padding-left:35px!important;}
.ps-40px{padding-left:40px!important;}
.ps-45px{padding-left:45px!important;}
.ps-50px{padding-left:50px!important;}
.ps-55px{padding-left:55px!important;}
.ps-60px{padding-left:60px!important;}
.ps-65px{padding-left:65px!important;}
.ps-70px{padding-left:70px!important;}
.ps-75px{padding-left:75px!important;}
.ps-80px{padding-left:80px!important;}
.ps-85px{padding-left:85px!important;}
.ps-90px{padding-left:90px!important;}
.ps-95px{padding-left:95px!important;}
.ps-100px{padding-left:100px!important;}
.pe-5px {padding-right:5px!important;}
.pe-10px{padding-right:10px!important;}
.pe-15px{padding-right:15px!important;}
.pe-20px{padding-right:20px!important;}
.pe-25px{padding-right:25px!important;}
.pe-30px{padding-right:30px!important;}
.pe-35px{padding-right:35px!important;}
.pe-40px{padding-right:40px!important;}
.pe-45px{padding-right:45px!important;}
.pe-50px{padding-right:50px!important;}
.pe-50px{padding-right:50px!important;}
.pe-55px{padding-right:55px!important;}
.pe-60px{padding-right:60px!important;}
.pe-65px{padding-right:65px!important;}
.pe-70px{padding-right:70px!important;}
.pe-75px{padding-right:75px!important;}
.pe-80px{padding-right:80px!important;}
.pe-85px{padding-right:85px!important;}
.pe-90px{padding-right:90px!important;}
.pe-95px{padding-right:95px!important;}
.pe-100px{padding-right:100px!important;}
.p-6{
  padding:5rem!important;
}
.pt-6{
  padding-top:5rem!important;
}
.pb-6{
  padding-bottom:5rem!important;
}
.ps-6{
  padding-left:5rem!important;
}
.pe-6{
  padding-right:5rem!important;
}
.py-6{
  padding:5rem 0rem!important;
}
.px-6{
  padding:0rem 5rem!important;
}
.p-7{
  padding:7rem!important;
}
.pt-7{
  padding-top:7rem!important;
}
.pb-7{
  padding-bottom:7rem!important;
}
.pl-7{
  padding-left:7rem!important;
}
.pr-7{
  padding-right:7rem!important;
}
.py-7{
  padding:7rem 0rem!important;
}
.px-7{
  padding:0rem 7rem!important;
}
.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
	outline: none!important;
	box-shadow: none!important;
	border: 0!important
}
.btn:focus,
.btn:active:focus,
.btn.active:focus {
	box-shadow: none!important;
	outline: none!important;
	border: 0!important
}
.btn.focus,
.btn:focus {
	outline: none!important;
	box-shadow: none!important
}
.btn:focus,
a:focus {
	outline: none!important
}
.navbar-toggler:focus {
	outline: none!important;
	box-shadow: none!important;
}
iframe {
  width: 100%!important;
	border: 0;
	display: block
}
video {
	width: 100%!important
}
.color-text{
  color: var(--text-color)!important;
}
.color-alb{
  color: var(--alb-color)!important;
}
.color-light-gray{
  color: var(--light-gray-to-dark-gray)!important;
}
.color-gray{
  color: var(--gray-color)!important;
}
.color-risk{
  color: var(--risk-color)!important;
}
.border-light{
  border: 1px solid var(--border-color-light)!important;
}
.border-light-down{
  border-bottom: 1px solid var(--border-color-light)!important;
}
.border-light-up{
  border-top: 1px solid var(--border-color-light)!important;
}
.border-dark{
  border: 1px solid var(--border-color-dark)!important;
}
.border-dark-down{
  border-bottom: 1px solid var(--border-color-dark)!important;
}
.border-dark-up{
  border-top: 1px solid var(--border-color-dark)!important;
}
.container,.container-fluid,.custom-container {
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--bs-gutter-x, 0.75rem);
  padding-right: var(--bs-gutter-x, 0.75rem);
  width: 100%
}
.swal2-title{
  font-size: var(--font-text-size-lg)!important;
  font-weight: 400;
  color: var(--black-color)!important;
}
.logo{
  width: 200px;
}
.flexCenter{
  display: flex;
  align-items: center;
  justify-content: center;
}
.flexSpaceAround{
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.flexSpaceBetween{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* OTHER COMPONENT */


/* CUSTOM BUTTON */
.btn-blue{
  font-weight: 600;
  font-size: var(--font-text-size-md);
  background: var(--blue-color);
  border: 1px solid var(--blue-color);
  color: var(--white-color);
  padding:12px 25px;
  border-radius: var(--border-radius-xxl);
  position: relative;
  display: inline-block;
  overflow: hidden;
  z-index: 1;
}
.btn-blue:hover{
  background: var(--blue-color);
  text-decoration: none;
  color: var(--white-color);
  z-index: 1;
}
.btn-blue.sm:hover{
  background: var(--blue-color);
  transform:scale(1.03);
  text-decoration: none;
  color: var(--white-color);
  z-index: 1;
}
.btn-blue.nh:hover{
  background: var(--blue-color);
  transform:scale(1);
  text-decoration: none;
  color: var(--white-color);
  z-index: 1;
}

.btn-white{
  font-weight: 600;
  font-size: var(--font-text-size-md);
  background: var(--white-color);
  border: 1px solid var(--white-color);
  color: var(--blue-color);
  padding:12px 25px;
  border-radius: var(--border-radius-xxl);
  position: relative;
  display: inline-block;
  overflow: hidden;
  z-index: 1;
}
.btn-white:hover{
  background: var(--white-color);
  text-decoration: none;
  color: var(--blue-color);
  z-index: 1;
}
.btn-white.sm:hover{
  background: var(--white-color);
  transform:scale(1.03);
  text-decoration: none;
  color: var(--blue-color);
  z-index: 1;
}
.btn-white.nh:hover{
  background: var(--white-color);
  transform:scale(1);
  text-decoration: none;
  color: var(--blue-color);
  z-index: 1;
}

.btn-white-to-blue{
  font-weight: 600;
  font-size: var(--font-text-size-md);
  background: var(--white-color);
  border: 1px solid var(--white-color);
  color: var(--blue-color);
  padding:12px 25px;
  border-radius: var(--border-radius-xxl);
  position: relative;
  display: inline-block;
  overflow: hidden;
  z-index: 1;
}
.btn-white-to-blue:hover{
  background: var(--blue-color);
  text-decoration: none;
  color: var(--white-color);
  z-index: 1;
}
.btn-white-to-blue.sm:hover{
  background: var(--blue-color);
  transform:scale(1.03);
  text-decoration: none;
  color: var(--white-color);
  z-index: 1;
}
.btn-white-to-blue.nh:hover{
  background: var(--blue-color);
  transform:scale(1);
  text-decoration: none;
  color: var(--white-color);
  z-index: 1;
}

.btn-outline-blue{
  font-weight: 600;
  font-size: var(--font-text-size-md);
  background: transparent;
  border: 1px solid var(--blue-color);
  color: var(--white-color);
  padding:12px 25px;
  border-radius: var(--border-radius-xl);
  position: relative;
  display: inline-block;
  overflow: hidden;
  z-index: 1;
}
.btn-outline-blue:hover{
  background: var(--blue-color);
  text-decoration: none;
  color: var(--white-color);
  z-index: 1;
}
.btn-outline-blue.sm:hover{
  background: var(--blue-color);
  transform:scale(1.03);
  text-decoration: none;
  color: var(--white-color);
  z-index: 1;
}
.btn-outline-blue.nh:hover{
  background: var(--blue-color);
  transform:scale(1);
  text-decoration: none;
  color: var(--white-color);
  z-index: 1;
}

.btn-outline-white{
  font-weight: 600;
  font-size: var(--font-text-size-md);
  background: transparent;
  border: 1px solid var(--white-color);
  color: var(--white-color);
  padding:12px 25px;
  border-radius: var(--border-radius-xl);
  position: relative;
  display: inline-block;
  overflow: hidden;
  z-index: 1;
}
.btn-outline-white:hover{
  background: var(--white-color);
  text-decoration: none;
  color: var(--blue-color);
  z-index: 1;
}
.btn-outline-white.sm:hover{
  background: var(--white-color);
  transform:scale(1.03);
  text-decoration: none;
  color: var(--blue-color);
  z-index: 1;
}
.btn-outline-white.nh:hover{
  background: var(--white-color);
  transform:scale(1);
  text-decoration: none;
  color: var(--blue-color);
  z-index: 1;
}
/* CUSTOM BUTTON */

/* SIDEBAR MENU */
.sidebar-menu{
  display: none;
  position: fixed;
  width: 0%;
  height: 100%;
  z-index: 999999999;
  background: rgba(0,88,165, 0.95);
  box-shadow: var(--box-shadow-other-lg);
  overflow: auto;
}
.sidebar-menu.closed{
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeOutLeft;
  animation-delay: 0s;
}
.sidebar-menu.active{
  display: block;
  width: 400px;
  padding: 25px;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 0s;
}
.sidebar-menu .sidebar-menu-action{
  position: relative;
  margin-bottom: 50px;
}
.sidebar-menu .sidebar-menu-action a, .sidebar-menu .sidebar-menu-action a:hover{
  display: block;
  position: relative;
  text-align: right;
  width: 100%;
}
.sidebar-menu .sidebar-menu-action a svg{
  width: 15px;
  color: var(--text-color);
  fill: var(--text-color);
}
.sidebar-menu .mainMenu{
  position: relative;
}
.sidebar-menu .mainMenu li{
  position: relative;
  margin-bottom: 10px;
}
.sidebar-menu .mainMenu li a{
  position: relative;
  font-size: var(--font-text-size-md);
  color: var(--text-color);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--white-color);
}
.sidebar-menu .mainMenu li a svg{
  width: 40px;
  margin-right: 15px;
}
.sidebar-menu .sidebar-menu-copyright{
  position: absolute;
  bottom: 25px;
  font-size: var(--font-text-size-sm);
  color: var(--text-color);
}
.sidebar-menu .sidebarLogo{
  position: relative;
  display: inline-block;
  margin-top: -70px;
  margin-bottom: 40px;
}
.sidebar-menu .sidebarLogo img{
  width: 140px!important;
}
.sidebar-menu .collapse{
  border: none;
  padding-bottom: 0px;
}
.sidebar-menu .collapse li:last-of-type{
  margin-bottom: 0px;
}
.sidebar-menu .collapse li a::before{
  content: '\f105';
  position: absolute;
  display: inline-block;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: var(--font-text-size-xs);
  color: var(--text-color);
  top: 8px;
  left: 0px;
}
.sidebar-menu .dropdown-menu{
  background: transparent;
}
.sidebar-menu .dropdown-item:focus, .sidebar-menu .dropdown-item:hover{
  background: transparent!important;
}
/* SIDEBAR MENU */

/* HEADER */
.other .header-logo{
  margin-left: 0px!important;
}
header.header-white .logo{
  filter: brightness(0) invert(1);
}
header.header{
  position: relative;
  z-index: 2;
}
header.header.scrolling{
  position: fixed;
  width: 100%;
  background: rgba(0,0,0, 0.8);
  z-index: 99999999;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 7px 29px 0px;
}
header.header.scrolling .header-logo{
  margin-left: 0px;
}
header.header .header-menu{
  padding:25px 0px;
}
header.header .navbar-toggler, header.header .navbar-toggler:focus{
  padding:0px;
  border:none;
  outline: 0;
  box-shadow: none;
}
header.header .mobileSearchBtn, header.header .mobileMenuBtn{
  color: var(--text-color);
  fill: var(--text-color);
}
header.header.header-white .mobileSearchBtn, header.header.header-white .mobileMenuBtn{
  color: var(--white-color);
  fill: var(--white-color);
  width: 25px;
  height: 25px;
}
header.header.header-white .header-more a *{
  color: var(--white-color);
  fill: var(--white-color);
}
header.header .mainNavbar{
  margin:0px;
  padding:0px;
}
header.header .mainMenu{
  margin-bottom: 0px;
}
header.header .mainMenu li{
  margin:0px 5px;
}
header.header .mainMenu li a{
  font-weight: 400;
  color: var(--white-color);
  font-size: var(--font-text-size-md);
  line-height: var(--font-text-line-height);
}
header.header.header-white .mainMenu li a{
  color: var(--white-color);
}
header.header .mainMenu li a:hover{
  color: var(--blue-color);
}
header.header.header-white .mainMenu li a:hover{
  color: var(--blue-color);
}
header.header .mainMenu li ul.dropdown-menu{
  background: var(--blue-color);
  color: var(--white-color);
  font-size: var(--font-text-size-md);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--box-shadow-other-sm);
  border: 1px solid var(--blue-color);
  z-index: 1;
}
header.header .mainMenu li ul.dropdown-menu li{
  margin-left: 0px;
  margin-right: 0px;
  position: relative;
}
header.header .mainMenu li ul.dropdown-menu li a{
  padding:7px 25px;
  color: var(--text-color);
  font-size: var(--font-text-size-md);
  font-weight: var(--font-text-weight);
  line-height: var(--font-text-line-height);
  position: relative;
}
header.header .mainMenu li ul.dropdown-menu li a:hover{
  background: var(--light-gray-color);
  color: #4aabff;
}

header.header .language-menu{
  background: var(--blue-color);
  color: var(--text-color);
  font-size: var(--font-text-size-md);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--box-shadow-other-sm);
  border: 1px solid var(--blue-color);
  min-width: 5rem!important;
  margin-top: 10px!important;
}
header.header .language-menu li{
  margin-left: 0px;
  margin-right: 0px;
  position: relative;
}
header.header .language-menu li a{
  padding:7px 25px;
  color: var(--text-color);
  font-size: var(--font-text-size-md);
  font-weight: var(--font-text-weight);
  line-height: var(--font-text-line-height);
  position: relative;
}
header.header .language-menu li:first-of-type a:first-of-type{
  display: none;
}
header.header .language-menu li a:hover{
  background: var(--light-gray-color);
  color: #4aabff;
}
header.header .languageDropdown.dropdown-toggle::after{
  display: none;
}
.dropdown-menu.show {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeIn;
  animation-delay: 0.3s;
}
.nav-item.dropdown.dropdown-mega {
  position: static;
}
.nav-item.dropdown.dropdown-mega .dropdown-menu {
  background: var(--blue-color);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--box-shadow-other-sm);
  border: 1px solid var(--blue-color);
  width: 100%;
  top: auto;
}
.nav-item.dropdown.dropdown-mega .dropdown-menu ul li{
  margin: 5px 0px;
}
.nav-item.dropdown.dropdown-mega .dropdown-menu ul li.title{
  font-weight: 500;
  color: var(--text-color);
  padding-bottom: 10px;
  border-bottom: 1px solid #4aabff;
}
.nav-item.dropdown.dropdown-mega .dropdown-menu ul li a{
  color: var(--text-color);
  word-wrap: break-word;
  padding-left: 0px;
  padding-right: 0px;
  font-size: var(--font-text-size-sm);
}
.nav-item.dropdown.dropdown-mega .dropdown-menu ul li a:hover{
  background: transparent;
  color: #4aabff;
}

.search-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(0 88 165 / 90%);
  transition: all 0.5s;
  display: none;
}
.search-wrapper.hide {
  opacity: 0;
}
.search-wrapper .search-input-wrapper {
  flex: 1;
  margin: 0 200px;
  display: flex;
  justify-content: center;
  background-color: transparent;
  padding: 18px;
  min-width: 10px;
  max-width: 400px;
  border-bottom: 3px solid var(--white-color);
  transition: all 0.4s;
}
@media screen and (max-width: 576px) {
  .search-wrapper .search-input-wrapper {
    margin: 0 20px;
  }
}
.search-wrapper .search-input-wrapper .search-input {
  flex: 1;
}
.search-wrapper .search-input-wrapper .search-input::placeholder {
  color: var(--white-color);
}
.search-wrapper .search-input-wrapper .search-submit {
  flex-basis: 40px;
  cursor: pointer;
}
.search-wrapper .search-input-wrapper input, .search-wrapper .search-input-wrapper button {
  background-color: transparent;
  border: none;
  font-size: 25px;
  padding: 3px;
  color: var(--white-color);
  min-width: 10px;
}
.search-wrapper .search-input-wrapper input:focus, .search-wrapper .search-input-wrapper button:focus {
  outline: none;
}
.search-wrapper .search-close {
  position: fixed;
  padding: 5px;
  top: 20px;
  right: 20px;
  font-size: 35px;
  color: rgba(238, 238, 238, 0.8);
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.4s;
}
.search-wrapper .search-close:focus {
  outline: none;
}
.search-wrapper .search-close:hover {
  color: var(--white-color);
}
header.header .header-extra{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header.header .lang-btn{
  font-size: var(--font-text-size-md);
  font-weight: 500;
  color: var(--text-color);
}
/* HEADER */

/* OTHER */
section.homeSlide{
  position: relative;
  margin-top: -95px;
}
.headSlide{
  position: relative;
  height: 100%;
}
.headSlide .item{
  padding-top: 110px;
  height: 100vh;
}
.headSlide .item .custom-container{
  height: 100%;
}
section.homeSlide .item::before{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgb(255,255,255);
  background: -moz-linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.75) 100%);
  background: -webkit-linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.75) 100%);
  background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.75) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#000000",GradientType=1);
  z-index: 0;
}
.headSlide .item .row{
  height: 100%;
}
.headSlide.owl-carousel{
  z-index: 0;
}
.headSlide .cover-bg{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  -ms-object-fit: cover;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}
.headSlide .slideBody{
  position: relative;
  padding: 0px;
  z-index: 1;
  padding-left: 1px;
}
.headSlide .slideBody .icon{
  position: relative;
}
.headSlide .slideBody .icon img{
  width: 60px;
}
.headSlide .slideBody .title{
  position: relative;
  font-size: 35px;
  font-weight: 600;
  color: var(--white-color);
  line-height: 1.2;
  margin: 40px 0px;
}
.headSlide .slideBody .desc{
  position: relative;
  font-size: var(--font-text-size-sm);
  font-weight: 400;
  color: var(--text-color);
  line-height: 1.5;
  margin-bottom: 0px;
}
.headSlide .slideBody .moreBtn{
  position: relative;
  margin-top: 40px;
  margin-left: 1px;
}
.headSlide .slideImage{
  position: relative;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
  height: 100%;
}
.headSlide .slideImage .content{
  position: relative;
  bottom: 0px;
  right: 0px;
  width: 250px!important;
  height: 300px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-box-shadow: 0px 10px 140px -20px rgba(0,88,165,1);
  -moz-box-shadow: 0px 10px 140px -20px rgba(0,88,165,1);
  box-shadow: 0px 10px 140px -20px rgba(0,88,165,1);
}
.headSlide .slideImage .content img{
  position: absolute;
  width: 100%;
  height: 100%;
  -ms-object-fit: cover;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: var(--border-radius-md);
  z-index: -1;
}
.headSlide .slideImage .content a{
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  min-height: 300px;
}
.headSlide .slideImage .content a .content-title{
  position: relative;
  width: 100%;
  font-size: var(--font-text-size-lg);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white-color);
  padding: 0px 20px;
  margin-bottom: 0px;
}
.headSlide .slideImage .content a .content-desc{
  position: relative;
  width: 100%;
  font-size: var(--font-text-size-sm);
  font-weight: 400;
  line-height: 1.5;
  color: var(--white-color);
  padding: 0px 20px;
  margin: 20px 0px;
}
.headSlide .slideImage .content a .content-more{
  position: relative;
  width: 100%;
  padding: 0px 20px;
  margin: 0px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all .3s ease-in-out;
}
.headSlide .slideImage .content a:hover .content-more{
  margin-left: 25px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all .3s ease-in-out;
}

.headSlide .owl-item.active .slideBody{
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
.headSlide .owl-item.active .slideImage{
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}
.headSlide .owl-dots{
  text-align: left;
  margin-left: -7px;
  margin-bottom: 5px;
  z-index: 1;
  position: absolute;
  bottom: 10px;
}
.headSlide .owl-dots .owl-dot.active span{
  background: var(--red-color);
  border:1px solid var(--red-color);
  width: 25px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all .3s ease-in-out;
}
.headSlide .owl-dots .owl-dot.active span,
.headSlide .owl-dots .owl-dot:hover span {
  background: var(--red-color);
  border:1px solid var(--red-color);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all .3s ease-in-out;
}
.headSlide .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: transparent;
  border:1px solid var(--light-gray-to-dark-gray);
  background: var(--light-gray-to-dark-gray);
  display: block;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 30px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all .3s ease-in-out;
}
.headSlide .owl-nav{
  position: absolute;
  right: 0px;
  bottom: 30px;
}
.headSlide .owl-nav .owl-prev{
  margin-right: 5px;
}
.headSlide .owl-nav .owl-prev *, .headSlide .owl-nav .owl-next *{
  color: var(--white-color);
  fill: var(--white-color);
}
.headSlide .owl-nav .owl-prev, .headSlide .owl-nav .owl-next{
  background: var(--black-color)!important;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.headSlide .owl-nav .owl-prev
.headSlide .owl-nav .owl-next{
  margin-top:10px
}
.headSlide .owl-nav .owl-prev:hover, .headSlide .owl-nav .owl-next:hover{
  background: var(--red-color)!important;
}


section.newGenerationKitchen{
  position: relative;
  padding: 80px 0px;
  background: var(--body-bg);
}
section.newGenerationKitchen .section-header{
  position: relative;
}
section.newGenerationKitchen .section-header .title{
  position: relative;
  font-size: var(--font-text-size-3xl);
  font-weight: 600;
  color: var(--white-color);
  line-height: 1.2;
  text-align: center;
}
section.newGenerationKitchen .image-content{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
section.newGenerationKitchen .image-content .left-content,
section.newGenerationKitchen .image-content .center-content,
section.newGenerationKitchen .image-content .right-content{
  position: relative;
}
section.newGenerationKitchen .image-content .left,
section.newGenerationKitchen .image-content .center,
section.newGenerationKitchen .image-content .right{
  -webkit-filter: drop-shadow(0px -25px 50px rgba(0,88,165,1));
  filter: drop-shadow(0px -25px 50px rgba(0,88,165,1));
}
section.newGenerationKitchen .image-content .left-content,
section.newGenerationKitchen .image-content .right-content{
  z-index: 1;
}
section.newGenerationKitchen .image-content .center{
  transform: scale(1.1);
}
section.newGenerationKitchen .image-content .left-content .info{
  position: absolute;
  font-size: var(--font-text-size-xxl);
  color: #0089ff;
  z-index: 1;
  bottom: 45%;
  left: 5%;
}
section.newGenerationKitchen .image-content .center-content .info{
  position: absolute;
  font-size: var(--font-text-size-xxl);
  color: #0089ff;
  z-index: 1;
  bottom: 40%;
  left: 20%;
}
section.newGenerationKitchen .image-content .right-content .info{
  position: absolute;
  font-size: var(--font-text-size-xxl);
  color: #0089ff;
  z-index: 1;
  top: 20%;
  left: 15%;
}
section.newGenerationKitchen .image-content .info .info-content{
  padding: 20px 25px;
  border-radius: var(--border-radius-md);
  background: rgb(255,255,255);
  background: -moz-linear-gradient(90deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.75) 100%);
  background: -webkit-linear-gradient(90deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.75) 100%);
  background: linear-gradient(90deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.75) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
  position: absolute;
  width: 270px;
  top: 10px;
  left: 10px;
  z-index: -1;
  opacity: 0;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all .3s ease-in-out;
}
section.newGenerationKitchen .image-content .info .info-content .info-content-title{
  position: relative;
  font-size: var(--font-text-size-md);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0px;
  color: var(--text-color);
}
section.newGenerationKitchen .image-content .info .info-content .info-content-desc{
  position: relative;
  font-size: var(--font-text-size-sm);
  font-weight: 400;
  line-height: 1.4;
  margin: 15px 0px;
  color: var(--text-color);
}
section.newGenerationKitchen .image-content .info .info-content .info-content-more{
  position: relative;
  margin-bottom: 0px;
  color: var(--text-color);
  display: flex;
  align-items: center;
}
section.newGenerationKitchen .image-content .info .info-content .info-content-more a{
  position: relative;
  font-size: var(--font-text-size-sm);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-color);
}
section.newGenerationKitchen .image-content .info:hover .info-content{
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
	transition: all .3s ease-in-out;
}


section.newGenerationParallax{
  position: relative;
  padding: 140px 0px;
  background: url('../img/other/new-generation-parallax-bg.png') no-repeat;
  background-size: cover;
  background-position: top center;
}
section.newGenerationParallax .section-header{
  position: relative;
}
section.newGenerationParallax .section-header .title{
  position: relative;
  font-size: var(--font-text-size-3xl);
  font-weight: 600;
  color: var(--white-color);
  line-height: 1.2;
  text-align: center;
  margin-bottom: 0px;
}
section.newGenerationParallax .section-header .desc{
  position: relative;
  font-size: var(--font-text-size-sm);
  font-weight: 400;
  color: var(--white-color);
  line-height: 1.5;
  text-align: center;
  margin: 35px 0px;
}


section.newGenerationParallax2{
  position: relative;
  padding: 140px 0px;
  background: #0058A4;
}
section.newGenerationParallax2::before{
  content: '';
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 500px;
  height: 100%;
  background: url('../img/logo-icon-transparent.png') no-repeat;
  background-size: cover;
  background-position: top left;
}
section.newGenerationParallax2 .cover-image{
  position: absolute;
  bottom: 0px;
  left: 0px;
}
section.newGenerationParallax2 .section-header{
  position: relative;
}
section.newGenerationParallax2 .section-header .icon{
  position: relative;
}
section.newGenerationParallax2 .section-header .icon img{
  width: 60px;
}
section.newGenerationParallax2 .section-header .title{
  position: relative;
  font-size: var(--font-text-size-3xl);
  font-weight: 600;
  color: var(--white-color);
  line-height: 1.2;
  margin: 40px 0px;
}
section.newGenerationParallax2 .section-header .desc{
  position: relative;
  font-size: var(--font-text-size-sm);
  font-weight: 400;
  color: var(--text-color);
  line-height: 1.5;
  margin-bottom: 0px;
}
section.newGenerationParallax2 .section-header .moreBtn{
  position: relative;
  margin-top: 40px;
}


section.newCatalogue{
  position: relative;
  padding: 70px 0px 0px 0px;
}
section.newCatalogue .body{
  position: relative;
}
section.newCatalogue .body .title{
  position: relative;
  font-size: var(--font-text-size-3xl);
  font-weight: 600;
  color: var(--white-color);
  line-height: 1.2;
  margin-bottom: 0px;
}
section.newCatalogue .body .desc{
  position: relative;
  font-size: var(--font-text-size-sm);
  font-weight: 400;
  color: var(--text-color);
  line-height: 1.5;
  margin: 40px 0px;
}
section.newCatalogue .body .more{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0px;
}
section.newCatalogue .image{
  position: relative;
  z-index: 1;
  margin-bottom: -120px;
}

section.letsCallYou{
  position: relative;
  padding: 150px 0px 70px 0px;
  background: url('../img/other/lets-call-you-bg.png') no-repeat;
  background-size: cover;
  background-position: top center;
}
section.letsCallYou .section-header{
  position: relative;
  text-align: center;
}
section.letsCallYou .section-header img{
  width: 60px;
  height: 60px;
}
section.letsCallYou .section-header .title{
  position: relative;
  font-size: var(--font-text-size-xxl);
  font-weight: 600;
  color: var(--white-color);
  line-height: 1.2;
  margin: 20px 0px;
}
section.letsCallYou .section-header .desc{
  position: relative;
  font-size: var(--font-text-size-sm);
  font-weight: 400;
  color: var(--text-color);
  line-height: 1.5;
  margin-bottom: 0px;
}
section.letsCallYou .form-content{
  position: relative;
  margin-top: 40px;
}
section.letsCallYou .form-content .form-group{
  position: relative;
  margin-bottom: 30px;
}
section.letsCallYou .form-content .form-group:last-of-type{
  margin-bottom: 0px;
}
section.letsCallYou .form-content .form-group .form-control{
  position: relative;
  padding: 15px 25px;
  background: transparent;
  border: 1px solid var(--white-color);
  border-radius: var(--border-radius-xl);
  color: var(--text-color);
}
section.letsCallYou .form-content .form-group .form-control::-webkit-input-placeholder { /* Edge */
  color: var(--text-color);
}
section.letsCallYou .form-content .form-group .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: var(--text-color);
}
section.letsCallYou .form-content .form-group .form-control::placeholder {
  color: var(--text-color);
}
section.letsCallYou .form-content .form-group label{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.letsCallYou .form-content button{
  cursor: pointer;
}


section.featuredProducts{
  position: relative;
  background: #222;
}
section.featuredProducts .featuredBody{
  position: relative;
  padding: 60px 0px 0px 0px;
}
section.featuredProducts .featuredBody .section-header{
  position: relative;
}
section.featuredProducts .featuredBody .section-header .title{
  position: relative;
  font-size: var(--font-text-size-3xl);
  font-weight: 600;
  color: var(--white-color);
  line-height: 1.2;
  margin-bottom: 20px;
}
section.featuredProducts .featuredBody .section-header .desc{
  position: relative;
  font-size: var(--font-text-size-sm);
  font-weight: 400;
  color: var(--text-color);
  line-height: 1.5;
  margin-bottom: 0px;
}
section.featuredProducts .slide-image-content{
  position: absolute;
  width: 45%;
  height: 100%;
  top: 0px;
  right: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../img/other/main-category-area-bg.png') no-repeat;
  background-size: cover;
  background-position: top center;
}
section.featuredProducts .slide-image-content img{
  position: absolute;
  top: 0px;
  /*
  width: 100%;
  height: 100%;
  -ms-object-fit: cover;
  -o-object-fit: cover;
  object-fit: cover;
  */
  z-index: 0;
}
section.featuredProducts .slide-image-content .symbol{
  position: relative;
  z-index: 1;
  width: 85px;
  height: 85px;
  padding: 20px;
  border-radius: 50%;
  border: 1px solid var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-text-size-xs);
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  margin-right: -150px;
  background: rgba(0,0,0,0.7);
}
section.featuredProducts .slide-image-content .symbol::before{
  content: '';
  position: absolute;
  width: 50px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  left: -50px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyBpZD0iR3JvdXBfMTI2NTciIGRhdGEtbmFtZT0iR3JvdXAgMTI2NTciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjY2IiBoZWlnaHQ9IjM3IiB2aWV3Qm94PSIwIDAgNjYgMzciPgogIDxnIGlkPSJFbGxpcHNlXzEiIGRhdGEtbmFtZT0iRWxsaXBzZSAxIiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMSI+CiAgICA8Y2lyY2xlIGN4PSIxOC41IiBjeT0iMTguNSIgcj0iMTguNSIgc3Ryb2tlPSJub25lIi8+CiAgICA8Y2lyY2xlIGN4PSIxOC41IiBjeT0iMTguNSIgcj0iMTgiIGZpbGw9Im5vbmUiLz4KICA8L2c+CiAgPGcgaWQ9Ikdyb3VwXzExIiBkYXRhLW5hbWU9Ikdyb3VwIDExIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNC4xMzggMTMpIj4KICAgIDxsaW5lIGlkPSJMaW5lXzIiIGRhdGEtbmFtZT0iTGluZSAyIiB4MT0iNTEiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAuMzYyIDUuNjU5KSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMSIvPgogICAgPHBhdGggaWQ9IlBhdGhfNDAiIGRhdGEtbmFtZT0iUGF0aCA0MCIgZD0iTTE1MTMuODYyLDYwMS44NDFsLTUuNzUxLDUuNzUxLDUuNzUxLDUuNzUxIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTUwOC4xMTEgLTYwMS44NDEpIiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIxIi8+CiAgPC9nPgo8L3N2Zz4K");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
section.featuredProducts .featuredBody .section-body{
  position: relative;
  margin: 50px 0px;
  padding: 30px;
  border: 1px solid var(--white-color);
  border-radius: var(--border-radius-sm);
}
section.featuredProducts .featuredBody .section-body .title{
  position: relative;
  font-size: var(--font-text-size-xl);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0px;
  color: var(--text-color);
}
section.featuredProducts .featuredBody .section-body .title span{
  color: var(--blue-color);
  margin-right: 10px;
}
section.featuredProducts .featuredBody .section-body .desc{
  position: relative;
  font-size: var(--font-text-size-xs);
  font-weight: 400;
  line-height: 1.5;
  margin: 30px 0px;
  color: var(--text-color);
}
section.featuredProducts .featuredBody .section-body .more{
  position: relative;
  margin-bottom: 0px;
}
section.featuredProducts .featuredBody .section-body .more a{
  font-size: var(--font-text-size-xs);
  font-weight: 400;
  color: var(--white-color);
}
section.featuredProducts .headFeaturedSlide{
  position: relative;
  padding-bottom: 50px;
}
section.featuredProducts .headFeaturedSlide .slide-image-preview{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
section.featuredProducts .headFeaturedSlide .slide-image-preview::before{
  content: '';
  position: absolute;
  top: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(0deg,rgba(0, 0, 0, 0) 0%,rgba(0, 88, 164, 1) 100%);
  z-index: -1;
}
section.featuredProducts .headFeaturedSlide .slide-image-preview img{
  width: 80px;
  margin-bottom: 5px;
}
section.featuredProducts .headFeaturedSlide .slide-image-preview .title{
  position: relative;
  margin-bottom: 0px;
  font-size: var(--font-text-size-xs);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-color);
}
section.featuredProducts .headFeaturedSlide .owl-nav{
  display: block!important; 
  right: 0px;
  font-size: var(--font-text-size-md);
  color: var(--white-color);
}
section.featuredProducts .headFeaturedSlide .owl-prev {
  position: absolute;
  left: -15px;
  top: 35%;
}
section.featuredProducts .headFeaturedSlide .owl-next {
  position: absolute;
  right: -15px;
  top: 35%;
}


footer.footer{
  position: relative;
  padding: 60px 0px 0px 0px;
  border-bottom: 10px solid var(--blue-color);
}
footer.footer::before{
  content: '';
  position: absolute;
  top: 0px;
  width: 100%;
  height: 100%;
  background: url('../img/other/footer-bg-image.svg');
  background-repeat: repeat-x;
  background-size: contain;
  background-position: top center;
  z-index: -1;
}
footer.footer .logo-content{
  display: flex;
  align-items: center;
  justify-content: center;
}
footer.footer .footer-menu{
  position: relative;
  margin: 40px 0px;
}
footer.footer .footer-menu ul{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px;
}
footer.footer .footer-menu ul li{
  position: relative;
  float: left;
  width: 20%;
}
footer.footer .footer-menu ul li a{
  position: relative;
  font-size: var(--font-text-size-sm);
  font-weight: 500;
  line-height: 1;
  color: var(--text-color);
}
footer.footer .footer-info{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(270deg,rgba(0, 0, 0, 0) 0%,rgba(0, 88, 164, 1) 100%);
  padding: 25px;
  border-radius: 70px;
  min-height: 119px;
}
footer.footer .footer-info .title{
  position: relative;
  font-size: var(--font-text-size-lg);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--text-color);
}
footer.footer .footer-info .body{
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer.footer .footer-info .body .icon{
  position: relative;

  font-size: var(--font-text-size-lg);
  line-height: 1;
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
footer.footer .footer-info .body .text{
  position: relative;

  padding-left: 10px;
}
footer.footer .footer-info .body .text a{
  position: relative;
  font-size: var(--font-text-size-sm);
  font-weight: 400;
  color: var(--text-color);
  line-height: 1.3;
}
footer.footer .footer-social-content{
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 40px;
}
footer.footer .footer-social-content .title{
  position: relative;
  font-size: var(--font-text-size-md);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--text-color);
}
footer.footer .footer-social-content ul{
  position: relative;
  margin-bottom: 0px;
  padding-left: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer.footer .footer-social-content ul li{
  position: relative;
  float: left;
  margin-right: 20px;
}
footer.footer .footer-social-content ul li:last-of-type{
  margin-right: 0px;
}
footer.footer .footer-social-content ul li a{
  font-size: var(--font-text-size-md);
  color: var(--text-color);
}
footer.footer .copyright{
  position: relative;
  margin-bottom: 0px;
  font-size: var(--font-text-size-xs);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-color);
  text-align: center;
  margin-top: 40px;
  margin-bottom: 10px;
}
footer.footer .copyright a{
  font-weight: 400;
  color: var(--text-color);
}

section.breadcrumbs::before{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgb(255,255,255);
  background: -moz-linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.75) 100%);
  background: -webkit-linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.75) 100%);
  background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.75) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#000000",GradientType=1);
  z-index: 1;
}
section.breadcrumbs.corporate-page{
  position: relative;
  margin-top: -95px;
}
section.breadcrumbs.corporate-page .breadcrumb-body{
  padding: 150px 0px;
  position: relative;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 0.3s;
  z-index: 1;
}
section.breadcrumbs.corporate-page .breadcrumb-image{
  position: relative;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInRight;
  animation-delay: 0.3s;
}
section.breadcrumbs.corporate-page .breadcrumb-body .icon{
  position: relative;
}
section.breadcrumbs.corporate-page .breadcrumb-body .icon img{
  width: 60px;
}
section.breadcrumbs.corporate-page .breadcrumb-body .title{
  position: relative;
  font-size: var(--font-text-size-3xl);
  font-weight: 600;
  color: var(--white-color);
  line-height: 1.2;
  margin-top: 40px;
  margin-bottom: 0px;
}
section.breadcrumbs.corporate-page .breadcrumb-body .sub-title{
  position: relative;
  font-size: var(--font-text-size-lg);
  font-weight: 600;
  color: var(--white-color);
  line-height: 1.2;
  margin: 40px 0px;
}
section.breadcrumbs.corporate-page .breadcrumb-body .desc{
  position: relative;
  font-size: var(--font-text-size-sm);
  font-weight: 400;
  color: var(--text-color);
  line-height: 1.5;
  margin-bottom: 0px;
}
section.breadcrumbs.corporate-page .breadcrumb-body .moreBtn{
  position: relative;
  margin-top: 40px;
  margin-left: 1px;
}
section.breadcrumbs.corporate-page .breadcrumb-image img{
  position: relative;
  width: 100%;
}
section.breadcrumbs.corporate-page .videoContentItem{
  position: absolute;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInRight;
  animation-delay: 0.3s;
  right: 12px;
  bottom: 30%;
}


section.corporate-page.featured{
  position: relative;
  padding: 0px;
  margin-top: -140px;
  z-index: 1;
}
section.corporate-page.featured .content{
  position: relative;
  width: 100%;
  padding: 80px 70px;
  display: flex;
  align-items: center;
  flex-direction: column;
  min-height: 350px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 7px 29px 0px;
}
section.corporate-page.featured .content::before{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: rgb(255,255,255);
  background: -moz-linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.3) 100%);
  background: -webkit-linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.3) 100%);
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.3) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#000000",GradientType=1);
}
section.corporate-page.featured .content .cover-image{
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -ms-object-fit: cover;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}
section.corporate-page.featured .content .title{
  position: relative;
  font-size: var(--font-text-size-xl);
  font-weight: 500;
  line-height: 1.2;
  color: var(--white-color);
  margin-bottom: 10px;
}
section.corporate-page.featured .content .desc{
  position: relative;
  font-size: var(--font-text-size-sm);
  font-weight: 400;
  line-height: 1.5;
  color: var(--white-color);
  margin-bottom: 0px;
}


section.newCatalogue.corporate-page{
  background: #222;
  margin-top: -30px;
}
section.corporate-page.cooking{
  position: relative;
  padding: 200px 0px 170px 0px;
}
section.corporate-page.cooking .cover-image-content{
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 55%;
  height: 100%;
  z-index: 0;
}
section.corporate-page.cooking .cover-image-content img{
  width: 100%;
  height: 100%;
  -ms-object-fit: cover;
  -o-object-fit: cover;
  object-fit: cover;
  margin-top: -30px;
}
section.corporate-page.cooking .content{
  position: relative;
  padding: 70px 0px 100px 0px;
}
section.corporate-page.cooking .content .title{
  position: relative;
  font-size: var(--font-text-size-3xl);
  font-weight: 600;
  color: var(--white-color);
  line-height: 1.2;
  margin-bottom: 0px;
}
section.corporate-page.cooking .content .title::before{
  content: '';
  position: absolute;
  top: -30px;
  left: 0px;
  width: 100%;
  height: 1px;
  background: var(--white-color);
  z-index: 0;
}
section.corporate-page.cooking .content .title::after{
  content: '';
  position: absolute;
  top: -32px;
  left: 0px;
  width: 130px;
  height: 5px;
  background: var(--white-color);
  z-index: 0;
}
section.corporate-page.cooking .content .desc{
  position: relative;
  font-size: var(--font-text-size-sm);
  font-weight: 400;
  color: var(--white-color);
  line-height: 1.5;
  margin-top: 25px;
  margin-bottom: 0px;
}


section.breadcrumbs.products-page{
  position: relative;
  margin-top: -95px;
  background: url('../img/breadcrumbs/products-bg.png') no-repeat;
  background-size: cover;
  background-position: top center;
}
section.breadcrumbs.products-page .breadcrumb-body{
  padding: 150px 0px 130px 0px;
  position: relative;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 0.3s;
  z-index: 1;
}
section.breadcrumbs.products-page .breadcrumb-image{
  position: relative;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInRight;
  animation-delay: 0.3s;
}
section.breadcrumbs.products-page .breadcrumb-body .icon{
  position: relative;
}
section.breadcrumbs.products-page .breadcrumb-body .icon img{
  width: 60px;
}
section.breadcrumbs.products-page .breadcrumb-body .title{
  position: relative;
  font-size: var(--font-text-size-3xl);
  font-weight: 600;
  color: var(--white-color);
  line-height: 1.2;
  margin-top: 40px;
  margin-bottom: 0px;
}
section.breadcrumbs.products-page .breadcrumb-body .sub-title{
  position: relative;
  font-size: var(--font-text-size-lg);
  font-weight: 600;
  color: var(--white-color);
  line-height: 1.2;
  margin: 40px 0px;
}
section.breadcrumbs.products-page .breadcrumb-body .desc{
  position: relative;
  font-size: var(--font-text-size-sm);
  font-weight: 400;
  color: var(--text-color);
  line-height: 1.5;
  margin-bottom: 0px;
}
section.breadcrumbs.products-page .breadcrumb-body .moreBtn{
  position: relative;
  margin-top: 40px;
  margin-left: 1px;
}
section.breadcrumbs.products-page .breadcrumb-image img{
  position: relative;
  width: 100%;
}


section.products.product-page{
  position: relative;
  padding: 0px 0px 70px 0px;
  margin-top: -100px;
}
section.products.product-category-page{
  position: relative;
  padding: 0px 0px 70px 0px;
  margin-top: -40px;
}
.product-item{
  position: relative;
  padding: 0px 25px;
  box-shadow: rgb(0 0 0 / 20%) 0px 7px 29px 0px;
  display: flex;
  align-items: center;
}
.product-item.odd{
  background: #142D71;
}
.product-item.even{
  background: #287ABF;
}
.product-item .image{
  position: relative;
  width: 45%;
  float: left;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-bottom: 25px;
}
.product-item .content{
  position: relative;
  width: 55%;
  height: 100%;
  float: right;
  padding-left: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.product-item .content .title{
  position: relative;
  font-size: var(--font-text-size-lg);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0px;
  color: var(--white-color);
}
.product-item .content .desc{
  position: relative;
  font-size: var(--font-text-size-sm);
  font-weight: 400;
  line-height: 1.5;
  margin: 20px 0px;
  color: var(--white-color);
}
.product-item .content .more{
  position: relative;
  margin-bottom: 0px;
}


.product-category-catalogue{
  position: relative;
  background: #0058A4;
  box-shadow: rgb(0 0 0 / 20%) 0px 7px 29px 0px;
  display: flex;
  align-items: center;
}
.product-category-catalogue .image{
  position: relative;
  width: 45%;
  float: left;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.product-category-catalogue .content{
  position: relative;
  width: 55%;
  height: 100%;
  float: left;
  padding: 40px 60px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.product-category-catalogue .content .title{
  position: relative;
  font-size: var(--font-text-size-xl);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--white-color);
}
.product-category-catalogue .content .more{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 0px;
}


section.breadcrumbs.products-detail-page{
  position: relative;
  margin-top: -95px;
}
section.breadcrumbs.products-detail-page .breadcrumb-body{
  padding: 150px 0px 70px 0px;
  position: relative;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 0.3s;
  z-index: 1;
}
section.breadcrumbs.products-detail-page .breadcrumb-image{
  position: relative;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInRight;
  animation-delay: 0.3s;
}
section.breadcrumbs.products-detail-page .breadcrumb-body .icon{
  position: relative;
}
section.breadcrumbs.products-detail-page .breadcrumb-body .icon img{
  width: 60px;
}
section.breadcrumbs.products-detail-page .breadcrumb-body .title{
  position: relative;
  font-size: var(--font-text-size-3xl);
  font-weight: 600;
  color: var(--white-color);
  line-height: 1.2;
  margin-top: 40px;
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  word-break: break-word;
}
section.breadcrumbs.products-detail-page .breadcrumb-body .title::before{
  content: '';
  position: absolute;
  bottom: -25px;
  left: 0px;
  width: 100%;
  height: 1px;
  background: var(--white-color);
  z-index: 0;
}
section.breadcrumbs.products-detail-page .breadcrumb-body .title::after{
  content: '';
  position: absolute;
  bottom: -27px;
  left: 0px;
  width: 130px;
  height: 5px;
  background: var(--white-color);
  z-index: 0;
}
section.breadcrumbs.products-detail-page .breadcrumb-body .sub-title{
  position: relative;
  font-size: var(--font-text-size-lg);
  font-weight: 600;
  color: var(--white-color);
  line-height: 1.2;
  margin: 40px 0px;
}
section.breadcrumbs.products-detail-page .breadcrumb-body .desc{
  position: relative;
  font-size: var(--font-text-size-sm);
  font-weight: 400;
  color: var(--text-color);
  line-height: 1.5;
  margin-top: 50px;
  margin-bottom: 0px;
}
section.breadcrumbs.products-detail-page .breadcrumb-image img{
  position: relative;
  width: 100%;
}


section.product-detail-page.product-slider{
  position: relative;
  padding: 60px 0px;
}
section.product-detail-page.product-slider .content{
  position: relative;
  background: #222;
  display: flex;
  align-items: center;
}
section.product-detail-page.product-slider .content .image-content{
  position: relative;
  width: 40%;
  float: left;
  padding: 0px 30px 30px 30px;
}
section.product-detail-page.product-slider .content .body-content{
  position: relative;
  width: 60%;
  float: right;
  padding: 20px 20px 5px 20px;
}

section.product-detail-page.product-slider .content .image-content .productDetailSlide{
  position: relative;
}
section.product-detail-page.product-slider .content .image-content .productDetailSlide .item{
  position: relative;
}
section.product-detail-page.product-slider .content .image-content .productDetailSlide .item::before{
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 300px;
  z-index: -1;
  background: rgb(0,88,164);
  background: -moz-linear-gradient(90deg, rgba(0,88,164,1) 0%, rgba(34,34,34,1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(0,88,164,1) 0%, rgba(34,34,34,1) 100%);
  background: linear-gradient(90deg, rgba(0,88,164,1) 0%, rgba(34,34,34,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0058a4",endColorstr="#222222",GradientType=1);
}
section.product-detail-page.product-slider .content .image-content .productDetailSlide img{
  position: relative;
  margin-left: 1px;
}
section.product-detail-page.product-slider .content .image-content .productDetailSlide .owl-dots {
  text-align: center;
  margin-top: 10px;
}
section.product-detail-page.product-slider .content .image-content .productDetailSlide .owl-dots .owl-dot.active span,
section.product-detail-page.product-slider .content .image-content .productDetailSlide .owl-dots .owl-dot:hover span {
  background: var(--white-color);
  border:1px solid var(--white-color);
}
section.product-detail-page.product-slider .content .image-content .productDetailSlide .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: transparent;
  border:1px solid var(--white-color);
  display: block;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 30px
}
section.product-detail-page.product-slider .content .body-content .product-properties{
  position: relative;
  padding-left: 0px;
  margin-bottom: 0px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
section.product-detail-page.product-slider .content .body-content .product-properties li{
  position: relative;
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 25%;
  margin-bottom: 35px;
  padding: 0px 35px;
}
section.product-detail-page.product-slider .content .body-content .product-properties li svg,
section.product-detail-page.product-slider .content .body-content .product-properties li i{
  position: relative;
  width: 45px;
  height: 45px;
  margin-bottom: 20px;
}
section.product-detail-page.product-slider .content .body-content .product-properties li span{
  position: relative;
  font-size: var(--font-text-size-sm);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white-color);
  margin-bottom: 0px;
}
section.product-detail-page.product-slider .content .body-content .product-properties li svg *{
  fill: var(--text-color);
}


section.product-detail-page.product-information{
  position: relative;
  padding: 70px 0px;
}
section.product-detail-page.product-information .content{
  position: relative;
}
section.product-detail-page.product-information .image{
  position: relative;
}
section.product-detail-page.product-information .image img{
  position: relative;
  /*filter: invert(1) brightness(100);*/
  filter: brightness(0) invert(1);
  width: 100%;
}
section.product-detail-page.product-information .content .title{
  position: relative;
  font-size: var(--font-text-size-3xl);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white-color);
}
section.product-detail-page.product-information .content .title::before{
  content: '';
  position: absolute;
  bottom: -25px;
  left: 0px;
  width: 100%;
  height: 1px;
  background: var(--white-color);
  z-index: 0;
}
section.product-detail-page.product-information .content .title::after{
  content: '';
  position: absolute;
  bottom: -27px;
  left: 0px;
  width: 130px;
  height: 5px;
  background: var(--white-color);
  z-index: 0;
}
section.product-detail-page.product-information .content ul{
  position: relative;
  margin-top: 55px;
  padding-left: 0px;
  margin-bottom: 0px;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
section.product-detail-page.product-information .content ul li{
  position: relative;
  width: 25%;
  float: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 35px;
  padding-right: 15px;
}
section.product-detail-page.product-information .content ul li .property-name{
  position: relative;
  font-size: var(--font-text-size-lg);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white-color);
  margin-bottom: 10px;
  word-break: break-all;
}
section.product-detail-page.product-information .content ul li .property-desc{
  position: relative;
  font-size: var(--font-text-size-xs);
  font-weight: 400;
  line-height: 1.3;
  color: var(--white-color);
  margin-bottom: 0px;
}


section.product-detail-page.product-other-slider{
  position: relative;
  padding: 0px;
}
section.product-detail-page.product-other-slider .productDetailOtherSlide{
  position: relative;
}
section.product-detail-page.product-other-slider .productDetailOtherSlide .item{
  position: relative;
}
section.product-detail-page.product-other-slider .productDetailOtherSlide .item .image-content{
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
}
section.product-detail-page.product-other-slider .productDetailOtherSlide .item .image-content::before{
  content: '';
  z-index: 0;
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background: rgb(255,255,255);
  background: -moz-linear-gradient(90deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,1) 70%);
  background: -webkit-linear-gradient(90deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,1) 70%);
  background: linear-gradient(90deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,1) 70%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}
section.product-detail-page.product-other-slider .productDetailOtherSlide .item .image-content img{
  width: 100%;
  height: 100%;
  -ms-object-fit: cover;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}
section.product-detail-page.product-other-slider .productDetailOtherSlide .item .text-content{
  position: relative;
  padding: 200px 0px;
  text-align: right;
}
section.product-detail-page.product-other-slider .productDetailOtherSlide .item .text-content .title{
  position: relative;
  font-size: var(--font-text-size-3xl);
  font-weight: 600;
  line-height: 1.2;
  color: var(--blue-color);
  margin-bottom: 5px;
}
section.product-detail-page.product-other-slider .productDetailOtherSlide .item .text-content .desc{
  position: relative;
  font-size: var(--font-text-size-sm);
  font-weight: 400;
  line-height: 1.5;
  color: var(--black-color);
  margin-top: 25px;
  margin-bottom: 0px;
}
section.product-detail-page.product-other-slider .productDetailOtherSlide .owl-nav{
  display: block!important; 
  right: 0px;
  font-size: var(--font-text-size-3xl);
  color: var(--blue-color);
  opacity: 0.4;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all .3s ease-in-out;
}
section.product-detail-page.product-other-slider .productDetailOtherSlide .owl-nav:hover{
  opacity: 1;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all .3s ease-in-out;
}
section.product-detail-page.product-other-slider .productDetailOtherSlide .owl-prev {
  position: absolute;
  left: 50px;
  top: 48%;
}
section.product-detail-page.product-other-slider .productDetailOtherSlide .owl-next {
  position: absolute;
  right: 50px;
  top: 48%;
}


section.product-detail-page.product-related-slider{
  position: relative;
  padding: 70px 0px;
  background: #222;
}
section.product-detail-page.product-related-slider .section-header{
  position: relative;
  text-align: center;
}
section.product-detail-page.product-related-slider .section-header .title{
  position: relative;
  font-size: var(--font-text-size-3xl);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-color);
  margin-bottom: 20px;
}
section.product-detail-page.product-related-slider .section-header .desc{
  position: relative;
  font-size: var(--font-text-size-sm);
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-color);
  margin-bottom: 0px;
}
section.product-detail-page.product-related-slider .productRelatedSlide{
  position: relative;
  margin-top: 50px;
}
section.product-detail-page.product-related-slider .productRelatedSlide .owl-dots {
  text-align: center;
  margin-top: 25px;
}
section.product-detail-page.product-related-slider .productRelatedSlide .owl-dots .owl-dot.active span,
section.product-detail-page.product-related-slider .productRelatedSlide .owl-dots .owl-dot:hover span {
  background: var(--white-color);
  border:1px solid var(--white-color);
}
section.product-detail-page.product-related-slider .productRelatedSlide .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: transparent;
  border:1px solid var(--white-color);
  display: block;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 30px
}


section.product-detail-page.product-catalogue-footer{
  position: relative;
  background-color: #222;
  margin-bottom: 100px;
}
section.product-detail-page.product-catalogue-footer .product-category-catalogue{
  margin-bottom: -100px;
}


section.breadcrumbs.contact-page{
  position: relative;
  margin-top: -95px;
  background: url('../img/breadcrumbs/contact-bg.png') no-repeat;
  background-size: cover;
  background-position: top center;
}
section.breadcrumbs.contact-page .breadcrumb-body{
  padding: 150px 0px 130px 0px;
  position: relative;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 0.3s;
  z-index: 1;
}
section.breadcrumbs.contact-page .breadcrumb-image{
  position: relative;
  padding: 150px 100px 200px 100px;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInRight;
  animation-delay: 0.3s;
}
section.breadcrumbs.contact-page .breadcrumb-body .icon{
  position: relative;
}
section.breadcrumbs.contact-page .breadcrumb-body .icon img{
  width: 60px;
}
section.breadcrumbs.contact-page .breadcrumb-body .title{
  position: relative;
  font-size: var(--font-text-size-3xl);
  font-weight: 600;
  color: var(--white-color);
  line-height: 1.2;
  margin-top: 40px;
  margin-bottom: 0px;
}
section.breadcrumbs.contact-page .breadcrumb-body .sub-title{
  position: relative;
  font-size: var(--font-text-size-lg);
  font-weight: 600;
  color: var(--white-color);
  line-height: 1.2;
  margin: 40px 0px;
}
section.breadcrumbs.contact-page .breadcrumb-body .desc{
  position: relative;
  font-size: var(--font-text-size-sm);
  font-weight: 400;
  color: var(--text-color);
  line-height: 1.5;
  margin-bottom: 0px;
}
section.breadcrumbs.contact-page .breadcrumb-body .moreBtn{
  position: relative;
  margin-top: 40px;
  margin-left: 1px;
}
section.breadcrumbs.contact-page .breadcrumb-image img{
  position: relative;
  width: 100%;
}
section.breadcrumbs.contact-page .videoContentItem{
  position: absolute;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInRight;
  animation-delay: 0.3s;
  right: 12px;
  bottom: 30%;
}



section.contact-page.contact-information{
  position: relative;
  padding: 0px;
  margin-top: -90px;
  z-index: 1;
}
section.contact-page.contact-information .content{
  position: relative;
  width: 100%;
  padding: 50px 70px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  min-height: 250px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 7px 29px 0px;
}
section.contact-page.contact-information .content::before{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: rgb(255,255,255);
  background: -moz-linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.3) 100%);
  background: -webkit-linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.3) 100%);
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.3) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#000000",GradientType=1);
}
section.contact-page.contact-information .content .cover-image{
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -ms-object-fit: cover;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}
section.contact-page.contact-information .content .title{
  position: relative;
  font-size: var(--font-text-size-xl);
  font-weight: 500;
  line-height: 1.2;
  color: var(--white-color);
  margin-bottom: 10px;
  width: 100%;
  text-align: center;
}
section.contact-page.contact-information .content .title::before{
  content: '';
  position: absolute;
  bottom: -25px;
  left: 0px;
  width: 100%;
  height: 1px;
  background: var(--white-color);
  z-index: 0;
}
section.contact-page.contact-information .content .title::after{
  content: '';
  position: absolute;
  bottom: -27px;
  left: 0px;
  width: 130px;
  height: 5px;
  background: var(--white-color);
  z-index: 0;
}
section.contact-page.contact-information .content .desc{
  position: relative;
  margin-top: 40px;
  margin-bottom: 0px;
  text-align: center;
  width: 100%;
}
section.contact-page.contact-information .content .desc a{
  font-size: var(--font-text-size-md);
  font-weight: 400;
  line-height: 1.5;
  color: var(--white-color);
}


section.contact-page.contact-form{
  position: relative;
  padding: 80px 0px 0px 0px;
}
section.contact-page.contact-form::before{
  position: absolute;
  top: 0px;
  content: '';
  width: 100%;
  height: 100%;
  background: url('../img/other/contact-page-bg.png') no-repeat;
  background-size: contain;
  background-position: top center;
}
section.contact-page.contact-form .section-header{
  position: relative;
  text-align: center;
}
section.contact-page.contact-form .section-header .icon{
  position: relative;
}
section.contact-page.contact-form .section-header .icon img{
  width: 60px;
}
section.contact-page.contact-form .section-header .title{
  position: relative;
  font-size: var(--font-text-size-3xl);
  font-weight: 600;
  color: var(--white-color);
  line-height: 1.2;
  margin-top: 40px;
  margin-bottom: 0px;
}
section.contact-page.contact-form .section-header .sub-title{
  position: relative;
  font-size: var(--font-text-size-lg);
  font-weight: 600;
  color: var(--white-color);
  line-height: 1.2;
  margin: 40px 0px;
}
section.contact-page.contact-form .section-header .desc{
  position: relative;
  font-size: var(--font-text-size-sm);
  font-weight: 400;
  color: var(--text-color);
  line-height: 1.5;
  margin-bottom: 0px;
}
section.contact-page.contact-form .contact-forms{
  position: relative;
}
section.contact-page.contact-form .contact-forms .form-group{
  position: relative;
}
section.contact-page.contact-form .contact-forms .form-group .form-control{
  position: relative;
  border: 1px solid var(--white-color);
  padding: 15px 25px;
  background: transparent;
  border-radius: var(--border-radius-xl);
  color: var(--text-color);
}
section.contact-page.contact-form .contact-forms .form-group .form-control::-webkit-input-placeholder { /* Edge */
  color: var(--text-color);
}
section.contact-page.contact-form .contact-forms .form-group .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: var(--text-color);
}
section.contact-page.contact-form .contact-forms .form-group .form-control::placeholder {
  color: var(--text-color);
}


.videoContentItem{
  position: relative;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.videoContentItem .content{
  position: relative;
  bottom: 0px;
  right: 0px;
  width: 250px!important;
  height: 300px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-box-shadow: 0px 10px 140px -20px rgba(0,88,165,1);
  -moz-box-shadow: 0px 10px 140px -20px rgba(0,88,165,1);
  box-shadow: 0px 10px 140px -20px rgba(0,88,165,1);
}
.videoContentItem .content img{
  position: absolute;
  width: 100%;
  height: 100%;
  -ms-object-fit: cover;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: var(--border-radius-md);
  z-index: -1;
}
.videoContentItem .content a{
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  min-height: 300px;
}
.videoContentItem .content a .content-title{
  position: relative;
  width: 100%;
  font-size: var(--font-text-size-lg);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white-color);
  padding: 0px 20px;
  margin-bottom: 0px;
}
.videoContentItem .content a .content-desc{
  position: relative;
  width: 100%;
  font-size: var(--font-text-size-sm);
  font-weight: 400;
  line-height: 1.5;
  color: var(--white-color);
  padding: 0px 20px;
  margin: 20px 0px;
}
.videoContentItem .content a .content-more{
  position: relative;
  width: 100%;
  padding: 0px 20px;
  margin: 0px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all .3s ease-in-out;
}
.videoContentItem .content a:hover .content-more{
  margin-left: 25px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all .3s ease-in-out;
}


section.contact-page.contact-catalogue{
  position: relative;
  margin: 60px 0px;
}

[data-aos^=fade][data-aos^=fade]{
    opacity: 1!important;
}
[data-aos=fade-right], [data-aos=fade-left], [data-aos=fade-down], [data-aos=fade-up]{
    transform: translate3d(0,0,0)!important;
}
.skiptranslate{
  display: none!important;
}

.otherModal .modal-content {
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-color-light);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.otherModal .btn-header-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-block;
  z-index: 1;
  width: 0.8em;
  height: 0.8em;
}
/* OTHER */


