
/* font from google*/
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Schibsted+Grotesk:ital,wght@0,400..900;1,400..900&display=swap');

@font-face { 
 font-family: 'clashdisplay-bold';
  src: url('/font/clashdisplay-bold.eot'); /* IE9 Compat Modes */
  src: url('/font/clashdisplay-bold.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/font/clashdisplay-bold.woff2') format('woff2'), /* Super Modern Browsers */
       url('/font/clashdisplay-bold.woff') format('woff'), /* Pretty Modern Browsers */
       url('/font/clashdisplay-bold.ttf')  format('truetype'); /* Safari, Android, iOS */
       font-weight: 700;
       font-display: swap;
       font-style: normal;
}
html {
  scroll-behavior: smooth;
}
:root {
    --black: #06091a;
    --gray--medium: #666;
    --gray--light: #EBEBEB;
    --gray--dark: #333;
    --white--white: #fcfafa;
    --primary--violet: #5039bf;
    --width: 1160px;
}
/* Body elements, heading and div,p,a,etc */
*{
	font-family: 'Inter tight', sans-serif;
	box-sizing: border-box;
	font-optical-sizing: auto;
}
div{
	scroll-behavior: smooth;
}
body{
	margin:0;
	padding:0;
}
a{
	text-decoration:none;
	color:black;
}
h1,h2,h3{
	margin:0;
	padding:0;
}
h2{
	padding-bottom:5px;
	padding-top:5px;
}
p{
	font-family: "Schibsted Grotesk", sans-serif !important;
	margin:0;
	padding:0;
	
}
header{
	width:100%;
	min-height:80px;
	border-bottom:1px solid rgba(1,1,1,0.05);
	background-color:white;
	transition: all 400ms ease-in;
}
.sticky{
	position: sticky;
	top:0;
	z-index:9999;
	transition:200ms height ease;
	height:80px !important;
}
/* header elements full */
header .header-container{
	width:var(--width);
	display: flex;
	justify-content: space-between;
	margin:auto;
}
header .header-container .logo a{
	font-family: 'clashdisplay-bold';
	text-decoration: none;
	font-size:32px;
	color:#333;
	display: block;
	width:200px;
	height:40px;
	margin-top:20px;
	line-height:40px;
	border-left: 7px solid blue;
	padding-left:10px;
}
header .header-container .menu{
	display: inline-block;
}
header .header-container .menu ul{
	margin:0;
	display: inline-flex;
	justify-content: space-between;
	align-content: space-between;
}
header .header-container .menu ul li{
	list-style: none;
	color:black;
	padding-right:20px;
	height:80px;
	line-height: 70px;
	display: block;
	margin-top:10px;
	box-sizing: border-box;
}
header .header-container .menu ul li:last-child{
	margin-right:5px;
	padding-right:5px;
}
header .header-container .menu ul li:last-child a{
	border:2px solid blue;
	border-radius: 30px;
	margin-top:15px;
	height:40px;
	margin-bottom:20px;
	line-height: 35px;
	width:120px;
	text-align:center;
}
header .header-container .menu ul li a{
	text-decoration: none;
	font-weight:bold;
	color:var(--gray--dark);
	font-size:15px;
	display: block;
}
header .header-container .menu ul li a:hover{
	color:var(--gray--medium);
	transition: 100ms all ease-in;
}
header .header-container .menu .ham{
	width:20px;
	height:20px;
	display: block;
	display: inline-block;
	margin-top:30px;
	padding-top:5px;
	position: relative;
	cursor:pointer;
	display: none;
}
header .header-container .menu .ham .line{
	width:8px;
	height:8px;
	display: block;
	background-color:var(--gray--dark);
}
header .header-container .menu .ham .line:nth-child(1){
	position: absolute;
	top:0px;
	left:0px;
}
header .header-container .menu .ham .line:nth-child(2){
	position: absolute;
	top:0px;
	right:0px;
}
header .header-container .menu .ham .line:nth-child(3){
	position: absolute;
	bottom:0px;
	left:0px;
}
header .header-container .menu .ham .line:nth-child(4){
	position: absolute;
	bottom:0px;
	right:0px;
}
.scroll-back{
	width:60px;
	height:60px;
	background-color:var(--white--white);
	display: block;
	position: fixed;
	right:3%;
	bottom:90px;
	border-radius: 40px;
	border:3px solid var(--gray--medium);
	cursor:pointer;
	opacity:1;
	z-index: 100;
	background-image:url(/dist/images/uparrow.png);
	background-size:20px;
	background-position:center center;
	background-repeat: no-repeat;
}
.scroll-back:hover{
	background-color:#f6f6f6;
	transition:400ms all ease-in;
	opacity:0.9;
	border:4px solid blue;
}

