/*
======================================
  * 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
---------------------------------------------------------------*/
body,
html {
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #6f6f6f;
  padding: 0;
  width: 100%;
  margin: 0;
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
  font-smoothing: antialiased;
}

a {
  color: #efbb20;
  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;
}

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;
}

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;
}

.dis-block {
  display: block;
  width: 100%;
}

.custom-container {
  max-width: 1320px;
}

@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
}

/*---------------------------------------------------------------
2. HEADINGS
---------------------------------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--title);
  font-family: "Rubik", sans-serif;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: var(--title);
}

h1 {
  font-size: 36px;
  line-height: 45px;
  margin-bottom: 25px;
  font-weight: 500;
}

h2 {
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 25px;
  font-weight: 500;
}

h3 {
  font-size: 28px;
  line-height: 35px;
  margin-bottom: 20px;
  font-weight: 500;
}

h4 {
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 15px;
  font-weight: 500;
}

h5 {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 10px;
  font-weight: 500;
}

h6 {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 10px;
  font-weight: 500;
}

/*---------------------------------------------------------------
3. TEXT & PARAGRAPH
---------------------------------------------------------------*/

p {
  line-height: 24px;
  margin-bottom: 24px;
}

strong {
  font-weight: 400;
}

.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;
}

/*text size*/
.font-10 {
  font-size: 10px;
}

.font-12 {
  font-size: 12px;
}

.font-13 {
  font-size: 13px;
}

.font-14 {
  font-size: 14px;
}

.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;
}

@media only screen and (max-width: 767px) {
  h1 {
    font-size: 35px;
    line-height: 42px;
    margin-bottom: 25px;
    font-weight: 800;
  }

  h2 {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 25px;
  }

  h3 {
    font-size: 28px;
    line-height: 35px;
    margin-bottom: 20px;
  }

  h4 {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 15px;
  }

  h5 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 10px;
  }

  h6 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 10px;
  }

  p {
    font-size: 14px;
  }
}

/*text weight*/

.fw3 {
  font-weight: 300;
}

.fw4 {
  font-weight: 400;
}

.fw5 {
  font-weight: 500;
}

.fw6 {
  font-weight: 600;
}

.fw7 {
  font-weight: 700;
}

.fw8 {
  font-weight: 800;
}

.fw9 {
  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-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-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-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;
}

/*== >marging (bottom) ==*/

.m-b0 {
  margin-bottom: 0;
}

.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-black {
  color: #000;
}

.text-gray {
  color: #f5f6f6;
}

.text-gray-dark {
  color: #d3d3d3;
}

.text-red {
  color: #ff4045;
}

.text-yellow {
  color: #ffb822;
}

.text-yellow-light {
  color: #fec215;
}

.text-pink {
  color: #ff3c85;
}

.text-blue {
  color: #00c5dc;
}

.text-green {
  color: #34bfa3;
}

.text-orange {
  color: #ef9800;
}

/*=== >background color ===*/

.bg-transparent {
  background-color: transparent;
}

/* .bg-primary {
    background-color: ;
} */
.bg-white {
  background-color: var(--white) !important;
}

.bg-black {
  background-color: #000;
}

.bg-black-light {
  background-color: #1c1c1c;
}

.bg-gray {
  background-color: #ffffff;
}

.bg-gray-dark {
  background-color: #d3d3d3;
}

.bg-red {
  background-color: #ff4045;
}

.bg-green {
  background-color: #34bfa3;
}

.bg-yellow {
  background-color: #ffb822;
}

.bg-pink {
  background-color: #ff3c85;
}

.bg-blue {
  background-color: #00c5dc;
}

.bg-orange {
  background-color: #ef9800;
}

/* 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);
}

/*=== >background image ===*/

.bg-img-fix {
  background-attachment: fixed;
  background-size: cover;
}

.dez-bnr-inr.bg-pt,
.bg-pt {
  background-position: top;
  background-size: cover;
}

.dez-bnr-inr.bg-pb,
.bg-pb {
  background-position: bottom;
  background-size: cover;
}

/*---------------------------------------------------------------
9. IMAGES OVERLAY EFFECTS (overly animation on images)
---------------------------------------------------------------*/

.dez-img-overlay1,
.dez-img-overlay2,
.dez-img-overlay3,
.dez-img-overlay4,
.dez-img-overlay5,
.dez-img-overlay6,
.dez-img-overlay7,
.dez-img-overlay8,
.dez-img-overlay9,
.dez-img-overlay11,
.dez-img-overlay12 {
  position: relative;
}

.dez-img-overlay1:before,
.dez-img-overlay1:after,
.dez-img-overlay2:before,
.dez-img-overlay2:after,
.dez-img-overlay3:before,
.dez-img-overlay3:after,
.dez-img-overlay4:before,
.dez-img-overlay4:after,
.dez-img-overlay5:before,
.dez-img-overlay5:after,
.dez-img-overlay6:before,
.dez-img-overlay6:after,
.dez-img-overlay7:before,
.dez-img-overlay7:after,
.dez-img-overlay8:before,
.dez-img-overlay8:after,
.dez-img-overlay9:before,
.dez-img-overlay9:after,
.dez-img-overlay11:before,
.dez-img-overlay11:after,
.dez-img-overlay12:before,
.dez-img-overlay12:after {
  content: "";
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#192665+0,09123f+49,222845+100 */
  background: rgb(25, 38, 101);
  /* Old browsers */
  background: -moz-radial-gradient(center,
      ellipse cover,
      rgba(25, 38, 101, 1) 0%,
      rgba(9, 18, 63, 1) 49%,
      rgba(34, 40, 69, 1) 100%);
  /* FF3.6-15 */
  background: -webkit-radial-gradient(center,
      ellipse cover,
      rgba(25, 38, 101, 1) 0%,
      rgba(9, 18, 63, 1) 49%,
      rgba(34, 40, 69, 1) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: radial-gradient(ellipse at center,
      rgba(25, 38, 101, 1) 0%,
      rgba(9, 18, 63, 1) 49%,
      rgba(34, 40, 69, 1) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#192665', endColorstr='#222845', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0.8;
  z-index: 1;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

/*effect 1*/

.dez-img-overlay1:before {
  width: 100%;
  height: 100%;
  opacity: 0;
}

.dez-img-overlay1:hover:before,
.dez-box:hover .dez-img-overlay1:before {
  opacity: 0.85;
}

/*effect 2*/
.dez-img-overlay2:before {
  width: 100%;
  height: 100%;
  opacity: 0;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.65+100 */

  background: -moz-linear-gradient(top,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.15) 100%);
  /* FF3.6-15 */

  background: -webkit-linear-gradient(top,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.15) 100%);
  /* Chrome10-25,Safari5.1-6 */

  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.15) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
  /* IE6-9 */
}

.dez-img-overlay2.on:before {
  opacity: 1;
}

.dez-img-overlay2:hover:before,
.dez-box:hover .dez-img-overlay2:before {
  opacity: 0.9;
}

/*effect 3*/

.dez-img-overlay3:before {
  left: 50%;
  top: 50%;
}

.dez-img-overlay3:hover:before,
.dez-box:hover .dez-img-overlay3:before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/*effect 4*/

.dez-img-overlay4:before {
  left: 50%;
  top: 0;
  height: 100%;
}

.dez-img-overlay4:hover:before,
.dez-box:hover .dez-img-overlay4:before {
  width: 100%;
  left: 0;
}

/*effect 5*/

.dez-img-overlay5:before {
  left: 0;
  top: 50%;
  width: 100%;
}

.dez-img-overlay5:hover:before,
.dez-box:hover .dez-img-overlay5:before {
  height: 100%;
  top: 0;
}

/*effect 6*/

.dez-img-overlay6:before {
  left: 0;
  top: auto;
  bottom: 0;
  width: 100%;
}

.dez-img-overlay6:hover:before,
.dez-box:hover .dez-img-overlay6:before {
  height: 100%;
}

/*effect 7*/

.dez-img-overlay7:before,
.dez-img-overlay7:after {
  height: 100%;
}

.dez-img-overlay7:after {
  left: auto;
  right: 0;
}

.dez-img-overlay7:hover:before,
.dez-img-overlay7:hover:after,
.dez-box:hover .dez-img-overlay7:before,
.dez-box:hover .dez-img-overlay7:after {
  width: 50%;
}

/*effect 8*/

.dez-img-overlay8:before,
.dez-img-overlay8:after {
  height: 100%;
}

.dez-img-overlay8:after {
  left: auto;
  right: 0;
}

.dez-img-overlay8:hover:before,
.dez-img-overlay8:hover:after,
.dez-box:hover .dez-img-overlay8:before,
.dez-box:hover .dez-img-overlay8:after {
  width: 100%;
  opacity: 0.3;
}

/*effect 9*/

.dez-img-overlay9:before,
.dez-img-overlay9:after {
  left: auto;
  right: 0;
  top: auto;
  bottom: 0;
}

.dez-img-overlay9:hover:before,
.dez-img-overlay9:hover:after,
.dez-box:hover .dez-img-overlay9:before,
.dez-box:hover .dez-img-overlay9:after {
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

/*effect 10*/

.dez-img-overlay10:before,
.dez-img-overlay10:after {
  width: 100%;
  height: 100%;
  opacity: 0;
}

.dez-img-overlay10:hover:before,
.dez-box:hover .dez-img-overlay10:before {
  opacity: 0.5;
}

.dez-img-overlay10:hover:after,
.dez-box:hover .dez-img-overlay10:after {
  width: 90%;
  height: 80%;
  left: 5%;
  top: 10%;
  opacity: 0.5;
  background: none;
  border: 1px dashed #ffffff;
}

.dez-img-overlay11:hover:after,
.dez-box:hover .dez-img-overlay11:after {
  height: 95%;
  opacity: 1;
  right: 7.5%;
  top: 2.5%;
  -moz-transform: skewY(0deg);
  -webkit-transform: skewY(0deg);
  -o-transform: skewY(0deg);
  -ms-transform: skewY(0deg);
  transform: skewY(0deg);
  width: 85%;
}

.dez-img-overlay11:hover:before,
.dez-box:hover .dez-img-overlay11:before {
  height: 85%;
  left: 2.5%;
  opacity: 1;
  top: 7.5%;
  -moz-transform: skewY(0deg);
  -webkit-transform: skewY(0deg);
  -o-transform: skewY(0deg);
  -ms-transform: skewY(0deg);
  transform: skewY(0deg);
  width: 95%;
}

.dez-img-overlay11:after {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  bottom: 5%;
  height: 80%;
  left: auto;
  right: 5%;
  top: auto;
  -moz-transform: skewY(70deg);
  -webkit-transform: skewY(70deg);
  -o-transform: skewY(70deg);
  -ms-transform: skewY(70deg);
  transform: skewY(70deg);
  width: 90%;
}

.dez-img-overlay11:before {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border-bottom: 1px solid #fff;
  border-top: 1px solid #fff;
  bottom: auto;
  height: 90%;
  left: 5%;
  right: auto;
  top: 5%;
  -moz-transform: skewX(-70deg);
  -webkit-transform: skewX(-70deg);
  -o-transform: skewX(-70deg);
  -ms-transform: skewX(-70deg);
  transform: skewX(-70deg);
  width: 80%;
}

.dez-img-overlay11 {
  background-color: #000 !important;
}

.dez-img-overlay11:hover img {
  opacity: 0.7 !important;
}

/* overlay-12 */
.dez-img-overlay12:hover:after,
.dez-box:hover .dez-img-overlay12:after {
  opacity: 1;
  transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 1, 1);
  -moz-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 1, 1);
  -webkit-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 1, 1);
  -o-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 1, 1);
}

.dez-img-overlay12:after {
  background-color: rgba(0, 0, 0, 0);
  border-bottom: 2px solid #ffffff;
  border-top: 2px solid #ffffff;
  transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
  -moz-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
  -o-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
  -webkit-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
  -moz-transform-origin: 50% 50% 0;
  -webkit-transform-origin: 50% 50% 0;
  transform-origin: 50% 50% 0;
  -o-transform-origin: 50% 50% 0;
  width: 100%;
  height: 100%;
}

.dez-img-overlay12.left:hover:after,
.dez-box:hover .dez-img-overlay12.left:after {
  transform: rotate3d(0, 0, 1, -45deg) scale3d(1, 1, 1);
  -moz-transform: rotate3d(0, 0, 1, -45deg) scale3d(1, 1, 1);
  -webkit-transform: rotate3d(0, 0, 1, -45deg) scale3d(1, 1, 1);
  -o-transform: rotate3d(0, 0, 1, -45deg) scale3d(1, 1, 1);
}

.dez-img-overlay12.left:after {
  border-bottom: 2px solid #ffffff;
  border-top: 2px solid #ffffff;
  transform: rotate3d(0, 0, 1, -45deg) scale3d(1, 0, 1);
  -moz-transform: rotate3d(0, 0, 1, -45deg) scale3d(1, 0, 1);
  -o-transform: rotate3d(0, 0, 1, -45deg) scale3d(1, 0, 1);
  -webkit-transform: rotate3d(0, 0, 1, -45deg) scale3d(1, 0, 1);
  -moz-transform-origin: 50% 50% 0;
  -webkit-transform-origin: 50% 50% 0;
  transform-origin: 50% 50% 0;
  -o-transform-origin: 50% 50% 0;
}

.dez-img-overlay12:before {
  width: 100%;
  height: 100%;
  opacity: 0;
}

.dez-img-overlay12:hover:before,
.dez-box:hover .dez-img-overlay12:before {
  opacity: 0.4;
}

/* Overlay Gradient */
/*---------------------------------------------------------------
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
---------------------------------------------------------------*/

.dez-img-effect {
  position: relative;
  overflow: hidden;
  display: block;
  vertical-align: middle;
}

.dez-img-effect img {
  display: block;
  margin: 0;
  width: 100%;
  height: auto;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: all 0.25s;
  -moz-transition: all 0.25s;
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
}

/* >image-opacity */

.dez-img-effect.opacity img:hover {
  opacity: 0.8;
  -moz-opacity: 0.8;
  -webkit-opacity: 0.8;
}

/* >image-zoom */

.dez-img-effect.zoom-slow img {
  transition: all 10s;
  -moz-transition: all 10s;
  -webkit-transition: all 10s;
  -o-transition: all 10s;
}

.dez-img-effect.zoom-slow:hover img {
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

/* >image-zoom-slow */

.dez-img-effect.zoom:hover img {
  -moz-transform: scale(1.5);
  -webkit-transform: scale(1.5);
  -o-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
}

/* >image-shrink */

.dez-img-effect.shrink:hover img {
  transform: scale(0.8);
  -ms-transform: scale(0.8);
  -webkit-transform: scale(0.8);
  -o-transform: scale(0.8);
  -moz-transform: scale(0.8);
}

/* >image-side-pan */

.dez-img-effect.side-pan:hover img {
  margin-left: -11%;
  transform: scale(1.2);
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -o-transform: scale(1.2);
  -moz-transform: scale(1.2);
}

/* >image-vertical-pan */

.dez-img-effect.vertical-pan:hover img {
  margin-top: -10%;
  transform: scale(1.2);
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -o-transform: scale(1.2);
  -moz-transform: scale(1.2);
}

/* >image-fade-in */

.dez-img-effect.fade-in {
  background: #000;
}

.dez-img-effect.fade-in img {
  opacity: 0.65;
  -moz-opacity: 0.65;
  -webkit-opacity: 0.65;
}

.dez-img-effect.fade-in:hover img {
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
}

/* >image-fade-out */

.dez-img-effect.fade-out {
  background: #000;
}

.dez-img-effect.fade-out:hover img {
  opacity: 0.7;
  -moz-opacity: 0.7;
  -webkit-opacity: 0.7;
}

/* >image-rotate */

.dez-box:hover .dez-img-effect.rotate img,
.dez-img-effect.rotate:hover img {
  -moz-transform: scale(1.5) rotate(-20deg);
  -webkit-transform: scale(1.5) rotate(-20deg);
  -o-transform: scale(1.5) rotate(-20deg);
  -ms-transform: scale(1.5) rotate(-20deg);
  transform: scale(1.5) rotate(-20deg);
}

/* >image-sepia */

.dez-img-effect.sepia img {
  -webkit-filter: sepia(100%);
  filter: sepia(100%);
}

.algo-image-hover.sepia:hover img {
  -webkit-filter: sepia(0);
  filter: sepia(0);
}

/* >image-blurr */

.dez-img-effect.blurr img {
  transition: all 0.2s;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
}

.dez-img-effect.blurr:hover img {
  filter: blur(3px);
  -webkit-filter: blur(3px);
  -moz-filter: blur(3px);
  -o-filter: blur(3px);
  -ms-filter: blur(3px);
}

/* >image-blurr-invert */

.dez-img-effect.blurr-invert img {
  transition: all 0.2s;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
}

.dez-img-effect.blurr-invert img {
  filter: blur(3px);
  -webkit-filter: blur(3px);
  -moz-filter: blur(3px);
  -o-filter: blur(3px);
  -ms-filter: blur(3px);
}

.dez-img-effect.blurr-invert:hover img {
  filter: blur(0px);
  -webkit-filter: blur(0px);
  -moz-filter: blur(0px);
  -o-filter: blur(0px);
  -ms-filter: blur(0px);
}

/* >image off color */

.dez-img-effect.off-color img {
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
  -moz-filter: grayscale(0);
  -o-filter: grayscale(0);
  -ms-filter: grayscale(0);
}

.dez-img-effect.off-color:hover img {
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(1);
  -o-filter: grayscale(1);
  -ms-filter: grayscale(1);
}

/* >image on color */

.dez-img-effect.on-color img {
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(1);
  -o-filter: grayscale(1);
  -ms-filter: grayscale(1);
}

.dez-img-effect.on-color:hover img {
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
  -moz-filter: grayscale(0);
  -o-filter: grayscale(0);
  -ms-filter: grayscale(0);
}

/*---------------------------------------------------------------
11. CONTENT SHOW ON IMAGE BOX
---------------------------------------------------------------*/
/* info box show */

.dez-info-has {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 30px 15px 40px;
  opacity: 0;
  margin-bottom: -100px;
  z-index: 2;
}

.dez-info-has.p-a15 {
  padding: 15px;
}

.dez-info-has.p-a20 {
  padding: 20px;
}

.dez-info-has.bg-primary {
  background-color: rgba(27, 188, 232, 0.9);
}

.dez-info-has.bg-green {
  background-color: rgba(106, 179, 62, 0.9);
}

.dez-info-has.bg-black {
  background-color: rgba(0, 0, 0, 0.6);
}

.dez-info-has.bg-white {
  background-color: rgba(255, 255, 255, 0.8);
}

.dez-info-has.bg-white h1,
.dez-info-has.bg-white h2,
.dez-info-has.bg-white h3,
.dez-info-has.bg-white h4,
.dez-info-has.bg-white h5,
.dez-info-has.bg-white h6 {
  color: #3d474a;
}

.dez-info-has.bg-white h1 a,
.dez-info-has.bg-white h2 a,
.dez-info-has.bg-white h3 a,
.dez-info-has.bg-white h4 a,
.dez-info-has.bg-white h5 a,
.dez-info-has.bg-white h6 a {
  color: #3d474a;
}

.dez-info-has.bg-white .dez-info-has-text,
.dez-info-has.bg-white p {
  color: #767676;
}

.dez-info-has h1,
.dez-info-has h2,
.dez-info-has h3,
.dez-info-has h4,
.dez-info-has h5,
.dez-info-has h6,
.dez-info-has p,
.dez-info-has-text,
.dez-info-has a {
  color: #fff;
}

.dez-info-has .dez-info-has-text {
  margin-bottom: 20px;
  line-height: 24px;
}

.dez-media {
  overflow: hidden;
  position: relative;
}

.dez-box:hover .dez-info-has,
.dez-media:hover .dez-info-has {
  opacity: 1;
  width: 100%;
  margin-bottom: 0;
}

/* without hover */

.overlay-bx.no-hover,
.dez-info-has.no-hover {
  opacity: 1;
  width: 100%;
  margin-bottom: 0;
  visibility: visible;
}

/* Skew */

.dez-info-has.skew-has {
  border-top: 4px solid #2d3239;
  padding: 30px 40px 60px;
  -moz-transform: skewY(10deg);
  -webkit-transform: skewY(10deg);
  -o-transform: skewY(10deg);
  -ms-transform: skewY(10deg);
  transform: skewY(10deg);
  bottom: -35px;
}

.dez-info-has.skew-has>* {
  -moz-transform: skewY(-10deg);
  -webkit-transform: skewY(-10deg);
  -o-transform: skewY(-10deg);
  -ms-transform: skewY(-10deg);
  transform: skewY(-10deg);
}

/*---------------------------------------------------------------
12. FORM ELEMENTS
---------------------------------------------------------------*/

label {
  font-weight: 600;
  margin-bottom: 10px;
}

.panel-default,
.panel-default>.panel-heading {
  border-color: #e7ecf1;
  color: inherit;
}

.panel-default>.panel-heading+.panel-collapse>.panel-body {
  border-top-color: #e7ecf1;
}

.form-group {
  margin-bottom: 25px;
}

.form-control {
  border-color: #e1e6eb;
  box-shadow: none;
  font-size: 14px;
  line-height: 20px;
  /* padding: 12px 15px; */
}

.form-control:focus {
  border-color: #e1e1e1;
  outline: 0;
}

.form-control:focus,
.has-error .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form-control.kv-fileinput-caption {
  height: 39px;
}

.form-group.form-inline .radio,
.form-group.form-inline .checkbox {
  margin-right: 15px;
}

/*input group*/

.input-group {
  width: 100%;
}

.input-group .form-control,
.input-group-addon,
.input-group-btn {
  display: table-cell;
}

.input-group-addon {
  background: #fff;
  border-color: #e1e1e1;
  padding: 6px 14px;
  font-size: 16px;
}

.input-group-addon.font-size-20 {
  font-size: 20px;
}

.input-group-addon.fixed-w {
  text-align: center;
  padding: 6px 0;
  width: 40px;
}

.input-group-addon.v-align-t {
  line-height: 30px;
}

/*select box*/

.dropdown-menu {
  font-size: 13px;
}

.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  width: 100% !important;
}

.bootstrap-select .dropdown-toggle {
  border: 1px solid #e7ecf1 !important;
  background-color: #fff !important;
  height: 40px;
  font-size: 15px;
  color: #495057;

}

.bootstrap-select .dropdown-toggle:after {
  display: none;
}

.bootstrap-select .dropdown-toggle:active,
.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select .dropdown-toggle:hover {
  background-color: #fff !important;
  border: 1px solid #e9e9e9 !important;
  box-shadow: none !important;
  outline: 0px !important;
}

.bootstrap-select:active,
.bootstrap-select:focus {
  border: 0px !important;
  box-shadow: none !important;
  outline: 0px !important;
}

.bootstrap-select.show {
  box-shadow: none !important;
  outline: 0px !important;
}

.bootstrap-select.show .dropdown-toggle {
  box-shadow: none !important;
  outline: 0px !important;
}

.bootstrap-select.show.btn-group .dropdown-menu.inner {
  display: block;
}

.bootstrap-select div.dropdown-menu {
  border: 1px solid #e9e9e9;
  border-radius: 4px;
  box-shadow: none;
  margin-top: -1px;
  padding: 10px 0;
  font-size: 13px;
}

.bootstrap-select div.dropdown-menu ul li {
  padding: 0;
}

.bootstrap-select div.dropdown-menu ul li a {
  padding: 8px 15px;
}

.bootstrap-select div.dropdown-menu ul li a:hover {
  background-color: var(--primary);
  color: #fff;
}

.bootstrap-select div.dropdown-menu ul li a img {
  border-radius: 100%;
  -webkit-border-radius: 100%;
  margin-right: 5px;
}

.bootstrap-select .bs-searchbox .form-control {
  padding: 5px 10px;
  height: 30px;
}

.bootstrap-select .dropdown-menu>li>a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
}

.bootstrap-select .dropdown-menu>li>a:hover {
  background-color: #f2f2f4;
}

.bootstrap-touchspin .input-group-btn-vertical {
  position: relative;
  white-space: nowrap;
  width: 1%;
  vertical-align: middle;
  display: table-cell;
}

.bootstrap-touchspin .input-group-btn-vertical>.btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
  padding: 10px 10px 9px;
  margin-left: -1px;
  position: relative;
  border-width: 1px;
  border-style: solid;
  border-color: #e1e1e1;
  background: #fff;
}

.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {
  border-radius: 0;
  border-top-right-radius: 0;
}

.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
  margin-top: -2px;
  border-radius: 0;
  border-bottom-right-radius: 0;
}

.bootstrap-touchspin .input-group-btn-vertical i {
  position: absolute;
  top: 4px;
  left: 5px;
  font-size: 9px;
  font-weight: normal;
  color: #9fa0a1;
}

/*rating star*/

.input-rating input[type="radio"] {
  display: none;
}

.input-rating input[type="radio"]+label {
  display: inline-block;
  margin-left: -4px;
  padding-left: 0px !important;
  padding-right: 0px;
  width: 24px;
}

.input-rating input[type="radio"]+label:first-of-type {
  margin-left: 0px;
}

.input-rating input[type="radio"]+label:before {
  background-color: transparent;
  border: none;
  color: #ffd925;
  content: "\f006";
  display: inline-block;
  font-family: FontAwesome;
  font-size: 20px;
  -webkit-font-smoothing: antialiased;
  height: 14px;
  line-height: 1;
  margin-left: 0px;
  position: static;
  text-align: center;
  top: 2px;
  transition: none;
  width: 14px;
}

.input-rating input[type="radio"]:checked+label:before,
.input-rating input[type="radio"]+label.marked:before,
.input-rating input[type="radio"]+label.filled:before,
.input-rating input[type="radio"]+label.hovered.filled:before {
  content: "\f005";
}

.input-rating input[type="radio"]+label.hovered:before {
  content: "\f006";
}

/*simple rating list*/

.rating-bx {
  color: #ffc300;
  font-size: 14px;
}

.rating-bx i {
  margin: 0 2px;
}

.rating-container .rating-stars::before {
  text-shadow: none;
}

.rating-container {
  color: #c8c8c8;
}

.rating-container .rating-stars {
  color: #3396d1;
}

/*validation symbol*/

.has-feedback label~.form-control-feedback {
  top: 31px;
}

/*loading*/

.loading-box {
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  opacity: 0.7;
  z-index: 9999;
}

.loading-pic {
  width: 70px;
  height: 70px;
  background: url(inc/images/loading.GIF) center no-repeat;
  position: fixed;
  left: 50%;
  top: 50%;
  margin: -35px;
  z-index: 99999;
}

/*loading - 2*/

.loading-cover,
.loading-srh-bar,
.loading-map {
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.loading-cover .fa-spinner,
.loading-srh-bar .fa-spinner,
.loading-map .fa-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -10px;
  font-size: 25px;
  color: #333;
}

.dez-banner-outer {
  margin-bottom: 0;
}

.dez-success-top,
.dez-error-top {
  margin-bottom: 0;
}

.alert-bx.alert-info {
  padding: 15px;
  border: 1px solid #bce8f1;
}

/*---------------------------------------------------------------
13. WP DEFAULT
---------------------------------------------------------------*/

.alignnone {
  margin: 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 15px;
}

.alignright {
  float: right;
  margin: 5px 0 15px 25px;
}

.alignleft {
  float: left;
  margin: 5px 25px 15px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 25px 25px;
}

a img.alignnone {
  margin: 5px 0 25px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 25px 25px 0;
}

a img.aligncenter {
  display: block;
  margin: 5px auto 15px;
}

.blog-side-img {
  width: 300px;
}

.wp-caption {
  max-width: 100%;
  text-align: center;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin: 0;
}

.wp-caption.alignnone {
  margin: 5px 0 25px 0;
}

.wp-caption.alignleft {
  margin: 5px 25px 25px 0;
}

.wp-caption.alignright {
  margin: 5px 0 25px 25px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 100%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  color: #9d9d9d;
  font-size: 13px;
  line-height: 18px;
  margin: 0;
  padding: 10px 0;
  text-align: left;
}

blockquote {
  padding: 16px 20px 16px 80px;
  font-size: 18px;
  font-style: italic;
  color: #555555;
  margin: 40px 0;
  border-left: none;
  line-height: 30px;
  position: relative;
  background: #f6f6f6;
  clear: both;
  border-left: 4px solid #efbb20;
}

blockquote p {
  font-size: 18px;
  color: #555555;
  line-height: 30px;
  margin-bottom: 0px;
}

blockquote:before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  font-style: normal;
  color: #efbb20;
  font-size: 35px;
  position: absolute;
  left: 20px;
  top: 20px;
}

.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
  max-width: 100%;
  height: auto;
}

@media only screen and (max-width: 480px) {
  .blog-side-img {
    width: 90px;
  }

  .alignleft {
    margin: 5px 15px 10px 0;
  }

  .alignleft {
    margin: 5px 15px 10px 0;
  }

  .alignright {
    margin: 5px 0 15px 15px;
  }
}

/*---------------------------------------------------------------
14. HEADER (top part of page)
---------------------------------------------------------------*/

.site-header {
  position: relative;
  z-index: 999;
}

.site-header ul,
.site-header ol {
  margin-bottom: 0;
}

/*without top bar*/
.extra-nav {
  float: right;
  padding: 26px 0;
  position: relative;
  z-index: 9;
}

.extra-nav .site-button-link {
  font-size: 15px;
}

.extra-nav .extra-cell {
  display: inline-block;
  margin-left: 10px;
}

@media only screen and (max-width: 767px) {
  .extra-nav {
    margin-right: 0;
  }
}

@media only screen and (max-width: 480px) {
  .extra-nav {
    margin: 0 1px 0 0;
    text-align: right;
  }
}

.new-page {
  padding: 2px 5px;
  font-size: 10px;
  background: #ff0000;
  color: #fff;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 2px;
}

/* map page header*/

#header-part.fix-map-header {
  height: 90px;
}

#header-part.fix-map-header .main-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}

@media only screen and (max-width: 480px) {
  #header-part.fix-map-header {
    height: 160px;
  }
}

/*---------------------------------------------------------------
15. PAGE TOP BAR (left & right content)
---------------------------------------------------------------*/
.top-bar {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  color: #444444;
  padding: 11px 0;
}

.top-bar li a {
  color: #fff;
}

.top-bar li {
  position: relative;
  padding: 0 15px;
}

.top-bar li:first-child {
  padding-left: 0;
}

.top-bar li:last-child {
  padding-right: 0;
}

.top-bar li:after {
  content: "";
  position: absolute;
  height: 80%;
  opacity: 0.5;
  width: 1px;
  background: #fff;
  transform: rotate(15deg);
  right: 0;
  top: 15%;
}

.top-bar li:last-child:after {
  content: none;
}

.dez-topbar-left {
  float: left;
}

.dez-topbar-right {
  float: right;
}

.dez-topbar-center,
.dez-topbar-left,
.dez-topbar-right {
  padding-left: 15px;
  padding-right: 15px;
}

.dez-topbar-left ul,
.dez-topbar-right ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dez-topbar-left ul li,
.dez-topbar-right ul li {
  display: inline-block;
}

.dez-topbar-left ul li {
  padding-right: 15px;
}

.dez-topbar-left ul li a,
.dez-topbar-right ul li a {
  color: #fff;
}

.topbar-social li a {
  padding: 0 6px;
}

@media only screen and (max-width: 991px) {
  .dez-topbar-right {
    padding-left: 0;
    padding-right: 15px;
  }

  .dez-topbar-left {
    padding-left: 15px;
    padding-right: 0;
  }
}

