/*
======================================
  * CSS TABLE CONTENT *  
======================================

1. GENERAL

2. HEADINGS

3. TEXT & PARAGRAPH

4. LISTS

5. BOX SPACING (inner & outer)
	>padding
	>marging
	
6. BOX MAX-WIDTH CSS

7. POSITIONS ( absolute & relative & statice & z-index )

8. COLOR (text & background)
	>text color
	>background color

9. IMAGES OVERLAY EFFECTS (overly animation on images)

10. IMAGES EFFECTS (image animation in images)
	 >image-opacity
	 >image-zoom
	 >image-zoom-slow
	 >image-shrink
	 >image-side-pan
	 >image-vertical-pan
	 >image-fade-in
	 >image-fade-out 
	 >image-rotate
	 >image-sepia
	 >image-blurr
	 >image-blurr-invert
	 >image off color
	 >image on color
 

11. CONTENT SHOW ON IMAGE BOX
 
12. FORM ELEMENTS

13. WP DEFAULT

14. HEADER (top part of page)

15. PAGE TOP BAR (left & right content)

16. LOGO ( company identify  symbol )

17. MAIN BAR ( place logo & main-navigation )

18. NAVIGATIONS
	>mena-menu
	>mobile-menu
	>footer-menu
	
19. BANNER

20. SLIDER
	>rs slider
	>owl slider
	
21. BLOG
	
22. WIDGETS

23. CUSTOMIZE CSS
	>set-radius
	>transition
	>float-clearfix
	
24. SORTCODES 
	>Buttons
	>Title separators		
	>Deviders	
	>Lists & bullets	
	>Tabs
	>Accordians		
	>Carousels	
	>Testimonials	
	>Pricing table
	>Alert box	
	>Modal pop
	>Social icons
	>Breadcrumb
	>Tables
	>Image effects

25. PAGINATION

26. FOOTER

27. PAGE-CONTENT

28. INNER-CONTENT

29. SIDE-NAV

30. CONTACT

31. SHOPPING

======================================
  * END TABLE CONTENT *  
======================================
*/
/*--------------------------------------------------------------
1. GENERAL
---------------------------------------------------------------*/
/* ===== selection ===== */ ::-moz-selection { /* Code for Firefox */
  background: var(--color-primary) !important;
}
::selection {
  background: var(--color-primary) !important;
}
body, html {
  -moz-osx-font-smoothing: grayscale;
}
body {
  background-color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #6f6f6f;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
a {
  color: var(--color-primary);
  outline: 0 none;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: none;
  outline: 0 none;
}
a:active, a:hover {
  color: #333333;
}
p a {
  color: #333333;
}
img {
  border-style: none;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}
hr {
  clear: both;
}
button, select {
  outline: none;
}
.text-secondry {
  color: var(--text-sec);
}
.bg-primary {
  background-color: var(--color-primary) !important;
}
.text-primary {
  color: var(--color-primary) !important;
}
a.text-primary:hover {
  color: var(--color-hover) !important;
}
section, article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, summary {
  display: block;
}
address {
  font-style: italic;
}
table {
  background-color: transparent;
  width: 100%;
}
table thead th {
  color: #333;
}
table td {
  padding: 15px 10px;
  border-top: 0px;
  border-bottom: 0px;
}
table tr:last-child td {
  border-bottom: 0;
}
p, address, pre, hr, ul, ol, dl, dd, table {
  margin-bottom: 24px;
}
::selection {
  color: #000;
  background: #dbdbdb;
}
::-moz-selection {
  color: #000;
  background: #dbdbdb;
}
.overflow-hide {
  overflow: hidden;
}
.overflow-auto {
  overflow: auto;
}
.clear {
  clear: both;
}
.pull-none {
  float: none;
}
::-moz-selection {
  background: #3396d1;
  color: #fff;
}
::selection {
  background: #3396d1;
  color: #fff;
}
.op {
  font-family: 'Open Sans', sans-serif;
}
.dis-block {
  display: block;
  width: 100%;
}
/*---------------------------------------------------------------
2. HEADINGS
---------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  color: #232323;
  font-family: "Poppins", sans-serif;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: #232323;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
  color: var(--color-primary);
}
a.bg-primary:focus, a.bg-primary:hover {
  color: var(--color-hover);
}
h1 {
  font-size: 36px;
  line-height: 45px;
  margin-bottom: 25px;
}
h2 {
  font-size: 32px;
  line-height: 45px;
  margin-bottom: 25px;
}
h3 {
  font-size: 28px;
  line-height: 35px;
  margin-bottom: 20px;
}
h4 {
  font-size: 21px;
  line-height: 26px;
  margin-bottom: 15px;
  font-weight: 600;
}
h5 {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 10px;
  font-weight: 600;
}
h6 {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 10px;
  font-weight: 600;
}
.h4, .h5, .h6 {
  font-weight: 600;
}
/*---------------------------------------------------------------
3. TEXT & PARAGRAPH
---------------------------------------------------------------*/
p {
  line-height: 28px;
  margin-bottom: 24px;
}
strong {
  font-weight: 400;
}
.bg-primary, .bg-primary a:hover {
  color: #fff;
}
/*text align*/
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-justify {
  text-align: justify
}
/*text vertical align*/
.v-align-t {
  vertical-align: top;
}
.v-align-m {
  vertical-align: middle;
}
.v-align-b {
  vertical-align: bottom;
}
/*text no line brack*/
.text-nowrap {
  white-space: nowrap
}
/*text transform*/
.text-lowercase {
  text-transform: lowercase
}
.text-uppercase {
  text-transform: uppercase
}
.text-capitalize {
  text-transform: capitalize
}
.font-italic {
  font-style: italic !important;
}
/*text size*/
.font-10 {
  font-size: 10px;
}
.font-12 {
  font-size: 12px;
}
.font-13 {
  font-size: 13px;
}
.font-14 {
  font-size: 14px;
}
.font-15 {
  font-size: 15px;
}
.font-16 {
  font-size: 16px;
}
.font-18 {
  font-size: 18px;
}
.font-20 {
  font-size: 20px;
}
.font-22 {
  font-size: 22px;
}
.font-24 {
  font-size: 24px;
}
.font-26 {
  font-size: 26px;
}
.font-30 {
  font-size: 30px;
  line-height: 40px;
}
.font-35 {
  font-size: 35px;
  line-height: 45px;
}
.font-40 {
  font-size: 40px;
  line-height: 50px;
}
.font-45 {
  font-size: 45px;
  line-height: 55px;
}
.font-50 {
  font-size: 50px;
  line-height: 65px;
}
.font-55 {
  font-size: 55px;
  line-height: 65px;
}
.font-60 {
  font-size: 60px;
  line-height: 70px;
}
.font-70 {
  font-size: 70px;
  line-height: 80px;
}
.font-75 {
  font-size: 75px;
  line-height: 85px;
}
.font-80 {
  font-size: 80px;
  line-height: 90px;
}
.font-90 {
  font-size: 90px;
  line-height: 100px;
}
.font-100 {
  font-size: 100px;
  line-height: 110px;
}
/*text line-height*/
.line-height-26 {
  line-height: 26px;
}
.line-height-20 {
  line-height: 22px;
}
.line-height-23 {
  line-height: 23px;
}
.line-height-18 {
  line-height: 18px;
}
.line-height-35 {
  line-height: 35px !important;
}
.line-height-45 {
  line-height: 45px !important;
}
.line-height-25 {
  line-height: 25px;
}
.letter-space-1 {
  letter-spacing: -.05em;
}
.letter-space-2 {
  letter-spacing: -.02em;
}
/*text weight*/
.font-weight-300 {
  font-weight: 300;
}
.font-weight-400 {
  font-weight: 400;
}
.font-weight-500 {
  font-weight: 500;
}
.font-weight-600 {
  font-weight: 600;
}
.font-weight-700 {
  font-weight: 700;
}
.font-weight-800 {
  font-weight: 800;
}
.font-weight-900 {
  font-weight: 900;
}
/*---------------------------------------------------------------
4. LISTS
---------------------------------------------------------------*/
dl, ul, ol {
  list-style-position: outside;
  padding: 0;
}
ul, ol {
  margin-bottom: 24px;
}
ul li, ol li {
  padding: 0;
}
dl {
  margin-left: 0;
  margin-bottom: 30px;
}
dl dd {
  margin-bottom: 10px;
}
.list-inline > li {
  padding-left: 2px;
  padding-right: 2px;
  display: inline-block;
}
/*---------------------------------------------------------------
5. BOX SPACING (inner & outer)
	>padding
	>marging
---------------------------------------------------------------*/
/*== >padding (around) ======*/
.p-a0 {
  padding: 0;
}
.p-a5 {
  padding: 5px;
}
.p-a10 {
  padding: 10px;
}
.p-a15 {
  padding: 15px;
}
.p-a20 {
  padding: 20px;
}
.p-a25 {
  padding: 25px;
}
.p-a30 {
  padding: 30px;
}
.p-a40 {
  padding: 40px;
}
.p-a50 {
  padding: 50px;
}
.p-a60 {
  padding: 60px;
}
.p-a70 {
  padding: 70px;
}
.p-a80 {
  padding: 80px;
}
.p-a90 {
  padding: 90px;
}
.p-a100 {
  padding: 100px;
}
/*== >Padding (top) ==*/
.p-t0 {
  padding-top: 0;
}
.p-t5 {
  padding-top: 5px;
}
.p-t10 {
  padding-top: 10px;
}
.p-t15 {
  padding-top: 15px;
}
.p-t25 {
  padding-top: 25px;
}
.p-t20 {
  padding-top: 20px;
}
.p-t30 {
  padding-top: 30px;
}
.p-t40 {
  padding-top: 40px;
}
.p-t50 {
  padding-top: 50px;
}
.p-t60 {
  padding-top: 60px;
}
.p-t70 {
  padding-top: 70px;
}
.p-t80 {
  padding-top: 80px;
}
.p-t90 {
  padding-top: 90px;
}
.p-t100 {
  padding-top: 100px;
}
/*== >Padding (bottom) ==*/
.p-b0 {
  padding-bottom: 0;
}
.p-b5 {
  padding-bottom: 5px;
}
.p-b10 {
  padding-bottom: 10px;
}
.p-b15 {
  padding-bottom: 15px;
}
.p-b20 {
  padding-bottom: 20px;
}
.p-b30 {
  padding-bottom: 30px;
}
.p-b40 {
  padding-bottom: 40px;
}
.p-b50 {
  padding-bottom: 50px;
}
.p-b60 {
  padding-bottom: 60px;
}
.p-b70 {
  padding-bottom: 70px;
}
.p-b80 {
  padding-bottom: 80px;
}
.p-b90 {
  padding-bottom: 90px;
}
.p-b100 {
  padding-bottom: 100px;
}
/*== >Padding (left) ==*/
.p-l0 {
  padding-left: 0;
}
.p-l5 {
  padding-left: 5px;
}
.p-l10 {
  padding-left: 10px;
}
.p-l15 {
  padding-left: 15px;
}
.p-l20 {
  padding-left: 20px;
}
.p-l30 {
  padding-left: 30px;
}
.p-l40 {
  padding-left: 40px;
}
.p-l45 {
  padding-left: 45px;
}
.p-l50 {
  padding-left: 50px;
}
.p-l60 {
  padding-left: 60px;
}
.p-l70 {
  padding-left: 70px;
}
.p-l80 {
  padding-left: 80px;
}
.p-l90 {
  padding-left: 90px;
}
.p-l100 {
  padding-left: 100px;
}
/*== >Padding (right) ==*/
.p-r0 {
  padding-right: 0;
}
.p-r5 {
  padding-right: 5px;
}
.p-r10 {
  padding-right: 10px;
}
.p-r15 {
  padding-right: 15px;
}
.p-r20 {
  padding-right: 20px;
}
.p-r30 {
  padding-right: 30px;
}
.p-r40 {
  padding-right: 40px;
}
.p-r50 {
  padding-right: 50px;
}
.p-r60 {
  padding-right: 60px;
}
.p-r70 {
  padding-right: 70px;
}
.p-r80 {
  padding-right: 80px;
}
.p-r90 {
  padding-right: 90px;
}
.p-r100 {
  padding-right: 100px;
}
/*== >Padding (left right) ==*/
.p-lr0 {
  padding-left: 0;
  padding-right: 0;
}
.p-lr5 {
  padding-left: 5px;
  padding-right: 5px;
}
.p-lr10 {
  padding-left: 10px;
  padding-right: 10px;
}
.p-lr15 {
  padding-left: 15px;
  padding-right: 15px;
}
.p-lr20 {
  padding-left: 20px;
  padding-right: 20px;
}
.p-lr30 {
  padding-left: 30px;
  padding-right: 30px;
}
.p-lr40 {
  padding-left: 40px;
  padding-right: 40px;
}
.p-lr50 {
  padding-left: 50px;
  padding-right: 50px;
}
.p-lr60 {
  padding-left: 60px;
  padding-right: 60px;
}
.p-lr70 {
  padding-left: 70px;
  padding-right: 70px;
}
.p-lr80 {
  padding-left: 80px;
  padding-right: 80px;
}
.p-lr90 {
  padding-left: 90px;
  padding-right: 90px;
}
.p-lr100 {
  padding-left: 100px;
  padding-right: 100px;
}
/*== >Padding (top bottom) ==*/
.p-tb0 {
  padding-bottom: 0;
  padding-top: 0;
}
.p-tb5 {
  padding-bottom: 5px;
  padding-top: 5px;
}
.p-tb10 {
  padding-bottom: 10px;
  padding-top: 10px;
}
.p-tb15 {
  padding-bottom: 15px;
  padding-top: 15px;
}
.p-tb20 {
  padding-bottom: 20px;
  padding-top: 20px;
}
.p-tb30 {
  padding-bottom: 30px;
  padding-top: 30px;
}
.p-tb40 {
  padding-bottom: 40px;
  padding-top: 40px;
}
.p-tb50 {
  padding-bottom: 50px;
  padding-top: 50px;
}
.p-tb60 {
  padding-bottom: 60px;
  padding-top: 60px;
}
.p-tb70 {
  padding-bottom: 70px;
  padding-top: 70px;
}
.p-tb80 {
  padding-bottom: 80px;
  padding-top: 80px;
}
.p-tb90 {
  padding-bottom: 90px;
  padding-top: 90px;
}
.p-tb100 {
  padding-bottom: 100px;
  padding-top: 100px;
}
/*== >margin (around) ======*/
.m-auto {
  margin: auto;
}
.m-a0 {
  margin: 0;
}
.m-a5 {
  margin: 5px;
}
.m-a10 {
  margin: 10px;
}
.m-a15 {
  margin: 15px;
}
.m-a20 {
  margin: 20px;
}
.m-a30 {
  margin: 30px;
}
.m-a40 {
  margin: 40px;
}
.m-a50 {
  margin: 50px;
}
.m-a60 {
  margin: 60px;
}
.m-a70 {
  margin: 70px;
}
.m-a80 {
  margin: 80px;
}
.m-a90 {
  margin: 90px;
}
.m-a100 {
  margin: 100px;
}
/*== >marging (top) ==*/
.m-t0 {
  margin-top: 0;
}
.m-t3 {
  margin-top: 3px;
}
.m-t5 {
  margin-top: 5px;
}
.m-t10 {
  margin-top: 10px;
}
.m-t15 {
  margin-top: 15px;
}
.m-t20 {
  margin-top: 20px;
}
.m-t30 {
  margin-top: 30px;
}
.m-t40 {
  margin-top: 40px;
}
.m-t50 {
  margin-top: 50px;
}
.m-t60 {
  margin-top: 60px;
}
.m-t70 {
  margin-top: 70px;
}
.m-t80 {
  margin-top: 80px;
}
.m-t90 {
  margin-top: 90px;
}
.m-t100 {
  margin-top: 100px;
}
.m-t120 {
  margin-top: 120px;
}
.m-t150 {
  margin-top: 150px;
}
/*== >fix for home page margin issue on Firefox ==*/
@-moz-document url-prefix() {
  .bnr-inr .m-t200 {
    margin-top: 250px;
  }
}
.m-t200 {
  margin-top: 200px;
}
.m-t250 {
  margin-top: 250px;
}
/*== >marging (bottom) ==*/
.m-b0 {
  margin-bottom: 0 !important;
}
.m-b5 {
  margin-bottom: 5px;
}
.m-b10 {
  margin-bottom: 10px;
}
.m-b15 {
  margin-bottom: 15px;
}
.m-b20 {
  margin-bottom: 20px;
}
.m-b30 {
  margin-bottom: 30px;
}
.m-b40 {
  margin-bottom: 40px;
}
.m-b50 {
  margin-bottom: 50px;
}
.m-b60 {
  margin-bottom: 60px;
}
.m-b70 {
  margin-bottom: 70px;
}
.m-b80 {
  margin-bottom: 80px;
}
.m-b90 {
  margin-bottom: 90px;
}
.m-b100 {
  margin-bottom: 100px;
}
/*== >marging (left) ==*/
.m-l0 {
  margin-left: 0;
}
.m-l5 {
  margin-left: 5px;
}
.m-l10 {
  margin-left: 10px;
}
.m-l15 {
  margin-left: 15px;
}
.m-l20 {
  margin-left: 20px;
}
.m-l30 {
  margin-left: 30px;
}
.m-l40 {
  margin-left: 40px;
}
.m-l50 {
  margin-left: 50px;
}
.m-l60 {
  margin-left: 60px;
}
.m-l70 {
  margin-left: 70px;
}
.m-l80 {
  margin-left: 80px;
}
.m-l90 {
  margin-left: 90px;
}
.m-l100 {
  margin-left: 100px;
}
/*== >marging (right) ==*/
.m-r0 {
  margin-right: 0;
}
.m-r5 {
  margin-right: 5px;
}
.m-r10 {
  margin-right: 10px;
}
.m-r15 {
  margin-right: 15px;
}
.m-r20 {
  margin-right: 20px;
}
.m-r30 {
  margin-right: 30px;
}
.m-r40 {
  margin-right: 40px;
}
.m-r50 {
  margin-right: 50px;
}
.m-r60 {
  margin-right: 60px;
}
.m-r70 {
  margin-right: 70px;
}
.m-r80 {
  margin-right: 80px;
}
.m-r90 {
  margin-right: 90px;
}
.m-r100 {
  margin-right: 100px;
}
/*== >marging (left right) ==*/
.m-lr0 {
  margin-left: 0;
  margin-right: 0;
}
.m-lr5 {
  margin-left: 5px;
  margin-right: 5px;
}
.m-lr10 {
  margin-left: 10px;
  margin-right: 10px;
}
.m-lr15 {
  margin-left: 15px;
  margin-right: 15px;
}
.m-lr20 {
  margin-left: 20px;
  margin-right: 20px;
}
.m-lr30 {
  margin-left: 30px;
  margin-right: 30px;
}
.m-lr40 {
  margin-left: 40px;
  margin-right: 40px;
}
.m-lr50 {
  margin-left: 50px;
  margin-right: 50px;
}
.m-lr60 {
  margin-left: 60px;
  margin-right: 60px;
}
.m-lr70 {
  margin-left: 70px;
  margin-right: 70px;
}
.m-lr80 {
  margin-left: 80px;
  margin-right: 80px;
}
.m-lr90 {
  margin-left: 90px;
  margin-right: 90px;
}
.m-lr100 {
  margin-left: 100px;
  margin-right: 100px;
}
/*== >marging (top bottom) ==*/
.m-tb0 {
  margin-bottom: 0;
  margin-top: 0;
}
.m-tb5 {
  margin-bottom: 5px;
  margin-top: 5px;
}
.m-tb10 {
  margin-bottom: 10px;
  margin-top: 10px;
}
.m-tb15 {
  margin-bottom: 15px;
  margin-top: 15px;
}
.m-tb20 {
  margin-bottom: 20px;
  margin-top: 20px;
}
.m-tb30 {
  margin-bottom: 30px;
  margin-top: 30px;
}
.m-tb40 {
  margin-bottom: 40px;
  margin-top: 40px;
}
.m-tb50 {
  margin-bottom: 50px;
  margin-top: 50px;
}
.m-tb60 {
  margin-bottom: 60px;
  margin-top: 60px;
}
.m-tb70 {
  margin-bottom: 70px;
  margin-top: 70px;
}
.m-tb80 {
  margin-bottom: 80px;
  margin-top: 80px;
}
.m-tb90 {
  margin-bottom: 90px;
  margin-top: 90px;
}
.m-tb100 {
  margin-bottom: 100px;
  margin-top: 100px;
}
/*== > colum gap less ==*/
.no-col-gap [class*="col-xs-"], .no-col-gap [class*="col-sm-"], .no-col-gap [class*="col-md-"], .no-col-gap [class*="col-lg-"] {
  padding-left: 0;
  padding-right: 0;
}
/*---------------------------------------------------------------
6. BOX MAX-WIDTH CSS
---------------------------------------------------------------*/
.max-w50 {
  max-width: 50px;
}
.max-w60 {
  max-width: 60px;
}
.max-w80 {
  max-width: 80px;
}
.max-w100 {
  max-width: 100px;
}
.max-w200 {
  max-width: 200px;
}
.max-w300 {
  max-width: 300px;
}
.max-w400 {
  max-width: 400px;
}
.max-w500 {
  max-width: 500px;
}
.max-w600 {
  max-width: 600px;
}
.max-w700 {
  max-width: 700px;
}
.max-w800 {
  max-width: 800px;
}
.max-w900 {
  max-width: 900px;
}
.max-w1000 {
  max-width: 1000px;
}
/*---------------------------------------------------------------
7. POSITIONS ( absolute & relative & statice & z-index )
---------------------------------------------------------------*/
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.static {
  position: static;
}
.z-index1 {
  z-index: 1;
}
.z-index2 {
  z-index: 2;
}
.z-index3 {
  z-index: 3;
}
.z-index4 {
  z-index: 4;
}
.z-index5 {
  z-index: 5;
}
.z-index6 {
  z-index: 6;
}
.z-index7 {
  z-index: 7;
}
.z-index8 {
  z-index: 8;
}
.z-index9 {
  z-index: 9;
}
.z-index10 {
  z-index: 10;
}
.z-index100 {
  z-index: 100;
}
.z-index999 {
  z-index: 999;
}
/*---------------------------------------------------------------
8. COLOR (text & background)
	>text color
	>background color
---------------------------------------------------------------*/
/*=== >text color ===*/
.text-white {
  color: #fff;
}
.text-blue a {
  color: #0086f0;
}
.text-black {
  color: #000;
}
.text-gray {
  color: #f5f6f6;
}
.text-body {
  color: #6f6f6f;
}
.text-body-2 {
  color: #6f6f6f;
	font-weight: 400;
}
.text-gray-dark {
  color: #9a9a9a;
}
.text-gray-darker {
  color: #656363;
}
.text-red {
  color: #FF4045;
}
.text-yellow {
  color: #ffb822;
}
.text-yellow-light {
  color: #FEC215;
}
.text-pink {
  color: #ff3c85;
}
.text-blue {
  color: #004b87;
}
.text-green {
  color: #34bfa3;
}
.text-orange {
  color: #ef9800;
}
.text-bronze {
  color: #684D3B;
  font-size: 20px;
}
.text-gray-model {
  color: #A5AAAC;
  font-size: 20px;
}
.text-black-model {
  color: #040708;
  font-size: 20px;
}
/*=== >background color ===*/
.bg-transparent {
  background-color: transparent;
}
.bg-primary {
  background-color: ;
}
.bg-white {
  background-color: #FFF;
}
.bg-black {
  background-color: #000;
}
.bg-black-light {
  background-color: #1C1C1C;
}
.bg-photos {
  background-color: #ebf0f3;
}
.bg-gray {
  background-color: #F7F9FB;
}
.bg-gray-lt {
  background-color: #EBEDEF;
}
.bg-gray-medium {
  background-color: #EEEEEE;
}
.bg-gray-blue {
  background-color: #E6EBF1;
}
.bg-gray-dark {
  background-color: #d3d3d3 !important;
}
.bg-gray-darker {
  background-color: #6C6C6C !important;
}
.bg-yellow {
  background-color: #ffb822;
}
.bg-gold {
  background-color: #ffb822 !important;
}
.bg-blue {
  background-color: #DBEEFF;
}
.bg-blue-dk {
  background-color: #004780;
}
/* bg transperent */
.bg-tpw1 {
  background-color: rgba(255, 255, 255, 0.1)
}
.bg-tpw2 {
  background-color: rgba(255, 255, 255, 0.2)
}
.bg-tpw3 {
  background-color: rgba(255, 255, 255, 0.3)
}
.bg-tpw4 {
  background-color: rgba(255, 255, 255, 0.4)
}
.bg-tpw5 {
  background-color: rgba(255, 255, 255, 0.5)
}
.bg-tpw6 {
  background-color: rgba(255, 255, 255, 0.6)
}
.bg-tpw7 {
  background-color: rgba(255, 255, 255, 0.7)
}
.bg-tpw8 {
  background-color: rgba(255, 255, 255, 0.8)
}
.bg-tpw9 {
  background-color: rgba(255, 255, 255, 0.9)
}
/* Tb Black */
.bg-tpb1 {
  background-color: rgba(0, 0, 0, 0.05)
}
.bg-tpb2 {
  background-color: rgba(0, 0, 0, 0.2)
}
.bg-tpb3 {
  background-color: rgba(0, 0, 0, 0.3)
}
.bg-tpb4 {
  background-color: rgba(0, 0, 0, 0.4)
}
.bg-tpb5 {
  background-color: rgba(0, 0, 0, 0.5)
}
.bg-tpb6 {
  background-color: rgba(0, 0, 0, 0.6)
}
.bg-tpb7 {
  background-color: rgba(0, 0, 0, 0.7)
}
.bg-tpb8 {
  background-color: rgba(0, 0, 0, 0.8)
}
.bg-tpb9 {
  background-color: rgba(0, 0, 0, 0.9)
}
/*===Banners ===*/
.bg-img-fix {
  background-attachment: unset;
  background-size: cover;
}
.bg-pt {
  background-position: top;
  background-size: cover;
}
.bnr-inr.bg-pt, .bg-pt {
  background-position: top;
  background-size: cover;
}
.ks-img-effect {
  position: relative;
  overflow: hidden;
  display: block;
}
.ks-img-effect img {
  display: block;
  margin: 0;
  width: 100%;
  height: auto;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: all 0.8s;
  -moz-transition: all 0.8s;
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
}
.ks-info-has {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 20px 15px 20px;
  opacity: 0;
  margin-bottom: -100px;
  z-index: 2;
}
.ks-info-has-text, .ks-info-has a {
  color: #fff;
}
.ks-info-has .ks-info-has-text {
  margin-bottom: 0px;
  line-height: 24px;
}
.ks-media {
  overflow: hidden;
  position: relative;
}
.ks-media:hover .ks-info-has {
  opacity: 1;
  width: 100%;
  margin-bottom: 0;
}
.form-group {
  margin-bottom: 25px;
}
.form-control {
  border-color: #e1e6eb;
  box-shadow: none;
  height: 40px;
  font-size: 13px;
  line-height: 20px;
  padding: 9px 12px;
}
textarea.form-control {
  height: auto;
}
.form-control:focus {
  border-color: #e1e1e1;
  outline: 0;
}
.form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.input-group {
  width: 100%;
}
.input-group .form-control {
  display: table-cell;
}
.site-header {
  position: relative;
  z-index: 99999;
}
.site-header ul {
  margin-bottom: 0;
}
.logo-header {
  display: table;
  float: left;
  vertical-align: middle;
  padding: 0;
  color: #EFBB20;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  width: 180px;
  height: 68px;
  position: relative;
  z-index: 9;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.logo-header > a {
  display: table-cell;
  vertical-align: middle;
}
.logo-header img {
  height: auto;
  width: 100%;
  max-width: 180px;
}
@media only screen and (max-width: 767px) {
  .logo-header {
    width: 135px;
    max-width: 135px;
    height: 50px;
  }
  .logo-header img {
    max-width: 135px;
  }
  .site-header .navbar-toggler, .site-header .is-fixed .navbar-toggler {
    margin: 18px 0 14px 10px;
  }
}
.main-bar {
  background: #FFFFFF;
  width: 100%;
  position: relative;
}
.navbar-toggler {
  border: 0 solid #efbb20;
  font-size: 16px;
  line-height: 24px;
  margin: 26px 0 18px 15px;
  padding: 0;
  float: right;
}
.navbar-toggler span {
  background: #666;
}
.header-nav {
  padding: 0;
}
.header-nav .nav {
  float: right;
}
.header-nav .nav i {
  font-size: 9px;
  margin-left: 3px;
  margin-top: -3px;
  vertical-align: middle;
}
.header-nav .nav > li {
  margin: 0px;
  font-weight: 400;
  position: relative;
}
.header-nav .nav > li > a {
  border-radius: 0px;
  color: #020d26;
  font-size: 16px;
  padding: 23px 17px 22px 17px;
  cursor: pointer;
  font-weight: 600;
  display: inline-block;
  position: relative;
}
.header-nav .nav > li > a:hover {
  background-color: transparent;
  color: #efbb20;
}
.header-nav .nav > li > a:active, .header-nav .nav > li > a:focus {
  background-color: transparent;
}
.header-nav .nav > li > a:after {
  content: "";
  height: 5px;
  background: var(--color-primary);
  width: 0;
  position: absolute;
  bottom: 0;
  right: -1px;
  transition: all 0.8s;
  -moz-transition: all 0.8s;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
}
.header-nav .nav > li:hover > a {
  color: var(--color-primary);
}
.header-nav .nav > li:hover > a:after {
  width: 100%;
  transform-origin: right;
  -moz-transform-origin: right;
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  -o-transform-origin: right;
  right: auto;
  left: 0;
}
.header-nav .nav > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.header-nav .nav > li > .sub-menu {
  box-shadow: 0px 1px 40px 0px rgba(0, 0, 0, 0.1);
}
.header-nav .nav > li .sub-menu {
  border-radius: 2px;
}
.header-nav .nav > li .sub-menu li {
  border-bottom: 0px solid #f4f4f4;
  position: relative;
}
.header-nav .nav > li .sub-menu li:hover > a {
  background-color: #DBEEFF;
  text-decoration: none;
}
.header-nav .nav > li .sub-menu li:hover > a {
  color: var(--color-primary);
}
.header-nav .nav > li .sub-menu li:last-child {
  border-bottom: 0px;
}
.header-nav .nav > li .sub-menu li .fas {
  color: inherit;
  display: block;
  float: right;
  font-size: 16px;
  opacity: 1;
}
.header-nav .nav > li .sub-menu li > .sub-menu {
  left: 220px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.header-nav .nav > li .sub-menu li:hover > .sub-menu {
  left: 220px;
  margin: 0px;
  opacity: 1;
  top: -1px;
  visibility: visible;
}
.header-nav .nav > li .sub-menu li:hover > .sub-menu:before {
  background-color: transparent;
  bottom: 0px;
  content: '';
  display: block;
  height: 100%;
  left: -6px;
  position: absolute;
  top: 0px;
  width: 6px;
}
.header-nav .nav > li .sub-menu li > a:after {
  background-color: var(--color-primary);
}
@media only screen and (max-width: 1200px) {
  .logo-header img {
    width: 1605px;
  }
  .logo-header {
    width: 160px;
    height: 65px;
  }
}
@media only screen and (max-width: 991px) {
  .header-nav .nav > li .sub-menu {
    border-radius: 0;
  }
  .header-nav .nav > li:hover > a:after {
    content: none;
  }
  .header-nav .nav > li .sub-menu li a:after {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    width: auto;
    height: auto;
    background: transparent !important;
    top: 1px;
    color: #000;
    font-size: 16px;
    position: absolute;
    left: 0;
  }
  .header-nav .nav > li .sub-menu:after {
    content: "";
  }
}
@media only screen and (max-width: 767px) {
  .header-nav .logo-header > a {
    width: 100%;
    display: block;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .logo-header {
    height: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .header-nav {
    clear: both;
    margin: 0 -15px;
    border-bottom: 1px solid #E9E9E9;
  }
  .header-nav .nav {
    float: none;
    margin: 0;
    background: #fff;
    width: 100%;
    display: block;
  }
  .header-nav .nav > li .sub-menu > li {
    float: none;
    display: block;
    width: auto;
  }
  .header-nav .nav > li:hover > ul, .header-nav .nav > li:hover .sub-menu, .header-nav .nav > li .sub-menu li > .sub-menu {
    opacity: 1;
    visibility: visible;
    display: block;
    margin: 0;
  }
  .nav.navbar-nav li a i.fa-chevron-down:before {
    content: "\f105";
  }
  .header-nav .nav > li ul, .header-nav .nav > li .sub-menu {
    background: transparent;
  }
  .header-nav .nav > li > .sub-menu {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    border-width: 0 0 1px 0;
  }
  .header-nav .nav > li > .sub-menu .sub-menu li a {
    padding: 2px 0 1px 30px;
  }
  .header-nav .nav > li > .sub-menu .sub-menu li a:hover {
    background-color: rgba(0, 0, 0, 0.1);
  }
  .header-nav .nav > li > .sub-menu .sub-menu li a:after {
    content: "\f111";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    width: auto;
    height: auto;
    background: transparent;
    top: 3px;
    color: #000;
    font-size: 5px;
    left: 15px;
  }
  .header-nav .nav > li .sub-menu li i.fa-angle-right:before {
    content: "\f105";
  }
  .header-nav .nav > li .sub-menu .sub-menu, .header-nav .nav > li:hover .sub-menu .sub-menu, .header-nav .nav > li:hover .sub-menu {
    display: none;
    opacity: 1;
    margin-top: 0;
  }
  .header-nav .nav li .sub-menu .sub-menu {
    display: none;
    opacity: 1;
    margin-top: 0;
  }
  .header-nav .nav > li .sub-menu li:hover > a {
    background-color: transparent;
    text-decoration: none;
  }
}
.header-nav .nav > li .sub-menu li a:hover {
  color: var(--color-primary);
}
.bnr-inr {
  height: 600px;
  background-size: cover;
  background-position: center center;
  display: table;
  width: 100%;
  text-align: center;
}
.navicon {
  width: 20px;
  height: 18px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  box-shadow: none !important;
}
.navicon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  border-radius: 1px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
.navicon span:nth-child(1) {
  top: 0px;
}
.navicon span:nth-child(2) {
  top: 7px;
}
.navicon span:nth-child(3) {
  top: 14px;
}
.navicon.open span:nth-child(1) {
  top: 7px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.navicon.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.navicon.open span:nth-child(3) {
  top: 7px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
/* For Mobile Menu */
@media screen and (max-width: 991px) {
  .mo-left .header-nav {
    overflow-y: scroll;
    position: fixed;
    width: 60px;
    left: -280px;
    height: 100vh !important;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    top: 0;
    background-color: #fff;
    margin: 0;
    z-index: 99;
  }
  .mo-left .header-nav li.open a {
    position: relative;
  }
  .header-nav {
    overflow-x: scroll;
    height: 100%;
  }
  .mo-left .header-nav.show {
    left: -1px;
    transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -o-transition: all 0.8s;
    margin: 0;
    width: 280px;
  }
  .mo-left .navbar-toggler.open:after {
    background-color: rgba(0, 0, 0, 0.6);
    content: "";
    height: 100%;
    left: 0;
    position: fixed;
    right: -20px;
    top: -63px;
    transform: scale(100);
    -o-transform: scale(100);
    -moz-transform: scale(100);
    -webkit-transform: scale(100);
    width: 100%;
    z-index: -1;
    transition: all 0.5s;
    transform-origin: top right;
    margin: 0 0px 0px 20px;
    -webkit-box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.6);
  }
  .mo-left .header-nav .logo-header {
    display: block;
    float: none;
    height: auto;
    max-width: 100%;
    padding: 30px 15px;
    width: 100%;
  }
  .mo-left .header-nav .logo-header img {
    max-width: unset;
    width: 160px;
    vertical-align: middle;
  }
  .mo-left .navbar-toggler.open span {
    background: #fff;
  }
}
.header-nav .nav > li:hover > .sub-menuu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.header-nav .nav > li > .sub-menu {
  box-shadow: 0px 1px 40px 0px rgba(0, 0, 0, 0.1);
}
.header-nav .nav > li .sub-menu {
  border-radius: 2px;
}
.header-nav .nav > li .sub-menu {
  background-color: #ffffff;
  display: block;
  left: 0;
  list-style: none;
  opacity: 0;
  padding: 5px 0;
  position: absolute;
  visibility: hidden;
  width: 220px;
  z-index: 10;
}
.header-nav .nav > li .sub-menu li {
  border-bottom: 0px solid #f4f4f4;
  position: relative;
}
.header-nav .nav > li .sub-menu li a {
  color: #000;
  display: block;
  font-size: 15px;
  padding: 8px 20px;
  text-transform: capitalize;
  transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  font-weight: 400;
}

.header-nav .nav > li .sub-menu.tight li a {
  padding: 5px 20px;
}

.header-nav .nav > li .sub-menu li:hover > a {
  background-color: #DBEEFF;
  text-decoration: none;
}
.header-nav .nav > li .sub-menu li:hover > a {
  color: var(--color-primary);
}
.header-nav .nav > li .sub-menu li:last-child {
  border-bottom: 0px;
}
.header-nav .nav > li .sub-menu li > .sub-menu.left, .header-nav .nav > li .sub-menu li:hover .sub-menu.left {
  left: auto;
  right: 220px;
}
.header-nav .nav > li .sub-menu li .fas {
  color: inherit;
  display: block;
  float: right;
  font-size: 16px;
  opacity: 1;
  margin-top: 5px;
}
.header-nav .nav > li .sub-menu li .fa.fa-nav {
  color: inherit;
  display: inline-block;
  float: none;
  font-size: 13px;
  margin-right: 5px;
  opacity: 1;
  position: unset;
  right: 10px;
  top: 12px;
}
.header-nav .nav > li .sub-menu li > .sub-menu {
  left: 220px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.header-nav .nav > li .sub-menu li:hover > .sub-menu {
  left: 220px;
  margin: 0px;
  opacity: 1;
  top: -1px;
  visibility: visible;
}
.header-nav .nav > li .sub-menu li:hover > .sub-menu:before {
  background-color: transparent;
  bottom: 0px;
  content: '';
  display: block;
  height: 100%;
  left: -6px;
  position: absolute;
  top: 0px;
  width: 6px;
}
@media only screen and (max-width: 1200px) {
  .header-nav .nav > li > a {
    padding: 22px 15px 22px 15px;
    font-size: 14px;
    font-weight: 500;
  }
  .extra-nav .site-button-link {
    font-size: 22px;
    line-height: 22px;
  }
  .logo-header img, .logo-footer img {
    width: 1605px;
  }
  .logo-header {
    width: 160px;
    height: 65px;
  }
}
@media only screen and (max-width: 991px) {
  .middle-bar {
    display: none;
  }
  .header-nav .nav > li .sub-menu {
    border-radius: 0;
  }
  .header-nav .nav > li:hover > a:after, .header-nav .nav > li.active > a:after {
    content: none;
  }
  .header-nav .nav > li .sub-menu li a {
    padding: 5px 0 0px 5px;
    display: block;
    font-size: 15px;
    line-height: 36px;
    position: relative;
  }
  .header-nav .nav > li .sub-menu li a:after {
    content: "";
    width: auto;
    height: auto;
    background: transparent !important;
    top: 1px;
    color: #000;
    font-size: 2px;
    position: absolute;
    left: 0;
  }
  .header-nav .nav > li .sub-menu:after {
    content: "";
  }
}
@media only screen and (max-width: 991px) {
  header .logo {
    display: block;
    padding: 4px 0;
  }
}
@media only screen and (max-width: 991px) {
  .header-nav {
    clear: both;
    margin: 0 -15px;
    border-bottom: 1px solid #E9E9E9;
  }
  .header-nav .nav {
    float: none;
    margin: 0;
    background: #fff;
    width: 100%;
    display: block;
  }
  .header-nav .nav > li {
    float: none;
    display: block;
    width: 100%;
    font-family: Poppins;
    padding: 0 25px 0 25px;
  }
  .header-nav .nav > li .sub-menu > li {
    float: none;
    display: block;
    width: auto;
  }
  .header-nav .nav > li > a {
    display: block;
    position: relative;
    border: 0;
    padding: 8px 0;
    font-size: 16px;
    line-height: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .header-nav .nav > li ul, .header-nav .nav > li .sub-menu {
    display: none;
    position: static;
    visibility: visible;
    width: auto;
    background: #f6f6f6;
    box-shadow: none;
  }
  .header-nav .nav > li:hover > ul, .header-nav .nav > li:hover .sub-menu, .header-nav .nav > li .sub-menu li > .sub-menu {
    opacity: 1;
    visibility: visible;
    display: block;
    margin: 0;
  }
  /* Mobile Responsive */
  .side-nav .nav.navbar-nav li a i.fa-chevron-down:before, .nav.navbar-nav li a i.fa-chevron-down:before {
    content: "\f105";
  }
  .side-nav .nav.navbar-nav li.open a i.fa-chevron-down:before, .nav.navbar-nav li.open a i.fa-chevron-down:before {
    content: "\f107";
  }
  .header-nav .nav > li ul, .header-nav .nav > li .sub-menu {
    background: transparent;
  }
  .header-nav .nav > li > .sub-menu {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    border-width: 0 0 1px 0;
  }
  .header-nav .nav > li > .sub-menu .sub-menu li a:hover {
    background-color: rgba(0, 0, 0, 0.1);
  }
  .header-nav .nav > li > .sub-menu .sub-menu li a:after {
    content: "";
    width: auto;
    height: auto;
    background: transparent;
    top: 3px;
    color: #000;
    font-size: 5px;
    margin-left: 0px;
  }
  .side-nav .nav.navbar-nav li a i.fa-chevron-down, .nav.navbar-nav li a i.fa-chevron-down, .nav.navbar-nav li a i.fa-angle-right {
    background-color: var(--color-primary);
    color: #ffffff !important;
    height: 30px;
    line-height: 30px;
    right: 0;
    text-align: center;
    width: 30px;
    z-index: 3;
    float: right;
    font-size: 20px;
    margin: 0;
  }
  .header-nav .nav > li .sub-menu li i.fa-angle-right:before {
    content: "\f105";
  }
  .header-nav .nav > li .sub-menu li.open i.fa-angle-right:before {
    content: "\f107";
  }
  .header-nav .nav > li .sub-menu .sub-menu, .header-nav .nav > li:hover .sub-menu .sub-menu, .header-nav .nav > li:hover .sub-menu, .header-nav .nav > li:hover .mega-menu {
    display: none;
    opacity: 1;
    margin-top: 0;
  }
  .header-nav .nav li .sub-menu .sub-menu {
    display: none;
    opacity: 1;
    margin-top: 0;
  }
  .header-nav .nav > li.open > .sub-menu .sub-menu {
    display: none;
  }
  .header-nav .nav > li.open > .sub-menu li.open .sub-menu, .header-nav .nav > li.open > .sub-menu {
    display: block;
    opacity: 1;
    margin-top: 0;
  }
  .header-nav .nav > li.open > .sub-menu li.open > a > i, .header-nav .nav > li.open > a > i {
    background: #313444;
  }
}
.owl-none .owl-nav {
  display: none;
}
.owl-theme .owl-nav, .owl-theme .owl-dots {
  margin-top: 20px;
  text-align: center;
}
.owl-theme .owl-nav .disabled {
  opacity: .5;
  cursor: default;
}
.owl-theme .owl-dots {
  text-align: center;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
 /*zoom: 1;*/
transform: scale(1);		
}
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #d6d6d6;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 200ms ease;
  -moz-transition: opacity 200ms ease;
  -ms-transition: opacity 200ms ease;
  -o-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}
.owl-theme.dots-style-1 .owl-dots .owl-dot span {
  background: rgba(0, 0, 0, 0.2);
  width: 10px;
  height: 10px;
  margin: 5px;
}
.owl-theme.dots-style-1 .owl-dots .owl-dot.active span, .owl-theme.dots-style-1 .owl-dots .owl-dot:hover span {
  background: rgba(0, 0, 0, 0.5);
}
.owl-btn-center-lr .owl-nav {
  margin: 0;
}
.owl-btn-center-lr + .owl-theme .owl-nav {
  margin: 0;
}
.owl-btn-center-lr .owl-nav .owl-prev, .owl-btn-center-lr .owl-nav .owl-next {
  position: absolute;
  left: 0;
  top: 50%;
  margin: 0;
  transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.owl-btn-center-lr .owl-nav .owl-next {
  left: auto;
  right: 0;
}
.owl-carousel .owl-item img {
  transform-style: inherit;
}
.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 1;
}
.owl-item {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1.0, 1.0);
}
.owl-btn-1 .owl-prev, .owl-btn-1 .owl-next {
  border-radius: 3px;
  height: 40px;
  line-height: 40px;
  margin: 0 10px !important;
  padding: 0;
  text-align: center;
  width: 40px;
}
#sync2 .owl-item.active.current .item img, #sync4 .owl-item.active.current .item img {
  outline: 5px solid rgba(255, 255, 255, 0.4);
  outline-offset: -9px;
}
#sync2 img, #sync4 img {
  cursor: pointer;
}
.content-box {
  position: relative;
  margin-bottom: 30px;
}
.models-box {
  margin-top: 0px;
  margin-bottom: 5px;
}
.content-box-text {
  margin-bottom: 15px;
}
.content-box-text p {
  font-size: 15px;
  line-height: 28px;
  font-weight: 400;
}
.content-box-text p:last-child {
  margin: 0;
}
.ks-info > div:last-child {
  margin-bottom: 0;
}
.blog-single .content-box-text {
  margin-top: 20px;
}
.list-1 li {
  float: left;
  padding: 5px 5px 5px 20px;
  width: 100%;
  position: relative;
  font-size: 15px;
}
.list-2 {
  display: table;
}
.list-2 li {
  float: left;
  padding: 5px 5px 5px 20px;
  width: 50%;
  position: relative;
}
.list-2 li:before {
  content: "\e60a";
  font-family: 'themify';
  font-size: 11px;
  left: 0;
  position: absolute;
}
.list-2 li:hover:before {
  color: var(--color-primary);
}
.widget {
  margin-bottom: 40px;
}
.widget_getintouch ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.widget_getintouch {
  padding-top: 10px;
}
.widget_getintouch li {
  margin-bottom: 20px;
  position: relative;
  padding-left: 40px;
}
.widget_getintouch i {
  position: absolute;
  left: 0;
  top: 5px;
  text-align: center;
  font-size: 22px;
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.btn, .panel, .form-control, .navbar-toggler, .nav-pills > li > a {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
a, .ks-box, .btn, .form-control, .ks-info-has, .navbar-toggler, .logo-header, .header-nav .nav > li > a {
  -webkit-transition: all 0.8s linear;
  -moz-transition: all 0.8s linear;
  -ms-transition: all 0.8s linear;
  -o-transition: all 0.8s linear;
  transition: all 0.8s linear;
}
.clearfix:after, .clearfix:before {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.faq-title {
  margin-bottom: 40px;
}
.faq-title h4 {
  font-weight: 600;
  font-size: 26px;
}
.sort-title {
  margin-bottom: 40px;
}
.sort-title h4 {
  font-weight: 600;
  font-size: 26px;
}
.sort-title h4:after {
  left: -195px;
}
.sort-title h4:after, .sort-title h4:before {
  background: #000 none repeat scroll 0 0;
  content: "";
  height: 1px;
  position: absolute;
  right: -195px;
  top: 50%;
  width: 180px;
  opacity: 0.25;
}
.sort-title h4 {
  display: inline-block;
  margin: 0;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .sort-title h4:after, .sort-title h4:before {
    content: none;
  }
}
.owl-prev, .owl-next {
  background-color: rgba(0, 0, 0, 0.2);
  border-color: rgba(0, 0, 0, 0);
  color: #ffffff;
  padding: 5px 8px;
  margin-left: 5px;
  margin-right: 5px;
  font-size: 13px;
  display: inline-block;
  cursor: pointer;
  border-width: 0px;
  border-style: solid;
}
.owl-prev:hover, .owl-prev:active, .owl-prev:focus, .owl-next:hover, .owl-next:active, .owl-next:focus {
  background-color: rgba(0, 0, 0, 0.2);
  border-color: rgba(0, 0, 0, 0);
  color: #ffffff;
}
.button-example .btn, .button-example .site-button {
  margin: 0 5px 10px 0;
  font-size: 15px;
}
.btn {
  -moz-user-select: none;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 4px;
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  padding: 8px 16px;
  text-align: center;
  transition: all 1s ease-in-out 0s;
  vertical-align: middle;
  white-space: nowrap;
}
.btn-secondary {
  background-color: #ffffff;
  border-color: #cccccc;
  color: #292b2c;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
}
.btn-secondary:active, .btn-secondary:focus, .btn-secondary:hover {
  background-color: #004780;
  border-color: #083A62;
}
.btn-check:focus + .btn-secondary, .btn-secondary:focus {
  color: #000;
  background-color: #fff;
  border-color: #cccccc;
  box-shadow: 0 0 0 0rem;
}
.btn-sm {
  border-radius: 3px;
  font-size: 14px;
  padding: 8px 12px;
}
.site-button, .site-button-secondry {
  color: #fff;
  padding: 11px 25px;
  display: inline-block;
  font-size: 15px;
  outline: none;
  cursor: pointer;
  border-width: 0;
  border-style: solid;
  border-color: transparent;
  line-height: 1.42857;
  border-radius: 3px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
}
.site-button {
  background-color: #0086f0;
}
.site-button-gold {
  background-color: #FFC85B !important;
  border-radius: 0px !important;
  font-weight: 600;

}
.site-button-gold:active, .site-button-gold:hover, .site-button-gold:focus {
  background-color: #fcaf17 !important;
}
.site-button:active, .site-button:hover, .site-button:focus {
  background-color: var(--color-hover);
  color: #fff;
}
.site-button-secondry {
  background-color: var(--color-secondry);
}
.site-button-secondry:active, .site-button-secondry:hover, .site-button-secondry:focus {
  background-color: #3c3e4e;
  color: #fff;
}
.button-md {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 500;
}
.radius-sm {
  border-radius: 4px;
  -webkit-border-radius: 4px;
}
.text-white .site-button.outline {
  color: #fff;
}
.site-button.outline {
  color: var(--color-primary);
  background: none;
  border-width: 1px;
  border-style: solid;
  border-color: inherit;
}
.site-button.outline-2 {
  border-width: 2px;
  background: rgba(0, 0, 0, 0.03);
}
.site-button.outline:hover {
  border-color: rgba(0, 0, 0, 0);
  color: #fff;
}
.site-button.outline {
  border-color: var(--color-primary);
}
.site-filters {
  margin-bottom: 30px;
}
.site-filters ul {
  margin: 0;
  list-style: none;
}
.site-filters li {
  display: inline-block;
  padding: 0;
  margin-bottom: 3px;
}
.site-filters li.btn {
  box-shadow: none;
  -webkit-box-shadow: none;
  outline: none !important;
}
.site-filters a {
  margin: 0 5px 5px 0;
}
.site-filters.style1 li a {
  color: #000316;
  font-weight: 400;
  margin: 0;
  padding: 0 15px;
  position: relative;
}
.site-filters.style1 li a:hover {
  color: #0086f0;
}
.site-filters.style1 li:last-child a:after {
  position: relative;
}
.site-filters.style1 li a:after {
  background-color: #000316;
  content: "";
  height: 100%;
  opacity: 0.2;
  position: absolute;
  right: -2px;
  top: 0;
  transform: skew(-20deg, -20deg);
  -moz-transform: skew(-20deg, -20deg);
  -webkit-transform: skew(-20deg, -20deg);
  -o-transform: skew(-20deg, -20deg);
  width: 2px;
}
.site-filters.style1 li.active a {
  color: var(--color-primary);
}
.ks-separator {
  display: inline-block;
  height: 2px;
  width: 80px;
  margin-bottom: 10px;
  position: relative;
}
.ks-divider {
  height: 1px;
  position: relative;
  margin: 30px 0;
}
.ks-divider.tb10 {
  margin: 10px 0;
}
.ks-divider i {
  position: absolute;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  display: block;
  border-radius: 100%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.list-check {
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none;
}

.list-check li:before {
  font-family: "themify";
  position: absolute;
  left: 0;
  top: 5px;
  display: block;
  font-size: 15px;
  color: #777;
}

ul[class*="list-"] {
  font-size: 15px;
}
.list-check li:before {
  content: "\e64c";
  color: #0086f0;
  font-weight: 900;
}
.white li:before {
  color: #fff;
}
.rounded[class*="list-"] li:before {
  background: #ffffff none repeat scroll 0 0;
  border-radius: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  width: 30px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
}
.rounded[class*="list-"] li:hover:before {
  transform: scale(1.5);
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -o-transform: scale(1.5);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.rounded[class*="list-"] li {
  padding: 10px 0 10px 45px;
}
.rounded[class*="list-"] li {
  padding: 10px 0 10px 45px;
}
.rounded.border {
  border: 0 !important;
}
.rounded.border[class*="list-"] li:before {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid;
  line-height: 28px;
}
.panel {
  box-shadow: none;
  -webkit-box-shadow: none;
}
.ks-accordian .panel {
  border: none;
  border-radius: 0;
  margin-bottom: -1px;
}
.acod-head {
  position: relative;
}
.acod-title {
  margin-top: 0;
  margin-bottom: 0;
}
.acod-head a {
  display: block;
  padding: 12px 40px 12px 25px;
  border: 0px solid #dddddd;
  border-radius: 0px;
	font-weight: 500;
}
.acod-bold .acod-head a {
	font-weight: 600 !important;
}
.acod-head a, .acod-head a:hover, .acod-head a.collapsed:hover {
  color: var(--color-primary);
}
.acod-head a.collapsed, .acod-head a.collapsed:after {
  color: #3d474a;
}
.acod-head a:after {
  font-family: "themify";
  content: "\e622";
  float: right;
  color: var(--color-primary);
  font-size: 16px;
  letter-spacing: -2px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.acod-head a.collapsed:after {
  content: "\e61a";
  font-size: 16px;
  font-family: "themify";
}
.acod-body {
  border-left: 0px solid #ebedf2;
  border-right: 0px solid #ebedf2;
  border-bottom: 0px solid #ebedf2;
  border-top: 0px solid transparent;
  margin-top: -1px;
  border-radius: 0 0 4px 4px;
}
.acod-content {
  margin: 20px;
}
.ks-accordian.space .panel {
  margin-bottom: 5px;
}
.ks-accordian.primary .acod-head a {
  background-color: var(--color-primary);
  color: #fff;
  border: 0;
}
.ks-accordian.primary .acod-head a:hover {
  color: #fff;
}
.ks-accordian.primary .acod-head a:after {
  color: #fff;
}
.ks-accordian.blue .acod-head a {
  background-color: #DBEEFF;
  color: #000;
  border: 0;
}
.ks-accordian.blue .acod-head a:hover {
  color: #000;
}
.ks-accordian.blue .acod-head a:after {
  color: #000;
}
.ks-accordian.blue.active-bg .acod-head .collapsed {
  background-color: #fff;
}
.ks-accordian.blue.active-bg .acod-head a.collapsed:after, .ks-accordian.blue.active-bg .acod-head .collapsed {
  color: #000;
}
.ks-accordian.blue.active-bg .acod-head .collapsed {
  border: none;
}

/*Tabs overview */
.dlab-tabs .tab-pane {
    padding: 20px 0;
}
.dlab-tabs .nav-tabs > li > a {
	background: #F1F1F1; 
    color: #3d474a;
    -webkit-border-radius: 0;
    border-radius: 0;
    font-size: 16px;
    font-weight: 600;
	margin-bottom: 10px;
	display: inline-block;
	padding: 10px 20px;
}


@media (max-width: 575px) {
.dlab-tabs .nav-tabs > li  {
	width: 100%!important;
	margin-bottom: 15px!important;
	margin-left: 0px;
	margin-right: 15px;
}
}

.tab-rule {
	border-bottom: 3px solid #F1F1F1;
	margin-top: 0px;
	margin-right: 5%;
	margin-left: 5%;
	margin-bottom: 5px;
}
		
/* Tabs Style Button  */
.tabs-site-button .nav-tabs{
	border:0;
	width: 100%;
}
.tabs-site-button .nav-tabs li a{
	padding: 12px 25px;
	margin: 0 10px;
	background: #ECEEF0;
    border: 0 none;
	width: 100%;
	text-align: center;
}
@media (max-width: 1119px) {
.tabs-site-button .nav-tabs li a{
	padding: 12px 12px;
	margin: 0 10px;
}
}
@media (max-width: 991px) {
.tabs-site-button .nav-tabs li a{
	padding: 12px 12px;
	margin: 0 5px;
}
}

@media (max-width: 767px) {
.dlab-tabs .nav-tabs > li  {
	margin-bottom: 15px!important;
	margin-left: 0px!important;
	margin-right: 0px!important;
	align-content:center;
}
}
.tabs-site-button .nav-tabs li a:hover,
.tabs-site-button .nav-tabs li a:focus{
	background-color: #DBEEFF;
    border: 0 none;
}
.tabs-site-button .nav-tabs li a.active:focus,
.tabs-site-button .nav-tabs li a.active:hover,
.tabs-site-button .nav-tabs li a.active{
	background-color: #0086f0;
	color:#fff !important;
    border: 0 none;
}
@media only screen and (max-width: 767px) {
	.tabs-site-button .nav-tabs li a{
		padding: 13px 20px;
	}	
}


.nav-tabs {
	border-width: 0px;
}
.text-6 {
  font-size: 1.80em !important;
	font-weight: 600;
}
.line-height-4 {
	line-height: 1.4 !important;
}
.shield-icon-text a {
	font-size: 17px;
	color: #0086f0!important;
}
.shield-icon-text a:hover {
	font-size: 17px;
	color: #004780!important;
}
.card {
	border: none !important;
}
.shield-icons {
  width: 85%;
}

.line-height-5 {
	line-height: 1.5 !important;
}

@media (max-width: 575px) {
	.shield-icon-text {
	font-size: 22px;
}
	.shield-icons {
  	width: 65%;
}
}
@media (max-width: 575px) {
.tabs.tabs-bottom .nav-tabs li .nav-link {
	font-size: 15px;
	line-height: 20px;
}
.tabs.tabs-bottom .nav-tabs li .nav-link:hover, .tabs.tabs-bottom .nav-tabs li .nav-link:focus {
	font-size: 15px;
	line-height: 20px;
}
}
@media (max-width: 414px) {
.tabs.tabs-bottom .nav-tabs li .nav-link {
	font-size: 13px;
	line-height: 18px;
}
.tabs.tabs-bottom .nav-tabs li .nav-link:hover, .tabs.tabs-bottom .nav-tabs li .nav-link:focus {
	font-size: 13px;
	line-height: 18px;
}
}

@media (max-width: 768px) {
	.col-md-5-5 {
		flex: 0 0 100%;
		max-width: 100%;
		position: relative;
	}
}
@media (min-width: 575px) {
	.col-sm-5-5 {
		flex: 0 0 50%;
		max-width: 50%;
		position: relative;
	}
}
@media (min-width: 992px) {
	.col-lg-1-5 {
		flex: 0 0 20%;
		max-width: 20%;
		padding-left: 10px;
		padding-right: 10px;
		position: relative;
	}
}


.testimonial-pic {
  background: #FFF;
  width: 100px;
  height: 100px;
  position: relative;
  display: inline-block;
  border: 5px solid #FFF;
}
.quote-right {
  position: relative;
}
.quote-right:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  position: absolute;
  z-index: 10;
  top: 15px;
}
.quote-right:after {
  content: "\f10e";
  left: auto;
  right: 0;
}
.testimonial-text {
  padding: 15px;
  position: relative;
  font-size: 15px;
  font-weight: 400;
}
.testimonial-detail {
  padding: 5px;
}
.testimonial-name {
  font-size: 18px;
  font-weight: 500;
}
.testimonial-position {
  font-size: 14px;
}
.testimonial-name, .testimonial-position {
  display: block;
}
.testimonial-text p:last-child {
  margin: 0;
}
.testimonial-4 {
  background-color: #6AACF4;
  position: relative;
  padding: 30px 40px 30px 10px;
  margin-left: 140px;
  min-height: 150px;
}
.testimonial-4:after {
  background-color: #6AACF4;
  border-left-width: 6px;
  border-left-style: solid;
  border-left-color: #00478;
  border-color: #004780;
  content: "";
  position: absolute;
  left: -80px;
  top: 0;
  height: 100%;
  width: 80%;
  z-index: -1;
  -moz-transform: skewX(-25deg);
  -webkit-transform: skewX(-25deg);
  -o-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.testimonial-4 .testimonial-pic {
  position: absolute;
  top: 30px;
  left: 0;
  margin-left: -110px;
}
.testimonial-4 [class*="quote-"] {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px;
  border-color: #004780;
  border-top-color: transparent !important;
  border-left-color: transparent !important;
}
.testimonial-4 [class*="quote-"]:after, .testimonial-4 [class*="quote-"]:before {
  top: 0;
  right: -20px;
  font-size: 20px;
  color: #fff;
}
.testimonial-4 .testimonial-text, .testimonial-4 .testimonial-detail {
  padding: 0;
}
.testimonial .testimonial-text {
  margin-bottom: 10px;
}
.testimonial-4 .testimonial-name, .testimonial-4 .testimonial-position {
  display: inline-block;
}
.testimonial-4 .testimonial-name:after {
  content: "/";
  color: #fff;
  margin: 0 2px 0 5px;
}
.testimonial-4 .testimonial-name {
  text-transform: uppercase;
}
.testimonial .testimonial-position {
  font-style: italic;
  color: #fff;
}
.testimonial-4 .testimonial-pic {
  border-color: var(--color-yellow);
  border-width: 3px;
  width: 90px;
  height: 90px;
}
@media only screen and (max-width: 480px) {
  .testimonial-4 .testimonial-pic {
    height: 80px;
    width: 80px;
  }
  .testimonial-4:after {
    transform: skewX(-10deg);
    -moz-transform: skewX(-10deg);
    -webkit-transform: skewX(-10deg);
    -o-transform: skewX(-10deg);
  }
  .testimonial-4 {
    padding: 25px 10px 25px 0px;
    margin-left: 110px;
  }
}
.EZ > thead > tr > td, .EZ > thead > tr > th {
  padding-top: 5px;
  padding-bottom: 5px;
  border-bottom: none;
  line-height: 14px;
  color: #fff !important;
}
.table > tbody > tr > td, .table > tbody > tr > th, .table > thead > tr > td, .table > thead > tr > th {
  padding: 10px;
}
.overlay-primary-light {
  position: relative;
}
.overlay-primary-light:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.overlay-primary-light:after {
  opacity: 0.3;
}
.overlay-primary-light .container {
  position: relative;
  z-index: 1;
}
.border-1 {
  border-style: solid;
}
.border-1 {
  border-width: 1px;
}
.icon-sm {
  display: inline-block;
  text-align: center;
}
.icon-sm {
  width: 40px;
}
.icon-sm i {
  vertical-align: middle;
}
.icon-sm i {
  font-size: 30px;
}
.icon-how img {
  height: 120px;
  padding-bottom: 20px;
}
.service-box.style3 .icon-bx-wrapper {
  padding: 30px;
  background: #fff;
  margin-bottom: 30px;
  box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.05);
  z-index: 1;
}
.service-box.style3 .ks-title {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
  line-height: 30px;
}
.icon-bx-wrapper {
  position: relative;
}
.icon-bx-wrapper .ks-title {
  margin-top: 0;
}
.icon-bx-wrapper p:last-child {
  margin: 0;
}
.icon-content {
  overflow: hidden;
}
.easy-install li {
  color: white;
  margin-left: 15px;
}
.install-wrapper {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 15px;
  border-radius: 10px;
  color: #fff;
}
.icon-bx-wrapper.center {
  text-align: center;
}
.icon-bx-wrapper.bx-style-1 {
  border-width: 1px;
  border-style: solid;
  border-color: #ebedf2;
  font-size: 15px;
}
.ks-box, .ks-info, .ks-title {
  position: relative;
}
.ks-box[class*="border-"] {
  border-color: #eee;
}
.ks-media img {
  width: 100%;
  height: auto;
}
footer h4 {
  color: #b0b0b0;
}
footer p, footer {
  color: #fff;
}
footer a, footer a:visited {
  color: #fff;
}
footer a:active, footer a:focus, footer a:hover {
  color: #0086f0;
}
footer p {
  margin-bottom: 10px;
}
footer p, footer li {
  font-size: 14px;
  line-height: 22px;
}
footer .list-1 li {
  line-height: 32px;
}
footer p {
  line-height: 24px;
  margin-bottom: 10px;
}
footer .widget ul {
  list-style: none;
  margin-top: 5px;
}
.footer-top {
  background: #1C1C1C;
  background-size: cover;
  background-position: center;
  padding: 80px 0 20px;
}
.footer-title {
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .footer-title {
    margin-bottom: 15px;
  }
}
button.scrollTop {
  background: #0086f0;
  border-color: #0086f0;
  border-radius: 4px;
  border-style: solid;
  border-width: 0;
  bottom: 15px;
  color: #fff !important;
  cursor: pointer;
  display: none;
  height: 50px;
  line-height: 50px;
  margin: 0;
  position: fixed;
  right: 15px;
  text-align: center;
  width: 50px;
  z-index: 999;
  box-shadow: -4px 4px 24px -10px;
  transition: all 0.8s;
  -moz-transition: all 0.8s;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
}
.page-wrapper {
  background: #F8F8F8;
}
.page-content {
  margin-top: 0;
  padding-bottom: 50px;
}
.section-full {
  position: relative;
}
.section-full:last-child {
  margin-bottom: -50px;
}

.section-head h2 {
  margin-top: 0;
}
.section-head p {
  padding-top: 10px;
  font-size: 15px;
  color: #494949;
}
.text-center.section-head p {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
}
.text-white {
  color: #FFF;
}
.text-white h2, .text-white h3, .text-white h4, .text-white p {
  color: #FFF;
}
@media only screen and (max-width: 1024px) {
  .section-full {
    background-attachment: scroll !important;
  }
}
@media only screen and (max-width: 991px) {
  .page-content {
    margin-top: 0;
  }
}
#bg {
  background-attachment: fixed;
  background-size: cover;
}
.quick-link-box {
  border: 10px solid rgba(0, 0, 0, 0.1);
}
.quick-link-img {
  width: 40%;
  background-color: #0086f0;
}
.quick-link-info-box {
  width: 60%;
}
.quick-link-info-box {
  padding: 10px 10px 5px 20px;
}
.quick-link-img, .quick-link-info-box {
  display: table-cell;
  vertical-align: middle;
}
.quick-link-box, .quick-link-info-box {
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .quick-link-img, .quick-link-info-box {
    width: 100%;
    display: block;
  }
}
.faq-link-box {
  border: 30px solid #fff;
}
.faq-link-img {
  width: 15%;
  background-color: #0086f0;
}
.faq-link-info-box {
  width: 85%;
  background-color: #DEEEFA;
}
.faq-link-info-box {
  padding: 10px 10px 5px 20px;
}
.faq-link-img, .faq-link-info-box {
  display: table-cell;
  vertical-align: middle;
}
.faq-link-box, .faq-link-info-box {
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .faq-link-info-box {
    width: 100%;
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .faq-link-img {
    width: 25%;
    display: block;
    margin: auto;
  }
}
@media only screen and (max-width: 767px) {
  .faq-link-box {
    border: 20px solid #fff;
  }
}

.install-img {
  width: 35%;
  background-color: #fff;
}
.install-img img {
  border: 1px solid #000;
}
.download-img img {
  border: 1px solid #fff !important;
}
.brochure-img {
  width: 35%;
  background-color: #fff;
}
.brochure-img img {
  border: none !important;
}
.install-info-box {
  width: 65%;
  padding-left: 12px;
  padding-right: 5px;
}
.install-info-box h6 {
  font-size: 15px;
  line-height: 20px;
}
.download a {
  line-height: 17px;
}
.download-link {
	margin-top: -3px;
}
.install-img, .install-info-box, .brochure-img {
  display: table-cell;
  vertical-align: middle;
}
.install-box-type, .install-info-box {
  overflow: hidden;
}
.item-review {
  margin: auto;
  padding: 0;
  list-style: none;
}
.item-review li {
  display: inline-block;
  font-size: 15px;
}
.item-widgets-box, .item-widgets-body {
  overflow: hidden;
}
.item-widgets-body {
  width: 65%;
}
.item-widgets-box {
  margin-top: 15px;
}
.item-widgets-left {
  padding-right: 15px;
	width: 35%;
}

.item-widgets-left, .item-widgets-body {
  display: table-cell;
  vertical-align: middle;
}
.item-widgets-body .item-title {
  font-size: 15px;
}

@media only screen and (max-width: 1200px) {
  .item-widgets-body {
  width: 60%;
}
	.item-widgets-left {
	width: 40%;
}
}

@media only screen and (max-width: 991px) {
  .item-widgets-box {
    width: 24%;
    display: inline-block;
    padding: 10px;
    background-color: #DBEEFF;
	  height: 110px;
  }
  .ks-separator {
    display: inherit;
  }
  .item-widgets-body {
    padding-left: 5px;
  }
  .item-widgets-left {
    display: none;
  }
  .item-widgets-body .item-title {
    font-size: 14px;
  }
}
@media only screen and (max-width: 465px) {
  .item-widgets-body {
    padding-left: 0px;
  }
  .item-widgets-body .item-title {
    font-size: 14px;
	  
  }
}
.product-gallery.on-show-slider {
  position: relative;
}
@media only screen and (max-width: 991px) {
  .product-gallery {
    width: 80%;
    margin: auto;
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .product-gallery {
    width: 90%;
    margin: auto;
    padding-bottom: 50px;
  }
}
.download-file ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.download-file ul li {
  display: block;
  margin-bottom: 10px;
}
.download-file ul li a {
  background: #e0e0e0 none repeat scroll 0 0;
  color: #000000;
  display: block;
  padding: 15px 20px;
}
.site-footer .widget_getintouch {
  padding-top: 0;
}
.content-inner {
  padding-top: 80px;
  padding-bottom: 50px;
}
.content-inner-7 {
  padding-top: 100px;
  padding-bottom: 50px;
}
.content-inner-1 {
  padding-top: 80px;
  padding-bottom: 0px;
}
.content-inner-2 {
  padding-top: 80px;
  padding-bottom: 80px;
}
.content-inner-4 {
  padding-top: 40px;
  padding-bottom: 70px;
}
.content-inner-5 {
  padding-top: 80px;
  padding-bottom: 20px;
}
.content-inner-6 {
  padding-top: 40px;
  padding-bottom: 10px;
}
.content-inner-8 {
  padding-top: 50px;
  padding-bottom: 50px;
}
.dis-tbl {
  display: table;
}
.img-cover {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  height: 100%;
}
.row.spno, .spno {
  margin-left: 0;
  margin-right: 0;
}
.row.spno [class*="col-"], .spno [class*="col-"] {
  padding-left: 0;
  padding-right: 0;
}
@media only screen and (max-width: 767px) {
  .page-content {
    padding-bottom: 30px;
  }
  .footer-top {
    padding-top: 40px;
  }
  .site-footer .widget {
    margin-bottom: 25px;
  }
  .section-full:last-child {
    margin-bottom: -30px;
  }
  .content-inner {
    padding-bottom: 20px;
    padding-top: 30px;
  }
  .content-inner-1 {
    padding-top: 30px;
    padding-bottom: 0px;
  }
  .content-inner-2 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .section-head {
    margin-bottom: 25px;
  }
  .section-head p {
    padding-top: 0;
  }
  .content-box-title .content-title {
    margin-top: 10px;
  }
}
.owl-btn-1.primary .owl-prev, .owl-btn-1.primary .owl-next {
  background-color: #0086f0;
}
.owl-btn-1.primary .owl-prev:hover, .owl-btn-1.primary .owl-next:hover {
  background-color: var(--color-hover);
}
@media screen and (max-width: 991px) {
  .mo-left .header-nav {
    overflow-y: scroll;
    position: fixed;
    width: 60px;
    left: -280px;
    height: 100vh !important;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    top: 0;
    background-color: #fff;
    margin: 0;
    z-index: 99;
  }
  .header-nav {
    overflow-x: scroll;
    height: 100%;
  }
  .mo-left .header-nav .logo-header {
    display: block;
    float: none;
    height: auto;
    max-width: 100%;
    padding: 30px 15px;
    width: 100%;
  }
  .mo-left .header-nav .logo-header img {
    max-width: unset;
    width: 160px;
    vertical-align: middle;
  }
}
.our-story > span {
  color: #0086f0;
  font-size: 22px;
  display: block;
  margin-bottom: 10px;
}
.our-story p {
  font-size: 15px;
  line-height: 30px;
  color: #000;
}
.section-head .title {
  margin-bottom: 5px;
  font-size: 35px;
  line-height: 45px;
  font-weight: 600;
}
@media only screen and (max-width: 1200px) {
  .contact-no-area .title {
    line-height: 65px;
    margin-bottom: 20px;
    font-size: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .contact-img-bx img {
    position: unset;
    display: none;
  }
  .service-box.style3 .ks-title {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 576px) {
  .contact-no-area .title {
    line-height: 45px;
    margin-bottom: 20px;
    font-size: 35px;
  }
}
.btnhover13::after {
  background-color: var(--color-hover);
}
.product-list ul {
  margin-bottom: 0px;
}
.product-list ul li {
  line-height: 20px;
}
.product-list-components ul li {
  line-height: 28px;
}
.product-list p {
  line-height: 16px;
  margin-bottom: 5px;
  font-weight: 700;
}
.product-list.noa p {
  line-height: 16px;
  margin-bottom: 5px;
  font-weight: 400;
}
.product-list .ks-divider {
  height: 1px;
  margin: 15px 0 15px 0;
}
.product-list .list-check li {
  padding: 5px 5px 0px 25px;
	position: relative;
}
.product-type {
  font-size: 20px;
  font-weight: 400;
  color: #6f6f6f;
}
.quality-logos img {
  width: 60%;
}
.fbc-img img {
  width: 80%;
}
.md-img img {
  width: 90%;
}
.certification-logos img {
  width: 80%;
}
.certification-logos-2 img {
  width: 85%;
}

.blue-nav {
  background-color: #fff;
  width: 100%;
  z-index: 2;
  font-size: 13px;
  font-weight: 600;
  margin: auto;
	text-transform: uppercase;
}
.blue-nav a {
  color: #fff;
  padding-top: 5px;
  padding-bottom: 5px;
}
.blue-nav a:hover {
  background-color: #015191;
  color: #fff;
}
.blue-nav a:focus {
  color: #fff;
}

.blue-nav .nav-pills .nav-link.active {
  color: #fff;
  background-color: #0164B4;
  border-radius: 0rem;
}


.second-nav {
  margin-top: 65px;
  background-color: #0086f0;
  width: 100%;
  position: fixed;
  z-index: 2;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}
.second-nav a {
  color: #fff;
  padding-top: 8px;
  padding-bottom: 8px;
}
.second-nav a:hover, .second-nav a:active {
  color: #fff;
  background-color: #0072CC !important;
}
.second-nav a:focus {
  color: #fff;
	background-color: #0072CC !important;
}

@media only screen and (max-width: 991px) {
  .second-nav {
    margin-top: 60px;
    font-size: 12px;
  }	
}
@media only screen and (max-width: 767px) {
  .second-nav {
    margin-top: 60px;
    font-size: 12px;
  }	
}
@media only screen and (max-width: 575px) {
.second-nav a {
  padding-top: 5px;
  padding-bottom: 3px;
	font-size: 12px;
}	
}
.acc-nav {
  background-color: #fff;
  width: 100%;
  z-index: 2;
  font-size: 14px;
  font-weight: 600;
  margin: auto;
	text-transform: uppercase;
}
.acc-nav a {
  color: #000;
  padding-top: 8px;
  padding-bottom: 8px;
}
.acc-nav a:hover {
  background-color: #EBEBEB;
  color: #000;
  padding-top: 8px;
  padding-bottom: 8px;
}
.acc-nav a:focus {
  color: #000;
  padding-top: 8px;
  padding-bottom: 8px;
}
.nav-pills .nav-link {
  border-radius: 0rem;
}
.acc-nav .nav-pills .nav-link.active {
  color: #fff;
  background-color: #0086f0;
  border-radius: 0rem;
}
.faq-nav {
  background-color: #fff;
  width: 100%;
  z-index: 2;
  font-size: 15px;
  font-weight: 400;
  margin: auto;
}
.faq-nav a {
  color: #000;
  padding-top: 8px;
  padding-bottom: 8px;
}
.faq-nav a:hover {
  background-color: #F4F4F4;
  color: #000;
  padding-top: 8px;
  padding-bottom: 8px;
}
.faq-nav a:focus {
  color: #000;
  padding-top: 8px;
  padding-bottom: 8px;
}
.parts-number {
  font-size: 75px;
  color: #0086f0;
  line-height: 45px;
  padding-top: 10px;
}
.parts-number-sm {
  font-size: 60px;
  color: #0086f0;
  line-height: 15px;
}
.parts-number-2 {
  width: 15%;
}
.content-box-text-sm p {
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
}
.how-many .table > :not(caption) > * > * {
  border-bottom-width: 0px;
}
.how-many .table td {
  border-top: 0;
}
.table-blue {
  background-color: #DBEEFF;
}
.table-blue-2 {
  background-color: #BBDCFA;
}
.site-header {
  position: fixed;
	top: 0;
  z-index: 99999;
  width: 100%;
}
.cfm {
  font-size: 13px;
  line-height: 16px;
}
.table-black {
  background-color: #000000 !important;
  border: 4px solid #fff;
  color: #fff;
}
.table-yellow {
  background-color: #ffd11d !important;
  border: 4px solid #fff;
}
.table-gray {
  background-color: #D8D8D8 !important;
  padding: 15px;
}
.table-yellow-lt {
  background-color: #F7ECBF !important;
  border: 4px solid #fff;
}
.table-orange {
  background-color: #F79913 !important;
  border: 4px solid #fff;
}
.table-orange-lt {
  background-color: #F8E0BC !important;
  border: 4px solid #fff;
}
.blue-rule {
  border: 4px solid #0086f0;
}
.blue-rule > tbody > tr > td, .table > thead > tr > th {
  padding-bottom: 5px !important;
}
.table-lt-blue {
  background-color: #C6E0F5 !important;
}
.font-36 {
  font-weight: 600;
  font-size: 36px;
  line-height: 42px;
}
.sidebar-blue {
  background-color: #DBEEFF;
  padding: 0px 20px 30px 20px;
  margin-top: 10px;
  text-align: center;
	
}
.sidebar-blue img {
  width: 90%;
}


@media only screen and (max-width: 991px) {
  .sidebar-blue img {
  width: 70%;
}
.sidebar-blue {
  padding-left: 150px;
  padding-right: 150px;
  }
}
@media only screen and (max-width: 767px) {
  .sidebar-blue {
  padding-left: 80px;
  padding-right: 80px;
  }
  .sidebar-blue img {
  width: 60%;
}
}
.top-banner {
  margin-left: -30px !important;
  margin-right: -30px !important;
}
.top-banner img {
  margin-top: 65px !important;
}
.text-dropshadow {
  text-shadow: 0px 0px 6px #615B5E;
}
.banner-box {
  padding: 35px;
  margin-top: 40px;
  align-self: center;
  align-items: center;
  flex-wrap: wrap;
  display: flex;
  height: 100%;
}
.home-logo img {
	width: 240px !important;
}
/*! skin-4.css */ :root {
  --color-primary: #0086f0;
  --color-secondry: #004780;
  --color-hover: #0073ce;
  --color-yellow: #fcaf17;
  --rgba-primary-1: rgba(0, 134, 240, 0.1);
  --rgba-primary-2: rgba(0, 134, 240, 0.2);
  --rgba-primary-3: rgba(0, 134, 240, 0.3);
  --rgba-primary-4: rgba(0, 134, 240, 0.4);
  --rgba-primary-5: rgba(0, 134, 240, 0.5);
  --rgba-primary-6: rgba(0, 134, 240, 0.6);
  --rgba-primary-7: rgba(0, 134, 240, 0.7);
  --rgba-primary-8: rgba(0, 134, 240, 0.8);
  --rgba-primary-9: rgba(0, 134, 240, 0.9);
  --text-sec: #2d3239;
}
/*!templete.css */
.bg-img-fix {
  background-size: cover;
}
.text-gray-dark {
  color: #9a9a9a;
}
.owl-none .owl-nav {
  display: none;
}
.overlay-primary-light:after {
  background: var(--color-primary);
  background: -moz-linear-gradient(45deg, var(--color-primary) 8%, var(--color-hover) 100%);
  background: -Winkit-linear-gradient(45deg, var(--color-primary) 8%, var(--color-hover) 100%);
  background: linear-gradient(45deg, var(--color-primary) 8%, var(--color-hover) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='var(--color-primary)', endColorstr='#ff9314', GradientType=1);
}
.dis-tbl {
  display: table;
}
.title-box {
  font-weight: 500;
}
.inquiry-form .form-control {
  border-width: 1px;
  font-size: 15px;
}
.inquiry-form {
  box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.05);
  margin-top: 0;
  height: 100%;
  background: #fff;
  padding: 15px 30px 30px 30px;
  border-radius: 4px;
}
.icon-bx-wrapper.expertise {
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.01);
}
@media only screen and (max-width: 1024px) {
  .inquiry-form {
    padding: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .inquiry-form {
    padding: 20px;
  }
}
.service-box.style2 {
  padding: 60px;
  align-self: center;
  align-items: center;
  flex-wrap: wrap;
  display: flex;
  height: 100%;
}
.service-box.style2 .title {
  font-size: 45px;
  line-height: 55px;
  font-weight: 700;
}
.service-box.style3 .icon-bx-wrapper::before {
  content: attr(data-name);
  position: absolute;
  font-size: 100px;
  right: 30px;
  top: 30px;
  line-height: 80px;
  font-weight: 700;
  color: #000;
  opacity: 0.05;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.contact-no-area .title {
  margin-top: 0;
  font-size: 60px;
  color: #fff;
  font-weight: 500;
  line-height: 80px;
  margin-bottom: 40px;
}
.contact-no-area-2 .title {
  margin-top: 100px;
  font-size: 60px;
  color: #fff;
  font-weight: 500;
  line-height: 80px;
  margin-bottom: 40px;
}
.contact-img-bx img {
  width: 100%;
  position: absolute;
  right: 0;
  bottom: -80px;
}
.site-footer.style1 .footer-top {
  background: #002B4B;
  background-size: cover;
  background-position: center;
  padding: 45px 0 0 0;
}
.site-footer.style1 .footer-title {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  padding-bottom: 20px;
  margin-bottom: 30px;
  position: relative;
  color: #fff;
}
.site-footer.style1 .footer-title:after {
  content: "";
  background: #fcaf17;
  width: 40px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.site-footer.style1 .widget_about p {
  margin-bottom: 20px;
}
.site-footer.style1 .widget.widget_about p {
  font-size: 15px;
  line-height: 28px;
}
.download-file {
  background: #fff;
  padding: 25px 25px 20px 20px;
  border: 2px solid var(--color-primary);
  border-radius: 4px;
}
.download-file ul li a {
  background: var(--color-primary);
  color: #fff;
  display: block;
  margin-bottom: 10px;
  border-radius: 4px;
  width: 100%;
  padding: 15px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.download-file ul li a .text {
  display: inline;
  position: relative;
  margin-right: 3px;
}
.download-file ul li a:hover {
  background: #004780;
}
.download-file .title {
  color: #777777;
  margin-top: 0;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}
.list-details li {
  color: #000;
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}
.list-details li:first-child {
  border-top: 0;
}
.list-details {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 760px;
}
.latest-project-info {
  padding: 100px 130px;
}
.latest-project-info h2 {
  font-size: 50px;
  line-height: 60px;
}
.latest-project-info p {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
}
@media only screen and (max-width: 1024px) {
  .service-box.style2 {
    padding: 30px;
  }
  .service-box.style2 .title {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 15px;
  }
  .quick-link-box .quick-link-img {
    width: 40%;
  }
  .quick-link-box .quick-link-info-box h4.ks-title {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .quick-link-box .quick-link-info-box {
    padding: 10px 15px;
  }
}
@media only screen and (max-width: 991px) {
  .quick-link-box .quick-link-info-box {
    padding: 10px 30px;
  }
  .quick-link-box .quick-link-info-box h4.ks-title {
    font-size: 22px;
    margin-bottom: 12px;
  }
  .our-story-thum {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .quick-link-img, .quick-link-info-box {
    display: table-cell;
  }
  .quick-link-box .quick-link-info-box h4.ks-title {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .quick-link-box .quick-link-info-box {
    padding: 15px 20px;
  }
}
@media only screen and (max-width: 360px) {
  .service-box.style2 .title {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 10px;
  }
  .site-footer.style1 .footer-top {
    padding: 50px 0 25px 0;
  }
  .site-footer.style1 .footer-title {
    padding-bottom: 15px;
    margin-bottom: 25px;
  }
  .our-story > span {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .section-head .title {
    font-size: 28px;
    line-height: 38px;
  }
  .section-head p {
    line-height: 26px;
  }
  .quick-link-box .quick-link-img {
    width: 100%;
    display: unset;
  }
  .sort-title {
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 591px) {
  .form-group {
    margin-bottom: 10px;
  }
}
.latest-project-info.style1 {
  padding: 70px 70px 10px;
}
.latest-project-info.style1 .list-check li p {
  font-size: 16px;
}
.latest-project-info.style1 .list-check li:before {
  top: 20px;
}
@media only screen and (max-width: 1200px) {
  .list-check.list-2.rounded.border[class*="list-"] li {
    padding: 10px 20px 10px 45px;
  }
}
@media only screen and (max-width: 991px) {
  .latest-project-info {
    padding: 50px;
  }
  .latest-project-info.style1 {
    padding: 50px 50px 0px;
  }
}
@media only screen and (max-width: 767px) {
  .contact-no-area .title {
    font-size: 36px;
    line-height: 50px;
    margin-bottom: 20px;
  }
  .latest-project-info.style1 {
    padding: 30px 30px 0px;
  }
  .list-check.list-2.rounded.border[class*="list-"] li {
    width: 100%;
  }
}
@media only screen and (max-width: 591px) {
  .contact-no-area .title {
    font-size: 26px;
    line-height: 40px;
    margin-bottom: 10px;
  }
  .latest-project-info {
    padding: 30px;
  }
  .latest-project-info h2 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 991px) {
  .header-nav .nav > li:focus > a, .header-nav .nav > li:active > a, .header-nav .nav > li:hover > a {
    color: #313444 !important;
  }
}
@media only screen and (max-width: 767px) {
  .contact-action {
    padding: 50px 0 20px;
  }
  .contact-action.style2 {
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 591px) {
  .contact-action {
    padding: 30px 0 0;
  }
  .contact-action.style2 {
    padding-bottom: 30px;
  }
  .inquiry-form .form-control {
    font-size: 14px;
  }
  .inquiry-form .form-group {
    margin-bottom: 15px;
  }
}
[type=button]:focus {
  outline: 0;
}
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
@media only screen and (max-width: 991px) {
  .header-nav .nav > li ul, .header-nav .nav > li .sub-menu {
    background: transparent !important;
  }
}
@media only screen and (max-width: 767px) {
  .site-filters {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 591px) {
  .service-box.style3 .icon-bx-wrapper {
    padding: 35px 30px;
  }
}
::-moz-selection {
  color: #fff;
}
::selection {
  color: #fff;
}
.part-number-info-box {
  width: 95%;
}
.part-number-info-box {
  padding-left: 20px;
}
.part-number-info-box {
  display: table-cell;
  vertical-align: middle;
}
.part-number-icon {
  display: table-cell;
  vertical-align: top;
  padding-left: 10px;
  width: 10%;
  padding-top: 18px;
}
.install-steps p {
  line-height: 22px;
  margin-top: 0px;
  margin-bottom: 10px;
}
.overview-box {
  border: 8px solid rgba(0, 0, 0, 0.2);
}
.overview-img {
  width: 25%;
  background-color: #ebf0f3;
}
.overview-info-box {
  width: 75%;
  padding: 10px 10px 5px 20px;
}
.overview-info-box li {
  list-style: none;
}
.overview-img, .overview-info-box {
  display: table-cell;
  vertical-align: middle;
}
.overview-box, .overview-info-box {
  overflow: hidden;
}
.tubular-box {
  border: 1px solid #eee;
	  background-color: #ffffff;
}
.tubular-img {
  width: 49%;
  background-color: #ebf0f3;
}
.tubular-item-img {
  width: 49%;
  background-color: #ffffff;
	display: relative;
}
@media only screen and (max-width: 500px) {
.tubular-item-img {
  width: 100%;
	}
.tubular-info-box-carousel {
  width: 100%;
	padding-left: 15px;
	padding-right: 20px;
}
.tubular-box {
	margin-left: 5px;
	margin-right: 5px;

}
}

.tubular-info-box {
  width: 51%;
  padding: 10px 20px 5px 20px;
		display: relative;

}
.tubular-img, .tubular-info-box {
  display: table-cell;
  vertical-align: middle;
}
.tubular-box, .tubular-info-box {
  overflow: hidden;
}
.table-padding-4 {
  padding-top: 4px;
}
.table-padding-2 {
  padding-top: 2px;
}
.table-border {
  border-width: 0 1px;
  border-color: rgba(0, 0, 0, 0.2);
  border-top-width: 0px;
  border-bottom-width: 0px;
}
.gradient {
  background: linear-gradient(180deg, rgba(0, 134, 240, 1.00), rgba(0, 107, 192, 1.00));
}
.gradient a:hover {
  color: #fff;
}
.poly-links a {
  color: #fff;
}
.poly-links a:hover {
  color: #FDE06E;
}
.model-line {
  font-size: 40px;
  font-weight: 400;
}
.model {
  background: rgba(251, 196, 5, 1.00)40px;
  padding: 0px 12px 0px 12px;
}
.g-6, .gx-6 {
  --bs-gutter-x: 4rem;
}
.show-all img {
  border-style: none;
  height: 100%;
  max-width: 100%;
  vertical-align: middle;
  overflow: visible;
}
table .bg-table-md-gray {
  background-color: #D8D8D8;
  border-bottom: 4px solid #fff;
  border-right: 4px solid #fff;
  color: #000;
  font-weight: 600;
  padding-left: 20px !important;
}
table .bg-table-lt-gray {
  background-color: #EFEFEF;
  border-bottom: 4px solid #fff;
  border-right: 4px solid #fff;
  color: #000;
  font-weight: 600;
  padding-left: 20px !important;
}
table .bg-table-lt-gray2 {
  background-color: #F4F4F4;
  border-bottom: 4px solid #fff;
  border-right: 4px solid #fff;
  color: #000;
  font-weight: 400;
  padding-left: 15px !important;
}
table .bg-table-md-gray2 {
  background-color: #E7E7E7;
  border-bottom: 4px solid #fff;
  border-right: 4px solid #fff;
  color: #000;
  font-weight: 400;
  padding-left: 15px !important;
}
.comparison-table td {
  padding-left: 25px !important;
}
.comparison-table table > :not(caption) > * > * {
  border-bottom-width: 4px;
  border-color: #fff;
}
.comparison-table table .rule-left {
  border-right: 4px solid #fff !important;
  color: #fff;
}
.bg-table-lt-blue {
  background-color: #F2F9FE !important;
  border-right: 4px solid #fff;
}
.bg-table-md-blue {
  background-color: #D8EEFE !important;
  border-right: 4px solid #fff;
}
.bg-table-lt-yellow {
  background-color: #FFFBEC !important;
  border-right: 4px solid #fff;
}
.bg-table-md-yellow {
  background-color: #FFF4D3 !important;
  border-right: 4px solid #fff;
}
/*! CONTACT CSS */
.mgssmartform span.sub-text {
  right: 20px;
  text-align: right;
  bottom: 100px;
}
.mgssmartform .has-feedback.has-error.has-danger::before, .mgssmartform .has-feedback.has-success::before {
  left: -2px;
}
@media screen and (max-width: 320px) {
  #humanCheckCaptchaInput.form-control {
    margin-left: 8px;
    padding: 5px 2px;
    width: 32px;
  }
}
#contactForm .form-control, #registerForm .form-control {
  color: #6f6f6f;
  background-color: transparent;
  border-color: #0086f0;
  border: 1px solid #0086f0;
  border-radius: 2px;
  font-size: 15px;
  line-height: 24px;
  padding: 6px 12px;
  outline: 0 none;
  width: 100%;
}
.text-success h4 {
  color: #0086f0;
}
#registerForm .form-group {
  margin-bottom: 25px;
}
.install-check {
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none;
}

.install-check li:before {
  font-family: "themify";
  position: absolute;
  left: 0;
  top: 5px;
  display: block;
  font-size: 15px;
  color: #777;
}

ul[class*="install-"] {
  font-size: 15px;
}
.install-check li:before {
  content: "\e64c";
  color: #fff;
  font-weight: 900;
}
@media only screen and (max-width: 991px) {
.warranty-logo img{
	width:40%;
	margin: auto;
	padding-left: 0px;
}
	.warranty-btn{
		margin-bottom:30px;
	}
}
@media only screen and (max-width: 767px) {
.warranty-logo img{
	width:60%;
}
}
.dist-footer {
            position: fixed;
            height: 40px;
            font-size: 15px;
            padding: 2px;
            bottom: 0;
            left: 0;
            right: 0;
            margin-bottom: 0;
        }

        .dist-footer p {
            margin: 2px;
            text-align: center;
        }

.sticky-top,
.sticky-sm-top,
.sticky-md-top,
.sticky-top > .side-bar{
	position:sticky;
	position: -webkit-sticky;
	top:68px;
}

@media only screen and (max-width: 991px) {
	.sticky-top{
		position:sticky;
	position: -webkit-sticky;
	top:65px;
	}
}
@media only screen and (max-width: 767px) {
	.sticky-md-top{
		position:unset;
	}
}

@media only screen and (max-width: 575px) {
	.sticky-sm-top{
		position:unset;
	}	
	
}

.acc-item {
margin-bottom: 30;
	padding: 50px 10px 30px 10px;
}

.dlab-bnr-inr {
  height: 220px;
  background-size: cover;
  background-position: center center;
  display: table;
  width: 100%;
  text-align: center;
}

.dlab-bnr-inr .dz_error-404-area {
  height: 100vh;
}
.dlab-bnr-inr-entry.align-m {
  vertical-align: middle;
}
.max-w700 {
  max-width: 700px;
}
.dlab-bnr-inr .dz_error-404-area{
	height: 100vh;
}
	.dz_error-404-area{
		display: table-cell!important;
	}
.dz_error-404 .dz_error{
    border-radius: 50%;
    font-size: 70px;
    font-weight: 700;
    height: 200px;
    line-height: 200px;
    margin: 20px 0;
    text-align: center;
    width: 200px;
}
.overlay-black {
  position: relative;
}
.overlay-black:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.overlay-black:after {
  opacity: 0.4;
}
.overlay-black .container {
  position: relative;
  z-index: 1;
}
.overlay-black:after {
  background: #000;
}

@media only screen and (max-width: 575px) {
	.site-footer.style1 .footer-title {
	padding-top: 50px;
	}
	.item-widgets-box {
    width: 49%;
}
.section-head .title {
	font-size: 32px;
	line-height: 40px;
	}
	.blue-nav {
  font-size: 12px;
}
	
}

@media only screen and (max-width: 767px) {
	.item-widgets-box {
    width: 49%;
}
}


.video-play-icon a {
    width: 80px;
    height: 80px;
    border-radius: 80px;
    text-align: center;
    line-height: 80px;
    color: #fff;
    box-shadow: 0 0 0 10px rgba(49,122,238,0.20);
    display: block;
    font-size: 28px;
    margin: auto;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.video-bx {
    position: relative;
    z-index: 1;
    border-radius: 6px;
    overflow: hidden;
}
.video-bx .video-play-icon {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    -moz-transform: translate(-50% , -50%);
    -webkit-transform: translate(-50% , -50%);
    -ms-transform: translate(-50% , -50%);
    -o-transform: translate(-50% , -50%);
}


.video-container {
  display: flex;
  justify-content: center;
}


.video-container iframe {
  width: 100%;
  height: 100%;
}
.fl-head {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 30px;
}

@media only screen and (max-width: 991px) {
	.noa-logo {
    width: 60%;
	padding-bottom: 30px;
}
}

@media only screen and (max-width: 991px) and (min-width: 769px) {
	.double-button {
	margin-top: 10px;
}
}
@media only screen and (max-width: 422px) {
	.double-button-sm {
	margin-top: 10px;
}
}
.double-button-p {
	margin-left: 5px; 
	margin-right: 5px;
}
.model-box{
	background-color: #ebf0f4;
}
.model-box .owl-dots {
  margin-top: 0px !important;
	cursor: pointer;
}
.owl-dots {
	cursor: pointer;
}
.owl-dots-primary-full.owl-theme .owl-dots .owl-dot span{
	opacity:0.5;
	transition:all 0.5s;
	-moz-transition:all 0.5s;
	-webkit-transition:all 0.5s;
	margin-right:4px;
	margin-left:4px;
}
.owl-dots-primary-full.owl-theme .owl-dots .owl-dot span{
	background-color:#008BFC;
	width:11px;
	height: 7px;
}
.owl-dots-primary-full.owl-theme .owl-dots .owl-dot.active span{
	opacity:1;
	width:22px;
	height: 7px;
}