.cookie{
	width:60px;
	height:60px;
	background-color:var(--white--white);
	display: block;
	position: fixed;
	right:3%;
	bottom:20px;
	border-radius: 40px;
	border:3px solid var(--gray--medium);
	cursor:pointer;
	opacity:1;
	z-index: 100;
	background-image:url(/dist/images/cookie.png);
	background-size:20px;
	background-position:center center;
	background-repeat: no-repeat;
}
.cookie:hover{
	background-color:#f6f6f6;
	transition:400ms all ease-in;
	opacity:0.9;
	border:4px solid blue;
}
/* Slider area*/

section{
	position: relative;
	padding-bottom:100px;
}
section.bg, article.bg{
background: #2A7B9B;
background: linear-gradient(180deg, rgba(42, 123, 155, 1) 0%, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 29%, rgba(235, 235, 235, 1) 50%, rgba(252, 252, 252, 1) 68%, rgba(252, 252, 252, 1) 100%);
}
section .head{
	padding-bottom:80px;
	text-align:center;
	padding-top:80px;
}
	section .head h1{
		margin:0;
	font-size:35px;
	line-height: 37px;
}
section .head b{
	font-size:16px;
	color:rgba(1,1,1,0.6);
	margin:0;
}
section .slider-container{
	width:var(--width);
	margin:auto;
	position: relative;
}	
section .slider-container .row{
	display: flex;
	gap:10px;
	padding-top:40px;
	flex-wrap: wrap;
}
section .slider-container .row .col-33{
	display:block;
	width:32%;
}
section .slider-container .row .col-33.hgt-fll{
	display: block;
}
section .slider-container .row .col-33.hgt-hlf a{
	height:315px;
	overflow: hidden;
	margin-bottom:10px;
	box-shadow:0px 0px 20px rgba(
		1, 1, 1, 0.05);
}
section .slider-container .row .col-33.hgt-hlf a img{
	margin-top:-60px;
	z-index:-20;
	margin-left:20px;
	width:80%;
	margin-left:20%;
}
section .slider-container .row .col-33 a.cnc{
	background-image:url(/dist/images/cnc.png);
	background-size:1px;
	background-position: 96% 4%;
	background-repeat: no-repeat;
}
section .slider-container .row .col-33 a.autoid{
	background-image:url(/dist/images/bar.webp);
	background-size:1px;
	background-position: 96% 4%;
	background-repeat: no-repeat;
}
section .slider-container .row .col-33 a{
	background-color:rgba(255,255,255,0.8);
	display: block;
	width:100%;
	margin-top:0px;
	border-radius:15px;
	padding:20px 20px 0px 20px;
	z-index:0;
	position: relative;
	height:640px;
	transition: 400ms all ease;
} 
section .slider-container .row .col-33 a:hover{
	background-color:#f8f8f8;
	box-shadow:0px 0px 40px rgba(1,1,1,0.1);
	transition: 400ms all ease;
	border-bottom-right-radius: 50px;
}

section .slider-container .row .col-33 a span{
	margin:0;
	font-size:9px;
	max-width:80%;
	margin-top:5px;
	color:blue;
	font-weight:800;
	margin-bottom:5px;
	display: block;

}

