:root{
	--white_clr:  #fff;
	--black_clr: #000;
	--text_clr: #222;
	--text_clr_light: #a1a1a1;
	--primary_clr: #327ace;
	--secondary_clr: #f4842c;
	--body_clr: #DEE8F3;
	--primary_font_family: "Chivo", sans-serif;
	--secondary_font_family: "Poppins", sans-serif;
	--bdr_clr: #cacaca;
	--bdr-radius-80: 80px;
	--bdr-radius-40: 40px;
	--shadow-1: 0 1px 3px rgba(0,0,07,0.05);
}
/*Slick Slider Css Start*/
.slick-slider{
	position:relative; display:block; -webkit-touch-callout:none;-khtml-user-select:none;
	-ms-touch-action:pan-y; touch-action:pan-y;-webkit-tap-highlight-color:transparent;
}
.slick-list{
	position:relative; display:block; overflow:hidden; margin:0; padding:0; min-width: 100%;
}
.slick-list.dragging{
	cursor: pointer;
}
.slick-slider .slick-track,
.slick-slider .slick-list{
	-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);
	-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0);
}
.slick-track{
	position:relative; top:0; left: 0; min-width: 100%;
	display:flex;display:-webkit-flex;
}
.slick-track:before,
.slick-track:after{display:table; content:"";}
.slick-track:after{clear:both;}
.slick-loading .slick-track{visibility:hidden;}
.slick-slide{
	display:none; min-height:1px; flex-grow: 1; flex: inherit;
}
.slick-initialized .slick-slide{
	display: block; list-style:none;
}
.slick-loading .slick-slide{
	visibility: hidden;
}
.slick-vertical .slick-slide{
	display: block; height: auto; border:1px solid transparent;
}
.slick-arrow{
	display:flex; align-items: center; justify-content: center; position:absolute; top:50%; margin-top:-16px; z-index:2;
	padding:0; width:32px; height:32px; text-align:center; font-size:0; border:0;
	color: var(--primary_clr); cursor:pointer; opacity:1; background: #ddd;
	-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;
	-moz-transition:all 0.4s ease 0s;-webkit-transition:all 0.4s ease 0s;transition:all 0.4s ease 0s; box-shadow: 0 0 10px rgba(0,0,0,0);
}
.slick-arrow:before{
	display: block; content: "\f060"; font-family: 'Line Awesome Free'; font-weight: 900; font-size: 14px;
}
.slick-arrow.slick-next:before{
	content: "\f061";
}
.slick-arrow.slick-prev{left:0;}
.slick-arrow.slick-next{right:0;}
.slick-arrow:hover{
	color: var(--white_clr); background: var(--primary_clr);
}
.slick-arrow.slick-disabled{
	background: var(--bdr_clr); color: var(--secondary_clr); cursor: inherit;
}
.slick-dots{
	display:flex;display:-webkit-flex; align-items: center; justify-content: center;
	position:absolute; left:0; right:0; margin:0 auto; padding:0; bottom:-10px; text-align:center;
}
.slick-dots li{
	margin:0 5px; padding:0; list-style:none; display:inline-block; vertical-align:top;
}
.slick-dots li button{
	display:block; width:7px; height:7px; font-size:0; padding: 0; background: #ddd; border:none;
	cursor:pointer; position: relative; -moz-transition:all 0.4s ease 0s;-webkit-transition:all 0.4s ease 0s;transition:all 0.4s ease 0s;
	border-radius:50%; 
}
.slick-dots li.slick-active button{
	background: var(--primary_clr); width: 10px; height: 10px;
}
/*Slick Slider Css End*/
/* ===== RESET ================================================== */
abbr, acronym, address, applet, article, aside, audio,b, blockquote,big, body, button, center, canvas, caption, cite, code, command,datalist, dd, del, details, dfn, dl, div, dt, embed,fieldset, figcaption, figure, font, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html,i, iframe, img, ins,kbd, keygen,label, legend, li, meter,nav,object, ol, output,p, pre, progress,q, s, samp, section, small, source, strike, sub, sup,table, tbody, tfoot, thead, th, tr, tdvideo, tt, var{background:transparent; border:0 none; margin:0; padding:0; line-height:normal; vertical-align:baseline; outline:none; font-size:100%; font-family:inherit; font-weight:400; font-style:normal;} article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display:block;} blockquote,q{quotes:none;} blockquote:before,q:before{content:'';content:none;} blockquote:after,q:after{content:'';content:none;} ins {text-decoration:none;} abbr[title], dfn[title] {border-bottom:1px dotted; cursor:help;} table {border-collapse:collapse; border-spacing:0;} hr {display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0;}input, select {vertical-align:middle; margin:0;} ol, ul, li {list-style:none;}
html{-webkit-text-size-adjust:100%; -ms-text-size-adjust:100%; scroll-behavior: smooth;}
*, *:before, *:after{-webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box; -webkit-tap-highlight-color:rgba(255,255,255,0);}
/* ===== GLOBAL ================================================== */
body{
	margin:0; padding:0; background:var(--body_clr); font-family:var(--primary_font_family);
	font-size:16px; color: var(--text_clr); line-height:24px; font-weight:400; overflow-x:hidden;
	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
  	text-rendering: optimizeLegibility;
}
:focus, button:focus{outline:none;}
a{text-decoration:none; color: var(--text_clr); -moz-transition:all 0.4s ease 0s; -webkit-transition:all 0.4s ease 0s; transition:all 0.4s ease 0s;}
a:hover{text-decoration:none; color:var(--primary_clr);}

::-webkit-input-placeholder{color:var(--text_clr); opacity:0.5;}
:-moz-placeholder{color:var(--text_clr); opacity:0.5;} /* Firefox 18- */
::-moz-placeholder{color:var(--text_clr); opacity:0.5;} /* Firefox 19+ */
:-ms-input-placeholder{color:var(--text_clr); opacity:0.5;}

.clear{width: 100%; clear: both;}
img{max-width:100%; height:auto; border:none; outline:none;}
b, strong{font-weight:700;}

/* Ul Li & Ol Li CSS */
ul, ol{margin:0 0 20px; padding:0;}
ul ul, ol ol, ul ol, ol ul{margin-top:15px;}
ul li, ol li{margin:0; padding:0; font-size: 18px; line-height: 1.4; color:var(--text_clr); font-weight: 400; letter-spacing:-0.01em;}
.entry-content ul{padding:0; margin:0 0 20px;}
.entry-content ol{padding:0; margin:0 0 20px; list-style: none; counter-reset: my-awesome-counter;}
.entry-content ul li{position:relative; padding:0 0 0 30px; margin:0 0 10px;}
.entry-content ul > li:before{
	content:""; position:absolute; left: 12px; top: 10px; width: 6px; height: 6px;
	background: var(--text_clr); outline-offset: 3px;
	-webkit-border-radius: 50%;-moz-border-radius: 50%;border-radius: 50%;
}
.entry-content ul li li{list-style:none;}
.entry-content ol li{counter-increment: my-awesome-counter; margin:0 0 8px;}
.entry-content ol li::before{content: counter(my-awesome-counter) ". "; font-weight:400;}