@media only screen and (max-width: 767px) {
  .top-bar [class*="col-"] {
    width: 100%;
    text-align: right;
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .top-bar [class*="col-"]:last-child {
    border-bottom: none;
  }

  .top-bar {
    padding: 5px 0;
  }

  .dez-topbar-center,
  .dez-topbar-left,
  .dez-topbar-right {
    display: black;
    width: 100%;
    text-align: center;
    padding: 3px 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .dez-topbar-left ul li {
    padding: 0 5px;
  }
}

/*=== >eamil-phone (left) ===*/

.e-p-bx li {
  display: inline;
  font-size: 14px;
  padding-right: 10px;
}

.e-p-bx li a {
  color: #fff;
}

.e-p-bx li i {
  margin-right: 10px;
  vertical-align: middle;
}

/*=== >social-links (right) ===*/
.social-bx,
.login-bx {
  margin: 0 0 0 15px;
  float: right;
}

.social-bx li,
.login-bx li {
  font-size: 12px;
  margin: 0;
  position: relative;
}

.social-bx li {
  padding-left: 1px;
  padding-right: 1px;
}

.social-bx li a,
.login-bx li a {
  color: #ffffff;
}

.social-bx li i,
.login-bx li i {
  vertical-align: baseline;
  margin: 0 5px 0 0;
}

.social-bx li span,
.login-bx li span {
  vertical-align: baseline;
  margin: 0 2px 0;
  font-size: 8px;
}

.login-bx li ul {
  top: 25px;
  left: auto;
  right: 0;
  border: none;
  padding: 0;
}

.login-bx li ul li {
  border-bottom: 1px solid #f7f7f7;
}

.login-bx li ul li a {
  color: #767676;
  padding: 9px 15px;
}

.arrow-up-border:before,
.arrow-up:after {
  position: absolute;
  display: inline-block;
  content: "";
}

.arrow-up-border:before {
  top: -7px;
  right: 19px;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #f00;
  border-left: 7px solid transparent;
  border-bottom-color: rgba(0, 0, 0, 0.2);
}

.arrow-up:after {
  top: -6px;
  right: 20px;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ffffff;
  border-left: 6px solid transparent;
}

.arrow-left:before {
  position: absolute;
  top: -7px;
  left: 9px;
  display: inline-block;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-left: 7px solid transparent;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: "";
}

.arrow-left:after {
  position: absolute;
  top: -6px;
  left: 10px;
  display: inline-block;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ffffff;
  border-left: 6px solid transparent;
  content: "";
}

/*=== >language-list () ===*/

.language-bx li {
  display: inline;
  margin: 0 10px;
}

/*---------------------------------------------------------------
16. LOGO ( company identify  symbol )
---------------------------------------------------------------*/
/*=== >logo for header ===*/

.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: 140px;
  height: 80px;
  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-footer {
  display: table;
  vertical-align: middle;
  padding: 0;
  color: #efbb20;
  margin-top: 15px;
  margin-bottom: 15px;
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  height: 60px;
}

.logo-header>a,
.logo-footer>a {
  display: table-cell;
  vertical-align: middle;
}

.logo-header.center-block {
  margin-left: auto;
  margin-right: auto;
  float: none;
}

.logo-header img,
.logo-footer img {
  height: auto;
  width: auto;
  max-width: 180px;
}

.logo-header span,
.logo-footer span {
  font-size: 20px;
  color: #efbb20;
  letter-spacing: 20px;
}

/*= When header is sticky =*/
/*= Set width for mobile  =*/

@media only screen and (max-width: 767px) {

  .logo-header,
  .is-fixed.header-curve .logo-header,
  .is-fixed .logo-header,
  .is-fixed.header-curve .logo-header {
    width: 100px;
    max-width: 100px;
    height: 58px;
  }

  .logo-header img,
  .logo-footer img {
    max-width: 150px;
  }

  .is-fixed .logo-header a img,
  .is-fixed.header-curve .logo-header a img {
    vertical-align: sub;
  }

  .site-header .navbar-toggler,
  .site-header .is-fixed .navbar-toggler {
    margin: 22px 0 18px 15px;
  }

  .site-header .extra-nav,
  .site-header .is-fixed .extra-nav {
    padding: 8px 0;
  }
}

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

.main-bar {
  background: var(--white);
  width: 100%;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 10px 0px;
}

.header-curve .logo-header:before,
.header-curve .logo-header:after {
  background-color: #fff;
  content: "";
  position: absolute;
  bottom: 0;
  height: 100%;
  z-index: -1;
}

.header-curve .logo-header:before {
  right: -50px;
  width: 80%;
  -webkit-transform: skew(30deg);
  -moz-transform: skew(30deg);
  -o-transform: skew(30deg);
  -ms-transform: skew(30deg);
  transform: skew(30deg);
}

.header-curve .logo-header:after {
  right: 10%;
  width: 2000px;
}

.is-fixed.header-curve .logo-header img {
  margin-top: -0;
}

@media only screen and (max-width: 767px) {
  .header-curve .logo-header:after {
    right: 0;
    left: auto;
  }
}

/*---------------------------------------------------------------
18. NAVIGATIONS
	>mena-menu
	>mobile-menu
	>footer-menu
---------------------------------------------------------------*/
/*== >mena-menu ==*/

.navbar-toggler {
  border: 0 solid #efbb20;
  font-size: 16px;
  line-height: 24px;
  margin: 32px 0 30px 10px;
  padding: 0;
}

.navbar-toggler span {
  background: #666;
}

.header-nav {
  position: relative;
  padding: 0;
}

.header-nav .nav {
  float: right;
}

.header-nav .nav i {
  font-size: 9px;
  margin-left: 3px;
  margin-top: -3px;
  vertical-align: middle;
  display: none;
}

.header-nav .nav>li {
  margin: 0px;
  font-weight: 400;
  text-transform: capitalize;
  position: relative;
}

.header-nav .nav>li>a {
  border-radius: 0px;
  color: #000;
  font-size: 16px;
  padding: 30px 12px;
  cursor: pointer;
  font-weight: 600;
  display: inline-block;
}

.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.active>a,
.header-nav .nav>li.current-menu-item>a {
  background-color: transparent;
  color: #efbb20;
}

.header-nav .nav>li:hover>a {
  color: #efbb20;
}

.header-nav .nav>li:hover>.sub-menu,
.header-nav .nav>li:hover>.mega-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
  -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,
.header-nav .nav>li>.mega-menu {
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
}

.header-nav .nav>li .sub-menu {
  background-color: #ffffff;
  border: 1px solid #f4f4f4;
  display: block;
  left: 0;
  list-style: none;
  opacity: 0;
  padding: 10px 0;
  position: absolute;
  visibility: hidden;
  width: 220px;
  z-index: 10;
  border-radius: 4px;
}

.header-nav .nav>li .sub-menu li {
  border-bottom: 0px solid #f4f4f4;
  position: relative;
}

.header-nav .nav>li .sub-menu li a {
  color: #505050;
  display: block;
  font-size: 14px;
  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: 500;
  font-family: "Montserrat", sans-serif;
}

.header-nav .nav>li .sub-menu li a:hover {
  background-color: #84c0ca !important;
  color: #ffffff !important;
  text-decoration: none;
}

.header-nav .nav>li .sub-menu li:hover>a {
  color: #efbb20;
}

.header-nav .nav>li .sub-menu li:last-child {
  border-bottom: 0px;
}

.header-nav .nav>li .sub-menu.left {
  left: auto;
  right: 0;
}

.header-nav .nav>li .sub-menu li .fa {
  color: inherit;
  display: block;
  float: right;
  font-size: 15px;
  position: absolute;
  right: 15px;
  top: 12px;
  opacity: 1;
}

.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>.sub-menu.left,
.header-nav .nav>li .sub-menu li:hover .sub-menu.left {
  right: auto;
  left: 219px;
}

.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.has-mega-menu {
  position: inherit;
}

.header-nav .nav>li .mega-menu {
  background-color: #ffffff;
  border: 1px solid #f8f8f8;
  display: table;
  left: 0px;
  list-style: none;
  opacity: 0;
  position: absolute;
  right: 0px;
  visibility: hidden;
  width: 100%;
  font-family: Montserrat;
  margin-top: 20px;
  z-index: 9;
}

.header-nav .nav>li .mega-menu>li {
  display: table-cell;
  padding: 30px 0 25px;
  position: relative;
  vertical-align: top;
  width: 25%;
}

.header-nav .nav>li .mega-menu>li:after {
  content: "";
  background-color: rgba(0, 0, 0, 0.02);
  position: absolute;
  right: 0px;
  top: 0px;
  display: block;
  width: 1px;
  height: 100%;
}

.header-nav .nav>li .mega-menu>li:last-child:after {
  display: none;
}

.header-nav .nav>li .mega-menu>li>a {
  color: #000;
  display: block;
  font-size: 14px;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 600;
}

.header-nav .nav>li .mega-menu>li ul {
  list-style: none;
  margin: 10px 0px 0px 0px;
  padding: 0px;
  width: 100%;
}

.header-nav .nav>li .mega-menu>li ul a {
  color: #505050;
  display: block;
  font-size: 13px;
  line-height: 34px;
  text-transform: capitalize;
  padding: 0 20px;
  font-weight: 500;
}

.header-nav .nav>li .mega-menu>li ul a:hover {
  color: #efbb20;
}

.header-nav .nav .mega-menu a i {
  font-size: 14px;
  margin-right: 5px;
  text-align: center;
  width: 15px;
}

.header-nav .nav>li .sub-menu,
.header-nav .nav>li .mega-menu {
  border-top: 0 solid #000;
}

.header-nav .nav>li.menu-item-has-children:before {
  content: "\f078";
  display: block;
  font-family: "FontAwesome";
  right: 4px;
  position: absolute;
  top: 50%;
  color: #999;
  margin-top: -8px;
  font-size: 8px;
}

/* Header Center */
.site-header.center .header-nav .nav {
  display: inline-block;
  float: left;
  width: 35%;
}

.site-header.center .navbar-nav>li {
  display: inline-block;
  float: none;
}

.site-header.center .header-nav .nav:first-child {
  text-align: right;
}

.site-header.center .header-nav .nav:first-child li {
  text-align: left;
}

.site-header.center .header-nav .nav:last-child {
  float: right;
}

.site-header.center .logo-header {
  position: absolute;
  transform: translate(-50%);
  -moz-transform: translate(-50%);
  -webkit-transform: translate(-50%);
  -o-transform: translate(-50%);
  position: absolute;
  left: 50%;
  text-align: center;
}

.site-header.center .logo-header img {
  position: relative;
  width: 140px;
  z-index: 2;
  object-fit: contain;
}

/* Mega Menu */
.header-nav .nav>li.has-mega-menu.demos .mega-menu {
  left: auto;
  right: auto;
  max-width: 600px;
  z-index: 9;
}

.header-nav .nav>li .sub-menu.left li>.sub-menu,
.header-nav .nav>li .sub-menu.left li:hover .sub-menu {
  left: auto;
  right: 220px;
}

@media only screen and (max-width: 991px) {
  .site-header.center .header-nav {
    overflow-y: scroll;
  }

  .site-header.center .header-nav .nav {
    width: 100%;
  }

  .site-header.center .navbar-nav>li {
    display: block;
    float: left;
    width: 100%;
  }

  .header-nav .nav>li>.sub-menu,
  .header-nav .nav>li>.mega-menu {
    box-shadow: none;
  }

  .header-nav .nav>li.has-mega-menu.demos .mega-menu {
    max-width: 100%;
  }

  .header-nav .nav>li .mega-menu {
    border: 0;
  }

  .site-header.center .is-fixed .header-nav .nav {
    height: auto;
  }

  .header-nav .nav>li .mega-menu>li {
    padding: 10px 0;
  }

  .header-nav .nav>li .sub-menu,
  .header-nav .nav>li .mega-menu {
    border-radius: 0;
  }

  .site-header.center .logo-header {
    position: relative;
    transform: translate(0);
    -moz-transform: translate(0);
    -webkit-transform: translate(0);
    -o-transform: translate(0);
    left: auto;
    text-align: left;
    z-index: 1;
    position: relative;
  }

  .site-header.center .header-nav .nav {
    z-index: 2;
    position: relative;
  }

  .navbar-toggler {
    float: right;
  }

  .site-header.center.mo-left .header-nav .logo-header {
    padding: 20px 15px;
  }

  .site-header.center.mo-left .header-nav .logo-header a {
    display: block;
    width: 100%;
    text-align: center;
  }
}

/* Nav  Badge */
.shop-cart.navbar-right {
  margin-right: 0;
  float: none;
  display: inline-block;
}

.shop-cart .dropdown-menu.cart-list {
  box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.3);
  top: 50px;
  border: 0;
}

.shop-cart .badge {
  font-size: 9px;
  height: 15px;
  line-height: 15px;
  min-width: 15px;
  padding: 0;
  position: absolute;
  right: -5px;
  text-align: center;
  top: -5px;
}

.shop-cart li {
  padding: 10px 20px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.shop-cart li:last-child {
  border-bottom: 0;
}

.shop-cart .media-left a {
  display: block;
  width: 60px;
}

.shop-cart .site-button-link {
  position: relative;
}

.cart-list.dropdown-menu {
  width: 260px;
  margin-top: 30px;
}

.is-fixed .cart-list.dropdown-menu {
  margin-top: 18px;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.cart-list .media-object {
  width: 60px;
}

.cart-item .media-body {
  position: relative;
}

.item-close {
  background-color: #303030;
  border-radius: 20px;
  color: #ffffff;
  display: block;
  font-size: 9px;
  height: 18px;
  line-height: 18px;
  margin-top: -9px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 50%;
  width: 18px;
  cursor: pointer;
}

.item-close:hover {
  background-color: #000;
}

.header-nav .nav>li.demos {
  position: inherit;
}

.header-nav .nav>li.demos .mega-menu {
  max-width: 700px;
  width: 700px;
  left: auto;
  right: 0;
}

.header-nav .nav>li .mega-menu>li.header-add {
  padding: 18px 14px;
}

@media only screen and (max-width: 991px) {
  header .logo {
    display: block;
    padding: 4px 0;
  }

  /* .header-nav .nav > li > a {
        padding: ;
    } */
  .header-nav .nav i {
    margin-top: 6px;
  }

  .header-nav .nav>li.demos .mega-menu.left {
    width: 100%;
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .shop-cart .dropdown-menu.cart-list {
    left: auto;
    right: 0;
  }

  .cart-list.dropdown-menu,
  .is-fixed .cart-list.dropdown-menu {
    margin-top: 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%;
  }

  .header-nav .nav>li .sub-menu>li,
  .header-nav .nav>li .mega-menu>li {
    float: none;
    display: block;
    width: auto;
  }

  .header-nav .nav>li>a {
    padding: 10px 15px;
    border-top: 1px solid #e9e9e9;
    display: block;
  }

  .header-nav .nav i {
    float: right;
  }

  .header-nav .nav>li>a:hover,
  .header-nav .nav>li>a:active,
  .header-nav .nav>li>a:focus {
    background-color: #f0f0f0;
    text-decoration: none;
  }

  .header-nav .nav>li .mega-menu>li:after {
    display: none;
  }

  .header-nav .nav>li ul,
  .header-nav .nav>li .sub-menu,
  .header-nav .nav>li .mega-menu {
    display: none;
    position: static;
    visibility: visible;
    width: auto;
    background: #f6f6f6;
  }

  .header-nav .nav>li ul.mega-menu ul {
    display: none;
  }

  .header-nav .nav>li:hover>ul,
  .header-nav .nav>li:hover .sub-menu,
  .header-nav .nav>li:hover .mega-menu,
  .header-nav .nav>li .sub-menu li>.sub-menu {
    opacity: 1;
    visibility: visible;
    display: block;
    margin: 0;
  }

  .header-nav .nav>li ul.mega-menu li:hover ul {
    display: block;
  }

  /* 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: "\f078";
  }

  .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: "\f054";
  }

  .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 {
    color: #000;
    height: 100%;
    line-height: 40px;
    position: absolute;
    right: 0;
    text-align: center;
    top: -6px;
    width: 40px;
    z-index: 3;
  }

  .nav.navbar-nav li.active a i.fa-chevron-down {
    color: #fff;
  }

  .header-nav .nav>li .sub-menu li i.fa-angle-right:before {
    content: "\f078";
    font-size: 10px;
  }

  .header-nav .nav>li .sub-menu li.open i.fa-angle-right:before {
    content: "\f054";
  }

  .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>.mega-menu,
  .header-nav .nav>li.open>.sub-menu,
  .header-nav .nav>li ul.mega-menu ul {
    display: block;
    opacity: 1;
    margin-top: 0;
  }

  .header-nav .nav>li .sub-menu li .fa {
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    margin: 0;
    right: -1px;
  }

  .header-nav .nav>li .mega-menu>li {
    padding: 0;
  }

  .header-nav .nav>li .mega-menu>li>a {
    display: none;
  }

  .header-nav .nav .mega-menu a i {
    display: inline-block;
    float: none;
    margin-top: 0;
  }

  .header-nav .nav .open>a,
  .header-nav .nav .open>a:focus,
  .header-nav .nav .open>a:hover {
    background-color: inherit;
    border-color: #e9e9e9;
  }

  .header-nav.nav-dark.nav .open>a,
  .header-nav.nav-dark .nav .open>a:focus,
  .header-nav.nav-dark .nav .open>a:hover {
    border-color: rgba(0, 0, 0, 0.2);
  }
}

/*= nav dark version =*/

.nav-dark.header-nav .nav>li .sub-menu,
.nav-dark.header-nav .nav>li .mega-menu {
  background-color: #232323;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.nav-dark.header-nav .nav>li .sub-menu li {
  border-bottom: 0px solid rgba(0, 0, 0, 0.2);
}

.nav-dark.header-nav .nav>li .sub-menu li a,
.nav-dark.header-nav .nav>li .mega-menu>li ul a {
  color: rgba(255, 255, 255, 0.6);
}

.header-nav.nav-dark .nav>li .mega-menu>li>a {
  color: #fff;
}

.nav-dark.header-nav .nav>li .sub-menu li a:hover {
  background-color: rgba(255, 255, 255, 0);
}

.nav-dark.header-nav .nav>li .sub-menu li:hover>a,
.nav-dark.header-nav .nav>li ul li a:hover,
.nav-dark.header-nav .nav>li .mega-menu>li ul a:hover {
  background-color: rgba(255, 255, 255, 0);
  color: #fff !important;
}

.nav-dark.header-nav .nav>li .mega-menu>li:after {
  background-color: rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 991px) {
  .nav-dark.header-nav .nav>li>a {
    color: #9d9d9d;
  }

  .nav-dark.header-nav {
    border-bottom: 1px solid rgba(0, 0, 0, 0.8);
  }

  .nav-dark.header-nav .nav {
    background-color: #202020;
  }

  .nav-dark.header-nav .nav>li>a {
    border-top: 0px solid rgba(0, 0, 0, 0.2);
  }

  [class*="bg-"] .nav-dark.header-nav .nav>li>a {
    color: #999;
  }

  [class*="bg-"] .nav-dark.header-nav .nav>li.active>a,
  [class*="bg-"] .nav-dark.header-nav .nav>li:hover>a {
    color: #efbb20;
  }

  .nav-dark.header-nav .nav>li>a:hover,
  .nav-dark.header-nav .nav>li>a:active,
  .nav-dark.header-nav .nav>li>a:focus {
    background-color: #282828;
    color: #efbb20;
  }

  .nav-dark.header-nav .nav>li ul,
  .nav-dark.header-nav .nav>li .sub-menu,
  .nav-dark.header-nav .nav>li .mega-menu {
    background-color: #282828;
  }
}

/*= when header is sticky =*/

.sticky-no .main-bar {
  position: static !important;
}

/*= when header is sticky =*/

.is-fixed .main-bar {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.is-fixed .header-nav .nav>li>a {
  padding: 25px 12px;
}

@media only screen and (max-width: 991px) {
  .is-fixed .header-nav .nav>li>a {
    padding: 10px 15px;
  }
}

@media only screen and (max-width: 767px) {
  .is-fixed .header-nav .nav {
    overflow: auto;
    height: 225px;
  }

  .is-fixed .header-nav .nav>li>a {
    padding: 10px 15px;
  }

  .is-fixed#header-part .navbar-toggler {
    margin: 15px 0;
  }
}

/*= header full width =*/

#header-part.full-width .top-bar .container,
#header-part.full-width .main-bar .container {
  width: auto;
}

/*= Header style designs strat =*/
/*header with bg primary color 1 */
header[class*="bg-"] .header-nav .nav>li>a {
  color: #fff;
}

header[class*="bg-"] .header-nav .nav>li.active>a,
header[class*="bg-"] .header-nav .nav>li.current-menu-item>a {
  color: #fff;
}

header[class*="bg-"] .header-nav .nav>li>a:hover,
header[class*="bg-"] .header-nav .nav>li:hover>a {
  color: #fff;
}

header[class*="bg-"] .navbar-toggler {
  border-color: #fff;
}

header[class*="bg-"] .navbar-toggler span {
  background-color: #fff;
}

@media only screen and (max-width: 991px) {
  [class*="bg-"] .header-nav .nav>li>a {
    color: #555;
  }
}

/*header style 1 (default) */
/* Header Dark */
.header.dark,
.header.dark .main-bar {
  background: #252525;
}

.header.dark .header-nav .nav>li>a,
.header.dark .extra-nav .site-button-link,
.header.dark .navbar-toggler {
  color: #dfdfdf;
}

.header.dark .navbar-toggler span {
  background-color: #dfdfdf;
}

.header.dark .top-bar {
  background-color: #252525;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #dfdfdf;
}

/* Header Transparent  */
.header-transparent {
  position: absolute;
  width: 100%;
}

.header-transparent .main-bar {
  background-color: rgba(0, 0, 0, 0);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-transparent .header-nav .nav>li>a {
  color: #fff;
}

.header-transparent .header-nav .nav>li>a,
.header-transparent .extra-nav .site-button-link,
.header-transparent .navbar-toggler {
  color: #fff;
}

.header-transparent .navbar-toggler span {
  background-color: #fff;
}

.header-transparent .is-fixed .navbar-toggler span {
  background-color: #000;
}

.header-transparent .is-fixed .main-bar {
  position: fixed;
  background-color: #fff;
}

.header-transparent .top-bar {
  background-color: rgba(0, 0, 0, 0);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #dfdfdf;
}

/* Overlay */
.header-transparent.overlay .top-bar,
.header-transparent.overlay .main-bar {
  background-color: rgba(0, 0, 0, 0.5);
}

/* Header Full Width */
.fullwidth .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}

@media only screen and (max-width: 767px) {
  .fullwidth .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }

  .top-bar {
    display: none;
  }
}

/* Colored Bg */
/*=== Primary */
.header.primary,
.header.primary .main-bar {
  background: #3b68e7;
}

.header.primary .header-nav .nav>li>a,
.header.primary .extra-nav .site-button-link,
.header.primary .navbar-toggler {
  color: #dfdfdf;
}

.header.primary .navbar-toggler span {
  background-color: #dfdfdf;
}

.header.primary .top-bar {
  background-color: #3b68e7;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #dfdfdf;
}

/*=== Red */
.header.red,
.header.red .main-bar {
  background: #f22d4e;
}

.header.red .header-nav .nav>li>a,
.header.red .extra-nav .site-button-link,
.header.red .navbar-toggler {
  color: #dfdfdf;
}

.header.red .navbar-toggler span {
  background-color: #dfdfdf;
}

.header.red .top-bar {
  background-color: #f22d4e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #dfdfdf;
}

/*=== Blue */
.header.blue,
.header.blue .main-bar {
  background: #00c5dc;
}

.header.blue .header-nav .nav>li>a,
.header.blue .extra-nav .site-button-link,
.header.blue .navbar-toggler {
  color: #fff;
}

.header.blue .navbar-toggler span {
  background-color: #fff;
}

.header.blue .top-bar {
  background-color: #00c5dc;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

/*=== Purpal */
.header.purpal,
.header.purpal .main-bar {
  background: #8862b9;
}

.header.purpal .header-nav .nav>li>a,
.header.purpal .extra-nav .site-button-link,
.header.purpal .navbar-toggler {
  color: #fff;
}

.header.purpal .navbar-toggler span {
  background-color: #fff;
}

.header.purpal .top-bar {
  background-color: #8862b9;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

/*=== Yellow */
.header.yellow,
.header.yellow .main-bar {
  background: #ffb822;
}

.header.yellow .header-nav .nav>li>a,
.header.yellow .extra-nav .site-button-link,
.header.yellow .navbar-toggler {
  color: #fff;
}

.header.yellow .navbar-toggler span {
  background-color: #fff;
}

.header.yellow .top-bar {
  background-color: #ffb822;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* Top Bar Bg */
.top-bar.bg-dark {
  background-color: #282a3c;
  color: #fff;
}

.top-bar.bg-black {
  background-color: #000;
  color: #fff;
}

.top-bar.bg-light {
  background-color: #a5a5a5;
  color: #ffffff;
  border-bottom: 0;
}

/* Box */
.header.box {
  position: absolute;
  width: 100%;
}

.header.box .main-bar {
  background-color: rgba(0, 0, 0, 0);
  margin-top: 20px;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
}

.header.box .header-nav .nav>li>a,
.header.box .extra-nav .site-button-link,
.header.box .navbar-toggler {
  color: #000;
}

.header.box .navbar-toggler span {
  background-color: #000;
}

.header.box .is-fixed .main-bar {
  position: fixed;
  background-color: #fff;
  margin-top: 0px;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
}

.header.box .container {
  background-color: #ffffff;
  border-radius: 2px;
  box-shadow: 0 0 4px -2px #000000;
}

.header.box .is-fixed .container {
  box-shadow: none;
}

/* Box Overlay */
.header.box.overlay .header-nav .nav>li>a,
.header.box.overlay .extra-nav .site-button-link,
.header.box.overlay .navbar-toggler {
  color: #fff;
}

.header.box.overlay .navbar-toggler span {
  background-color: #fff;
}

.header.box.overlay .container {
  background-color: rgba(0, 0, 0, 0.5);
}

.header.box.overlay .is-fixed .container {
  background-color: rgba(0, 0, 0, 0);
}

.header.box.overlay .is-fixed .main-bar {
  background-color: rgba(0, 0, 0, 0.7);
}

/* Box Dark */
.header.box.dark .header-nav .nav>li>a,
.header.box.dark .extra-nav .site-button-link,
.header.box.dark .navbar-toggler {
  color: #fff;
}

.header.box.dark .navbar-toggler span {
  background-color: #fff;
}

.header.box.dark .container {
  background-color: #252525;
}

.header.box.dark .is-fixed .container,
.header.box.dark {
  background-color: rgba(0, 0, 0, 0);
}

.header.box.dark .is-fixed .main-bar {
  background-color: #252525;
}

/* One Page Nav */
.onepage .navbar {
  margin-bottom: 0;
  border: 0;
}

@media only screen and (max-width: 991px) {

  .header.dark .header-nav .nav>li>a,
  .header-transparent .header-nav .nav>li>a,
  .header.primary .header-nav .nav>li>a,
  .header.blue .header-nav .nav>li>a,
  .header.purpal .header-nav .nav>li>a,
  .header.red .header-nav .nav>li>a,
  .header.yellow .header-nav .nav>li>a,
  .header.box.dark .header-nav .nav>li>a,
  .header.box.overlay .header-nav .nav>li>a,
  .header-curve [class*="bg-"] .header-nav .nav>li.active>a {
    color: #000;
  }

  .header.dark .header-nav.nav-dark .nav>li>a,
  .header-transparent .header-nav.nav-dark .nav>li>a,
  .header.primary .header-nav.nav-dark .nav>li>a,
  .header.blue .header-nav.nav-dark .nav>li>a,
  .header.purpal .header-nav.nav-dark .nav>li>a,
  .header.red .header-nav.nav-dark .nav>li>a,
  .header.yellow .header-nav.nav-dark .nav>li>a,
  .header.box.dark .header-nav.nav-dark .nav>li>a,
  .header.box.overlay .header-nav.nav-dark .nav>li>a,
  .header-curve [class*="bg-"] .header-nav.nav-dark .nav>li.active>a {
    color: #fff;
  }
}

/* Left Nav  */
/* ============== Nav Style ============== */

/* Responsive CSS End */
/* ================== Header Style 5 End ================== */
/*---------------------------------------------------------------
19. BANNER
---------------------------------------------------------------*/

.dez-banner-row,
.dez-banner-outer {
  position: relative;
}

.dez-bnr-pic {
  width: 100%;
  overflow: hidden;
}

.dez-bnr-pic img {
  width: 100%;
  height: auto;
  display: block;
}

.dez-bnr-text {
  position: absolute;
  left: 0;
  top: 35%;
  width: 100%;
  margin: 0;
  color: #ffffff;
}

.dez-bnr-text-has {
  max-width: 600px;
}

.dez-bnr-text strong,
.dez-bnr-text span {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  -webkit-text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.dez-bnr-text strong {
  display: block;
  font-size: 60px;
  font-weight: 700;
  line-height: 70px;
  margin: 0 0 25px;
  color: #ffffff;
}

.dez-bnr-text span {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  display: block;
  margin-bottom: 30px;
}

.dez-bnr-text .btn {
  margin-right: 30px;
}

@media only screen and (max-width: 1200px) {
  .dez-bnr-text strong {
    font-size: 60px;
    line-height: 60px;
    margin: 0 0 15px;
  }

  .dez-bnr-text span {
    font-size: 20px;
    line-height: 24px;
  }
}

@media only screen and (max-width: 991px) {
  .dez-bnr-text strong {
    font-size: 50px;
    line-height: 50px;
    margin: 0 0 10px;
  }
}

@media only screen and (max-width: 767px) {
  .dez-bnr-text strong {
    font-size: 40px;
    line-height: 40px;
    margin: 0 0 0;
  }
}

@media only screen and (max-width: 680px) {
  .dez-bnr-text strong {
    font-size: 30px;
    line-height: 30px;
    margin: 0 0 0;
  }

  .dez-bnr-text span {
    font-size: 14px;
    line-height: 18px;
  }
}

@media only screen and (max-width: 480px) {
  .dez-bnr-text strong {
    font-size: 20px;
    line-height: 20px;
  }

  .dez-bnr-text span {
    font-size: 12px;
    line-height: 16px;
  }
}

/*== > inner page banner ==*/
.dez-bnr-inr.dez-bnr-inr-lg {
  height: 800px;
}

.dez-bnr-inr.dez-bnr-inr-md {
  height: 600px;
}

.dez-bnr-inr.dez-bnr-inr-sm {
  height: 450px;
}

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

.dez-bnr-inr .container {
  display: table;
  height: 100%;
}

.dez-bnr-inr-entry {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.dez-bnr-inr-entry.align-m {
  vertical-align: middle;
}

.banner-inner-row h1,
.banner-inner-row h2,
.banner-inner-row h3,
.banner-inner-row h4,
.banner-inner-row h5,
.banner-inner-row h6 {
  color: #fff;
}

/* Banner Contant */
.dez-bnr-inr.banner-content h1 {
  font-weight: 800;
}

.dez-bnr-inr.banner-content p {
  font-size: 20px;
  font-weight: 100;
  letter-spacing: 1px;
  line-height: 36px;
  max-width: 750px;
  display: inline-block;
}

.dez-bnr-inr.banner-content .site-button {
  padding: 13px 35px;
  font-size: 16px;
}

/* Banner  */
.dez-bnr-inr .breadcrumb-row {
  padding: 0;
  background-color: rgba(0, 0, 0, 0);
}

.dez-bnr-inr h1 {
  font-weight: 500;
  margin-bottom: 15px;
}

.dez-bnr-inr ul li {
  font-size: 18px;
  font-weight: 500;
}

.next-element {
  color: #ffffff;
  float: right;
  opacity: 0.1;
}

.next-element:hover {
  color: #fff;
  opacity: 0.8;
}

.next-element i {}

.dez-bnr-inr .breadcrumb-row ul li:after,
.dez-bnr-inr .breadcrumb-row ul li:last-child {
  color: #fff;
}

.dez-bnr-inr .breadcrumb-row ul li a {
  color: #fff;
}

@media only screen and (max-width: 767px) {

  .ele-bnr .bnr-title,
  .ele-bnr h1 a,
  .ele-bnr .breadcrumb-row h5 {
    display: none;
  }

  .ele-bnr .dez-bnr-inr-entry {
    text-align: center;
  }

  .dez-bnr-inr-entry {
    vertical-align: middle;
  }

  .dez-bnr-inr {
    padding-bottom: 0;
  }

  .dez-bnr-inr .breadcrumb-row ul {
    display: block;
    float: none;
    width: 100%;
    text-align: center;
  }

  .dez-bnr-inr {
    height: 200px;
  }

  .dez-bnr-inr h1 {
    line-height: 24px;
    font-size: 20px;
    text-align: center;
  }

  .dez-bnr-inr.dez-bnr-inr-sm,
  .dez-bnr-inr {
    height: 250px;
  }

  .dez-bnr-inr ul li {
    font-size: 15px;
  }

  .dez-bnr-inr h1 {
    margin-bottom: 5px;
  }
}

.navicon {
  width: 20px;
  height: 18px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.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: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.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);
}

/*---------------------------------------------------------------
20. SLIDER
	>rs slider
	>owl slider
---------------------------------------------------------------*/
/*== >rs slider ==*/

.tp-caption .font-weight-300 {
  font-weight: 300;
}

.tp-caption .font-weight-400 {
  font-weight: 400;
}

.tp-caption .font-weight-500 {
  font-weight: 500;
}

.tp-caption .font-weight-600 {
  font-weight: 600;
}

.tp-caption .font-weight-700 {
  font-weight: 700;
}

.tp-caption .font-weight-800 {
  font-weight: 800;
}

.tp-caption .font-weight-900 {
  font-weight: 900;
}

.tp-caption h1,
.tp-caption h2,
.tp-caption h3,
.tp-caption h4,
.tp-caption h5,
.tp-caption h6 {
  font-weight: 800;
  margin-bottom: 24px;
  color: #ffffff;
}

.tp-caption h1 {
  font-size: 70px;
  line-height: 60px;
}

.tp-caption h2 {
  font-size: 60px;
  line-height: 50px;
}

.tp-caption h3 {
  font-size: 50px;
  line-height: 40px;
  margin-bottom: 20px;
}

.tp-caption h4 {
  font-size: 40px;
  line-height: 30px;
  margin-bottom: 15px;
}

.tp-caption h5 {
  font-size: 30px;
  line-height: 4px;
  margin-bottom: 10px;
}

.tp-caption h6 {
  font-size: 20px;
  line-height: 22px;
  margin-bottom: 10px;
}

.tp-caption h4,
.tp-caption h5,
.tp-caption h6 {
  font-weight: 600;
}

.tp-caption .text {
  color: #ffffff;
  font-size: 20px;
  line-height: 24px;
  width: 500px;
}

.overlay-row {
  background: #000 none repeat scroll 0 0;
  height: 100%;
  left: 0;
  opacity: 0.3;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

/*== >owl slider ==*/
/* next pre btn */
.owl-theme .owl-dots.disabled {
  margin: 0;
}

.dots-none.owl-theme .owl-dots,
.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: 0.5;
  cursor: default;
}

/* owl dots button */

.owl-theme .owl-dots {
  text-align: center;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  display: inline;
}

.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 dots style */
.owl-theme.dots-style-1 .owl-dots .owl-dot span,
.owl-theme.dots-style-2 .owl-dots .owl-dot span {
  background: rgba(0, 0, 0, 0.2);
  width: 8px;
  height: 8px;
  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: #000;
}

/* owl dots style 3 */
.owl-theme.dots-style-3 .owl-dots {
  margin-top: 30px;
  position: unset;
  right: auto;
  text-align: center;
  top: auto;
  transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: auto;
}

.owl-theme.dots-style-3 .owl-dots .owl-dot span {
  height: 8px;
  width: 8px;
  margin: 0;
}

.owl-theme.dots-style-3 .owl-dots .owl-dot {
  border: 1px solid;
  border-radius: 20px;
  display: inline-block;
  margin: 4px;
  padding: 3px;
}

.owl-theme.dots-style-3 .owl-dots .owl-dot.active,
.owl-theme.dots-style-3 .owl-dots .owl-dot:hover {
  border: 1px solid #ff3b68;
}

.owl-theme.dots-style-3 .owl-dots .owl-dot.active span,
.owl-theme.dots-style-3 .owl-dots .owl-dot:hover span {
  background-color: #ff3b68;
}

.owl-item.dots-style-3 .slide-content-box {
  opacity: 0;
}

.owl-item.active.dots-style-3 .slide-content-box {
  opacity: 1;
  transition: all 2s ease 2s;
  -moz-transition: all 2s ease 2s;
  -webkit-transition: all 2s ease 2s;
  -o-transition: all 2s ease 2s;
}

/*owl button top to center  */

.owl-btn-top-c .owl-nav {
  text-align: center;
}

/*owl button top to left  */

.owl-btn-top-l .owl-nav {
  text-align: left;
}

.owl-btn-top-l .owl-nav .owl-prev {
  margin-left: 0;
}

/*owl button top to right  */

.owl-btn-top-r .owl-nav {
  text-align: right;
}

.owl-btn-top-r .owl-nav .owl-next {
  margin-right: 0;
}

/*owl button top to left & right  */

.owl-btn-top-lr .owl-nav {
  text-align: left;
}

.owl-btn-top-lr .owl-nav .owl-next {
  margin-right: 0;
  float: right;
}

.owl-btn-full .owl-prev,
.owl-btn-full .owl-next {
  padding: 40px 8px;
}

/*owl button < > CENTER to left & right */

.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 Button Style */
.owl-btn-1 .owl-prev,
.owl-btn-1 .owl-next,
.owl-btn-2 .owl-prev,
.owl-btn-2 .owl-next,
.owl-btn-3 .owl-prev,
.owl-btn-3 .owl-next {
  border-radius: 3px;
  height: 40px;
  line-height: 40px;
  margin: 0 10px !important;
  padding: 0;
  text-align: center;
  width: 40px;
}

.owl-btn-2 .owl-prev,
.owl-btn-2 .owl-next,
.owl-btn-3 .owl-prev,
.owl-btn-3 .owl-next {
  margin: 0 -70px !important;
}

.owl-btn-3 .owl-prev,
.owl-btn-3 .owl-next {
  background-color: rgba(0, 0, 0, 0);
  color: #000000;
  font-size: 35px;
  height: auto;
  width: auto;
  opacity: 0.2;
}

.owl-btn-3 .owl-prev:hover,
.owl-btn-3 .owl-next:hover {
  background-color: rgba(0, 0, 0, 0);
  color: #000;
  opacity: 1;
}

.owl-btn-3.btn-white .owl-prev,
.owl-btn-3.btn-white .owl-next {
  color: #fff;
}

.owl-btn-3.btn-white .owl-prev:hover,
.owl-btn-3.btn-white .owl-next:hover {
  color: #fff;
}

.owl-btn-4 {
  overflow: hidden;
}

.owl-btn-4 .owl-prev,
.owl-btn-4 .owl-next {
  background: #ffffff none repeat scroll 0 0;
  border-radius: 30px;
  box-shadow: 0 0 20px 7px rgba(0, 0, 0, 0.5);
  color: #000000;
  font-size: 24px;
  height: 50px;
  line-height: 50px;
  margin: 0 -10px !important;
  overflow: hidden;
  padding: 0;
  width: 50px;
  opacity: 0.7;
}

.owl-btn-4 .owl-prev:hover,
.owl-btn-4 .owl-next:hover {
  background: #ffffff none repeat scroll 0 0;
  color: #000;
  opacity: 1;
}

/* Thumb */
#sync2 .owl-item.active.current .item img {
  outline: 5px solid rgba(0, 0, 0, 0.2);
  outline-offset: -9px;
}

/* owl-dots */
.owl-dots-none .owl-dots {
  display: none;
}

.owl-dots-primary-full.owl-theme .owl-dots .owl-dot span,
.owl-dots-black-full.owl-theme .owl-dots .owl-dot span,
.owl-dots-white-full.owl-theme .owl-dots .owl-dot span,
.owl-dots-primary-big.owl-theme .owl-dots .owl-dot span,
.owl-dots-black-big.owl-theme .owl-dots .owl-dot span,
.owl-dots-white-big.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: 4px;
}

.owl-dots-primary-full.owl-theme .owl-dots .owl-dot span,
.owl-dots-primary-big.owl-theme .owl-dots .owl-dot span {
  background-color: #1abc9c;
}

.owl-dots-black-full.owl-theme .owl-dots .owl-dot span,
.owl-dots-black-big.owl-theme .owl-dots .owl-dot span {
  background-color: #333;
}

.owl-dots-white-full.owl-theme .owl-dots .owl-dot span,
.owl-dots-white-big.owl-theme .owl-dots .owl-dot span {
  background-color: #f5f5f5;
}

.owl-dots-primary-full.owl-theme .owl-dots .owl-dot.active span,
.owl-dots-black-full.owl-theme .owl-dots .owl-dot.active span,
.owl-dots-white-full.owl-theme .owl-dots .owl-dot.active span {
  opacity: 1;
  width: 25px;
}

.owl-dots-primary-big.owl-theme .owl-dots .owl-dot.active span,
.owl-dots-black-big.owl-theme .owl-dots .owl-dot.active span,
.owl-dots-white-big.owl-theme .owl-dots .owl-dot.active span {
  width: 14px;
  height: 14px;
  opacity: 1;
  margin: 0px 4px 2px 4px;
}

@media only screen and (max-width: 1200px) {

  .owl-btn-2 .owl-prev,
  .owl-btn-2 .owl-next,
  .owl-btn-3 .owl-prev,
  .owl-btn-3 .owl-next {
    margin: 0 10px !important;
  }
}

/*---------------------------------------------------------------
21. BLOG
---------------------------------------------------------------*/

.blog-post {
  position: relative;
  margin-bottom: 50px;
}

.dez-post-title {
  margin-bottom: 5px;
}

.dez-post-title .post-title {
  margin-top: 15px;
  margin-bottom: 10px;
}

.dez-post-meta {
  margin-bottom: 10px;
}

.dez-post-meta ul {
  margin: 0 -4px;
  list-style: none;
  text-transform: capitalize;
  font-family: "Montserrat", sans-serif;
}

.dez-post-meta ul li {
  padding: 0;
  display: inline-block;
  color: #707070;
  font-weight: 500;
  font-size: 13px;
}

.dez-post-meta ul li strong {
  font-weight: 500;
}

.dez-post-meta li:after {
  content: "|";
  display: inline-block;
  font-weight: normal;
  margin-left: 5px;
  opacity: 0.5;
  margin-right: 5px;
}

.dez-post-meta li:last-child:after {
  display: none;
}

.dez-post-meta i {
  color: #707070;
  margin: 0 5px 0 0;
  font-size: 15px;
  font-weight: 500;
}

.text-white .dez-post-meta ul li,
.text-white .dez-post-meta a,
.text-white .dez-post-meta i {
  color: #fff;
}

.dez-post-meta.text-white i,
.dez-post-meta.text-white ul li,
.dez-post-meta.text-white ul li a {
  color: #fff;
}

.dez-post-meta.text-black i,
.dez-post-meta.text-black ul li,
.dez-post-meta.text-black ul li a {
  color: #000;
}

.dez-post-meta.text-gray i,
.dez-post-meta.text-gray ul li,
.dez-post-meta.text-gray ul li a {
  color: #808080;
}

.dez-post-text {
  margin-bottom: 10px;
}

.dez-post-text p:last-child {
  margin: 0;
}

.dez-post-readmore {
  margin-bottom: 15px;
}

.dez-post-tags {
  border-top: 1px solid #e9e9e9;
  padding-top: 10px;
}

.dez-post-tags .post-tags {
  margin: 0 -3px;
  list-style: none;
}

.dez-post-tags .post-tags a {
  border: 1px solid #ebedf2;
  padding: 2px 8px;
  color: #a9a9a9;
  margin: 0 3px;
  display: inline-block;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
}

.dez-info[class*="border-"] .post-title {
  margin-top: 0;
}

.text-white .post-title a {
  color: #fff;
}

.dez-info>div:last-child,
.dez-info>p:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 1200px) {
  .dez-post-meta .d-flex {
    display: block !important;
  }
}

/*== post date syle css ==*/

.date-style-1 .post-date {
  color: #fff;
  background-color: #efbb20;
  padding: 3px 5px 3px 5px;
}

.date-style-1 .post-date i {
  color: #fff;
  left: 5px;
  top: 5px;
}

.date-style-1 .post-date i,
.date-style-2 .post-date i,
.date-style-3 .post-date i,
.date-style-4 .post-date i {
  display: none;
}

.date-style-2 .post-date,
.date-style-4 .post-date {
  color: #fff;
  position: absolute;
  left: 20px;
  top: 0;
  width: 50px;
  text-align: center;
  text-transform: uppercase;
}

.date-style-2 .post-date strong,
.date-style-2 .post-date span,
.date-style-4 .post-date strong,
.date-style-4 .post-date span {
  display: block;
  padding: 10px 5px;
}

.date-style-2 .post-date strong,
.date-style-4 .post-date strong {
  font-size: 10px;
  padding: 10px 5px 5px;
  position: relative;
}

.date-style-2 .post-date>strong:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 1px;
  background-color: #fff;
  margin: 0 -10px;
  width: 20px;
}

.date-style-2 .post-date span {
  font-size: 16px;
  padding: 5px 5px 10px;
}

.date-style-2 .post-date:after,
.date-style-2 .post-date .fa,
.date-style-3 .post-date:after,
.date-style-3 .post-date .fa,
.date-style-4 .post-date .fa {
  display: none;
}

.date-style-3 .dez-post-info {
  position: relative;
}

.date-style-3 .post-date {
  font-family: oswald;
  text-transform: uppercase;
  position: absolute;
  padding: 8px 15px;
  color: #fff;
  top: -36px;
  left: 0;
  height: 36px;
}

.date-style-3 .post-date strong {
  color: #30353c;
  margin-right: 2px;
}

.date-style-3.skew-date .post-date {
  padding-right: 8px;
}

.date-style-3.skew-date .post-date:before {
  content: "";
  position: absolute;
  right: -15px;
  top: 0;
  width: 22px;
  height: 100%;
  border-right: 3px solid #2d3239;
  -moz-transform: skewX(20deg);
  -webkit-transform: skewX(20deg);
  -o-transform: skewX(20deg);
  -ms-transform: skewX(20deg);
  transform: skewX(20deg);
}

.date-style-4 .post-date span {
  background-color: #2e1e13;
}

.date-style-4 .post-date {
  top: 10px;
  left: 10px;
}

.date-style-4 .dez-post-info {
  box-shadow: 0 3px 0 0 #dbdbdb;
}

.date-style-4 .dez-post-meta ul li {
  font-weight: normal;
}

/*== post without media ==*/

.no-image-blog.date-style-2 .algo-post-info {
  padding-top: 70px;
}

.no-image-blog.date-style-2 .post-date {
  top: 0;
  left: 20px;
}

/*if no image with blog post*/

.blog-post.no-img-post .post-date {
  position: static;
  float: left;
}

/*blog post half iamge*/

.blog-md .dez-post-media {
  width: 350px;
  border-radius: 4px;
}

.blog-md .dez-post-info {
  border: none;
  padding-left: 30px;
}

.blog-md .dez-post-tags {
  border: none;
  display: inline-block;
  padding: 0;
}

.blog-md .dez-post-info .post-title {
  margin-top: 0;
}

.blog-md,
.blog-md .dez-post-info {
  overflow: hidden;
}

.blog-md .dez-post-info,
.blog-md .dez-post-media {
  display: table-cell;
  vertical-align: middle;
}

.blog-md .dez-post-media {
  vertical-align: top;
}

.blog-md .dez-post-info>div:last-child {
  margin-bottom: 0;
}

.blog-lg .dez-post-media {
  border-radius: 4px;
}

/* blog-rounded */
.blog-rounded [class*="border-"] {
  border-radius: 0 0 4px 4px;
}

.blog-rounded .dez-post-media {
  border-radius: 4px 4px 0 0;
}

/* blog-effect1 */
.blog-effect1 {
  transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  -webkit-transition: all 1s;
}

.blog-effect1:hover {
  border-radius: 4px;
  box-shadow: 0 5px 40px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 5px 40px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 5px 40px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 0 5px 40px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 0 5px 40px rgba(0, 0, 0, 0.05);
}

/* Blog Share */
.blog-share {
  position: relative;
}

.share-btn {
  position: absolute;
  right: 0;
  bottom: 5px;
}

.share-btn ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.share-btn ul li {
  display: inline-block;
  margin-left: -40px;
  float: left;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
}

.share-btn ul li a.site-button {
  border-radius: 3px;
  width: 40px;
  line-height: 44px;
  height: 44px;
  display: block;
  color: #000;
  background: #e6e6e6;
}

.share-btn ul li a.site-button:hover {
  background: #d6d6d6;
}

.share-btn ul:hover li.share-button a.site-button {
  background: #a0a0a0;
}

.share-btn ul:hover li {
  margin-left: 4px;
}

.share-details-btn ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.share-details-btn ul li {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 6px;
}

@media only screen and (max-width: 1200px) {
  .blog-md .dez-post-media {
    width: 300px;
  }
}

@media only screen and (max-width: 767px) {

  .blog-md.blog-post .dez-pfost-media,
  .blog-md.blog-post .dez-post-info {
    float: none;
    margin: 0 0 0;
    width: 100%;
    display: block;
    padding-left: 0;
  }

  .blog-md.blog-post .dez-post-info {
    margin-top: 15px;
  }

  .blog-md .dez-post-media {
    width: 100%;
  }
}

/*Blog page pagination main*/

.nav-links:after {
  clear: both;
  content: "";
  display: table;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
}

.pagination .page-numbers {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  color: #767676;
  padding: 9px 15px;
  font-weight: 600;
  font-size: 12px;
  display: block;
  float: left;
  margin-left: -1px;
}

.pagination .page-numbers.current,
.pagination a.page-numbers:hover {
  background: #3396d1;
  color: #fff;
}

.pagination .previous i {
  padding-right: 5px;
}

.pagination .next i {
  padding-left: 5px;
}

.pagination i {
  font-size: 14px;
}

.pagination li.active a {
  /* background-color: #c5c5c5; */
  color: #fff;
}

/*Blog paging Next & Prev css*/

.nav-links .nav-previous a,
.nav-links .nav-next a {
  display: inline-block;
  color: #3396d1;
  font-weight: 600;
  margin-bottom: 20px;
  outline: none !important;
}

.nav-links .nav-previous a:hover,
.nav-links .nav-next a:hover {
  color: #0099cc;
}

.nav-links .nav-previous a:after,
.nav-links .nav-next a:after {
  content: "\f105";
  font-family: "FontAwesome";
  vertical-align: middle;
  margin-left: 2px;
  color: #333;
}

/*Post navigation*/

.post-navigation {
  background-color: #fff;
  padding: 30px;
  border-bottom: 2px solid #e3e3e3;
}

.post-navigation .screen-reader-text {
  margin-top: 0;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
  display: inline-block;
  width: 50%;
}

.post-navigation .nav-next {
  text-align: right;
}

.post-navigation .nav-previous a:after,
.post-navigation .nav-next a:after {
  display: none;
}

.post-navigation .nav-previous .post-title,
.post-navigation .nav-next .post-title {
  display: block;
  font-size: 15px;
  color: #777777;
  margin-top: 10px;
}

/*post panging*/

.dez-link-pages {
  padding: 20px 0 30px;
}

.dez-link-pages a {
  color: #fff;
  padding: 2px 6px;
  font-size: 12px;
  font-weight: 600;
  background-color: #ccc;
  margin: 0 2px;
}

/*Sticky Post*/

.sticky-post {
  position: absolute;
  right: 0;
  top: 0;
  background: #77c04b;
  color: #fff;
  padding: 10px 15px;
  text-transform: uppercase;
  font-weight: 600;
}

/*Post password form*/

.post-password-form {
  position: relative;
  clear: both;
}

.post-password-form input[type="password"] {
  width: 100%;
  border: 1px solid #ebedf2;
  padding: 10px 100px 10px 15px;
  height: 40px;
}

.post-password-form label {
  display: block;
}

.post-password-form input[type="submit"] {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 10px 20px;
  background-color: #333;
  color: #fff;
  border: none;
  height: 40px;
  text-transform: uppercase;
  font-weight: 600;
}

/*gallery css for blog post*/

.blog [class*="galleryid-"] {
  clear: both;
  margin: 0 auto;
  overflow: hidden;
}

.gallery .gallery-item {
  float: left;
  list-style: none;
  margin: 0px 0 0;
  overflow: hidden;
  padding: 0px 0px 5px 15px;
  text-align: center;
}

.gallery .gallery-caption {
  padding-top: 10px;
  font-size: 13px;
}

.gallery .gallery-item img {
  float: left;
  padding: 0 0px;
  width: 100%;
  border: none !important;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-icon img {
  margin: 0 auto;
}

.gallery-caption {
  color: #707070;
  color: rgba(51, 51, 51, 0.7);
  display: block;
  font-family: "Noto Sans", sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
  padding: 0.5em 0;
}

.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
  display: none;
}

/*side bar*/

.side-bar .widget {
  margin-bottom: 50px;
}

@media only screen and (max-width: 991px) {
  .side-bar {
    margin-bottom: 40px;
  }
}

/*Blog single*/
.blog-single .dez-post-meta {
  margin-bottom: 20px;
}

.blog-single .dez-post-text {
  margin-top: 20px;
}

.blog-single .dez-post-tags {
  margin-top: 20px;
}

.blog-single .dez-post-media {
  border-radius: 4px;
}

.blog-single.blog-style-1 .dez-post-meta {
  padding-top: 0;
}

.blog-single .dez-post-text p {
  text-align: justify;
}

/*= comment list = */

.comments-area {
  padding: 0;
}

.comments-area .comments-title {
  text-transform: uppercase;
  font-size: 20px;
}

ol.comment-list {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

ol.comment-list li.comment {
  position: relative;
  padding: 0;
}

ol.comment-list li.comment .comment-body {
  position: relative;
  padding: 20px;
  margin-bottom: 40px;
  margin-left: 80px;
  position: relative;
  border: 1px solid #e9e9e9;
  border-radius: 4px !important;
}

ol.comment-list li.comment .comment-body:before,
ol.comment-list li.comment .comment-body:after {
  content: "";
  position: absolute;
  top: 20px;
  width: 0;
  height: 0;
  border-width: 10px 12px 10px 0;
  border-style: solid;
}

ol.comment-list li.comment .comment-body:before {
  border-color: transparent #fff transparent #fff;
  z-index: 1;
  left: -12px;
  top: 22px;
}

ol.comment-list li.comment .comment-body:after {
  border-color: transparent #e9e9e9 transparent #e9e9e9;
  border-width: 12px 14px 12px 0;
  left: -14px;
}

ol.comment-list li.comment .comment-author {
  display: block;
  margin-bottom: 5px;
}

ol.comment-list li.comment .comment-author .avatar {
  position: absolute;
  top: 0;
  left: -80px;
  width: 56px;
  height: 56px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  border: 2px solid #fff;
}

ol.comment-list li.comment .comment-author .fn {
  display: inline-block;
  color: #000;
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 700;
  font-style: normal;
}

ol.comment-list li.comment .comment-author .says {
  display: none;
  color: #999999;
  font-weight: 600;
}

ol.comment-list li.comment .comment-meta {
  color: #8d8d8d;
  text-transform: uppercase;
  margin-bottom: 15px;
}

ol.comment-list li.comment .comment-meta a {
  color: #8d8d8d;
}

ol.comment-list li.comment .comment-meta a {
  color: #8d8d8d;
  text-transform: capitalize;
}

ol.comment-list li.comment .comment-meta:before,
ol.comment-list li.comment .reply a:before {
  font-family: "Font Awesome 5 Free";
  font-size: 16px;
}

ol.comment-list li.comment .comment-meta:before {
  content: "\f133";
}

ol.comment-list li.comment .reply a:before {
  content: "\f064";
  color: #555555;
  margin-right: 5px;
  vertical-align: middle;
}

ol.comment-list li.comment p {
  margin: 0 0 5px;
}

ol.comment-list li.comment .reply {
  position: absolute;
  top: 25px;
  right: 30px;
  margin-top: -5px;
  color: #efbb20;
  font-weight: 700;
}

ol.comment-list li .children {
  list-style: none;
  margin-left: 20px;
}

ol.comment-list li .children li {
  padding: 0;
}

@media only screen and (max-width: 767px) {
  .comments-area .padding-30 {
    padding: 15px;
  }

  ol.comment-list li.comment .comment-body {
    margin-bottom: 30px;
    margin-left: 70px;
  }

  ol.comment-list li.comment .comment-author .avatar {
    left: -75px;
    height: 60px;
    width: 60px;
  }

  ol.comment-list li .children {
    margin-left: 20px;
  }

  ol.comment-list li.comment .reply a {
    position: static;
  }
}

@media only screen and (max-width: 480px) {
  ol.comment-list li.comment .comment-body {
    margin-left: 52px;
  }

  ol.comment-list li.comment .comment-author .avatar {
    left: -55px;
    top: 12px;
    width: 40px;
    height: 40px;
  }
}

/*= comment form = */

.comment-respond {
  padding: 30px 30px;
  border: 1px solid #e9e9e9;
}

.comment-respond .comment-reply-title {
  text-transform: uppercase;
  font-size: 20px;
}

.comment-respond .comment-reply-title {
  font-size: 20px;
  font-weight: 600;
}

.comments-area .comment-form {
  margin: 0 -15px;
}

.comments-area .comment-form .comment-notes {
  display: none;
}

.comments-area .comment-form p {
  width: 33.333%;
  float: left;
  padding: 0 15px;
  margin-bottom: 30px;
  position: relative;
}

.comments-area .comment-form p.form-allowed-tags {
  width: 100%;
}

ol.comment-list li.comment .comment-respond .comment-form p {
  padding: 0 15px !important;
}

.comments-area .comment-form p label {
  display: none;
  line-height: 18px;
  margin-bottom: 10px;
}

.comments-area p:before {
  font-family: "themify";
  display: inline-block;
  position: absolute;
  left: 15px;
  top: 0;
  font-size: 16px;
  color: #ccc;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border: 1px solid #e1e6eb;
  text-align: center;
  border-radius: 4px 0 0 4px;
  -webkit-border-radius: 4px 0 0 4px;
}

.comments-area p.comment-form-author:before {
  content: "\e602";
}

.comments-area p.comment-form-email:before {
  content: "\e75a";
}

.comments-area p.comment-form-url:before {
  content: "\e665";
}

.comments-area p.comment-form-comment:before {
  content: "\e645";
}

.comments-area .comment-form p input[type="text"],
.comments-area .comment-form p textarea {
  width: 100%;
  height: 40px;
  line-height: 6px 12px;
  padding: 10px 10px 10px 50px;
  border: 1px solid #e1e6eb;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  text-transform: capitalize;
  outline: 0;
}

.comments-area .comment-form p.comment-form-comment {
  width: 100%;
  display: block;
  clear: both;
}

.comments-area .comment-form p textarea {
  height: 120px;
}

.comments-area .comment-form p.form-submit {
  clear: both;
  float: none;
  width: 100%;
  margin: 0;
}

.comments-area .comment-form p input[type="submit"] {
  background-color: #efbb20;
  border: none;
  border-radius: 3px;
  border-style: solid;
  border-width: 0;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  padding: 10px 20px;
  text-transform: uppercase;
}

.comments-area .comment-form p input[type="submit"]:hover,
.comments-area .comment-form p input[type="submit"]:focus,
.comments-area .comment-form p input[type="submit"]:active {
  background-color: #1d46f5;
  border-color: #1d46f5;
  color: #fff;
}

@media only screen and (max-width: 991px) {
  .comments-area .comment-form p {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .comments-area .comment-form p {
    width: 100%;
    float: none;
    margin-bottom: 20px;
  }

  .comment-respond {
    padding: 20px;
  }
}

/*---------------------------------------------------------------
22. WIDGETS
---------------------------------------------------------------*/
.widget {
  margin-bottom: 40px;
}

.widget.bg-white {
  border: 1px solid #ebedf2;
}

.widget.border-0 ul li {
  border: 0 none;
}

.widget-title {
  margin: 0 0 25px;
}

.widget-title {
  position: relative;
  margin-bottom: 30px;
  vertical-align: middle;
}

.widget .widget-title,
.widget .post-title {
  text-transform: uppercase;
}

.widget-title.style-1 {
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 12px;
}

.recent-posts-entry ul,
.category-entry ul {
  margin: 0;
  list-style: none;
  padding: 0;
}

/* widget link*/
.widget-link ul {
  margin: 0px;
  padding: 0px;
}

.widget-link ul li {
  list-style: none;
  display: inline-block;
  padding-left: 3px;
  padding-right: 10px;
  position: relative;
}

.widget-link ul li:last-child {
  padding-right: 3px;
}

.widget-link ul li:last-child:after {
  content: none;
}

.widget-link li:after {
  content: "/";
  position: absolute;
  right: 0;
}

/* widget listing*/

.widget_categories ul,
.widget_archive ul,
.widget_meta ul,
.widget_pages ul,
.widget_recent_comments ul,
.widget_nav_menu ul,
.widget_rss ul,
.widget_recent_entries ul,
.widget_services ul,
.widget_getintuch ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.widget_categories ul li,
.widget_archive ul li,
.widget_meta ul li,
.widget_pages ul li,
.widget_recent_comments ul li,
.widget_nav_menu li,
.widget_recent_entries ul li,
.widget_services ul li {
  padding-bottom: 18px;
  margin-bottom: 13px;
  border-bottom: 1px solid rgba(102, 102, 102, 0.11);
  position: relative;
  padding: 10px 10px 10px 15px;
  margin-bottom: 0;
  line-height: 20px;
}

.widget_categories ul li a,
.widget_archive ul li a,
.widget_meta ul li a,
.widget_pages ul li a,
.widget_recent_comments ul li a,
.widget_nav_menu li a,
.widget_recent_entries ul li a,
.widget_services ul li a {
  color: #767676;
  text-transform: capitalize;
}

.widget_categories ul li:before,
.widget_archive ul li:before,
.widget_meta ul li:before,
.widget_pages ul li:before,
.widget_recent_comments ul li:before,
.widget_nav_menu ul li:before,
.widget_recent_entries ul li:before,
.widget_services ul li:before {
  content: "\f105";
  position: absolute;
  left: 0;
  top: 10px;
  display: block;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
}

.widget_categories ul li li,
.widget_archive ul li li,
.widget_meta ul li li,
.widget_pages ul li li,
.widget_recent_comments ul li li,
.widget_nav_menu li li,
.widget_services li li {
  border-bottom: none;
  padding-left: 10px;
  padding-right: 5px;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 28px;
}

.widget_categories ul li li:before,
.widget_archive ul li li:before,
.widget_meta ul li li:before,
.widget_pages ul li li:before,
.widget_recent_comments ul li li:before,
.widget_nav_menu li li:before,
.widget_services li li:before {
  top: 0;
  left: -8px;
}

/*widget search custom*/
.list-2 {
  display: table;
}

.list-2 li {
  float: left;
  padding: 5px 5px 5px 20px;
  width: 50%;
  position: relative;
}

.list-2 li:before {
  content: "";
  font-size: 11px;
  left: 0;
  position: absolute;
  width: 12px;
  height: 1px;
  background: #c6cffa;
  top: 15px;
}

.list-2 li:hover:before {
  color: #1abc9c;
}

.list-2.w10 li {
  width: 100%;
}

/*widget search wp-default*/

.widget_search .screen-reader-text {
  display: block;
}

.searchform {
  position: relative;
}

.searchform input[type="text"] {
  width: 100%;
  height: 40px;
  padding: 10px 90px 10px 15px;
  border: 1px solid #cccccc;
}

.searchform input[type="submit"] {
  height: 40px;
  padding: 10px 15px;
  background-color: #77c04b;
  position: absolute;
  right: 0;
  bottom: 0;
  color: #ffffff;
  border-left: none;
  border-right: none;
  border-top: none;
  border-bottom: none;
}

.searchform input[type="submit"]:hover,
.searchform input[type="submit"]:focus,
.searchform input[type="submit"]:active {
  background-color: #6ab33e;
  color: #ffffff !important;
  border-bottom-color: #5a9e2f;
}

/* Search BX style 1 */
.search-bx.style-1 .input-group {
  border: 1px solid #efefef;
  border-radius: 4px;
  overflow: hidden;
}

.search-bx.style-1 .input-group-btn button {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: 0;
  color: #000000;
  font-size: 15px;
  height: 45px;
  width: 40px;
  border-width: 0;
}

.search-bx.style-1 .form-control {
  border: 1px solid #efefef;
  border-width: 0;
  font-size: 15px;
  height: 45px;
  padding: 5px 20px;
}

.search-bx.style-1 .input-group:hover,
.search-bx.style-1 .input-group:focus {
  border: 1px solid #000;
}

.dez-quik-search.search-style-1 {
  position: absolute;
  width: 100%;
  background-color: #fff !important;
  color: #000;
  border-radius: 4px;
}

.dez-quik-search.search-style-1 .form-control,
.dez-quik-search.search-style-1 .form-control::placeholder,
.dez-quik-search.search-style-1 .form-control::-moz-placeholder {
  color: #000;
}

/*widget recent-posts*/

.recent-posts-entry .post-date,
.tweets-feed-entry .tweet-date {
  color: #707070;
  font-style: normal;
}

.widget .post-title {
  line-height: 16px;
  margin-bottom: 8px;
  margin-top: 0;
  text-transform: capitalize;
  font-size: 15px;
  color: #404040;
  font-weight: 500;
}

.recent-posts-entry .widget-post {
  margin-bottom: 10px;
}

.recent-posts-entry .widget-post-bx:last-child {
  border-bottom: none;
}

.recent-posts-entry .dez-post-media {
  padding-right: 15px;
  width: 110px;
}

.recent-posts-entry .dez-post-media img {
  border-radius: 3px;
}

.recent-posts-entry .dez-post-info {
  background: transparent;
  padding: 0;
  margin-left: 110px;
  border: none;
}

.recent-posts-entry .post-meta span {
  margin-right: 10px;
}

.recent-posts-entry .dez-post-meta {
  margin-bottom: 0;
}

.recent-posts-entry .dez-post-info,
.recent-posts-entry .dez-post-media {
  display: table-cell;
  vertical-align: middle;
}

.recent-posts-entry .widget-post,
.recent-posts-entry .dez-post-info {
  overflow: hidden;
}

/*widget recent-comment*/

.widget_recent_comments ul li:before {
  content: "\f0e6";
}

.widget_recent_comments ul li {
  padding-left: 20px;
  color: #999;
}

/* widget meta*/

.widget_meta ul li a abbr[title] {
  color: #333;
  border-bottom: none;
}

/*widget calender*/

.widget_calendar caption::after {
  color: #707070;
  content: ">";
  font-family: "FontAwesome";
  margin: 0 0 0 5px;
}

.widget_calendar table {
  border-collapse: separate;
  border-spacing: 2px;
  width: 100%;
}

.widget_calendar thead {
  background-color: #999999;
}

.widget_calendar tfoot tr td {
  border: none;
  padding: 0px;
}

.widget_calendar tfoot tr td a {
  background-color: #fff;
  padding: 4px 10px;
}

.widget_calendar table thead tr th {
  font-size: 11px;
  padding: 5px;
  text-align: center;
  border: none;
  color: #fff;
}

.widget_calendar table tbody td {
  font-size: 13px;
  padding: 6px 5px;
  text-align: center;
  background-color: #fff;
  border: none;
  color: #444;
}

.widget_calendar table tbody td#today {
  background-color: #77c04b;
  color: #fff;
}

.widget_calendar table tbody td#today a {
  color: #fff;
}

/*widget tags-list*/

.widget_tag_cloud a {
  padding: 8px 10px;
  background-color: #ffffff;
  border: 1px solid #ebedf2;
  font-size: 12px;
  display: inline-block;
  margin: 0 0 5px;
  color: #555555;
  font-weight: 600;
}

.side-bar .widget_tag_cloud a:hover {
  background-color: #cccccc;
  color: #fff;
  box-shadow: 5px 5px 10px 0 rgba(37, 201, 65, 0.15);
  -webkit-box-shadow: 5px 5px 10px 0 rgba(37, 201, 65, 0.15);
  -moz-box-shadow: 5px 5px 10px 0 rgba(37, 201, 65, 0.15);
  -o-box-shadow: 5px 5px 10px 0 rgba(37, 201, 65, 0.15);
  -ms-box-shadow: 5px 5px 10px 0 rgba(37, 201, 65, 0.15);
}

.widget_tag_cloud.radius a {
  border-radius: 40px;
  padding: 7px 10px;
}

/*widget archive*/

.widget_archive select {
  width: 100%;
  padding: 5px;
  border: 1px solid #ccc;
}

/*widget text*/

.widget_text select {
  width: 100%;
  padding: 5px;
  border: 1px solid #ccc;
}

.widget_text select option {
  width: 100%;
}

/*widget categories*/

.widget_categories li {
  text-align: right;
}

.widget_categories li a {
  float: left;
  text-transform: capitalize;
}

/*widget RSS*/

.widget_rss ul {
  margin: 0;
  line-height: 20px;
}

.widget_rss ul li {
  line-height: 20px;
  margin-bottom: 15px;
}

.widget_rss ul .rsswidget {
  color: #333;
}

.widget_rss ul .rss-date {
  color: #3396d1;
}

.widget_rss ul .rssSummary {
  padding: 5px 0;
}

.widget_rss ul cite {
  color: #333;
  font-weight: 600;
}

/* widget get in tuch */

.widget_getintuch {
  padding-top: 10px;
}

.widget_getintuch li {
  margin-bottom: 20px;
  position: relative;
  padding-left: 40px;
}

.widget_getintuch b,
.widget_getintuch strong {
  display: block;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 600;
}

.widget_getintuch i {
  position: absolute;
  left: 0;
  top: 5px;
  text-align: center;
  font-size: 22px;
  width: 30px;
  height: 30px;
  line-height: 30px;
}

/* widget gallery */

.widget_gallery ul {
  padding-left: 0;
  display: table;
}

.widget_gallery.gallery-grid-4 li {
  width: 25%;
}

.gallery-grid-8 li {
  width: 12.5%;
}

@media only screen and (max-width: 767px) {
  .gallery-grid-8 li {
    width: 25%;
  }
}

.widget_gallery li {
  display: inline-block;
  width: 33.33%;
  float: left;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  padding: 2px;
}

.widget_gallery li img {
  display: inline-block;
  width: 100%;
}

.widget_gallery li:nth-child(3n-3) {
  margin-right: 0;
}

.widget_gallery li:hover {
  opacity: 0.7;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.widget_gallery a {
  display: inline-block;
}

/* Newslatter */
.widget-newslatter .news-box {
  background-color: #f5f6f7;
  padding: 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 4px;
}

.widget-newslatter p {
  font-style: italic;
  font-size: 15px;
}

.widget-newslatter .form-control {
  background: #ffffff none repeat scroll 0 0;
  border: 2px solid;
  border-color: #d0d0d0;
  height: 45px;
  margin-bottom: 15px;
  padding: 5px 20px;
  border-radius: 4px !important;
}

.widget-newslatter .site-button {
  padding: 12px 15px;
  font-weight: 700;
}

.news-box form:after {
  color: #000000;
  content: "Newslatter";
  font-family: montserrat;
  font-size: 50px;
  font-weight: 700;
  opacity: 0.05;
  position: absolute;
  top: -40px;
  z-index: -1;
}

.news-box:before {
  font-family: themify;
  content: "\e75a";
  font-size: 50px;
  font-weight: 700;
  opacity: 0.05;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  opacity: 0.05;
}

.news-box form {
  position: relative;
}

/* About us Widgets */
.widget-about .dez-title {
  margin: 15px 0 5px 0;
  color: #000;
}

.widget-about p {
  color: #333333;
  font-family: montserrat;
  font-size: 13px;
  line-height: 20px;
}

.widget-about .button-sm {
  font-weight: 700;
  padding: 5px 20px;
}

/* widget testimonial */
.widget-testimonial .testimonial-pic {
  height: 70px;
  width: 70px;
  border: 3px solid #ffffff;
  margin-bottom: 10px;
}

.widget-testimonial .testimonial-name {
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  color: #000;
}

.widget-testimonial .testimonial-position {
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  color: #888;
  font-size: 12px;
  font-style: inherit;
}

.widget-testimonial .testimonial-position p {
  line-height: 26px;
}

.widget-testimonial .testimonial-text {
  color: #505050;
  font-family: montserrat;
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 10px;
  padding: 0;
}

/*---------------------------------------------------------------
23. CUSTOMIZE CSS
	>set-radius
	>transition
	>float-clearfix
---------------------------------------------------------------*/
/*== >set-radius ==*/

.btn,
.panel,
.form-control,
.img-thumbnail,
.panel-head ing,
.dropdown-menu,
.panel-group .panel,
.nav-tabs>li>a,
.modal-content,
.navbar-toggler,
.nav-pills>li>a,
.pager li>a,
.pager li>span,
.well,
.alert,
.list-group-item:first-child,
.list-group-item:last-child,
.input-group-addon,
.btn-group-divides>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle),
.btn-group-divides>.btn:last-child:not(:first-child),
.btn-group>.dropdown-toggle:not(:first-child),
.dez-booking-form .dez-extra-services li .icon-bx-lg,
.dez-booking-form .dez-extra-services li.active .icon-bx-lg:after,
.widget_tag_cloud a,
.searchform input[type="text"],
.searchform input[type="submit"],
ol.comment-list li.comment .comment-body {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

/*== >transition ==*/

a,
.dez-box,
.btn,
.form-control,
.overlay-bx,
.overlay-icon li a i,
.icon-bx-xl,
.icon-bx-lg,
.icon-bx-md,
.icon-bx-sm,
.icon-bx-xs,
.share-social-bx li,
.indicator,
.profile-menu ul li,
.staff-member .member-done,
.how-dez-work .dez-box .shadow-bx img,
.how-dez-work .dez-box .step-no-bx,
.dez-info-has,
.dez-we-find .dez-box,
.navbar-toggler,
.logo-header,
.header-nav .nav>li>a,
.extra-nav,
.skew-secondry:hover,
.skew-primary:hover,
.skew-secondry:hover::after,
.skew-primary:hover::after {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.animate-slow {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.animate-mid {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.animate-fast {
  -webkit-transition: all 0.8s ease-out;
  -moz-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
  -ms-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
}

/*== >float-clearfix ==*/

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

.clearfix:after {
  clear: both;
}

/*error for select box*/

.has-error .bootstrap-select .dropdown-toggle,
.has-error .bootstrap-select .dropdown-toggle:hover,
.has-error .bootstrap-select .dropdown-toggle:focus {
  border-color: #a94442 !important;
}

/*succes for select box*/

.has-success .bootstrap-select .dropdown-toggle,
.has-success .bootstrap-select .dropdown-toggle:hover,
.has-success .bootstrap-select .dropdown-toggle:focus {
  border-color: #3c763d !important;
}

/*---------------------------------------------------------------
24. SORTCODES 
	>Buttons
	>Title separators		
	>Deviders	
	>Lists & bullets	
	>Tabs
	>Accordians		
	>Carousels
	>Testimonials	
	>Pricing table
	>Alert box	
	>Modal pop
	>Social icons
	>Breadcrumb
	>Tables
	>Image effects
	>Icon boxes
	>Box New Style 
---------------------------------------------------------------*/
/*==== Shortcode Css ====*/
.sort-title {
  margin-bottom: 40px;
}

.sort-title h4:after {
  left: -160px;
}

.sort-title.text-white h4:after,
.sort-title.text-white h4:before {
  background: #fff;
}

.sort-title h4:after,
.sort-title h4:before {
  background: #000 none repeat scroll 0 0;
  content: "";
  height: 1px;
  position: absolute;
  right: -160px;
  top: 50%;
  width: 150px;
  opacity: 0.15;
}

.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;
  }
}

/*== >Buttons ======= */
/* owl slider button */
.owl-prev,
.owl-next {
  background-color: #9eb86e7d;
  border-color: rgba(0, 0, 0, 0.5);
  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;
  border-radius: 4px;
}

.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.7);
  border-color: #3e2e23;
  color: #ffffff;
}

/* theme default button */
.button-example .btn,
.button-example .site-button,
.button-example .site-button-link {
  margin: 0 5px 10px 0;
}

/* Bootstrap button */
.btn {
  -moz-user-select: none;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 4px;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  padding: 8px 16px;
  text-align: center;
  transition: all 0.2s ease-in-out 0s;
  vertical-align: middle;
  white-space: nowrap;
  border: none;
}

.btn-success {
  background-color: #9eb86e7d;
  border-color: #9eb86e7d;
  color: #ffffff;
}

.btn-primary {
  background-color: #0275d8;
  border-color: #0275d8;
  color: #ffffff;
}

.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover {
  background-color: #9eb86e7d;
  border-color: #9eb86e7d;
}

.btn-info {
  background-color: #5bc0de;
  border-color: #5bc0de;
  color: #ffffff;
}

.btn-danger {
  background-color: #d9534f;
  border-color: #d9534f;
  color: #ffffff;
}

.btn-secondary {
  background-color: #ffffff;
  border-color: #cccccc;
  color: #292b2c;
}

/* Outline */
.btn-outline-danger {
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  border-color: #d9534f;
  color: #d9534f;
}

.btn-outline-primary {
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  border-color: #0275d8;
  color: #000000;
}

.btn-outline-secondary {
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  border-color: #cccccc;
  color: #cccccc;
}

.btn-outline-success {
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  border-color: #9eb86e7d;
  color: #9eb86e7d;
}

.btn-outline-info {
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  border-color: #5bc0de;
  color: #5bc0de;
}

.btn-outline-warning {
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  border-color: #f0ad4e;
  color: #f0ad4e;
}

/* Outline Hover */

.btn-outline-secondary:hover {
  background-color: hsl(0, 0%, 80%);
  border-color: hsl(0, 0%, 80%);
  color: hsl(0, 0%, 100%);
}

.btn-outline-success:hover {
  background-color: hsl(120, 39%, 54%);
  border-color: hsl(120, 39%, 54%);
  color: hsl(0, 0%, 100%);
}

.btn-outline-info:hover {
  background-color: hsl(194, 66%, 61%);
  border-color: hsl(194, 66%, 61%);
  color: hsl(0, 0%, 100%);
}

.btn-outline-warning:hover {
  background-color: hsl(35, 84%, 62%);
  border-color: hsl(35, 84%, 62%);
  color: hsl(0, 0%, 100%);
}

.btn-outline-danger:hover {
  background-color: hsl(2, 64%, 58%);
  border-color: hsl(2, 64%, 58%);
  color: hsl(0, 0%, 100%);
}

/* Bootstrap Btn Size */
.btn-group-lg>.btn,
.btn-lg {
  border-radius: 4px;
  font-size: 20px;
  padding: 12px 24px;
}

.btn-group-sm>.btn,
.btn-sm {
  border-radius: 3px;
  font-size: 12px;
  padding: 4px 8px;
}

.btn-group input[type="checkbox"],
.btn-group input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.site-button,
.site-button-secondry {
  color: #fff;
  padding: 10px 20px;
  display: inline-block;
  outline: none;
  cursor: pointer;
  outline: none;
  border-width: 0;
  border-style: solid;
  border-color: transparent;
  line-height: 1.42857;
  border-radius: 3px;
  font-weight: 400;
  text-align: center;
  white-space: pre;
}

.site-button {
  background-color: #efbb20;
}

.site-button:active,
.site-button:hover,
.site-button:focus,
.active>.site-button {
  background-color: #d8a409;
  color: #fff;
}

.site-button-secondry {
  background-color: #282a3c;
}

.site-button-secondry:active,
.site-button-secondry:hover,
.site-button-secondry:focus,
.active>.site-button-secondry {
  background-color: #3c3e4e;
  color: #fff;
}

/* button text uppercase */

.site-button.text-uppercase {
  text-transform: uppercase;
}

/* button size */
.button-sm {
  padding: 5px 10px;
  font-size: 12px;
}

.button-md {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 500;
}

.button-lg {
  font-size: 18px;
  font-weight: 600;
  padding: 18px 35px;
}

.button-xl {
  font-size: 22px;
  padding: 25px 35px;
}

/* button rounded */

.radius-no {
  border-radius: 0;
  -webkit-border-radius: 0;
}

.radius-sm {
  border-radius: 4px;
  -webkit-border-radius: 4px;
}

.radius-xl {
  border-radius: 100px;
  -webkit-border-radius: 100px;
}

.radius-md {
  border-radius: 8px;
  -webkit-border-radius: 8px;
}

/* button colors */
/* white */

.site-button.white {
  background-color: #fff;
  color: #777;
}

.site-button.white:hover,
.site-button.white:active,
.site-button.white:focus {
  background-color: #f4f4f4;
  color: #555;
}

/* black */

.site-button.black {
  background-color: #171717;
  color: #fff;
}

.site-button.black:hover,
.site-button.black:active,
.site-button.black:focus {
  background-color: #000;
  color: #fff;
}

/* Gray */

.site-button.gray {
  background-color: #666666;
  color: #fff;
}

.site-button.gray:hover,
.site-button.gray:active,
.site-button.gray.active,
.site-button.gray:focus {
  background-color: #555555;
  color: #fff;
}

/* pink */

.site-button.pink {
  background-color: #ff3c85;
  color: #fff;
}

.site-button.pink:hover,
.site-button.pink:active,
.site-button.pink.active,
.site-button.pink:focus {
  background-color: #ef2c75;
  color: #fff;
}

/* Blue */

.site-button.blue {
  background-color: #00c5dc;
  color: #fff;
}

.site-button.blue:hover,
.site-button.blue:active,
.site-button.blue.active,
.site-button.blue:focus {
  background-color: #00b5cc;
  color: #fff;
}

/* Green */

.site-button.green {
  background-color: #34bfa3;
  color: #fff;
}

.site-button.green:hover,
.site-button.green:active,
.site-button.green.active,
.site-button.green:focus {
  background-color: #24af93;
  color: #fff;
}

/* Orange */

.site-button.orange {
  background-color: #ef9800;
  color: #fff;
}

.site-button.orange:hover,
.site-button.orange:active,
.site-button.orange.active,
.site-button.orange:focus {
  background-color: #df8800;
  color: #fff;
}

/* Red */

.site-button.red {
  background-color: #f0526d;
  color: #fff;
}

.site-button.red:hover,
.site-button.red:active,
.site-button.red.active,
.site-button.red:focus {
  background-color: #f22d4e;
  color: #fff;
}

/* Brown */

.site-button.brown {
  background-color: #484a5c;
  color: #fff;
}

.site-button.brown:hover,
.site-button.brown:active,
.site-button.brown.active,
.site-button.brown:focus {
  background-color: #383a4c;
  color: #fff;
}

/* Yellow */

.site-button.yellow {
  background-color: #ffb822;
  color: #fff;
}

.site-button.yellow:hover,
.site-button.yellow:active,
.site-button.yellow.active,
.site-button.yellow:focus {
  background-color: #efa812;
  color: #fff;
}

/* purple */

.site-button.purple {
  background-color: #8862b9;
  color: #fff;
}

.site-button.purple:hover,
.site-button.purple:active,
.site-button.purple.active,
.site-button.purple:focus {
  background-color: #7852a9;
  color: #fff;
}

/* Button Gradiyant  */
/* white */

.site-button.white {
  background-color: #fff;
  color: #777;
}

.site-button.white:hover,
.site-button.white:active,
.site-button.white:focus {
  background-color: #f4f4f4;
  color: #555;
}

/* black */

.site-button.black.gradient {
  background: #000000;
  /* Old browsers */
  background: -moz-linear-gradient(45deg,
      #000000 0%,
      #727272 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg,
      #000000 0%,
      #727272 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg,
      #000000 0%,
      #727272 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#727272', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  color: #fff;
}

.site-button.black.gradient:hover,
.site-button.black.gradient:active,
.site-button.black.gradient:focus {
  background: #1e1e1e;
  /* Old browsers */
  background: -moz-linear-gradient(45deg,
      #1e1e1e 0%,
      #727272 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg,
      #1e1e1e 0%,
      #727272 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg,
      #1e1e1e 0%,
      #727272 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1e1e1e', endColorstr='#727272', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */

  color: #fff;
}

/* Gray */

.site-button.gradient.gray {
  background: #666666;
  /* Old browsers */
  background: -moz-linear-gradient(45deg,
      #666666 0%,
      #999999 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg,
      #666666 0%,
      #999999 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg,
      #666666 0%,
      #999999 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#666666', endColorstr='#999999', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */

  color: #fff;
}

.site-button.gradient.gray:hover,
.site-button.gradient.gray:active,
.site-button.gradient.gray:focus {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#4f4f4f+0,999999+100 */
  background: #4f4f4f;
  /* Old browsers */
  background: -moz-linear-gradient(45deg,
      #4f4f4f 0%,
      #999999 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg,
      #4f4f4f 0%,
      #999999 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg,
      #4f4f4f 0%,
      #999999 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4f4f4f', endColorstr='#999999', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */

  color: #fff;
}

/* pink */

.site-button.gradient.pink {
  background: #ff3c85;
  /* Old browsers */
  background: -moz-linear-gradient(45deg,
      #ff3c85 0%,
      #ff93bb 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg,
      #ff3c85 0%,
      #ff93bb 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg,
      #ff3c85 0%,
      #ff93bb 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c85', endColorstr='#ff93bb', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  color: #fff;
}

.site-button.gradient.pink:hover,
.site-button.gradient.pink:active,
.site-button.gradient.pink:focus {
  background: #ff3d81;
  /* Old browsers */
  background: -moz-linear-gradient(45deg,
      #ff3d81 0%,
      #ff7fae 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg,
      #ff3d81 0%,
      #ff7fae 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg,
      #ff3d81 0%,
      #ff7fae 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3d81', endColorstr='#ff7fae', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  color: #fff;
}

/* Blue */

.site-button.gradient.blue {
  background: #00c5db;
  /* Old browsers */
  background: -moz-linear-gradient(45deg,
      #00c5db 0%,
      #6dff9e 99%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg,
      #00c5db 0%,
      #6dff9e 99%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg,
      #00c5db 0%,
      #6dff9e 99%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00c5db', endColorstr='#6dff9e', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  color: #fff;
}

.site-button.gradient.blue:hover,
.site-button.gradient.blue:active,
.site-button.gradient.blue:focus {
  background: #00a9bc;
  /* Old browsers */
  background: -moz-linear-gradient(45deg,
      #00a9bc 0%,
      #54ea86 99%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg,
      #00a9bc 0%,
      #54ea86 99%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg,
      #00a9bc 0%,
      #54ea86 99%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00a9bc', endColorstr='#54ea86', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  color: #fff;
}

/* Green */

.site-button.gradient.green {
  background: #84ba3f;
  /* Old browsers */
  background: -moz-linear-gradient(45deg,
      #84ba3f 0%,
      #b7ff59 99%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg,
      #84ba3f 0%,
      #b7ff59 99%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg,
      #84ba3f 0%,
      #b7ff59 99%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#84ba3f', endColorstr='#b7ff59', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  color: #fff;
}

.site-button.gradient.green:hover,
.site-button.gradient.green:active,
.site-button.gradient.green:focus {
  background: #6dad1a;
  /* Old browsers */
  background: -moz-linear-gradient(45deg,
      #6dad1a 0%,
      #90ff00 99%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg,
      #6dad1a 0%,
      #90ff00 99%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg,
      #6dad1a 0%,
      #90ff00 99%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6dad1a', endColorstr='#90ff00', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */

  color: #fff;
}

/* Orange */

.site-button.gradient.orange {
  background: #ef940b;
  /* Old browsers */
  background: -moz-linear-gradient(45deg,
      #ef940b 0%,
      #ffd754 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg,
      #ef940b 0%,
      #ffd754 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg,
      #ef940b 0%,
      #ffd754 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ef940b', endColorstr='#ffd754', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  color: #fff;
}

.site-button.gradient.orange:hover,
.site-button.gradient.orange:active,
.site-button.gradient.orange:focus {
  background: #d68000;
  /* Old browsers */
  background: -moz-linear-gradient(45deg,
      #d68000 0%,
      #ffbf00 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg,
      #d68000 0%,
      #ffbf00 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg,
      #d68000 0%,
      #ffbf00 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d68000', endColorstr='#ffbf00', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  color: #fff;
}

/* Red */

.site-button.gradient.red {
  background: #ff1437;
  /* Old browsers */
  background: -moz-linear-gradient(45deg,
      #ff1437 0%,
      #ff5982 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg,
      #ff1437 0%,
      #ff5982 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg,
      #ff1437 0%,
      #ff5982 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff1437', endColorstr='#ff5982', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  color: #fff;
}

.site-button.gradient.red:hover,
.site-button.gradient.red:active,
.site-button.gradient.red:focus {
  background: #ff0022;
  /* Old browsers */
  background: -moz-linear-gradient(45deg,
      #ff0022 0%,
      #ff3866 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg,
      #ff0022 0%,
      #ff3866 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg,
      #ff0022 0%,
      #ff3866 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0022', endColorstr='#ff3866', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  color: #fff;
}

.site-button.gd,
.site-button.gd:active,
.site-button.gd:hover,
.site-button.gd:focus {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1ebbf0+8,39dfaa+100 */
  background: #1ebbf0;
  /* Old browsers */
  background: -moz-linear-gradient(45deg,
      #1ebbf0 8%,
      #39dfaa 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg,
      #1ebbf0 8%,
      #39dfaa 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg,
      #1ebbf0 8%,
      #39dfaa 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1ebbf0', endColorstr='#39dfaa', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}

/* Brown */

.site-button.gradient.brown {
  background: #303451;
  /* Old browsers */
  background: -moz-linear-gradient(45deg,
      #303451 0%,
      #7e8196 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg,
      #303451 0%,
      #7e8196 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg,
      #303451 0%,
      #7e8196 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#303451', endColorstr='#7e8196', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  color: #fff;
}

.site-button.gradient.brown:hover,
.site-button.gradient.brown:active,
.site-button.gradient.brown:focus {
  background: #1d213f;
  /* Old browsers */
  background: -moz-linear-gradient(45deg,
      #1d213f 0%,
      #777c9b 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg,
      #1d213f 0%,
      #777c9b 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg,
      #1d213f 0%,
      #777c9b 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1d213f', endColorstr='#777c9b', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  color: #fff;
}

/* Yellow */

.site-button.gradient.yellow {
  background: #ffb52d;
  /* Old browsers */
  background: -moz-linear-gradient(45deg,
      #ffb52d 34%,
      #ffd684 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg,
      #ffb52d 34%,
      #ffd684 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg,
      #ffb52d 34%,
      #ffd684 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffb52d', endColorstr='#ffd684', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */

  color: #fff;
}

.site-button.gradient.yellow:hover,
.site-button.gradient.yellow:active,
.site-button.gradient.yellow:focus {
  background: #e2a336;
  /* Old browsers */
  background: -moz-linear-gradient(45deg,
      #e2a336 34%,
      #ffc656 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg,
      #e2a336 34%,
      #ffc656 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg,
      #e2a336 34%,
      #ffc656 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e2a336', endColorstr='#ffc656', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  color: #fff;
}

/* purple */

.site-button.gradient.purple {
  background: #62369b;
  /* Old browsers */
  background: -moz-linear-gradient(45deg,
      #62369b 0%,
      #b37cff 87%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg,
      #62369b 0%,
      #b37cff 87%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg,
      #62369b 0%,
      #b37cff 87%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62369b', endColorstr='#b37cff', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  color: #fff;
}

.site-button.gradient.purple:hover,
.site-button.gradient.purple:active,
.site-button.gradient.purple:focus {
  background: #814ec4;
  /* Old browsers */
  background: -moz-linear-gradient(45deg,
      #814ec4 0%,
      #9e4aba 87%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg,
      #814ec4 0%,
      #9e4aba 87%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg,
      #814ec4 0%,
      #9e4aba 87%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#814ec4', endColorstr='#9e4aba', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  color: #fff;
}

/* Skew */
.button-skew {
  position: relative;
  text-align: center;
  margin-right: 21px;
  -moz-transform: skewX(-20deg);
  -webkit-transform: skewX(-20deg);
  -o-transform: skewX(-20deg);
  -ms-transform: skewX(-20deg);
  transform: skewX(-20deg);
}

.button-skew span {
  display: inline-block;
  -moz-transform: skewX(20deg);
  -webkit-transform: skewX(20deg);
  -o-transform: skewX(20deg);
  -ms-transform: skewX(20deg);
  transform: skewX(20deg);
}

.button-skew i {
  background-color: inherit;
  position: absolute;
  height: 100%;
  margin-right: -32px;
  right: 0;
  top: 0;
  padding: 12px 12px;
  line-height: normal;
}

.button-skew i:before {
  display: inline-block;
  -moz-transform: skewX(20deg);
  -webkit-transform: skewX(20deg);
  -o-transform: skewX(20deg);
  -ms-transform: skewX(20deg);
  transform: skewX(20deg);
}

.button-skew.button-sm i {
  padding: 7px 10px;
  margin-right: -27px;
}

.button-skew.button-lg i {
  padding: 25px 15px;
  margin-right: -40px;
}

.button-skew.button-xl i {
  padding: 35px 22px;
  margin-right: -55px;
}

/* Graphical */

.site-button.graphical {
  color: #fff;
  border-radius: 3px;
  text-shadow: 0 -1px rgba(0, 0, 0, 0.4);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.3),
    0 1px 3px -1px rgba(45, 60, 72, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.site-button.graphical:active {
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.25) inset;
}

/* 3D */

.site-button.button-3d {
  color: #fff;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  border-bottom: 4px solid rgba(0, 0, 0, 0.2);
  border-left: none;
  border-right: none;
  border-top: none;
}

/* Outline */

.text-white .site-button.outline {
  color: #fff;
}

.site-button.outline {
  color: #888;
  background: none;
  border-width: 1px;
  border-style: solid;
  border-color: inherit;
}

.site-button.outline-2 {
  border-width: 2px;
}

.site-button.outline.radius-xl,
.site-button.outline-2.radius-xl {
  border-radius: 100px;
}

/* white */

.site-button.outline.white {
  color: #e7e7e7;
  border-color: #e7e7e7;
}

.site-button.outline.white:hover {
  color: #666666;
}

/* black */

.site-button.outline.black {
  color: #171717;
  border-color: #171717;
}

/* gray */

.site-button.outline.gray {
  color: #666666;
  border-color: #666666;
}

/* pink */

.site-button.outline.pink {
  color: #e63f75;
  border-color: #e63f75;
}

/* blue */

.site-button.outline.blue {
  color: #42b8d4;
  border-color: #42b8d4;
}

/* green */

.site-button.outline.green {
  color: #35b494;
  border-color: #35b494;
}

/* orange */

.site-button.outline.orange {
  color: #e56713;
  border-color: #e56713;
}

/* red */

.site-button.outline.red {
  color: #d93223;
  border-color: #d93223;
}

/* brown */

.site-button.outline.brown {
  color: #69441f;
  border-color: #69441f;
}

/* yellow */

.site-button.outline.yellow {
  color: #efbb20;
  border-color: #efbb20;
}

/* purple */

.site-button.outline.purple {
  color: #ae1af7;
  border-color: #ae1af7;
}

/* hover */

.site-button.outline:hover {
  border-color: rgba(0, 0, 0, 0);
  color: #fff;
}

/* button text link */

.site-button-link {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: 0 none;
  display: inline-block;
  font-weight: 400;
}

.site-button-link.border-link {
  border-bottom: 2px solid;
  padding: 0;
}

.site-button-link i {
  margin-left: 10px;
}

/* white */

.site-button-link.white {
  color: #e7e7e7;
}

.site-button-link.white:hover,
.site-button-link.white:active,
.site-button-link.white:focus {
  color: #ccc;
}

/* black */

.site-button-link.black {
  color: #171717;
}

.site-button-link.black:hover,
.site-button-link.black:active,
.site-button-link.black:focus {
  color: #000;
}

/* Gray */

.site-button-link.gray {
  color: #666666;
}

.site-button-link.gray:hover,
.site-button-link.gray:active,
.site-button-link.gray:focus {
  color: #555555;
}

/* pink */

.site-button-link.pink {
  color: #e63f75;
}

.site-button-link.pink:hover,
.site-button-link.pink:active,
.site-button-link.pink:focus {
  color: #ef2c75;
}

/* Blue */

.site-button-link.blue {
  color: #42b8d4;
}

.site-button-link.blue:hover,
.site-button-link.blue:active,
.site-button-link.blue:focus {
  color: #00b5cc;
}

/* Green */

.site-button-link.green {
  color: #35b494;
}

.site-button-link.green:hover,
.site-button-link.green:active,
.site-button-link.green:focus {
  color: #26a585;
}

/* Orange */

.site-button-link.orange {
  color: #e56713;
}

.site-button-link.orange:hover,
.site-button-link.orange:active,
.site-button-link.orange:focus {
  color: #d55703;
}

/* Red */

.site-button-link.red {
  color: #d93223;
}

.site-button-link.red:hover,
.site-button-link.red:active,
.site-button-link.red:focus {
  color: #c51e0f;
}

/* Brown */

.site-button-link.brown {
  color: #69441f;
}

.site-button-link.brown:hover,
.site-button-link.brown:active,
.site-button-link.brown:focus {
  color: #5f3a15;
}

/* Yellow */

.site-button-link.yellow {
  color: #ecc731;
}

.site-button-link.yellow:hover,
.site-button-link.yellow:active,
.site-button-link.yellow:focus {
  color: #d4af19;
}

/* purple */

.site-button-link.purple {
  color: #ae1af7;
}

.site-button-link.purple:hover,
.site-button-link.purple:active,
.site-button-link.purple:focus {
  color: #9804e1;
}

/* Dropdown */
.dropdown-menu>li>a {
  padding: 10px 20px;
}

/* Box Shadow */

/* black */
.site-button.box-shadow.black {
  box-shadow: 0 5px 10px 2px rgba(0, 0, 0, 0.19);
}

/* gray */
.site-button.box-shadow.gray {
  box-shadow: 0 5px 10px 2px rgba(85, 85, 85, 0.19);
}

/* pink */
.site-button.box-shadow.pink {
  box-shadow: 0 5px 10px 2px rgba(239, 44, 177, 0.19);
}

/* blue */
.site-button.box-shadow.blue {
  box-shadow: 0 5px 10px 2px rgba(0, 181, 104, 0.19);
}

/* green */
.site-button.box-shadow.green {
  box-shadow: 0 5px 10px 2px rgba(36, 176, 147, 0.19);
}

/* orange */
.site-button.box-shadow.orange {
  box-shadow: 0 5px 10px 2px rgba(223, 136, 0, 0.19);
}

/* red */
.site-button.box-shadow.red {
  box-shadow: 0 5px 10px 2px rgba(242, 45, 78, 0.19);
}

/* brown */
.site-button.box-shadow.brown {
  box-shadow: 0 5px 10px 2px rgba(56, 58, 76, 0.19);
}

/* yellow */
.site-button.box-shadow.yellow {
  box-shadow: 0 5px 10px 2px rgba(239, 168, 18, 0.19);
}

/* purple */
.site-button.box-shadow.purple {
  box-shadow: 0 5px 10px 2px rgba(120, 82, 169, 0.19);
}

/* Circle */
.site-button.circle-sm {
  width: 28px;
  height: 28px;
  padding: 0;
  border-radius: 40px;
  font-size: 12px;
  line-height: 27px;
}

.site-button.circle {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 40px;
  line-height: 39px;
}

.site-button.circle-lg {
  border-radius: 40px;
  font-size: 20px;
  height: 55px;
  padding: 0;
  width: 55px;
  line-height: 54px;
}

.site-button.sharp-sm {
  width: 28px;
  height: 28px;
  padding: 0;
  font-size: 12px;
  line-height: 27px;
}

.site-button.sharp {
  width: 40px;
  height: 40px;
  padding: 0;
  line-height: 39px;
}

.site-button.sharp-lg {
  font-size: 20px;
  height: 55px;
  padding: 0;
  width: 55px;
  line-height: 54px;
}

/* Social Icon */

/* Social icon link */
.site-button-link.facebook {
  color: #3b5998;
}

.site-button-link.google-plus {
  color: #de4e43;
}

.site-button-link.linkedin {
  color: #007bb6;
}

.site-button-link.instagram {
  color: #8a5a4e;
}

.site-button-link.twitter {
  color: #1ea1f3;
}

.site-button-link.youtube {
  color: #ce201f;
}

.site-button-link.whatsapp {
  color: #01c854;
}

.site-button-link.facebook.hover,
.site-button-link.google-plus.hover,
.site-button-link.linkedin.hover,
.site-button-link.instagram.hover,
.site-button-link.twitter.hover,
.site-button-link.youtube.hover,
.site-button-link.whatsapp.hover {
  color: inherit;
}

.site-button-link.facebook.hover:hover,
.site-button-link.facebook.hover:focus,
.site-button-link.facebook.hover:active {
  color: #3b5998;
}

.site-button-link.google-plus.hover:hover,
.site-button-link.google-plus.hover:focus,
.site-button-link.google-plus.hover:active {
  color: #de4e43;
}

.site-button-link.linkedin.hover:hover,
.site-button-link.linkedin.hover:focus,
.site-button-link.linkedin.hover:active {
  color: #007bb6;
}

.site-button-link.instagram.hover:hover,
.site-button-link.instagram.hover:focus,
.site-button-link.instagram.hover:active {
  color: #8a5a4e;
}

.site-button-link.twitter.hover:hover,
.site-button-link.twitter.hover:focus,
.site-button-link.twitter.hover:active {
  color: #1ea1f3;
}

.site-button-link.youtube.hover:hover,
.site-button-link.youtube.hover:focus,
.site-button-link.youtube.hover:active {
  color: #ce201f;
}

.site-button-link.whatsapp.hover:hover,
.site-button-link.whatsapp.hover:focus,
.site-button-link.whatsapp.hover:active {
  color: #01c854;
}

.site-button.facebook {
  background-color: #3b5998;
}

.site-button.facebook:hover,
.site-button.facebook:focus,
.site-button.facebook:active {
  background-color: #4b69a8;
}

.site-button.google-plus {
  background-color: #de4e43;
}

.site-button.google-plus:hover,
.site-button.google-plus:focus,
.site-button.google-plus:active {
  background-color: #fe6e63;
}

.site-button.linkedin {
  background-color: #007bb6;
}

.site-button.linkedin:hover,
.site-button.linkedin:focus,
.site-button.linkedin:active {
  background-color: #209bd6;
}

.site-button.instagram {
  background-color: #8a5a4e;
}

.site-button.instagram:hover,
.site-button.instagram:focus,
.site-button.instagram:active {
  background-color: #aa7a6e;
}

.site-button.twitter {
  background-color: #1ea1f3;
}

.site-button.twitter:hover,
.site-button.twitter:focus,
.site-button.twitter:active {
  background-color: #0e91e3;
}

.site-button.youtube {
  background-color: #ce201f;
}

.site-button.youtube:hover,
.site-button.youtube:focus,
.site-button.youtube:active {
  background-color: #ee403f;
}

.site-button.whatsapp {
  background-color: #01c854;
}

.site-button.whatsapp:hover,
.site-button.whatsapp:focus,
.site-button.whatsapp:active {
  background-color: #00a834;
}

/* Social Icon Outline */
.site-button.facebook.outline,
.site-button.google-plus.outline,
.site-button.instagram.outline,
.site-button.linkedin.outline,
.site-button.twitter.outline,
.site-button.youtube.outline,
.site-button.whatsapp.outline {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid;
}

.site-button.facebook.outline {
  color: #3b5998;
}

.site-button.google-plus.outline {
  color: #de4e43;
}

.site-button.linkedin.outline {
  color: #007bb6;
}

.site-button.instagram.outline {
  color: #8a5a4e;
}

.site-button.twitter.outline {
  color: #1ea1f3;
}

.site-button.youtube.outline {
  color: #ce201f;
}

.site-button.whatsapp.outline {
  color: #01c854;
}

/* Outline Hover */
.site-button.facebook.outline:hover,
.site-button.facebook.outline:focus,
.site-button.facebook.outline:active {
  background-color: #4b69a8;
  color: #fff;
}

.site-button.google-plus.outline:hover,
.site-button.google-plus.outline:focus,
.site-button.google-plus.outline:active {
  background-color: #fe6e63;
  color: #fff;
}

.site-button.linkedin.outline:hover,
.site-button.linkedin.outline:focus,
.site-button.linkedin.outline:active {
  background-color: #209bd6;
  color: #fff;
}

.site-button.instagram.outline:hover,
.site-button.instagram.outline:focus,
.site-button.instagram.outline:active {
  background-color: #aa7a6e;
  color: #fff;
}

.site-button.twitter.outline:hover,
.site-button.twitter.outline:focus,
.site-button.twitter.outline:active {
  background-color: #0e91e3;
  color: #fff;
}

.site-button.youtube.outline:hover,
.site-button.youtube.outline:focus,
.site-button.youtube.outline:active {
  background-color: #ee403f;
  color: #fff;
}

.site-button.whatsapp.outline:hover,
.site-button.whatsapp.outline:focus,
.site-button.whatsapp.outline:active {
  background-color: #00a834;
  color: #fff;
}

@media only screen and (max-width: 991px) {

  .button-layout .site-button-link,
  .button-layout .site-secondry,
  .button-layout .site-button,
  .button-layout .btn {
    margin-bottom: 10px;
  }
}

/* Social White */
.site-button.white.facebook,
.site-button.white.google-plus,
.site-button.white.instagram,
.site-button.white.linkedin,
.site-button.white.twitter,
.site-button.white.youtube,
.site-button.white.whatsapp {
  background: #fff;
}

.site-button.white.facebook {
  color: #3b5998;
}

.site-button.white.google-plus {
  color: #de4e43;
}

.site-button.white.linkedin {
  color: #007bb6;
}

.site-button.white.instagram {
  color: #8a5a4e;
}

.site-button.white.twitter {
  color: #1ea1f3;
}

.site-button.white.youtube {
  color: #ce201f;
}

.site-button.white.whatsapp {
  color: #01c854;
}

.site-button.white.facebook:hover,
.site-button.white.google-plus:hover,
.site-button.white.instagram:hover,
.site-button.white.linkedin:hover,
.site-button.white.twitter:hover,
.site-button.white.youtube:hover,
.site-button.white.whatsapp:hover {
  color: #fff;
}

.site-button.white.facebook:hover {
  background-color: #3b5998;
}

.site-button.white.google-plus:hover {
  background-color: #de4e43;
}

.site-button.white.linkedin:hover {
  background-color: #007bb6;
}

.site-button.white.instagram:hover {
  background-color: #8a5a4e;
}

.site-button.white.twitter:hover {
  background-color: #1ea1f3;
}

.site-button.white.youtube:hover {
  background-color: #ce201f;
}

.site-button.white.whatsapp:hover {
  background-color: #01c854;
}

/* filter buttons css */
.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 li input {
  display: none;
}

.site-filters a {
  margin: 0 5px 5px 0;
}

.site-filters .active>[class*="site-button"] {
  color: #fff;
  background-color: #efbb20;
}

.site-filters.center {
  text-align: center;
}

.site-filters.center ul {
  display: inline-block;
  margin: auto;
}

.site-filters.center [class*="site-button"] {
  display: inline-block;
  margin: 0 5px 10px;
  text-transform: uppercase;
}

.mas-1 .card-container {
  margin-left: -1px;
}

/* Site Filters Style */
/* Site Filters Style */
.site-filters.style1 li a {
  color: #000316;
  font-family: montserrat;
  font-weight: 500;
  margin: 0;
  padding: 0 15px;
  position: relative;
}

.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;
  width: 2px;
}

.site-filters.style1 li.active a,
.site-filters.style1.white li.active a {
  color: var(--primary);
}

.site-filters.style1.white li a:after {
  background-color: #fff;
}

.site-filters.style1.white li a {
  color: #bfbfbf;
}

.site-filters .site-button.outline {
  border-color: #1abc9c;
}

.site-filters.filters-sm li a {
  padding: 5px 20px;
  font-size: 13px;
  font-weight: 500;
}

.site-filters.gray li a {
  background-color: #e0e3f6;
  color: #000;
}

.site-filters .button-sm {
  font-size: 13px;
  padding: 5px 20px;
}

@media only screen and (max-width: 480px) {
  .site-filters.center [class*="site-button"] {
    margin: 0 1px 5px;
    padding: 5px 10px;
    font-size: 12px;
  }
}

/*== >Title separators ====== */

.dez-separator-outer {
  overflow: hidden;
}

.dez-separator {
  display: inline-block;
  height: 2px;
  width: 80px;
  margin-bottom: 10px;
  position: relative;
}

.dez-separator.m-b0 {
  margin-bottom: 0;
}

.dez-separator.style-liner {
  width: 20px;
}

.dez-separator.style-icon {
  width: 50px;
  height: auto;
  text-align: center;
}

.dez-separator.style-icon i {
  font-size: 40px;
  line-height: 40px;
}

.dez-separator[class*="style-"]:after,
.dez-separator[class*="style-"]:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50px;
  width: 80px;
  height: 15px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.dez-separator[class*="style-"]:before {
  left: auto;
  right: 50px;
}

.dez-separator.style-skew {
  width: 15px;
  height: 10px;
  margin-left: 1px;
  margin-right: 1px;
  -moz-transform: skewX(-10deg);
  -webkit-transform: skewX(-10deg);
  -o-transform: skewX(-10deg);
  -ms-transform: skewX(-10deg);
  transform: skewX(-10deg);
}

.dez-separator.style-skew[class*="style-"]:after,
.dez-separator.style-skew[class*="style-"]:before {
  width: 80px;
  height: 4px;
  left: 20px;
  -moz-transform: translateY(-50%) skewX(-10deg);
  -webkit-transform: translateY(-50%) skewX(-10deg);
  -o-transform: translateY(-50%) skewX(-10deg);
  -ms-transform: translateY(-50%) skewX(-10deg);
  transform: translateY(-50%) skewX(-10deg);
}

.dez-separator.style-skew[class*="style-"]:before {
  right: 20px;
  left: auto;
}

.dez-separator.bnr-title {
  height: 1px;
  width: 155px;
  opacity: 0.5;
}

.dez-separator.bnr-title:before {
  height: inherit;
  right: -80px;
  width: 25px;
}

.dez-separator.bnr-title:after {
  height: inherit;
  right: -90px;
  top: 0;
  width: 6px;
}

.dez-separator.bnr-title:before,
.dez-separator.bnr-title:after {
  position: absolute;
  content: "";
  background-color: inherit;
}

.dez-separator.bnr-title i {
  background-color: inherit;
  display: block;
  height: inherit;
  position: absolute;
  right: -50px;
  width: 45px;
}

/*== >Deviders ====== */

.dez-divider {
  height: 1px;
  position: relative;
  margin: 30px 0;
}

.dez-divider.tb20 {
  margin: 20px 0;
}

.dez-divider.tb15 {
  margin: 15px 0;
}

.dez-divider.tb10 {
  margin: 10px 0;
}

.dez-divider.tb0 {
  margin: 0;
}

.dez-divider.divider-2px {
  height: 2px;
}

.dez-divider.divider-3px {
  height: 3px;
}

.dez-divider.divider-4px {
  height: 4px;
}

.dez-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%);
}

.dez-divider.icon-left {
  margin-left: 40px;
}

.dez-divider.icon-left i {
  left: -40px;
}

.dez-divider.icon-right {
  margin-right: 40px;
}

.dez-divider.icon-right i {
  left: auto;
  right: -40px;
}

.dez-divider.icon-center i {
  left: 50%;
  margin-left: -5px;
}

/*== >Lists & bullets ====== */

.list-circle,
.list-angle-right,
.list-arrow,
.list-check,
.list-checked,
.list-icon-box,
.list-chevron-circle,
.list-hand-point,
.list-cup,
.list-pen,
.list-heart,
.list-star {
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none;
}

.list-circle li,
.list-angle-right li,
.list-arrow li,
.list-check li,
.list-checked li,
.list-icon-box li,
.list-chevron-circle li,
.list-hand-point li,
.list-cup li,
.list-pen li,
.list-heart li,
.list-star li {
  padding: 5px 5px 5px 30px;
  position: relative;
  font-weight: 500;
}

.list-circle li:before,
.list-angle-right li:before,
.list-arrow li:before,
.list-check li:before,
.list-checked li:before,
.list-icon-box li:before,
.list-chevron-circle li:before,
.list-hand-point li:before,
.list-cup li:before,
.list-pen li:before,
.list-heart li:before,
.list-star li:before {
  font-family: "themify";
  position: absolute;
  left: 0;
  top: 5px;
  display: block;
  font-size: 15px;
  color: #777;
}

ul[class*="list-"] {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
}

.list-circle li:before {
  font-size: 16px;
}

.list-circle li:before {
  content: "\e724";
}

.list-angle-right li:before {
  content: "\e628";
}

.list-arrow li:before {
  content: "\e661";
}

.list-check li:before {
  content: "\e64c";
}

.list-checked li:before {
  content: "\e64d";
  font-family: "themify";
  font-size: 15px;
}

.list-icon-box li:before {
  content: "\e6e8";
}

.list-chevron-circle li:before {
  content: "\e65d";
}

.list-hand-point li:before {
  content: "\e71b";
}

.list-star li:before {
  content: "\e60a";
}

.list-cup li:before {
  content: "\e641";
}

.list-pen li:before {
  content: "\e61c";
}

.list-heart li:before {
  content: "\e634";
}

/*listing before icon color css*/

.primary li:before {
  color: #efbb20;
}

.secondry li:before {
  color: #77c04b;
}

.black li:before {
  color: #000;
}

.white li:before {
  color: #fff;
}

.orange li:before {
  color: #ff6600;
}

.green li:before {
  color: #00cc00;
}

.red li:before {
  color: #ff3737;
}

.no-margin {
  margin: 0 0 0 !important;
  list-style: none;
}

/*listing before numbers*/
.list-num-count {
  counter-reset: li;
  padding-left: 0;
}

.list-num-count>li {
  position: relative;
  margin: 0 0 6px 30px;
  padding: 4px 8px;
  list-style: none;
}

.list-num-count>li:before {
  content: counter(li, decimal);
  counter-increment: li;
  position: absolute;
  top: 0;
  left: -28px;
  width: 28px;
  height: 28px;
  padding: 5px;
  color: #fff;
  background: #efbb20;
  font-weight: bold;
  text-align: center;
  font-size: 12px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
}

.list-num-count.lower-alpha>li:before {
  content: counter(li, lower-alpha);
}

.list-num-count.upper-alpha>li:before {
  content: counter(li, upper-alpha);
}

.list-num-count.upper-roman>li:before {
  content: counter(li, upper-roman);
}

.list-num-count.no-round>li:before {
  background-color: rgba(0, 0, 0, 0);
  color: #333333;
  font-size: 15px;
  font-weight: normal;
  height: auto;
  left: -30px;
  margin: 0;
  width: auto;
}

.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;
}

.reverse.primary[class*="list-"] li:hover:before {
  background-color: #1abc9c;
  color: #fff;
}

.rounded[class*="list-"] li {
  padding: 10px 0 10px 45px;
}

.rounded[class*="list-"] li {
  padding: 10px 0 10px 45px;
}

.rounded.border[class*="list-"] li:before {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid;
  line-height: 28px;
}

/* List Style Box */
[class*="list-"].list-box>li {
  background: #ffffff none repeat scroll 0 0;
  border-radius: 4px;
  color: #000000;
  margin-bottom: 6px;
  padding: 10px 20px 10px 50px;
}

[class*="list-"].list-box>li:before {
  background: #1abc9c none repeat scroll 0 0;
  border-radius: 4px 0 0 4px;
  color: #ffffff;
  display: table-cell;
  height: 100%;
  padding: 10px 0;
  text-align: center;
  top: 0;
  vertical-align: middle;
  width: 40px;
}

[class*="list-"].list-box>li {
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}

[class*="list-"].style1.list-box>li {
  margin-left: 42px;
  border-radius: 0 4px 4px 0;
  padding: 10px 20px 10px 20px;
}

[class*="list-"].style1.list-box>li:before {
  left: -42px;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

[class*="list-"].style2.list-box>li {
  padding: 10px 20px 10px 60px;
}

[class*="list-"].style2.list-box>li:after {
  font-family: FontAwesome;
  content: "\f0da";
  left: 39px;
  position: absolute;
  top: 50%;
  color: #1abc9c;
  font-size: 18px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

[class*="list-"].list-box>li:hover,
[class*="list-"].style2.list-box>li:hover {
  transform: scale(1.05);
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -o-transform: scale(1.05);
}

[class*="list-"].style1.list-box>li:hover {
  transform: scale(1);
  -o-transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
}

[class*="list-"].style1.list-box>li:hover:before {
  transform: scale(1.2);
  -o-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
}

[class*="list-"].list-box.reverse>li:before {
  color: #1abc9c;
  background: #fff;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

/*== >Tabs ========= */
/*tabs style 1 [ defult ]*/

.dez-tabs .tab-pane {
  padding: 20px 0;
}

.dez-tabs .nav-tabs>li>a {
  background: #f6f7f8;
  color: #3d474a;
  -webkit-border-radius: 0;
  border-radius: 0;
  font-family: montserrat;
  font-size: 15px;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 3px;
  display: inline-block;
}

.dez-tabs .nav-tabs>li>a.active,
.dez-tabs .nav-tabs>li>a.active:focus,
.dez-tabs .nav-tabs>li>a.active:hover {
  background-color: #fff;
  border-color: #ebedf2;
  border-bottom: 1px solid #fff;
}

.dez-tabs .nav>li>a:focus,
.dez-tabs .nav>li>a:hover {
  background-color: transparent;
}

.dez-tabs .nav li a:hover {
  border: 1px solid transparent;
}

.dez-tabs .nav-tabs>li>a i {
  color: #efbb20;
  margin-right: 5px;
}

/*tabs bg  [ tabs background ]*/

.dez-tabs.bg-tabs .nav-tabs>li>a {
  border: 1px solid #ebedf2;
  background-color: #efefef;
  margin-right: 2px;
}

.dez-tabs.bg-tabs .nav-tabs>li>a.active {
  border-bottom: 1px solid transparent;
  background-color: #fff;
}

.dez-tabs.vertical.bg-tabs .nav-tabs>li>a {
  border: 1px solid #ebedf2;
}

.dez-tabs.vertical.bg-tabs .nav-tabs>li>a.active {
  border-right: 1px solid transparent;
}

.dez-tabs.vertical.right.bg-tabs .nav-tabs>li>a {
  border: 1px solid #ebedf2;
}

.dez-tabs.vertical.right.bg-tabs .nav-tabs>li>a.active {
  border-left: 1px solid transparent;
}

/*tabs bg & top border  [ tabs background & top border in active ]*/

.dez-tabs.border-top .nav-tabs>li>a.active {
  border-top: 2px solid #efbb20;
  padding: 9px 15px 10px;
}

/*tabs style 2 [ content with border outer ]*/

.dez-tabs.border .tab-pane {
  padding: 20px;
  border: 1px solid #ebedf2;
  margin-top: -1px;
}

/*tabs style 3  [ left-nav ]*/

.dez-tabs.vertical .nav-tabs {
  float: left;
  width: 170px;
  border-bottom: none;
  border-right: 1px solid #ebedf2;
}

.dez-tabs.vertical .tab-pane {
  padding: 10px 0 10px 20px;
}

.dez-tabs.vertical .nav-tabs li {
  float: none;
  margin-right: -1px;
}

.dez-tabs.vertical .nav-tabs li a {
  margin-right: 0;
  border-right: none;
}

.dez-tabs.vertical .nav-tabs li a.active {
  border-bottom: 1px solid #ebedf2;
}

.dez-tabs.vertical .tab-content {
  border-left: 1px solid #ebedf2;
  margin-left: 169px;
}

/*tabs style 4  [ left-nav & content with border ]*/

.dez-tabs.vertical.border .tab-pane {
  padding: 20px;
  margin-left: -1px;
}

/*tabs style 5  [ right-nav ]*/

.dez-tabs.vertical.right .nav-tabs {
  border-left: 1px solid #ebedf2;
  border-right: none;
  float: right;
}

.dez-tabs.vertical.right .nav-tabs li {
  margin-right: 0;
  margin-left: -1px;
}

.dez-tabs.vertical.right .nav-tabs li a {
  border-right: 1px solid transparent;
  border-left: none;
}

.dez-tabs.vertical.right .nav-tabs li a.active {
  border-right: 1px solid #ebedf2;
  border-left: none;
}

.dez-tabs.vertical.right .tab-content {
  border-left: none;
  border-right: 1px solid #ebedf2;
  margin-right: 169px;
  margin-left: 0;
}

.dez-tabs.vertical.right .tab-pane {
  padding: 10px 20px 10px 0;
}

/* Tabs Style Button  */
.tabs-site-button .nav-tabs {
  border: 0;
}

.tabs-site-button .nav-tabs li a {
  padding: 13px 20px;
}

.tabs-site-button .nav-tabs li a,
.tabs-site-button .nav-tabs li a:hover,
.tabs-site-button .nav-tabs li a:focus {
  background: #f8f8f8 none repeat scroll 0 0;
  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: #1abc9c;
  color: #fff;
  border: 0;
}

.tabs-site-button .nav-tabs li a.active i {
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .tabs-site-button .nav-tabs li a {
    padding: 13px 20px;
  }
}

/*tabs style 6  [ right-nav & content with border ]*/

.dez-tabs.vertical.right.border .tab-pane {
  padding: 20px;
  margin-right: -1px;
}

/*== >Accordians =====*/

.panel {
  box-shadow: none;
  -webkit-box-shadow: none;
}

.dez-accordion .panel {
  border: none;
  border-radius: 0;
  margin-bottom: -1px;
}

.acod-head {
  position: relative;
}

.acod-title {
  margin-top: 0;
  margin-bottom: 0;
}

.acod-head .fa {
  margin-right: 5px;
}

.acod-head a {
  display: block;
  padding: 17px 40px 17px 25px;
  border: 1px solid #dddddd;
  border-radius: 4px;
}

.acod-head a,
.acod-head a:hover,
.acod-head a.collapsed:hover {
  color: #efbb20;
}

.acod-head a.collapsed,
.acod-head a.collapsed:after {
  color: #3d474a;
}

.acod-head a:after {
  font-family: "themify";
  content: "\e622";
  float: right;
  color: #efbb20;
  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: 1px solid #ebedf2;
  border-right: 1px solid #ebedf2;
  border-bottom: 1px solid #ebedf2;
  border-top: 1px solid transparent;
  margin-top: -1px;
  border-radius: 0 0 4px 4px;
}

.acod-content {
  margin: 20px;
}

/* accordian Style  */
.accdown1 .acod-head a:after {
  content: "\e64b";
}

.accdown1 .acod-head a.collapsed:after {
  content: "\e649";
}

/*== accordian rounded corners ==*/
.dez-accordion.rounded .panel:first-child .acod-head a {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.dez-accordion.rounded .panel:last-child .acod-head a.collapsed {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.dez-accordion.rounded .panel:last-child .acod-body {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.dez-accordion.rounded .panel:last-child .acod-body.in {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

/*== accordian space between panel ==*/

.dez-accordion.space .panel {
  margin-bottom: 5px;
}

.dez-accordion.rounded.space .panel .acod-head a {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.dez-accordion.rounded.space .panel .acod-head a.collapsed {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.dez-accordion.rounded.space .panel .acod-body {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

/*== accordian background for title ==*/

.dez-accordion.bg-title .acod-head a {
  background-color: #f7f8fa;
}

/*== accordian no cover border with content area ==*/

.dez-accordion.no-cover .acod-body {
  border: none;
}

.dez-accordion.no-cover .acod-content {
  padding-left: 20px;
  margin-right: 10px;
  border-left: 2px solid #e8e8e8;
  position: relative;
}

.dez-accordion.no-cover .acod-content:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -5px;
  width: 8px;
  height: 8px;
  background-color: #fff;
  border: 2px solid #e8e8e8;
}

/*== accordian title bottom bordered ==*/

.dez-accordion.border-bottom .acod-head a {
  border-left: none;
  border-right: none;
  border-top: none;
  padding-left: 0;
}

/* Accordion Color and Background Grediyant */
.dez-accordion.primary .acod-head a {
  background-color: #0046c6;
  color: #fff;
  border: 0;
}

.dez-accordion.primary .acod-head a:hover {
  color: #fff;
}

.dez-accordion.primary .acod-head a:after {
  color: #fff;
}

.dez-accordion.primary.active-bg .acod-head .collapsed {
  background-color: #fff;
}

.dez-accordion.primary.active-bg .acod-head a.collapsed:after,
.dez-accordion.primary.active-bg .acod-head .collapsed {
  color: #000;
}

.dez-accordion.primary.active-bg .acod-head .collapsed {
  border: 1px solid #ebedf2;
}

/* gradient1 */
.dez-accordion.gradient-1 .acod-head a {
  background: #0046c6;
  /* Old browsers */
  background: -moz-linear-gradient(45deg,
      #0046c6 0%,
      #c927f1 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg,
      #0046c6 0%,
      #c927f1 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg,
      #0046c6 0%,
      #c927f1 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0046c6', endColorstr='#c927f1', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  color: #fff;
  border: 0;
}

.dez-accordion.gradient-2 .acod-head a {
  background: #ff90e1;
  /* Old browsers */
  background: -moz-linear-gradient(45deg,
      #ff90e1 0%,
      #28b1ff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg,
      #ff90e1 0%,
      #28b1ff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg,
      #ff90e1 0%,
      #28b1ff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff90e1', endColorstr='#28b1ff', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  color: #fff;
  border: 0;
}

.dez-accordion.gradient-1 .acod-head a:hover,
.dez-accordion.gradient-2 .acod-head a:hover {
  color: #fff;
}

.dez-accordion.gradient-1 .acod-head a:after,
.dez-accordion.gradient-2 .acod-head a:after {
  color: #fff;
}

.dez-accordion.gradient-1.active-bg .acod-head .collapsed,
.dez-accordion.gradient-2.active-bg .acod-head .collapsed {
  background: #fff;
}

.dez-accordion.gradient-1.active-bg .acod-head a.collapsed:after,
.dez-accordion.gradient-2.active-bg .acod-head a.collapsed:after,
.dez-accordion.gradient-1.active-bg .acod-head .collapsed,
.dez-accordion.gradient-2.active-bg .acod-head .collapsed {
  color: #000;
}

.dez-accordion.gradient-1.active-bg .acod-head .collapsed,
.dez-accordion.gradient-2.active-bg .acod-head .collapsed {
  border: 1px solid #ebedf2;
}

/* Green */
.dez-accordion.green .acod-head a {
  background-color: #24a88d;
  color: #fff;
  border: 0;
}

.dez-accordion.green .acod-head a:hover {
  color: #fff;
}

.dez-accordion.green .acod-head a:after {
  color: #fff;
}

.dez-accordion.green.active-bg .acod-head .collapsed {
  background-color: #fff;
}

.dez-accordion.green.active-bg .acod-head a.collapsed:after,
.dez-accordion.green.active-bg .acod-head .collapsed {
  color: #000;
}

.dez-accordion.green.active-bg .acod-head .collapsed {
  border: 1px solid #ebedf2;
}

/* Yellow */
.dez-accordion.yellow .acod-head a {
  background-color: #efb822;
  color: #fff;
  border: 0;
}

.dez-accordion.yellow .acod-head a:hover {
  color: #fff;
}

.dez-accordion.yellow .acod-head a:after {
  color: #fff;
}

.dez-accordion.yellow.active-bg .acod-head .collapsed {
  background-color: #fff;
}

.dez-accordion.yellow.active-bg .acod-head a.collapsed:after,
.dez-accordion.yellow.active-bg .acod-head .collapsed {
  color: #000;
}

.dez-accordion.yellow.active-bg .acod-head .collapsed {
  border: 1px solid #ebedf2;
}

/* red */
.dez-accordion.red .acod-head a {
  background-color: #ef516c;
  color: #fff;
  border: 0;
}

.dez-accordion.red .acod-head a:hover {
  color: #fff;
}

.dez-accordion.red .acod-head a:after {
  color: #fff;
}

.dez-accordion.red.active-bg .acod-head .collapsed {
  background-color: #fff;
}

.dez-accordion.red.active-bg .acod-head a.collapsed:after,
.dez-accordion.red.active-bg .acod-head .collapsed {
  color: #000;
}

.dez-accordion.red.active-bg .acod-head .collapsed {
  border: 1px solid #ebedf2;
}

/* blue */
.dez-accordion.blue .acod-head a {
  background-color: #36a3f7;
  color: #fff;
  border: 0;
}

.dez-accordion.blue .acod-head a:hover {
  color: #fff;
}

.dez-accordion.blue .acod-head a:after {
  color: #fff;
}

.dez-accordion.blue.active-bg .acod-head .collapsed {
  background-color: #fff;
}

.dez-accordion.blue.active-bg .acod-head a.collapsed:after,
.dez-accordion.blue.active-bg .acod-head .collapsed {
  color: #000;
}

.dez-accordion.blue.active-bg .acod-head .collapsed {
  border: 1px solid #ebedf2;
}

/*== accordian title bottom bordered with colored ==*/

.dez-accordion.border-bottom.no-border .acod-head a {
  border: none;
}

.dez-accordion.no-border .acod-content {
  margin-top: 10px;
  margin-bottom: 10px;
}

/* No Gap */
.no-gap .acod-title a {
  border: 0 none;
  padding: 10px 0;
}

.no-gap .acod-body,
.no-gap .collapse {
  border: 0 none;
}

.no-gap .acod-content {
  margin: 10px 0 10px;
}

/* accordian size  */
.acco-sm .acod-head a {
  font-size: 12px;
  padding: 5px 30px 5px 15px;
}

.acco-sm .acod-head a:after {
  font-size: 16px;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.acco-lg .acod-head a {
  padding: 18px 40px 18px 25px;
  font-size: 18px;
}

.acco-lg .acod-head a:after {
  font-size: 34px;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.acco-xl .acod-head a {
  font-size: 22px;
  padding: 25px 50px 25px 30px;
}

.acco-xl .acod-head a:after {
  font-size: 34px;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

/*== >Carousels ======*/
/* Blog carousel */
.ow-post-info {
  padding: 20px;
  background-color: #fff;
  border: 1px solid #ebebeb;
}

.ow-post-title .post-title {
  margin: 0 0 10px;
}

.ow-post-text {
  margin-bottom: 10px;
}

.ow-post-text p:last-child {
  margin: 0;
}

.ow-post-readmore {
  margin-bottom: 10px;
}

.ow-post-meta {
  margin-bottom: 10px;
}

.ow-post-meta ul {
  margin: 0 -4px;
  list-style: none;
}

.ow-post-meta ul li {
  padding: 0;
  display: inline-block;
}

.ow-post-meta li:after {
  content: "/";
  display: inline-block;
  font-weight: normal;
  margin-left: 5px;
  opacity: 0.5;
}

.ow-post-meta li:last-child:after {
  display: none;
}

.ow-post-meta a {
  color: #a9a9a9;
}

.ow-post-meta li i {
  color: #7b7b7b;
  margin: 0 5px;
}

.ow-post-tags {
  border-top: 1px solid #e9e9e9;
  padding-top: 10px;
}

.ow-post-tags .post-comment {
  float: left;
  font-weight: bold;
  text-transform: uppercase;
}

.ow-post-tags .post-comment a {
  color: #a9a9a9;
}

.ow-post-tags .post-tags {
  margin: 0 -3px;
  list-style: none;
}

.ow-post-tags .post-tags a {
  border: 1px solid #ebebeb;
  padding: 2px 8px 1px;
  color: #777;
  margin: 0 3px;
  display: inline-block;
  text-transform: uppercase;
  font-size: 11px;
}

.ow-post-tags .post-tags a:hover,
.ow-post-tags .post-tags a:active,
.ow-post-tags .post-tags a:focus {
  border: 1px solid #0098a6;
  color: #0098a6;
}

/* empty media */

.no-image-blog.date-style-2 .ow-post-info {
  padding-top: 70px;
}

/*Event carousel */

.ow-event-info {
  position: relative;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #ebebeb;
}

.ow-event-title .event-title {
  margin: 0 0 10px;
}

.ow-event-text {
  margin-bottom: 10px;
}

.ow-event-text p:last-child {
  margin: 0;
}

.ow-event-readmore {
  margin-bottom: 10px;
}

.ow-event-meta ul {
  margin: 0;
}

.ow-event-meta ul li {
  color: #a9a9a9;
  font-weight: 600;
  display: inline-block;
  padding-left: 20px;
}

.ow-event-meta ul li i {
  color: #7b7b7b;
}

/* empty media */

.no-image-event.date-style-2 .ow-post-info {
  padding-top: 70px;
}

/*Client carousel */

.ow-client-logo {
  background-color: #fff;
  display: table;
  width: 100%;
}

.client-logo {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  padding: 10px;
}

.owl-carousel .ow-client-logo img {
  height: 80px;
  max-height: 100%;
  width: auto;
  display: inline-block;
}

/* Blog New Add */
.blog-info {
  background-color: rgba(0, 0, 0, 0.9);
  left: 0;
  list-style: outside none none;
  margin: 0;
  padding: 7px 15px;
  position: absolute;
  top: -34px;
  width: 100%;
}

.blog-info li {
  display: inline-block;
  padding: 0 5px 0px 5px;
  line-height: 14px;
  border-right: 1px solid;
}

.blog-info li:hover,
.blog-info li a:hover {
  color: #fff;
}

/*== >Testimonials ======*/

.testimonial-pic {
  background: #fff;
  width: 100px;
  height: 100px;
  position: relative;
  display: inline-block;
  border: 3px solid #fff;
}

.testimonial-pic.radius {
  border-radius: 100%;
  -webkit-border-radius: 100%;
}

.testimonial-pic.radius img {
  width: 100%;
  height: 100;
  border-radius: 100%;
  -webkit-border-radius: 100%;
}

.testimonial-pic.shadow {
  -webkit-box-shadow: 2px 3px 6px -3px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 2px 3px 6px -3px rgba(0, 0, 0, 0.35);
  box-shadow: 2px 3px 6px -3px rgba(0, 0, 0, 0.35);
}

.testimonial-pic.style1 {
  border: 0 none;
  height: 100px;
  width: 100px;
}

.quote-left,
.quote-right {
  position: relative;
}

.quote-left:before,
.quote-right:after {
  font-family: "FontAwesome";
  position: absolute;
  z-index: 10;
  top: 15px;
}

.quote-left:before {
  content: "\f10d";
  left: 0;
}

.quote-right:after {
  content: "\f10e";
  left: auto;
  right: 0;
}

.testimonial-text {
  padding: 15px;
  position: relative;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.testimonial-detail {
  padding: 5px;
}

.testimonial-name {
  font-family: montserrat;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.testimonial-position {
  font-family: montserrat;
  font-size: 12px;
  font-style: inherit;
  text-transform: uppercase;
}

.testimonial-name,
.testimonial-position {
  display: block;
}

.testimonial-text p:last-child {
  margin: 0;
}

/*testimonial with background image*/

.testimonial-bg {
  color: #fff;
}

/*testimonial 1*/

.testimonial-1 {
  text-align: center;
}

.testimonial-1 .testimonial-position {
  color: #efbb20;
}

.testimonial-1 .testimonial-name,
.testimonial-1 .testimonial-position {
  display: block;
}

.testimonial-1 .quote-left:before {
  width: 36px;
  height: 36px;
  line-height: 36px;
  font-size: 16px;
  background: #efbb20;
  color: #fff;
  text-align: center;
  left: 0;
  top: 65px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
}

/*testimonial 2*/

.testimonial-2 .testimonial-text,
.testimonial-8 .testimonial-text {
  background-color: #f4f5f7;
  padding: 30px;
}

.testimonial-2 .testimonial-text:after,
.testimonial-8 .testimonial-text:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #f4f5f7;
}

.testimonial-2 .testimonial-detail,
.testimonial-8 .testimonial-detail {
  padding: 25px 0 20px 20px;
}

.testimonial-2 .testimonial-pic,
.testimonial-8 .testimonial-pic {
  float: left;
  margin-right: 15px;
  width: 80px;
  height: 80px;
}

.testimonial-2 .quote-left:before {
  width: 36px;
  height: 36px;
  line-height: 36px;
  font-size: 16px;
  background: #efbb20;
  color: #fff;
  text-align: center;
  left: 0;
  top: 65px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
}

.testimonial-2 .testimonial-name,
.testimonial-8 .testimonial-name,
.testimonial-2 .testimonial-position,
.testimonial-8 .testimonial-position {
  padding: 2px 0;
}

.testimonial-2 .testimonial-name,
.testimonial-8 .testimonial-name {
  padding-top: 20px;
}

.testimonial-2 .testimonial-position {
  color: #efbb20;
}

.testimonial-2 .quote-left:before {
  top: 50px;
}

/*testimonial 2 with background image*/

.testimonial-2.testimonial-bg .testimonial-text {
  color: #777;
  background-color: rgba(255, 255, 255, 0.9);
}

.testimonial-2.testimonial-bg .testimonial-text:after {
  border-top-color: rgba(255, 255, 255, 0.9);
}

/*testimonial 3*/

.testimonial-3 {
  text-align: center;
}

.testimonial-3 .quote-left:before {
  position: static;
  font-size: 40px;
  color: #efbb20;
}

.testimonial-3 .testimonial-position {
  color: #efbb20;
}

.testimonial-3 .testimonial-name,
.testimonial-3 .testimonial-position {
  display: inline-block;
}

/*testimonial 4*/

.testimonial-4 {
  background-color: #282a3c;
  position: relative;
  padding: 30px 40px 30px 10px;
  margin-left: 140px;
  min-height: 150px;
}

.testimonial-4:after {
  background-color: #282a3c;
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: #efbb20;
  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: #efbb20;
  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-4 .testimonial-text {
  margin-bottom: 10px;
}

.testimonial-4 .testimonial-name,
.testimonial-4 .testimonial-position {
  display: inline-block;
}

.testimonial-4 .testimonial-name:after {
  content: "/";
  color: #efbb20;
  margin: 0 2px 0 5px;
}

.testimonial-4 .testimonial-name {
  text-transform: uppercase;
}

.testimonial-4 .testimonial-position {
  font-style: italic;
  color: #bebebe;
}

.testimonial-4 .testimonial-pic {
  border-color: #efbb20;
  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;
  }
}

/*testimonial 5*/
.testimonial-5 .testimonial-text {
  border: 2px solid #e6e6e6;
  padding: 30px;
}

.testimonial-5 .testimonial-detail {
  padding: 0 0 0 20px;
  margin-top: -35px;
}

.testimonial-5 .testimonial-pic {
  box-shadow: 0 0 0 2px #e6e6e6;
  width: 80px;
  height: 80px;
}

.testimonial-5 .testimonial-text p {
  font-size: 16px;
  line-height: 30px;
}

.testimonial-5 .info p {
  display: inline-block;
  position: relative;
  top: -10px;
  padding: 0 10px;
}

/*testimonial 6*/
.testimonial-6 .quote-left:before {
  left: 15px;
}

.testimonial-6 .quote-left:before,
.testimonial-6 .quote-right:after {
  color: #b5b5b5;
  font-size: 18px;
}

/* Testimonial Text */
.testimonial-6 .testimonial-text {
  padding: 25px 35px 70px 40px;
}

.testimonial-6 .testimonial-detail {
  position: relative;
  padding: 10px 15px;
  top: -30px;
  width: 85%;
}

.testimonial-6 .testimonial-pic {
  position: absolute;
  right: 20px;
  top: -50px;
  z-index: 2;
}

.testimonial-6 .quote-left:before,
.testimonial-6 .quote-right:after {
  color: #b5b5b5;
  font-size: 18px;
}

.testimonial-6 .quote-left:before {
  left: 15px;
}

.testimonial-6 .quote-right:after {
  right: 15px;
  bottom: 20px;
  top: auto;
}

.testimonial-6 .testimonial-detail:after {
  background-color: inherit;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  right: -23px;
  top: 0;
  transform: skewX(35deg);
  -moz-transform: skewX(35deg);
  -webkit-transform: skewX(35deg);
  -o-transform: skewX(35deg);
  width: 50px;
  z-index: 1;
}

/* testimonial 7 */
.testimonial-section {
  position: relative;
  z-index: 1;
}

.testimonial-section:after {
  background: #f2f2f2 none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 50%;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.testimonial-section .col-md-6 {
  padding-left: 30px;
  padding-right: 30px;
}

.testimonial-section .row {
  margin-left: -30px;
  margin-right: -30px;
}

.testimonial-7 .testimonial-text {
  border: 2px solid #e6e6e6;
  padding: 18px;
}

.testimonial-7 .testimonial-detail {
  padding: 0 0 0 20px;
  margin-top: -35px;
}

.testimonial-7 .testimonial-pic {
  box-shadow: 0 0 0 2px #e6e6e6;
  width: 70px;
  height: 70px;
}

.testimonial-7 .testimonial-text p {
  font-size: 16px;
  line-height: 30px;
}

.testimonial-7 .info p {
  display: inline-block;
  position: relative;
  top: -10px;
  padding: 0 10px;
}

.testimonial-7 .owl-controls .owl-nav {
  bottom: 0;
  margin-top: 0;
  position: absolute;
  right: 0;
}

.testimonial-7 .owl-prev,
.testimonial-7 .owl-next {
  background-color: #cccccc;
  border: 0 none;
}

@media only screen and (max-width: 991px) {
  .testimonial-section:after {
    left: 100%;
  }

  .testimonial-section {
    color: #fff;
  }

  .testimonial-section .col-md-6 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .testimonial-section .row {
    margin-left: -15px;
    margin-right: -15px;
  }
}

@media only screen and (max-width: 767px) {
  .testimonial-section:after {
    content: none;
  }
}

/* Testimonial 8 */
.testimonial-8 .testimonial-text {
  background: #ffffff none repeat scroll 0 0;
  border-radius: 6px;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.1);
  padding: 15px;
}

.testimonial-8 .testimonial-text:after {
  border-top: 15px solid #fff;
  border-left: 0 solid rgba(0, 0, 0, 0);
}

.testimonial-8 {
  padding: 15px;
}

.testimonial-box.owl-theme .owl-dots {
  margin-top: 30px;
  position: unset;
  right: auto;
  text-align: center;
  top: auto;
  transform: translateY(-50%);
  width: auto;
}

.owl-item.active.center .testimonial-text {
  background-color: #ff3b68;
  color: #fff;
}

.owl-item.active.center .testimonial-8 .testimonial-text:after {
  border-top: 15px solid #ff3b68;
}

.testimonial-8 .testimonial-text:before {
  content: "\e67e";
  bottom: -10px;
  color: #000000;
  font-family: "themify";
  font-size: 80px;
  opacity: 0.1;
  position: absolute;
  right: 10px;
}

/* testimonial-9 */
.testimonial-9 {
  background-color: #fff;
  padding: 50px 25px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-bottom: 5px solid #ff5ea5;
}

.testimonial-9 .testimonial-text {
  padding: 0;
}

.testimonial-9 .testimonial-name,
.testimonial-10 .testimonial-name {
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  color: #000;
}

.testimonial-9 .testimonial-position,
.testimonial-10 .testimonial-position {
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  color: #888;
  font-size: 12px;
  font-style: inherit;
}

.testimonial-9 .testimonial-position p,
.testimonial-10 .testimonial-position p {
  line-height: 26px;
}

.testimonial-9 .testimonial-text,
.testimonial-10 .testimonial-text {
  color: #000;
  font-family: montserrat;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
}

.testimonial-9 .testimonial-pic {
  margin-bottom: 15px;
}

/* testimonial-10 */
.testimonial-10 {
  margin: auto;
  max-width: 600px;
  padding-left: 150px;
  position: relative;
}

.testimonial-10 .testimonial-text {
  padding: 0;
}

.testimonial-10 .testimonial-pic {
  border: 0 none;
  height: 130px;
  left: 0;
  position: absolute;
  width: 130px;
}

.testimonial-seven.owl-btn-3 .owl-prev,
.testimonial-seven.owl-btn-3 .owl-next {
  margin: 0 !important;
}

/*== >Pricing table  ===*/

.pricingtable-inner {
  text-align: center;
}

.pricingtable-price {
  padding: 20px 20px;
  background-color: #fff;
  border: 1px solid #e9e9e9;
}

.pricingtable-bx {
  color: #282a3c;
  font-family: montserrat;
  font-size: 45px;
  font-weight: 500;
}

.pricingtable-type {
  font-size: 20px;
  text-transform: uppercase;
  font-size: 16px;
}

.pricingtable-type:before {
  content: "/";
  margin-right: 3px;
}

.pricingtable-title {
  background-color: #fff;
  padding: 20px;
  text-transform: uppercase;
}

.pricingtable-title * {
  margin: 0;
  color: #fff;
  font-weight: 800;
}

.pricingtable-features {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid #e9e9e9;
}

.pricingtable-features li {
  padding: 12px;
  border-bottom: 1px solid #e9e9e9;
}

.pricingtable-features li i {
  margin: 0 3px;
}

.pricingtable-features li:nth-child(even) {
  background-color: #fff;
}

.pricingtable-features li:last-child {
  border-bottom: none;
}

.pricingtable-footer {
  margin-top: -1px;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #e9e9e9;
}

.pricingtable-highlight {
  margin: -20px 0;
  -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 99;
}

.pricingtable-highlight .pricingtable-price {
  padding: 30px 20px;
}

.pricingtable-highlight .pricingtable-footer {
  padding: 30px 20px;
}

.no-col-gap .pricingtable-wrapper {
  margin-left: -1px;
}

/* pricingtable Style 1 */
.pricingtable-wrapper.style1 {
  border: 1px solid #f0f0f0;
  padding: 10px 10px 40px;
  font-family: montserrat;
  margin-left: -1px;
}

.pricingtable-wrapper.style1 .pricingtable-icon i {
  color: #000000;
  font-size: 48px;
  line-height: 60px;
}

.pricingtable-wrapper.style1 .pricingtable-price {
  background-color: #fff;
  border: 0;
}

.pricingtable-wrapper.style1 .pricingtable-bx {
  font-size: 35px;
  font-weight: 300;
}

.pricingtable-wrapper.style1 .pricingtable-features {
  border: 0;
}

.pricingtable-wrapper.style1 .pricingtable-features li {
  background: #ffffff none repeat scroll 0 0;
  border: 0 none;
  color: #909090;
  font-family: montserrat;
  font-weight: 400;
  padding: 8px 0;
  text-align: left;
}

.pricingtable-wrapper.style1 .pricingtable-features {
  width: 80%;
  margin: auto;
}

.pricingtable-wrapper.style1 .pricingtable-features li i {
  border: 2px solid;
  border-radius: 20px;
  display: block;
  float: right;
  font-size: 11px;
  height: 20px;
  line-height: 16px;
  text-align: center;
  width: 20px;
}

.pricingtable-wrapper.style1 .button-md {
  font-weight: 400;
  padding: 12px 35px;
}

.pricingtable-wrapper.style1 .pricingtable-type {
  text-transform: capitalize;
}

.pricingtable-wrapper.style2 {
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
  background-color: #fff;
}

.pricingtable-wrapper.style2.active {
  background-color: var(--primary) !important;
}

.pricingtable-wrapper.style2 .pricingtable-price {
  padding: 0;
  background-color: rgba(0, 0, 0, 0);
  border: 0;
}

.pricingtable-wrapper.style2 .pricingtable-bx {
  background: rgba(0, 0, 0, 0.05) none repeat scroll 0 0;
  border-radius: 10px;
  color: #a0a0a0;
  display: inline-block;
  font-size: 13px;
  margin-top: 20px;
  padding: 15px 25px;
  margin-bottom: 10px;
}

.pricingtable-wrapper.style2 .pricingtable-bx span {
  font-size: 22px;
}

.pricingtable-wrapper.style2.active {
  margin: -30px -10px 0;
  padding: 60px 30px;
  position: relative;
  z-index: 1;
}

.pricingtable-wrapper.style2.active .pricingtable-bx {
  color: #fff;
}

/*== COUNTERUP ===*/
.counter {
  position: relative;
  font-size: 40px;
}

.counter-style-1 .counter,
.counter-style-2 .counter,
.counter-style-3 .counter {
  font-size: 50px;
  font-weight: 700;
}

.counter-style-1 .counter-text,
.counter-style-2 .counter-text {
  font-size: 16px;
  font-weight: 500;
}

.counter-style-1 .icon {
  font-size: 45px;
  margin-right: 10px;
}

.counter-style-3.rounded {
  border: 5px solid;
  border-radius: 200px;
  height: 200px;
  width: 200px;
}

.counter-style-3 .counter-text {
  font-size: 18px;
  font-weight: 400;
  margin: 0 auto;
}

.counter-style-4 {
  border: 5px solid rgba(0, 0, 0, 0.1);
  padding: 10px 10px 20px;
}

.counter-style-4 .counter {
  font-size: 70px;
  font-weight: 500;
}

.counter-style-4 .counter-text {
  font-size: 18px;
  font-weight: 500;
}

.counter-style-4 .icon {
  font-size: 45px;
  margin-right: 10px;
}

/*== >Alert box =====*/

.alert {
  font-family: montserrat;
  border-radius: 4px;
  padding: 15px 20px;
}

.alert.alert-sm {
  padding: 5px 15px;
  font-size: 12px;
}

.alert.alert-lg {
  padding: 25px 15px;
  font-size: 16px;
}

.alert.alert-xl {
  padding: 35px 15px;
  font-size: 18px;
}

.alert[class*="alert-"] i {
  margin-right: 8px;
}

.alert.no-radius {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
}

.alert.no-bg {
  background-color: transparent;
  border-width: 2px;
}

.alert[class*="alert-"] ul {
  padding-left: 25px;
  margin-top: 10px;
}

.alert[class*="alert-"] ul li:before {
  color: #a94442;
}

/* Alert Color */
.alert-warning {
  background-color: #fff3cd;
  border-color: #ffeeba;
  color: #856404;
}

.alert-success {
  background-color: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}

.alert-info {
  background-color: #cce5ff;
  border-color: #b8daff;
  color: #004085;
}

.alert-danger {
  background-color: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
}

.close {
  color: #000000;
  float: right;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  opacity: 0.3;
  text-shadow: none;
  vertical-align: middle;
}

/*== >Modal pop =====*/

.modal-header {
  border-radius: 3px 3px 0 0;
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
}

.modal-footer {
  border-radius: 0 0 3px 3px;
  -webkit-border-radius: 0 0 3px 3px;
  -moz-border-radius: 0 0 3px 3px;
}

.modal-header {
  background: #efbb20;
  padding: 15px 25px;
}

.modal-header .modal-title {
  color: #fff;
}

.modal .modal-body {
  padding: 25px;
}

.modal-xlg {
  width: 1000px;
}

.provider_registration .bootstrap-select div.dropdown-menu ul li a {
  font-weight: 600;
}

.provider_registration .bootstrap-select div.dropdown-menu ul li a span.childcat {
  font-weight: 400;
  color: #7c7c7c;
}

@media only screen and (max-width: 1024px) {
  .modal-xlg {
    width: auto;
    margin-left: 15px;
    margin-right: 15px;
  }
}

/*== >Social icons ===*/
/* social icon default */

.dez-social-icon {
  display: inline-block;
  margin: 0 -3px;
  padding: 0;
  text-align: center;
}

.dez-social-icon li {
  display: inline-block;
  padding: 0;
  font-size: 12px;
}

.dez-social-icon li a {
  display: inline-block;
  width: 24px;
  height: 24px;
  padding: 4px;
}

.dez-social-icon li .fa {
  vertical-align: middle;
}

/* social icon with border */

.dez-social-icon.border li {
  padding: 0 3px;
}

.dez-social-icon.border li a {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* social icon dark */

.dez-social-links.dark li {
  padding: 0 3px;
}

.dez-social-icon.dark li a {
  border: 1px solid #777777;
  color: #777777;
  border-radius: 2px;
  -webkit-border-radius: 2px;
}

/* social share icon style 1*/

.dez-share-icon li {
  border: none;
  width: 36px;
  display: block;
  float: left;
  white-space: nowrap;
  overflow: hidden;
  margin-right: 0;
}

.dez-share-icon li a {
  color: #fff;
}

.dez-share-icon li i {
  border-right: none;
  font-size: 14px;
  color: #fff;
  width: 36px;
  height: 34px;
  line-height: 34px;
  padding: 0;
  text-align: center;
}

.dez-share-icon li.fb {
  background: #354d89;
}

.dez-share-icon li.fb i {
  background: #3a5799;
}

.dez-share-icon li.gp {
  background: #d34b2b;
}

.dez-share-icon li.gp i {
  background: #e35736;
}

.dez-share-icon li.tw {
  background: #029fdf;
}

.dez-share-icon li.tw i {
  background: #00abf0;
}

.dez-share-icon li.dig {
  background: #1d61aa;
}

.dez-share-icon li.dig i {
  background: #2b6fb8;
}

.dez-share-icon li.lin {
  background: #0176be;
}

.dez-share-icon li.lin i {
  background: #0082ca;
}

.dez-share-icon li.pin {
  background: #ac0104;
}

.dez-share-icon li.pin i {
  background: #bd0e15;
}

.dez-share-icon li:hover {
  width: 90px;
}

/*== >Breadcrumb ====*/

.breadcrumb-row {
  background: #f9f9f9;
  padding: 20px 0;
}

.breadcrumb-row ul {
  margin: 0;
}

.breadcrumb-row ul li {
  padding: 0;
  margin-right: 3px;
  color: #fff;
  display: inline-block;
}

.breadcrumb-row ul li:after {
  content: "\f105";
  margin-left: 7px;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
}

.breadcrumb-row ul li:last-child {
  color: #676767;
}

.breadcrumb-row ul li:last-child:after {
  display: none;
}

/*== >Tables ====*/

.table>tbody>tr>td,
.table>tbody>tr>th,
.table>tfoot>tr>td,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>thead>tr>th {
  padding: 10px;
}

.table.borderless>tbody>tr>td,
.table.borderless>tbody>tr>th {
  border: none;
}

/*data table*/

.dataTable .sorting_asc .checkbox {
  margin-right: 0;
}

/*== >Image effects ==*/
/*use for section*/

.overlay-black-light,
.overlay-black-middle,
.overlay-black-dark,
.overlay-gradient-light,
.overlay-gradient-middle,
.overlay-gradient-dark,
.overlay-white-light,
.overlay-white-middle,
.overlay-white-dark,
.overlay-primary-light,
.overlay-primary-middle,
.overlay-primary-dark,
.overlay-primary {
  position: relative;
}

.overlay-black-light:after,
.overlay-black-middle:after,
.overlay-black-dark:after,
.overlay-gradient-light:after,
.overlay-gradient-middle:after,
.overlay-gradient-dark:after,
.overlay-white-light:after,
.overlay-white-middle:after,
.overlay-white-dark:after,
.overlay-primary-light:after,
.overlay-primary-middle:after,
.overlay-primary-dark:after,
.overlay-primary:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.overlay-black-light:after,
.overlay-black-middle:after,
.overlay-black-dark:after {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#192665+0,09123f+49,222845+100 */
  background: rgb(25, 38, 101);
  /* Old browsers */
  background: -moz-radial-gradient(center,
      ellipse cover,
      rgba(25, 38, 101, 1) 0%,
      rgba(9, 18, 63, 1) 49%,
      rgba(34, 40, 69, 1) 100%);
  /* FF3.6-15 */
  background: -webkit-radial-gradient(center,
      ellipse cover,
      rgba(25, 38, 101, 1) 0%,
      rgba(9, 18, 63, 1) 49%,
      rgba(34, 40, 69, 1) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: radial-gradient(ellipse at center,
      #9eb86e7d 0%,
      #9eb86e7d 49%,
      #9eb86e7d 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#192665', endColorstr='#222845', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}

.overlay-gradient-light:after,
.overlay-gradient-middle:after,
.overlay-gradient-dark:after {
  background: -moz-linear-gradient(top,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.65) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.65) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.65) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
  /* IE6-9 */
}

.overlay-white-light:after,
.overlay-white-middle:after,
.overlay-white-dark:after {
  background: #fff;
}

/* .overlay-primary-light:after,
.overlay-primary-middle:after,
.overlay-primary-dark:after,
.overlay-primary:after {
    background: ;
} */
.overlay-black-light:after {
  opacity: 0.3;
}

.overlay-black-middle:after {
  opacity: 0.7;
}

.overlay-black-dark:after {
  opacity: 0.8;
}

.overlay-gradient-light:after {
  opacity: 0.3;
}

.overlay-gradient-middle:after {
  opacity: 0.5;
}

.overlay-gradient-dark:after {
  opacity: 0.8;
}

.overlay-white-light:after {
  opacity: 0.5;
}

.overlay-white-middle:after {
  opacity: 0.7;
}

.overlay-white-dark:after {
  opacity: 0.8;
}

.overlay-white-dark.op95:after {
  opacity: 0.95;
}

.overlay-primary-light:after {
  opacity: 0.3;
}

.overlay-primary-middle:after {
  opacity: 0.5;
}

.overlay-primary-dark:after,
.overlay-primary:after {
  opacity: 0.8;
}

.overlay-black-light .container,
.overlay-black-middle .container,
.overlay-black-dark .container,
.overlay-white-light .container,
.overlay-white-middle .container,
.overlay-white-dark .container,
.overlay-primary-light .container,
.overlay-primary-middle .container,
.overlay-primary-dark .container,
.overlay-primary .container,
.overlay-black-light .container-fluid,
.overlay-black-middle .container-fluid,
.overlay-black-dark .container-fluid,
.overlay-white-light .container-fluid,
.overlay-white-middle .container-fluid,
.overlay-white-dark .container-fluid,
.overlay-primary-light .container-fluid,
.overlay-primary-middle .container-fluid,
.overlay-primary-dark .container-fluid,
.overlay-primary .container-fluid {
  position: relative;
  z-index: 1;
}

/*use for box*/

.overlay-bx {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
}

.overlay-icon,
.overlay-bx .align-m {
  height: auto;
  left: 50%;
  list-style: outside none none;
  margin: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 10px;
}

.overlay-bx .align-b {
  height: auto;
  left: 0;
  list-style: outside none none;
  margin: 0;
  position: absolute;
  top: auto;
  bottom: 0;
  width: 100%;
  transform: translate(0);
  -o-transform: translate(0);
  -moz-transform: translate(0);
  -webkit-transform: translate(0);
}

.overlay-icon a {
  display: inline-block;
  padding: 0;
  margin: 0 2px;
}

.overlay-icon a i {
  background-color: #fff;
}

.overlay-bx:hover a>i,
.dez-media:hover .overlay-bx a>i,
.dez-box-bx:hover .overlay-bx a>i {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.overlay-bx:hover,
.dez-media:hover .overlay-bx,
.dez-box:hover .overlay-bx,
.ow-img:hover .overlay-bx,
.ow-portfolio-img:hover .overlay-bx {
  opacity: 1;
  visibility: visible;
}

/* show for text */

.overlay-text {
  width: 100%;
  position: absolute;
  padding: 20px;
  color: #fff;
  left: 0;
  bottom: 20px;
}

.dez-address-bx {
  display: table;
  text-align: left;
  padding: 20px 20px 20px 25px;
  width: 100%;
  height: 100%;
  position: relative;
  font-size: 14px;
  vertical-align: middle;
  font-weight: 600;
}

.dez-address-bx .fa {
  position: absolute;
  top: 22px;
  left: 0;
  font-size: 22px;
}

.col-md-3 .overlay-text {
  padding: 5px;
}

.col-md-4 .overlay-text {
  padding: 20px;
}

.dez-address2-bx {
  display: table;
  background: #eaeaea;
  padding: 5px 10px;
  margin-bottom: 10px;
}

/* == >Icon boxes ==*/

.icon-bx-xl,
.icon-bx-lg,
.icon-bx-md,
.icon-bx-sm,
.icon-bx-xs {
  display: inline-block;
  text-align: center;
  border-radius: 3px;
}

.icon-bx-xl {
  width: 150px;
  height: 150px;
  line-height: 150px;
}

.icon-bx-lg {
  width: 120px;
  height: 120px;
  line-height: 120px;
}

.icon-bx-md {
  width: 100px;
  height: 100px;
  line-height: 100px;
}

.icon-bx-sm {
  width: 80px;
  height: 80px;
  line-height: 80px;
}

.icon-bx-xs {
  width: 40px;
  height: 40px;
  line-height: 40px;
}

.icon-bx-xl.radius,
.icon-bx-lg.radius,
.icon-bx-md.radius,
.icon-bx-sm.radius,
.icon-bx-xs.radius {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}

.border-1,
.border-2,
.border-3,
.border-4,
.border-5 {
  border-style: solid;
}

.border-1 {
  border-width: 1px;
}

.border-2 {
  border-width: 2px;
}

.border-3 {
  border-width: 3px;
}

.border-4 {
  border-width: 4px;
}

.border-5 {
  border-width: 5px;
}

/* Border Color */
.br-col-w1,
.dez-info.br-col-w1[class*="border-"],
.icon-bx-wraper.bx-style-1.br-col-w1,
.icon-bx-wraper.bx-style-2.br-col-w1 {
  border-color: rgba(255, 255, 255, 0.15);
}

.br-col-w2,
.dez-info.br-col-w2[class*="border-"],
.icon-bx-wraper.bx-style-1.br-col-w2,
.icon-bx-wraper.bx-style-2.br-col-w2 {
  border-color: rgba(255, 255, 255, 0.3);
}

.br-col-w3,
.dez-info.br-col-w3[class*="border-"],
.icon-bx-wraper.bx-style-1.br-col-w3,
.icon-bx-wraper.bx-style-2.br-col-w3 {
  border-color: rgba(255, 255, 255, 0.5);
}

.br-col-w4,
.dez-info.br-col-w4[class*="border-"],
.icon-bx-wraper.bx-style-1.br-col-w4,
.icon-bx-wraper.bx-style-2.br-col-w4 {
  border-color: rgba(255, 255, 255, 0.7);
}

.br-col-w5,
.dez-info.br-col-w5[class*="border-"],
.icon-bx-wraper.bx-style-1.br-col-w5,
.icon-bx-wraper.bx-style-2.br-col-w5 {
  border-color: rgba(255, 255, 255, 0.9);
}

.br-col-b1,
.dez-info.br-col-b1[class*="border-"],
.icon-bx-wraper.bx-style-1.br-col-b1,
.icon-bx-wraper.bx-style-2.br-col-b1 {
  border-color: rgba(0, 0, 0, 0.15);
}

.br-col-b2,
.dez-info.br-col-b2[class*="border-"],
.icon-bx-wraper.bx-style-1.br-col-b2,
.icon-bx-wraper.bx-style-2.br-col-b2 {
  border-color: rgba(0, 0, 0, 0.3);
}

.br-col-b3,
.dez-info.br-col-b3[class*="border-"],
.icon-bx-wraper.bx-style-1.br-col-b3,
.icon-bx-wraper.bx-style-2.br-col-b3 {
  border-color: rgba(0, 0, 0, 0.5);
}

.br-col-b4,
.dez-info.br-col-b4[class*="border-"],
.icon-bx-wraper.bx-style-1.br-col-b4,
.icon-bx-wraper.bx-style-2.br-col-b4 {
  border-color: rgba(0, 0, 0, 0.7);
}

.br-col-b5,
.dez-info.br-col-b5[class*="border-"],
.icon-bx-wraper.bx-style-1.br-col-b5,
.icon-bx-wraper.bx-style-2.br-col-b5 {
  border-color: rgba(0, 0, 0, 0.9);
}

/* opacity */
.op0 {
  opacity: 0;
}

.op1 {
  opacity: 0.1;
}

.op2 {
  opacity: 0.2;
}

.op3 {
  opacity: 0.3;
}

.op4 {
  opacity: 0.4;
}

.op5 {
  opacity: 0.5;
}

.op6 {
  opacity: 0.6;
}

.op7 {
  opacity: 0.7;
}

.op8 {
  opacity: 0.8;
}

.op9 {
  opacity: 0.9;
}

.icon-bx-xl i,
.icon-bx-lg i,
.icon-bx-md i,
.icon-bx-sm i,
.icon-bx-xs i {
  vertical-align: middle;
}

.icon-bx-xl i {
  font-size: 80px;
}

.icon-bx-lg i {
  font-size: 60px;
}

.icon-bx-md i {
  font-size: 45px;
}

.icon-bx-sm i {
  font-size: 30px;
}

.icon-bx-xs i {
  font-size: 20px;
}

.icon-bx-xl img,
.icon-bx-lg img,
.icon-bx-md img,
.icon-bx-sm img,
.icon-bx-xs img {
  vertical-align: middle;
  max-width: 100%;
  width: auto;
}

.icon-bx-xl img {
  height: 80px;
}

.icon-bx-lg img {
  height: 55px;
}

.icon-bx-md img {
  height: 40px;
}

.icon-bx-sm img {
  height: 30px;
}

.icon-bx-xs img {
  height: 20px;
}

/*== 11. ICON ==*/

.icon-xl,
.icon-lg,
.icon-md,
.icon-sm,
.icon-xs {
  display: inline-block;
  text-align: center;
}

.icon-xl {
  width: 100px;
}

.icon-lg {
  width: 80px;
}

.icon-md {
  width: 60px;
}

.icon-sm {
  width: 40px;
}

.icon-xs {
  width: 30px;
}

.icon-xl i,
.icon-lg i,
.icon-md i,
.icon-sm i,
.icon-xs i {
  vertical-align: middle;
}

.icon-xl i {
  font-size: 80px;
}

.icon-lg i {
  font-size: 60px;
}

.icon-md i {
  font-size: 45px;
}

.icon-sm i {
  font-size: 30px;
}

.icon-xs i {
  font-size: 20px;
}

.icon-xl img,
.icon-lg img,
.icon-md img,
.icon-sm img,
.icon-xs img {
  vertical-align: middle;
  max-width: 100%;
  width: auto;
}

.icon-xl img {
  height: 80px;
}

.icon-lg img {
  height: 70px;
}

.icon-md img {
  height: 50px;
}

.icon-sm img {
  height: 30px;
}

.icon-xs img {
  height: 20px;
}

/*== place icon with box ==*/

.icon-bx-wraper {
  position: relative;
  height: 90px;
}

.icon-bx-wraper .dez-tilte {
  margin-top: 0;
}

.icon-bx-wraper .after-titile-line {
  margin-bottom: 10px;
}

.icon-bx-wraper p:last-child {
  margin: 0;
}

.icon-content {
  overflow: hidden;
}

/* icon box left aligh */

.icon-bx-wraper.left .icon-bx-xl,
.icon-bx-wraper.left .icon-bx-lg,
.icon-bx-wraper.left .icon-bx-md,
.icon-bx-wraper.left .icon-bx-sm,
.icon-bx-wraper.left .icon-bx-xs {
  float: left;
  margin-right: 20px;
}

.icon-bx-wraper.left .icon-xl,
.icon-bx-wraper.left .icon-lg,
.icon-bx-wraper.left .icon-md,
.icon-bx-wraper.left .icon-sm,
.icon-bx-wraper.left .icon-xs {
  float: left;
  margin-right: 10px;
}

/* icon box right aligh */

.icon-bx-wraper.right {
  text-align: right;
}

.icon-bx-wraper.right .icon-bx-xl,
.icon-bx-wraper.right .icon-bx-lg,
.icon-bx-wraper.right .icon-bx-md,
.icon-bx-wraper.right .icon-bx-sm,
.icon-bx-wraper.right .icon-bx-xs {
  float: right;
  margin-left: 20px;
}

.icon-bx-wraper.right .icon-xl,
.icon-bx-wraper.right .icon-lg,
.icon-bx-wraper.right .icon-md,
.icon-bx-wraper.right .icon-sm,
.icon-bx-wraper.right .icon-xs {
  float: right;
  margin-left: 10px;
}

/* icon box center aligh */
.icon-bx-wraper.center {
  text-align: center;
}

.light-blue {
  background-color: #84c0ca;
}

[class*="icon-bx-"][class*="border-"] {
  display: table;
  line-height: normal;
  margin-left: auto;
  margin-right: auto;
}

[class*="icon-bx-"][class*="border-"] .icon-cell {
  display: table-cell;
  vertical-align: middle;
}

.icon-bx-wraper.bx-style-1,
.icon-bx-wraper.bx-style-2 {
  border-width: 1px;
  border-style: solid;
  border-color: #ebedf2;
}

.icon-bx-wraper.bx-style-2.center [class*="icon-bx-"],
.icon-bx-wraper.bx-style-2.left [class*="icon-bx-"],
.icon-bx-wraper.bx-style-2.right [class*="icon-bx-"] {
  position: absolute;
}

.icon-bx-wraper.bx-style-2.center [class*="icon-bx-"] {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.icon-bx-wraper.bx-style-2.center .icon-bx-xl {
  margin-left: -75px;
}

.icon-bx-wraper.bx-style-2.center .icon-bx-lg {
  margin-left: -60px;
}

.icon-bx-wraper.bx-style-2.center .icon-bx-md {
  margin-left: -50px;
}

.icon-bx-wraper.bx-style-2.center .icon-bx-sm {
  margin-left: -40px;
}

.icon-bx-wraper.bx-style-2.center .icon-bx-xs {
  margin-left: -20px;
}

.icon-bx-wraper.bx-style-2.left [class*="icon-bx-"] {
  position: absolute;
  top: auto;
  left: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.icon-bx-wraper.bx-style-2.right [class*="icon-bx-"] {
  position: absolute;
  top: auto;
  right: 0;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
}

/*== media with content box css ==*/

.dez-box,
.dez-info,
.dez-tilte,
.dez-tilte-inner {
  position: relative;
}

.dez-tilte-inner {
  display: inline-block;
}

.dez-tilte-inner.skew-title:after {
  content: "";
  position: absolute;
  right: -15px;
  top: 0;
  width: 50px;
  height: 100%;
  z-index: -1;
  -moz-transform: skewX(20deg);
  -webkit-transform: skewX(20deg);
  -o-transform: skewX(20deg);
  -ms-transform: skewX(20deg);
  transform: skewX(20deg);
}

.dez-box[class*="border-"],
.dez-info[class*="border-"] {
  border-color: #eee;
}

.dez-info.border-1,
.dez-info.border-2,
.dez-info.border-3,
.dez-info.border-4,
.dez-info.border-5 {
  border-top: none;
}

/*== before & after for line css ==*/

.left-border,
.right-border {
  position: relative;
}

.left-border:before,
.right-border:before {
  content: "";
  position: absolute;
  top: 5px;
  width: 1px;
  height: 90%;
  background: #ccc;
}

.right-border:before {
  right: 0;
}

/*==for images==*/

.dez-media,
.dez-media,
.dez-post-media {
  position: relative;
}

.dez-media img,
.dez-post-media img {
  width: 100%;
  height: auto;
}

/* Box Background */
.dez-box-bg {
  overflow: hidden;
}

.dez-box-bg .site-button {
  overflow: unset;
}

.dez-box-bg .glyph-icon {
  font-size: 50px;
}

.dez-box-bg .icon-bx-wraper {
  background-color: #f8f8f8;
}

.icon-box-btn .site-button {
  background-color: #eeeeee;
  padding: 15px 20px;
  text-transform: uppercase;
  font-size: 15px;
}

.dez-box-bg {
  background-size: cover;
}

.dez-box-bg.active .icon-bx-wraper {
  background-color: rgba(0, 0, 0, 0.7);
}

.dez-box-bg .text-primary,
.dez-box-bg .icon-content .dez-tilte,
.dez-box-bg .icon-content p,
.dez-box-bg .icon-box-btn .site-button {
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.dez-box-bg.active .text-primary,
.dez-box-bg.active .icon-content .dez-tilte,
.dez-box-bg.active .icon-content p,
.dez-box-bg.active .icon-box-btn .site-button {
  color: #fff;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.dez-box-bg .icon-box-btn .site-button {
  border-radius: 0;
  color: #1abc9c;
  font-weight: 600;
  margin-bottom: 0;
}

/* >Box New Style */
.content-box-head {
  border-radius: 50px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  margin-top: -46px;
  padding: 12px 0;
  position: relative;
  z-index: 1;
}

/*---------------------------------------------------------------
25. PAGINATION
---------------------------------------------------------------*/
/* pagination style-1 */
.pagination-bx .pagination,
.cvf-universal-pagination .pagination {
  margin: 0;
}

.pagination {
  padding: 10px 0;
}

.pagination>li {
  display: inline-block;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-left: 0;
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.pagination>li>a,
.pagination>li>span {
  background-color: #fff;
  border: 1px solid;
  border-color: #ebebeb;
  color: #767676;
  padding: 0.55rem 1rem;
  font-weight: 500;
  font-family: montserrat;
  font-size: 1rem;
  display: block;
  margin: 0 -1px;
}

.pagination>li>a:hover,
.pagination>li>span:hover,
.pagination>li>a:focus,
.pagination>li>span:focus {
  border-color: transparent;
  color: #fff;
}

.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus {
  border-color: transparent;
}

.pagination>.previous>a,
.pagination>.next>a {
  padding: 0.55rem 1rem;
  font-size: 1rem;
  font-weight: 500;
}

.pagination-sm .pagination>li>a,
.pagination-sm .pagination>li>span .pagination-sm .pagination>.previous>a,
.pagination-sm .pagination>.next>a {
  font-size: 12px;
  padding: 6px 12px;
}

.pagination-lg .pagination>li>a,
.pagination-lg .pagination>li>span .pagination-lg .pagination>.previous>a,
.pagination-lg .pagination>.next>a {
  font-size: 18px;
  padding: 10px 20px;
}

.pagination-bx .previous a {
  border-radius: 4px 0px 0px 4px !important;
}

.pagination-bx .next a {
  border-radius: 0px 4px 4px 0px !important;
}

/* pagination color */
.pagination-bx.primary .pagination>li>a,
.pagination-bx.primary .pagination>li>span {
  background-color: #1abc9c;
  color: #fff;
  margin: 0 1px;
  border: 0;
}

.pagination-bx.primary .pagination>li>a:hover,
.pagination-bx.primary .pagination>li>span:hover,
.pagination-bx.primary .pagination>li.active>span,
.pagination-bx.primary .pagination>li.active>a {
  background-color: #148f77;
}

.pagination-bx.rounded .pagination>li>a,
.pagination-bx.rounded .pagination>li>span {
  border-radius: 30px;
  margin: 0 1px;
}

.pagination-bx.rounded-sm .pagination>li>a,
.pagination-bx.rounded-sm .pagination>li>span {
  border-radius: 4px;
  margin: 0 1px;
}

.pagination-bx .pull-right {
  float: right;
}

.pagination-bx .pagination {
  width: 100%;
}

.pagination-bx.gray .pagination>li>a,
.pagination-bx.gray .pagination>li>span {
  background-color: #f6f7f8;
  margin: 0 1px;
  border: 0;
}

.pagination-bx.gray .pagination>li>a:hover,
.pagination-bx.gray .pagination>li>span:hover,
.pagination-bx.gray .pagination>li.active>span,
.pagination-bx.gray .pagination>li.active>a {
  background-color: #1abc9c;
  box-shadow: 2px 2px 8px 0 rgba(26, 188, 156, 0.5);
  color: #fff;
}

@media only screen and (max-width: 991px) {
  .pagination-bx {
    margin-bottom: 30px;
  }
}

/*DataTable  pagination */

.dataTables_paginate ul.pagination {
  margin: 0;
}

.dataTables_paginate .pagination>li {
  padding: 0;
}

/*---------------------------------------------------------------
26. FOOTER
---------------------------------------------------------------*/
/*newslatter*/

/* footer fixed on bottom css*/
.footer-fixed .site-footer {
  position: fixed;
  width: 100%;
  bottom: 0;
}

.footer-fixed .page-content {
  position: relative;
  z-index: 1;
  background-color: #fff;
}

footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6,
footer h1 a,
footer h2 a,
footer h3 a,
footer h4 a,
footer h5 a,
footer h6 a {
  color: #c6cffa;
}

footer p,
footer strong,
footer b,
footer {
  color: #c6cffa;
}

footer h1 a,
footer h2 a,
footer h3 a,
footer h4 a,
footer h5 a,
footer h6 a,
footer p a {
  color: #c6cffa;
}

footer a,
footer a:visited {
  color: #c6cffa;
}

footer p a {
  color: #c6cffa;
}

footer a:active,
footer a:focus,
footer a:hover {
  color: #c6cffa;
}

/* widget color */
footer .widget_categories ul li a,
footer .widget_archive ul li a,
footer .widget_meta ul li a,
footer .widget_pages ul li a,
footer .widget_recent_comments ul li a,
footer .widget_nav_menu li a,
footer .widget_recent_entries ul li a,
footer .widget_services ul li a {
  color: #c6cffa;
}

footer.text-white .widget_categories ul li a,
footer.text-white .widget_archive ul li a,
footer.text-white .widget_meta ul li a,
footer.text-white .widget_pages ul li a,
footer.text-white .widget_recent_comments ul li a,
footer.text-white .widget_nav_menu li a,
footer.text-white .widget_recent_entries ul li a,
footer.text-white .widget_services ul li a,
footer.text-white a,
footer.text-white .footer-bottom,
footer.text-white p,
footer.text-white strong,
footer.text-white b,
footer.text-white .widget .post-title,
footer.text-white .widget-about .dez-title,
footer.text-white {
  color: #fff;
}

footer p {
  margin-bottom: 10px;
}

footer p,
footer li {
  font-size: 14px;
  line-height: 22px;
}

footer#footer {
  background-position: center;
  background-size: cover;
}

footer p {
  line-height: 24px;
  margin-bottom: 10px;
}

footer .widget ul {
  list-style: none;
  margin-top: 5px;
}

/*widget li in footer*/

footer .widget_categories ul li,
footer .widget_archive ul li,
footer .widget_meta ul li,
footer .widget_pages ul li,
footer .widget_recent_comments ul li,
footer .widget_nav_menu li,
footer .widget_recent_entries ul li,
footer .widget_services ul li {
  border-bottom: 1px dashed rgba(102, 102, 102, 0.3);
}

/*widget Getintuch*/
.footer-top {
  padding: 80px 0 20px;
  background-color: #222845;
}

.footer-top.overlay-black-dark:after {
  opacity: 0.85;
}

.footer-bottom {
  background-color: #171d36;
  padding: 25px 0;
  color: #c6cffa;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-transform: capitalize !important;
}

.footer-bottom ul {
  margin: 0;
}

/* Footer Full */
.footer-full .container-fluid {
  padding-left: 50px;
  padding-right: 50px;
}

@media only screen and (max-width: 991px) {
  .col-md-3.col-sm-6.footer-col-4:nth-child(3) {
    clear: both;
  }

  .footer-full .text-left,
  .footer-full .text-right,
  .footer-full .text-center {
    text-align: center;
    margin-bottom: 30px;
  }

  .footer-full .text-right {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 767px) {
  .footer-clear {
    display: block !important;
    clear: both;
  }

  #footer .footer-4-col {
    width: 100%;
  }

  .footer-bottom [class*="clo-"] {
    width: 100%;
  }
}

/* Subscribe Form */
.subscribe-form input {
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid #c6cffa;
  border-radius: 30px !important;
  height: 50px;
  padding: 10px 20px;
  margin-right: 5px;
  color: #fff;
  font-size: 15px;
}

.subscribe-form input::-moz-placeholder {
  color: #c6cffa;
}

.subscribe-form input.radius-no {
  border-radius: 0 !important;
}

.subscribe-form .site-button {
  height: 50px;
}

.subscribe-form .input-group-btn {
  padding-left: 10px;
}

/*  map footer */
.map-footer .footer-top {
  padding: 0;
}

.footer-top .site-button.white.circle {
  color: #222845;
}

.footer-top .site-button.white.circle:hover {
  color: #fff;
}

/* scroll top btn css */
button.scroltop {
  background: rgba(255, 255, 255, 0.9) none repeat scroll 0 0;
  border-color: #efbb20;
  border-radius: 20px;
  border-style: solid;
  border-width: 0;
  bottom: 15px;
  box-shadow: 2px 2px 12px -5px #000000;
  color: #efbb20;
  cursor: pointer;
  display: none;
  height: 40px;
  line-height: 26px;
  margin: 0;
  position: fixed;
  right: 15px;
  text-align: center;
  width: 40px;
  z-index: 999;
}

/* Footer White */
.footer-white {
  border-top: 0px solid #e0e0e0;
}

.footer-white .form-control {
  border-color: rgba(0, 0, 0, 0.1);
}

.footer-white .footer-top {
  background-color: #fff9ff;
  background-image: url(../images/background/bg8.jpg);
  background-size: 100%;
  background-position: top;
  background-repeat: no-repeat;
}

.footer-white .footer-bottom {
  background-color: #f9e8f9;
}

footer.footer-white h1,
footer.footer-white h2,
footer.footer-white h3,
footer.footer-white h4,
footer.footer-white h5,
footer.footer-white h6,
footer.footer-white h1 a,
footer.footer-white h2 a,
footer.footer-white h3 a,
footer.footer-white h4 a,
footer.footer-white h5 a,
footer.footer-white h6 a,
footer.footer-white.site-footer .widget_services ul li a,
footer.footer-white p,
footer.footer-white strong,
footer.footer-white b,
footer.footer-white,
footer.footer-white .footer-bottom,
footer.footer-white .footer-bottom a {
  color: #000;
}

.footer-white .footer-bottom {
  border: 0;
}

.footer-white .widget_getintuch i {
  background-color: rgba(0, 0, 0, 0);
  border: 0 solid rgba(0, 0, 0, 0);
  font-size: 20px;
}

.footer-contact-info {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Color */
.footer-gray .footer-top,
.footer-gray .footer-bottom {
  background-color: #292929;
}

.footer-gray-1 .footer-top,
.footer-gray-1 .footer-bottom {
  background-color: #1a1a1a;
}

.site-footer .icon-bx-wraper {
  overflow: hidden;
}

.site-footer .icon-content {
  overflow: unset;
}

.site-footer .dez-tilte {
  position: inherit;
}

.site-footer .site-button.circle {
  color: #fff;
  font-size: 16px;
}

@media only screen and (max-width: 480px) {

  footer .footer-info-bar .col-xs-6,
  footer .footer-contact-info .col-xs-6 {
    width: 100%;
  }
}

/*---------------------------------------------------------------
27. PAGE-CONTENT
---------------------------------------------------------------*/

.page-wraper {
  background: #fff;
}

.page-content {
  margin-top: 0;
  padding-bottom: 48px;
}

.content-area {
  padding-top: 60px;
}

.section-full {
  position: relative;
}

.section-full:last-child {
  margin-bottom: 0px;
}

/*= Section Head Part =*/

.section-head {
  margin-bottom: 20px;
}

.section-head.m-b30 {
  margin-bottom: 30px;
}

.section-head.m-b20 {
  margin-bottom: 20px;
}

.section-head.no-margin {
  margin-bottom: 0;
}

.section-head h1,
.section-head h2,
.section-head h3 {
  margin-top: 0;
}

.title-small {
  display: block;
  color: #494949;
  margin-bottom: 15px;
}

.section-head p {
  padding-top: 10px;
  font-size: 16px;
  color: #494949;
}

.text-center.section-head p {
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
  font-family: Montserrat;
}

.text-white {
  color: #fff;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white .title-small {
  color: #fff;
}

/*= Section Content Part =*/

.section-content {
  max-width: 1700px;
  margin: auto;
}

@media (max-width: 1799px) {
  .section-content {
    max-width: 1600px;
    margin: auto;
  }
}

@media (max-width: 1699px) {
  .section-content {
    max-width: 1500px;
    margin: auto;
  }
}

@media (max-width: 1599px) {
  .section-content {
    max-width: 1400px;
    margin: auto;
  }
}

@media (max-width: 1499px) {
  .section-content {
    max-width: 1320px;
    margin: auto;
  }
}

@media (max-width: 1399px) {
  .section-content {
    max-width: 1240px;
    margin: auto;
  }
}

@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;
  }
}

@media only screen and (max-width: 767px) {
  .section-head p {
    font-size: 14px;
  }
}

/*---------------------------------------------------------------
28. INNER-CONTENT
---------------------------------------------------------------*/
/*page not found*/

.page-notfound {
  padding: 50px 0;
}

.page-notfound strong {
  font-size: 200px;
  font-weight: 900;
  line-height: 140px;
  display: block;
}

.page-notfound strong i {
  font-size: 190px;
  margin: 0 10px;
}

.page-notfound .searchform {
  position: relative;
  text-align: left;
  max-width: 420px;
  margin: 30px auto;
}

@media only screen and (max-width: 767px) {

  .page-notfound strong i,
  .page-notfound strong {
    font-size: 120px;
  }
}

/* required classes */

.sticky {
  clear: both;
}

.gallery-caption {
  clear: both;
}

.bypostauthor {
  clear: both;
}

/*Text meant only for screen readers. */

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/*===============================================

	gallery pages css

=============================================== */

.dez-gallery-listing {
  list-style: none;
  margin-bottom: 0;
}

.dez-gallery-box {
  margin-bottom: 30px;
}

/*===============================================

	Layout boxed css

=============================================== */

#bg {
  background-attachment: fixed;
  background-size: cover;
}

.boxed .page-wraper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.boxed .tp-banner-container,
.boxed .rev_slider_wrapper {
  left: 0 !important;
  width: 100% !important;
}

.boxed .tp-rightarrow {
  right: 0 !important;
}

.boxed .tp-leftarrow {
  left: 0 !important;
}

.boxed.footer-fixed .site-footer {
  left: 50%;
  width: 1200px;
  margin: 0 -600px;
}

.boxed .is-fixed .main-bar {
  left: 50%;
  width: 1200px;
  margin: 0 -600px;
}

.boxed .is-fixed.header-curve .logo-header:after {
  right: auto;
  left: -15px;
  width: 90%;
}

/* Frame */
.frame {
  padding: 30px;
}

.frame .page-wraper {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.frame .tp-banner-container,
.frame .rev_slider_wrapper {
  left: 0 !important;
  width: 100% !important;
}

.frame .tp-rightarrow {
  right: 0 !important;
}

.frame .tp-leftarrow {
  left: 0 !important;
}

.frame .is-fixed .main-bar {
  left: 0;
  width: 100%;
  margin: 0;
}

.frame .is-fixed.header-curve .logo-header:after {
  right: auto;
  left: -15px;
  width: 90%;
}

.frame button.scroltop {
  right: 50px;
  bottom: 50px;
}

@media only screen and (max-width: 1024px) {
  .frame {
    padding: 0;
  }

  .frame button.scroltop {
    right: 15px;
    bottom: 15px;
  }
}

.owl-imgbx,
.ow-portfolio-img {
  position: relative;
}

.ow-entry-content {
  border-width: 0 1px 1px 1px;
  border-style: solid;
  border-color: #eee;
  background-color: #fff;
  padding: 20px;
  margin-bottom: 5px;
}

.ow-entry-title {
  font-size: 16px;
  font-weight: 600;
  padding: 5px 0;
}

.ow-entry-title,
.ow-entry-title a {
  color: #3d474a;
}

.ow-entry-text p:last-child {
  margin: 0;
}

/*product detail page css*/
/* Product Details*/

.btn-quantity {
  width: 150px;
}

.product-description.dex-tabs.border-top .nav-tabs>li.active>a {
  border-top: 2px solid #efbb20;
}

.product-description.dex-tabs .nav-tabs>li>a i {
  color: #efbb20;
}

.dex-tabs.bg-tabs .nav-tabs>li>a {
  background-color: #fcfcfc;
}

.btn-quantity.style-1 {
  width: 130px;
}

.btn-quantity.style-1 input {
  background: #f8f8f8 none repeat scroll 0 0;
  border: 0 none;
  font-size: 14px;
  padding: 0 45px;
  text-align: center;
  height: 40px;
}

.btn-quantity.style-1 .input-group-btn-vertical button:last-child,
.btn-quantity.style-1 .input-group-btn-vertical button:first-child {
  background: #ebebeb none repeat scroll 0 0;
  border: 0 none;
  position: absolute;
  height: 40px;
  top: 0;
  width: 40px;
  padding: 0;
  z-index: 2;
  margin: 0;
}

.btn-quantity.style-1 .input-group-btn-vertical button:hover {
  background-color: #d1d1d1;
}

.btn-quantity.style-1 .input-group-btn-vertical button:first-child {
  right: 0;
}

.btn-quantity.style-1 .input-group-btn-vertical button:last-child {
  left: 0;
}

.btn-quantity.style-1 .bootstrap-touchspin .input-group-btn-vertical i {
  color: #909090;
  font-size: 16px;
  position: unset;
}

.btn-quantity.style-1 .input-group {
  position: relative;
}

.btn-quantity.style-1 .bootstrap-touchspin .input-group-btn-vertical {
  position: unset;
}

/*Product Review*/

ol.commentlist {
  list-style: none;
  margin: 0;
}

ol.commentlist li {
  position: relative;
  padding: 0;
  margin-bottom: 20px;
  background: #f7f8fa;
  padding: 20px;
  border: 1px dashed #eeeeee;
}

ol.commentlist li img {
  float: left;
  border: 5px solid #fff;
  width: 80px;
  height: auto;
}

ol.commentlist li .comment-text {
  padding-left: 100px;
}

ol.commentlist li .meta {
  margin-bottom: 5px;
}

ol.commentlist li .meta strong {
  font-size: 16px;
}

ol.commentlist li .meta .time {
  color: #999;
  display: block;
  font-size: 14px;
}

ol.commentlist li .description p {
  margin: 0;
}

ol.commentlist li .star-rating {
  position: absolute;
  top: 20px;
  right: 20px;
}

.comment-reply-title {
  margin-top: 0;
}

.comment-form [class*="comment-form"] {
  width: 49%;
}

.comment-form label {
  display: block;
}

.comment-form [class*="comment-form"] input,
.comment-form [class*="comment-form"] textarea {
  border: 1px solid #ccc;
  padding: 8px 10px;
  width: 100%;
}

.comment-form {
  margin: 0 -15px;
}

.comment-form [class*="comment-form"],
.comment-form .form-submit {
  margin-bottom: 20px;
  padding: 0 15px;
}

.comment-form .form-submit input:active,
.comment-form .form-submit input:focus,
.comment-form .form-submit input:hover {
  background: #037a85;
}

.dez-quik-search {
  background-color: rgba(0, 0, 0, 0.9) !important;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: none;
  overflow: hidden;
}

.dez-quik-search.On form {
  transition: all 0.5s ease 0.5s;
  -moz-transition: all 0.5s ease 0.5s;
  -webkit-transition: all 0.5s ease 0.5s;
  max-width: 1200px;
  opacity: 1;
}

.dez-quik-search form {
  width: 100%;
  max-width: 100px;
  margin: auto;
  position: relative;
  top: 50%;
  transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transform: translate(0px, -50%);
  -moz-transform: translate(0px, -50%);
  -o-transform: translate(0px, -50%);
  -webkit-transform: translate(0px, -50%);
  opacity: 0;
}

.dez-quik-search .form-control {
  padding: 15px 60px 15px 15px;
  width: 100%;
  height: 90px;
  border: none;
  background: none;
  color: #fff;
  font-size: 20px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.dez-quik-search .form-control::-moz-placeholder {
  color: #fff;
}

.dez-quik-search .form-control:-moz-placeholder {
  color: #fff;
}

.dez-quik-search .form-control:-ms-input-placeholder {
  color: #fff;
}

.dez-quik-search .form-control::-webkit-input-placeholder {
  color: #fff;
}

.dez-quik-search span {
  position: absolute;
  right: 15px;
  top: 50%;
  margin: -15px 0;
  height: 25px;
  font-size: 20px;
  cursor: pointer;
}

/* form control style */
.form-box1 .form-control {
  height: 50px;
  padding: 15px 20px;
  font-size: 16px;
  text-transform: capitalize;
  border: 2px solid rgba(0, 0, 0, 0.05);
}

.form-box1 textarea.form-control {
  height: 150px;
}

.form-box1 .form-control:focus,
.form-box1 .form-control:hover {
  border: 2px solid rgba(0, 0, 0, 0.2);
}

#gmap_canvas {
  width: 100%;
  height: 400px;
}

#gmap_canvas img {
  max-width: none !important;
  background: none !important;
}

/* sosiyal btn color */

.fb-btn {
  background-color: #4867aa;
}

.tw-btn {
  background-color: #1da1f2;
}

.gplus-btn {
  background-color: #dc4a38;
}

.pin-btn {
  background-color: #cc2127;
}

.link-btn {
  background-color: #0274b3;
}

.dez-social-icon.dez-social-icon-lg li a {
  font-size: 14px;
  height: 35px;
  line-height: 34px;
  padding: 0;
  width: 35px;
}

/* Team Section */

.dez-media.dez-media-left .dez-info-has,
.dez-media.dez-media-top .dez-info-has,
.dez-media.dez-media-right .dez-info-has {
  bottom: auto;
  margin-bottom: 0;
  top: 0;
}

/* Top Side Icon */

.dez-media.dez-media-top .dez-info-has {
  margin-top: -100px;
}

.dez-media.dez-media-top:hover .dez-info-has,
.dez-box:hover .dez-media.dez-media-top .dez-info-has {
  margin-top: 0;
}

/* Left Side Icon */

.dez-media.dez-media-left .dez-info-has {
  left: 0;
  padding: 15px;
  width: auto;
  margin-left: -60px;
}

.dez-media.dez-media-left:hover .dez-info-has {
  margin-left: 0px;
}

.dez-media.dez-media-left .dez-social-icon li {
  display: block;
  margin: 3px 0;
}

/* Right Side Icon */

.dez-media.dez-media-right .dez-info-has {
  right: 0;
  padding: 15px;
  width: auto;
  left: auto;
  margin-right: -60px;
}

.dez-media.dez-media-right:hover .dez-info-has {
  margin-right: 0px;
}

.dez-media.dez-media-right .dez-social-icon li {
  display: block;
  margin: 3px 0;
}

/* Team 4 */
.rounded-team .round-box {
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  left: 0px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 195px;
  height: 195px;
  border-radius: 100%;
  overflow: hidden;
  padding: 10px;
  display: block;
  border: 1px solid #fff;
}

.rounded-team .team-mamber {
  width: 100%;
  height: 100%;
  padding: 10px;
  overflow: hidden;
  border-radius: 100%;
  background-color: #fff;
}

.rounded-team .team-mamber img {
  -moz-transform: scale(1.5);
  -webkit-transform: scale(1.5);
  -o-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
}

.rounded-team .sosial-icon-team {
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  border-radius: 100%;
  display: block;
  height: 195px;
  overflow: hidden;
  position: absolute;
  right: 50%;
  top: 0;
  width: 195px;
  margin-right: -97px;
}

.rounded-team .sosial-icon-team ul.rounde-team-social-icon li a,
.rounded-team .sosial-icon-team ul li {
  width: 100%;
  display: block;
  color: #fff;
}

.rounded-team .sosial-icon-team ul.rounde-team-social-icon {
  margin-right: -5px;
  margin-top: 28px;
  width: 80px;
  float: right;
}

.rounded-team {
  position: relative;
}

.rounded-team:hover .sosial-icon-team {
  margin-right: -117px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.rounded-team:hover .round-box {
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  left: -20px;
}

.rounded-team .team-info {
  border-color: #d3d3d3;
  margin-top: -27px;
}

.rounded-team .team-social-btn ul li a {
  background-color: #c0c0c0;
}

.rounded-team .rounde-team-social-icon li a {
  color: #ffffff;
  font-size: 14px;
  height: 35px;
  line-height: 34px;
  padding: 0;
  width: 35px;
}

/* team 5 */
.team-box-type {
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.team-mamber-img,
.team-info-box {
  width: 50%;
}

.team-info-box {
  padding: 20px;
}

.team-mamber-img,
.team-info-box {
  display: table-cell;
  vertical-align: middle;
}

.team-box-type,
.team-info-box {
  overflow: hidden;
}

.team-p-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.team-p-info li {
  display: block;
  width: 100%;
  font-size: 15px;
  padding: 5px 0;
  color: #404040;
}

@media only screen and (max-width: 767px) {

  .team-mamber-img,
  .team-info-box {
    width: 100%;
    display: block;
  }

  .team-mamber-img,
  .team-info-box {}
}

/*---------------------------------------------------------------
29. SIDE-NAV
---------------------------------------------------------------*/
.sidenav.cs-sidenav {
  width: 800px;
  right: -820px;
  left: auto;
}

.sidenav {
  height: 100%;
  width: 300px;
  position: fixed;
  z-index: 9;
  top: 0;
  left: -320px;
  background-color: #fff;
  overflow-x: hidden;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
  border: 0 none;
  border-radius: 0;
}

.sidenav>ul li a {
  padding: 10px 15px;
  display: block;
  border-color: #ebebeb;
  border-image: none;
  border-style: solid;
  border-width: 1px 0;
  display: block;
  margin-bottom: -1px;
  padding: 10px 15px;
  font-size: 15px;
  font-weight: 600;
}

.sidenav>ul li a:hover {
  color: #fff;
}

.sidenav .logo-header {
  height: auto;
  padding: 15px;
  width: 100%;
}

.button-side-nav {
  position: fixed;
  right: 20px;
  top: 20px;
  z-index: 999;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  box-shadow: -2px 2px 5px 0 rgba(0, 0, 0, 0.4);
  font-size: 17px;
  cursor: pointer;
}

.sidenav .closebtn {
  color: #ffffff;
  font-size: 24px;
  height: 35px;
  line-height: 35px;
  padding: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 35px;
  z-index: 9;
}

#main {
  transition: margin-left 0.5s;
  -moz-transition: margin-left 0.5s;
  -webkit-transition: margin-left 0.5s;
  -o-transition: margin-left 0.5s;
}

@media only screen and (max-width: 800px) {
  .sidenav.cs-sidenav {
    width: 100%;
  }
}

/*==== Particles ====*/
#particles-js .container {
  z-index: 2;
}

.particles-js-canvas-el {
  position: absolute;
  top: 0;
  z-index: 1;
}

/*==== LOADING ====*/
#loading-area {
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  opacity: 1;
  z-index: 999999999;
  background-image: url(../images/loading.svg);
  background-repeat: no-repeat;
  background-size: 50px;
  background-position: center;
}

/* ------------------------------------------------
30. CONTACT
------------------------------------------------ */
.dez-social-icon.dez-social-icon-lg li a {
  color: #ffffff;
  font-size: 14px;
  height: 35px;
  line-height: 34px;
  padding: 0;
  width: 35px;
  border-radius: 4px;
}

.dez-social-icon-lg.dez-social-icon li {
  display: inline-block;
  font-size: 12px;
  padding: 0;
}

.dez-social-icon-lg.dez-social-icon.border li a {
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-style-1 input {
  height: 50px;
}

.contact-style-1 .site-button {
  height: 50px;
  width: 100%;
}

.contact-style-1 .form-control {
  padding: 10px 20px;
}

.contact-style-1 .form-control:focus,
.contact-style-1 .form-control:hover {
  border-color: #c0c0c0;
}

.contact-style-1 h2 {
  margin-top: 0;
}

.contact-style-1 .border-1 {
  border: 1px solid #eee;
}

.contact-style-1 .dez-social-icon-lg {
  border-top: 1px solid #eeeeee;
  padding-top: 20px;
  text-align: left;
  width: 100%;
  margin: 0;
}

.contact-style-1 .dez-social-icon-lg a {
  text-align: center;
}

.contact-style-1 .dez-social-icon-lg li a:hover {
  background: #fff !important;
  color: #000;
}

.contact-style-1 .form-group {
  margin-bottom: 25px;
}

/* ------------------------------------------------
31. SHOPPING
------------------------------------------------ */
/* 
	1.0 Checkout 
	
*/

/*===== 1.0 Checkout =====*/
.shop-form .form-control,
.shop-form .bootstrap-select .dropdown-toggle {
  border-width: 2px;
  border-radius: 0;
}

.shop-form .bootstrap-select .dropdown-toggle {
  border-width: 2px !important;
}

.shop-form p {
  font-weight: 500;
  color: #a3a3a3;
}

.shop-form textarea {
  height: 150px;
}

.shop-form .form-control:hover,
.shop-form .form-control:focus,
.shop-form .bootstrap-select:focus .dropdown-toggle,
.shop-form .bootstrap-select:hover .dropdown-toggle {
  border-color: #636363 !important;
}

.check-tbl img {
  width: 80px;
}

.check-tbl th {
  font-weight: 700;
  font-size: 15px;
  padding: 10px;
}

.check-tbl td {
  font-weight: 600;
  padding: 10px;
}

.check-tbl.table>tbody>tr>td,
.check-tbl.table>tbody>tr>th,
.check-tbl.table>tfoot>tr>td,
.check-tbl.table>tfoot>tr>th,
.check-tbl.table>thead>tr>td,
.check-tbl.table>thead>tr>th {
  vertical-align: middle;
}

/* shop-price */
.product-price,
.check-tbl .product-price,
.product-price-total,
.check-tbl .product-price-total,
.check-tbl .product-item-price {
  font-weight: 700;
}

/* Cart */
.product-item-close a {
  background-color: #ff6550;
  color: #fff;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  display: block;
  border-radius: 30px;
}

.product-item-close a:hover {
  opacity: 0.9;
}

/* Product Item */
.item-img {
  overflow: hidden;
  position: relative;
}

.item-img img {
  width: 100%;
}

.item-info-in {
  bottom: -20%;
  padding: 15px;
  position: absolute;
  text-align: center;
  width: 100%;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.2s;
  opacity: 0;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ff5ea5+5,00becf+100 */
  background: rgb(255, 94, 165);
  /* Old browsers */
  background: -moz-linear-gradient(45deg,
      rgba(255, 94, 165, 0.8) 5%,
      rgba(0, 190, 207, 0.8) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg,
      rgba(255, 94, 165, 0.8) 5%,
      rgba(0, 190, 207, 0.8) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg,
      rgba(255, 94, 165, 0.8) 5%,
      rgba(0, 190, 207, 0.8) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5ea5', endColorstr='#00becf', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}

.item-box:hover .item-info-in {
  opacity: 1;
  bottom: 0;
}

.item-info-in ul li {
  display: inline-block;
}

.item-info-in ul li a {
  color: #ffffff;
  display: inline-block;
  font-size: 18px;
  padding: 5px 10px;
}

.item-info-in ul,
.item-review {
  margin: auto;
  padding: 0;
  list-style: none;
}

.item-review li {
  display: inline-block;
  font-size: 15px;
}

.item-price del {
  font-size: 16px;
  font-weight: 400;
  opacity: 0.4;
}

.item-price {
  font-size: 18px;
  font-weight: 600;
}

.item-info-in.center {
  bottom: auto;
  left: 50%;
  top: 30%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.item-box:hover .item-info-in.center {
  top: 50%;
  bottom: auto;
}

.item-info-in.no-bg {
  background-color: rgba(0, 0, 0, 0);
}

.item-info-in.no-bg.tb a {
  color: #000;
}

.item-info-in.no-bg.tb a:hover {
  color: #000;
  opacity: 0.8;
}

/* Dir */
.item-info-in.left {
  width: auto;
  padding: 10px;
}

.item-info-in.left ul li {
  display: block;
}

.item-info-in.right {
  width: auto;
  padding: 10px;
  right: 0;
  left: auto;
}

.item-info-in.right ul li {
  display: block;
}

.item-info-in.top {
  width: auto;
  padding: 10px;
  top: -20%;
  left: 0;
  bottom: auto;
  height: auto;
}

.item-box:hover .item-info-in.top,
.item-img:hover .item-info-in.top,
.item-box:hover .item-info-in.top.right,
.item-img:hover .item-info-in.top.right {
  top: 0;
}

.item-img:hover .item-info-in.top,
.item-box:hover .item-info-in.top {
  bottom: auto;
}

.item-info-in.top.right ul li {
  display: block;
}

.item-info-in.top.right {
  width: auto;
  padding: 10px;
  top: -20%;
  right: 0;
  bottom: auto;
  left: auto;
}

.item-info-in.full {
  height: 100%;
}

.item-info-in.full ul li {
  display: block;
  width: 100%;
}

.item-info-in.full ul,
.item-info-in.full .center {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

/* item add */
.item-add {
  outline: 8px solid rgba(255, 255, 255, 0.5);
  outline-offset: -20px;
  position: relative;
  overflow: hidden;
}

.add-box {
  align-items: center;
  display: flex;
  flex-flow: row nowrap;
  height: 100%;
  left: 0;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
}

.add-box h2 {
  font-size: 50px;
  line-height: 50px;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.add-box h5 {
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.item-add.add-style-2 {
  outline: 8px solid rgba(0, 0, 0, 0.1);
}

.item-add.add-style-2 img {
  opacity: 0.05;
}

.item-add.add-style-2 .add-box h2,
.item-add.add-style-2 .add-box h5 {
  text-shadow: none;
}

.item-add.add-style-3 {
  outline: none;
}

.item-add.add-style-3 h5,
.item-add.add-style-3 h2 {
  text-shadow: none;
}

.item-add.add-style-3 h2 {
  font-size: 30px;
  margin: 0;
}

.item-add.add-style-3 .add-box .add-box-in {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 20px 30px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.item-add.add-style-3 .add-box .add-box-in.black {
  background-color: rgba(0, 0, 0, 0.8);
}

.item-add.add-style-3:hover .add-box-in {
  padding: 30px 40px;
}

/* Product Details Item */
.shop-item-rating {
  position: absolute;
  top: 0;
  right: 0;
}

.shop-item-rating span {
  display: block;
  text-align: right;
  margin-bottom: 10px;
}

.shop-item-tage span {
  font-size: 15px;
  font-weight: 600;
}

.shop-item-tage a {
  font-weight: 600;
  margin-left: 7px;
}

/* Hover Style  */
.outline-hv {
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  outline: 10px solid rgba(255, 255, 255, 0.5);
}

.item-box:hover .outline-hv,
.outline-hv:hover {
  outline: 10px solid rgba(255, 255, 255, 0.5);
  outline-offset: -30px;
}

/* Product Item */
.product-item .dez-info {
  border-top: 1px solid #e9e9e9;
}

.product-item .dez-box {
  border: 1px solid #e9e9e9;
  position: relative;
}

.product-item .sale:after {
  border-right: 5px solid rgba(0, 0, 0, 0);
  border-top: 4px solid #8f0000;
  bottom: -4px;
  content: "";
  position: absolute;
  right: 0;
}

.product-item .sale {
  position: absolute;
  right: -5px;
  top: 10px;
  z-index: 2;
}

.product-item .overlay-icon {
  bottom: 0px;
  top: auto;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.product-item:hover .overlay-icon {
  bottom: 40px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.product-item:hover img {
  transform: scale(1.1);
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.product-item .overlay-icon a i {
  background-color: #efbb20;
  color: #fff;
}

.product-item:hover .dez-box,
.product-item:hover .dez-info {
  border-color: #d0d0d0;
}

.add-product .dez-info-has.bg-black {
  background-color: rgba(0, 0, 0, 0.4);
}

.add-product .dez-info-has {
  top: 0;
}

.add-product del {
  opacity: 0.6;
}

.product-service .icon-bx-wraper {
  border: 0;
}

.product-item del {
  color: #b0b0b0;
  font-size: 18px;
  margin-top: 0;
  position: relative;
  top: -1px;
}

/* Item Widgets */
.item-widgets-box,
.item-widgets-body {
  overflow: hidden;
}

.item-widgets-box {
  margin-top: 15px;
}

.item-widgets-box:first-child {
  margin-top: 0;
}

.item-widgets-left {
  padding-right: 15px;
}

.item-widgets-left img {
  width: 80px;
}

.item-widgets-left,
.item-widgets-body,
.item-widgets-right {
  display: table-cell;
  vertical-align: middle;
}

.item-widgets-body .item-title,
.item-widgets-body .item-price del {
  font-size: 15px;
}

/* product item size */
.product-item-size .btn {
  background-color: #f3f3f3;
  border: 0px solid #e0e0e0;
  border-radius: 0;
  font-size: 14px;
  height: 40px;
  line-height: 38px;
  padding: 0;
  text-align: center;
  width: 40px;
  margin-right: 4px;
}

.product-item-size .btn.active {
  background-color: #1abc9c;
  box-shadow: none;
  color: #fff;
}

.product-item-size.size-sm .btn {
  font-size: 11px;
  height: 25px;
  line-height: 23px;
  width: 25px;
}

.product-item-size.size-lg .btn {
  font-size: 18px;
  height: 50px;
  line-height: 48px;
  width: 50px;
}

/* product-item-color */
.product-item-color .btn {
  border: 0 none;
  border-radius: 30px !important;
  height: 30px;
  opacity: 0.5;
  padding: 0;
  width: 30px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  margin-right: 5px;
}

.product-item-color .btn.active {
  border: 2px solid rgba(0, 0, 0, 0.3);
  box-shadow: none;
  opacity: 1;
}

.product-item-color.size-sm .btn {
  height: 20px;
  width: 20px;
}

/* Product Gallery */
.product-gallery.on-show-slider {
  position: relative;
}

.sticky-top,
.sticky-top>.side-bar {
  position: sticky;
  position: -webkit-sticky;
  top: 100px;
}

.on-show-slider .overlay-icon a i {
  padding: 10px;
}

/* Download File */
.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;
}

.download-file ul li a span {
  margin-right: 10px;
}

/* =============================
	Spacing End Alignment	
============================= */
.site-footer .widget_getintuch {
  padding-top: 0;
}

.content-inner {
  padding-top: 80px;
  padding-bottom: 40px;
}

.content-inner-1 {
  padding-top: 10px;
  padding-bottom: 0px;
}

.content-inner-2 {
  padding-top: 60px;
  padding-bottom: 70px;
}

.content-inner-3 {
  padding-top: 120px;
  padding-bottom: 90px;
}

.content-inner-4 {
  padding-top: 0px;
  padding-bottom: 80px;
}

.testimonial-five .owl-controls {
  margin-top: 0px;
}

.dis-tbl {
  display: table;
}

.dis-tbl-cell {
  display: table-cell;
  vertical-align: middle;
}

.dis-tbl-cell-t {
  display: table-cell;
  vertical-align: top;
}

.dis-tbl-cell-b {
  display: table-cell;
  vertical-align: bottom;
}

.img-cover {
  object-fit: cover;
  width: 100%;
}

/* sp */
.row.sp20,
.sp20 {
  margin-left: -9px;
  margin-right: -9px;
}

.row.sp20 [class*="col-"],
.sp20 [class*="col-"] {
  padding-left: 9px;
  padding-right: 9px;
}

.row.sp15,
.sp15 {
  margin-left: -7.5px;
  margin-right: -7.5px;
}

.row.sp15 [class*="col-"],
.sp15 [class*="col-"] {
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.row.sp10,
.sp10 {
  margin-left: -5px;
  margin-right: -5px;
}

.row.sp10 [class*="col-"],
.sp10 [class*="col-"] {
  padding-left: 5px;
  padding-right: 5px;
}

/* Mobile Spacing */
@media only screen and (max-width: 991px) {
  .sticky-top {
    position: unset;
  }
}

@media only screen and (max-width: 767px) {
  .content-area {
    padding-top: 30px;
  }

  .page-content {
    padding-bottom: 30px;
  }

  .footer-top {
    padding-top: 40px;
  }

  .footer-top .m-b30 {
    margin-bottom: 10px;
  }

  .footer-top .widget_services ul {
    margin-top: -5px;
  }

  .blog-carousel .blog-post {
    margin-bottom: 0;
  }

  .blog-post {
    margin-bottom: 30px;
  }

  .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: 0px;
    padding-bottom: 10px;
  }

  .sm-pb-5 {
    padding-bottom: 48px;
  }

  .content-inner-2 {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .content-inner-3 {
    padding-top: 30px;
    padding-bottom: 20px;
  }

  .section-head {
    margin-bottom: 25px;
  }

  .dez-project-left {
    padding-top: 30px;
  }

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

  .testimonial-section .owl-controls {
    margin-top: 20px;
  }

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

  .h3 {
    font-size: 28px;
    margin-top: 10px;
  }

  .about-service .icon-bx-wraper:nth-child(2) {
    margin-top: 0;
  }

  .side-bar {
    margin-bottom: 30px;
  }

  .dez-post-title .post-title {
    margin-top: 10px;
  }

  .footer-info-box .newsletter {
    margin-bottom: 10px;
  }

  ol.commentlist li .star-rating {
    position: unset;
  }

  .comment-form [class*="comment-form"] {
    width: 100%;
  }

  .pricingtable-wrapper {
    margin-bottom: 30px;
  }

  .pricingtable-highlight {
    margin: 0;
  }

  .disnone-md {
    display: none;
  }
}

/* Owl Slider */
.slide-item {
  position: relative;
}

.slide-item .slide-content {
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.slide-item-img img {
  object-fit: cover;
}

.slide-content-box {
  position: relative;
  top: 30%;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transition: all 1s ease 0.5s;
  -webkit-transition: all 1s ease 0.5s;
  -o-transition: all 1s ease 0.5s;
  -moz-transition: all 1s ease 0.5s;
}

.owl-slider-banner .owl-theme .owl-dots {
  margin-top: 0;
  position: absolute;
  right: 50px;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 25px;
  color: rgba(255, 255, 255, 0.5);
}

.owl-slider-banner .owl-theme .owl-dots .owl-dot span {
  height: 9px;
  width: 9px;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.owl-slider-banner .owl-theme .owl-dots .owl-dot {
  border: 1px solid;
  border-radius: 20px;
  display: inline-block;
  margin: 4px;
  padding: 4px;
}

.owl-slider-banner .owl-theme .owl-dots .owl-dot.active,
.owl-slider-banner .owl-theme .owl-dots .owl-dot:hover {
  border: 1px solid #ff3b68;
}

.owl-slider-banner .owl-item .slide-content-box {
  opacity: 0;
}

.owl-slider-banner .owl-item.active .slide-content-box {
  opacity: 1;
  transition: all 0.5s ease 0.5s;
  -moz-transition: all 0.5s ease 0.5s;
  -webkit-transition: all 0.5s ease 0.5s;
  -o-transition: all 0.5s ease 0.5s;
  top: 50%;
}

/* Shop Categories */
.shop-categories .acod-head a {
  border-width: 0 0 2px;
  color: #000000;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 0;
  text-transform: uppercase;
  border-radius: 0;
}

.shop-categories .acod-body {
  border-width: 0;
}

.shop-categories .acod-content {
  margin: 15px 0 15px;
}

.shop-categories .collapsed {}

.shop-categories .acod-head a.collapsed:after,
.shop-categories .acod-head a:after {
  font-weight: 700;
  color: #000;
  font-size: 18px;
  right: 5px;
}

.shop-categories .acod-head a:after {
  content: "--";
}

.shop-categories .acod-head a.collapsed:after {
  content: "+";
}

.product-brand .search-content {
  display: block;
  margin-bottom: 0;
  padding: 10px 0;
}

.product-brand .search-content .search-content-area {
  margin-bottom: 0;
}

/* Price */
.price .amount {
  border: 0 none;
  color: #404040;
  font-weight: 700;
  margin-bottom: 15px;
  padding: 0;
  text-align: left;
  width: 100%;
}

.price .ui-widget-content {
  margin: 0 8px;
}

.container-fluid.wide {
  padding-left: 30px;
  padding-right: 30px;
}

/* Shop Account */
.shop-account .form-control {
  background: #f9faff none repeat scroll 0 0;
  border: 0 none;
  box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.05);
  font-size: 16px;
  height: 50px;
  padding: 0 20px;
}

.shop-account .site-button.button-lg {
  font-size: 14px;
  font-weight: 700;
  padding: 14px 30px;
  text-transform: uppercase;
}

.shop-account .border-1 {
  border-color: #dfdfdf;
}

.shop-account .form-control:focus {
  box-shadow: 2px 2px 14px 0 rgba(0, 0, 0, 0.05);
  background-color: #fff;
}

@media only screen and (max-width: 767px) {
  .product-item-quantity .input-group {
    width: 80%;
  }
}

@-webkit-keyframes videomodule-anim {
  0% {
    -webkit-transform: scale(0.68);
    transform: scale(0.68);
  }

  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}

@keyframes videomodule-anim {
  0% {
    -webkit-transform: scale(0.68);
    transform: scale(0.68);
  }

  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}

/* Rev Slider */
.short-edit-box {
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 3px -1px rgba(0, 0, 0, 0.08) inset;
  padding: 8px;
  margin-bottom: 15px;
}

.short-edit-box h5 a {
  color: #fff;
  font-weight: 700;
}

/* .site-filters a */
.site-filters .filter-curs .owl-item {
  margin-left: -1px;
}

.site-filters .filter-curs {
  overflow: hidden;
}

.site-filters .filter-curs a {
  background: #2d2d2d none repeat scroll 0 0;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  color: #ffffff;
  display: block;
  margin: 0;
  padding: 10px 15px;
  opacity: 0.8;
}

.site-filters .filter-curs li.active a {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1ebbf0+8,39dfaa+100 */
  background: #1ebbf0;
  /* Old browsers */
  background: -moz-linear-gradient(45deg,
      #1ebbf0 8%,
      #39dfaa 100%);
  /* FF3.6-15 */
  background: -Winkit-linear-gradient(45deg,
      #1ebbf0 8%,
      #39dfaa 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg,
      #1ebbf0 8%,
      #39dfaa 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1ebbf0', endColorstr='#39dfaa', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  opacity: 1;
  box-shadow: 2px 2px 4px 0 rgba(53, 218, 179, 0.5);
}

/* Google Recaptcha */

.g-recaptcha,
#rc-imageselect {
  transform: scale(0.99);
  -webkit-transform: scale(0.99);
  -moz-transform: scale(0.99);
  -o-transform: scale(0.99);

  transform-origin: 0 0;
  -o-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
}

@media screen and (max-width: 1200px) {

  #rc-imageselect,
  .g-recaptcha {
    transform: scale(0.77);
    -moz-transform: scale(0.77);
    -o-transform: scale(0.77);
    -webkit-transform: scale(0.77);

    transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -o-transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
  }
}

.recaptcha-box {
  height: 60px;
}

.g-recaptcha>div {
  width: 250px !important;
}

/* Google Recaptcha */
@media screen and (max-width: 991px) {
  .mo-left .header-nav.nav-dark {
    background-color: #202020;
  }

  .mo-left .header-nav {
    overflow: scroll;
    position: fixed;
    width: 60px;
    left: -280px;
    height: 100% !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;
  }

  .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;
    display: block;
  }

  .mo-left .is-fixed .header-nav .nav {
    height: auto;
  }

  .mo-left .navbar-toggler.open:after {
    background-color: rgba(0, 0, 0, 0.6);
    content: "";
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    transform: scale(100);
    -o-transform: scale(100);
    -moz-transform: scale(100);
    -webkit-transform: scale(100);
    width: 100%;
    z-index: -1;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transform-origin: right;
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    -o-transform-origin: right;
    -moz-transform-origin: right;
    box-shadow: 0 0 0 500px rgba(0, 0, 0, 0.6);
    -webkit-box-shadow: 0 0 0 500px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 0 0 0 500px rgba(0, 0, 0, 0.6);
  }

  .mo-left .header-nav .logo-header {
    display: block;
    float: none;
    height: auto;
    max-width: 100%;
    padding: 20px;
    width: 100%;
  }

  .mo-left .header-nav .logo-header img {
    max-width: unset;
    width: 150px;
  }

  .mo-left .navbar-toggler.open span {
    background: #fff;
  }
}

/* 	Hover Effects 
	> Box Shadow Hover

*/
.fly-box-ho,
.fly-box,
.fly-box-ho:hover,
.fly-box:hover,
.hwp {
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.fly-box {
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
}

.icon-bx-wraper:hover .fly-box-ho,
.fly-box-ho:hover,
.icon-bx-wraper:hover .fly-box,
.fly-box:hover {
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
  -o-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

.hwp {
  background-color: #fff;
  color: #1abc9c;
}

.hwp a {
  color: #1abc9c;
}

.icon-bx-wraper:hover .hwp,
.hwp:hover {
  background-color: #1abc9c;
  color: #fff;
}

.icon-bx-wraper:hover .hwp a,
.hwp:hover a {
  color: #fff;
}

/* Support and Buy Button */
.theme-btn {
  background-color: #ffffff;
  border-radius: 40px;
  bottom: 10px;
  color: #ffffff;
  display: table;
  height: 50px;
  left: 10px;
  min-width: 50px;
  position: fixed;
  text-align: center;
  z-index: 9999;
}

.theme-btn i {
  font-size: 22px;
  line-height: 50px;
}

.theme-btn.bt-support-now {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1ebbf0+8,39dfaa+100 */
  background: #1ebbf0;
  /* Old browsers */
  background: -moz-linear-gradient(45deg,
      #1ebbf0 8%,
      #39dfaa 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg,
      #1ebbf0 8%,
      #39dfaa 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg,
      #1ebbf0 8%,
      #39dfaa 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1ebbf0', endColorstr='#39dfaa', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  bottom: 70px;
}

.theme-btn.bt-buy-now {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1fdf61+0,88BA46+100 */
  background: #1fdf61;
  /* Old browsers */
  background: -moz-linear-gradient(top,
      #a3d179 0%,
      #88ba46 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top,
      #a3d179 0%,
      #88ba46 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,
      #a3d179 0%,
      #88ba46 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1fdf61', endColorstr='#88BA46', GradientType=0);
  /* IE6-9 */
}

.theme-btn:hover {
  color: #fff;
  padding: 0 20px;
}

.theme-btn span {
  display: table-cell;
  vertical-align: middle;
  font-size: 16px;
  letter-spacing: -15px;
  opacity: 0;
  line-height: 50px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  text-transform: uppercase;
}

.theme-btn:hover span {
  opacity: 1;
  letter-spacing: 1px;
  padding-left: 10px;
}

.at-expanding-share-button[data-position="bottom-left"] {
  bottom: 130px !important;
}

/* Support and Buy Button END */
.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

/* Card Styling */
.business-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 0px !important;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.premium-tag {
  position: absolute;
  top: 15px;
  left: 40px;
  background: #9eb86e;
  color: white;
  padding: 3px 10px;
  font-size: 11px;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
}

.premium-img {
  position: absolute;
  top: 15px;
  right: 15px;
  color: white;

  font-size: 11px;
  border-radius: 2px;
  font-weight: bold;
  text-transform: uppercase;

}

.premium-img img {
  width: 25px !important;
  opacity: 0.4;
  border: 1px solid #e8e8e8;
  padding: 4px;
}

.book-mark {
  color: #111;
  font-size: 17px;
}

.card-title {
  color: #000 !important;
  font-size: 1.1rem;
  font-weight: 500;
  height: 3.5rem;
  overflow: hidden;
  margin-top: 35px;
}

.card-text {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 15px;
  line-height: 18px;
  height: 60px;
}

.stats-table {
  background: #f4f7f9;
  padding: 10px;
  margin-bottom: 15px;
}

.stats-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 5px 0;
  border-bottom: 1px solid #ddd;
}

.stats-row:last-child {
  border-bottom: none;
}

.btn-contact {
  background: #9eb86e;
  border: none;
  font-weight: bold;
  color: #fff;
  width: 100%;
  padding: 10px;
}

.btn-view-all {
  background: #111;
  border: none;
  color: white;
  padding: 12px 25px;
  border-radius: 5px;
}

/* Header section */
.header-title {
  font-weight: bold;
  margin-bottom: 20px;
}

.custom-bg {
  background-color: #9eb86e1f;
}

.pb-80 {
  padding-bottom: 80px;
}

@media (max-width: 575px) {
  .opport-text {
    padding-bottom: 20px;
  }
}

.grow-text {
  color: #9eb86e7d;
}

.card-1 {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #ccc;
  position: relative;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 420px;
}

.card-1 img.thumb {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.category-bar {
  background: #ff6f61;
}

.card-content {
  padding: 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-content h3 {
  font-size: 17px;
  margin: 0 0 8px;
  color: #222;
}

.card-content p {
  font-size: 14px;
  color: #555;
  margin: 0 0 12px;
  line-height: 1.4;
}

.rating-location {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
}

.rating-location span i {
  color: #ffb400;
  margin-right: 4px;
}

.metrics {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  background: #f7f9fc;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 10px;
}

.partial-stake {
  font-size: 13px;
  margin-bottom: 12px;
  color: #333;
}

.cta-button {
  display: block;
  text-align: center;
  padding: 10px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #0056b3;
}

.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #9eb86e;
  border: none !important;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  padding: 3px 10px;
  border-radius: 5px;
  text-transform: uppercase;
}

.category-bar {
  background-color: #84c0ca;
}

.login-btn {
  padding: 6px 20px !important;
}

.login {
  margin-left: 30px;

}

.map {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: -320px;
  right: 0px;
}

@media (max-width: 991px) {
  .map {
    top: -146px;
  }
}

@media (max-width: 767px) {
  .map {
    top: 0px;
  }
}

#chartdiv {
  width: 89%;
  height: 630px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow:
    rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
  text-align: center;
  margin: auto;
}

@media (max-width: 1199px) {
  #chartdiv {
    height: 450px !important;
  }
}

@media (max-width: 575px) {
  #chartdiv {
    height: 350px !important;
  }
}

.who-are-you {
  border-radius: 15px;
}

.pluse {
  color: #000;
  font-size: 30px;
  font-weight: 600;
  margin-left: 6px;
}

.fw-55 {
  font-weight: 500;
  color: #fff;
}

.bg-green {
  background-color: #9eb86e7d;
}

@media (max-width: 1199px) {
  .content-inner-2 {
    padding-top: 40px;
    padding-bottom: 50px;
  }
}

@media (max-width: 991px) {
  .sm-pb-5 {
    padding-bottom: 40px;
  }

  .padding-bottom-0 {
    padding-bottom: 0px !important;
  }
}

@media (min-width: 1000px) {
  #work-steps-carousel .owl-nav {
    display: none !important;
  }

  #facts-carousel .owl-nav {
    display: none !important;
  }
}

.custom-container {
  max-width: 1700px !important;
}

@media (max-width: 1799px) {
  .custom-container {
    max-width: 1600px !important;
    margin: auto;
  }
}

@media (max-width: 1699px) {
  .custom-container {
    max-width: 1500px !important;
    margin: auto;
  }
}

@media (max-width: 1599px) {
  .section-content {
    max-width: 100% !important;
    margin: auto;
  }
}

.map-container {
  position: relative;
  max-width: 100%;
  margin: auto;
}

.map-container img {
  width: 90%;
  display: block;
  border: 2px solid #ccc;
  border-radius: 5px;
  margin: auto;
}

/* Pin ka main style */
.pin {
  width: 20px;
  height: 20px;
  position: absolute;
  cursor: pointer;
  z-index: 2;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%230d52f8' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5S10.62 6.5 12 6.5s2.5 1.12 2.5 2.5S13.38 11.5 12 11.5z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  filter: drop-shadow(0 0 6px #0d52f8);
}

/* Blinking/Pulsing Layer banane ke liye ::after ka use */




.section-title-5 {
  font-size: 32px;
}

.find-job-bx {
  /* display: flex; */
  gap: 20px;
  align-items: center;
}

.text-color {
  color: #5c5c5c;
  position: absolute;
  top: 0;
  left: -1329%;
}

.section-padding-2 {
  padding: 70px 0px;
}

.mt-70 {
  margin-top: 48px;
}

.text-image-sticky .image-text-card {
  --position: calc(120px + 110px, 40px);

  top: calc(120px + 100px);
}

.text-image-sticky .image-text-card {
  position: -webkit-sticky;
  position: sticky;
  padding: 60px 40px;
}

.radius18 {
  border-radius: 4px;
  overflow: hidden;
}

.text-image-sticky .image-text-card:nth-child(1) {
  background: #9eb86e7d;
  top: -300px;
  color: #fff;
}

.text-image-sticky .image-text-card:nth-child(2) {
  background: rgba(239, 238, 251, 1);
  top: -260px;
}

.text-image-sticky .image-text-card:nth-child(3) {
  background: #84c0ca;
  top: -230px;
  color: #fff;
}

.text-image-sticky .image-text-card:nth-child(4) {
  background: #f5f7f8;
  top: -280px;
}

.text-image-sticky .image-text-card:nth-child(5) {
  background: #efe8df;
  top: 10px;
  color: #fff;
}

.text-image-sticky .image-text-card:nth-child(6) {
  background: #d8edee;
  top: 40px;
  color: #fff;
}

.service-heading {
  font-size: 35px !important;
  font-weight: 600 !important;
}

.text-28 {
  font-size: 28px;
  line-height: 1.2;
  padding: 10px 0px;
}

.button {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
}

.section-header {
  color: white;
  margin-bottom: 30px;
}

.section-title {
  font-size: 40px;
  margin: 0;
  font-weight: 500;
}

.icon-box img {
  width: 60px !important;
}

.number {
  font-size: 40px;
  display: block;
  line-height: 1;
}

.label {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 15px;
  display: block;
}

.head-counter-bx {
  transform: translateY(100px);
  opacity: 0;
  transition: all 3s ease;
}

.owl-item:nth-child(1) .head-counter-bx {
  transition-delay: 0s;
}

.owl-item:nth-child(2) .head-counter-bx {
  transition-delay: 0.5s;
}

.owl-item:nth-child(3) .head-counter-bx {
  transition-delay: 1s;
}

.owl-item:nth-child(4) .head-counter-bx {
  transition-delay: 1.5s;
}

.head-counter-bx.show {
  transform: translateY(0);
  opacity: 1;
}

/* Mobile par normal */
@media (max-width: 576px) {
  .head-counter-bx {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
}

.main-text {
  text-align: center;
  color: #5c5c5c;
  background-color: #9eb86e7d;
}

.main-text-paragraph {
  text-align: center;
  color: #5c5c5c;
  font-style: italic;
  background-color: #9eb86e7d;
  padding-bottom: 10px;
  font-weight: 500;
}

.main-btn {
  position: absolute !important;
  z-index: 9 !important;
  top: 280px !important;
  left: 17% !important;
}

.bg-color {
  background-color: #84c0ca;
  padding: 5px 0px;
}

.get-started {
  position: relative;
  color: #fff;
  padding: 20px 0;
  top: 475px;
}

.get-started::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0,0,0,0.55); */
}

.get-started .container {
  position: relative;
  z-index: 2;
}

.get-started h3 {
  font-weight: 500;
  margin-bottom: 10px;
}

.get-started p {
  margin-bottom: 12px;
  font-size: 15px;
}

.btn-blue {
  background: #84c0ca;
  color: #000;
}

.btn-yellow {
  background: #d8edee;
  color: #000;
}

.btn-green {
  background: #9eb86e7d;
  color: #000;
  margin-top: 18px;
}

.btn:hover {
  opacity: 0.9;
}

.btn-blue:hover {
  color: #000;
}

.btn-green:hover {
  color: #000;
}

.btn-yellow:hover {
  color: #000;
}

.btn-gray {
  background-color: #efe8df;
  margin-top: 18px;
}

.btn-gray:hover {
  color: #000;
}

/* Connecting Lines SVG Layer */

/* Positions */
.left-side {
  left: -360px;
}

.right-side {
  right: -360px;
}

/* Vertical alignment */
.pos-1 {
  top: 0px;
}

.pos-2 {
  top: 70px;
}

.pos-3 {
  top: 140px;
}

.pos-4 {
  top: 220px;
}

.pos-5 {
  top: 300px;
}

.banner-media-bg {
  position: fixed;
  top: 50%;
  right: 30px;
  /* ya left: 30px; jahan chahiye */
  transform: translateY(-50%);
  z-index: 999;
}

.full-width,
.hero-parallax,
.main-bnr {
  width: 100%;
  /* instead of 100vw */
  max-width: 100vw;
  box-sizing: border-box;
}

/* Desktop orbiting labels hide */
.mobile-only {
  display: none !important;
}

.mb_5 {
  margin-bottom: 48px !important;
}



@media (max-width: 1440px) {
  .main-text {
    font-size: 40px !important;
  }

  .section-title-2 {
    font-size: 35px !important;
  }

  .service-heading {
    font-size: 30px !important;
    font-weight: 600 !important;
  }

  .text-28 {
    font-size: 24px;
    line-height: 1.2;
    padding: 10px 0px;
  }
}

@media (max-width: 1024px) {
  .main-text {
    font-size: 28px !important;
  }

  .main-text-paragraph {
    font-size: 14px !important;
    margin-bottom: 30px;
  }

  .banner-media .banner-main-media {
    left: -110px;
    bottom: 85px;
  }

  .get-started {
    top: 330px !important;


  }

  .main-bnr {
    height: 570px;
  }

  .card-title {
    font-size: 16px;
  }

  .btn {
    font-size: 14px;
  }
}

/* Mobile / Tablet adjustments */
@media (max-width: 991px) {


  .main-bnr {
    height: 650px !important;


  }

  .get-started {
    top: 375px !important;
    /* Adjusted from 630px */
  }



  .main-text-paragraph {
    margin-bottom: 15px;
  }

  /* Icons ko bahut chhota kar do taaki overflow na ho */
  .banner-icon {
    width: 38px !important;
    height: 38px !important;
  }

  /* Desktop orbiting labels hide */
  .orbit-labels.desktop-only {
    display: none !important;
  }

  /* Mobile list show */
  .mobile-opportunities.mobile-only {
    display: block !important;
    margin: 125px 10px 0px 10px;
    /* Reduced top margin from 200px to reduce space */
  }

  .banner-media .banner-main-media {
    bottom: -19px;
  }


  /* Reduced top margin from 200px to reduce space */
}

.mobile-opportunities .row {
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
  justify-content: flex-start !important;
}

.mobile-opportunities .row::-webkit-scrollbar {
  display: none;
}

.mobile-opportunities .col-6 {
  flex: 0 0 45%;
  /* Show nearly two buttons */
  max-width: 45%;
}

.mobile-opp-btn {
  display: block;
  background: #84c0ca;
  border: 1px solid #84c0ca;
  border-radius: 8px;
  padding: 8px 10px;
  text-align: center;
  color: #333;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
  font-weight: 600;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}

.mobile-opp-btn:hover {
  background: #e9ecef;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Get Started buttons full width + better spacing */
.get-started .row>div {
  margin-bottom: 24px;
}

.get-started .btn {
  width: 100%;
  padding: 8px !important;
}

.btn-yellow {
  margin-top: 18px;
}

.btn-blue {
  margin-top: 18px;
}

.ring-2 {
  width: 390px !important;
  height: 390px !important;
}

/* Text sizes mobile friendly */
.main-text {
  font-size: clamp(1.2rem, 5vw, 1.9rem) !important;
  line-height: 1.2;
}

.main-text-paragraph {
  font-size: 14px !important;
  margin-bottom: 25px !important;
}

.mobile-text-only {
  display: none;
}


/* Extra small phones */
@media (max-width: 576px) {
  .mobile-opp-btn {
    font-size: 0.9rem;
    padding: 10px 8px;
  }

  .banner-media .banner-main-media {
    left: 25% !important;
  }

  .main-bnr {
    height: 600px !important;
  }

  .get-started {
    top: 285px !important;

  }



  .text-image-sticky .image-text-card:nth-child(1) {
    background: #9eb86e7d;
    top: -180px;
    color: #fff;
  }

  .text-image-sticky .image-text-card:nth-child(2) {
    background: rgba(239, 238, 251, 1);
    top: -180px;
  }

  .text-image-sticky .image-text-card:nth-child(3) {
    background: #84c0ca;
    top: -180px;
    color: #fff;
  }

  .text-image-sticky .image-text-card:nth-child(4) {
    background: #f5f7f8;
    top: -180px;
  }

  .text-image-sticky .image-text-card:nth-child(5) {
    background: #efe8df;
    top: -180px;
    color: #fff;
  }

  .text-image-sticky .image-text-card:nth-child(6) {
    background: #d8edee;
    top: 40px;
    color: #fff;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .head-counter-bx {
    width: 100%;
  }

  .head-counter .number {
    font-size: 28px;
  }

  .head-counter-bx h4 {
    font-size: 16px;
  }

  .main-bnr h1 {
    font-weight: 600;
    font-size: 12px !important;
    line-height: 20px !important;
    margin-bottom: 0;
  }

}



.meta-info {
  font-size: 0.9rem;
  color: #495057;
  margin-bottom: 0.4rem;
}

.rating {
  color: #ffc107;
  font-weight: bold;
}

.location {
  color: #6c757d;
}

.stats-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  margin: 2px 0px;
  padding-top: 0;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-weight: 600;
  color: #212529;
}

.stat-label {
  font-size: 0.8rem;
  color: #6c757d;
}

.promo-box {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  margin: 1.5rem 0;
}

.promo-box h5 {
  margin-bottom: 1rem;
  color: #1a3c6d;
}

.status-active {
  color: #28a745;
  /* Bootstrap green */
  font-weight: 600;
}

.custom-box {
  display: flex;
  margin: 20px auto;
  gap: 20px;
}

.left {
  width: 70%;
}

.right {
  width: 30%;
}

@media (max-width: 991px) {
  .custom-box {
    display: block;
    margin: 20px auto;
    gap: 20px;
  }

  .left {
    width: 100% !important;
    margin-top: 30px;
  }

  .right {
    width: 100% !important;
  }
}

.breadcrumb {
  font-size: 14px;
  background-color: #9eb86e !important;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
}

.category {
  color: #9eb86e7d;
  font-size: 14px;
}

.premium {
  background: #e6f4ea;
  color: #1e8e3e;
  padding: 8px;
  margin: 15px 0;
  border-radius: 4px;
}

.btn_custom {
  background-color: #e6f4ea;
}

.rating {
  font-size: 20px;
  margin-bottom: 15px;
}

.star {
  color: orange;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table td {
  padding: 8px;
  border-bottom: 1px solid #eee;
}

.stake {
  margin-top: 20px;
}

.contact-card {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  box-shadow:
    rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.contact-card input,
.contact-card select,
.contact-card textarea {
  width: 100%;
  padding: 8px;
  margin: 8px 0;
}

.contact-card textarea {
  height: 80px;
}

.green {
  color: #9eb86e7d;
}

.checkbox {
  font-size: 14px;
  width: 14px !important;
}

.btn-yellow-2 {
  width: 100%;
  padding: 10px;
  background: #9eb86e7d;
  border: none;
  color: #fff;
  margin-top: 10px;
  cursor: pointer;
}

.btn-green-2 {
  width: 100%;
  padding: 10px;
  background: #25d366;
  border: none;
  margin-top: 10px;
  color: white;
  cursor: pointer;
}

.field-label {
  display: flex;
  gap: 15px;
}

.listing-page-right-side-subheading {
  font-size: 14px;
  color: #9ca3af;
  font-weight: 600;
}

.breadcrumb {
  padding-left: 0px !important;
  padding-top: 2px !important;
  background-color: #9eb86e7d;
  color: #fff;
  font-weight: 600;
  margin-bottom: 6px !important;
}

.right {
  width: 30%;
}

.contact-card {
  position: sticky;
  top: 90px;
  /* distance from top while scrolling */
}

.details-wrapper {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

.info-table {
  width: 40%;
  background: #f8fbff;
  border: 1px solid #e5eaf0;
}

.info-table table {
  width: 100%;
  border-collapse: collapse;
}

.info-table td {
  padding: 10px;
  border-bottom: 1px solid #e5eaf0;
  font-size: 14px;
}

.info-table td:first-child {
  color: #555;
}

.link {
  color: #1a73e8;
}

.sale-info {
  width: 60%;
}

.rating-box {
  margin-bottom: 15px;
  font-size: 16px;
}

.rating {
  font-size: 22px;
  margin: 5px 0;
}

.sale-box {
  background: #fff;
  padding: 20px;
  border: 1px solid #e5eaf0;
}

.price {
  color: #313131;
}

.muted {
  color: #777;
  font-size: 13px;
}

.checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  margin: 8px 0;
}

.private-info h4 {
  margin-top: 15px;
  font-size: 16px;
}

.verification span {
  margin-right: 10px;
  font-size: 14px;
}

.documents,
.overview {
  margin-top: 30px;
  margin-bottom: 25px;
}

.documents h3 {
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 20px;
}

.doc-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.doc-list a {
  color: #1a73e8;
  text-decoration: none;
  font-size: 14px;
}

.sale-box h3 {
  font-size: 16px;
}

.verification h4 {
  font-size: 16px;
}

.btn-view-all a {
  color: #fff;
}

.faq-menu .list-group-item {
  cursor: pointer;
}

.faq-menu .active {
  background-color: #84c0ca !important;
  border: 1px solid #84c0ca !important;
  font-weight: 600;
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}

.faqs-shadow {
  box-shadow:
    rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  padding: 25px;
}

.faq-category {
  padding: 0px 15px;
}

.register-bx {
  box-shadow: 0 0 10px 0 rgba(0, 24, 128, 0.1);
}

.gap-20 {
  gap: 20px;
}

.premium-tag .active-dot {
  position: absolute;
  top: 6px;
  right: 84px;
  width: 8px;
  height: 8px;
  background-color: #28a745;
  /* green active dot */
  border-radius: 50%;
  box-shadow: 0 0 0 2px #fff;
}

.section-bx {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

.section-header {
  background: #84c0ca;
  padding: 10px;
  font-weight: bold;
  margin: -25px -20px 20px -20px;
  border-radius: 5px 5px 0 0;
  color: #fff;
}

label {
  display: block;
  margin: 15px 0 5px;
  font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.tooltip {
  color: #0066cc;
  cursor: help;
  font-size: 0.9em;
  margin-left: 5px;
}

.checkbox-group {
  margin: 15px 0;
}

.status-sidebar {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
}

.status-item {
  font-weight: bold;
}

.green-dot::before {
  content: "● ";
  color: #28a745;
}

.gray-dot::before {
  content: "○ ";
  color: #6c757d;
}

/* .faq {
  margin-top: 30px;
} */

.faq a {
  color: #84c0ca;
  text-decoration: none;
  display: block;
  margin: 8px 0;
}

.custom-shadow {
  box-shadow:
    rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  padding: 10px 15px;
  border-radius: 5px;
}

.seller-profile {
  padding: 30px 0;
}

.form-card {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-card h4 {
  margin-bottom: 15px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid #ddd;
  border-radius: 4px;
}

.overview-section h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 14px;
}

.tags-line a {
  color: #7a7a7a;
  text-decoration: none;
}

.tags-line a:hover {
  color: #000;
  text-decoration: underline;
}

.iti {
  width: 100%;
  margin-bottom: 10px;
}

.budget-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* .budget-row input {
  width: 40%;
} */

.budget-row select {
  width: 20%;
}

.budget-to {
  font-weight: 600;
  color: #444;
}

.image-upload-section {
  margin-bottom: 2rem;
}

.image-upload-section label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.required {
  color: #e63946;
}

.helper-text {
  font-size: 0.85rem;
  color: #666;
  margin: 0.3rem 0 1rem 0;
}

.file-input-wrapper {
  position: relative;
  margin-bottom: 1rem;
}

.file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.choose-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 15px;
  background: #9eb86e7d;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  max-width: 180px;
}

.choose-btn:hover {
  background: #3f37c9;
  transform: translateY(-1px);
}

.choose-btn:active {
  transform: translateY(0);
}

.error-msg {
  color: #e63946;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  display: none;
}

.image-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 1.2rem;
}

.preview-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  background: #f8f9fa;
  transition: all 0.2s ease;
}

.preview-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.remove-btn {
  position: absolute;
  top: -2px;
  right: -4px;
  width: 20px;
  height: 20px;
  background: #9eb86e7d;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(239, 35, 60, 0.4);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.remove-btn:hover {
  background: #d00000;
  transform: scale(1.15);
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  background: #fff;
  min-height: 42px;
  align-items: center;
  transition: all 0.2s;
}

.tag {
  display: inline-flex;
  align-items: center;
  background: #84c0ca;
  color: #000;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  gap: 6px;
}

.tag .remove {
  background: none;
  border: none;
  color: #000;
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
}

.tag .remove:hover {
  color: #c53030;
}

.tags-input {
  flex: 1;
  min-width: 120px;
  border: none;
  outline: none;
  font-size: 1rem;
  padding: 4px 0;
}

.tags-input::placeholder {
  color: #a0aec0;
}

.helper-text {
  font-size: 0.85rem;
  color: #718096;
  margin: 0.4rem 0 0.8rem 0;
}

.required {
  color: #e53e3e;
}

.error-msg {
  color: #e53e3e;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.password-wrapper {
  position: relative;
}

/* Extra small phones */
@media (max-width: 576px) {
  .details-wrapper {
    flex-direction: column;
    gap: 28px;
  }

  .left {
    padding: 12px;
  }

  .card {
    padding: 18px;
    border-radius: 0;
    box-shadow: none;
    margin: 0 -12px 20px -12px;
  }

  h2 {
    font-size: 1.45rem;
    margin-bottom: 16px;
  }

  .premium {
    font-size: 0.85rem;
    padding: 5px 12px;
  }

  .sale-box {
    padding: 18px;
    border-radius: 10px;
  }

  .price {
    font-size: 2.1rem;
  }

  .rating {
    font-size: 1.9rem;
  }

  .doc-list a {
    font-size: 0.98rem;
    padding: 12px 0;
  }

  .info-table {
    width: 100%;
  }

  .sale-info {
    width: 100%;
  }
}

#togglePassword {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #666;
  display: flex;
  align-items: center;
}

#toggleConfirmPassword {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #666;
  display: flex;
  align-items: center;
}

#toggleSignPassword {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #666;
  display: flex;
  align-items: center;
}

.whatsapp-float {
  position: fixed;
  bottom: 130px;
  right: 20px;
  width: 70px;
  height: 70px;
  z-index: 6;
}

@media (max-width: 991px) {
  .whatsapp-float {
    display: none;
  }
}

.whatsapp-header {
  display: none;
}

@media (max-width: 991px) {
  .whatsapp-header {
    display: flex;
    align-items: center;
    margin-right: 15px;
  }

  .whatsapp-header img {
    width: 35px;
    height: 35px;
  }
}

.pricing-wrapper {
  width: 100%;
  padding: 30px;
  font-family: Arial, sans-serif;
}

.billing-toggle {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
}

.billing-toggle button {
  border: none;
  padding: 10px 40px;
  border-radius: 30px;
  cursor: pointer;
  background: #eee;
  font-weight: 600;
}

.billing-toggle button.active {
  background: #9eb86e7d;
  color: #fff;
}

.pricing-table {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  border: 1px solid #ddd;
}

.pricing-left {
  border-right: 1px solid #ddd;
}

.pricing-left h4 {
  padding: 64px 40px;
  border-bottom: 1px solid #ddd;
}

.pricing-row-title {
  margin-top: 40px;
  font-weight: bold;
  font-size: 16px;
}

.pricing-card {
  padding: 10px;
  border-right: 1px solid #ddd;
}

.pricing-card:last-child {
  border-right: none;
}

.plan-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.price {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 15px;
}

.price span {
  font-size: 14px;
  font-weight: 500;
  color: #555;
}

.btn-plan {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  background: #000;
  color: #fff;
  margin-bottom: 25px;
}

.btn-plan.green {
  background: #9eb86e7d;
  color: white;
}

.btn-plan.blue {
  background: #000;
  color: white;
}

.btn-plan.dark {
  background: #004d40;
  color: white;
}

.pricing-row ul {
  padding-left: 18px;
  margin: 0;
}

.pricing-row ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.pricing-section {
  width: 100%;
  background: #fff;
  font-family: Arial, sans-serif;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr repeat(4, 1.3fr);
  border: 1px solid #ddd;
}

.pricing-left-box {
  min-height: 260px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  font-size: 18px;
  font-weight: 600;
}

.pricing-left-box.limits {
  display: none;
}

.pricing-col {
  border-right: 1px solid #ddd;
  height: 100%;
}

.pricing-col:last-child {
  border-right: none;
}

.pricing-content {
  min-height: 260px;
  height: 100%;
  padding: 20px 10px;
  /* Removed border-bottom since limits are removed */
}

.pricing-content.limits {
  display: none;
}

.pricing-content ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.pricing-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 16px;
  color: #111;
}

.top-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

/* Background Colors */
.starter {
  background: #f5f7f8;
}

.growth {
  background: #f0e6de;
}

.advanced {
  background: #d8eeec;
}

.enterprise {
  background: #f0f1ea;
}

/* Tick Icon */
.tick {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-block;
  margin-top: 2px;
  position: relative;
  flex-shrink: 0;
}

.tick::after {
  content: "✓";
  color: white;
  font-size: 12px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Tick Colors */
.tick.yellow {
  background: #000;
}

.tick.green {
  background: #9eb86e7d;
}

.tick.navy {
  background: #1c3b57;
}

.tick.blue {
  background: #1e88e5;
}

@media (max-width: 991px) {
  .pricing-table {
    display: flex;
    flex-direction: column;
    border: none;
  }

  .pricing-left-box {
    height: 60px;
  }

  .pricing-left-box.limits {
    height: 60px;
  }

  .pricing-left {
    border: 1px solid #ddd;
    border-radius: 0px;
    margin-bottom: 15px;
  }

  .pricing-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 20px;
  }

  .pricing-card:last-child {
    margin-bottom: 0;
  }

  .price {
    font-size: 22px;
  }

  .btn-plan {
    font-size: 14px;
    padding: 10px;
  }

  .pricing-content {
    margin-top: 15px;
  }
}

@media (max-width: 576px) {
  .billing-toggle button {
    width: 100%;
    text-align: center;
    padding: 10px 20px;
  }

  .pricing-content ul li {
    font-size: 13px;
  }

  .pricing-wrapper {
    padding: 0px;
  }
}

.cim-content p {
  margin-bottom: 14px;
  text-align: justify;
}

.cim-content h3 {
  margin-bottom: 10px;
}

.cim img {
  width: 50%;
}

.cross {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ff0000' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M6 18L18 6M6 6l12 12'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

.deal-box {
  border: 1px solid #9eb86e;
  padding: 20px;
  width: 90%;
  margin: 20px auto;
  background: #fff;
}

.deal-box h4 {
  margin: 0;
  font-size: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #9eb86e;
}

.form-group {
  margin-top: 15px;
}

label {
  font-size: 13px;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.tag-input {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #9eb86e;
  padding: 5px;
  min-height: 38px;
  border-radius: 2px;
}

.tag-input input {
  border: none;
  outline: none;
  flex: 1;
  padding: 5px;
  font-size: 14px;
  min-width: 150px;
}

.dropdown-box {
  border: 1px solid #ccc;
  background: #fff;
  max-height: 160px;
  overflow-y: auto;
  display: none;
  position: absolute;
  width: 100%;
  z-index: 999;
}

.dropdown-box div {
  padding: 8px;
  cursor: pointer;
  font-size: 14px;
}

.dropdown-box div:hover {
  background: #f1f1f1;
}

.relative {
  position: relative;
}

.range-box {
  margin-top: 10px;
}

.range-box input {
  width: 100%;
}

.range-value {
  text-align: center;
  font-size: 13px;
  margin-top: 5px;
  color: #444;
}

.btn-save {
  margin-top: 20px;
  background: #3aa13a;
  border: none;
  color: #fff;
  padding: 7px 14px;
  font-size: 13px;
  border-radius: 3px;
  cursor: pointer;
}

.btn-save:hover {
  background: #2f7f2f;
}


.attention-box {
  border: 1px solid #ddd;
  background: #fff;
  padding: 15px;
  border-radius: 3px;
}

.attention-header {
  font-weight: 600;
  color: #000;
  display: flex;
  align-items: center;
  gap: 8px;
}

.attention-header i {
  color: red;
  font-size: 18px;
}

.attention-text {
  font-size: 13px;
  color: #555;
  margin-top: 5px;
}

.profile-title {
  font-size: 13px;
  color: #000;
  display: flex;
  align-items: center;
  gap: 6px;
}

.profile-title span {
  color: #555;
}

.btn-yellow-two {
  background: #ffc107;
  border: 1px solid #e0a800;
  color: #000;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 3px;
}

.btn-yellow-two:hover {
  background: #e0a800;
  color: #000;
}

.btn-delete {
  border: 1px solid #ddd;
  background: #fff;
  padding: 6px 10px;
  border-radius: 3px;
  font-size: 13px;
  cursor: pointer;
}

.invalid-box {
  background: #ffe6e6;
  border: 1px solid #ffb3b3;
  padding: 15px;
  border-radius: 3px;
  font-size: 13px;
  color: #c40000;
}

.upgrade-box {
  background: #fff9e6;
  border: 1px solid #ffe0a3;
  padding: 15px;
  border-radius: 3px;
  font-size: 13px;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.upgrade-box i {
  color: green;
  margin-right: 6px;
}

.section-title {
  font-weight: 600;
  font-size: 14px;
  margin-top: 20px;
  border-top: 1px solid #ddd;
  padding-top: 15px;
}

.add-profile {
  border: 1px solid #ddd;
  background: #fff;
  padding: 12px;
  margin-top: 15px;
  font-size: 14px;
  color: green;
  font-weight: 600;
  cursor: pointer;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.add-profile i {
  margin-right: 6px;
}

.profile-img-preview {
  width: 45px;
  height: 45px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid #ddd;
  display: none;
}

.add-profile-box {
  border: 1px solid #ddd;
  background: #fff;
  padding: 12px 15px;
  margin-top: 15px;
  font-size: 14px;
  color: #111;
  font-weight: 600;
  cursor: pointer;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.add-profile-box:hover {
  background: #f8f8f8;
}

.profile-options {
  display: none;
  border: 1px solid #ddd;
  border-top: 0;
  padding: 25px 15px;
  background: #fff;
}

.profile-option-item {
  text-align: center;
  padding: 15px 10px;
  cursor: pointer;
}

.profile-option-item:hover p {
  text-decoration: underline;
}

.profile-icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
}

.circle-blue {
  background: #1e88e5;
}

.circle-yellow {
  background: #1c3b57;
}

.circle-orange {
  background: #000;
}

.circle-green {
  background: #7bc043;
}

.profile-option-item p {
  margin-top: 10px;
  margin-bottom: 2px;
  font-weight: 600;
  font-size: 13px;
  color: #111;
}

.profile-option-item span {
  font-size: 12px;
  color: #777;
}

.header-profile {
  position: relative;
  display: inline-block;
  padding: 20px 0px;
}

.profile-btn {
  background: #84c0ca;
  border: none;
  padding: 7px 15px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.profile-btn i {
  margin-left: 5px;
}

.profile-menu {
  display: none;
  position: absolute;
  top: 45px;
  right: 0;
  width: 320px;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
  border-radius: 4px;
}

.profile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-bottom: 1px solid #eee;
  font-size: 13px;
  font-weight: 600;
  color: #444;
}

.profile-menu-header .incomplete i {
  color: orange;
  margin-right: 6px;
}

.profile-item {
  padding: 12px;
  border-bottom: 1px solid #eee;
}

.profile-left {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
}

.profile-left i {
  margin-right: 8px;
  color: #666;
}

.profile-links {
  font-size: 13px;
  color: #007bff;
}

.profile-links a {
  color: #363739;
  text-decoration: none;
  margin: 0px 5px;
}

.profile-links a:hover {
  text-decoration: underline;
}

.profile-add {
  padding: 10px 12px;
  background: #f9f9f9;
}

.profile-add a {
  color: #28a745;
  font-weight: 600;
  text-decoration: none;
}

.profile-add a i {
  margin-right: 6px;
}

.profile-add-dropdown {
  position: relative;
}

.arrow-icon {
  float: right;
  font-size: 16px;
  margin-top: 2px;
  color: #666;
}

.sub-profile-menu {
  display: none;
  position: absolute;
  top: 0;
  left: -210px;
  width: 200px;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  z-index: 999;
}

.sub-profile-menu a {
  display: block;
  padding: 10px 12px;
  font-size: 13px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

.sub-profile-menu a:last-child {
  border-bottom: none;
}

.sub-profile-menu a i {
  margin-right: 7px;
  color: #007bff;
}

.sub-profile-menu a:hover {
  background: #f5f5f5;
}

.owl-carousel {
  position: relative;
}

.owl-nav {
  position: absolute;
  top: 50%;
  left: auto;
  width: 100%;
  transform: translateY(-50%);
  display: flex !important;
  justify-content: space-between;
  padding: 0 0px;
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
  background-color: #84c0ca;
}

.profile-add {
  position: relative;
  display: inline-block;
}

.profile-add a.dropdown-toggle {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  padding: 10px 15px;
  display: inline-block;
}

/* Dropdown menu */
.dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  padding: 8px 0;
  min-width: 240px;
  border-radius: 10px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.12);
  z-index: 999;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
}

/* Hover open dropdown */
.profile-add:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/* Click open dropdown */
.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  display: block;
  padding: 12px 18px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.dropdown-menu li a:hover {
  background: #84c0ca;
  color: #fff;
  padding-left: 25px;
}

.upgrade-proposal-section {
  width: 100%;
  padding: 30px 0;
  font-family: Arial, sans-serif;
}

.upgrade-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  border: 1px solid #ddd;
  background: #fff;
}

/* Left Side */
.upgrade-left {
  width: 65%;
  padding: 20px;
  border-right: 1px solid #ddd;
}

.upgrade-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.upgrade-header h3 {
  font-size: 18px;
  margin: 0;
  font-weight: bold;
}

.close-btn {
  font-size: 22px;
  cursor: pointer;
  color: #888;
}

.upgrade-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f1f1f1;
}

.upgrade-option label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: bold;
}

.badge {
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 5px;
}

.advisor-text {
  font-size: 12px;
  color: green;
  margin-left: 6px;
  font-weight: normal;
}

.plan-desc {
  font-size: 13px;
  color: #9eb86e;
  margin: 10px 0;
}

.plan-features {
  background: #f6fbff;
  border: 1px solid #d9edf7;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 5px;
}

.plan-features ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.plan-features ul li {
  font-size: 13px;
  margin-bottom: 8px;
  color: #333;
}

.footer-note {
  font-size: 12px;
  color: #666;
  margin-top: 10px;
}

.footer-note a {
  color: #007bff;
  text-decoration: none;
}

.upgrade-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.tax-text {
  font-size: 12px;
  color: #777;
}



/* Right Side */
.upgrade-right {
  width: 35%;
  background: #84c0ca;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.upgrade-right h4 {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: bold;
}

.member-img img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-bottom: 15px;
}

.member-quote {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.member-box h5 {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
}

.member-box span {
  font-size: 12px;
  opacity: 0.9;
}

@media(max-width: 768px) {
  .upgrade-container {
    flex-direction: column;
  }

  .upgrade-left,
  .upgrade-right {
    width: 100%;
  }
}

.profile-icons {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.icon-box {
  position: relative;
}

.icon-btn {
  width: 45px;
  height: 45px;
  background: #84c0ca;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #333;
  font-size: 18px;
  position: relative;
  transition: 0.3s;
}

.icon-btn:hover {
  background: #9eb86e;
  color: #fff;
}

.badge-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: red;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 50%;
}

/* Dropdown */
.icon-dropdown {
  position: absolute;
  top: 55px;
  right: 0;
  width: 280px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.15);
  padding: 12px;
  display: none;
  z-index: 999;
}

.icon-dropdown h5 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}

.icon-dropdown ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.icon-dropdown ul li {
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid #f3f3f3;
  color: #333;
}

.icon-dropdown ul li small {
  display: block;
  font-size: 11px;
  color: #777;
  margin-top: 3px;
}

.icon-dropdown ul li:last-child {
  border-bottom: none;
}

.drop-link {
  display: block;
  text-align: right;
  font-size: 13px;
  font-weight: bold;
  margin-top: 10px;
  text-decoration: none;
  color: #212529;
}

.drop-link:hover {
  text-decoration: underline;
}

.profile-dropdown-menu {
  display: none;
  padding: 10px;
}

.profile-dropdown-menu.show {
  display: block;
}

.arrow-icon {
  transition: 0.3s;
}

.arrow-icon.rotate {
  transform: rotate(180deg);
}

.profile-add {
  padding: 0px !important;
}

.notification-page {
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}

.notification-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  border-bottom: 1px solid #eee;
  align-items: flex-start;
}

.notification-item:last-child {
  border-bottom: none;
}

.notify-img {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.notify-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.notify-content {
  flex: 1;
}

.notify-content h4 {
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 6px;
  color: #333;
}

.notify-content a {
  font-size: 13px;
  color: #007bff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 5px;
}

.notify-content a:hover {
  text-decoration: underline;
}

.notify-content p {
  font-size: 13px;
  margin: 0;
  color: #555;
  line-height: 1.5;
}

.notify-time {
  width: 140px;
  text-align: right;
  font-size: 12px;
  color: #777;
  flex-shrink: 0;
}

/* Responsive */
@media(max-width:768px) {
  .notification-item {
    flex-direction: column;
  }

  .notify-time {
    width: 100%;
    text-align: left;
    margin-top: 5px;
  }
}


.icon-bg-area {
  height: 100vh;
  padding: 40px;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  width: 100%;
  max-width: 900px;
}

.login-icon-box {
  border: 1px solid rgba(0, 255, 255, 0.4);
  border-radius: 10px;
  padding: 25px 15px;
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  box-shadow: 0px 0px 15px rgba(0, 255, 255, 0.2);
  transition: 0.3s;
}

.login-icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0px 0px 25px rgba(0, 255, 255, 0.6);
}

.login-icon-box img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
}

.login-icon-box h5 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-transform: capitalize;
  line-height: 1.4;
}

@media(max-width: 992px) {
  .icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 576px) {
  .icon-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.bookmark-container {
  width: 95%;
  margin: auto;
  font-family: Arial, sans-serif;
  margin: 15px 20px;
}

.bookmark-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}

/* Verified and Activity Styles */
.premium-tag-wrapper {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
}

.premium-tag {
  position: static !important;
  background: #9eb86e;
  color: white;
  padding: 3px 10px;
  font-size: 11px;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.5;
}

.verified-tag {
  position: static !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  background: transparent !important;
  color: #38bdf8 !important;
  font-size: 18px !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.verified-tag i {
  font-size: 18px !important;
  filter: drop-shadow(0 2px 4px rgba(56, 189, 248, 0.3));
}

.active-dot {
  width: 10px;
  height: 10px;
  background: #2ecc71;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 2px #fff, 0 0 5px rgba(46, 204, 113, 0.5);
  position: static !important;
  animation: pulse-online 2s infinite;
}

@keyframes pulse-online {
  0% {
    box-shadow: 0 0 0 0px rgba(46, 204, 113, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
  }

  100% {
    box-shadow: 0 0 0 0px rgba(46, 204, 113, 0);
  }


}

.premium-tag {
  position: static !important;
  background: #9eb86e;
  color: white;
  padding: 3px 10px;
  font-size: 11px;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.5;
}

.verified-tag {
  position: static !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  background: transparent !important;
  color: #38bdf8 !important;
  font-size: 18px !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.verified-tag i {
  font-size: 18px !important;
  filter: drop-shadow(0 2px 4px rgba(56, 189, 248, 0.3));
}

.active-dot {
  width: 10px;
  height: 10px;
  background: #2ecc71;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 2px #fff, 0 0 5px rgba(46, 204, 113, 0.5);
  position: static !important;
  animation: pulse-online 2s infinite;
}

@keyframes pulse-online {
  0% {
    box-shadow: 0 0 0 0px rgba(46, 204, 113, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
  }

  100% {
    box-shadow: 0 0 0 0px rgba(46, 204, 113, 0);
  }


}

/* Enforce identical uniform Dashboard button styling in header globally */
.login .login-btn.site-button {
  background-color: #9eb86e !important;
  border-color: #9eb86e !important;
  color: #fff !important;
}

.login .login-btn.site-button:hover,
.login .login-btn.site-button:active {
  background-color: #84c0ca !important;
  border-color: #84c0ca !important;
  color: #fff !important;
}

.owl-dots {
  display: none !important;
}

.h-270 {
  height: 270px !important;
}

/* Card Container */
.business-card {
  border: 2px solid #eee !important;
  border-color: #9eb86e !important;
  color: #fff !important;
}

.login .login-btn.site-button:hover,
.login .login-btn.site-button:active {
  background-color: #84c0ca !important;
  border-color: #84c0ca !important;
  color: #fff !important;
}

.owl-dots {
  display: none !important;
}

.h-270 {
  height: 270px !important;
}

/* Card Container */
.business-card {
  border: 2px solid #eee !important;

}

/* Background for the Left Profile Section */
.col-5.border-end {
  background-color: #f4f6f8 !important;
  background-color: #f4f6f8 !important;

}

/* Matching the exact colors from wireframe */
.text-primary {
  color: #4a90e2 !important;


}

/* Contact Button Color */
.btn-contact-custom {
  background-color: #a4bc94 !important;
  /* Dirty Green color from wireframe */
  border: none;
  letter-spacing: 1px;
}

/* Ensure images don't break the layout */
.profile-thumb-mini img {
  border: 2px solid #fff;
}

.card-description-text {
  display: block;
  color: #555;
}

.fa-check-circle {
  color: #0095f6 !important;
  /* Instagram Blue color */
}


.media-wrap img {
  max-width: 505px;
  border-radius: 10px;
}

.media-wrap {
  display: flex;
  justify-content: center
}

@media (max-width:1575px) {
  .text-image-sticky .image-text-card {
    padding: 30px 40px;
  }


}

.card-description-text {
  display: block;
  color: #555;
}

.fa-check-circle {
  color: #0095f6 !important;
  /* Instagram Blue color */
}

.text-image-sticky .image-text-card:nth-child(2) {
  background: rgba(239, 238, 251, 1);
  top: -85px;
}

.text-image-sticky .image-text-card:nth-child(3) {

  top: -85px;
}

.text-image-sticky .image-text-card:nth-child(4) {
  background: rgba(239, 238, 251, 1);
  top: -85px;
}

.media-wrap img {
  max-width: 505px;
  border-radius: 10px;
}

.media-wrap {
  display: flex;
  justify-content: center
}

@media (max-width:1575px) {
  .text-image-sticky .image-text-card {
    padding: 30px 40px;
  }

  .text-image-sticky .image-text-card:nth-child(1) {
    background: #9eb86e7d;
    top: -380px;
    color: #fff;

  }

  .text-image-sticky .image-text-card:nth-child(2) {
    top: -385px;
  }

  .text-image-sticky .image-text-card:nth-child(3) {

    top: -260px;
  }

  .text-image-sticky .image-text-card:nth-child(4) {

    top: -410px;
  }
}

@media (max-width: 1299px) {

  .text-image-sticky .image-text-card:nth-child(1) {
    background: #9eb86e7d;
    top: -650px;
    color: #fff;

  }

  .text-image-sticky .image-text-card:nth-child(2) {
    top: -650px;
  }

  .text-image-sticky .image-text-card:nth-child(3) {

    top: -585px;
  }

  .text-image-sticky .image-text-card:nth-child(4) {

    top: -712px;
  }
}

@media (max-width:991px) {

  .text-image-sticky .image-text-card:nth-child(1) {

    top: -530px;

  }

  .text-image-sticky .image-text-card:nth-child(2) {
    top: -560px;
  }

  .text-image-sticky .image-text-card:nth-child(3) {

    top: -490px;
  }

  .text-image-sticky .image-text-card:nth-child(4) {

    top: -560px;
  }
}





.navbar-nav {
  align-items: center;
}

/* Reset password page — show/hide icons inside inputs (scoped to .reset-password-form only) */
.reset-password-form .reset-password-password-inner {
  position: relative;
}

.reset-password-form .reset-password-password-inner input.form-control {
  padding-right: 2.75rem;
}

.reset-password-form .reset-password-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 2;
}

.reset-password-form .reset-password-toggle .material-symbols-outlined {
  font-size: 22px;
}

.reset-password-form .reset-password-toggle:focus {
  outline: none;
}

.reset-password-form .reset-password-toggle:focus-visible {
  outline: 2px solid rgba(42, 122, 133, 0.45);
  outline-offset: 2px;
  border-radius: 4px;
}