section .slider-container .row .col-33 a h2{
	margin:0;
	font-size:23px;
	z-index:20;
	position: relative;
	line-height:24px;
	max-width:80%;
	letter-spacing: 0px;

}
section .slider-container .row .col-33 a p{
	color:var(--gray--medium);
	font-size:13px;
	max-width:70%;
	z-index:0;
	display: block;
	padding-bottom:-50px;
	margin-top:5px;
	z-index:20;
	font-weight:600;
}
section .slider-container .row .col-33 a img{
	width:100%;
	margin-top:0px;
	display: block;
	z-index:-30;
	margin-bottom:20px;
	position: relative;
}
section .slider-container .row .col-33 .button{
    z-index: 10;
    color: #000;
    text-align: center;
    border:3px solid var(--gray--medium);
    border-radius: 100px;
    justify-content: center;
    align-items: center;
    min-width: 8rem;
    padding: .7rem 0.8rem;
    font-size: .7rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    position: relative;
    overflow: hidden;
    display: none;
    width:170px;
}
/* Breadcrump all area*/

.breadcrump{
	width:var(--width);
	margin:auto;
	margin-bottom:30px;
}
.breadcrump ul{
	margin:0;
	padding:0;
	font-weight: bold;
	padding-top:20px;
	color:blue;
}
.breadcrump ul li{
	display: inline-block;
	list-style: none;
	padding-right:10px;
	padding-left:10px;
	font-size:12px;
	font-weight: bold;
	color:var(--gray--medium);
}
.breadcrump ul li:first-child{
	padding-left:0px;
}
.breadcrump ul li a {
}
/* Product subpage area*/

section .product-container{}
section .product-container .product-head{
	width:var(--width);
	margin:auto;
	margin-bottom:40px;
	margin-top:80px;
}
section .product-container .product-head span{
	font-size:10px;
	margin:0;
	padding:0;
	color:blue;
	font-weight:bold;
	margin-top:0px;
	display: block;
	margin-bottom:10px;
}
section .product-container .product-head h1{
	font-size:48px;
	margin:0;
	padding:0;
	line-height:50px;
	letter-spacing: -0.5px;
	margin-bottom:10px;
	max-width:60%;
}
section .product-container .product-head h2{
	font-size:20px;
	color: var(--gray--medium);
	margin:0;
	padding:0;
	max-width:60%;
}
section .product-container .product-head p{
	    font-weight: 500;
        letter-spacing: 0.5px;
        color: var(--gray--dark);
        font-size: 18px;
        max-width:60%;

}
section .product-container .row{
	width:var(--width);
	margin:auto;
	flex-wrap: wrap;
	gap:12px;
	display: flex;
	padding-top:10px;
}
section .product-container .row .col-33{
	width:32%;
	border-radius:20px;
	background-color: white;
	box-shadow:0px 0px 20px rgba(
		1, 1, 1, 0.05);

}
section .product-container .row .col-33.wide{
	width:48% !important;
	border-radius:20px;
	background-color: white;
	box-shadow:0px 0px 20px rgba(
		1, 1, 1, 0.05);
}
section .product-container .row .col-33:hover{
	box-shadow:0px 0px 20px rgba(
		1, 1, 1, 0.2);
}
section .product-container .row .col-33 a{
	width:100%;
	height:100%;
	padding:20px;
	display: block;
	min-height: 270px;
}

section .product-container .row .col-33 img{
	height:200px;
	float:right;
	margin-top:10px;
}
section .product-container .row .col-33 span{
	font-size:11px;
	color:blue;
	font-weight:bold;
}
section .product-container .row .col-33 h3{
	margin:0;
	padding:0;
}
section .product-container .row .col-33 p{
	color:var(--gray--medium);
	margin:0;
	padding:0;
	font-weight:bold;
	font-size:11px;
	max-width:54%;
}
section .product-container .row .col-33.wide p{
	color:var(--gray--medium);
	margin:0;
	padding:0;
	font-weight:bold;
	font-size:14px;
	max-width:54%;
}
section .product-container .row .col-33 {}
/* Frequently ask area*/
section .product-container .row .faq{
	padding-top:100px;
}
section .product-container .row .faq b{
	font-size:23px;
}