/* Heading CSS */
h1, .h1, h2, .h2, h3, h4, h5, h6{color: var(--text_clr); line-height:1.3; font-weight: 600; font-family:var(--secondary_font_family); font-synthesis: none; letter-spacing:-0.01em; margin:0 0 15px;}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a{color: var(--black_clr);}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover{color:var(--primary_clr);}
h1, .h1{font-size: 48px; line-height:1.2; margin:0 0 20px;}
h2, .h2{font-size: 32px; line-height:1.4; margin:0 0 20px;}
h3{font-size:28px;}
h4{font-size:24px;}
h5{font-size:22px;}
h6{font-size:20px;}
.big-heading{font-size: 5.556vw; font-weight: 400; text-transform: uppercase;}
/* Paragraph CSS */
p{font-size: 18px; line-height: 1.4; color:var(--text_clr); font-weight: 300; letter-spacing:-0.01em; margin:0 0 20px;}
p strong{font-weight: 400; color: var(--black_clr);}
hr{border:none; margin:30px 0; background:var(--text_clr); height:1px; width:100%; clear:both; opacity: 0.3;}
body .wp-block-separator{border: 0;}
blockquote{border-left:5px solid #eee;font-size:16px; margin:0 0 20px; padding:10px 20px;}
/*table structure*/
table, .entry-content table{border-right:1px solid #eee; border-top:1px solid #eee;}
table th, table td, .entry-content th, .entry-content table th, .entry-content td, .entry-content table td {background:var(--white_clr); border-left:1px solid #eee; border-bottom: 1px solid #eee; text-align:left; font-size:16px; color:#333; font-weight:400; padding:12px 20px; vertical-align:middle;}
table th{color:#111; font-weight:400; background:#d4d5d6;}
.table-striped th, .table-striped td{position:relative;}
.table-striped tbody tr:nth-of-type(even) td{background:#d4d5d6;}
/*Form Input Field*/
input, textarea, select{
	background:var(--white_clr); border:1px solid var(--bdr_clr); width:100%; padding:4px 20px; margin:0;
	font-size:16px; color:var(--black_clr); font-weight:400; line-height:normal; letter-spacing:0; font-family:var(--primary_font_family); height: 48px; outline:none;
	-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;
}
input[type="button"], input[type="submit"] {cursor:pointer; width:auto; height:auto;}
input[type="checkbox"], input[type="radio"] {border:none; width:auto; height:auto;}
textarea {display: block; height:100px; padding:20px; min-height:140px; resize: none;}
input[type="button"], input[type="submit"], input[type="image"], input[type="file"], input[type="search"]{-webkit-appearance:none;}
input#addressSubmit {-webkit-appearance:none !important ; }
input[type="radio"], input[type="checkbox"]{-webkit-appearance:normal;}
.checkbox, .radiobox{display: inline-block; position: relative; padding-left: 24px; font-size: 14px; line-height: 14px; color: #676767;}
.checkbox input, .radiobox input{position: absolute; left: 0; top: 0; opacity: 0;}
.checkbox .checkmark{display: block; width: 13px; height: 13px; border: 1px solid #111; position: absolute; left: 0; top: 0;}
.checkmark:before{display:block; content:"\f00c"; font-family:'FontAwesome'; position:absolute; left:0; right:0; top:0; text-align:center; font-size:10px; color:var(--white_clr); line-height:10px; padding-left:1px; opacity:0;}
.checkbox input:checked ~ .checkmark{background:#111; border-color:#111;}
.checkbox input:checked ~ .checkmark:before{opacity:1;}
.radiobox .checkmark{display: block; width: 16px; height: 16px; background: var(--white_clr); border: 1px solid #111; -webkit-border-radius: 50%;-moz-border-radius: 50%;border-radius: 50%; position: absolute; left: 0; top: 1px;}
.radiobox .checkmark:before{display: none;}
.radiobox .checkmark:after{display: block; content: ""; background: #111; -webkit-border-radius: 50%;-moz-border-radius: 50%;border-radius: 50%; position: absolute; left: 2px; right: 2px; top: 2px; bottom: 2px; opacity: 0;}
.radiobox input:checked ~ .checkmark:after{opacity: 1;}
.selectbox{
	position: relative; background:var(--white_clr); border:1px solid var(--bdr_clr);
	-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;
}
.selectbox select{background: none;border: 0;font-size: 16px;line-height: 20px;font-weight: 400;color: var(--text_clr); padding:0 40px 0 12px; width: 100%; height: 48px; -webkit-appearance: none; -moz-appearance: none; appearance: none; position: relative; z-index: 1; text-overflow: ellipsis;}
.selectbox:after{position:absolute; top:0; right:0; content:"\f107"; font-family:'FontAwesome'; font-size: 24px; color: var(--secondary_clr); z-index:0; width: 40px; height: 48px; line-height: 48px; text-align: center; display: flex; align-items: center; justify-content: center; -moz-transition:all 0.4s ease 0s;-webkit-transition:all 0.4s ease 0s;transition:all 0.4s ease 0s;}
.selectbox.reversed:after{content:"\f0ec"; transform: rotate(90deg); font-size: 14px;}
.required-text{
	display: inline-block; font-size: 16px; line-height: 1.4; color: var(--text_clr); font-weight: 400; text-transform: uppercase;
}
/*Button styling*/
.button, .btn{
    display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex;
    -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;
    padding: 16px 20px; background: none; border: 1px solid var(--primary_clr); color: var(--primary_clr); font-size: 16px; line-height: 1; font-weight: 400; cursor: pointer;
    letter-spacing: 0; text-align: center; position: relative; min-width: 140px; font-family: var(--secondary_font_family); text-transform: none;
    -webkit-transition: all 0.3s ease 0s; -o-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s; overflow: hidden; gap: 10px;
    -webkit-border-radius: 40px;-moz-border-radius: 40px;border-radius: 40px;
}
.button:hover, .btn:hover,
.button:focus, .btn:focus{
    background:var(--primary_clr); border-color:var(--primary_clr); color:var(--white_clr);
    -webkit-box-shadow:0 2px 15px rgba(0,0,0,0.16); box-shadow:0 2px 15px rgba(0,0,0,0.16);
}
.primary,
.primary:hover,
.primary:focus{
    background: var(--primary_clr); border-color: var(--primary_clr); color: var(--white_clr); border: 0;
}
.primary:hover,
.primary:focus{
    background: var(--secondary_clr); border-color: var(--secondary_clr); color: var(--white_clr);
}
.secondary{
    background: var(--secondary_clr); border-color: var(--secondary_clr); color: var(--white_clr);
}
.secondary:hover,
.secondary:focus{
    background: var(--primary_clr); border-color: var(--primary_clr); color: var(--white_clr);
}
.white-btn,
.white-hover:hover,
.white-hover:focus{
    background: var(--white_clr); border-color: var(--white_clr); color: var(--black_clr);
}
.white-btn:hover,
.white-btn:focus{
    background: var(--white_clr); border-color: var(--white_clr); color: var(--primary_clr);
}
.white-bdr{
    border-color: var(--white_clr); color: var(--white_clr);
}
.white-bdr:hover{
    background: var(--white_clr); border-color: var(--white_clr); color: var(--text_clr);
}
.btn_icon{
    -webkit-transform:rotate(-30deg);
    -moz-transform:rotate(-30deg);
    transform:rotate(-30deg);
}
.btn .btn_label{
    position: relative; display: inline-flex; align-items: center; white-space: nowrap;
    height: 50px; transition: transform 0.8s cubic-bezier(0.15, 0.85, 0.31, 1);
}
.btn .btn_label:before{
    top: 100%; left: 50%; transform: translateX(-50%);
    display: inline-flex; align-items: center; width: 100%; height: 100%;
    position: absolute; content: attr(data-text);
}
.btn:hover .btn_label{
    transform: translateY(-100%);
}
.small.btn{
	padding: 10px 15px;
}
.small.btn .btn_label{
	height: 42px;
}
.more-link{
	display: inline-flex; align-items: center;
	font-size: 18px; color: var(--primary_clr); font-weight: 500; position: relative;
}
.more-link i{
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--primary_clr); color: var(--white_clr);
	width: 32px; height: 32px; border-radius: 50%; margin-left: 10px;
	-moz-transition:all 0.4s ease 0s;-webkit-transition:all 0.4s ease 0s;transition:all 0.4s ease 0s;
}
.more-link:hover{
	color: var(--secondary_clr);
}
.more-link:hover i{
	color: var(--white_clr); background: var(--secondary_clr);
}
.main-wrapper{position: relative; z-index: 2;}
.container{margin:0 auto; width:100%; max-width:1170px; padding:0 20px;}
.container.relative{z-index: 2;}
.max-container{margin:0 auto; width:100%; max-width: 1540px; padding:0 40px;}
.fluid-container{max-width: 100%;}
section{position: relative;-webkit-transition:all 0.4s ease 0s;-o-transition:all 0.4s ease 0s;transition:all 0.4s ease 0s;}
section *:last-child{margin-bottom:0;}
.hide{display:none;}
.v-center{-webkit-box-align: center;-ms-flex-align: center;align-items: center;}
.j-center{-webkit-box-orient: vertical;-webkit-box-direction: normal;-ms-flex-direction: column;flex-direction: column; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;}
.ptb-100{padding:100px 0;}
.ptb-80{padding:80px 0;}
.ptb-60{padding:60px 0;}
.ptb-40{padding:40px 0;}
.ptb-30{padding:30px 0;}
.ptb-20{padding:20px 0;}
.ptb-10{padding:10px 0;}
.bg1{background: var(--primary_clr);}
.bg2{background: #1c1c1c;}
.bg3{background: #f4f7fb;}
.grd-bg{
	position: absolute; left: 0; right: 0; top: 0; bottom: 0;
	background: linear-gradient(to bottom, rgba(236,237,245,1) 50%,rgba(50,122,206,0.2) 100%);
}
.glass-style{
    border: 1px solid var(--white_clr);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    box-shadow: 20px 18px 7px
	color-mix(in srgb, #93b7ff 0%, transparent), 2px 2px 2px 
	color-mix(in srgb, #93b7ff 6.5%, transparent), 1px 1px 2px 
	color-mix(in srgb, #93b7ff 2%, transparent);
}
.relative{position: relative;}
.row-20{margin-left: -10px; margin-right: -10px;}
.row-20 > div{padding-left: 10px; padding-right: 10px;}
.trans{
	-moz-transition:all 0.4s ease 0s;-webkit-transition:all 0.4s ease 0s;transition:all 0.4s ease 0s;
}
.h-100vh{
	height: 100vh;
}
.animate-cap,
.animate{
    transform: translateY(50px); opacity: 0;
    transition: transform .8s .2s, opacity 1s .2s;
}
.animate-cap.animated,
.animate.animated{
    transform: translateY(0); opacity: 1;
}
/*=========== Mobile Menu STYLE Start ========*/
body.mobile-menu-open{
    overflow:hidden;
}
.mobile-menu-block{
	background: var(--text_clr); bottom:0; color: var(--white_clr);
	position:fixed; top:0; left:-110%; width:100%; z-index:42; font-size:16px;
	-moz-transition:all 0.4s ease 0s;-webkit-transition:all 0.4s ease 0s;transition:all 0.4s ease 0s;
}
.mobile-menu-open .mobile-menu-block{
	left: 0;
}
.mobile-menu-inner{
	height:calc(100% - 160px); overflow:auto; padding:10px 20px; position: relative; z-index: 3;
}
.mobi-logo {
	height: 80px; padding: 0 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobi-logo a, .mobi-logo img{
	display: block; width: 204px;
}
.mobi-logo .mobi-iconbox{
	right: 0;
}
.mobi-logo .menuicon{
	color: var(--white_clr);
}
.mobile-nav ul{
	margin:0; padding: 0; list-style: none;
}
.mobile-nav li{
	margin: 0; padding: 10px 0; font-size: 42px; line-height:1; color:var(--white_clr);
	font-weight:500; text-transform:none; position:relative;
}
.mobile-nav ul li a{
	display:block; color:var(--white_clr); font-weight:400; font-family:var(--primary_font_family); 
	font-size: 20px; line-height:1; text-transform: none; letter-spacing:0; padding:0 40px 0 0;
}
.mobile-nav > ul > li.current_page_item > a,
.mobile-nav > ul > li.current-menu-ancestor > a,
.mobile-nav > ul > li.current-page-ancestor > a{
	color:var(--white_clr); font-weight: 600;
}
.mobile-nav li li{border:none; padding:5px 0;}
.mobile-nav li li a{font-size:16px; text-transform:none; font-weight:400; padding:0 40px 0 0;}
.mobile-nav li li.current_page_item a{color:var(--primary_clr);}
.mobile-nav li li li a{padding-left:0;}
.mobile-nav ul.sub-menu{margin:0; padding:10px 10px 0;}
.hitarea{
	display:flex; align-items: center; justify-content: center; width:40px; height:42px;
	text-align:center; position:absolute; right:0; top:0;
}
.hitarea:before{
	display:block; content:"\f107"; font-family:'FontAwesome'; font-size: 18px; font-weight: 400;
	width:15px; height:15px; position:absolute; left:0; right:0; top:10px; z-index:3; margin:0 auto;
	-moz-transition:all 0.4s ease 0s;-webkit-transition:all 0.4s ease 0s;transition:all 0.4s ease 0s;
}
.collapsable-hitarea.hitarea:before{transform:rotate(-180deg);}
.mobile-nav .collapsable-hitarea + a{color:var(--primary_clr);}
.mobi-bottom-inner {
    padding: 20px 20px; height: 80px;
}
.mobi-bottom-text{
	max-width: 60%;
}
.mobi-bottom-inner p{
	font-size: 14px; line-height: 18px; color: var(--white_clr);
	letter-spacing: 0; text-transform: uppercase; margin: 0;
}
.mobile-menu-block .social-media .s-icon{
	opacity: 1;
}
/*========== Mobile Menu STYLE End==============*/
/*Mobile Menu Css Start*/
.mobi-iconbox{
	display:none; width:38px; height:38px;
	position:absolute; right: 0; top:0; bottom: 0; margin: auto; z-index:40; transition:all 0.4s ease;
	-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;
}
.menuicon{display: block; width: 20px; height: 14px; flex-direction: column; align-items: center; justify-content: center; margin: auto;}
.icon-bar{display:flex;display:-webkit-flex; align-items: center; min-width: 100%; height: 14px; position: relative; cursor: pointer;}
.icon-bar:before,
.icon-bar:after{
	display: block; content: ""; width: 80%; height: 2px; background: var(--primary_clr); position: absolute; right: 0; top: 0;
	-moz-transition:all 0.4s ease 0s;-webkit-transition:all 0.4s ease 0s;transition:all 0.4s ease 0s; -webkit-border-radius:20px;-moz-border-radius:20px;border-radius:20px;
}
.icon-bar:after{
	top: auto; bottom: 0; width: 50%
}
.icon-bar .line{
	display: block; width: 100%; height: 2px; background: var(--primary_clr); position: absolute; right: 0; top: 0; bottom: 0; margin: auto 0;
	-moz-transition:all 0.4s ease 0s;-webkit-transition:all 0.4s ease 0s;transition:all 0.4s ease 0s; -webkit-border-radius:20px;-moz-border-radius:20px;border-radius:20px;
}
.icon-bar.active .line{width: 1px; opacity: 0;}
.icon-bar.active:before{transform: rotate(45deg); top: 7px; width: 100%;}
.icon-bar.active:after{transform: rotate(-45deg); bottom: 5px; width: 100%}
/*Mobile Menu Css End*/

/*Header & Banner Section*/
.header{
	position: fixed; left: 0; right: 0; top: 0; z-index:40; padding: 0; background: var(--white_clr);
}
.header.navbar_fixed{
	box-shadow: var(--shadow-1);top: 0 !important;
}
.header .max-container{
	max-width: 100%;
}
.header-inner{
	position: relative; height: 80px;
}
.header-inner.animated{
	transform: translateY(0);
}
.site-logo{
	width: 210px; position:relative; z-index:4; margin:0;
	-webkit-transition:all 0.4s ease 0s;-o-transition:all 0.4s ease 0s;transition:all 0.4s ease 0s;
}
.site-logo a{
	display: block;
}
.site-logo img,
.site-logo svg{
	display: block; margin: 0; width: 204px;
}
.head-btnbox .btn,
.mobi-bottom-text .btn{
    min-width: 120px; font-size: 14px; line-height: 18px; padding: 0 20px;
}
.head-btnbox .btn .btn_label,
.mobi-bottom-text .btn .btn_label{
	height: 40px;
}
.head-btnbox .btn:hover .btn_label{
    transform: translateY(-40px);
}

/*Sticy header*/
.header-blank{
	height: 80px; -moz-transition:all 0.4s ease 0s;-webkit-transition:all 0.4s ease 0s;transition:all 0.4s ease 0s;
}

/*Nav Css*/
.header-middle{
	margin-left: 40px; padding-left: 40px; border-left: 1px solid #ddd;
}
.nav-main{
	position:relative; z-index:4;
}
.nav-main ul{
	margin:0; padding:0; display:flex;display:-webkit-flex; gap: 0 30px;
}
.nav-main nav ul > li{
	margin:0; padding:0; list-style:none; position:relative; color:var(--black_clr);
	font-size:16px; font-weight:400; line-height:24px;
}
.nav-main nav ul > li a{
	display:block; color: #222; font-size: 18px; font-weight: 400; line-height:24px;
	font-family: var(--primary_font_family); text-transform: none; letter-spacing: -0.01em;
	padding: 8px 10px; position:relative; z-index:2;
}
.nav-main nav ul > li.current_page_item > a, 
.nav-main nav ul > li:hover > a,
.nav-main nav ul > li a:hover,
.nav-main nav ul > li a:focus{
	text-shadow: 0.5px 0 0 currentColor; color: var(--secondary_clr);
}
.nav-main .sub-menu{
	display:block; position:absolute; left:0; top:100%; z-index:1; min-width:240px; padding:0; margin:0; opacity: 0;
	-moz-transition: all 0.4s ease 0s;-webkit-transition: all 0.4s ease 0s;transition: all 0.4s ease 0s;
	transform: scaleY(0); transform-origin: top; gap: 0;
	background: var(--white_clr); backdrop-filter: blur(5px); box-shadow: 0 10px 15px rgb(0 0 0 / 10%);
}
.nav-main nav ul > li:hover > .sub-menu {display: block;opacity: 1;transform: scaleY(1);}
.nav-main .sub-menu li{display:block; text-align:left; position:relative; margin: 0; padding: 0;}
.nav-main .sub-menu li + li {border-top:1px solid rgba(255,255,255,0.1);}
.nav-main .sub-menu li:before{display: none;}
.nav-main .sub-menu li a{
	display:block; text-transform:none; font-size: 16px; color:var(--text_clr) !important;
	line-height:normal; font-weight: 400; padding: 12px 20px;
}
.nav-main .sub-menu li a:hover,
.nav-main .sub-menu li a:focus,
.nav-main .sub-menu li.current_page_item a,
.nav-main .sub-menu li a[aria-current="page"]{
	color:var(--black_clr) !important;
    background: none !important;
}
.nav-main .sub-menu .sub-menu {
	left:100%; top:0;
}
.nav-main .sub-menu li:hover .sub-menu{
	display:block;
}
.cart-nav a i{
	font-size: 22px;
}
.nav-main nav ul > li.menu-item-has-children > a:after {
    display: block;
    content: "\f107";
    font-family: 'Line Awesome Free';
    font-weight: 900;
    font-size: 15px;
    color: var(--black_clr);
    line-height: 15px;
    text-align: center;
    width: 12px;
    height: 12px;
    position: absolute;
    right: -5px;
    top: 12px;
    -moz-transition:all 0.4s ease 0s;-webkit-transition:all 0.4s ease 0s;transition:all 0.4s ease 0s;
}
.nav-main nav ul > li.menu-item-has-children > a:hover:after{
	transform: rotate(180deg); right: -12px; color: var(--secondary_clr);
    top: 16px;
}
.nav-main .sub-menu li a::after {
    right: 14px !important; top: 14px !important;
}

/*Front Hero*/
.home-banner{
	position:relative; z-index:1; overflow: hidden;
	background: #010129;
}
.home-banner .items{
	padding: 80px 0 0; /*height: 100vh;*/ min-height: 540px; max-height: 950px; position: relative;
}
.home-banner .bg-img img,
.home-banner .bg-img video{
	width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.home-banner .bg-img:before{
	opacity: 0.4;
}
.banner-inner{
	position: relative; z-index: 2; height: 100%;
	flex-direction: column; align-items: center; justify-content: center;
}
.caption{
	padding: 0 0 20px; min-width: 740px; max-width: 740px; margin: 0; position: relative;
}
.caption-inn *{
	color: var(--white_clr);
}
.caption .h1{
	font-size: 60px; font-weight: 600; letter-spacing: -0.02em;
}
.hero-slider .slick-dots{
	bottom: 30px;
}

/*Footer Start*/
.footer{
	margin: 0; padding: 0; position: relative; z-index: 2;
	background: var(--text_clr); overflow: hidden;
}
.footer .bg-img{
	filter: invert(1);
}
.footer .max-container{
	max-width: 100%;
}
.f-about{
	max-width: 390px; margin: 0 auto;
}
.f-logo {
    max-width: 204px; margin: 0 auto;
}
.social-media{
	justify-content: center; gap: 15px;
}
.social-media .s-icon{
    display: flex; align-items: center; justify-content: center; color: var(--white_clr);
    background: var(--black_clr);
    -webkit-border-radius: 50%;-moz-border-radius: 50%;border-radius: 50%;
    font-size: 24px; min-width: 40px; height: 40px;
}
.social-media .s-icon:hover{
	background: var(--primary_clr); border-color: var(--primary_clr); color: var(--white_clr);
}
.social-media .s-icon i{
	display: flex; width: 100%; height: 100%;
	align-items: center; justify-content: center;
}
.la-twitter:before{
	display: inline-block; font-size: 0; line-height: none; width: 28px; height: 28px;
	background: url('../images/icon_twitter.svg') no-repeat center; background-size: 16px auto;
}
.footer p{
    font-size: 16px; font-weight: 300; color: var(--text_clr_light);
}
.footer p a{
	color: var(--text_clr_light);
}
.footer p a:hover{
    color: var(--white_clr);
}
.f-links h5{
	font-size: 16px; line-height: 20px; color: #e3e3e3;
	font-weight: 400; text-transform: uppercase; letter-spacing: 0; margin: 0 0 20px;
}
.f-links ul{
	margin: 0; padding: 0;
}
.f-links ul li{
	margin: 0 0 16px; padding: 0; list-style: none;
	font-size: 16px; line-height: 20px; color: var(--white_clr);
	font-weight: 400; letter-spacing: -0.32px;
}
.f-links ul li a{
	display: inline-block; color: var(--text_clr_light);
}
.f-links ul li a:hover,
.f-cont .link:hover{
	color: var(--white_clr);
}
.footer-bottom-inn{
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-bottom p,
.footer-bottom li{
	font-size: 16px; margin: 0; padding: 0;
}
.footer-bottom ul{
	gap: 20px;
}
.footer-bottom li a{
	color: var(--text_clr_light);
}
.footer-bottom li a:hover{
	color: var(--white_clr);
}
.scrollup{
    display: inline-flex; align-items: center; justify-content: center;
    position: fixed; right: -20px; bottom: 10px; z-index: 10;
    border: 1px solid var(--bdr_clr); backdrop-filter: blur(10px);
    width: 32px; height: 32px; border-radius: 50%;
    font-size: 16px; color: var(--text_clr_light); line-height: normal;
    text-align: center; cursor: pointer; opacity: 0;
    -moz-transition:all 0.4s ease 0s;-webkit-transition:all 0.4s ease 0s;transition:all 0.4s ease 0s;
}
.scrollup.active{
	right: 10px; opacity: 1;
}
.scrollup:before {
    content: ''; position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    border-radius: 50%; z-index: -1;
    background: conic-gradient(
        var(--primary_clr) var(--scroll-percent, 0%), 
        var(--bdr_clr) 0%
    );
}
.scrollup:after {
    content: ''; position: absolute; inset: 0;
    background: var(--white_clr); border-radius: 50%; z-index: -1;
}
body .wpcf7-not-valid-tip {
    font-size: 14px;
}
.footer .wpcf7 form .wpcf7-response-output {
    color: var(--white_clr); font-size: 12px;
}
/*Footer End*/

/*Midlle Section css*/
.middle-section{position:relative;}
img.alignleft{float:left; margin:0 20px 20px 0; -webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;}
img.alignright{float:right; margin:0 0 20px 20px; -webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;}
img.alignnone{margin:0 0 20px; -webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;}
iframe.alignleft{float:left; margin:0 20px 20px 0;}
iframe.alignright{float:right;margin:0 0 20px 20px;}
iframe.iframe-embed.alignright{max-width:500px;height:315px !important;}
.bg-img{position: absolute; left: 0; right: 0; top: 0; bottom: 0; z-index: 0; background-size: cover !important;}
.bg-img:before{display: block; content: ""; background: var(--black_clr); position: absolute; left: 0; right: 0; top: 0; bottom: 0; z-index: 0; opacity: 0.5;}
.bg-img img,
.bg-img video,
.bg-img iframe{display: block;width: 100%;height: 100%;object-fit: cover;object-position: center;}
.bg-img.before-none:before{display: none;}
.bg-img.fixed{background-attachment: fixed !important;}
.bg-img.bg-auto{background-size: auto !important;}
.no-img.d-flex{align-items: center;justify-content: center;font-size: 24px;line-height: normal; color: #999; background: #ddd;}
.btnbox{
	padding: 20px 0 0; gap: 20px; flex-wrap: wrap;
}
.btnbox.text-center{
	justify-content: center;
}
.small-title{
	font-size: 16px; line-height: 1.2; color: var(--text_clr); font-weight: 400; margin-bottom: 20px;
}
.block-title{
	position:relative; margin-bottom: 30px;
}
.block-title h2{
	text-transform: uppercase;
}
.block-title.text-white *{
	color: var(--white_clr);
}
.card-link{
	display: block; position: absolute; left: 0; right: 0; top: 0; bottom: 0; z-index: 4;
}
.bdr-top{
	border-top: 1px solid #CACACA; padding-top: 60px;
}
.bdr-tl {
    border-bottom: 1px solid #ddd;
}
.bdr-tl .left-block{
	padding-bottom: 15px;
}
.bdr-tl .right-block{
    padding-left: 40px; padding-bottom: 15px; border-left: 1px solid #ddd;
}

/*Products Section*/
.front-products-section,
.products-section{
	overflow: hidden;
}
.card-prod{
	flex-direction: column; position: relative; height: 100%;
}
.card-prod .imgbox{
	display: block; width: 100%; aspect-ratio: 4 / 3.5; background: #a3a3a3; margin:0 0 20px;
	overflow: hidden; -webkit-border-radius: 10px;-moz-border-radius: 10px;border-radius: 10px;
}
.card-prod .imgbox img{
	display: block; width: 100%; height: 100%; object-fit: scale-down;opacity: 0.85;
	-moz-transition:all 0.4s ease 0s;-webkit-transition:all 0.4s ease 0s;transition:all 0.4s ease 0s;
}
.card-prod h4{
	font-size: 20px; font-weight: 600; text-transform: uppercase; color: var(--primary_clr);
}
.card-prod:hover .imgbox img{
	transform: scale(1.05);
}
.d-atr{
	display: inline-flex; align-items: center; justify-content: center; gap: 7px;
	font-size: 16px; line-height: 1.2; color: var(--text_clr);
}
.d-atr em{
	display: inline-block; font-size: 14px; font-style: normal; font-weight: 600;
}
.d-atr + .d-atr{
	margin-left: 15px;
}
.price-box .label{
	display: inline-block; font-size: 14px; color: #999; margin-bottom: 2px;
}
.price-box .price{
	display: block; font-size: 20px; line-height: normal;
}
.card-prod .btn{
    padding: 7px 10px; font-size: 14px; line-height: 18px; text-transform: none; min-width: 110px; gap: 4px;
}
.product-slider > .items{
	display: none;
}
.product-slider > .items:nth-child(1),
.product-slider > .items:nth-child(2),
.product-slider > .items:nth-child(3){
	display: block;
}
.product-slider .slick-arrow{
	background: var(--primary_clr); color: var(--white_clr);
	margin-top: 0; top: 36%;
}
.product-slider .slick-list{
	overflow: visible; position: relative;
}
.product-slider .slick-list:before{
	display: block; content: ""; background: var(--white_clr);
	position: absolute; top: 0; bottom: 0; right: 100%; width: 100vw; z-index: 2;
}
.product-slider .slick-slide{
	opacity: 0.4;
}
.product-slider .slick-slide.slick-active{
    opacity: 1;
}

/*Page Content Section*/
.center-content-block{
	width: 100%; max-width: 810px; margin: 0 auto;
}
.intro-block-inner {
    gap: 100px 0;
}
.wp-block-heading{
	margin-top: 30px;
}
.wp-block-heading:first-child{
	margin-top: 0;
}
.dark-theme .small-title,
.dark-theme p,
.abt-post,
.dark-theme ul li,
.dark-theme ol li{
	color: #CACACA;
}
.dark-theme h1,
.dark-theme h2,
.dark-theme h3,
.dark-theme h4{
	color: var(--white_clr);
}
.dark-theme .bdr-top{
	border-color: var(--text_clr);
}
.intro-text-inn ul li{
	padding-left: 48px; margin-bottom: 20px;
}
.intro-text-inn ul li:before {
    content: "\f00c"; font-family: 'Line Awesome Free'; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; line-height: 18px; position: absolute; left: 0; top: 0;
    width: 24px; height: 24px; color: var(--white_clr);
    background: var(--text_clr); border-radius: 5px;
}

/*Media Section*/
.media-section{
	overflow: hidden;
}
.media-list .slick-list {
    overflow: visible;
}
.media-list .items {
    padding: 0 20px;
}
.card-media {
    width: 100%; height: 60px; display: inline-flex; align-items: center; justify-content: center;
}
.card-media img{
    display: block; width: 100%; height: 100%;
    object-fit: scale-down; object-position: center; margin: 0 auto;
    -webkit-filter: grayscale(1); filter: grayscale(1); opacity: 0.8;
}
.card-media:hover img{
	-webkit-filter: grayscale(0); filter: grayscale(0); opacity: 1;
}

/*Service Section*/
.service-section .bg-img {
    width: 50%; background-size: 100% auto !important;
}
.card-serv-bdr{
	padding: 5px;
	background: linear-gradient(to bottom, rgba(50 122 206 / 20%) 50%, rgb(50 122 206 / 44%) 100%);
	background: linear-gradient(to top, rgba(50 122 206 / 70%) 50%, rgb(50 122 206 / 70%) 100%);
	-webkit-border-radius: 20px;-moz-border-radius: 20px;border-radius: 20px;
}
.card-serv{
	padding: 20px; border: 1px solid transparent; position: relative;
	flex-direction: column; height: 100%; overflow: hidden;
	-webkit-border-radius: 16px;-moz-border-radius: 16px;border-radius: 16px;
	-moz-transition:all 0.4s ease 0s;-webkit-transition:all 0.4s ease 0s;transition:all 0.4s ease 0s;
	background: #fff;
}
.card-serv-bdr:hover{
	background: linear-gradient(to top, rgba(50 122 206 / 70%) 50%, rgb(50 122 206 / 70%) 100%);
}
.card-serv .imgbox{
	background: linear-gradient(to bottom, rgba(236,237,245,1) 0%,rgba(255,255,255,1) 100%);
	margin: 0 0 20px; overflow: hidden; height: 220px;
	-webkit-border-radius: 10px;-moz-border-radius: 10px;border-radius: 10px;
}
.card-serv .imgbox img{
	width: 100%; height: 100%; object-fit: scale-down; object-position: center;
    -moz-transition:all 0.4s ease 0s;-webkit-transition:all 0.4s ease 0s;transition:all 0.4s ease 0s;
}
.card-serv:hover .imgbox img{
	transform: scale(1.05);
}
.card-serv h4{
	font-size: 20px; margin: 0;
}
.card-serv .btnbox {
	opacity: 0;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    -webkit-transform: translate(0, 50%);
    -moz-transform: translate(0, 50%);
    transform: translate(0, 50%);
}
.card-serv:hover .btnbox{
	opacity: 1;
	-webkit-transform:translate(0, 0);-moz-transform:translate(0, 0);transform:translate(0, 0);
}
.card-serv .btnbox .btn {
    background: none; border: 0; min-width: inherit; padding: 0;
    color: var(--primary_clr); border-radius: 0;
}
.arrow-bottom .slick-arrow{
	top: auto; margin: 0; bottom: -20px;
}
.arrow-bottom .slick-arrow.slick-prev{
	left: auto; right: 50%; margin-right: 5px;
}
.arrow-bottom .slick-arrow.slick-next{
	right: auto; left: 50%; margin-left: 5px;
}

/*Service Section*/
.sticky_class {
    position: sticky; top: 80px; left: 0;
}
.service-list {
    margin-left: 55px;
}
.service-list .items{
	margin-bottom: 20px; position: sticky; top: 80px;
}
.service-list .items:last-child{
	margin-bottom: 0;
}
.card-service{
	padding: 40px 35px; background: #EFF8FF; min-height: 440px; gap: 20px;
	-webkit-border-radius: 20px;-moz-border-radius: 20px;border-radius: 20px;
}
.card-service .imgbox{
	min-width: 310px; order: 2;
}
.card-service h4{
	color: var(--primary_clr);
	text-transform: uppercase;
}
.service-list .items:nth-child(1n) .card-service{background: #EFF8FF;}
.service-list .items:nth-child(2n) .card-service{background: #F0EFFF;}
.service-list .items:nth-child(3n) .card-service{background: #FFEFF9;}
.service-list .items:nth-child(4n) .card-service{background: #FFF4EF;}

.service-list .items:nth-child(1n){
	top: 80px;
}
.service-list .items:nth-child(2n){
	top: 90px;
}
.service-list .items:nth-child(3n){
	top: 100px;
}
.service-list .items:nth-child(4n){
	top: 110px;
}
.service-list .items:nth-child(5n){
	top: 120px;
}
.service-list .items:nth-child(6n){
	top: 130px;
}
.service-list .items:nth-child(7n){
	top: 140px;
}

/*About Section*/
.about-section {
	overflow: hidden;
}
.about-section .bg-img{
	width: 40%; left: auto; right: 0;
}
.abt-imgbox img{
	display: block; width: 100%; height: 100%; object-fit: cover;
}
.bg1 .abt-card *{
	color: var(--white_clr);
}
.abt-left-block {
    max-width: 640px;
}
.abt-card{
	padding: 20px;
}

/*industry-block*/
.card-industry{
	padding: 20px 10px; height: 100%; overflow: hidden;
	flex-direction: column; gap: 20px; align-items: center; text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 10px;
}
.card-industry .iconbox{
	min-width: 60px; max-width: 60px; height: 60px;
	filter: brightness(0) invert(1);
}
.card-industry h5{
	font-size: 18px; color: var(--white_clr); text-transform: uppercase; letter-spacing: 0; font-weight: 300;
}

/*Why Choose Section*/
.card-detail-inn .left-block,
.card-detail-inn .right-block{
	width: 100%; max-width: 400px;
}
.card-detail-inn .middle-block{
	padding: 0 40px; width: 100%;
}
.card-specific-info-imgbox{
	max-width: 400px; margin: 0 auto;
}
.card-specific-info{
	padding: 25px 25px; position: relative; background: var(--white_clr); border: 1px solid var(--bdr_clr);
	-webkit-border-radius: 10px;-moz-border-radius: 10px; border-radius: 10px; min-height: 250px;
}
.card-specific-info + .card-specific-info{
	margin-top: 15px;
}
.card-specific-info h4{
	font-size: 22px; color: var(--black_clr); text-transform: uppercase;
}
.card-specific-info p{
	font-size: 18px;
}
.card-specific-info .iconbox{
	position: absolute; right: 14px; bottom: 10px; max-width: 46px; opacity: 0.5;
}
.card-specific-info .iconbox img{
	display: block; width: 100%; height: auto; object-fit: cover;
}
.left-block .card-specific-info:nth-child(2),
.right-block .card-specific-info:nth-child(1){
	background: var(--body_clr); border-color: #88A3BE; min-height: 150px;
}

/*Testimonial Section*/
.testimonial-section{
	overflow: hidden;
}
.testimonial-section .max-container{
	max-width: 100%;
}
.testimonial-list > .items{
	display: none;
}
.testimonial-list > .items:nth-child(1),
.testimonial-list > .items:nth-child(2),
.testimonial-list > .items:nth-child(3){
	display: block;
}
.testimonial-list .items{
	padding: 0; height: 100%;
}
.card-testimonial {
    padding: 30px; background: var(--white_clr); border-radius: 30px; position: relative;
    overflow: hidden; height: 100%; transform: scale(0.8); transform-origin: center;
    -moz-transition:all 0.4s ease 0s;-webkit-transition:all 0.4s ease 0s;transition:all 0.4s ease 0s;
}
.slick-active.slick-center .card-testimonial {
	transform: scale(1.0);
}
.card-testimonial .stars{
	font-size: 20px; color: var(--primary_clr);
	letter-spacing: 0.05em; margin-bottom: 10px;
}
.client-name .name{
	display: block; font-size: 14px; font-weight: 500;
}
.client-name .locate{
	font-size: 12px; font-weight: 300; color: #555;
}

/*Process Section*/
.process-block {
    position: relative;
}
.process-timeline {
    position: absolute; left: 0; right: 0; top: 0; bottom: 0; margin: 0 auto;
    width: 1px; background: #c1d7f0; z-index: 1;
}
.process-row {
    display: flex; align-items: center; position: relative; z-index: 2;
}
.process-row:last-child {
    margin-bottom: 0;
}
.process-col {
    flex: 1;
}
.process-image {
    padding-right: 60px;
}
.process-number {
    flex: 0 0 100px; display: flex; justify-content: center; width: 60px; height: 60px;
    position: absolute; left: 0; right: 0; top: 0; bottom: 0; margin: auto; z-index: 2;
}
.process-number .num {
    width: 100%; height: 100%; font-size: 24px; color: var(--primary_clr); border-radius: 50%;
    background: var(--white_clr); border: 10px solid var(--primary_clr);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 1); z-index: 2;
}
.process-text {
    padding-left: 60px;
}
.process-content {
    max-width: 480px;
}
.process-row.reverse .process-content {
    margin-left: auto; text-align: right;
}
.process-row.reverse {
    flex-direction: row-reverse;
}
.process-row.reverse .process-image {
    padding-right: 0; padding-left: 60px;
}
.process-row.reverse .process-text {
    padding-left: 0; padding-right: 60px;
}
.process-img-box {
    border-radius: 10px; overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.process-img-box img {
    display: block; width: 100%; height: auto;
}
.process-content h3 {
    font-size: 28px; color: var(--black_clr); margin-bottom: 20px;
}
.process-info-list {
    margin: 0; padding: 0; list-style: none;
}
.process-info-list li {
    display: flex; align-items: center; gap: 12px; font-size: 16px;
    color: var(--text_clr); letter-spacing: 0; margin-bottom: 12px;
}
.process-info-list li i {
    width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; font-size: 14px;
    color: var(--primary_clr); background: rgba(50, 122, 206, 0.1); border-radius: 6px;
}

/*Blog Section*/
.card-post{
	position: relative; overflow: hidden; background: var(--white_clr);
	height: 100%; flex-direction: column;
	-webkit-border-radius: 10px;-moz-border-radius: 10px;border-radius: 10px;
	-moz-transition:all 0.4s ease 0s;-webkit-transition:all 0.4s ease 0s;transition:all 0.4s ease 0s;
}
.card-post:hover{
	box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.12);
}
.card-post .imgbox{
	width: 100%; overflow: hidden; aspect-ratio: 3 / 1.8;
}
.card-post .imgbox img{
	display: block; width: 100%; height: 100%; object-fit: cover; object-position: center;
	-moz-transition:all 0.4s ease 0s;-webkit-transition:all 0.4s ease 0s;transition:all 0.4s ease 0s;
}
.card-post:hover .imgbox img{
	transform: scale(1.05);
}
.card-post .textarea{
	padding: 24px 20px;
}
.card-post h4{
	font-size: 20px; line-height: 28px; font-weight: 500;
}
.card-post h4 a{
	width: 100%; position: relative; color: var(--black_clr);
	display: block; display: -webkit-box; padding-right: 20px;
	-webkit-line-clamp: 3; -webkit-box-orient: vertical;
	overflow: hidden; text-overflow: ellipsis;
}
.card-post h4 a:after{
	display: inline-flex; align-items: center; justify-content: center;
	content: "\f105"; font-family: 'Line Awesome Free';
	position: absolute; right: 0; top: 0; bottom: 0; font-size: 20px; font-weight: 900;
}
.meta_info{
	margin-bottom: 15px;
}
.post_date {
    padding: 4px 10px; display: inline-flex; background: var(--white_clr); border: 1px solid var(--bdr_clr);
    font-size: 12px; line-height: 14px; font-weight: 500; color: var(--black_clr); margin-right: 6px; border-radius: 40px;
}
.card-post:hover h4 a{
	color: var(--primary_clr);
}

/*FAQs Section*/
.faq-card {
    border: 1px solid #afafb0;
}
.faq-card:first-child {
    border-radius: 20px 20px 0 0;
}
.faq-card+.faq-card {
    border-top: 0;
}
.faq-card:last-child {
    border-radius: 0 0 20px 20px;
}
.acc_title {
    padding: 30px 100px 30px 40px; font-size: 20px; margin: 0;
    cursor: pointer; position: relative; color: var(--black_clr);
}
.acc_title:after{
    display: block; content: "\f067"; font-family: line awesome free; font-weight: 900; width: 28px; height: 28px;
    line-height: 28px; text-align: center; position: absolute; top: 0; right: 30px; bottom: 0;
    transition: all .3s ease; margin: auto;
}
.acc_title[aria-expanded=true] {
    color: var(--primary_clr);
}
.acc_title[aria-expanded=true]:after {
    content: "\f068";
}
.faq-card .text-box {
    padding: 0 0 20px;
}
.faq-card .content-box {
    padding: 0 100px 32px 40px;
}
.desk-hide {
	display: none;
}

/*Inner Pages*/
.mh_450 {
    min-height: 560px;
}
/*Internal Banner*/
.page-banner .bg-img:before{
	background: linear-gradient(to right, rgba(1,1,1,1) 0%,rgba(0,0,0,0) 100%);
}
.internal-caption {
    position: relative; flex-wrap: wrap; max-width: 45%;
}
.internal-caption h1,
.internal-caption h2{
	color: var(--white_clr);
}
.internal-caption p{
	color: var(--white_clr);
}
.internal-caption p strong {
    color: white; font-weight: 700;
}

/*Breadcrumb CSS*/
.breadcrumbs-block{
	padding: 20px 0 40px;
}
.page-breadcrumb{
	font-size: 16px; line-height: 1.4; color: var(--primary_clr);
}
.page-breadcrumb span span,
.page-breadcrumb span a{
	color: var(--text_clr);
}
.page-breadcrumb span a:hover{
	color: var(--primary_clr);
}
.page-breadcrumb .breadcrumb_last{
	color: var(--text_clr);
}
.product-list-page{
	gap: 40px 0;
}
.hover-overlay{
	padding: 30px; position: absolute; left: 0; right: 0; top: 0; bottom: 0; opacity: 0;
	flex-direction: column; background: var(--white_clr); border: 2px solid var(--bdr_clr); overflow: auto;
	-webkit-border-radius: 10px;-moz-border-radius: 10px;border-radius: 10px;
}
.hover-overlay p{
	font-size: 16px; margin: 0 0 10px; display: -webkit-box;
	-webkit-line-clamp: 3; -webkit-box-orient: vertical;
	overflow: hidden; text-overflow: ellipsis;
}
.hover-overlay .price-box{
	margin-top: 10px;
}
.card-prod:hover .hover-overlay{
	opacity: 1;
}
.card-prod .btnbox{
	flex-wrap: nowrap;
}
.product-list-page .card-prod .imgbox{
	aspect-ratio: 4 / 3.5;
}
.hover-overlay li{
	font-size: 16px;
}
.hover-overlay .entry-content ul li:before{
    left: 5px; top: 8px;
}
.product-list .hide {
	display: none !important;
}
.sub-product-list{
	gap: 30px 0;
}
.sub-product-list .hover-overlay p{
	display: block;
}
.sub-product-list .card-prod .imgbox {
    aspect-ratio: 4 / 4;
}
.sub-product-list .card-prod .imgbox img{
	mix-blend-mode: multiply;
}
.sub-product-list .card-prod{
	padding: 30px; background: var(--white_clr);
	-webkit-border-radius: 10px;-moz-border-radius: 10px;border-radius: 10px;
	box-shadow: 5px 5px 10px rgba(0,0,0,0.15);
}

.sub-card-prod{
	padding: 20px;
	flex-direction: column; position: relative; background: var(--primary_clr); overflow: hidden;
	-webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px;
}
.sub-card-prod .imgbox{
    display: block; width: 100%; background: var(--white_clr); aspect-ratio: 4 / 4; overflow: hidden;
    -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; margin: 0 0 20px;
}
.sub-card-prod .imgbox img{
    display: block; width: 100%; height: 100%; object-fit: scale-down;
    -moz-transition: all 0.4s ease 0s; -webkit-transition: all 0.4s ease 0s; transition: all 0.4s ease 0s;
}
.sub-card-prod h5{
	font-weight: 400;
}
.sub-card-prod > .textbox{
	-webkit-transition: all 0.6s ease 0s; -o-transition: all 0.6s ease 0s; transition: all 0.6s ease 0s;
}
.sub-card-prod:hover > .textbox{
	transform:translate(0,-40px);
}
.overlay-box {
    padding: 20px; background: var(--primary_clr); flex-direction: column; overflow: auto;
    width: 100%; height: 100%; position: absolute; left: 0; top: 100%; opacity: 1;
}
.sub-card-prod:hover .overlay-box {
    top: 0; opacity: 1;
    -webkit-transition: all 0.8s ease 0s; -o-transition: all 0.8s ease 0s; transition: all 0.8s ease 0s;
}
.overlay-box *{
	color: rgba(255,255,255,0.8);
}
.overlay-box .entry-content ul li:before{
	background: var(--white_clr);
}
.icon-block{
	gap: 30px 0; flex-wrap: wrap;
}
.icon-block .items{
	width: 20%; padding-top: 10px; padding-bottom: 10px;
}
.card-icons{
	padding: 30px; position: relative; border: 1px solid #afafb0; height: 100%;
	flex-direction: column; min-height: 180px; justify-content: center; text-align: center;
	-webkit-border-radius: 20px;-moz-border-radius: 20px;border-radius: 20px;
}
.card-icons p strong {
    color: var(--white_clr);
}
.card-icons .iconbox{
	width: 40px; height: 40px; margin: 0 auto 20px;
	filter: brightness(0) saturate(0);
}
.card-icons h6{
	font-size: 18px; line-height: 1.4; font-weight: 500; color: var(--text_clr);
}
.card-icons:hover{
	box-shadow: 0 3px 6px #00000029;
}

/*About Page*/
.tp-counter-wrap {
    display: flex; flex-direction: column; align-items: center; height: 100%;
    text-align: center;
}
.tp-counter-wrap h4 {
    font-size: 60px; line-height: 1.4; color: var(--text_clr);
    font-weight: 400; font-style: normal; margin-bottom: 5px;
}
.tp-counter-wrap p {
    font-size: 16px; line-height: 20px; font-weight: 500; letter-spacing: 0; margin-bottom: 0;
}
.card-abt-info{
	gap: 20px; flex-direction: column; overflow: hidden; position: relative;
}
.card-abt-info .imgbox{
	overflow: hidden; -webkit-border-radius: 10px;-moz-border-radius: 10px;border-radius: 10px;
}
.card-abt-info .imgbox img{
	display: block; width: 100%; height: auto;
}
.card-abt-info .textbox{
	padding: 20px; text-align: center; background: #f4f7fb;
	-webkit-border-radius: 10px;-moz-border-radius: 10px;border-radius: 10px;
}
.card-abt-info h4{
	font-size: 40px; line-height: 1.2; font-weight: 600; margin-bottom: 10px;
}
.card-abt-info .stars{
	display: block; font-size: 16px; margin-bottom: 10px;
}
.abt-info-right .sub-items:nth-child(1) .card-abt-info .textbox{
	background: var(--primary_clr);
}
.abt-info-right .sub-items:nth-child(1) .card-abt-info .textbox *{
	color: var(--white_clr);
}
.abt-info-right .sub-items:nth-child(2) .card-abt-info .imgbox{
	order: 2;
}
.abt-info-right .sub-items:nth-child(2) .card-abt-info .textbox{
	order: 1;
}
.abt-info-inn .left-block .block-title{
	padding-right: 40px;
}

/*info-card-section*/
.card-info-abt{
	position: relative; overflow: hidden; flex-direction: column; height: 100%; background: var(--body_clr);
	-webkit-border-radius: 10px;-moz-border-radius: 10px;border-radius: 10px;
}
.card-info-abt .textbox{
	padding: 30px; aspect-ratio: 4 / 2.1;
}
.card-info-abt h4 {
    font-size: 22px; color: var(--black_clr); text-transform: uppercase;
}
.card-info-abt .imgbox{
	margin-top: auto;
}
.card-info-abt .imgbox img{
	display: block; width: 100%; height: auto; aspect-ratio: 4 / 3;
}
.info-card-inn .items:nth-child(2n + 1) .card-info-abt .imgbox{
	order: 1; margin-top: 0;
}
.info-card-inn .items:nth-child(2n + 1) .card-info-abt .textbox{
	order: 2;
}

/*Why Choose Section*/
.bg2 .block-title *{
	color: var(--white_clr);
}
.whychoose-list {
    gap: 40px 0;
}
.card-whychoose h4{
	color: var(--white_clr);
}
.card-whychoose p{
	color: var(--text_clr_light);
}
.card-whychoose .iconbox{
	min-width: 80px; max-width: 80px; height: 80px; background: var(--primary_clr); margin-bottom: 20px;
	border-radius: 10px; border-bottom-right-radius: 0;
}
.card-whychoose .iconbox img{
	max-width: 50px; object-fit: contain; filter: brightness(0) invert(1);
}

/*Story Section*/
.story-section{
	overflow: hidden;
}
.story-section:before,
.story-section:after{
	display: block; content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 5%; z-index: 1;
	background: linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
}
.story-section:after{
	left: auto; right: 0;
	-webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}
.journey-list .items{
	position: relative; -moz-transition:all 0.8s ease 0s; -webkit-transition:all 0.8s ease 0s; transition:all 0.8s ease 0s;
}
.journey-list .items:before{
	display: block; content: ""; position: absolute; left: 15px; top: 15px;
	width: 100%; height: 1px; background: var(--bdr_clr);
}
.journey-box:before,
.journey-box:after{
	display: block; content: ""; position: absolute; top: 0; left: 10px; width: 32px; height: 32px;
	background: var(--primary_clr); border: 1px solid var(--primary_clr); -webkit-border-radius:50%; -moz-border-radius:50%; border-radius:50%;
}
.journey-box:after{
    width: 8px; height: 8px; margin: auto;
    display: flex; align-items: center; justify-content: center; left: 22px; top: 12px;
    background: var(--white_clr);
}
.slick-current .journey-box:before{
	background: var(--primary_clr); border-color: var(--primary_clr);
}
.slick-current .journey-box:after{
	background: var(--white_clr); border-color: var(--white_clr);
}
.journey-box {
    padding: 70px 30px 10px 0; height: 100%; 
}
.journey-slider .slick-list{
	overflow: visible; position: relative;
}
.journey-slider .slick-dots {
    bottom: -30px;
}
.journey-container {
    display: flex; justify-content: space-between; flex-wrap: wrap;
}
.journey-container h2 {
	margin-bottom: 40px;
}
/*Square Arrow*/
.arrow-sqr .slick-arrow{
	width: 30px; height: 33px; margin: 0; color: var(--black_clr);
	position: absolute; top: auto; bottom: 0;
	background: var(--white_clr); border: 1px solid #cecece;
	border-radius: 8px 0 0 8px;
}
.arrow-sqr .slick-arrow:hover{
	background: var(--primary_clr);
	border-color: var(--primary_clr);
	color: var(--white_clr); z-index: 3;
}
.arrow-sqr .slick-arrow:before{
	display: block; content: "\f104"; font-family:'Line Awesome Free'; font-size: 20px;
}
.arrow-sqr .slick-arrow.slick-prev{
	left: auto; right: 50%;
}
.arrow-sqr .slick-arrow.slick-next{
	right: auto; left: 50%;
	-webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}
.prod-type-section .bg-img {
    width: 40%; left: auto; right: 0;
}
.info-icon-block .card-icons .iconbox{
	width: 50px; height: 70px; filter: brightness(0) invert(1);
}
.info-icon-block .card-icons p{
	color: var(--text_clr_light);
}

/*Specification Section*/
.specific-tl{
	padding: 15px; background: var(--white_clr); margin: 0 0 20px;
	-webkit-border-radius: 80px;-moz-border-radius: 80px;border-radius: 80px;
}
.specific-tl *{
	color: var(--primary_clr);
}
/*.table-style{
	border: 1px solid var(--bdr_clr); overflow: hidden; height: calc(100% - 60px);
	-webkit-border-radius: 10px;-moz-border-radius: 10px;border-radius: 10px;
}*/
.table-style table{
	width: 100%; border: 0; border-top: 1px solid var(--bdr_clr); background: none; margin: 0;
}
.table-style table th,
.table-style table td{
	padding: 15px 15px; border: 0; border-bottom: 1px solid var(--bdr_clr); background: none;
}
.table-style table th{
	font-weight: 600; color: var(--black_clr);
}
/*.table-style table tr:nth-child(odd) td{
	background: var(--white_clr);
}*/
.middle-block .card-specific-info {
    min-height: inherit; width: 100%; padding: 25px; margin-bottom: 10px;
}
.card-related-prod .hover-overlay{
	padding: 20px;
}

/*Certificat Section*/
.partner-bdr-box{
	overflow: hidden;
}
.partner-list{
	flex-wrap: wrap; margin: -1px; justify-content: space-between;
}
.partner-list .items{
	width: 33.33%; margin: 0 0 -1px;
}
.part-logobox{
	padding: 10px 10px; overflow: hidden; border: 1px solid #E5E5E5; border-left: 0;
	height: 100%;
}
.part-logobox img{
	max-width: 330px; max-height: 180px;
	-moz-transition:all 0.4s ease 0s;-webkit-transition:all 0.4s ease 0s;transition:all 0.4s ease 0s;
}
.part-logobox .card-link:hover + img{
	transform: scale(1.05);
}

/*Steps Section*/
.steps-section{
	border-top: 1px solid #c1d7f0; border-bottom: 1px solid #c1d7f0;
}
.steps-items .bg-img {
    opacity: 0.05;
    background-size: 1200px auto !important;
}
.steps-items{
	display: flex; align-items: center; overflow: hidden;
	padding: 80px 0; /*height: 100vh;*/ background: var(--white_clr);
	position: sticky; top: 0;
}
.steps-items:nth-child(odd){
	background: var(--body_clr);
}
/*
.steps-items:nth-child(1n){background: #EFF8FF;}
.steps-items:nth-child(2n){background: #F0EFFF;}
.steps-items:nth-child(3n){background: #FFEFF9;}
.steps-items:nth-child(4n){background: #FFF4EF;}
*/

/*Service Page*/
.image-text-block .card-abt-info .textbox{
	background: var(--white_clr);
}
.design-process-list{
	position: relative; gap: 40px 0; counter-reset: li-counter;
}
.design-process-list:before{
	display: block; content: ""; background: var(--bdr_clr); height: 1px;
	position: absolute; left: 10%; right: 10%; top: 70px;
}
.card-design-process{
	position: relative; text-align: center;
}
.card-design-process .iconbox{
	display: flex; align-items: center; justify-content: center;
	min-width: 120px; max-width: 120px; height: 120px; background: var(--white_clr); border: 1px solid var(--bdr_clr);
	border-radius: 0 50% 50% 50%; margin: 0 auto 30px; position: relative;
}
.card-design-process .iconbox:after{
	display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; background: var(--white_clr); border: 1px solid var(--bdr_clr); font-size: 14px; color: var(--text_clr);
	content: counter(li-counter, decimal); counter-increment: li-counter; -webkit-border-radius: 50%;-moz-border-radius: 50%;border-radius: 50%;
	position: absolute; left: 0; right: 0; bottom: -14px; margin: auto;
}
.card-design-process .iconbox img{
	max-width: 50px;
}
.list-style2 ul li {
    position: relative; padding: 0 0 0 40px; margin: 0 0 15px;
}
.list-style2 ul li:before{
	display: block; content: ""; width: 24px; height: 24px;
	background: url('../images/check-mark.svg') no-repeat center; background-size: 100% auto;
	position: absolute; left: 0; top: 0;
}

/*Contact Page*/
.contact-hero{

}
.google-map-block {
    width: 100%; height: 500px;
}
.google-map-block iframe {
    display: block; width: 100%; height: 100%; object-fit: cover;
}
.contact-block{
	padding: 40px;
	background: var(--white_clr);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    -webkit-box-shadow: 0 20px 80px rgb(7 13 32 / .08);
    box-shadow: 0 20px 80px rgb(7 13 32 / .08);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}
.form-inner{
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap; margin: 0 -10px;
}
.form-inner .input-field{
	padding: 0 10px; margin: 0 0 30px; -ms-flex-preferred-size:50%; flex-basis:50%;min-width:50%;max-width:50%; position: relative;
}
.form-inner .input-field.full-width{
	-ms-flex-preferred-size:100%;
	    flex-basis:100%;min-width:100%;max-width:100%;
}
.input-field .label {
    display: inline-block; font-size: 16px; line-height: 1.4;
    color: var(--text_clr); font-weight: 500; margin-bottom: 7px;
}
.form-inner .input-field input,
.form-inner .input-field textarea,
.form-inner .input-field select{
	padding: 4px 20px; background: var(--white_clr);
	-webkit-border-radius: 80px;-moz-border-radius: 80px;border-radius: 80px;
}
.form-inner .input-field .selectbox{
	-webkit-border-radius: 80px;-moz-border-radius: 80px;border-radius: 80px;
}
.form-inner .input-field textarea{
	padding: 15px 20px;
	-webkit-border-radius: 20px;-moz-border-radius: 20px;border-radius: 20px;
}
.form-inner .input-field input:hover,
.form-inner .input-field input:focus,
.form-inner .input-field textarea:hover,
.form-inner .input-field textarea:focus{
	border-color: var(--text_clr_light);
}
.contact-block .selectbox{
	padding: 0; background: transparent; border: 0; border-bottom: 1px solid var(--bdr_clr); border-radius: 0;
}
.contact-block .selectbox select {
    padding-left: 0;
}
.file-input .label {
    font-weight: 700; font-size: 14px; line-height: 20px; margin: 0 0 15px;
}
.form-inner .input-field .file-input input[type="file"]{
	height: 40px; background: none; border: 0; padding: 0;
	-webkit-border-radius: 0;-moz-border-radius: 0;border-radius: 0;
}
.wpcf7-not-valid-tip {
    font-size: 14px;
}
.wpcf7 form .wpcf7-response-output {
    font-size: 14px; margin: 30px 0 0; text-align: center; padding: 10px;
}
.wpcf7-spinner {
    position: absolute;
}
.contact-list{
	-ms-flex-wrap: wrap; flex-wrap: wrap;
}
.contact-list .items{
    margin: 0 0 40px; width: 100%;
}
.card-contact{
    position: relative; padding-left: 50px;
}
.c_icon{
    display: inline-flex; align-items: center; justify-content: center; min-width: 30px; max-width: 30px; height: 30px;
    position: absolute; left: 0; top: 0; font-size: 32px; color: var(--text_clr);
    -webkit-border-radius: 50%;-moz-border-radius: 50%;border-radius: 50%;
}
.card-contact .lable{
    display: block; font-size: 16px; font-weight: 500; color: var(--text_clr_light);text-transform: uppercase; margin: 0 0 10px;
}
.card-contact p, .c_link{
	display: block; font-size: 18px; line-height: 1.4; color: var(--text_clr); font-weight: 400;
}
.c_link:hover{
	color: var(--primary_clr);
}
.c_link + .c_link{
	margin-top: 10px;
}
.card-contact p{
	margin: 0 0 7px;
}
.contact-icon-block .card-icons p{
    font-size: 16px;
}
.contact-icon-block .card-icons .iconbox{
	width: 60px; height: 70px;
}

/*Blog page*/
.m-subnav-back {
    align-items: center; display: flex;
}
.cate-label {
    display: inline-flex; font-size: 20px; line-height: 1.4; color: var(--text_clr); font-weight: 600;
}
.cateblock-mobi {
    padding: 15px 0;
}
.m-subnav-nav-list {
	margin: 0; padding: 0;
    display: flex; align-items: center; flex-wrap: wrap
}
.m-subnav-nav-list li {
    margin: 0 5px; list-style: none
}
.m-subnav-nav-list li a {
    display: block; padding: 12px 10px; font-size: 16px; line-height: 20px; color: var(--text_clr);
    font-weight: 400; border-bottom: 1px solid transparent
}
.m-subnav-nav-list li a:hover, .m-subnav-nav-list li.active a {
    border-color: var(--text_clr);
}
.m-search-subnav {
    position: relative
}
.m-search-subnav .subnav-search-input {
    display: block; width: 100%; max-width: 250px; height: 40px; background: var(--white_clr); border: 0; border-bottom: 1px solid var(--bdr_clr);
    -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0;
    padding: 0 40px 0 0; font-size: 16px; line-height: normal; color: var(--text_clr); outline: none!important; box-shadow: none!important;
}
.m-search-subnav ::-webkit-input-placeholder {
    color: var(--text_clr); opacity: 1;
}
.m-search-subnav :-moz-placeholder {
    color: var(--text_clr); opacity: 1;
}
.m-search-subnav ::-moz-placeholder {
    color: var(--text_clr); opacity: 1;
}
.m-search-subnav :-ms-input-placeholder {
    color: var(--text_clr); opacity: 1;
}
.post-search-icon {
    display: block; width: 40px; height: 40px; background: none; border: 0;
    position: absolute; right: 0; top: 0; z-index: 2; padding: 0; font-size: 16px; line-height: 32px;
    color: var(--text_clr); cursor: pointer
}
.post-page-list{
	gap: 40px 0;
}
.post-page-list .card-post h4 {
    font-size: 18px; line-height: 1.4;
}
/*pagination*/
.pagination-block ul.page-numbers {
    display: flex; align-items: center; justify-content: center; gap: 10px;
}
.page-numbers li {
    margin: 0; padding: 0; list-style: none;
}
.page-numbers .page-numbers {
    display: block; min-width: 38px; height: 38px; line-height: 38px; color: var(--text_clr); text-align: center;
    background: var(--white_clr); -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; box-shadow: 0 0 3px rgba(0,0,0,0.2);
}
.page-numbers .page-numbers:hover {
    background: var(--primary_clr); color: var(--white_clr);
}
.page-numbers .page-numbers.current {
    background: none; color: var(--primary_clr) !important; box-shadow: 0 0 0 rgba(0,0,0,0.2);
}
.page-banner .page-breadcrumb span span,
.page-banner .page-breadcrumb span a{
	color: var(--white_clr);
}
.cate-toggle-btn {
    padding: 12px 20px; width: 100%; height: 100%; position: absolute; left: 0; top: 0; z-index: 2; text-align: right;
    cursor: pointer; font-size: 18px; line-height: 46px; color: var(--text_clr);
}
.opened .cate-toggle-btn .la-angle-down:before {
    content: "\f106";
}
.post-banner-imgbox img{
	display: block; width: 100%; height: auto; max-height: 540px;
	object-fit: cover; -webkit-border-radius: 10px;-moz-border-radius: 10px;border-radius: 10px;
}
.social-share-block .label {
    display: inline-block; font-size: 16px; color: var(--text_clr_light); margin-right: 10px;
}
.blog-socail-list{
	gap: 10px;
}
.blog-socail-list li{
	margin: 0; padding: 0;
}
.icon-share {
    display: flex; align-items: center; justify-content: center;
    min-width: 32px; height: 32px; font-size: 24px; color: var(--black_clr);
}
.icon-share:hover{
    transform: rotate(360deg);
}
.s_icon {
    display: flex; align-items: center; justify-content: center;
    width: 24px; min-width: 24px; height: 24px; background-size: contain !important;
}
.twitter{
	background: url('../images/twitter_icon.png') no-repeat center;
	background-size: 80% !important;
}
.highlighted{
	padding: 30px; border: 1px solid var(--bdr_clr); margin-bottom: 40px;
	-webkit-border-radius: 10px;-moz-border-radius: 10px;border-radius: 10px;
}
.wp-block-image {
    margin-bottom: 30px;
}
.detail-main > img,
.detail-main p > img,
.wp-block-image img{
	-webkit-border-radius: 5px;-moz-border-radius: 5px;border-radius: 5px;
}
.detail-main h2, .detail-main h3,
.detail-main h4, .detail-main h5,
.detail-main h6{
	color: var(--black_clr);
}
.pagination-single{
	border-top: 1px solid #ddd; border-bottom: 1px solid #ddd; margin-top: 40px;
}
.pagination-single .post-nav .arrow strong{
	margin: 0 5px; font-size: 16px;
}
.detail-banner-title-block .h2 {
    margin: 15px 0;
}
.pagination-single .post-nav .arrow {
	color: var(--text_clr);
}
.pagination-single .post-nav .arrow:hover {
	color: var(--secondary_clr);
}
.extra-content-block {
    background: var(--white_clr);
    position: relative;
}
.extra-content-block .textbox {
    margin: 0 0 -60px;
    padding: 48px 0;
}
.sub-product-main{
	overflow: hidden;
}
.sub-product-main .items{
	padding: 60px 0;
	position: relative;
}
.sub-product-main .items + .items{
	margin-top: 60px;
}
.sub-product-main .items:before{
	display: block; content: ""; background: var(--body_clr);
	position: absolute; left: 25%; top: 0; bottom: 0; width: 100vw;
}
.sub-product-main .items:nth-child(even):before{
	left: auto; right: 25%;
}
.sub-prod-imgbox{
	padding: 10px; max-width: 90%; margin: 0 auto;
	background: var(--white_clr); border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.sub-prod-imgbox-inn{
	aspect-ratio: 4 / 3.5; overflow: hidden;
	background: var(--primary_clr); border-radius: 10px;
}
.sub-prod-imgbox img{
	display: block; width: 100%; height: 100%; object-fit: cover;
	-moz-transition:all 0.4s ease 0s;-webkit-transition:all 0.4s ease 0s;transition:all 0.4s ease 0s;
}
.sub-product-main .items:nth-child(even) .sub-product-list{
	flex-direction: row-reverse;
}
.sub-prod-tl{
	padding: 10px 15px; position: relative; margin: 0 0 30px;
}
.sub-prod-tl:before{
	display: block; content: ""; width: 0; height: 0;
	border-left: 15px solid transparent;
	border-right: 15px solid transparent;
	border-top: 15px solid var(--primary_clr);
	position: absolute; left: 10%; top: 100%;
}
 

/*Resources Page*/
.resource-flt{
	margin: 0; padding: 0; list-style: none; justify-content: center; text-align: center; gap: 30px;
}
.resource-flt li{
	margin: 0; padding: 0; list-style: none; font-size: 18px; color: var(--text_clr); font-weight: 500;
	border-bottom: 2px solid transparent;
}
.resource-flt li a{
	padding: 10px 5px; display: inline-flex; color: var(--text_clr);
}
.resource-flt li:hover,
.resource-flt li.active{
	border-color: var(--primary_clr); color: var(--primary_clr);
}
.resources-list{
	gap: 30px 0;
}
.card-resources {
    padding: 30px; background: var(--white_clr); border: 1px solid #e9ebf1; position: relative; flex-direction: column; height: 100%;
    -moz-transition: all 0.4s ease 0s; -webkit-transition: all 0.4s ease 0s; transition: all 0.4s ease 0s; box-shadow: 0 5px 10px 0 rgb(0 0 0 / .1);
    -webkit-border-radius: 15px; -moz-border-radius: 15px; border-radius: 15px;
}
.res-imgbox {
    padding: 10px; background: #f0f3f4; height: 280px;
    -webkit-border-radius: 15px; -moz-border-radius: 15px; border-radius: 15px;
}
.res-imgbox img {
    max-height: 90%; object-fit: contain;
}
.card-resources h4 {
    font-size: 20px;
}
.card-resources:hover .btn{
    background: var(--secondary_clr);
    border-color: var(--secondary_clr);
    color: var(--white_clr);
}
.card-resources:hover .btn .btn_label {
    transform: translateY(-100%);
}
.modal-content{
	-webkit-border-radius: 15px; -moz-border-radius: 15px; border-radius: 15px;
}
.close.modal_close {
    display: block; opacity: 1 !important; position: absolute; right: -15px; top: -15px; z-index: 2; width: 35px; height: 35px;
    background: var(--primary_clr); text-shadow: none; border-radius: 50%; font-size: 20px; color: var(--white_clr);
    -webkit-transition: all 0.4s ease 0s; -o-transition: all 0.4s ease 0s; transition: all 0.4s ease 0s;
}
.close.modal_close:hover {
	background: var(--secondary_clr); color: var(--white_clr);
}

.faq_form {
    margin-right: 40px;
}
.faq_form .form-inner .form-btnbox {
	text-align: left !important;
}

.pum-title.popmake-title {
    display: none;
}
.popmake {
    background: linear-gradient(310deg, rgb(241 241 241) 0%, rgba(255, 255, 255, 1) 100%) !important;
}
.popmake .btnbox {
    display: flex; justify-content: center; flex-wrap: wrap;gap: 15px 10px;
}
.whatsapp_icon:before{
    display: block; content: ""; width: 28px; height: 28px;
    background: url('../images/whatsapp_icon.png') no-repeat center;
    background-size: 100% auto;
}
.chat-btn{
    padding: 10px 24px; color: #31ba44; font-size: 16px; box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);border: 1px solid #ddd;
}
.chat-btn span{
	gap: 10px; position: relative; z-index: 2;
    display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center;
}
.chat-btn i {
    font-size: 24px;
}
.chat-btn:hover{
    color: #31ba44;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.popmake .btnbox .wpcf7-spinner {
    top: 110%;
}

.cat-flt-block .desk-hide {
	display: none;
}
/*Industries Section*/ 
.left-patt-img {
    max-width: 740px; position: absolute; left: 0; top: 0;
}
.industries-section-option{
	overflow: hidden;
}
.industry-list-option{
	flex-wrap: wrap;
}
.industry-list-option .items {
    min-width: 50%;
    max-width: 50%;
    padding: 7px;
}
.card-indus {
    padding: 10px; gap: 15px; width: 100%; height: 100%;
}
.iconflex {
    gap: 15px;
}
.card-indus p {
    font-size: 16px;
    margin: 10px 0 0;
}
.card-indus .iconbox {
    display: flex; align-items: center; justify-content: center; min-width: 50px; height: 50px;
    background: var(--primary_clr);
    border-radius: 50%;
}
.card-indus .iconbox img {
    max-width: 32px;
}
.card-indus h5 {
    font-size: 18px;
} 
.prod-type-section + .whychoose-section {
	padding-top: 20px;
}
.whychoose-section + .certificat-section {
	border-top: 1px solid #CACACA;
}
.specific-section + .industries-section-option {
	background: var(--white_clr);
}
.post-detail {
	padding-top: 40px !important;
}
.sideform {
    padding: 30px; box-shadow: 0 2px 10px rgb(0 0 0 / 15%);position: sticky;top: 80px;
    -webkit-border-radius: 10px;-moz-border-radius: 10px;border-radius: 10px;
}
.sideform .small-title {
    font-size: 28px; font-weight: 600; color: var(--black_clr);margin-bottom: 0;text-align: center;
}
.sideform h2 {
    display: none;
}
.sideform .form-inner .input-field {
    -ms-flex-preferred-size: 100%; flex-basis: 100%; min-width: 100%; max-width: 100%;margin: 0 0 20px;
}
.sideform .form-inner .input-field textarea {
	min-height: 100px;
}
.sideform .form-inner .form-btnbox .btn {
	width: 100%;
}

.authorbox {
    padding: 40px; background: #f3f3f3;
    -webkit-border-radius: 10px;-moz-border-radius: 10px;border-radius: 10px;
}
.authorbox .imgbox {
    min-width: 100px; max-width: 100px; height: 100px; border-radius: 50%; overflow: hidden; margin-right: 20px;
}
.authorbox .imgbox img {
    width: 100%; height: 100%; object-fit: cover; object-position: center; display: block;
}
.authorbox h3 {
    font-size: 26px; margin-bottom: 10px;
}

.main-wrapper.sub-product {
    display: flex; flex-direction: column;
}
.sub-product .product-internal-banner {
	order: 1;
}
.sub-product .breadcrumbs-block {
	order: 2;
}
.sub-product .middle-section {
	order: 3;
}
.sub-product .prod-type-section {
	order: 4;
}
.sub-product .specific-section {
	order: 5;
}
.sub-product .steps-section {
	order: 6;
}
.sub-product .htc-section {
	order: 7;
}
.sub-product .whychoose-section {
	order: 8;
}
.sub-product .industries-section-option {
    order: 9; background: var(--body_clr);
}
.sub-product .certificat-section {
	order: 10;
}
.sub-product .faqs-section {
	order: 11;
}
.sub-product .related-product-section {
	order: 12;
}
.sub-product .cta-section {
	order: 13;
}

.page-template-tpl-solution-main .card-icons .iconbox {
    width: 50px; height: 50px;
}
.table-bottom-textarea {
	border-radius: 15px;
}
.table-bottom-textarea p{
	color: var(--white_clr); font-size: 20px;
}
.bottom-text-block-title strong {
    color: white;
}

/*Shop Page*/
.coming-soon-sec{
    position:relative; overflow: hidden; width:100%; min-height:100vh; display:flex; align-items:center; justify-content:center; padding:40px 20px; background:
    radial-gradient(circle at top left, rgba(0,166,255,0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(37,99,235,0.16), transparent 30%),
    linear-gradient(135deg,#07111f 0%, #0d1b2d 100%);
}
.coming-soon-sec::before{
    content:""; position:absolute; inset:0; background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size:60px 60px; opacity:0.4;
}
.coming-card{
    position:relative; z-index:2; width:100%; max-width:760px; text-align:center; padding:80px 60px; border-radius:30px; background:rgba(10,22,40,0.72); border:1px solid rgba(255,255,255,0.08); backdrop-filter:blur(12px); box-shadow:0 20px 80px rgba(0,0,0,0.45);
}
.logo-tag{
    display:inline-flex; align-items:center; justify-content:center; padding:12px 24px; border-radius:60px; background:rgba(0,166,255,0.12); border:1px solid rgba(0,166,255,0.25); color:#4fc3ff; font-size:14px; font-weight:600; letter-spacing:1px; text-transform:uppercase;
    margin-bottom:30px;
}
.btn-wrap{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}
.glow{
    position:absolute;
    border-radius:50%;
    filter:blur(60px);
    opacity:0.35;
}
.glow.one{
    width:280px;
    height:280px;
    background:#00a6ff;
    top:-100px;
    left:-100px;
}
.glow.two{
    width:220px;
    height:220px;
    background:#2563eb;
    right:-70px;
    bottom:-70px;
}


/*==========================================
===============:: MEDIA CSS ::==============
============================================*/
@media screen and (max-width:1499px){
h1, .h1 {
    font-size: 40px;
}
.max-container{
    max-width: 1200px; padding: 0 20px;
}
.nav-main ul {
    gap: 0 15px;
}
.caption{
	min-width: 640px; max-width: 640px;
}
.caption .h1{
	font-size: 52px;
}
.card-icons{
	padding: 30px 20px;
}
.card-icons h6 {
    font-size: 16px;
}
.card-info-abt p{
	font-size: 16px; line-height: 1.4;
}
.post-page-list .card-post h4 {
    font-size: 16px; line-height: 1.4;
}
/*#popmake-765 {
	zoom: 0.85;
}*/



}
/* iPad 1024px View */
@media screen and (max-width:1199px){
.container,
.max-container{width:100%; max-width:100%; padding:0 20px;}
.ptb-100{padding:80px 0;}
.ptb-80, .ptb-90{padding:60px 0;}
.ptb-60 {padding: 40px 0;}
h1, .h1{font-size: 34px; line-height: 1.2;}
h2, .h2{font-size: 28px; line-height: 1.2;}
h3 {font-size: 24px;}
h4 {font-size: 22px;}
h5 {font-size: 18px;}
blockquote{padding: 10px 20px; font-size: 18px; line-height: 1.4;}
ul li, ol li, p{
    font-size: 18px; line-height: 1.4;
}
.content-block p br{
	display: none;
}
/*Header and banner*/
.nav-main{
    display: none !important;
}
.mobi-iconbox {
    display: flex; align-items: center; justify-content: center;
}
.header-inner,
.header-blank{
	height: 80px;
}
.header-right {
    margin-right: 45px;
}
.grd-bg {
    left: 5px; right: 5px;
}
.cap-imgbox {
    padding: 0 10px;
}
.hero-caption {
    padding-right: 0;
}
.caption{
	min-width: 480px; max-width: 480px;
}
.caption .h1{
	font-size: 40px;
}
.intro-block-inner {
    gap: 40px 0;
}
.center-content-block {
    max-width: 680px;
}
.footer-bottom p,
.footer-bottom li{
    font-size: 14px; line-height: 16px;
}
.social-media {
    gap: 10px;
}
.card-service {
	min-height: 300px;
}
.card-service .imgbox {
    min-width: 160px;
}
.card-service .textbox p {
    font-size: 16px;
}
.industry-list {
    padding: 0 20px 20px;
}
.industry-list .items {
    padding: 10px;
}
.acc_title {
	padding: 20px 60px 20px 30px;font-size: 18px;
}
.faq-card .content-box {
    padding: 0 60px 25px 30px;
}
.faq-card .content-box p {
	font-size: 16px;
}
.abt-card {
    padding: 0;
}
.card-specific-info{
	padding: 20px;
}
.middle-block .card-specific-info{
	padding: 20px;
}
.hover-overlay {
    padding: 20px;
}
.mh_450 {
    min-height: 340px;
}
.tp-counter-wrap h4 {
    font-size: 40px;
}
.abt-info-inn .left-block .block-title {
    padding-right: 0;
}
.card-abt-info h4 {
    font-size: 32px;
}
.sub-product-list .card-prod {
    padding: 20px;
}
.card-prod h4 {
    font-size: 18px;
}
.google-map-block {
    height: 400px;
}
.contact-block {
    padding: 30px;
}
.product-slider .slick-arrow{
	top: 32%;
}
.post-page-list {
    gap: 20px 0; margin: 0 -10px;
}
.post-page-list .items{
	padding: 0 10px;
}
.m-subnav-nav-list li{
	margin: 0;
}
.m-subnav-nav-list li a {
    padding: 20px 7px; font-size: 15px;
}
.m-search-subnav .subnav-search-input{
	width: 180px; font-size: 14px;
}
.sub-prod-imgbox{
	max-width: 100%;
}
.card-resources h4 {
    font-size: 18px;
}
.faq_form {
    margin-right: 0;
}


}
@media screen and (min-width: 992px) {
    .cat-flt-block .m-subnav-nav {
        display:block!important
    }
}
/* iPad 768px view*/
@media screen and (max-width:991px){
.container{padding-left: 20px; padding-right: 20px;}
.ptb-100, .ptb-80, .ptb-60{padding:60px 0;}
.block-title p br{display: none;}
img.alignleft, img.alignright, img.alignnone,
iframe, iframe.alignleft, iframe.alignright, iframe.iframe-embed.alignright{
    float: none; max-width: 100%; margin: 0 0 20px; width: 100%;
}
h1, .h1 {
    font-size: 32px;
}
/*Header and banner*/
.card-media {
    height: 60px;
}
.steps-items{
	padding: 40px 0; position: relative;
}
.process-timeline {
    left: 30px; right: auto; transform: none;top: 0;
}
.process-number {
    left: 8px; right: auto; width: 40px; height: 40px;
}
.process-number .num{
	font-size: 18px; border-width: 4px;
}
.process-row, .process-row.reverse {
    flex-direction: column; align-items: flex-start; padding-left: 40px;
    gap: 20px 0;
}
.process-image, .process-text, .process-row.reverse .process-image, .process-row.reverse .process-text {
    padding: 0; width: 100%; margin-bottom: 0; text-align: left;
}
.process-image {
    order: 1; margin: 0;
}
.process-text {
    order: 2;
}
.process-content h3 {
    font-size: 24px; margin-bottom: 15px;
}
.process-content {
    max-width: 100%; width: 100%;
}
.process-row.reverse .process-content {
    text-align: left;
}
.hero-block-inner .btnbox {
    gap: 15px; padding-top: 0;
}
.small-title {
	margin-bottom: 10px;
}
.grp-item img {
    min-width: 45px; max-width: 45px; height: 45px;border-width: 3px;
}
.trans-box p {
    font-size: 14px;
}
.trans-box .number-tl {
	font-size: 32px;
}
.service-list {
    margin-left: 0;
}
.card-service .imgbox {
    min-width: 140px;
}
.card-service h4 {
	margin-bottom: 15px;
}
.card-service .textbox p {
	margin-bottom: 0;
}
.card-specific-info h4 {
    font-size: 20px; line-height: 28px;text-transform: inherit;
}
.card-specific-info p {
    font-size: 16px;
}
.card-detail-inn .middle-block {
    padding: 0 30px;
}
.card-detail-inn .middle-block .btnbox .btn {
	padding: 8px 15px;
}
.internal-caption {
    max-width: 440px;
}
.info-icon-block{
	gap: 10px 0;
}
.info-icon-block .items{
	min-width: 50%;
}
.specific-inn {
    gap: 40px 0;
}
.part-logobox img {
    max-width: 240px; max-height: 120px;
}
.design-process-list:before{
	display: none;
}
.contact-icon-block.icon-block {
    gap: 10px 0; padding: 0;
}
.contact-icon-block .items {
    min-width: 50%;
}
.google-map-block {
    height: 300px;
}
.contact-inn {
    gap: 40px 0;
}
.product-slider .slick-arrow{
	top: 36%;
}
.cate-toggle-btn {
	display: flex; justify-content: flex-end; align-items: center;
}
.cate-label{
	height: 50px; align-items: center; font-size: 18px;
}
.m-subnav-mobile-wrap,.m-subnav-mobile-wrap>div {
    position: static
}
.cat-flt-block .m-subnav-nav {
    display: none; background: var(--white_clr);
    position: absolute; left: 0; right: 0; top: 100%; z-index: 99; overflow: auto; height: calc(100vh - 80px)
}
.m-subnav-nav-list {
    display: block; text-align: center
}
.m-subnav-nav-list li {
    padding: 10px 0; margin: 0; border-top: 1px solid var(--bdr_clr);
}
.m-subnav-nav-list li a {
    padding: 4px 15px; border: 0
}
.m-search-subnav {
    position: relative; max-width: 90%; margin: 0 auto
}
.m-search-subnav .subnav-search-input{
	width: 100%; max-width: 100%;
}
.sub-product-main .items{
	padding: 40px 20px; background: var(--body_clr);
}
.faq_form {
    padding-bottom: 40px;
}
.popmake {
    width: 95% !important;
}
.pum-close.popmake-close {
    right: -5px !important; top: -5px !important;
}
.cat-flt-block .desk-hide {
	display: flex;
}
.cateblock-mobi {
	display: none;
}
.industry-list-option .items {
	padding: 7px 0;
}
.front-products-section .block-title .btnbox{
	text-align: left !important;
}
.banner-inn {
    max-width: 80%; margin: 0 auto; text-align: center; gap: 20px;
}
.banner-inn .left-block{
	order: 2;
}
.banner-inn .right-block{
	order: 1;
}
.banner-inn .btnbox{
	justify-content: center;
}
.sideform {
	margin-top: 30px;
}

.table-bottom-textarea {
    padding: 30px !important;
}
.table-bottom-textarea p {
    font-size: 18px;
}
#popmake-765 {
    zoom: 1;
}


}
/* iPhone-6 plus 736 (Landscape) view */
@media screen and (max-width:767px){
.ptb-120, .ptb-100, .ptb-80, .ptb-90, .ptb-60, .ptb-50 {
    padding: 40px 0;
}
body{-webkit-text-size-adjust:none;}
.max-container,
.container{padding-left: 20px; padding-right: 20px;}
ul li, ol li, p{
	font-size: 16px; line-height: 1.4; margin:0 0 15px;
}
img.alignleft, img.alignright, img.alignnone,
iframe, iframe.alignleft, iframe.alignright, iframe.iframe-embed.alignright{
    float: none; max-width: 100%; margin: 0 0 20px;
}
h2, .h2 {
    font-size: 24px; line-height: 1.2;
}
.block-title {
    margin-bottom: 20px;
}
/*Header and banner*/
.mobi-iconbox{
	display: flex; align-items: center; justify-content: center;
}
/*.site-logo, .site-logo img, .site-logo svg{
	width: 146px;
}*/
.head-btnbox {
    display: none;
}
.header-inner,
.header-blank{
	height: 80px;
}
.intro-block-inner {
    gap: 30px 0;
}
.small-title {
    font-size: 14px;
}
.hero-block {
	padding-block: 80px;
}
.hero-block-inner {
    gap: 40px 0;
}
.caption-inn {
    padding: 0;
}
.caption {
    min-width: 90%; max-width: 90%;
}
.caption .h1 {
    font-size: 32px;
}
.bdr-tl .right-block {
    padding-left: 15px; padding-bottom: 30px; border-left: 0;
}

.bdr-top {
	padding-top: 40px;
}
.service-section {
    padding-top: 0;
}
.card-service {
	display: block !important;
}
.card-service .imgbox {
    min-width: inherit; max-width: 120px; margin-bottom: 20px;
}
.industry-list {
    padding: 0 0 20px;
}
.about-section:before {
	display: none;
}
.abt-left-block {
    padding: 30px 20px; max-width: 100%;
}
.card-detail-inn{
	padding: 0; flex-wrap: wrap;
}
.card-detail-inn .left-block{
	max-width: 100%; order: 2; display: flex; gap: 10px;
}
.card-detail-inn .right-block{
	max-width: 100%; order: 3; display: flex; gap: 10px; margin-top: 10px;
}
.card-detail-inn .middle-block{
	padding: 0; order: 1;
}
.card-specific-info + .card-specific-info {
    margin-top: 0;
}
.card-specific-info{
	padding: 15px 15px 50px; width: 50%;
}
.card-specific-info h4{
	font-size: 18px; line-height: 24px;margin-bottom: 10px;
}
.card-specific-info p {
    font-size: 15px;
}
.card-specific-info-imgbox {
    max-width: 280px;
}
.desk-hide {
	display: block;
}
.mobi-hide {
	display: none;
}
.process-row, .process-row.reverse {
	padding-left: 20px;
}
.process-block {
	padding: 0 0 0 50px;
}
.process-timeline {
    left: 20px;
}
.process-content h3 {
	font-size: 24px;
}
.post-list {
	padding-top: 0;
}
.acc_title {
    padding: 16px 60px 16px 20px; font-size: 16px;
}
.faq-card .content-box {
    padding: 0 60px 20px 20px;
}
.footer-bottom-inn {
    flex-wrap: wrap; text-align: center; flex-direction: column;
    justify-content: center; gap: 10px 0; border-top: 0; padding-top: 0;
}
.footer-bottom-inn .right-block{
	min-width: 100%;
}
.footer-bottom ul{
	justify-content: center;
}
.footer-inner {
    gap: 0;
}
.f-col-1{
	margin-bottom: 40px;
}
.footer-inner .col-2 {
    flex: 100%; max-width: 100%;
}
.f-links{
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-inner .col-2:last-child .f-links{
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.f-links ul{
	display: none; padding: 0;
}
.f-links h5{
	margin: 0; padding: 15px 0; position: relative; cursor: pointer;
}
.f-links h5:after{
	display:block; content:"\f107"; font-family:'FontAwesome'; font-weight: 400;
	width:15px; height:15px; position:absolute; right:0; top:15px; z-index:1;
	-moz-transition:all 0.4s ease 0s;-webkit-transition:all 0.4s ease 0s;transition:all 0.4s ease 0s;
}
.f-links h5.active:after{
	content:"\f106";
}
.scrollup.active {
    right: 10px;
}
.desktop-view{
	display: none;
}
.mobi-view{
	display: block;
}
.card-testimonial,
.slick-active.slick-center .card-testimonial{
	transform: scale(1.0);
}
.testimonial-list .items{
	height: inherit;
}
.internal-caption {
    max-width: 380px;
}
.icon-block .items{
	padding: 0 10px 10px;
}
.card-prod h4 {
    font-size: 18px;
}
.counter-inn{
	gap: 30px 0;
}
.counter-inn .items {
    max-width: 50%;
}
.abt-info-inn {
    gap: 30px 0;
}
.abt-info-right{
	margin: 0 -5px;
}
.abt-info-right .sub-items {
    max-width: 50%; padding: 0 5px;
}
.card-abt-info {
    gap: 10px;
}
.card-info-abt .imgbox {
    margin-top: 0; order: 1;
}
.card-info-abt .textbox{
	order: 2;
}
.info-card-inn {
    gap: 20px 0;
}
.card-whychoose {
    text-align: center; display: flex; flex-direction: column; align-items: center;
}
.story-section:before{
	display: none;
}
.story-section:after{
	width: 60px;
}
.journey-slider .slick-list{
	padding-left: 0 !important;
}
.journey-box{
	padding-right: 0;
}
.sub-product-list {
    gap: 30px 0; padding: 0;
}
.info-icon-block .items {
    min-width: 100%;
}
.table-style {
    overflow: auto;
}
.table-style table{
    min-width: 610px;
}
.process-number {
    bottom: auto; left: 0; top: 24px;
}
.partner-list .items {
    width: 50%;
}
.part-logobox img {
    max-width: 160px; max-height: 80px;
}
.sticky_class{
	position: relative; top: 0;
}
.card-design-process .iconbox{
	position: static;
}
.design-process-list:before {
    display: block; left: 5px; top: 70px; bottom: 0; right: auto; width: 1px; height: auto;
}
.card-design-process .iconbox:after{
	right: auto; bottom: auto; left: 20px; top: 36px;
}
.card-design-process .iconbox:before{
	display: block; content: ""; width: 30px; height: 1px; background: var(--bdr_clr);
	position: absolute; left: -10px; top: 50px;
}
.cta-innner h2 br{
    display: none;
}
.google-map-block {
    height: 260px;
}
.form-title h2 br{
	display: none;
}
.form-inner .input-field{
	margin: 0 0 20px; -ms-flex-preferred-size:100%; flex-basis:100%;min-width:100%;max-width:100%;
}
.input-field .label {
    font-size: 14px; line-height: 1.2;
}
.contact-icon-block .items {
    min-width: 100%;
}
.breadcrumbs-contact.breadcrumbs-block{
    padding: 20px 0;
}
.contact-section {
    overflow: hidden;
}
.contact-block {
    padding: 30px; margin: 0 -20px;
}
.highlighted{
	padding: 20px;
}
.sub-product-main {
    padding: 0;
}
.sub-product-main .items {
    padding: 40px 0;
}
.resource-flt{
	gap: 10px;
}
.resource-flt li {
    font-size: 16px;
}
.popmake {
    padding: 30px 25px !important;
}
.footer {
	margin-bottom: 50px;
}
.scrollup {
	bottom: 60px;
}
.mobi-btns {
    display: block !important; position: fixed; bottom: 0; left: 0; right: 0; width: 100%; z-index: 10;
}
.mobi-btns .btnbox {
    gap: 0;
}
.mobi-btns .btn {
    font-size: 14px; border-radius: 0; width: 50%;padding: 10px;
}
.mobi-btns .chat-btn span {
	gap: 7px;
}
.mobi-btns .btn .whatsapp_icon:before {
	width: 20px; height: 20px;
}
.industry-list-option .items {
    min-width: auto;
    max-width: max-content;
    width: 100%;
}
.banner-inn {
    max-width: 100%;
}
.sideform .small-title {
	font-size: 26px;
}
.authorbox {
    padding: 25px;
}
.authorbox .imgbox {
    min-width: 60px; max-width: 60px; height: 60px;margin-right: 15px;
}
.authorbox h3 {
    font-size: 19px;margin-bottom: 5px;
}
.author-details {
    padding-top: 15px;
}
.coming-card {
    padding: 30px;
}

}/*767 End*/