section .product-container .catalog{
	width:var(--width);
	display: flex;
	margin:auto;
	gap:20px;
	flex-wrap: wrap;
	margin-top:60px;
}
section .product-container .catalog .head{
	width:100%;
	text-align: left;
	margin-bottom:-10px;
	font-size:23px;
	font-weight: bold;
	padding-bottom:20px;
}
section .product-container .catalog .head span{
	display: block;
	font-size:10px;
	color:blue;

}
section .product-container .catalog .cat-holder{
	width:18%;
}
section .product-container .catalog .cat-holder img{
	width:100%;
}
section .product-container .catalog .cat-holder b{
	text-decoration: none;
	font-size:13px;
}
section .product-container .catalog .cat-holder p{
	text-decoration: none;
	font-size:13px;
	margin:0;
	padding:0;
	font-weight: bold;
	color:var(--gray--medium);
}
section.bg-white{
	
}
.table-container{
	width:var(--width);
	margin:auto;
}
table{
	background-color: white;
	width:var(--width);
	margin-top:70px;
	border-radius: 2px;
	table-layout: fixed;
	border-collapse: collapse;
}
table caption{
	width:100%;
	font-size:23px;
	font-weight:bold;
	text-align: left;
	line-height:30px;
	margin-bottom:30px;
}
table caption strong{
	display: block;
	font-size:14px;
	font-weight:300;
}
table thead{
}
table tr td:nth-child(2n){
	background-color:var(--white--white);
	border: none;
  	outline: none;
}

table tr th{
}
table tr th:nth-child(1) span{
	text-align: left;
}
table tr th span{
	text-align:center;
	display: block;
    white-space:nowrap;
	transform-origin:center;
	width:100%;
	font-size:14px;
	line-height:40px;
	font-weight:700;
	color:var(--gray--medium);
	border-bottom:1px solid rgba(1,1,1,0.04);
	padding-bottom:10px;

}
table tr td{
	height:36px;
	text-align:center;
	font-weight:800;
}

table tbody tr td:first-child{
	font-size:14px;
}
table tbody tr{
	border-bottom:1px solid rgba(1,1,1,0.02);
}
/*Subpage area*/
.product-subpage-container{
}
.product-subpage-container .row{
	width:var(--width);
	margin:auto;
	display: flex;
	align-items: center;
	gap:50px;
	padding-top:20px;
}
.product-subpage-container .row .col-50{
	width:48%;

}
.ply{
	padding-top:50px;
	margin-top:100px;
	border-top:1px solid rgba(1, 1, 1, 0.1);
}
.ply span{
	font-size:10px;
	font-weight: bold;
}
.ply img{
	width:50%;
	float:right;
}
.ply p{
	max-width:46%;
}
.bg-white{
	background-color:var(--white--white);
}
.product-subpage-container .row .col-50 span{
	font-size:10px;
	font-weight:bold;
	color:blue;
}
.product-subpage-container .row .col-50 p{
	font-weight:300;
	letter-spacing: 0.5px;
	color:var(--gray--dark);
	font-size:16px;
	margin-bottom:20px;
	max-width:90%;
}
.product-subpage-container .row .col-50 h1{
	font-weight:bold;
	font-size:35px;
	margin:0;
	max-width:80%;
	line-height:38px;
}
.product-subpage-container .row .col-50 h2{
	font-weight:bold;
	font-size:18px;
	margin:0;
	color:var(--gray--medium);
	max-width:90%;
}
.product-subpage-container .row .col-50 img{
	width:100%;
}
.product-subpage-container .row .col-50.frst{
 padding:20px;
}
.product-subpage-container .row .col-50.frst h2{
 font-size:30px;
 color:var(--gray--dark);
}
.product-subpage-container .row .col-50.frst p{
 font-size:17px;
 color:var(--gray--medium);
 font-weight:600;
}
.product-subpage-container .row .col-50 a{
	font-weight:bold;
	font-size:15px;
	border:2px solid blue;
	padding:10px 80px 10px 10px;
	border-radius: 30px;
	margin-top:10px;
	display: block;
	background-image:url(/dist/images/rightarrow.png);
	background-size:13px;
	background-position: 90% center;
	background-repeat: no-repeat;
	margin-right:20px;
	display: inline-block;

}
.row.ar {
	gap:20px;
}
.row.ar {
	gap:20px;
}
.row.ar span{
	font-size:12px;
	color:blue;
	font-weight:bold;
	display: block;
	width:100%;
	margin:0;
	padding:0;
	padding-top:100px;
}
.row.ar h2{
	font-size:28px;
	font-weight:bold;
	display: block;
	width:100%;
	margin:0;
	padding:0;
	max-width:60%;
}
.row.ar h3{
	font-size:19px;
	font-weight:bold;
	display: block;
	width:100%;
	margin:0;
	padding:0;
	padding-top:40px;
	margin-bottom:10px;
	color:var(--gray--dark);
}
.row.ar p{
	max-width:90%;
	font-size:16px;
	letter-spacing: 0px;
}
.bg_gry{
	background-color:rgba(1,1,1,0.09);
	margin-bottom:50px;
}
.row.ar .col-33{
	width:31%;
}
.row.ar .col-50{
	width:48%;
}
.row.ar .col-50 video{
	width:100%;
	max-width: 500px;
}
.row.ar .col-33 img{
	width:70%;
	margin-bottom:-10px;
}
.row{
	width:var(--width);
	margin:auto;
}
.pdg{
	padding:30px;
}
.container{
	width:100%;
	position: relative;
}
.container .row{
	flex-wrap: wrap;
	display: flex;
} 
.container .row .col-3{
	width:28%;
	margin:2%;
}
.container .row .col-3 h2{
	font-size:24px;
}
.container .row .col-3 p{
	font-size:16px;
	font-weight:500;
	letter-spacing: 0.5px;
	color:var(--gray--medium);
}
.container .row .col-3 img{
	width:70%;
	margin:auto;
	margin-top:50px;
}
.end-bg img{
	width:100%;
	padding-top:100px;

}
.container .row table{
	margin-top:70px;
	font-size: 13px;
	width:100%;
}
.container .row table thead tr th{
	text-align:left;
	height:40px;
	font-size: 23px;
}
.container .row table thead tr th{
	text-align:left;
	height:40px;
}
.container .row table tbody tr td{
	text-align:left;
	height:30px;
	text-align:center;
	font-weight:600;
}
.container .row table#table_basic tbody tr td:nth-child(2){
	background-color:#d4d4d4;
}
.container .row table#table_c2 tbody tr td:nth-child(3){
	background-color:#d4d4d4;
}
.container .row table#table_pro tbody tr td:nth-child(4){
	background-color:#d4d4d4;
}
.container .row table#table_basic thead tr th:nth-child(2){
	background-color:#f5f5f5;
	border-top:2px solid blue;
}
.container .row table#table_c2 thead tr th:nth-child(3){
	background-color:#f5f5f5;
	border-top:2px solid blue;
}
.container .row table#table_pro thead tr th:nth-child(4){
	background-color:#f5f5f5;
	border-top:2px solid blue;
}
.container .row table tbody tr:nth-child(2n-1){
	background-color:var(--gray--light);
}
.container .row table tbody tr td:first-child{
	color:var(--gray--dark);
	font-weight:bold;
	text-align:left;
	font-size:16px;
	padding:5px;
}
.container .row table thead tr th{
	color:var(--gray--dark);
	font-weight:bold;
	text-align:center;
	font-size:23px;
}
.container .row table thead tr th:first-child{
	color:var(--gray--dark);
	font-weight:bold;
	text-align:left;
	font-size:23px;
}
.row.mgrn{
	padding-bottom:10px;
	padding-top:10px;
}
/* product-offer area*/

section .container.product-offer .row .col-100{
	width:100%;
	position: relative;
	min-height:40vh;
	padding:10px;
	display: flex;
	justify-items: middle;
}

section .container.product-offer .row .col-100 .img-content{
	min-width:300px;
}



/* POST and BLOG area*/

article{
	display: block;
	position: relative;
	margin-bottom:100px;
	min-height: 40vh;
}
article .post-container{
	width:var(--width);
	margin:auto;
	padding-top:100px;
	margin-top:80px;
	border-top:1px solid var(--gray--light);

}
article .post-container .row .col-100{
	width:100%;
	font-size:20px;
	font-weight:600;

}
article .post-container .row .col-100.push{
	text-align:right;	
}
article .post-container .row .col-100.push a{
	font-size:12px;
	padding-top:10px;	
	padding-right:20px;
	font-weight:800;
	color:var(--gray--medium);
}
article .post-container .row{
	display: flex;
	flex-wrap: wrap;
	gap:20px;
}
article .post-container .row .post-33{
	width:31%;
	border-radius:20px;
	background-color:white;
	overflow: hidden;
	box-shadow:0px 0px 20px rgba(1,1,1,0.1);
}
article .post-container .row .post-33:hover{
	box-shadow:0px 0px 20px rgba(1,1,1,0.2);
	transition: 300ms all ease;

}
article .post-container .row .post-33 a{
	padding:20px;
	padding-top:50px;
	padding-bottom:50px;
	display: block;
}
article .post-container .row .post-33 a img{
	width:100%;
}
article .post-container .row .post-33 a h3{
font-size:16px;
margin:0;
padding:0;
}
article .post-container .row .post-33 a p{
	margin:0;
	font-size:14px;
	color:var(--gray--medium);
	padding-top:10px;
	font-weight: 500;
}
article .post-container .row .post-33 a span{
margin:0;
	font-size:9px;
	max-width:80%;
	margin-top:5px;
	color:blue;
	font-weight:800;
	margin-bottom:5px;
	display: block;
}
article .post-inner-container .row{
	width:800px;
}
article .post-inner-container .row .read ul{
	display: flex;
	padding:0;
	margin-bottom:20px;
	padding-bottom:10px;
	padding-top:10px;
	font-size:12px;
	border-top:1px solid var(--gray--light);
	border-bottom:1px solid var(--gray--light);
	justify-content: space-between;
}
article .post-inner-container .row .read ul li{
	list-style: none;
	font-size:12px;
}
article .post-inner-container .row .read ul li b{
	color:blue;
	font-size:12px;
}
article .post-inner-container .row img{
	width:100%;
	margin-bottom:20px;
}
article .post-inner-container .row h1{
	font-size:45px;
	margin:0;
	padding:0;

}
article .post-inner-container .row span{
	font-size:12px;
	font-weight:800;
	color:blue;
	display: block;
	padding-top:100px;
}
article .post-inner-container .row p{
	font-size:18px;
	font-weight:400;
	padding-top:5px;
	padding-bottom:20px;
	text-align:justify;
	color:var(--gray--dark);
}
article .post-inner-container .row b{
	font-size:18px;
	font-weight:700;
	letter-spacing: 0.5px;
	padding-top:5px;
	padding-bottom:5px;
	display: block;
}
article .post-inner-container .row a{
	font-size:20px;
	font-weight:800;
	letter-spacing: 0.5px;
	padding-top:10px;
	padding-bottom:10px;
	font-weight:800;
}
article .post-inner-container .row ul{
	padding:0;

}
article .post-inner-container .row ul li{
		font-size:18px;
	font-weight:400;
	letter-spacing: 0.5px;
	text-align:justify;
	color:var(--gray--dark);
	list-style: disc;
	padding-top:10px;
	padding-left:10px;
	margin-left:12px;
}
.blog-container .row{
	width:var(--width);
	margin:auto;
	gap:20px;
	display: flex;
	flex-wrap: wrap;
	padding-bottom:100px;
	padding-top:30px;
}	
.blog-container .row .col-50{
	width:47%;
}	
.blog-container .row .col-100{
	width:98%;
}
.blog-container .row .col-100 h1{
	font-size:38px;
	margin:0;
	padding:0;
}
.blog-container .row .col-100 span{
	font-size:10px;
	font-weight:bold;
	color:blue;
	margin:0;
	padding:0;
}
.blog-container .row .col-100 h2{
	font-size:22px;
	margin:0;
	padding:0;
	width:50%;
	font-weight: 600;
	color:var(--gray--medium);
}
/* Contact all area*/
.contact-container{}
.contact-img{
	width:100px;
	overflow:hidden;
	height:100px;
	border-radius: 50px;
	display: inline-block;
	margin-right:20px;
}
.contact-text{
	display: inline-block;
	vertical-align: top;
}
.contact-text strong{
	font-weight: 300;
	display: block;
	padding-top:20px;
}
.contact-text b{
	font-weight: 500;
}
.contact-img img{
	width:100%;
}
.bs{
	min-height:60vh;
	text-align:center;
	padding-top:120px;
}
.bs strong{
	text-align:center;
	font-size:30px;
	width:100%;
}
.bs strong a{
	color:var(--gray--medium);
}
/* Footer all area*/
footer{
	widdth:100%;
	min-height:50vh;

}
footer .footer-container{
	width:var(--width);
	margin:auto;
	border-top:1px solid rgba(1,1,1,0.1);
	padding-top:60px;
}
footer .footer-container .row{
	display: flex;
}

footer .footer-container .col-50{
	width:48%;
}
footer .footer-container .col-50 b{
	font-size:30px;
}
footer .footer-container .col-50 p{
	font-size:20px;
	color:var(--gray--medium);
	margin-bottom:50px;
}
footer .footer-container .col-50 .logo{
	font-family: 'clashdisplay-bold';
	text-decoration: none;
	font-size:45px;
	color:#333;
	display: block;
	width:200px;
	height:50px;
	margin-top:20px;
	line-height:50px;
	border-left: 9px solid blue;
	padding-left:10px;
	float:right;
}
footer .phone, footer .mail{
	height:50px;
	background-image:url(/dist/images/phone.png);
	background-size:20px;
	padding-left:36px;
	font-size:20px;
	background-position: left center;
	font-weight: bold;
	background-repeat: no-repeat;
	line-height:50px;
	color:var(--gray--dark);
}

footer .mail{
	background-image:url(/dist/images/mail.png);
}
footer .footer-container .menu{
	display: inline-block;
	width:100%;

}
footer .footer-container .menu ul{
	margin:0;
	display: inline-flex;
	justify-content: space-between;
	align-content: space-between;
	padding:0px;
	float:right;
}
footer .footer-container .menu ul li{
	list-style: none;
	color:black;
	padding-right:20px;
	height:80px;
	line-height: 70px;
	display: block;
	margin-top:10px;
	box-sizing: border-box;
}

footer .footer-container .menu ul li a{
	border-radius: 30px;
	margin-top:15px;
	height:40px;
	margin-bottom:20px;
	line-height: 35px;
	text-align:left;
}
footer .footer-container .menu ul li a{
	text-decoration: none;
	font-weight:bold;
	color:var(--gray--dark);
	font-size:15px;
	display: block;
}
footer .footer-container .menu ul li a:hover{

	color:blue;

}
footer .copyright{
	width:var(--width);
	border-top:1px solid rgba(1,1,1,0.1);
	margin-top:100px;
	margin:auto;
	display: block;
	padding-top:20px;
	text-align: center;
	font-weight:600;
	color:var(--gray--dark);
	padding-bottom:30px;
}
footer .copyright b{
	color:blue;

}
tr.lft{
	text-align:left !important;
}

/* Media query*/
@media only screen and (min-width: 900px) and (max-width: 1200px){

:root {
    --width: 880px;
}
}

@media only screen and (min-width: 600px) and (max-width: 899px){

:root {
    --width: 98%;
}
section .slider-container .row,article .post-container .row  {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 40px;
    justify-content: center;
    align-content: center;
}
section .slider-container .row .col-33 {
    display: block;
    width:45%;
}
article .post-container .row .post-33 {
    width: 45%;
    border-radius: 20px;
    background-color: white;
    overflow: hidden;
    box-shadow: 0px 0px 20px rgba(1, 1, 1, 0.1);
}
section .product-container .row .col-33 {
    width: 48%;
    border-radius: 20px;
    background-color: white;
}
.sticky{
	position:relative;
}
header .header-container .menu ul li{
	display: none;
}
header .header-container .menu ul li:last-child{
	display: inline-block;
}
footer .footer-container .menu ul li{
	display: none;
}
footer .footer-container .col-50 {
    width: 100%;
}
.product-subpage-container .row{
    flex-wrap: wrap;
}
.product-subpage-container .row.mgrn{
    flex-direction: column-reverse;
}
.product-subpage-container .col-50{
    width:100% !important;
}
section .product-subpage-container .row .col-33{
    width: 49%;
    border-radius: 20px;
    background-color: white;
}
article .post-inner-container .row {
    width: 92%;
    padding:4%;
}
.row{
	padding-top:80px;
}
.row.mgrn{
	padding-bottom:50px;
	padding-top:50px;
}
section .product-container .row .col-33.wide {
    width: 92% !important;
    border-radius: 20px;
    margin-left:4%;
    background-color: white;
}
.product-subpage-container .col-50{
    width:90% !important;
    margin-left:10%;
}
.blog-container .row .col-100 h1{
	font-size:29px;

}
.blog-container .row .col-100 span{

}
.blog-container .row .col-100 h2{
	font-size:18px;
	width:100%;
}
section .slider-container .row .col-33.hgt-hlf a img{
	margin-top:-20px;
	z-index:-20;
	margin-left:20px;
	width:80%;
	margin-left:20%;
}
section .slider-container .row .col-33.hgt-hlf a img {
    margin-top: -70px;
    z-index: -20;
    margin-left: 20px;
    width: 80%;
    margin-left: 20%;
}
}
@media only screen and (min-width: 0px) and (max-width: 599px){

:root {
    --width: 95%;
}
section .slider-container .row,article .post-container .row  {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 40px;
    justify-content: center;
    align-content: center;
}
section .slider-container .row .col-33 {
    display: block;
    width:90%;
}
article .post-container .row .post-33 {
    width: 90%;
    border-radius: 20px;
    background-color: white;
    overflow: hidden;
    box-shadow: 0px 0px 20px rgba(1, 1, 1, 0.1);
}
section .head b{
    font-size: 16px;
    color: rgba(1, 1, 1, 0.6);
    margin: 0;
    width:80%;
    margin:auto;
    display: block;
}
article .post-container .row .col-100 {
    font-weight: 600;
    text-align:center;
    margin-bottom:20px;
    font-weight: bold;
}
.sticky{
	position:relative;
}

header .header-container .menu ul li{
	display: none;
}
header .header-container .menu ul li:last-child{
	display: inline-block;
}
footer .footer-container .menu ul li{
	display: none;
}
footer .footer-container .col-50 {
    width: 100%;
}
footer .footer-container .row {
    display: flex;
    flex-wrap: wrap;
}
footer .footer-container .col-50 .logo {
	font-size:40px;
	height:50px;
    float: left;
}
footer .copyright{
	text-align: left;
}
.product-subpage-container .row{
    flex-wrap: wrap;
}
.product-subpage-container .col-50{
    width:90% !important;
    margin-left:10%;
}
.product-subpage-container .row.mgrn{
    flex-direction: column-reverse;
}
section .product-container .row .col-33 {
    width: 96%;
    border-radius: 20px;
    background-color: white;
}
.table_component{
	width:100%;
	position: relative;
	display: block;
	overflow-x: scroll;
}
table{
    background-color: white;
    width: 800px;
    margin-top: 70px;
    border-radius: 2px;
    table-layout: fixed;
    border-collapse: collapse;
}
section .product-container .catalog .cat-holder {
    width: 90%;
    padding:5%;
}
body{
	overflow-x:hidden;

}
article .post-inner-container .row {
    width: 92%;
    margin-left:4%;
}
section .product-container .row .col-33.wide {
    width: 92% !important;
    border-radius: 20px;
    padding:4%;
    background-color: white;
}
footer .footer-container .col-50 b{
	font-size:24px;
}
footer .footer-container .col-50 p{
	font-size:16px;
	color:var(--gray--medium);
	margin-bottom:50px;
}
.blog-container .row .col-100 h1{
	font-size:29px;

}
.blog-container .row .col-100 span{

}
.blog-container .row .col-100 h2{
	font-size:18px;
	width:100%;
}
.ply img{
	width:100%;
}
.ply p{
	max-width:98%;
}
section .slider-container .row .col-33.hgt-hlf a {
    height: 350px;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: 0px 0px 20px rgba( 1, 1, 1, 0.05);
}
section .slider-container .row .col-33.hgt-hlf a img {
    margin-top: -50px;
    z-index: -20;
    margin-left: 20px;
    width: 80%;
    margin-left: 20%;
}