/*
======================================
  * 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. ONE-PAGE-LAYOUT

======================================
  * END TABLE CONTENT *  
======================================
*/
/*--------------------------------------------------------------
1. GENERAL
---------------------------------------------------------------*/

body {
    background-color: #FFF;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #666666;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

a {
    color: #07576a;
    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;
}

.overflow-hide {
    overflow: hidden;
}

.overflow-auto {
    overflow: auto;
}

.clear {
    clear: both;
}

.pull-none {
    float: none;
}

::-moz-selection {
    background: #3396d1;
    color: #fff;
}

::selection {
    background: #3396d1 !important;
    color: #fff;
}

/*---------------------------------------------------------------
2. HEADINGS
---------------------------------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #333333;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: #333333;
}

h1 {
    font-size: 28px;
    line-height: 30px;
    margin-bottom: 25px;
}

h2 {
    font-size: 24px;
    line-height: 38px;
    margin-bottom: 25px;
}

h3 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 20px;
}

h4 {
    font-size: 25px;
    line-height: 22px;
    margin-bottom: 14px;
}

h5 {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 10px;
}

h6 {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 10px;
}

/*---------------------------------------------------------------
3. TEXT & PARAGRAPH
---------------------------------------------------------------*/

p {
    line-height: 24px;
    margin-bottom: 14px;
}

strong {
    font-weight: 600;
}

/*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-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-28 {
    font-size: 28px;
}

.font-30 {
    font-size: 30px;
}

.font-35 {
    font-size: 35px;
}

.font-40 {
    font-size: 40px;
}

.font-45 {
    font-size: 45px;
}

/*text weight*/

.font-weight-300 {
    font-weight: 300;
}

.font-weight-400 {
    font-weight: 400;
}

.font-weight-500 {
    font-weight: 500;
}

.font-weight-600 {
    font-weight: 600;
}

.font-weight-700 {
    font-weight: 700;
}

.font-weight-800 {
    font-weight: 800;
}

.font-weight-900 {
    font-weight: 900;
}

/*---------------------------------------------------------------
4. LISTS
---------------------------------------------------------------*/

dl,
ul,
ol {
    list-style-position: outside;
    padding: 0;
}

ul,
ol {
    margin-bottom: 24px;
}

ul li,
ol li {
    padding: 0;
}

dl {
    margin-left: 0;
    margin-bottom: 30px;
}

dl dd {
    margin-bottom: 10px;
}

/*---------------------------------------------------------------
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 !important;
}

.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-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: #F00;
}

.text-green {
    color: #090;
}

.text-yellow {
    color: #FF0;
}

/*=== >background color===*/

.bg-transparent {
    background-color: transparent;
}

.bg-primary {
    background-color: #FDC716;
}

.bg-white {
    background-color: #FFF;
}

.bg-black {
    background-color: #000;
}

.bg-black-light {
    background-color: #212121;
}

.bg-gray {
    background-color: #f5f6f6;
}

.bg-gray-dark {
    background-color: #d3d3d3;
}

.bg-red {
    background-color: #FF4045;
}

.bg-green {
    background-color: #38E225;
}

.bg-yellow {
    background-color: #F0F52E;
}

/*=== >background image===*/

.bg-img-fix {
    background-attachment: fixed;
    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,
{
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 {
    content: "";
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    opacity: 0.4;
    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.5;
}

/*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.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 */
}

.dez-img-overlay2:hover:before,
.dez-box:hover .dez-img-overlay2:before {
    opacity: 0.9;
}

/* .col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
    position: relative;
    padding-right: 15px;
    padding-left: 15px;
} */
.data-filter .active .site-button {
    color: #fff;
    background-color: #07576a;
}

.form-group {
    position: relative !important;
}

.form-group span.caret.fa.fa-caret-down {
    position: absolute;
    z-index: 999;
    right: 12px;
    top: 10px;

}

/*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%;
}

.container {
    position: relative;
}

.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 {}

.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:after {}

.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
}

/*---------------------------------------------------------------
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;
}

.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(2);
    -webkit-transform: scale(2);
    -o-transform: scale(2);
    -ms-transform: scale(2);
    transform: scale(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-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 40px 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) !important;
}

.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 */

.dez-info-has.no-hover {
    opacity: 1;
    width: 100%;
    margin-bottom: 0;
}

/* 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;
    height: 40px;
    font-size: 13px;
    line-height: 20px;
    padding: 9px 12px;
}

.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-prepend,
.input-group-btn {
    display: table-cell;
}

.input-group-prepend {
    background: #fff;
    border-color: #e1e1e1;
    padding: 6px 14px;
    font-size: 16px;
}

.input-group-prepend.font-size-20 {
    font-size: 20px;
}

.input-group-prepend.fixed-w {
    text-align: center;
    padding: 6px 0;
    width: 40px;
}

.input-group-prepend.v-align-t {
    line-height: 30px;
}

.container-fluid {
    padding-left: 40px;
    padding-right: 40px;
}

/*select box*/

.dropdown-menu {
    font-size: 13px;
}

.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
    width: 100%;
}

.bootstrap-select .dropdown-toggle {
    border: 1px solid #e7ecf1 !important;
    background-color: #fff !important;
    height: 40px;
    font-size: 13px;
    color: #999;
    line-height: 2;
}

.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: 0;
    box-shadow: none;
    margin-top: -1px;
    padding: 0;
    font-size: 13px;
}

.bootstrap-select div.dropdown-menu ul li {
    padding: 0;
}

.bootstrap-select div.dropdown-menu ul li a {
    padding: 5px 15px;
}

.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;
    background: transparent;
}

.bootstrap-select.btn-group .dropdown-toggle .caret {
    font-size: 14px;
    position: absolute;
    top: 13px;
    right: 12px;
    margin-top: -2px;
    vertical-align: middle
}

.bootstrap-select .dropdown-menu>li>a:hover {
    background-color: #f2f2f4;

}

/*radio & checkbox*/

input[type=checkbox],
input[type=radio] {
    display: ;
    opacity: 0;
    margin-left: 1px !important;
}

input[type=checkbox]+label,
input[type=radio]+label {
    display: block;
    padding-left: 20px !important;
    position: relative;
}

input[type=checkbox]+label:hover:before,
input[type=radio]+label:hover:before {
    border-color: var(--primary);
}

input[type=checkbox]+label:before,
input[type=radio]+label:before {
    background-color: #fff;
    border: 2px solid #b6b7b8;
    border-radius: 0px;
    content: "";
    display: inline-block;
    height: 16px;
    line-height: 1;
    margin-left: -20px;
    position: absolute;
    top: 2px;
    transition: all linear 0.1s;
    width: 16px;
}

input[type=checkbox]+label:after {
    color: #fff;
    content: "\f00c";
    font-family: FontAwesome;
    font-size: 0px;
    -webkit-font-smoothing: antialiased;
    left: 6px;
    position: absolute;
    top: 7px;
    transition: all linear 0.1s;
}

input[type=checkbox]:checked+label:before {
    border-width: 7px;
    border-color: #3396d1;
}

input[type=checkbox]:checked+label:after {
    font-size: 10px;
    left: 2px;
    top: 2px;
}

input[type=radio]+label:before {
    border-radius: 50%;
    content: "";
}

input[type=radio]:checked+label:before {
    border-color: #3396d1;
    border-width: 5px;
}

.form-inline .checkbox input[type="checkbox"],
.form-inline .radio input[type="radio"] {
    position: absolute;
    left: 0;
    bottom: 0;
}

/*touchspin input type number*/

.bootstrap-touchspin .input-group-btn-vertical {
    position: relative;
    white-space: nowrap;
    width: unset;
    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: 5px;
    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: #ffd925;
    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-area {
    width: 100%;
    height: 100%;
    background-color: #3D424A;
    position: fixed;
    left: 0;
    top: 0;
    opacity: 1;
    z-index: 9999;
    background-image: url(../images/loading.svg);
    background-repeat: no-repeat;
    background-size: 50px;
    background-position: center;
}

/*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 25px 25px;
}

.alignleft {
    float: left;
    margin: 5px 15px 1px 0;
    width: 40%;
}

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;
}

.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;
}

blockquote p {
    font-size: 18px;
    color: #555555;
    line-height: 30px;
    margin-bottom: 0px;
}

blockquote:before {
    content: '\f10d';
    font-family: "FontAwesome";
    color: #07576a;
    font-size: 35px;
    position: absolute;
    left: 20px;
    top: 20px;
    font-style: normal;
}

.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
    max-width: 100%;
    height: auto;
}

/*---------------------------------------------------------------
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: 25px 0 20px;
    position: relative;
    z-index: 9;
}

.testimonial-5,
.header-style-6 .header-nav .nav>li.active:before {
    border-bottom-color: #FDC716;
}

.header-style-6 .header-nav .nav>li.active:before,
.header-style-6 .header-nav .nav>li:hover>a:before {
    border-bottom: 8px solid;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    bottom: 0;
    content: "";
    left: 50%;
    margin-left: -5px;
    position: absolute;
}

@media only screen and (max-width: 767px) {}

@media only screen and (max-width: 480px) {
    .extra-nav {
        margin: 0;
    }
}

/* 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: #fff;
    color: #ababab;
    padding: 5px 0;
    overflow: hidden;
}

.dez-topbar-left {
    float: left;
}

.dez-topbar-right {
    float: right;
}

.dez-topbar-center,
.dez-topbar-left,
.dez-topbar-right {
    padding-left: 5px;
    padding-right: 5px;
}

@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;
    }*/
}

/*=== >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 ===*/

.dez-logo,
.logo-header {
    display: table;
    float: left;
    vertical-align: middle;
    padding: 0;
    font-size: 36px;
    color: #07576a;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    width: 240px;
    height: 90px;
    position: relative;
    z-index: 9;
}

.logo-footer {
    display: table;
    vertical-align: middle;
    padding: 0;
    font-size: 36px;
    color: #07576a;
    margin-top: 15px;
    margin-bottom: 15px;
    margin-left: 0;
    margin-right: 0;
    width: 240px;
    height: 60px;
}

.dez-logo>a,
.logo-header>a,
.logo-footer>a {
    display: table-cell;
    vertical-align: middle;
}

.logo-header.center-block {
    margin-left: auto;
    margin-right: auto;
    float: none;
}

.dez-logo img,
.logo-header img,
.logo-footer img {
    max-width: 230px;
    width: auto;
    height: auto;
}

.dez-logo span,
.logo-header span,
.logo-footer span {
    font-size: 20px;
    color: #07576a;
    letter-spacing: 20px;
}

/*= When header is sticky =*/

.is-fixed .dez-logo,
.is-fixed .logo-header,
.is-fixed.header-curve .dez-logo,
.is-fixed.header-curve .logo-header {
    height: 80px;
    width: 170px;
}

/*= Set width for mobile  =*/

@media only screen and (max-width: 767px) {

    .dez-logo,
    .logo-header,
    .is-fixed.header-curve .dez-logo,
    .is-fixed.header-curve .logo-header {
        width: 110px;
    }

    .is-fixed .dez-logo a img,
    .is-fixed .logo-header a img,
    .is-fixed.header-curve .dez-logo a img,
    .is-fixed.header-curve .logo-header a img {
        vertical-align: sub;
    }

    .dez-logo img,
    .logo-header img,
    .logo-footer img {
        max-width: 200px;
    }
}

@media only screen and (max-width: 359px) {

    .dez-logo img,
    .logo-header img,
    .logo-footer img {
        max-width: 150px;
    }
}

/*---------------------------------------------------------------
17. MAIN BAR ( place logo & main-navigation )
---------------------------------------------------------------*/

.main-bar {
    background: #FFFFFF;
    width: 100%;
    position: relative;
}

.header-curve .logo-header:before,
.header-curve .dez-logo:before,
.header-curve .logo-header:after,
.header-curve .dez-logo:after {
    background-color: #fff;
    content: "";
    position: absolute;
    bottom: 0;
    height: 100%;
    z-index: -1;
}

.header-style-5 .header-curve .dez-logo:before,
.header-curve .dez-logo::after {
    display: none !important;
}

.header-curve .dez-logo:before,
.header-curve .logo-header:before {
    right: -90px;
    width: 80%;
    -webkit-transform: skew(30deg);
    -moz-transform: skew(30deg);
    -o-transform: skew(30deg);
    -ms-transform: skew(30deg);
    transform: skew(30deg);
}

.header-curve .dez-logo:after,
.header-curve .logo-header:after {
    right: 10%;
    width: 2000px;
}

.is-fixed.header-curve .logo-header img,
.is-fixed.header-curve .dez-logo img {
    margin-top: -0;
    max-width: 210px;
}

@media only screen and (max-width: 767px) {

    .header-curve .dez-logo:after,
    .header-curve .logo-header:after {
        right: 0;
        left: auto;
    }
}

/*---------------------------------------------------------------
18. NAVIGATIONS
	>mena-menu
	>mobile-menu
	>footer-menu
---------------------------------------------------------------*/
/*== >mena-menu ==*/
.navbar-toggler {
    margin: 37px 0 28px 15px;
    padding: 12px 10px;
    float: right;
}

.navbar-toggler span {
    background: #666;
}

.is-fixed .navbar-toggler {
    margin: 27px 0 14px 15px;
}

.header-nav {

    padding: 0;
}

.header-nav .nav {
    float: right;
}

.header-style-4 .header-nav .nav {
    float: left;
}

.header-nav .nav i {
    font-size: 9px;
    margin-left: 3px;
    margin-top: -3px;
    vertical-align: middle;
    opacity: 0.7;
}

.header-style-5 .top-bar {
    background-color: rgba(255, 255, 255, 0);
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    padding: 0;
}

.header-nav .nav>li>a {
    border-radius: 0px;
    padding: 35px 8px;
    cursor: pointer;
    color: #555;
    display: inline-block;
    text-transform: uppercase;
}

.header-style-1 .header-nav .nav>li>a {
    padding: 30px 8px;
}

.header-nav .nav>li>a:hover {
    background-color: transparent;
    color: #07576a;
}

.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: #07576a;
}

.header-nav .nav>li:hover>a {
    color: #07576a;
}

.header-nav .nav>li:hover>.sub-menu,
.header-nav .nav>li:hover>.mega-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0px !important;
    -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 {
    margin: 0;
    font-weight: 400;
    text-transform: uppercase;
    position: relative;
}

.header-nav .nav>li .sub-menu {
    background-color: #ffffff;
    border: 1px solid #f4f4f4;
    display: block;
    left: 0;
    list-style: none;
    margin-top: 15px;
    opacity: 0;
    padding: 0px;
    position: absolute;
    visibility: hidden;
    width: 220px;
    z-index: 10;
}

.header-nav .nav>li .sub-menu li {
    border-bottom: 1px solid #f4f4f4;
    position: relative;
}

.header-nav .nav>li .sub-menu li a {
    color: #777777;
    display: block;
    font-size: 12px;
    padding: 10px 20px;
    text-transform: uppercase;
    transition: all 0.15s linear;
}

.header-nav .nav>li .sub-menu li a:hover {
    background-color: #F2F2F2;
    color: #07576a;
    text-decoration: none;
}

.header-nav .nav>li .sub-menu li:hover>a {
    color: #07576a;
}

.header-nav .nav>li .sub-menu li:last-child {
    border-bottom: 0px;
}

.header-nav .nav>li .sub-menu li .fa {
    color: #363636;
    display: block;
    float: right;
    position: absolute;
    right: 10px;
    top: 12px;
}

.header-nav .nav>li .sub-menu li>.sub-menu {
    left: 220px;
    margin: 0 0 0 20px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.header-nav .nav>li .sub-menu li:hover>.sub-menu {
    left: 220px;
    margin: 0px;
    opacity: 1;
    top: -1px;
    visibility: visible;
}

.header-nav .nav>li .sub-menu li:hover>.sub-menu:before {
    background-color: transparent;
    bottom: 0px;
    content: '';
    display: block;
    height: 100%;
    left: -6px;
    position: absolute;
    top: 0px;
    width: 6px;
}

.header-nav .nav>li.has-mega-menu {
    position: inherit;
}

.header-nav .nav>li .mega-menu {
    background-color: #ffffff;
    border: 1px solid #e9e9e9;
    display: table;
    left: 0px;
    list-style: none;
    opacity: 0;
    position: absolute;
    right: 0px;
    visibility: hidden;
    width: 100%;
    margin-top: 8px !important;
}

.header-nav .nav>li .mega-menu>li {
    display: table-cell;
    padding: 10px 0;
    position: relative;
    vertical-align: top;
    width: 25%;
}

.header-nav .nav>li .mega-menu>li:after {
    content: "";
    background-color: rgba(204, 204, 204, 0.4);
    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-curve .logo-header:before,
.header-curve .dez-logo:before,
.header-curve .logo-header:after,
.header-curve .dez-logo:after {
    background-color: #fff;
    content: "";
    position: absolute;
    bottom: 0;
    height: 100%;
    z-index: -1;
}

.header-style-3 .header-curve .dez-logo:after,
.header-style-3 .header-curve .logo-header:after {
    right: 10px;
    width: 100%;
}

.header-nav .nav>li .mega-menu>li>a {
    color: #555555;
    display: block;
    font-size: 14px;
    padding: 0 20px;
}

.logo-header-xmenu {
    display: none !important;
}

.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: #777777;
    display: block;
    font-size: 12px;
    line-height: 34px;
    text-transform: uppercase;
    padding: 0 20px;
}

.header-nav .nav>li .mega-menu>li ul a:hover {
    color: #07576a;
    background-color: #F2F2F2;
}

.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;
}

@media only screen and (max-width: 991px) {

    /* 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: "\f054";
    }

    .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: "\f078";
    }

    .side-nav .nav.navbar-nav li a i.fa-chevron-down,
    .nav.navbar-nav li a i.fa-chevron-down,
    .nav.navbar-nav li a i.fa-angle-right {
        background-color: #000;
        color: #ffffff;
        height: 100%;
        line-height: 35px;
        position: absolute;
        right: 0;
        text-align: center;
        top: -1px;
        width: 35px;
        height: 35px;
        z-index: 3;
    }

    .header-style-5 .header-nav .nav>li>a {
        color: #767676 !important;
    }

    .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";
    }

    .logo-header-xmenu {
        display: block !important;
    }

    .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;
        color: #fff;
    }

    .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);
    }

    header .logo {
        display: block;
        padding: 4px 0;
    }

    .header-nav .nav>li>a {
        padding: ;
    }

    .header-nav .nav i {
        margin-top: 6px;
    }

    .mo-left .header-nav.nav-dark {
        background-color: #202020;
    }

    .mo-left .header-nav {
        overflow: hidden;
        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;
    }

    /* .navbar-nav{
		overflow-x:scroll;
		height:100%;
	} */
    .mo-left .header-nav.show {
        left: -1px;
        transition: all 0.8s;
        -webkit-transition: all 0.8s;
        -moz-transition: all 0.8s;
        -o-transition: all 0.8s;
        margin: 0;
        width: 280px;
    }

    .mo-left .is-fixed .header-nav .nav {
        height: 100%;
    }

    .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;
    }

    .mo-left .header-nav .logo-header {
        display: block;
        float: none;
        height: auto;
        max-width: 100%;
        padding: 30px 15px;
        width: 100%;
    }

    .mo-left .header-nav .logo-header img {
        max-width: unset;
        width: 130px;
    }

    .mo-left .navbar-toggler.open span {
        background: #fff;
    }

    /* responsive strat when media screen [991px] css START*/

    .navbar-header {
        float: none;
    }

    .navbar-toggler {
        display: block;
    }

    .navbar-collapse.collapse {
        display: none !important;
    }

    .navbar-collapse.collapse.show {
        /* NEW */

        display: block !important;
    }

    /* responsive strat when medai screen [991px] css END*/

    .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: 12px 15px;
        border-top: 1px solid #E9E9E9;
        display: block;
        position: relative;
    }

    .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.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;
    }

    .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;
    }
}

/*= nav dark version =*/

.nav-dark.header-nav .nav>li .sub-menu,
.nav-dark.header-nav .nav>li .mega-menu {
    background-color: #3D424A;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.nav-dark.header-nav .nav>li .sub-menu li {
    border-bottom: 1px 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,
.nav-dark.header-nav .nav>li .mega-menu>li>a {
    color: #CCCCCC;
}

.nav-dark.header-nav .nav>li .sub-menu li a:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.nav-dark.header-nav .nav>li .mega-menu>li ul a:hover {
    background-color: #1b3c62;
    color: #07576a;
}

.header-nav .nav>li .mega-menu li ul {
    width: 100%;
    display: block;
}

.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 {
        border-bottom: 1px solid rgba(0, 0, 0, 0.8);
    }

    .nav-dark.header-nav .nav {
        background-color: #2D3239;
    }

    .nav-dark.header-nav .nav>li>a {
        border-top: 1px 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: #07576a;
    }

    .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: #2D3239;
        color: #07576a;
    }

    .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: #2D3239;
    }
}

/*= 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;
}

.is-fixed .header-nav .nav>li>a {
    padding: 29px 9px;
}

.is-fixed .extra-nav {
    padding: 15px 0;
}

@media only screen and (max-width: 991px) {
    .is-fixed .header-nav .nav>li>a {
        padding: 12px 15px;
    }

    .xmenu .mega-menu>ul>li {
        padding: 1px 15px !important;
    }
}

@media only screen and (max-width: 767px) {
    .is-fixed .header-nav .nav {
        overflow: auto;
        height: auto;
    }

    .is-fixed .header-nav .nav>li>a {
        padding: 12px 15px;
    }

    .is-fixed#header-part .navbar-toggle {
        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 */

[class*="bg-"] .header-nav .nav>li>a {
    color: #fff;
}

[class*="bg-"] .header-nav .nav>li.active>a,
[class*="bg-"] .header-nav .nav>li.current-menu-item>a {
    color: #2D3239;
}

[class*="bg-"] .header-nav .nav>li>a:hover,
[class*="bg-"] .header-nav .nav>li:hover>a {
    color: #2D3239;
}

[class*="bg-"] .navbar-toggle {
    border-color: #fff;
}

[class*="bg-"] .navbar-toggle span {
    background-color: #2D3239;
}

@media only screen and (max-width: 991px) {
    [class*="bg-"] .header-nav .nav>li>a {
        color: #555;
    }
}

/*header style 1 (default) */
/*header style 2 (center content) */

.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: 400px;
}

.header-style-1.dark .top-bar {
    background-color: #58575D;
}

.header-style-1 .top-bar .fa {
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 15px;
    height: 35px;
    padding: 10px;
    text-align: center;
    vertical-align: middle;
    width: 35px;
    color: #ABABAB;
}

.header-style-1 .is-fixed .extra-nav {
    padding: 0px 0 0;
}

.header-style-1 .top-bar .dez-topbar-left {
    padding: 0 0;
}

/* Responsive CSS */
/* Tablate [767px] Responsive CSS */
@media only screen and (max-width: 1280px) {
    .header-style-1 .extra-nav {
        display: none !important;
    }
}

@media only screen and (max-width: 767px) {
    .header-style-1 .top-bar .dez-topbar-right {
        display: none;
    }

    .header-style-1 .extra-nav {
        display: none;
    }

    .header-style-1 .logo-header,
    .header-style-1 .dez-logo,
    .header-style-1 .is-fixed.header-curve .dez-logo,
    .header-style-1 .is-fixed.header-curve .logo-header {
        width: 150px;
    }

    .header-nav .nav>li>a {
        padding-left: 15px;
        padding-right: 15px;
    }

    .xmenu-toggler {
        margin: 12px 0px 0px 30px;
    }

    .header-style-3 .xmenu-toggler {
        margin: 25px 0px 0px 30px;
    }

    .header-style-2 .xmenu-toggler {
        margin: 25px 0px 0px 30px;
    }

    .header-style-2.style-3 .xmenu-toggler {
        margin: 15px 0px 0px 30px;
    }

    .header-style-4 .xmenu-toggler {
        margin: 15px 0px 0px 30px;
    }

    .header-style-5 .xmenu-toggler {
        margin: 23px 0px 0px 30px;
    }
}

@media only screen and (max-width: 767px) {}

/* Tablate [767px] Responsive CSS */
/* Responsive CSS */
/* ================== Header Style 1 ================== */
/* ================== Header Style 2 ================== */

.header-style-2 .fa-chevron-down {
    display: none;
}

.header-style-2 .top-btn a {
    background: #f0ba22;
    border: 10px solid #2d313a;
    width: 65px;
    height: 65px;
    display: block;
    margin: 0px auto;
    color: #fff;
    text-align: center;
    line-height: 45px;
    font-size: 20px;
    transform: rotate(45deg);
    margin: -62px auto 0;
}

.header-style-2 .social-line li a {
    color: #ababab;
    border: 1px solid #e3e3e3;
    border-width: 0 1px;
    height: 45px;
    line-height: 45px;
    padding: 0 15px;
    display: inline-block;
    min-width: 45px;
    cursor: pointer;
}

.header-style-2.style-3 .social-line li a {
    color: #ababab;
    border: 1px solid #e3e3e3;
    border-width: 0 1px;
    height: 45px;
    line-height: 45px;
    padding: 0 15px;
    display: inline-block;
    min-width: 45px;
    cursor: pointer;
}

.header-style-2 .top-bar {
    border-bottom: 1px solid #e3e3e3;
    padding: 0;
    background-color: #F5F5F5;
}

/* header style dark 1 */

.header-style-2.dark .main-bar {
    background-color: #3D424A;
}

.header-style-2.dark .top-bar {
    background-color: #2D3239;
    border-color: #2D3239;
}

.header-style-2.dark .social-line li a {
    border-color: #424242;
}

.header-style-2.dark .header-nav .nav>li>a {
    color: #b5b5b5;
}

.header-style-2.dark .header-nav .nav>li.active>a,
.header-style-2.dark .header-nav .nav>li:hover>a {
    color: #8A7BD1;
}

/* header style dark 1 End */
/* Responsive CSS */
/* Tablate [991] Responsive CSS */


@media only screen and (max-width: 991px) {

    .header-style-2 .dez-topbar-left,
    .header-style-2 .dez-topbar-right {
        padding-left: 0;
        padding-right: 0;
    }

    .header-style-2 .dez-topbar-left li a span {
        display: none;
    }

    .header-style-2 .fa-chevron-down {
        display: block;
    }
}

@media only screen and (max-width: 768px) {

    .header-style-2 .logo-header,
    .header-style-2 .dez-logo,
    .header-style-2 .is-fixed.header-curve .dez-logo,
    .header-style-2 .is-fixed.header-curve .logo-header {
        width: 160px;
    }


    .header-style-2 .navbar-toggle {
        margin-left: 5px;
    }

    .col-lg-6.col-md-12.p-t40.align-items-center {
        padding-top: 0;
    }

    .header-style-2.dark .header-nav .nav>li>a {
        color: #2D3239;
    }
}

/* Tablate [991] Responsive CSS End */
/* Responsive CSS End */
/* ================== Header Style 2 End ================== */
/* ================== Header Style 3 ================== */

.header-style-3 .main-bar {
    background-color: #F5F5F5;
    height: 45px;
    border-bottom: 1px solid #e3e3e3;
}

.header-style-3 .main-bar .container {}

.header-style-3 .dez-topbar-left,
.header-style-3 .dez-topbar-right {
    padding-left: 0;
    padding-right: 0;
}

.header-style-3 .slide-up {
    position: absolute;
    width: 100%;
}

.header-style-3 .dez-logo,
.header-style-3 .logo-header {
    height: 85px;
}

.header-style-3 .header-nav .nav>li>a {
    padding: 32px 15px;
}

.header-style-3 .top-bar {
    padding: 0;
}

.header-style-3 .header-curve .dez-logo:after,
.header-style-3 .header-curve .logo-header:after {
    right: 15px;
    width: 100%;
}

/* Dark */
.text-primary {
    color: none;
}

.header-style-3.dark .top-bar,
.header-style-3.dark .main-bar {
    background-color: #2D3239;
}

.header-style-3.dark .social-line li a {
    border-color: #2D3239;
}

.header-style-3.dark .main-bar {
    border-bottom: 0;
}

/* Dark End */
/* is Fixed */

.header-style-3 .is-fixed.header-curve .dez-logo,
.header-style-3 .is-fixed.header-curve .logo-header {
    height: 85px;
}

/* Top Bar */

.header-style-3 .fa-chevron-down {
    display: none;
}

.header-style-3 .social-line li a {
    color: #ababab;
    border: 1px solid;
    border-color: #e3e3e3;
    border-width: 0 1px;
    height: 45px;
    line-height: 45px;
    padding: 0 15px;
    display: inline-block;
    min-width: 45px;
    cursor: pointer;
}

.header-style-3 .top-bar {
    border-bottom: 0px;
    background-color: #F5F5F5;
}

/* Top Bar End */
/* Responsive CSS */
/* Tablate [991] Responsive CSS */

@media only screen and (max-width: 991px) {
    .header-style-3 .header-nav .nav>li>a {
        padding: 12px 15px;
    }

    .dz-features-wrapper.style-3 .dz-features {
        gap: 0px !important;
    }

    .dz-features-wrapper.style-3 {
        height: auto !important;
    }

    .header-style-3 .dez-topbar-left,
    .header-style-3 .dez-topbar-right {
        padding-left: 0;
        padding-right: 0;
    }

    .header-style-3 .dez-topbar-left li a span {
        display: none;
    }

    .header-style-3 .fa-chevron-down {
        display: block;
    }

    .header-style-3 .header-curve .dez-logo,
    .header-style-3 .header-curve .logo-header {
        height: 90px;
    }

    .header-style-3 .is-fixed.header-curve .dez-logo,
    .header-style-3 .is-fixed.header-curve .logo-header {
        height: 80px;
    }
}

@media only screen and (max-width: 767px) {

    .header-style-3 .dez-logo,
    .header-style-3 .logo-header,
    .header-style-3 .is-fixed.header-curve .dez-logo,
    .header-style-3 .is-fixed.header-curve .logo-header {
        width: 150px;
    }
}

/* Tablate [991] Responsive CSS End */
/* Responsive CSS End */
/* ================== Header Style 3 End ================== */
/* ================== Header Style 4 ================== */

.header-style-4 {
    margin-bottom: 0px;
}

.header-style-4 .slide-up {
    position: absolute;
    width: 100%;
}

.header-style-4 .header-nav.navbar-collapse ul {
    float: left;
}

.header-style-4 .mostion {
    display: none;
}

.header-style-4 .main-bar {
    background: #fff;
}

.header-style-4 .header-nav .nav>li>a {
    padding: 30px 15px;
}

.header-style-4 .extra-nav {
    padding: 15px 0;
}

.header-style-4 .top-bar {
    padding: 0;
}

/* Dark */

.header-style-4.dark .main-bar {
    background: #3d424a;
}

.header-style-4.dark .top-bar {
    border-bottom: 1px solid #2d3239;
    background-color: #2d3239;
}

.header-style-4.dark .contact-info span {
    color: #bfbfbf;
}

/* Dark End */
/* Contact-Info Boxed */

.contact-info {
    margin: 0;
    padding: 15px 0 !important;
}

.contact-info li {
    list-style: none;
    width: 25%;
    float: left;
    padding: 11px 0;
}

.contact-info li:last-child {
    padding: 0;
}

.contact-info h6 {
    font-size: 16px;
    margin: 0 0 5px 0;
}

.contact-info li i {
    margin-right: 5px;
    font-size: 18px;
}

.social-line li {
    display: inline-block;
    float: left;
    margin-left: -1px;
}

/* Contact-Info Boxed End */
/* Top Bar */

.header-style-4 .fa-chevron-down {
    display: none;
}

.header-style-4.dark .social-line li a {
    border-color: #3d424a;
}

.header-style-4 .social-line li a {
    color: #ababab;
    border: 1px solid;
    border-color: #e3e3e3;
    border-width: 0 1px;
    height: 45px;
    line-height: 45px;
    padding: 0 15px;
    display: inline-block;
    min-width: 45px;
    cursor: pointer;
}

.header-style-4 .top-bar {
    border-bottom: 1px solid #e3e3e3;
    background-color: #F5F5F5;
}

.nav-block {
    background-color: #ffffff;
    box-shadow: 0 0 5px 0 #a0a0a0;
    margin-bottom: 0;
    position: relative;
}

/* Header Boxed */

.boxed .header-style-4 .top-bar .container {
    padding-left: 15px;
    padding-right: 15px;
}

.boxed .header-style-4 .container.header-contant-block {
    padding-left: 15px;
    padding-right: 15px;
}

.boxed .header-style-4 .nav-block {
    border-radius: 0px;
}

/* Header Boxed End */
/* Header is-fixed */

.header-style-4 .is-fixed .header-contant-block {
    display: none;
}

.header-style-4 .is-fixed .main-bar {
    background: #fff;
}

.header-style-4 .is-fixed .nav-block {
    border-radius: 0px;
    box-shadow: none;
    position: unset;
}

/* Header is-fixed End*/
/* Dark Header  */
/* Dark Header End */
/* Responsive CSS */
/* Tablate [991] Responsive CSS */


@media only screen and (max-width: 1280px) {
    .contact-info h6 {
        font-size: 14px;
    }

    .contact-info span {
        font-size: 12px;
    }

    .contact-info .site-button h5 {
        font-size: 14px;
    }

    .contact-info li .site-button {
        font-size: 13px;
    }
}

@media only screen and (max-width: 991px) {
    .header-style-4 .header-contant-block {
        display: none;
    }

    .header-style-4 {
        margin-bottom: 0px;
    }

    .header-style-4 .nav-block {
        box-shadow: none;
    }

    .header-style-4 .header-nav.navbar-collapse ul {
        float: none;
    }

    .header-style-4 .mostion {
        display: table;
    }

    .header-style-4 .top-bar .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .header-style-4 .header-nav .nav>li>a {
        padding: 12px 15px;
    }

    .header-style-4 .extra-nav {
        clear: none;
        padding: 25px 0;
        width: auto;
    }

    .header-style-4 .is-fixed .extra-nav {
        padding: 15px 0;
    }

    .header-style-4 .dez-topbar-left,
    .header-style-4 .dez-topbar-right {
        padding-left: 0;
        padding-right: 0;
    }

    .header-style-4 .dez-topbar-left li a span {
        display: none;
    }

    .header-style-4 .fa-chevron-down {
        display: block;
    }

    .header-style-1 .navbar-toggler span,
    .header-style-3 .navbar-toggler span,
    .header-style-4 .navbar-toggler span,
    .header-style-5 .navbar-toggler span {
        background: #fff;
    }
}

/* Tablate [991] Responsive CSS End */
/* Mobile [767] Responsive CSS */

@media only screen and (max-width: 767px) {
    .header-style-4 .slide-up {
        position: unset;
    }

    .header-style-4 .logo-header,
    .header-style-4 .dez-logo,
    .header-style-4 .is-fixed.header-curve .dez-logo,
    .header-style-4 .is-fixed.header-curve .logo-header {
        width: 160px;
    }

    .header-style-4 .navbar-toggle {
        margin-left: 5px;
    }

}

/* Mobile [767] Responsive CSS End */
/* Responsive CSS End */
/* ================== Header Style 4 End ================== */
/*header style 5 (header black overlay) */
/* ================== Header Style 5 ================== */

.header-style-5 .top-bar {
    background-color: rgba(255, 255, 255, 0);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0;
}

.header-style-2 .dez-logo:before {
    background-color: transparent !important;
}

.header-style-5 .social-line li a {
    color: #fff;
    border: 1px solid;
    border-color: rgba(255, 255, 255, 0.2);
    border-width: 0 1px;
    height: 45px;
    line-height: 45px;
    padding: 0 15px;
    display: inline-block;
    min-width: 45px;
    cursor: pointer;
}

.header-style-5 .main-bar {
    background: rgba(0, 0, 0, 0);
    position: absolute;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-style-5 .header-nav .nav>li>a {
    color: #fff;
}

.header-style-5 .navbar-toggle span {
    background: #FFF;
}

.header-style-5.dark .main-bar {
    background: rgba(0, 0, 0, 0.5);
}

/*header 5 fixed*/

.header-style-5 .is-fixed .social-line li a {
    color: #ababab;
}

.header-style-5 .is-fixed .top-bar,
.header-style-5 .is-fixed .social-line li a {
    border-color: #e3e3e3;
}

.header-style-5 .is-fixed .main-bar {
    position: fixed;
    background: #fff;
}

.header-style-5 .is-fixed .navbar-toggle span {
    background: #666;
}

.header-style-5 .is-fixed .header-nav .nav>li>a {
    color: inherit;
}

.header-style-5 .is-fixed .navbar-toggle span {
    background: #666 !important;
}

.header-style-5 .fa-chevron-down {
    display: none;
}

/*header 5 fixed End */
/* Responsive CSS */
/* Tablate [1024] Responsive CSS */

@media only screen and (max-width: 1024px) {
    .header-style-5 .fa-chevron-down {
        display: none;
    }

    .header-nav.xmenu>.nav>li .mega-menu li>.sub-menu,
    .header-nav.xmenu>.nav>li .sub-menu li>.sub-menu {
        left: -220px !important;
    }

    .header-nav.xmenu>.nav>li .sub-menu {
        width: 161px;
    }

    .header-style-3 .header-nav .nav>li>a {
        padding: 32px 5px;
    }

    .header-style-3 .header-curve .dez-logo:before .header-curve .logo-header:before {
        right: -60px;
    }

}

/* Tablate [1024] Responsive CSS End */
/* Tablate [991] Responsive CSS */

@media only screen and (max-width: 991px) {
    .header-style-5 .fa-chevron-down {
        display: block;
    }
}

/* Tablate [991] Responsive CSS End */
/* Mobile [767] Responsive CSS */

@media only screen and (max-width: 768px) {
    .header-style-5 .header-nav .nav>li>a {
        color: #555555;
    }

    .header-style-5 .dez-logo,
    .header-style-5 .logo-header,
    .header-style-5 .is-fixed.header-curve .dez-logo,
    .header-style-5 .is-fixed.header-curve .logo-header {
        width: 160px;
    }

}

/* Mobile [767] Responsive CSS End */
/* Responsive CSS End */
/* Responsive CSS */
/* Tablate [991] Responsive CSS */

@media only screen and (max-width: 991px) {

    .header-style-5 .dez-topbar-left,
    .header-style-5 .dez-topbar-right {
        padding-left: 0;
        padding-right: 0;
    }

    .header-style-5 .dez-topbar-left li a span {
        display: none;
    }

    .header-style-5 .fa-chevron-down {
        display: block;
    }
}

/* Tablate [991] Responsive CSS End */
/* Responsive CSS End */
/* ================== Header Style 5 End ================== */
/* ================== Header Style 6 ================== */

.header-style-6 .dez-logo,
.header-style-6 .logo-header {
    margin-top: -20px;
}

.top-bar-curve {
    position: relative;
    z-index: 2;
    min-height: 40px;
}

.top-bar-curve:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 1500px;
    height: 100%;
    content: "";
    z-index: -1;
    transform: skewX(35deg);
    -moz-transform: skewX(35deg);
    -webkit-transform: skewX(35deg);
    -o-transform: skewX(35deg);
    -ms-transform: skewX(35deg);
    transform: skewX(35deg);
}

.header-style-6 .fa-chevron-down {
    display: none;
}

.header-style-6 .header-nav .nav>li>a {
    text-transform: none;
    font-weight: 600;
    position: relative;
}

.header-style-6 .header-nav .nav>li.active:after,
.header-style-6 .header-nav .nav>li:hover>a:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    height: 2px;
    width: 100%;
}

.header-style-6 .header-nav .nav>li.active:before,
.header-style-6 .header-nav .nav>li:hover>a:before {
    border-bottom: 8px solid;
    border-left: 8px solid rgba(0, 0, 0, 0);
    border-right: 8px solid rgba(0, 0, 0, 0);
    bottom: 0;
    content: "";
    left: 50%;
    margin-left: -5px;
    position: absolute;
}

/* header fix */
.header-style-6 .is-fixed .dez-logo,
.header-style-6 .is-fixed .logo-header {
    margin-top: 0px;
}

.header-style-6 .is-fixed .dez-quik-search .form-control {
    height: 70px;
}

/* top bar */

.header-style-6.dark .top-bar {
    background-color: #2E1E13;
}

.header-style-6 .top-bar li {
    color: #fff;
}

.header-style-6 .top-bar .fa {
    font-size: 15px;
    height: 35px;
    padding: 10px 5px;
    text-align: center;
    vertical-align: middle;
    width: 30px;
    color: #ABABAB;
    margin: 0;
    color: #fff;
}

.header-style-6 .top-bar .fa-brands {
    font-size: 15px;
    height: 35px;
    padding: 10px 5px;
    text-align: center;
    vertical-align: middle;
    width: 30px;
    color: #ABABAB;
    margin: 0;
    color: #fff;
}

.header-style-6 .top-bar {
    border-top: 4px solid;
    padding: 0;
}

.header-style-6 .top-bar .dez-topbar-right,
.header-style-6 .top-bar .dez-topbar-left {
    padding: 0;
}

/* Responsive CSS */
/* Tablate [1200] Responsive CSS */

@media only screen and (max-width: 1200px) {

    .header-style-6 .dez-logo,
    .header-style-6 .logo-header {
        width: 200px;
    }
}

/* Tablate [1200] Responsive CSS End*/
/* Tablate [991] Responsive CSS */

@media only screen and (max-width: 991px) {
    .header-style-6 .navbar-toggle {
        margin: 25px 0 15px 5px;
        padding: 11px 10px;
    }

    .header-style-6 .is-fixed .navbar-toggle {
        margin: 15px 0 15px 5px;
    }

    .top-bar-curve:after {
        left: -25%;
    }

    .header-style-6 .dez-logo,
    .header-style-6 .logo-header {
        margin-top: 0;
    }

    .header-style-6 .header-nav .nav>li.active:before,
    .header-style-6 .header-nav .nav>li:hover>a:before,
    .header-style-6 .header-nav .nav>li.active:after,
    .header-style-6 .header-nav .nav>li:hover>a:after {
        display: none;
    }

    .header-style-6 .fa-chevron-down {
        display: block;
    }
}

/* Tablate [991] Responsive CSS End*/
/* Tablate [767] Responsive CSS */

@media only screen and (max-width: 767px) {
    .header-style-6 .top-bar {
        border-top: 0;
    }

    .header-style-6 .top-bar .dez-topbar-left li:last-child {
        display: none;
    }
}

/* Tablate [767] Responsive CSS End*/
/* Tablate [480] Responsive CSS */

@media only screen and (max-width: 480px) {
    .header-style-6 .extra-nav {
        clear: none;
        width: auto;
    }

    .header-style-6 .sign-in {
        display: none;
    }

    .top-bar-curve {
        padding: 2px 10px;
    }
}

/* Tablate [320] Responsive CSS*/

@media only screen and (max-width: 320px) {

    .header-style-6 .dez-logo,
    .header-style-6 .logo-header {
        width: 150px;
    }

    .header-style-6 .top-bar .fa {
        width: 25px;
    }
}

/* Tablate [320] Responsive CSS \*/
/* Responsive CSS End */
/* ================== Header Style 6 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;
    font-family: Raleway;
    color: #FFFFFF;
    font-family: "Raleway";
}

.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 {
    height: 170px;
    background-size: cover;
    background-position: center center;
    display: table;
    width: 100%;
}

.dez-bnr-inr .container {
    display: table;
    height: 100%;
}

.dez-bnr-inr-entry {
    display: table-cell;
    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;
}

/*== >  Provider banner off ==*/

.banner-inner-row.provider-banner-off {
    height: 150px;
    background-image: url("file:///C|/Users/admin/Documents/inc/images/pattern/pattern1.jpg") !important;
    background-repeat: repeat;
    background-size: auto;
}

.provider-banner-off.overlay-black-middle::after {
    opacity: 0.1;
}

.navicon {
    width: 20px;
    height: 18px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    border: 0;
}

.navicon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    border-radius: 1px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.navicon span:nth-child(1) {
    top: 0px;
}

.navicon span:nth-child(2) {
    top: 7px;
}

.navicon span:nth-child(3) {
    top: 14px;
}

.navicon.open span:nth-child(1) {
    top: 7px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.navicon.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.navicon.open span:nth-child(3) {
    top: 7px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

/*---------------------------------------------------------------
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-none .owl-nav {
    display: none;
}

.owl-theme .owl-nav,
.owl-theme .owl-dots {
    margin-top: 20px;
    text-align: center;
}

.owl-theme .owl-nav .disabled {
    opacity: .5;
    cursor: default
}

/* owl 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 {}

.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: 30px;
}

.dez-post-info {}

.dez-post-title {
    margin-bottom: 10px;
}

.dez-post-title .post-title {
    margin-top: 15px;
}

.dez-post-meta {
    margin-bottom: 10px;
}

.dez-post-meta ul {
    margin: 0 -4px;
    list-style: none;
}

.dez-post-meta ul li {
    padding: 0;
    display: inline-block;
}

.dez-post-meta li:after {
    content: "/";
    display: inline-block;
    font-weight: normal;
    margin-left: 5px;
    opacity: 0.5;
}

.dez-post-meta li:last-child:after {
    display: none;
}

.dez-post-meta a {
    color: #a9a9a9;
}

.dez-post-meta i {
    color: #7b7b7b;
    margin: 0 5px;
}

.dez-post-text {
    margin-bottom: 15px;
}

.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 #ddd;
    padding: 2px 8px;
    color: #a9a9a9;
    margin: 0 3px;
    display: inline-block;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 600;
}

/*== post date syle css ==*/

.date-style-1 .post-date {
    color: #fff;
    background-color: #07576a;
    padding: 3px 5px 3px 5px;
}

.date-style-1 .post-date .fa {
    color: #fff;
    left: 5px;
    top: 5px;
}

.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;
    font-family: "Roboto Slab", serif;
}

.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;
    float: left;
    margin-right: 30px;
}

.blog-md .dez-post-info {
    border: none;
}

.blog-md .dez-post-tags {
    border: none;
    display: inline-block;
    padding: 0;
}

@media only screen and (max-width: 768px) {
    .blog-md.blog-post .dez-post-media {
        float: none;
        margin: 0 0 20px;
        width: auto;
    }
}

/*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;
}

/*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 #ddd;
    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: 30px;
}

@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;
}

/*= comment list = */

.comments-area {
    padding: 0;
}

.comments-area .comments-title {
    text-transform: uppercase;
    font-size: 20px;
}

.comments-area .comments-title:first-letter {
    font-family: "Open Sans";
    font-weight: 600;
    color: #07576a;
}

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;
}

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: 10px;
}

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: #555555;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    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;
    display: flex;
    align-items: center;
    gap: 6px;
}

ol.comment-list li.comment .comment-meta a {
    color: #8d8d8d;
}

ol.comment-list li.comment .comment-meta a {
    color: #8d8d8d;
}

ol.comment-list li.comment .comment-meta:before,
ol.comment-list li.comment .reply a:before {
    font-family: "FontAwesome";
    font-size: 11px;
    vertical-align: top;
}

ol.comment-list li.comment .comment-meta:before {
    content: "\f133";
}

ol.comment-list li.comment .reply a:before {
    content: "\f064";
    font-weight: normal;
    color: #555555;
    margin-right: 5px;
    vertical-align: middle;
}

ol.comment-list li.comment p {
    line-height: 18px;
    margin: 0 0 5px;
}

ol.comment-list li.comment .reply a {
    position: absolute;
    top: 50px;
    right: 30px;
    margin-top: -5px;
    color: #07576a;
    font-weight: 600;
}

ol.comment-list li .children {
    list-style: none;
    margin-left: 80px;
}

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: 16px;
    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: "FontAwesome";
    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: "\f007";
}

.comments-area p.comment-form-email:before {
    content: "\f0e0";
}

.comments-area p.comment-form-url:before {
    content: "\f0ac";
}

.comments-area p.comment-form-comment:before {
    content: "\f040";
}

.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;
}

.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: #07576a;
    border: none;
    border-radius: 3px;
    border-style: solid;
    border-width: 1px;
    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 {
    color: #fff;
}

@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-title {
    margin: 0 0 25px;
}

.widget-title {
    padding-bottom: 15px;
    position: relative;
    margin-bottom: 30px;
}

.widget-title:after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 0;
    height: 3px;
    margin: 0 0 0;
    width: 50px;
    margin: 10px 0;
}

.widget .widget-title,
.widget .post-title {
    text-transform: uppercase;
}

.recent-posts-entry ul,
.category-entry ul {
    margin: 0;
    list-style: none;
    padding: 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;
}

.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: "FontAwesome";
}

.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*/

.search-bx .site-button {
    padding: 9px 12px;
    border: 1px solid transparent;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

/*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;
}

/*widget recent-posts*/

.recent-posts-entry .post-date,
.tweets-feed-entry .tweet-date {
    color: #3396d1;
    font-style: normal;
}

.widget .post-title {
    line-height: 16px;
    margin-bottom: 8px;
}

.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 {
    float: left;
    width: 90px;
}

.recent-posts-entry .dez-post-info {
    background: transparent;
    padding: 0;
    margin-left: 110px;
    border: none;
}

.recent-posts-entry .post-meta span {
    margin-right: 10px;
}

/*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 #ddd;
    font-size: 12px;
    display: inline-block;
    margin: 0 0 5px;
    color: #555555;
}

.side-bar .widget_tag_cloud a:hover {
    background-color: #CCCCCC;
}

/*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;
}

/*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 .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: uppercase;
}

.widget_getintuch i {
    position: absolute;
    left: 0;
    top: 5px;
    text-align: center;
    font-size: 14px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background-color: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.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;
}

/*---------------------------------------------------------------
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-toggle,
.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-toggle,
.logo-header,
.dez-logo,
.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

---------------------------------------------------------------*/
/*== >Buttons ======= */
/* owl slider button */

.owl-prev,
.owl-next {
    border-color: #2d3239;
    color: #ffffff;
    padding: 5px 10px;
    margin-left: 5px;
    margin-right: 5px;
    font-size: 13px;
    display: inline-block;
    cursor: pointer;
    border-width: 0px;
    border-style: solid;
}

.owl-prev:hover,
.owl-prev:active,
.owl-prev:focus,
.owl-next:hover,
.owl-next:active,
.owl-next:focus {
    color: #ffffff;
}

/* theme default button */
/* 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;
}

.site-button,
.site-button-secondry {
    color: #fff;
    padding: 10px 20px;
    display: inline-block;
    font-size: 14px;
    outline: none;
    cursor: pointer;
    outline: none;
    border-width: 0;
    border-style: solid;
    border-color: transparent;
    line-height: 1.42857;
    border-radius: 3px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

.site-button {
    background-color: #07576a;
}

.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: 10px 20px;
    font-size: 16px;
    font-weight: 600;
}

.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, .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: #07576a;
    border-color: #07576a;
}

/* 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;
    padding: 3px 5px;
}

.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 */
/* .site-button.facebook,
.site-button.google-plus,
.site-button.instagram,
.site-button.linkedin,
.site-button.twitter,
.site-button.youtube,
.site-button.whatsapp{
	border-radius:3px;
} */
/* 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;
    }
}

/* 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;
    border: none;
}

.site-filters li input {
    display: none;
}

.site-filters a {
    margin: 0 5px 5px 0;
}

.site-filters .active>[class*="site-button"] {
    color: #fff;
    background-color: #07576a;
}

.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: 400;
    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;
    transform: skew(-20deg, -20deg);
    -moz-transform: skew(-20deg, -20deg);
    -webkit-transform: skew(-20deg, -20deg);
    -o-transform: skew(-20deg, -20deg);
    width: 2px;
}

.site-filters.style1 li.active a,
.site-filters.style1.white li.active a {
    color: #19bb9f;
}

.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;
}

.site-filters.center [class*="site-button"] {
    display: inline-block;
    margin: 0 5px 10px;
}

@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: 3px;
    width: 50px;
    margin-bottom: 10px;
    position: relative;
}

.dez-separator.style-liner {
    width: 20px;
}

.dez-separator.style-icon {
    width: 30px;
    height: auto;
    text-align: center;
    font-size: 20px;
}

.blog-post.blog-grid.date-style-2.style-3 iframe {
    height: 500px;
}

.dez-separator[class*="style-"]:after,
.dez-separator[class*="style-"]:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 30px;
    width: 70px;
    height: 1px;
    background: #cecece;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.dez-separator[class*="style-"]:before {
    left: auto;
    right: 30px;
}

.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;
}

/*== >Deviders ====== */

.dez-divider {
    height: 1px;
    position: relative;
    margin: 30px 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-check-circle,
.list-chevron-circle,
.list-arrow-circle,
.list-times-circle {
    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-check-circle li,
.list-chevron-circle li,
.list-arrow-circle li,
.list-times-circle li {
    padding: 5px 5px 5px 20px;
    position: relative;
}

.list-circle li:before,
.list-angle-right li:before,
.list-arrow li:before,
.list-check li:before,
.list-checked li:before,
.list-check-circle li:before,
.list-chevron-circle li:before,
.list-arrow-circle li:before,
.list-times-circle li:before {
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
    top: 6px;
    display: block;
    font-size: 15px;
    color: #777;
}

.list-circle li:before {
    top: 10px;
    font-size: 10px;
}

.list-circle li:before {
    content: "\f111";
}

.list-angle-right li:before {
    content: "\f105";
}

.list-arrow li:before {
    content: "\f0da";
}

.list-check li:before {
    content: "\f00c";
}

.list-checked li:before {
    content: "\f046";
}

.list-check-circle li:before {
    content: "\f058";
}

.list-chevron-circle li:before {
    content: "\f138";
}

.list-arrow-circle li:before {
    content: "\f0a9";
}

.list-times-circle li:before {
    content: "\f057";
}

/*listing before icon color css*/

.primary li:before {
    color: #07576a;
}

.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: #07576a;
    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);
}

/*== >Tabs ========= */
/*tabs style 1 [ defult ]*/

.dez-tabs .tab-pane {
    padding: 20px 0;
}

.dez-tabs .nav-tabs>li>a {
    color: #3d474a;
    font-weight: 600;
    font-size: 13px;
    -webkit-border-radius: 0;
    border-radius: 0;
}

.dez-tabs .nav-tabs>li.active>a,
.dez-tabs .nav-tabs>li.active>a:focus,
.dez-tabs .nav-tabs>li.active>a:hover {
    background-color: #fff;
    border-color: #ddd;
    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: #07576a;
    margin-right: 5px;
}

/*tabs bg  [ tabs background ]*/

.dez-tabs.bg-tabs .nav-tabs>li>a {
    border: 1px solid #ddd;
    background-color: #efefef;
    margin-right: 2px;
}

.dez-tabs.bg-tabs .nav-tabs>li.active>a {
    border-bottom: 1px solid transparent;
    background-color: #fff;
}

.dez-tabs.vertical.bg-tabs .nav-tabs>li>a {
    border: 1px solid #ddd;
}

.dez-tabs.vertical.bg-tabs .nav-tabs>li.active>a {
    border-right: 1px solid transparent;
}

.dez-tabs.vertical.right.bg-tabs .nav-tabs>li>a {
    border: 1px solid #ddd;
}

.dez-tabs.vertical.right.bg-tabs .nav-tabs>li.active>a {
    border-left: 1px solid transparent;
}

/*tabs bg & top border  [ tabs background & top border in active ]*/

.dez-tabs.border-top .nav-tabs>li.active>a {
    border-top: 2px solid #07576a;
    padding: 9px 15px 10px;
}

/*tabs style 2 [ content with border outer ]*/

.dez-tabs.border .tab-pane {
    padding: 20px;
    border: 1px solid #ddd;
    margin-top: -1px;
}

/*tabs style 3  [ left-nav ]*/

.dez-tabs.vertical .nav-tabs {
    float: left;
    width: 170px;
    border-bottom: none;
    border-right: 1px solid #DDD;
}

.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.active a {
    border-bottom: 1px solid #ddd;
}

.dez-tabs.vertical .tab-content {
    border-left: 1px solid #DDD;
    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 #ddd;
    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.active a {
    border-right: 1px solid #ddd;
    border-left: none;
}

.dez-tabs.vertical.right .tab-content {
    border-left: none;
    border-right: 1px solid #ddd;
    margin-right: 169px;
    margin-left: 0;
}

.dez-tabs.vertical.right .tab-pane {
    padding: 10px 20px 10px 0;
}

@media only screen and (max-width: 767px) {
    .dez-tabs .nav-tabs>li>a i {
        margin: 0px;
    }
}

/*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: 12px 40px 12px 15px;
    border: 1px solid #ddd;
}

.acod-head a,
.acod-head a:hover,
.acod-head a.collapsed:hover {
    color: #07576a;
}

.acod-head a.collapsed,
.acod-head a.collapsed:after {
    color: #3d474a;
}

.acod-head a:after {
    font-family: 'FontAwesome';
    content: "\f068";
    float: right;
    color: #07576a;
    font-size: 14px;
    font-weight: normal;
    position: absolute;
    right: 12px;
    top: 12px;
}

.acod-head a.collapsed:after {
    content: "\f067";
}

.acod-body {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-top: 1px solid transparent;
    margin-top: -1px;
}

.acod-content {
    margin: 20px;
}

/*== 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;
}

/*== 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;
}

/*== >Carousels ======*/
/* Blog carousel */

.ow-post-info {
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ebebeb;
    text-align: center;
}

.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;
    font-weight: bold;
}

.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-right: 10px;
}

.ow-event-meta ul li i {
    color: #7b7b7b;
    margin-right: 10px;
}

/* 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;
}

/*== >Testimonials ======*/

.testimonial-pic {
    background: #FFF;
    width: 100px;
    height: 100px;
    position: relative;
    display: inline-block;
    border: 5px 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);
}

.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;
}

.testimonial-detail {
    padding: 5px;
}

.testimonial-name,
.testimonial-position {
    display: block;
}

.testimonial-position {
    font-style: italic;
}

.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: #07576a;
}

.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: #07576a;
    color: #FFF;
    text-align: center;
    left: 0;
    top: 65px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
}

/*testimonial 2*/

.testimonial-2 .testimonial-text {
    background-color: #efefef;
    padding: 30px;
}

.testimonial-2 .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 #efefef;
}

.testimonial-2 .testimonial-detail {
    padding: 25px 0 20px 20px;
}

.testimonial-2 .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: #07576a;
    color: #FFF;
    text-align: center;
    left: 0;
    top: 65px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
}

.testimonial-2 .testimonial-name,
.testimonial-2 .testimonial-position {
    padding: 2px 0;
}

.testimonial-2 .testimonial-name {
    padding-top: 20px;
}

.testimonial-2 .testimonial-position {
    color: #07576a;
}

.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: #07576a;
}

.testimonial-3 .testimonial-position {
    color: #07576a;
}

.testimonial-3 .testimonial-name,
.testimonial-3 .testimonial-position {
    display: inline-block;
}

/*testimonial 4*/

.testimonial-4 {
    background-color: #1e2228;
    position: relative;
    padding: 30px 40px 30px 10px;
    margin-left: 140px;
    min-height: 150px;
}

.testimonial-4:after {
    background-color: #1e2228;
    border-left-width: 4px;
    border-left-style: solid;
    border-left-color: #07576a;
    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: #07576a;
    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: #1E2228;
}

.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: #07576a;
    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: #07576a;
    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);
    }

    .testimonial-4 {
        padding: 25px 10px 25px 0px;
        margin-left: 110px;
    }
}

.testimonial-5 {
    background-color: #f5f5f5;
    text-align: center;
    padding: 0 15px 15px;
    border-width: 1px 1px 3px;
    border-style: solid;
    border-color: #dfdfdf #dfdfdf #8dc141;
}

.testimonial-5 .testimonial-pic {
    margin: -50px auto 0;
    display: block;
}

.testimonial-5 .testimonial-name {
    margin-bottom: 15px;
    font-size: 18px;
    font-family: "Roboto Slab", serif;
}

/*== >Pricing table  ===*/

.pricingtable-inner {
    text-align: center;
}

.pricingtable-price {
    padding: 20px 20px;
    background-color: #F4F7F8;
    border: 1px solid #E9E9E9;
}

.pricingtable-bx {
    font-size: 50px;
    font-family: Arial;
    color: #666666;
}

.pricingtable-type {
    font-size: 20px;
    text-transform: uppercase;
    font-size: 16px;
}

.pricingtable-type:before {
    content: "/";
    margin-right: 3px;
}

.pricingtable-title {
    background-color: #07576a;
    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: #F4F7F8;
}

.pricingtable-features li:last-child {
    border-bottom: none;
}

.pricingtable-footer {
    margin-top: -1px;
    padding: 20px;
    background-color: #F4F7F8;
    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;
}

/* COUNTERUP */

.counter {
    position: relative;
}

/* COUNTDOWN CLOCK */

.count-row {
    background: #333;
}

#countdown-clock {
    display: table;
    text-align: center;
    width: 80%;
    margin-left: -15px;
    border: 1px solid #3f3f3f;
    margin: 17px 0;
}

#countdown-clock span {
    display: table-cell;
    width: 1%;
    color: #FFF;
    padding: 5px 15px;
    text-transform: uppercase;
    font-weight: 600;
    color: #999;
    border-right: 1px solid #3f3f3f;
}

#countdown-clock span:last-child {
    border-right: none;
}

#countdown-clock span b {
    display: block;
    font-size: 25px;
    font-weight: 900;
    color: #FFF;
}

@media only screen and (max-width: 991px) {
    #countdown-clock {
        width: 100%;
    }
}

/*== >Alert box =====*/

.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;
}

/*== >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: #07576a;
    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 li {
    padding: 0 3px;
}

.dez-social-icon li a {
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* 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: #e8e9e9;
    padding: 20px 0;
}

.breadcrumb-row ul {
    margin: 0;
}

.breadcrumb-row ul li {
    padding: 0;
    margin-right: 3px;
    color: #333333;
}

.breadcrumb-row ul li:after {
    content: "/";
    margin-left: 7px;
}

.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 {
    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 {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.overlay-black-light:after,
.overlay-black-middle:after,
.overlay-black-dark:after {
    background: #000;
}

.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 {
    background: ;
}

.overlay-black-light:after {
    opacity: 0.3;
}

.overlay-black-middle:after {
    opacity: 0.5;
}

.overlay-black-dark:after {
    opacity: 0.9;
}

.overlay-gradient-light:after {
    opacity: 0.3;
}

.overlay-gradient-middle:after {
    opacity: 0.5;
}

.overlay-gradient-dark:after {
    opacity: 0.9;
}

.overlay-white-light:after {
    opacity: 0.5;
}

.overlay-white-middle:after {
    opacity: 0.7;
}

.overlay-white-dark:after {
    opacity: 0.9;
}

.overlay-primary-light:after {
    opacity: 0.3;
}

.overlay-primary-middle:after {
    opacity: 0.5;
}

.overlay-primary-dark:after {
    opacity: 0.9;
}

.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-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 {
    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;
}

.dez-coming-soon .logo-header,
.dez-login .logo-header {
    display: table;
}

.overlay-icon {
    list-style: none;
    width: 160px;
    height: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.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 .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .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;
}

.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;
    display: flex;
    justify-content: center;
    align-items: center;
}

.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;
}

.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;
}

/*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.bx-style-3 {
    position: relative;
    padding: 20px;
    transition: 0.5s;

}

.icon-bx-wraper .dez-tilte {
    margin-top: 10;
}

.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;
}

[class*="icon-bx-"][class*="bg-"] a {
    color: #fff;
}

[class*="icon-bx-"].bg-white a {
    color: inherit;
}

[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: #ddd;
    position: relative;
}

.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 {
    background-color: #FFF;
    position: relative;
    height: auto;
}

.dez-media img,
.dez-post-media img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/*---------------------------------------------------------------
25. PAGINATION 
---------------------------------------------------------------*/
/* pagination style-1 */

.pagination-bx .pagination,
.cvf-universal-pagination .pagination {
    margin: 0;
}

.pagination {
    padding: 10px 0;
}

.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 #e0e0e0;
    color: #767676;
    padding: 8px 14px;
    font-weight: 600;
    font-size: 12px;
}

.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: 8px 14px;
    font-size: 12px;
}

/*DataTable  pagination */

.dataTables_paginate ul.pagination {
    margin: 0;
}

.dataTables_paginate .pagination>li {
    padding: 0;
}

/*---------------------------------------------------------------
26. FOOTER
---------------------------------------------------------------*/
/*newslatter*/

.dez-newsletter {
    overflow-x: hidden;
}

.skew-subscribe {
    position: relative;
}

.skew-subscribe:after {
    background-color: #12151a;
    content: "";
    position: absolute;
    left: -50px;
    bottom: 0;
    width: 2000px;
    height: 100%;
    border-right: 7px solid #2D3239;
    -webkit-transform: skew(30deg);
    -moz-transform: skew(30deg);
    -o-transform: skew(30deg);
    -ms-transform: skew(30deg);
    transform: skew(30deg);
}

@media only screen and (max-width: 767px) {
    .dez-newsletter .p-t40.p-b20 {
        padding-top: 30px;
        padding-bottom: 0;
    }

    .skew-subscribe.p-t40.p-b20 {
        padding-top: 30px;
        padding-bottom: 0;
    }

    .skew-subscribe:after {
        left: auto;
        right: 30px;
        -webkit-transform: skew(-30deg);
        -moz-transform: skew(-30deg);
        -o-transform: skew(-30deg);
        -ms-transform: skew(-30deg);
        transform: skew(-30deg);
    }
}

/* 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: #fff;
}

footer p,
footer strong,
footer b,
footer {
    color: #fff;
}

footer h1 a,
footer h2 a,
footer h3 a,
footer h4 a,
footer h5 a,
footer h6 a,
footer p a {
    color: #07576a;
    ;
}

footer a,
footer a:visited {
    color: #fff;
}

footer a:active,
footer a:focus,
footer a:hover {
    color: #07576a;
}

footer p {
    margin-bottom: 10px;
}

footer p,
footer li {
    font-size: 15px;
    line-height: 22px;
}

footer#footer {
    background-position: center;
    background-size: cover;
}

.dez-top-footer-overlay,
.dez-bottom-footer-overlay {
    position: relative;
}

.dez-top-footer-overlay .container,
.dez-bottom-footer-overlay .container {
    position: relative;
    z-index: 1;
}

.dez-top-footer-overlay:before,
.dez-bottom-footer-overlay:before {
    content: "";
    background: #000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.dez-top-footer-overlay:before {
    opacity: ;
}

.dez-bottom-footer-overlay:before {
    opacity: ;
}

footer p {
    line-height: 24px;
    margin-bottom: 10px;
}

footer p a {
    color: #3396d1;
}

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 .widget_getintuch i {
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-top {
    background-color: #1e2228;
    background-size: cover;
    background-position: center;
    padding: 30px 0 8px;
}

.footer-line {
    position: relative;
}

.footer-line:after {
    content: "";
    position: absolute;
    top: 0;
    height: 5px;
    width: 100%;
    background-color: #07576a;
    background-image: url(../images/line.png);
    background-position: top;
    background-repeat: repeat-x;
}

.footer-bottom {
    background-color: #268ca5;
    padding: 10px 0;
    color: #787878;
    font-size: 15px;
}

.footer-bottom ul {
    margin: 0;
}

@media only screen and (max-width: 1280px) {
    .footer-fixed .site-footer {
        position: relative;
    }
}

@media only screen and (max-width: 991px) {
    footer .container {}

    .col-md-3.col-sm-6.footer-col-4:nth-child(3) {
        clear: both;
    }
}

@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%;
    }
}

/* scroll top btn css */

button.scroltop {
    position: fixed;
    right: 15px;
    bottom: 15px;
    color: #fff;
    border: 0;
    margin: 0;
    cursor: pointer;
    display: none;
    height: 45px;
    width: 45px;
    font-size: 24px;
    z-index: 99;
    line-height: 26px;
    text-align: center;
    border-radius: 50px;
}

/*---------------------------------------------------------------

27. PAGE-CONTENT

---------------------------------------------------------------*/

.page-wraper {
    background: #F4F5F5;
}

.page-content {
    margin-top: 0;
    padding-bottom: 50px;
}

.content-area {
    padding-top: 60px;
}

.section-full {
    position: relative;
}

.section-full:last-child {
    margin-bottom: -50px;
}

/*= Section Head Part =*/

.section-head {
    margin-bottom: 25px;
}

.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: 14px;
    color: #9897a0;
}

.text-center.section-head p {
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
}

.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 {}

@media only screen and (max-width: 1024px) {
    .section-full {
        background-attachment: scroll !important;
        padding-top: 30px;
        padding-bottom: 50px;
    }
}

@media only screen and (max-width: 991px) {
    .page-content {
        margin-top: 0;
    }
}

/*---------------------------------------------------------------
28. INNER-CONTENT
---------------------------------------------------------------*/
/* AFTER-LOGIN-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: 768px) {
    .page-notfound strong {
        font-size: 120px;
    }

    .page-notfound strong i {
        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;
    / Above WP toolbar. /
}

/*===============================================

	gallery pages css

=============================================== */

.dez-gallery-listing {
    list-style: none;
}

.dez-gallery-box {
    margin-bottom: 30px !important;
}

/*===============================================

	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.5)
}

.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,
.boxed .is-fixed.header-curve .dez-logo:after {
    right: auto;
    left: -15px;
    width: 90%;
}

.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 #07576a;
}

.product-description.dex-tabs .nav-tabs>li>a i {
    color: #07576a;
}

.dex-tabs.bg-tabs .nav-tabs>li>a {
    background-color: #fcfcfc;
}

/*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: #fff;
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    z-index: 999;
    display: n one;
    overflow: hidden;
}

.dez-quik-search form {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    position: relative;
}

.dez-quik-search .form-control {
    padding: 15px;
    width: 100%;
    height: 90px;
    border: none;
    background: none;
    color: #fff;
    font-size: 20px;
}

.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;
}

#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;
    color: #fff;
}

/* 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 8 */

.team-social-btn ul li a:hover {
    background: #8DC141
}

.team-social-btn ul li a {
    color: #fff;
    border: 0;
    width: 30px;
    height: 30px;
    padding: 0;
    line-height: 30px;
}

.dez-box.hover:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.dez-member-position:after,
.dez-member-position:before {
    background: #fff;
    top: 50%;
    left: -40px;
    content: "";
    height: 1px;
    position: absolute;
    width: 30px;
}

.dez-member-position:before {
    right: -40px;
    left: auto;
}

.dez-member-position {
    position: relative;
}

/* Team End */
/* footer social */

.footer-social li a {
    border-color: #000;
}

/*---------------------------------------------------------------
29. SIDE-NAV
---------------------------------------------------------------*/

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 9;
    top: 0;
    left: -320px;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.5s;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
    border: 0 none;
    border-radius: 0;
    width: 300px;
}

.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 .dez-logo,
.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 .5s;
}

/*---------------------------------------------------------------
30. ONE-PAGE-LAYOUT
---------------------------------------------------------------*/
.sidenav.full-page {
    left: 0;
    width: 280px;
}

.one-page-layout #main {
    margin-left: 280px;
}

.contant-block {
    padding-left: 30px;
    padding-right: 30px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    max-width: 1500px;
}

.one-page-layout .closebtn,
.one-page-layout .button-side-nav {
    display: none;
}

#myNavbar li.active a {
    color: #fff;
}

.one-page-layout {
    padding-bottom: 0;
    margin-bottom: 0;
}

/* Right */

.one-page-layout.right-side .sidenav {
    left: auto;
    right: 0;
    border-radius: 0;
}

.one-page-layout.right-side #main {
    margin-left: 0;
    margin-right: 280px;
}

/* Responsive Css  */

@media only screen and (max-width: 1024px) {

    .one-page-layout .closebtn,
    .one-page-layout .button-side-nav {
        display: block;
    }

    .sidenav.full-page {
        left: 0;
        width: 0;
        z-index: 999;
    }

    .one-page-layout #main {
        margin-left: 0px !important;
    }

    .site-footer .footer-bottom .col-md-4 {
        width: 33.33%;
        display: inline-block;
        float: left;
    }

    .one-page-layout.right-side #main {
        margin-right: 0px;
    }

    .one-page-layout.right-side .button-side-nav {
        left: 20px;
        right: auto;
    }
}

@media only screen and (max-width: 767px) {
    .site-footer .footer-bottom .col-md-4 {
        text-align: center;
        padding-top: 5px;
        padding-bottom: 5px;
        width: 100%;
    }
}

.dez-full-blog {
    height: 100%;
    position: fixed;
    width: 50%;
    background-color: #efefef;
}

.dez-full-blog .owl-carousel .dez-thum-bx img {
    width: 100%;
}

.dez-full-blog .owl-carousel {
    z-index: auto;
}

.dez-full-blog .dez-post-info {
    background-color: #efefef;
    padding: 20px 30px 30px;
    width: 100%;
}

.left-footer-menu .footer-social li a {
    border-radius: 50%;
    height: 40px;
    line-height: 40px;
    width: 40px;
    padding: 0;
    text-align: center;
    font-weight: normal;
}

.left-footer-menu .footer-social li {
    padding: 0 2px;
}

.left-footer-menu {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.dez-full-blog .dez-post-tags {
    background-color: #EFEFEF;
    bottom: 0;
    padding: 15px 30px;
    position: fixed;
    width: 100%;
}

.full-blog-dark .dez-full-blog .dez-post-tags {
    background-color: #090909;
}

/* Blog Section Dark */

.full-blog-dark {
    background-color: #101010;
}

.full-blog-dark .post-title a {
    color: #fff;
}

.full-blog-dark.style-1 .dez-post-info {
    padding-top: 10px;
    padding-bottom: 15px;
}

.full-blog-dark .dez-full-blog .dez-post-info {
    background-color: #090909;
    border: 0;
    padding: 20px 30px 30px;
}

.full-blog-dark .dez-post-tags {
    border-top: 1px solid #141414;
}

.full-blog-dark .dez-post-tags .post-tags a {
    border: 1px solid #2b2b2b;
}

.full-blog-dark .sidenav {
    background-color: #090909;
}

.full-blog-dark .sidenav ul li a {
    border-color: #0c0c0c;
}

.full-blog-dark .dez-full-blog {
    background: #090909
}

/* Dark Style With Border */
.full-blog-dark.style-2 .dez-post-info,
.full-blog-dark.style-3 .dez-post-info {
    border: 1px solid #1b1b1b;
    padding: 20px;
}

.blog-page-content .card-container {
    padding-left: 10px;
    padding-right: 10px;
}

.blog-page-content .blog-post {
    margin-bottom: 20px;
}

.blog-page-content .dez-full-blog .dez-post-text {
    margin-bottom: 30px;
}

/* Light Style With Border */

.style-2 .dez-post-info,
.style-3 .dez-post-info {
    border: 1px solid #dddddd;
    padding: 10px 20px 20px;
}

.style-3 .dez-full-blog {
    width: 41.66%;
}

/*==== Responsive ====*/

@media only screen and (max-width: 1024px) {
    .style-3 .dez-full-blog {
        width: 50%;
    }
}

@media only screen and (max-width: 991px) {

    .dez-full-blog,
    .style-3 .dez-full-blog {
        position: unset;
        width: 100%;
    }

    .dez-full-blog .dez-post-tags {
        position: unset;
    }
}

@media only screen and (max-width: 767px) {
    #main {
        margin-left: 0 !important;
    }

    .blog-page-content .dez-full-blog .blog-post {
        margin-bottom: 0px;
    }
}

/*---------------------------------------- 
31. Comming Soon And Login Pages
-----------------------------------------*/
/*====== Coming Soon Page ======*/
.countdown .date span {
    font-size: 60px;
    font-weight: 500;
}

.countdown .date {
    min-width: 120px;
    color: #fff;
    display: inline-block;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 -2px;
}

.countdown .date:last-child {
    border: 0px solid;
}

.countdown .date text {
    display: block;
    margin: 0 auto;
    padding: 2px 1px;
    width: 100%;
    font-size: 14px;
    font-weight: 100;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 2px;
}

.coming-soon-content h2 {
    font-size: 50px;
    font-family: roboto;
    font-weight: 300;
    min-height: 50px;
    line-height: 50px;
}

.coming-soon-content p {
    max-width: 800px;
    margin: 0px auto;
}

.dez-coming-soon {
    height: 100%;
    width: 100%;
}

.dez-coming-soon .container {
    position: relative;
    z-index: 2;
}

.dez-coming-soon-full {
    position: fixed;
    overflow-y: scroll;
}

.dez-coming-bx {
    margin-top: 50px;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.dez-coming-bx .input-group input.form-control {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 60px;
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.2);
}

.dez-coming-bx .dez-social-icon li a {
    background: rgba(255, 255, 255, 0.2);
    width: 35px;
    height: 35px;
    font-size: 15px;
    color: #fff;
    padding: 0;
    line-height: 33px;
}

.dez-coming-bx .input-group input.form-control::placeholder {
    color: #fff;
}

.dez-coming-bx .input-group input.form-control {
    color: #fff;
}

.dez-coming-soon[class*="overlay"]:after {
    position: fixed;
}

.dez-coming-soon .logo-header,
.dez-login .logo-header {
    width: 100%;
    padding: 30px;
    float: none;
}

.dez-coming-soon .dez-logo img,
.dez-coming-soon .logo-header img,
.dez-login .logo-header img,
.top-head img {
    max-width: 250px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.sidenav.coming-side-bar {
    background-color: #fff;
}

.dez-coming-bx.left-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 50%;
    margin-top: 0;
}

.dez-coming-soon .container-fluid {
    z-index: 2;
}

/*==== Appointment Form Css =====*/
/* Mack An Appointment Dark */
.mack-an-appointment {
    background-color: #2C4A6B;
}

.mack-an-appointment {}

.mack-an-appointment [class*="col-md-"] {
    padding: 0 7.5px
}

.mack-an-appointment .form-group {
    margin-bottom: 15px;
}

.mack-an-appointment .form-control {
    color: #cfcfcf;
    background-color: #3f444c;
    border: 1px solid #4d525a;
}

.mack-an-appointment .bootstrap-select button.dropdown-toggle {
    background-color: #3f444c !important;
    border: 1px solid #4d525a !important;
}

/* Mack An Appointment Dark End */
/* Mack An Appointment White */

.mack-an-appointment.white {
    background-color: #fff;
    border: 1px solid #d4d4d4;
}

.mack-an-appointment.white .form-control {
    background-color: #fff;
    border: 1px solid #d4d4d4;
}

.mack-an-appointment.white .bootstrap-select button.dropdown-toggle {
    background-color: #fff !important;
    border: 1px solid #d4d4d4 !important;
}

.dez-book-now-content {
    margin-top: 25%;
}

/* Mack An Appointment White */
/*==== Appointment Form Css END =====*/
/*====== Login Pages =======*/
.dez-login {
    bottom: 0;
    display: table;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    padding: 8vh 15px;
    width: 100%;
}

.login-form {
    max-width: 400px;
    margin: 0px auto;
    background: #fff;
}

.dez-form .form-control {
    background: #fff !important;
    height: 44px;
}

.dez-form .form-group {
    margin-bottom: 15px;
}

.login-form .bottom:hover a {
    color: #fff;
    text-decoration: underline;
}

/*==== Responsive ====*/
@media only screen and (max-width: 1200px) {
    .dez-coming-bx.left-bar .dez-coming-bx .countdown .date {
        min-width: 110px;
    }
}

@media only screen and (max-width: 991px) {

    .dez-coming-soon.two-box,
    .dez-coming-soon.two-box .dez-coming-bx {
        position: relative;
        width: 100%;
    }

    .dez-coming-soon.two-box .dez-coming-bx {
        margin-top: 0;
        margin-bottom: 0;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .dez-coming-soon.two-box .dez-coming-bx h2 {
        margin-top: 0;
    }

    .coming-side-bar {
        background: #fff;
    }

    .skew-content-box {
        padding: 5px;
    }

    .skew-content-box ul li a {
        margin-right: 3px;
        font-size: 13px;
    }

    .dez-social-icon {
        margin: 0;
    }

    .skew-content-box ul li a {
        padding: 5px;
    }

    .request-a-quote:before {
        left: 0;
        transform: skewX(0deg);
    }

    .header-style-4 .slide-up {
        position: unset;
    }

    .dez-coming-bx.left-bar {
        position: unset;
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .dez-book-now-content {
        margin-top: 10px;
        margin-bottom: 50px;
    }

    .coming-soon-content h2 {
        font-size: 30px;
    }

    .countdown .date span {
        font-size: 45px;
    }

    .countdown .date {
        max-width: 50px;
    }

    .dez-coming-bx {
        margin-top: 20px;
    }

    .our-service .service-box {
        margin-bottom: 30px;
    }

    .our-service {
        margin-top: 50px;
    }

    .dez-login {
        padding: 10px 20px 50px;
    }

    .dez-newsletter {
        padding: 15px;
    }
}

/*==== Responsive ====*/
/*==== Particles ====*/
.particles-js-canvas-el {
    position: fixed;
    top: 0;
    z-index: 1;
    height: 100%;
}

/* Form Tp Classes  */
.dez-book-now-form.tp-light {
    background-color: rgba(0, 0, 0, 0.3);
}

.dez-book-now-form.tp-light .form-control,
.dez-book-now-form.tp-light .bootstrap-select .dropdown-toggle {
    background-color: rgba(0, 0, 0, 0.0) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
}

.dez-book-now-form.tp-dark {
    background-color: rgba(0, 0, 0, 0.7);
}

.dez-book-now-form.tp-dark .form-control::-moz-placeholder,
.mack-an-appointment .form-control::-moz-placeholder {
    color: #cfcfcf;
}

.dez-book-now-form.tp-dark .form-control,
.dez-book-now-form.tp-dark .bootstrap-select .dropdown-toggle,
.mack-an-appointment .bootstrap-select .dropdown-toggle,
.mack-an-appointment .form-control::placeholder {
    color: #cfcfcf;
}

.dez-book-now-form.tp-dark .form-control,
.dez-book-now-form.tp-dark .bootstrap-select .dropdown-toggle {
    background-color: rgba(0, 0, 0, 0.0) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/*==== Skew Section ====*/
.skew-section {
    position: relative;
    z-index: 2;
}

.skew-section.left-top:after,
.skew-section.left-bottom:after,
.skew-section.right-top:before,
.skew-section.right-bottom:before {
    background: inherit;
    content: "";
    height: 100%;
    position: absolute;
    width: 100px;
    z-index: -1;
    top: 0;
    bottom: 0;
}

.skew-section.left-top:after {
    left: -50px;
    transform: skewX(7deg);
}

.skew-section.left-bottom:after {
    left: -50px;
    transform: skewX(-7deg);
}

.skew-section.right-top:before {
    right: -50px;
    transform: skewX(7deg);
}

.skew-section.right-bottom:before {
    right: -50px;
    transform: skewX(-7deg);
}

/*==== Skew Section END ====*/
/*==== Bottom Footer ====*/
.bottom-footer {
    position: fixed;
    bottom: 0;
    height: 35px;
    background: rgba(0, 0, 0, 0.2);
    width: 100%;
    padding: 5px;
    left: 0;
    right: 0;
    z-index: 4;
}

/* winHeight */
@media only screen and (max-width: 991px) {
    .winHeight {
        overflow: scroll;
    }
}

/* tp login */
.tp-login-black.login-form,
.tp-login-black .dez-form .form-control {
    background-color: rgba(0, 0, 0, 0.5)
}

.tp-login-white.login-form,
.tp-login-white .dez-form .form-control {
    background-color: rgba(255, 255, 255, 0.3)
}

.tp-login-black .dez-form .form-control,
.tp-login-white .dez-form .form-control {
    border: 0;
}

.tp-login-white .dez-form .form-control::-moz-placeholder {
    color: #fff;
}

/* login form style 2 */
.login-form.style-2 .form-control {
    background: #fff;
    border-left: 2px solid #707070;
}

.login-form.style-3 .form-control {
    background: rgba(255, 255, 255, 0.2) none repeat scroll 0 0;
    border: 0px solid #0079FC;
}

.login-form.style-3 .dez-form {
    padding: 30px;
    border: 1px solid #FDC716;
}

.login-form.style-3 {
    background: rgba(0, 0, 0, 0.3);
}

.login-form.style-3 .dez-form .form-control {
    color: #fff;
}

.login-form.style-3 .dez-form .form-control::-moz-placeholder {
    color: #fff;
}

/* 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;
}

.product-item:hover .overlay-icon {
    bottom: 40px;
    transition: all 0.5s;
}

.product-item:hover img {
    transform: scale(1.1);
}

.product-item .overlay-icon a i {
    background-color: #07576a;
    color: #fff;
}

.product-item:hover .dez-box,
.product-item:hover .dez-info {
    border-color: #d0d0d0;

}

/* .bootstrap-select div.dropdown-menu ul li:before {
    left: 7px;
    top: 6px;
} */
.float-right {
    float: right !important;
}

.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
}

.widget form {
    position: relative;
}

.widget span.caret.fa.fa-caret-down {
    z-index: 999;
    font-size: 14px;
    position: absolute;
    right: 12px;
    margin-top: 3px;
    top: 10px;
    vertical-align: middle;
}

.gallery-filters.style-3 ul li {
    font-size: 20px;
}

.widget_categories ul li:before {
    font-size: 14px;
    content: "\f105";
    position: absolute;
    top: 8px;
    left: 0;
    z-index: 999999;
    margin-top: -2px;
    vertical-align: middle;

}

.dez-topbar-right ul {
    display: inline-flex;
}

.widget span.caret.fa.fa-caret-down {
    position: absolute;
}

.bootstrap-select.btn-group .dropdown-toggle .caret {
    font-size: 14px;
    position: absolute;
    top: 13px;
    right: 12px;
    margin-top: -2px;
    vertical-align: middle;
}

.product-service .icon-bx-wraper {
    border: 0;
}

.product-item del {
    color: #b0b0b0;
    font-size: 18px;
    margin-top: 0;
    position: relative;
    top: -1px;
}

/* Google Recaptcha */
.g-recaptcha,
#rc-imageselect {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -o-transform: scale(0.9);

    transform-origin: 0 0;
    -o-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
}

@media screen and (max-width: 1280px) {

    #rc-imageselect,
    .g-recaptcha {
        transform: scale(0.7);
        -moz-transform: scale(0.7);
        -o-transform: scale(0.7);
        -webkit-transform: scale(0.7);

        transform-origin: 0 0;
        -moz-transform-origin: 0 0;
        -o-transform-origin: 0 0;
        -webkit-transform-origin: 0 0;

    }
}

@media screen and (max-width: 575px) {

    #rc-imageselect,
    .g-recaptcha {
        transform: scale(0.7);
        -moz-transform: scale(0.7);
        -o-transform: scale(0.7);
        -webkit-transform: scale(0.7);

        transform-origin: 0 0;
        -moz-transform-origin: 0 0;
        -o-transform-origin: 0 0;
        -webkit-transform-origin: 0 0;

    }

    .section-head {
        flex-wrap: wrap;
    }

    .text-start.section-head.style-3 {
        padding-bottom: 10px;
    }
}

.recaptcha-box {
    height: 60px;
}

/* 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: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;
}



.post-link-in {
    color: #000;
    font-size: 24px;
    font-weight: 400;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    text-decoration: none;
    line-height: 1.875rem;
    padding: 25px;
    display: block;
    text-align: center;
    border-radius: 15px;
    background-color: #fff;
    border: 2px solid #FDC716;
    margin-bottom: 15px;
}

.post-link-in i {
    margin-right: 8px;
}

.post-link-in:hover {
    background: #FDC716;
    border-color: #FDC716;
    color: #fff;
}

@media only screen and (max-width: 767px) {
    .post-link-in {
        padding: 20px;
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .post-link-in {
        padding: 12px;
        font-size: 16px;
        border-radius: 10px;
    }
}

.blog-single .dz-media>img+.quote-text {
    position: absolute;
}

.blog-single .dz-media:not(:has(img))>.quote-text {
    position: static;
    transform: none;
    width: auto;
    background-color: #fff5d3;
}

/* Quote-Post */
.quote-text {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    width: 720px;
}

@media (max-width: 1024px) {
    .quote-text {
        width: 510px;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .quote-text {
        width: 85%;
        padding: 10px;
    }
}

.quote-text blockquote.wp-block-quote {
    margin: 0px;
    background-color: transparent;
    border: 0;
    padding: 1.25rem 2rem 1.25rem 1.875rem;
}

@media (max-width: 768px) {
    .quote-text blockquote.wp-block-quote {
        padding: 15px;
    }
}

.quote-text blockquote.wp-block-quote::before {
    content: "\f10d";
    font-family: "FontAwesome";
    font-weight: normal !important;
    font-size: 80px;
    position: absolute;
    opacity: 0.2;
    right: 0px;
    bottom: 0px;
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .quote-text blockquote.wp-block-quote::before {
        font-size: 40px;
    }
}

.quote-text blockquote.wp-block-quote p {
    font-size: 18px;
}

@media (max-width: 768px) {
    .quote-text blockquote.wp-block-quote p {
        font-size: 12px;
    }
}

@media (max-width: 575px) {
    .quote-text blockquote.wp-block-quote p {
        line-height: 25px;

    }
}

.quote-text blockquote.wp-block-quote::after {
    content: "";
    height: 110px;
    width: 3px;
    border-radius: 2px;
    left: 0;
    top: 50%;
    position: absolute;
    box-shadow: 0 0 30px 0 #FDC716;
    transform: translateY(-50%);
}

.min-container,
.dz-page-text,
.dz-page-text+#comment-list,
.dz-page-text+.paginate-links,
.dz-page-text+#comment-list+.paginate-links {
    max-width: 53.125rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0.938rem;
    padding-right: 0.938rem;
}

.dz-blog.blog-single .dz-post-table,
.dz-post-table {
    padding: 35px 40px;
    margin-top: 2rem;
    margin-bottom: 2rem;
    position: relative;
    border-radius: 3px;
    background-color: #fdc716;
    border: 2px solid #000;
}

.dz-blog.blog-single .dz-post-table .table-title,
.dz-post-table .table-title {
    font-size: 20px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    color: #000;
}

.dz-blog.blog-single .dz-post-table ul,
.dz-post-table ul {
    padding-left: 0;
    counter-reset: post-table-counter;
}

.dz-blog.blog-single .dz-post-table ul li,
.dz-post-table ul li {
    list-style: none;
    font-weight: 400;
    font-size: 16px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
}

.dz-blog.blog-single .dz-post-table ul li::before,
.dz-post-table ul li::before {
    content: none;
}

.dz-blog.blog-single .dz-post-table ul li::after,
.dz-post-table ul li::after {
    content: "";
    display: inline-block;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.4) 50%, rgba(255, 255, 255, 0) 0);
    background-size: 10px 1px;
    background-repeat: repeat-x;
    width: 100%;
}

.dz-blog.blog-single .dz-post-table ul li a,
.dz-post-table ul li a {
    counter-increment: post-table-counter;
    box-shadow: none;
    font-style: normal;
    color: inherit;
    font-weight: inherit;
    white-space: nowrap;
}

.dz-blog.blog-single .dz-post-table ul li a::before,
.dz-post-table ul li a::before {
    content: counter(post-table-counter) ".";
    margin-right: 5px;
}

@media only screen and (max-width: 575px) {

    .dz-blog.blog-single .dz-post-table,
    .dz-post-table {
        padding: 15px 20px;
    }

    .dz-blog.blog-single .dz-post-table .table-title,
    .dz-post-table .table-title {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .dz-blog.blog-single .dz-post-table ul li,
    .dz-post-table ul li {
        font-size: 15px;
        padding: 4px 0;
    }
}

.widget.widget-post-table {
    padding: 25px;
    position: relative;
    border-radius: 15px;
    background-color: #FDC716;
    border: 2px solid #000;
    box-shadow: #000;
}

.widget.widget-post-table .table-title {
    font-size: 20px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 5px;
    color: #000;
}

.widget.widget-post-table ul {
    padding-left: 0;
    counter-reset: post-table-counter;
}

.widget.widget-post-table ul li {
    list-style: none;
    font-weight: 400;
    font-size: 16px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    flex-wrap: wrap;
}

.widget.widget-post-table ul li ul {
    padding-left: 20px;
    counter-reset: nested-counter;
}

.widget.widget-post-table ul li::before {
    content: none !important;
}

.widget.widget-post-table ul li a {
    counter-increment: post-table-counter;
    box-shadow: none;
    font-style: normal;
    color: inherit;
    font-weight: inherit;
    width: 100%;
}

.widget.widget-post-table ul li a::before {
    content: counter(post-table-counter) ".";
    margin-right: 5px;
}

.widget.widget-post-table ul li ul>li a {
    counter-increment: nested-counter;
}

.widget.widget-post-table ul li ul>li a::before {
    content: counter(post-table-counter) "." counter(nested-counter);
    margin-right: 5px;
}

.widget.widget-post-table .navbar-scroll>li.active>a {
    color: #000;
    font-weight: 500;
}

.widget.widget-post-table .navbar-scroll>li.active ul>li.active>a {
    color: #000;
}


.dz-blog.blog-single .widget.widget-post-table ul li a {
    font-weight: inherit;
    color: inherit;
    font-style: unset;
    box-shadow: none;
}

.dz-post-tutorial-data .post-data {
    scroll-margin-top: 125px;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

.cateloge-data tr {
    border: transparent;
    background-color: transparent;
}

.sidepost-media {
    position: sticky;
    top: 0;
}

.sidepost-media img {
    height: 100vh;
    object-fit: cover;
    width: 100%;
}

.dez-bnr-inr-entry i,
.dez-bnr-inr-entry li {
    color: #fff;
}

.dez-post-media.style-3.work {
    height: 100%;
    border-radius: 10px
}

.dez-bnr-inr-entry .dez-post-meta a {
    color: #fff;
}

.galley-swiper-box img {
    width: 100%;
}

/* .status-media .post-status-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
    width: 100px;
    height: 100px;
    border: 0;
    background-color: rgba(0, 0, 0, 0.4);
}
.modal.status-modal {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
}
.modal.status-modal .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    color: #fff;
    background-repeat: no-repeat;
    top: 10px;
    border: none;
    background-color: transparent;
    background-image: url('data:image/svg+xml,<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M21 1L1 21" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M1 1L21 21" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    z-index: 9;
}
.modal.status-modal .modal-content .status-wrapper .status-swiper .swiper-slide .status-top-box:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    background-image:  linear-gradient(0deg,rgba(255,255,255,0) .3%,rgba(0,0,0,.6) 100%);;
    opacity: 0.8;
    z-index: -1;
}
.modal.status-modal .status-pagination {
    position: absolute;
    top: 0;
    bottom: auto !important;
    left: 50% !important;
    height: auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 9;
    transform: translate(-50%);
    padding: 10px 0;
}
.modal.status-modal .status-pagination .swiper-pagination-bullet {
    height: 5px;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 100%;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.modal.status-modal .status-pagination .swiper-pagination-bullet::after {
    content: "";
    height: 100%;
    width: 0;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
}
.modal.status-modal .status-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    width: 100%;
    transition: 3.5s linear;
}
.modal.status-modal .modal-content {
    border-radius: 30px;
}
.modal.status-modal .modal-content .status-wrapper .status-swiper .swiper-slide {
    height: unset;
}
.modal.status-modal .modal-content .status-wrapper .status-swiper .swiper-slide .status-top-box {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    color: #fff;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 30px 20px 0px 20px;
}
.modal.status-modal .modal-content .status-wrapper .status-swiper .swiper-slide .status-top-box .post-date {
    font-size: 16px;
    color: #fff;
    opacity: 0.5;
}
.modal.status-modal .modal-content .status-wrapper .status-swiper .swiper-slide .status-top-box .title {
    font-size: 24px;
    color: #fff;
    font-family: 'Roboto';
    font-weight: 800;
    margin-bottom: 0;
}
.modal.status-modal .modal-content .status-wrapper .status-swiper .swiper-slide .status-top-box .status-btn .btn.btn-sm {
    white-space: nowrap;
    padding: 6px 10px;
    border-radius: 5px;
    background-color: #fff;
}
.modal.status-modal .modal-content .status-wrapper .status-swiper .swiper-slide .status-top-box .status-btn .btn.btn-sm:hover {
    color: #fff;
}
.modal.status-modal .modal-content .status-wrapper .status-swiper .swiper-slide .status-top-box .status-btn .volume-icon {
    width: 44px;
    height: 44px;
    position: relative;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    float: right;
}
.modal.status-modal .modal-content .status-wrapper .status-swiper .swiper-slide img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}
.modal.status-modal .modal-content .status-wrapper .status-swiper .swiper-slide video {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    object-fit: cover;
    z-index: -1;
} */
.status-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
    width: 80px;
    height: 80px;
    border: 0;
    background-color: rgba(0, 0, 0, 0.4);
    color: #fff;
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
}

.status-btn i {
    transform: translateX(3px);
}

.status-btn:hover {
    background-color: var(--bs-secondary);
}

@media only screen and (max-width: 575px) {
    .status-btn {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

.status-swiper .swiper-slide {
    max-height: calc(100vh - 60px);
    min-height: 750px;
    height: 920px;
    overflow: hidden;
}

@media only screen and (max-width: 575px) {
    .status-swiper .swiper-slide {
        min-height: 650px;
    }
}

.status-card {
    position: relative;
    height: 100%;
}

.status-card img,
.status-card video {
    position: relative;
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.status-card .status-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    display: flex;
    gap: 30px;
    z-index: 1;
}

.status-card .status-info::before {
    content: "";
    background: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.5;
}

@media only screen and (max-width: 575px) {
    .status-card .status-info {
        padding: 20px;
        gap: 12px;
        flex-direction: column;
    }
}

.status-card .status-info .post-date {
    color: #fff;
    opacity: 0.5;
    font-size: 16px;
    font-style: italic;
}

.status-card .status-info .title {
    color: #fff;
    margin-bottom: 0;
}

.status-card .status-info .btn.btn-white {
    white-space: nowrap;
    border: 0;
    color: #fff;
    background-color: #ffb52d;
}

.modal.status-modal {
    --bs-modal-padding: 0;
    align-content: center;
    overflow: hidden;
}

@media only screen and (max-width: 1480px) {
    .modal.status-modal {
        --bs-modal-width: 420px;
    }
}

.modal.status-modal .modal-dialog {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 10px 0;
}

.modal.status-modal.fade .modal-dialog {
    transform: scale(0.95);
}

.modal.status-modal.show .modal-dialog {
    transform: scale(1);
}

.modal.status-modal .modal-content {
    border-radius: 0;
    border: 0;
    background-color: transparent;
}

.modal.status-modal .modal-content .modal-body {
    overflow: hidden;
    border-radius: 30px;
}

.modal.status-modal .status-pagination {
    height: auto;
    width: 100%;
    padding: 10px 0;
    display: flex;
    gap: 4px;
}

.modal.status-modal .status-pagination .swiper-pagination-bullet {
    border-radius: 6px;
    transform: scale(1);
    height: 6px;
    width: 100%;
    margin: 0;
    background-color: rgba(255, 255, 255, 0.3);
    border: 0;
    opacity: 1;
    overflow: hidden;
    position: relative;
}

.modal.status-modal .status-pagination .swiper-pagination-bullet::after {
    content: "";
    height: 100%;
    width: 0;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
}

.modal.status-modal .status-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    width: 100%;
}

.modal.status-modal .status-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active[aria-current="true"]::after {
    width: 100%;
    transition: 3s linear;
}

.modal.status-modal .btn-close {
    position: absolute;
    font-size: 24px;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    color: #fff;
    z-index: 9;
    display: flex;
    align-items: center;
    background-image: url('data:image/svg+xml,<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M21 1L1 21" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M1 1L21 21" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    justify-content: center;
    border: none;
    background-color: transparent;
}

@media only screen and (max-width: 575px) {
    .modal.status-modal .btn-close {
        top: 55px;
        right: 25px;
    }
}

.post-slider-wrapper {
    padding: 15px 20px;
}

.post-slider-wrapper .dz-media {
    border-radius: 18px;
    border: 2px solid #000;
    box-shadow: var(--dz-shadow);
    margin-bottom: 6px;
    margin-right: 6px;
}

@media only screen and (max-width: 575px) {
    .post-slider-wrapper {
        padding: 10px 10px;
    }

    .modal .modal-body {
        padding: 0;
    }
}

.post-video iframe {
    height: 510px;
    width: 100%;
}

/* header  */
.dz-post-audio iframe {
    min-height: 120px;
    height: 120px;

}

.badge {
    padding: 3px 4px;
    background-color: #e70c0c;
    color: white;
    border-radius: 0;
    font-size: 11px;
    min-width: 17px;
    min-height: 13px;
    text-transform: uppercase;
    text-align: center;
}

.dz-post-table ul {
    margin: 0;
}

@media only screen and (max-width: 575px) {
    .widget.widget-post-table {
        padding: 15px 20px;
    }

    .widget.widget-post-table .table-title {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .widget.widget-post-table ul li {
        font-size: 15px;
        padding: 4px 0;
    }

    .sidepost-media img {
        height: 100% !important;
    }

    .modal-dialog {
        margin: 0;
    }

    .modal.status-modal .modal-content .status-wrapper .status-swiper .swiper-slide .status-top-box .title {
        font-size: 17px;
    }

    .modal.status-modal .modal-content .status-wrapper .status-swiper .swiper-slide .status-top-box .status-btn .btn.btn-sm {
        margin-top: 20px;
    }

    .modal.status-modal .btn-close {
        top: 50px;
    }

    .post-video iframe {
        height: 250px;
    }

    .status-media .post-status-btn {
        height: 80px;
        width: 80px;
    }

}

.site-filters .filters li.active a,
.site-filters .filters li:hover a {
    color: #fff;
    background-color: #07576a;
}

/* header */
.section-head.style-1 .h2 {
    font-size: 45px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
}

.section-head.style-1 span {
    font-size: 16px;
    font-weight: 600;
    font-family: poppins;
}

.icon-bx-wraper.bx-style-3 .icon-box i:before {
    font-size: 60px;
}

.icon-bx-wraper.bx-style-3 h6 {
    font-size: 20px;
    color: #000;
    line-height: 1.3;
}

.icon-bx-wraper.bx-style-3 p {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    color: #666666;
    font-family: poppins;
    ;
}

.icon-bx-wraper.bx-style-3 .icon-content a {
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    font-family: poppins;
}

.icon-bx-wraper.bx-style-3 .icon-content .dez-separator2 {
    background: #F67517;
    height: 2px;
    width: 52px;
    margin-top: 9px;
    position: relative;
}

.client-logo-carousel.owl-carousel.owl-btn-center-lr.style-3 .ow-client-logo {
    background-color: transparent;
}

.section-head .style-3 .sub-title {
    font-size: 16px;
}

.section-head.style-3 span {
    font-weight: 600;
    font-size: 16px;
    padding-top: 0;
    margin-bottom: 12px;
    font-family: poppins;

}

.section-head.style-3 .h2 {
    font-size: 38px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0;
}

.section-head.style-3 p {
    font-weight: 400;
    font-size: 16px;
    font-family: poppins !important;
}

.dez-post-media {
    overflow: hidden;
    transition: 0.5s;
}

.dez-post-media.style-3.work:hover img {
    transform: rotate(5deg) scale(1.2);
    transition: 0.4s;
}

.dez-post-media.style-3 .dez-content {
    position: absolute;
    bottom: -3px;
    transform: translate(0%, -50%);
    left: 30px;
    z-index: 99;
}

.dez-post-media.style-4 .dez-content {
    position: absolute;
    bottom: -3px;
    transform: translate(0%, -50%);
    left: 32px;
    z-index: 99;
}

.dez-post-media.style-3 .dez-content a {
    color: #fff;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
}

.img-box.style-3 {
    padding: 30px;
    height: 100%;
    width: 100%;
    border-radius: 10px
}

.dez-post-media.style-3 .dez-separator2 {
    height: 3px;
    width: 77px;
    background: white;
    margin-bottom: 10px;
}

.dez-post-media.style-3.work:after {
    content: '';
    position: absolute;
    top: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 51.95%, rgba(0, 0, 0, 0.92) 88.99%);
    width: 100%;
    height: 100%;
    left: 0;
    opacity: 1;
    border-radius: 10px;
}

.dez-post-media.style-4.work:after {
    content: '';
    position: absolute;
    top: 0;
    background: linear-gradient(180deg, rgba(246, 117, 23, 0) 50.62%, rgba(246, 117, 23, 0.92) 88.68%);
    width: 100%;
    height: 100%;
    left: 0;
    opacity: 1;
    border-radius: 10px;
}

.dez-post-media .style-4 img {
    height: calc(100% - 100px);
}

.img-box .img-content h2 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 12px;
}

.client-logo-carousel.owl-carousel.style-3.owl-loaded.owl-drag .owl-nav {
    display: none;
}

.client-logo-carousel.owl-carousel.style-3.owl-loaded.owl-drag .ow-client-logo {
    background-color: transparent;
}

.img-box .img-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    width: 70%;
    font-family: poppins;
}

.video-btn-3.style-3:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    display: block;
    animation: fadeup2 2.5s ease alternate infinite;
    z-index: -1;
    background-color: rgba(229, 103, 19, 0.4);
}

@keyframes fadeup {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1.4);
    }
}

@keyframes fadeup2 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1.8);
    }
}

.img-box .img-content .site-button.white {
    color: #000;

}

.dez-post-media.style-3 img {
    border-radius: 10px;
    height: 100%;
}

.style-3 .paragraph h1 {
    font-size: 60px;
    line-height: 1.2;
    text-transform: uppercase;
}

.content-inner-3 {
    padding-top: 150px;
    padding-bottom: 150px;
}

/* .dez-post-media.style-4 {
    height: calc(100% - 40px);
} */
.video-btn-3.style-3 {
    height: 70px;
    width: 70px;
    align-items: center;
    display: flex;
    justify-content: center;
    background-color: #F67517;
    border-radius: 50%;
    color: white;
    z-index: 99;
    font-size: 18px;
    position: relative;
}

.video-icon.style-3:after {
    height: 100px;
    width: 100px;
    position: absolute;
    content: '';
    background: rgba(246, 117, 23, 0.4);

    top: 0;
    top: 50%;
    border-radius: 50%;
    transform: translate(-15%, -50%);
    z-index: -1;
}

.contact-box.style-3 {
    padding: 20px;
    position: absolute;
    background: #fff;
    bottom: -190px;
    left: 0px;
    transition: 0.5s;
    transform: scale(0.9);
    border-radius: 10px;
}

.dez-media:hover .contact-box.style-3 {
    bottom: 0px;
}

.contact-box.style-3 h6 {
    color: #000;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
}

.contact-box.style-3 p {
    color: #666;
    margin: 0;
}

.testimonial-8 .testimonial-detail {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    transition: all 0.4s ease-in-out;
}

.testimonial-8 {
    padding: 10px;
    background: #FFFFFF;
    border-radius: 8px;
    position: relative;
    margin-right: 15px;
}

.orangelight {
    background-color: #b8e8f4 !important;
}

.testimonial-8 .testimonial-detail .testimonial-pic {
    float: left;
    margin-right: 15px;
    width: 50px;
    height: 50px;
    margin-top: 8px;
    border: none;
}

.testimonial-8 .testimonial-name {
    font-weight: 700;
    font-size: 18px;
}

.testimonial-position {
    font-weight: 400;
}

.testimonial-8 .testimonial-detail .quote {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
    color: #fff;
}

.testimonial-8 .testimonial-text {
    padding: 15px;
    position: relative;
}

.testimonial-8 .testimonial-text p {
    color: #776E6E;
    font-size: 15px;
    text-align: justify;
    line-height: 1.4;
    font-weight: 400;
}

.testimonial-8 .testimonial-text {
    margin-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

li {
    list-style: none;
}

.blog-post.latest-blog-1.date-style-3.blog {
    background: #FFFFFF;
    box-shadow: 0px 25px 60px 2px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: 0.5s;
}

.blog-post.latest-blog-1.date-style-3 .dez-post-media img {
    border-radius: 10px 10px 0 0;
}

.dez-post-meta.style-3 ul li {
    color: #666666;
    position: relative;
    font-size: 15px;
    margin-right: 30px;
}

.dez-post-meta.style-3 ul li img {
    border-radius: 50%;
    margin-right: 15px;
}

.dez-post-meta.style-3 ul li::after {
    content: "";
    height: 6px;
    width: 6px;
    border-radius: 6px;
    right: -20px;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    z-index: 1;
    background-color: #E56713;
    opacity: 1;
}

.site-footer.style-3 .footer-top {
    background: #F5F5F5;

}

.grid-2 {
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
}

.p-t20 {
    font-size: 16px;
    text-align: justify;
}

.site-footer.style-3 .section-head.style-2 .title {
    color: #000;
    font-weight: 700;
    font-size: 35px;
    line-height: 1.2;
    text-transform: capitalize;
}

.site-footer.style-3 .wrapper-inner p {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    color: #9C9898 !important;
}

.section-head.style-2 {
    margin: 0;
}

.dzSubscribe.style-1 .input-group input {
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 30px 20px;
}

.dzSubscribe.style-1 .input-group a {
    position: absolute;
    top: 11px;
    right: 30px;
    border-radius: 8px !important;
    z-index: 99;
}

.dzSubscribe.style-3 .input-group button {
    position: absolute;
    top: 11px;
    right: 11px;
    border-radius: 8px !important;
    z-index: 99;
}

.site-footer.style-3 .footer-top p {
    color: #666666;
    font-weight: 400;
    font-size: 16px;
    font-family: poppins;
}

.site-footer.style-3 .footer-top .widget h4 {
    color: #111111;
    margin-bottom: 20px;
    font-size: 18px;
    font-family: 'Poppins';
}

.site-footer.style-3 .footer-top .widget ul li a {
    color: #666666;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Poppins';
}

.widget.widget_getintuch.style-3 li {
    padding: 0px;
}

form.dzSubscribe.style-1.style-3 input {
    margin: 0;
}

.site-footer.style-3 .footer-bottom {
    background: #F5F5F5;
    border-top: 2px solid rgba(153, 153, 153, 0.1);
}

.dz-social-icon.style-3 ul {
    display: flex;
    align-items: center;
    justify-content: end;
}

.dz-social-icon.style-3 ul li {
    list-style: none;
    margin: 0 5px;
}

.dz-social-icon.style-3 ul li a {
    color: #666666;
}

.site-footer.style-3 .footer-bottom span {
    color: #666666;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Poppins';
}

.customer-section .swiper-slide {
    height: 810px;
    max-height: 810px;
    overflow: hidden;
}

/* header */
.header-style-2.style-3 .social-line li a {
    color: #fff;
    height: 45px;
    line-height: 45px;
    padding: 0 15px;
    display: inline-block;
    min-width: 45px;
    cursor: pointer;
    border: none;
}

.header-style-2.style-3 .social-line li a span {
    padding-left: 8px;
}

.main-bar.style-3 {
    background-color: #111 !important;
}

.header-style-2.style-3 .top-bar {
    border-bottom: none;
}

.header-nav.style-3 .nav>li>a {
    color: #fff;
    font-family: poppins !important;
    text-transform: none;
    font-weight: 500;
}

.swiper-container.main-slider-2 {
    height: 800px;
}

.banner-content.style-1 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.main-slider2 .swiper-slide::after {
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background: #000;
    opacity: 0.7;
    z-index: -1;

}

.dz-features-wrapper.style-3 {
    overflow: hidden;
    position: relative;
    z-index: 1;
    margin-right: -100px;
}

.dz-features-wrapper.style-3 .swiper-slide {
    display: flex;
    height: auto !important;
}

.dz-features-wrapper.style-3 .dz-features {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    animation: ticker 0s linear infinite 0s normal;
    animation-duration: 0s;
    animation-duration: 32.9528s;
    gap: 15px;
}

.bg-container {
    height: 604px;
    align-content: center;
}

.btn-prev.style-1 {
    box-shadow: 0 0 30px 0 rgb(0 0 0 / 5%);
    bottom: auto;
    width: 60px;
    height: 60px;
    color: #fff;
    font-size: 40px;
    z-index: 1;
    text-align: center;
    line-height: 60px;
    border-radius: 60px;
    margin: 0 10px;
    display: inline-block;
}

.btn-next.style-1 i,
.btn-prev.style-1 i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 60px;
}

.dez-post-media.style-3 img {
    object-fit: cover;
    border-radius: 5px;
    transition: 0.5s;
}

.icon-bx-wraper.bx-style-3:hover svg {
    animation: horizontal-shaking 0.35s infinite;
}

.icon-bx-wraper.bx-style-3:hover {
    background-color: #fff !important;
    box-shadow: 0 0 60px rgba(0 0 0 / 10%);
}

.btn-next.style-1,
.btn-prev.style-1 {
    box-shadow: 0 0 30px 0 rgb(0 0 0 / 5%);
    bottom: auto;
    width: 60px;
    height: 60px;
    color: #fff;
    font-size: 20px;
    z-index: 1;
    text-align: center;
    line-height: 60px;
    border-radius: 60px;
    margin: 0 10px;
    display: inline-block;
}

.banner-content.style-1 .title {
    font-weight: 700;
    font-size: 60px;
    line-height: 1.2;
    margin: 0;
}

.dez-post-media.style-4 {
    height: calc(100% - 40px);
    border-radius: 10px;
}

.swiper-button-prev.btn-prev.style-1.bg-primary:after {
    display: none;
}

.swiper-button-next.btn-next.style-1.bg-primary:after {
    display: none;
}

.theme-typography1 p {
    font-weight: 400;
    font-size: 16px;
}

.mx-height {
    height: 500px;
    min-height: 500px;

    max-height: 500px;
}

.dz-features-wrapper.style-3 {
    height: 100%;
}

/* @media only screen and (max-width: 1920px){
    .dz-features-wrapper.style-3 .swiper-slide{
        max-height: 280px;
    }
} */
@media only screen and (max-width: 1920px) {
    .dz-features-wrapper.style-3 .swiper-slide {
        max-height: 280px;
    }
}

@media only screen and (max-width: 1440px) {
    .dz-features-wrapper.style-3 {
        margin-right: -45px;
    }

    .dz-features-wrapper.style-3 .swiper-slide {
        max-height: 300px;
    }
}

@media only screen and (max-width: 1199px) {
    .header-style-2.style-3 .social-line li a span {
        display: none !important;
    }

    .header-style-3 .header-nav .nav>li>a {
        padding: 32px 5px;
    }

    .is-fixed .header-nav .nav>li>a {
        padding: 30px 7px;
    }

    .section-head.style-3 .h2 {
        font-size: 35px;
    }

    .w-75 {
        width: 100% !important;
    }

    .header-style-2 .social-line li span {
        display: none;
    }

    .dez-post-media.style-4 {
        height: calc(100% - 0px);
    }

    .dez-logo img,
    .logo-header img,
    .logo-footer img {
        max-width: 185px;
        width: auto;
        height: auto;
    }

    .header-style-6 .dez-logo img,
    .logo-header img,
    .logo-footer img {
        max-width: 240px;
    }
}

@media only screen and (max-width: 1024px) {
    .banner-content.style-1 .title {
        font-size: 45px;
    }

    .btn-next.style-1,
    .btn-prev.style-1 {
        width: 45px;
        height: 45px;
    }

    .btn-next.style-1 i,
    .btn-prev.style-1 i {
        line-height: 41px;
        font-size: 30px;
    }

    .section-head.style-1 .h2 {
        font-size: 34px;
    }

    .site-footer.style-3 .section-head.style-2 .title {
        font-size: 30px;
    }

    .dzSubscribe.style-1.style-3 .input-group input {
        margin: 0;
    }

    .is-fixed .header-nav .nav>li>a {
        padding: 30px 7px;
    }

    .style-3 .paragraph h1 {
        font-size: 34px;
    }

    .section-head.style-3 .h2 {
        font-size: 30px;
    }

    .img-box .img-content h2 {
        font-size: 35px;
    }

    .dez-post-media.style-4 {
        height: calc(100% - 0px);
    }

    .p-t20 {
        padding-top: 5px;
        font-size: 14px;
    }

    .w-75 {
        width: 100% !important;
    }

    .bg-container {
        height: 380px;
    }
}

@media only screen and (max-width: 600px) {
    .section-head.style-1 .title {
        font-size: 28px;
    }

    .video-btn-3.style-3 {
        height: 50px;
        width: 50px;
    }

    .video-icon.style-3:after {
        transform: translate(-25%, -50%);
    }

}

@media only screen and (max-width: 991px) {
    .header-nav.style-3 .nav>li>a {
        color: #666;
    }

    .footer-bottom .text-left,
    .footer-bottom .text-center,
    .footer-bottom .text-right {
        display: flex;
        justify-content: center;
        padding: 5px;
    }

    .mx-height {
        overflow: hidden;
    }

    .testimonial-contact .section-head.style-3 {
        margin-top: 10px;
    }

    .swiper-container.main-slider-2 {
        height: 650px;
    }

    .mx-height {
        min-height: 640px;
        height: 640px;
    }




}

@media only screen and (max-width: 768px) {
    .banner-content.style-1 .title {
        font-size: 30px;
    }

    .section-head {
        padding-top: 10px;
    }

    .m-b50 {
        margin-bottom: 10px;
    }

    .dz-features-wrapper.style-3 {
        margin-right: 0px;
    }

    .video-icon.style-3:after {
        transform: translate(-20%, -50%);
    }

    .section-head.style-3 .h2 {
        font-size: 25px;
    }

    .style-3 .paragraph h1 {
        font-size: 25px;
        margin: 0;
    }

    .bg-container {
        height: 280px;
    }

    .video-btn-3.style-3 {
        height: 60px;
        width: 60px;
    }

    .header-style-5 .social-line li span {
        display: none;
    }

    .header-style-4 .social-line li span {
        display: none;
    }

    .header-style-3 .social-line li span {
        display: none;
    }

    .header-style-2 .social-line li span {
        display: none;
    }

    .mx-height {
        min-height: 600px;
        height: 60px;
    }
}

@media only screen and (max-width: 600px) {
    .banner-content.style-1 .title {
        font-size: 25px;
    }

    .dz-box.style-3:last-child {
        display: none;
    }

    .style-3 .paragraph h1 {
        font-size: 24px;
    }

    .section-head.style-3 .h2 {
        font-size: 28px;
    }

    .section-full {
        padding-top: 25px;
    }

    .text-start.section-head.style-3 {
        padding-top: 10px;
    }

    .m-b40 {
        margin-bottom: 20px;
    }

    .is-fixed.header-curve .logo-header img,
    .is-fixed.header-curve .dez-logo img {
        max-width: 185px;
    }

    .dez-logo img,
    .logo-header img,
    .logo-footer img {
        max-width: 185px;
    }

    .dz-features-wrapper.style-3 .swiper-slide {
        display: grid;
        max-height: 100%;
    }
}

@media only screen and (max-width: 360px) {
    .banner-content.style-1 .title {
        font-size: 20px;
    }

    .testimonial-8 {
        margin: 0px !important;
    }

    /* .dz-features-wrapper.style-3 .swiper-slide{
        max-height: 100% !important;
    } */
}

@media only screen and (max-width: 575px) {
    .header-style-2.style-3 .social-line li a {
        min-width: 25px;
        padding: 0 9px;
    }

    .section-head.style-1 .h2 {
        font-size: 24px;
    }

    .section-head.style-3 .h2 {
        font-size: 24px;
    }

    .img-box .img-content h2 {
        font-size: 23px;
    }

    .dez-post-media.style-3 .dez-content {
        bottom: -0px;
    }

    .footer-top {
        padding-top: 0;
    }

    .widget.style-3 ul {
        margin-top: 0 !important;
    }

    .section-full {
        padding-top: 5px;
    }

    .img-box .img-content p {
        width: 100%;
    }

    .style-3 .paragraph h1 {
        font-size: 24px;
    }

    .swiper-container.main-slider-2 {
        height: 550px;
    }

    .dzSubscribe.style-1 .input-group a {
        right: 20px;
    }

    .btn-next.style-1,
    .btn-prev.style-1 {
        width: 35px;
        height: 35px;
    }

    .btn-next.style-1 i,
    .btn-prev.style-1 i {
        line-height: 30px;
        font-size: 22px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .dzSubscribe.style-1 .input-group input {
        margin: 0;
    }

    .dz-features-wrapper.style-3 .swiper-slide {
        display: table;
    }

    .video-icon.style-3:after {
        transform: translate(-33%, -50%);
    }

    .video-btn-3.style-3 {
        height: 55px;
        width: 55px;
        right: 20%;
    }

    .style-3 .paragraph h1 {
        font-size: 20px;
        margin: 0;
    }

    .header-style-3 .social-line li a {
        min-width: 40px;
        padding: 0px;
    }

    .header-style-2 .social-line li a {
        min-width: 35px;
        padding: 0 12px;
    }

    .bg-container {
        height: 100%;
    }

    .dz-features-wrapper.style-3 {
        margin-right: 0px;
    }

    .testimonial-8 {
        margin: 10px 10px;
    }

}

@media only screen and (max-width: 430px) {
    .main-bar.style-3 .extra-nav .extra-cell .site-button {
        display: none;
    }

    .style-3 .paragraph h1 {
        font-size: 18px;
        margin: 0;
    }


}

@keyframes ticker {
    0% {
        -webkit-transform: translatey(0);
        transform: translatey(0);
    }

    100% {
        -webkit-transform: translatey(-100%);
    }
}

@keyframes horizontal-shaking {
    0% {
        transform: translateX(0)
    }

    25% {
        transform: translateX(5px)
    }

    50% {
        transform: translateX(-5px)
    }

    75% {
        transform: translateX(5px)
    }

    100% {
        transform: translateX(0)
    }
}

.split-box {
    position: relative;
    overflow: hidden;
}

.split-box>div {
    opacity: 0;
    -webkit-transition: 0s .8s;
    -o-transition: 0s .8s;
    transition: 0s .8s;
}

.split-box:after,
.split-box:before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.split-box:before {
    background-color: #E56713;
    z-index: 1;
    -webkit-transform: translateX(-101%);
    -ms-transform: translateX(-101%);
    transform: translateX(-101%);
}

.split-box.split-active>div {
    opacity: 1;
}

.split-box.split-active:before {
    -webkit-animation: split-box-animation 1.5s cubic-bezier(0.86, 0, 0.07, 1) forwards;
    animation: split-box-animation 1.5s cubic-bezier(0.86, 0, 0.07, 1) forwards;
}

@-webkit-keyframes split-box-animation {
    0% {
        -webkit-transform: translateX(-101%);
        transform: translateX(-101%);
    }

    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(101%);
        transform: translateX(101%);
    }
}

@keyframes split-box-animation {
    0% {
        -webkit-transform: translateX(-101%);
        transform: translateX(-101%);
    }

    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(101%);
        transform: translateX(101%);
    }
}



/ body {
    margin: 0;
    line-height: 1.6;
    color: #5E626F;
    font-size: 1rem;
    font-family: var(--font-family-base);
    overflow-x: clip;
    background-color: #f7f7f7;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@media only screen and (max-width: 575px) {
    body {
        font-size: 14px;
    }
}

.text-white {
    color: #fff;
}

p {
    font-family: var(--font-family-base);
    margin-top: 0;
}




li {
    list-style: none;
}

a {
    text-decoration: none;
    outline: none;
    color: var(--primary);
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

a:hover {
    text-decoration: none;
    outline: none;
    color: #333;
}




@media only screen and (max-width: 1280px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media only screen and (max-width: 575px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.text-black {
    color: #000;
}




@media (max-width: 991px) {
    .show-focus-outline .nav a>i:focus {
        outline: 2px solid red !important;
    }

    .site-header .extra-nav {
        display: none !important;
    }
}

.show-focus-outline li:focus-within>.mega-menu {
    opacity: 1 !important;
    visibility: visible !important;
    margin-top: 0 !important;
}

.show-focus-outline .sub-menu-down a:focus {
    outline: 2px solid #000 !important;
}

.show-focus-outline .sub-menu-down a:after:focus {
    outline: 2px solid #000 !important;
}

.nav-inline li {
    display: inline-block;
    margin-right: 15px;
    padding: 0.25rem 0 !important;
}

img::selection {
    background: none;
}

.text-underline {
    text-decoration: underline !important;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(223, 223, 223, 0.9);
}

::-webkit-scrollbar-track {
    background-color: rgba(255, 255, 255, 0);
}

* {
    scrollbar-color: rgba(223, 223, 223, 0.9) rgba(255, 255, 255, 0);
    scrollbar-width: thin;
}

@supports (-ms-ime-align: auto) {
    * {
        scrollbar-color: rgba(223, 223, 223, 0.9) rgba(255, 255, 255, 0);
        scrollbar-width: thin;
    }
}

.xmenu-code .code-box {
    min-height: 300px;
    max-height: 300px;
    overflow-y: scroll;
    background-color: #efefef;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.xmenu-code .code-box.h-auto {
    min-height: auto;
    max-height: auto;
}

@media only screen and (max-width: 575px) {
    .xmenu-code {
        padding: 0 15px;
    }
}

.page-height {
    min-height: calc(100vh - 50px);
}

@media only screen and (max-width: 991px) {
    .page-height {
        min-height: 100vh;
    }

    .dz-features-wrapper.style-3 .dz-features {
        animation: none;
    }
}

.rounded {
    border-radius: 12px;
}

.p-a0 {
    padding: 0px;
}

.p-l0 {
    padding-left: 0px;
}

.p-t0 {
    padding-top: 0px;
}

.p-r0 {
    padding-right: 0px;
}

.p-b0 {
    padding-bottom: 0px;
}

.m-a0 {
    margin: 0px;
}

.m-l0 {
    margin-left: 0px;
}

.m-t0 {
    margin-top: 0px;
}

.m-r0 {
    margin-right: 0px;
}

.m-b0 {
    margin-bottom: 0px;
}

.p-a5 {
    padding: 5px;
}

.p-l5 {
    padding-left: 5px;
}

.p-t5 {
    padding-top: 5px;
}

.p-r5 {
    padding-right: 5px;
}

.p-b5 {
    padding-bottom: 5px;
}

.m-a5 {
    margin: 5px;
}

.m-l5 {
    margin-left: 5px;
}

.m-t5 {
    margin-top: 5px;
}

.m-r5 {
    margin-right: 5px;
}

.m-b5 {
    margin-bottom: 5px;
}

.p-a10 {
    padding: 10px;
}

.p-l10 {
    padding-left: 10px;
}

.p-t10 {
    padding-top: 10px;
}

.p-r10 {
    padding-right: 10px;
}

.p-b10 {
    padding-bottom: 10px;
}

.m-a10 {
    margin: 10px;
}

.m-l10 {
    margin-left: 10px;
}

.m-t10 {
    margin-top: 10px;
}

.m-r10 {
    margin-right: 10px;
}

.m-b10 {
    margin-bottom: 10px;
}

.p-a15 {
    padding: 15px;
}

.p-l15 {
    padding-left: 15px;
}

.p-t15 {
    padding-top: 15px;
}

.p-r15 {
    padding-right: 15px;
}

.p-b15 {
    padding-bottom: 15px;
}

.m-a15 {
    margin: 15px;
}

.m-l15 {
    margin-left: 15px;
}

.m-t15 {
    margin-top: 15px;
}

.m-r15 {
    margin-right: 15px;
}

.m-b15 {
    margin-bottom: 15px;
}

.p-a20 {
    padding: 20px;
}

.p-l20 {
    padding-left: 20px;
}

.p-t20 {
    padding-top: 20px;
}

.p-r20 {
    padding-right: 20px;
}

.p-b20 {
    padding-bottom: 20px;
}

.m-a20 {
    margin: 20px;
}

.m-l20 {
    margin-left: 20px;
}

.m-t20 {
    margin-top: 20px;
}

.m-r20 {
    margin-right: 20px;
}

.m-b20 {
    margin-bottom: 20px;
}

.p-a25 {
    padding: 25px;
}

.p-l25 {
    padding-left: 25px;
}

.p-t25 {
    padding-top: 25px;
}

.p-r25 {
    padding-right: 25px;
}

.p-b25 {
    padding-bottom: 25px;
}

.m-a25 {
    margin: 25px;
}

.m-l25 {
    margin-left: 25px;
}

.m-t25 {
    margin-top: 25px;
}

.m-r25 {
    margin-right: 25px;
}

.m-b25 {
    margin-bottom: 25px;
}

.p-a30 {
    padding: 20px;
}

.p-l30 {
    padding-left: 30px;
}

.p-t30 {
    padding-top: 30px;
}

.p-r30 {
    padding-right: 30px;
}

.p-b30 {
    padding-bottom: 30px;
}

.m-a30 {
    margin: 30px;
}

.m-l30 {
    margin-left: 30px;
}

.m-t30 {
    margin-top: 30px;
}

.m-r30 {
    margin-right: 30px;
}

.m-b30 {
    margin-bottom: 30px;
}

.p-a35 {
    padding: 35px;
}

.p-l35 {
    padding-left: 35px;
}

.p-t35 {
    padding-top: 35px;
}

.p-r35 {
    padding-right: 35px;
}

.p-b35 {
    padding-bottom: 35px;
}

.m-a35 {
    margin: 35px;
}

.m-l35 {
    margin-left: 35px;
}

.m-t35 {
    margin-top: 35px;
}

.m-r35 {
    margin-right: 35px;
}

.m-b35 {
    margin-bottom: 35px;
}

.p-a40 {
    padding: 40px;
}

.p-l40 {
    padding-left: 40px;
}

.p-t40 {
    padding-top: 40px;
}

.p-r40 {
    padding-right: 40px;
}

.p-b40 {
    padding-bottom: 40px;
}

.m-a40 {
    margin: 40px;
}

.m-l40 {
    margin-left: 40px;
}

.m-t40 {
    margin-top: 40px;
}

.m-r40 {
    margin-right: 40px;
}

.m-b40 {
    margin-bottom: 40px;
}

.p-a45 {
    padding: 45px;
}

.p-l45 {
    padding-left: 45px;
}

.p-t45 {
    padding-top: 45px;
}

.p-r45 {
    padding-right: 45px;
}

.p-b45 {
    padding-bottom: 45px;
}

.m-a45 {
    margin: 45px;
}

.m-l45 {
    margin-left: 45px;
}

.m-t45 {
    margin-top: 45px;
}

.m-r45 {
    margin-right: 45px;
}

.m-b45 {
    margin-bottom: 45px;
}

.p-a50 {
    padding: 50px;
}

.p-l50 {
    padding-left: 50px;
}

.p-t50 {
    padding-top: 50px;
}

.p-r50 {
    padding-right: 50px;
}

.p-b50 {
    padding-bottom: 50px;
}

.m-a50 {
    margin: 50px;
}

.m-l50 {
    margin-left: 50px;
}

.m-t50 {
    margin-top: 50px;
}

.m-r50 {
    margin-right: 50px;
}



@media only screen and (min-width: 991px) {
    .menu-wraper {
        max-width: 1320px;
        padding-left: 15px;
        padding-right: 15px;
        margin-left: auto;
        margin-right: auto;
    }
}

.card-hover:hover {
    background-color: rgba(0, 0, 0, 0.025);
    color: #000000;
}

.card-overlay {
    position: relative;
    overflow: hidden;
}

.card-overlay .overlay-content {
    position: relative;
    z-index: 1;
}

.card-overlay:after {
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background-color: #000;
    opacity: var(--bs-bg-opacity);
}

/* like button */


.menu-swiper .swiper-pagination {
    position: relative;
}

.swiper-button-prev,
.swiper-button-next {
    background-color: rgba(255, 255, 255, 0.3);
    height: 35px;
    width: 35px;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
}

.swiper-button-prev.button-black,
.swiper-button-next.button-black {
    background-color: rgba(0, 0, 0, 0.3);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: #f46700;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    content: none;
}

@media only screen and (min-width: 991px) {
    .header-box {
        padding: 50px 30px 80px;
        position: relative;
    }
}

@media only screen and (max-width: 575px) {
    .header-box {
        padding: 0;
    }
}

.header-box .header-number {
    position: absolute;
    font-size: 50px;
    font-weight: 700;
    left: -90px;
    opacity: 0.25;
}

@media only screen and (max-width: 1480px) {
    .header-box .header-number {
        font-size: 30px;
        left: -50px;
        top: 65px;
    }
}

@media (max-width: 1366px) {
    .header-box .header-number {
        position: static;
    }
}

@media only screen and (max-width: 575px) {
    .header-box .header-number {
        display: none;
    }
}

.z-index-full {
    z-index: 999999;
}

.tabs {
    width: 100%;
}

.tabs .tab-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.tabs .tab-links a {
    display: block;
    padding: 5px 15px;
    background: #efefef;
    color: #000;
    text-decoration: none;
    border-radius: 6px;
    font-size: 15px;
}

@media only screen and (max-width: 575px) {
    .tabs .tab-links a {
        font-size: 14px;
        padding: 6px 12px;
    }
}

.tabs .tab-links .active a {
    background-color: var(--primary);
    color: #fff;
}

.tabs .tab-content .tab {
    display: none;
}

.tabs .tab-content .tab.active {
    display: block;
}

#xMenuPreloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#xMenuPreloader .loader {
    display: block;
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--primary);
    -webkit-animation: spin 2s linear infinite;
    animation: dzSpin 2s linear infinite;
}

#xMenuPreloader .loader::before,
#xMenuPreloader .loader::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
}

#xMenuPreloader .loader::before {
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-top-color: var(--primary);
    -webkit-animation: dzSpin 3s linear infinite;
    animation: dzSpin 3s linear infinite;
}

#xMenuPreloader .loader::after {
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-top-color: var(--primary);
    -webkit-animation: dzSpin 1.5s linear infinite;
    animation: dzSpin 1.5s linear infinite;
}

@-webkit-keyframes dzSpin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes dzSpin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@font-face {
    font-family: "Lufga";
    font-style: normal;
    font-weight: 400;
    src: local("Lufga"), url("../fonts/lufga-cufonfonts/LufgaRegular.woff") format("woff");
}

@font-face {
    font-family: "Lufga";
    font-style: normal;
    font-weight: 100;
    src: local("Lufga"), url("../fonts/lufga-cufonfonts/LufgaThin.woff") format("woff");
}

@font-face {
    font-family: "Lufga";
    font-style: normal;
    font-weight: 200;
    src: local("Lufga"), url("../fonts/lufga-cufonfonts/LufgaExtraLight.woff") format("woff");
}

@font-face {
    font-family: "Lufga";
    font-style: normal;
    font-weight: 300;
    src: local("Lufga"), url("../fonts/lufga-cufonfonts/LufgaLight.woff") format("woff");
}

@font-face {
    font-family: "Lufga";
    font-style: normal;
    font-weight: 500;
    src: local("Lufga"), url("../fonts/lufga-cufonfonts/LufgaMedium.woff") format("woff");
}

@font-face {
    font-family: "Lufga";
    font-style: normal;
    font-weight: 600;
    src: local("Lufga"), url("../fonts/lufga-cufonfonts/LufgaSemiBold.woff") format("woff");
}

@font-face {
    font-family: "Lufga";
    font-style: normal;
    font-weight: 700;
    src: local("Lufga"), url("../fonts/lufga-cufonfonts/LufgaBold.woff") format("woff");
}

@font-face {
    font-family: "Lufga";
    font-style: normal;
    font-weight: 800;
    src: local("Lufga"), url("../fonts/lufga-cufonfonts/LufgaExtraBold.woff") format("woff");
}

@font-face {
    font-family: "Lufga";
    font-style: normal;
    font-weight: 900;
    src: local("Lufga"), url("../fonts/lufga-cufonfonts/LufgaBlack.woff") format("woff");
}

button:hover,
button:active,
button:focus,
.btn:hover,
.btn:active,
.btn:focus {
    outline: 0 !important;
}



.badge {
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 0;
    border: 0;
    font-size: 13px;
    line-height: 1.4;
}

.badge i.fa-circle {
    font-size: 7px;
    transform: translateY(-2px);
    margin-right: 2px;
}

.badge.rounded {
    border-radius: 50px;
}

.badge-drop {
    border-radius: 0;
    position: relative;
}

.badge-drop:after {
    content: "";
    position: absolute;
    bottom: -4px;
}

.drop-start:after {
    left: 0;
    border-right: 4px solid var(--border-color);
    border-bottom: 4px solid transparent;
}

.drop-center:after {
    left: 50%;
    transform: translateX(-50%);
    border-right: 2px solid transparent;
    border-left: 2px solid transparent;
    border-top: 4px solid var(--border-color);
}

.drop-end:after {
    right: 0;
    border-left: 4px solid var(--border-color);
    border-bottom: 4px solid transparent;
}

.bg-primary.badge-drop:after {
    --border-color: #f46700;
}

.bg-success.badge-drop:after {
    --border-color: #31A56D;
}

.bg-info.badge-drop:after {
    --border-color: #0194D9;
}

.bg-danger.badge-drop:after {
    --border-color: #D23636;
}

.bg-warning.badge-drop:after {
    --border-color: #E79600;
}

.bg-secondary.badge-drop:after {
    --border-color: #000;
}

.bg-dark.badge-drop:after {
    --border-color: #444444;
}

.badge-circle {
    padding: 3px 3px;
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    font-size: 10px;
    font-weight: 600;
    line-height: 16px;
}

.badge-blank {
    height: 8px;
    width: 8px;
    border-radius: 50%;
    display: inline-block;
}

.badge-wave {
    animation-duration: 1.2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.wave-primary {
    animation-name: wave-primary;
}

@keyframes wave-primary {
    0% {
        box-shadow: 0 0 0px 0px rgba(244, 103, 0, 0.5);
    }

    100% {
        box-shadow: 0 0 0px 10px rgba(244, 103, 0, 0);
    }
}

.bg-secondary {
    background-color: #000 !important;
    color: #fff;
}

.text-secondary {
    color: #000 !important;
}

.bg-secondary.light {
    background-color: rgba(0, 0, 0, 0.1) !important;
    color: #000;
}

.wave-secondary {
    animation-name: wave-secondary;
}

@keyframes wave-secondary {
    0% {
        box-shadow: 0 0 0px 0px rgba(0, 0, 0, 0.5);
    }

    100% {
        box-shadow: 0 0 0px 10px rgba(0, 0, 0, 0);
    }
}

.new-badge {
    background-color: #FDC716 !important;
    color: #fff;
}

.text-success {
    color: #31A56D !important;
}



.wave-success {
    animation-name: wave-success;
}

@keyframes wave-success {
    0% {
        box-shadow: 0 0 0px 0px rgba(49, 165, 109, 0.5);
    }

    100% {
        box-shadow: 0 0 0px 10px rgba(49, 165, 109, 0);
    }
}

.bg-info {
    background-color: #0194D9 !important;
    color: #fff;
}

.text-info {
    color: #0194D9 !important;
}

.bg-info.light {
    background-color: rgba(1, 148, 217, 0.1) !important;
    color: #0194D9;
}

.wave-info {
    animation-name: wave-info;
}

@keyframes wave-info {
    0% {
        box-shadow: 0 0 0px 0px rgba(1, 148, 217, 0.5);
    }

    100% {
        box-shadow: 0 0 0px 10px rgba(1, 148, 217, 0);
    }
}

.bg-warning {
    background-color: #E79600 !important;
    color: #fff;
}

.text-warning {
    color: #E79600 !important;
}

.bg-warning.light {
    background-color: rgba(231, 150, 0, 0.1) !important;
    color: #E79600;
}

.wave-warning {
    animation-name: wave-warning;
}

@keyframes wave-warning {
    0% {
        box-shadow: 0 0 0px 0px rgba(231, 150, 0, 0.5);
    }

    100% {
        box-shadow: 0 0 0px 10px rgba(231, 150, 0, 0);
    }
}

.bg-danger {
    background-color: #D23636 !important;
    color: #fff;
}

.text-danger {
    color: #D23636 !important;
}

.bg-danger.light {
    background-color: rgba(210, 54, 54, 0.1) !important;
    color: #D23636;
}

.wave-danger {
    animation-name: wave-danger;
}

@keyframes wave-danger {
    0% {
        box-shadow: 0 0 0px 0px rgba(210, 54, 54, 0.5);
    }

    100% {
        box-shadow: 0 0 0px 10px rgba(210, 54, 54, 0);
    }
}


.wave-light {
    animation-name: wave-light;
}

@keyframes wave-light {
    0% {
        box-shadow: 0 0 0px 0px rgba(255, 250, 243, 0.5);
    }

    100% {
        box-shadow: 0 0 0px 10px rgba(255, 250, 243, 0);
    }
}

.bg-dark {
    background-color: #444444 !important;
    color: #fff;
}

.text-dark {
    color: #444444 !important;
}

.bg-dark.light {
    background-color: rgba(68, 68, 68, 0.1) !important;
    color: #444444;
}

.wave-dark {
    animation-name: wave-dark;
}

@keyframes wave-dark {
    0% {
        box-shadow: 0 0 0px 0px rgba(68, 68, 68, 0.5);
    }

    100% {
        box-shadow: 0 0 0px 10px rgba(68, 68, 68, 0);
    }
}

.badge-zoom {
    animation: badgeZoom 0.95s infinite ease-in-out;
}

@keyframes badgeZoom {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.bg-primary-blink {
    -webkit-animation: bgPrimaryBlink 0.5s infinite alternate;
}

@-webkit-keyframes bgPrimaryBlink {
    10% {
        background-color: var(--primary);
    }

    50% {
        background-color: #bc8b6b;
    }

    100% {
        background-color: red;
    }
}

.badge-wrapper {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
}

.hr-line {
    opacity: 0.2;
}

.list-hover1>li>a {
    position: relative;
}

.list-hover1>li>a:after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 1px;
    width: 0;
    background-color: #f46700;
    transition: all 0.15s linear;
    -webkit-transition: all 0.15s linear;
    -moz-transition: all 0.15s linear;
    -o-transition: all 0.15s linear;
}


.list-hover2>li>a {
    position: relative;
}

.list-hover2>li>a>span:not(.badge) {
    position: relative;
}

.list-hover2>li>a:hover>span:after,
.list-hover2>li>a.active>span:after {
    opacity: 1;
    transform: translateY(0);
}

.list-hover3>li>a {
    position: relative;
}

.list-hover3>li>a>span:not(.badge) {
    position: relative;
}

.list-hover3>li>a>span:not(.badge):after {
    content: "";
    position: absolute;
    right: -1px;
    bottom: 0;
    height: 1px;
    width: 0;
    background-color: #f46700;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
}

.list-hover3>li>a:hover>span:after,
.list-hover3>li>a.active>span:after {
    width: 100%;
    transform-origin: right;
    -moz-transform-origin: right;
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    -o-transform-origin: right;
    right: auto;
    left: 0;
}

.list-hover4>li>a {
    position: relative;
    overflow: hidden;
    display: block;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.list-hover4>li>a::after {
    position: absolute;
    top: 100%;
    content: attr(data-hover);
    display: inline;
    -webkit-transition: top 400ms cubic-bezier(0.5, -0.5, 0.25, 1.5);
    transition: top 400ms cubic-bezier(0.5, -0.5, 0.25, 1.5);
}

.list-hover4>li>a>span:not(.badge) {
    display: block;
    -webkit-transition: -webkit-transform 400ms cubic-bezier(0.5, -0.5, 0.25, 1.5);
    transition: -webkit-transform 400ms cubic-bezier(0.5, -0.5, 0.25, 1.5);
    transition: transform 400ms cubic-bezier(0.5, -0.5, 0.25, 1.5);
    transition: transform 400ms cubic-bezier(0.5, -0.5, 0.25, 1.5), -webkit-transform 400ms cubic-bezier(0.5, -0.5, 0.25, 1.5);
}

.list-hover4>li>a:hover::after,
.list-hover4>li>a.active::after {
    top: 5px;
}

.list-hover4>li>a:hover>span,
.list-hover4>li>a.active>span {
    -webkit-transform: translateY(-25px);
    transform: translateY(-25px);
}

.list-hover5>li>a {
    position: relative;
}

.list-hover5>li>a>span:not(.badge) {
    overflow: hidden;
    padding-bottom: 0;
    position: relative;
    display: inline-flex;
}

.list-hover5>li>a>span:not(.badge)::after {
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    background: #f46700;
    margin: auto;
    height: 2px;
    width: 100%;
    position: absolute;
    transform: translate3d(-100%, 0, 0);
}

.list-hover5>li>a:hover>span::after,
.list-hover5>li>a.active>span::after {
    animation: listHover5 0.8s linear forwards;
    animation-timing-function: linear;
    animation-timing-function: cubic-bezier(0.65, 0.05, 0.35, 1);
}

@keyframes listHover5 {
    0% {
        opacity: 1;
        transform: translate3d(-100%, 0, 0);
    }

    55% {
        transform: translate3d(100%, 0, 0);
    }

    56% {
        transform: translate3d(100%, calc(0.5rem + 2px), 0);
    }

    100% {
        transform: translate3d(0, calc(0.5rem + 2px), 0);
        opacity: 1;
    }
}

.logo-header {
    display: flex;
    align-items: center;
    float: left;
    vertical-align: middle;
    padding: 0;
    color: #07576a;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    width: 180px;
    height: 80px;
    position: relative;
    z-index: 9;
}

@media only screen and (max-width: 1199px) {
    .logo-header {
        width: 160px;
    }

    .header-style-3.dark .header-curve .dez-logo:before .header-curve .logo-header:before {
        right: -60px;
    }

    .header-style-6 .header-curve .dez-logo:before,
    .header-curve .logo-header:before {
        right: -50px;
    }

    .dz-features-wrapper.style-3 .swiper-slide {
        max-height: 220px;
        display: block;
    }
}

@media only screen and (max-width: 575px) {
    .logo-header {
        height: 65px;
    }
}

@media only screen and (max-width: 1199px) {
    .logo-header {
        margin-right: 8px !important;
    }
}

@media only screen and (max-width: 991px) {
    .logo-header {
        margin-right: 0 !important;
    }
}

.logo-header a {
    display: table-cell;
    vertical-align: middle;
}

.logo-header img {
    object-fit: contain;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}


.top-bar .xmenu-topbar-left {
    float: left;
}

.top-bar .xmenu-topbar-left li {
    padding-right: 20px;
}

.top-bar .xmenu-topbar-right {
    float: right;
}

.top-bar .xmenu-topbar-right li {
    padding-left: 10px;
}

.top-bar .xmenu-social li a {
    color: inherit;
    font-size: inherit;
}

.top-bar .xmenu-social li a:hover {
    color: var(--primary);
}

.top-bar .xmenu-topbar-inner {
    margin-left: -15px;
    margin-right: -15px;
    display: flex;
    justify-content: space-between;
}

.top-bar .xmenu-topbar-center,
.top-bar .xmenu-topbar-left,
.top-bar .xmenu-topbar-right {
    padding-left: 15px;
    padding-right: 15px;
}

.top-bar .xmenu-topbar-center ul,
.top-bar .xmenu-topbar-left ul,
.top-bar .xmenu-topbar-right ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-block;
}

.top-bar .xmenu-topbar-center ul li,
.top-bar .xmenu-topbar-left ul li,
.top-bar .xmenu-topbar-right ul li {
    display: inline-block;
    font-size: 15px;
}

.top-bar .xmenu-topbar-center ul i,
.top-bar .xmenu-topbar-left ul i,
.top-bar .xmenu-topbar-right ul i {
    margin-right: 5px;
}

.top-bar .xmenu-topbar-center .xmenu-social-icon li,
.top-bar .xmenu-topbar-left .xmenu-social-icon li,
.top-bar .xmenu-topbar-right .xmenu-social-icon li {
    padding-left: 0;
}

.top-bar .xmenu-topbar-right ul {
    margin-left: 15px;
}

.top-bar.bg-primary .xmenu-topbar-center ul a,
.top-bar.bg-primary .xmenu-topbar-left ul a,
.top-bar.bg-primary .xmenu-topbar-right ul a {
    color: inherit;
}

.top-bar.bg-primary .xmenu-topbar-center ul a:hover,
.top-bar.bg-primary .xmenu-topbar-left ul a:hover,
.top-bar.bg-primary .xmenu-topbar-right ul a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.text-logo .site-title {
    font-size: 25px;
    line-height: 1;
    margin-bottom: 5px;
}

.text-logo p {
    font-size: 14px;
    line-height: 1;
    margin: 0;
    color: var(--primary);
}

.site-header {
    position: relative;
    z-index: 999;
}


.site-header .container {
    position: relative;
}


.site-header .extra-nav {
    float: right;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 9;
    height: 80px;
}

.site-header .extra-nav .extra-cell {
    display: flex;
    align-items: center;
}

.site-header .extra-nav .extra-cell>* {
    margin-left: 13px;
    align-items: center;
    flex-direction: inherit;
    margin-right: -10px;
}

@media only screen and (max-width: 991px) {
    .site-header .extra-nav .extra-cell>* {
        margin-left: 15px;
    }

    .dz-features-wrapper.style-3 .swiper-slide {
        display: flex;
        max-height: 260px;
    }

    .dz-features-wrapper.style-3 {
        margin-right: -0;
    }
}

.site-header .extra-nav .extra-cell ul li button,
.site-header .extra-nav .extra-cell ul li a {
    min-width: 40px;
    padding: 0px 15px;
    display: flex;
    align-content: center;
    justify-content: center;
    vertical-align: middle;
    position: relative;
    line-height: 1;
}

@media only screen and (max-width: 1480px) {

    .site-header .extra-nav .extra-cell ul li button,
    .site-header .extra-nav .extra-cell ul li a {
        padding: 0px 10px;
    }
}

.site-header .extra-nav .extra-cell ul li button .badge,
.site-header .extra-nav .extra-cell ul li a .badge {
    position: absolute;
    top: -4px;
    right: 2px;
    font-size: 11px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 18px;
    min-width: 18px;
    font-weight: 700;
}

@media only screen and (max-width: 991px) {
    .site-header .extra-nav {
        height: 80px;
    }
}

@media only screen and (max-width: 1680px) {
    .site-header .extra-nav {
        padding-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .site-header .extra-nav {
        width: 100%;
        background: #fff;
        position: fixed;
        bottom: -80px;
        left: 0;
        padding: 0 20px;
        box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.15);
        height: 50px;
        transition: all 0.5s ease 0.5s;
    }

    .site-header .extra-nav .extra-cell {
        width: 100%;
    }

    .site-header .extra-nav .extra-cell ul {
        width: 100%;
    }
}

@media only screen and (max-width: 575px) {
    .site-header .extra-nav .btn {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.site-header .extra-nav ul li {
    display: inline-block;
}

.adv-media {
    padding-left: 20px;
}

.adv-media img {
    width: 100%;
    border-radius: 20px;
}

@media only screen and (max-width: 991px) {
    .adv-media {
        padding-left: 0;
        margin-top: 10px;
    }
}

.month-deal {
    border: 1px solid #eee;
    padding: 15px;
    display: flex;
    align-items: center;
    margin-top: 25px;
}

@media only screen and (max-width: 991px) {
    .month-deal {
        margin-top: 20px;
        display: block;
    }
}

@media only screen and (max-width: 575px) {
    .month-deal {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .testimonial-8 .testimonial-text {
        margin-top: 0px;
    }

    .testimonial-8 .testimonial-text p {
        font-size: 13px;
    }
}

.month-deal p {
    font-size: 13px;
    color: #5E626F;
}

.month-deal .sale-countdown .countdown {
    display: flex;
    margin: 0;
}

.month-deal .sale-countdown .date {
    margin: 0 5px;
    padding: 0;
    text-align: center;
}

.month-deal .sale-countdown .date .time {
    font-size: 22px;
    background: #eee;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 3px;
    margin-bottom: 4px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    color: var(--title) !important;
    font-weight: 500;
    font-family: var(--font-family-title);
}

.month-deal .sale-countdown .date .work-time {
    font-size: 12px;
    letter-spacing: 0;
    color: var(--title);
    font-weight: 400;
    text-transform: uppercase;
    font-family: var(--font-family-title);
}

@media only screen and (max-width: 991px) {
    .month-deal .sale-countdown .date {
        margin: 0 3px;
    }

    .month-deal .sale-countdown .date .time {
        font-size: 16px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        margin-bottom: 2px;
    }

    .month-deal .sale-countdown .date .work-time {
        font-size: 10px;
    }
}

.xmenu-toggler {
    border: 0 solid #07576a;
    font-size: 16px;
    line-height: 24px;
    margin: 40px 0 39px 15px;
    padding: 0;
    float: right;
    outline: none !important;
}

@media only screen and (max-width: 991px) {
    .xmenu-toggler {
        margin: 22px 0px 12px 18px;
    }

    .header-style-1 .xmenu-toggler {
        margin: 14px 0px 0px 18px;
    }
}

@media only screen and (max-width: 575px) {
    .xmenu-toggler {
        margin: 20px 0px 10px 20px;
    }
}

.navicon {
    width: 45px;
    height: 45px;
    background: #212529;
    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;
    border-radius: var(--radius-sm);
}

.navicon {
    display: none;
}

@media only screen and (max-width: 991px) {
    .navicon {
        display: block;
    }
}

.navicon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    border-radius: 1px;
    opacity: 1;
    background: #fff;
    left: 10px;
    -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: 13px;
    width: 22px;
}

.navicon span:nth-child(2) {
    top: 22px;
    width: 25px;
}

.navicon span:nth-child(3) {
    top: 32px;
    width: 20px;
}

.navicon.open span:nth-child(1) {
    top: 23px;
    -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: 23px;
    width: 23px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.header-nav {
    padding: 0;
}

.header-nav::-webkit-scrollbar {
    display: none !important;
}

@media only screen and (max-width: 991px) {
    .header-nav {
        overflow-y: scroll;
        position: fixed;
        width: 60px;
        height: 100vh !important;
        -webkit-transition: all 0.5s;
        -ms-transition: all 0.5s;
        transition: all 0.5s;
        top: 0;
        background-color: #ffffff;
        margin: 0;
        z-index: 99;
    }
}

@media only screen and (max-width: 991px) {
    .header-nav.show {
        -webkit-transition: all 1s;
        -ms-transition: all 1s;
        transition: all 1s;
        margin: 0;
        width: 280px;
    }
}

.header-nav .logo-header {
    display: none;
}

@media only screen and (max-width: 991px) {
    .header-nav .logo-header {
        padding: 30px 20px;
        float: none;
        height: auto;
        width: 240px;
    }
}

.header-nav.nav-dark .nav>li .mega-menu,
.header-nav.nav-dark .nav>li .sub-menu {
    background-color: var(--secondary);
}

.header-nav.nav-dark .nav>li .mega-menu .menu-title,
.header-nav.nav-dark .nav>li .sub-menu .menu-title {
    color: #fff;
}

.header-nav.nav-dark .nav>li .mega-menu li a,
.header-nav.nav-dark .nav>li .sub-menu li a {
    color: #BABABA;
}

.header-nav.nav-dark .nav>li .mega-menu li a:hover,
.header-nav.nav-dark .nav>li .sub-menu li a:hover {
    color: #fff;
}

.header-nav.nav-dark .nav>li .mega-menu .name a,
.header-nav.nav-dark .nav>li .sub-menu .name a {
    color: #fff;
}

.header-nav.nav-dark .line-left::after {
    background: #fff;
    opacity: 0.1;
}

.header-nav.nav-dark .month-deal {
    border-color: rgba(255, 255, 255, 0.1);
    --title: #fff;
}

.header-nav.nav-dark .month-deal .sale-countdown .date .time {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.header-nav.nav-dark .month-deal .sale-countdown .date .work-time {
    color: rgba(255, 255, 255, 0.7);
}

.header-nav .dz-social-icon {
    text-align: center;
    display: none;
}

.header-nav .dz-social-icon li {
    display: inline-block;
    margin: 0 2px;
}

.header-nav .dz-social-icon a {
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    line-height: 38px;
    text-align: center;
    border-radius: 0;
}

@media only screen and (max-width: 991px) {
    .header-nav .dz-social-icon {
        display: block;
        padding: 20px;
    }
}

.is-fixed .main-bar {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.1);
    background: #ffffff;
    transition: all 0.5s;
}

@media only screen and (max-width: 991px) {

    .mo-left,
    .mo-right {
        overflow-y: scroll;
        position: fixed;
        width: 280px;
        height: 100vh !important;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        top: 0;
        background-color: #fff;
        margin: 0;
        z-index: 99999;
    }

    .mo-left.show,
    .mo-right.show {
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        margin: 0;
        transition-delay: 0.2s;
    }

    .mo-left .logo-header,
    .mo-right .logo-header {
        display: block;
        float: none;
        height: auto !important;
        max-width: 100%;
        padding: 25px 20px;
        width: 100% !important;
    }

    .mo-left .logo-header img,
    .mo-right .logo-header img {
        max-width: unset;
        width: 150px;
        height: auto;
        vertical-align: middle;
    }

    .mo-left li.open a,
    .mo-right li.open a {
        position: relative;
    }

    .mo-left {
        left: -280px;
    }

    .mo-left.show {
        left: -1px;
    }

    .mo-right {
        right: -280px;
    }

    .mo-right.show {
        right: -1px;
    }
}

.main-bar {
    -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
    -khtml-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
    -moz-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
    -ms-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
    -o-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
    transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
}

.is-fixed .main-bar {
    -webkit-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
    -khtml-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
    -moz-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
    -ms-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
    -o-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
    animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
}

@-moz-keyframes headerSlideDown {
    0% {
        margin-top: -150px;
    }

    100% {
        margin-top: 0;
    }
}

@-ms-keyframes headerSlideDown {
    0% {
        margin-top: -150px;
    }

    100% {
        margin-top: 0;
    }
}

@-webkit-keyframes headerSlideDown {
    0% {
        margin-top: -150px;
    }

    100% {
        margin-top: 0;
    }
}

@keyframes headerSlideDown {
    0% {
        margin-top: -150px;
    }

    100% {
        margin-top: 0;
    }
}

/* .quick-search {
  border: 0;
  background-color: transparent;
  cursor: pointer;
  height: 50px;
  width: 50px;
  padding: 0;
  display: flex;
  align-items: center;
  min-width: 50px;
} */

.xmenu-search {
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

.xmenu-search .form-control {
    border-radius: 0;
    height: 55px;
    padding: 15px 20px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    width: 100%;
}

.xmenu-search .form-control:hover,
.xmenu-search .form-control:focus,
.xmenu-search .form-control:active {
    box-shadow: none;
    border-color: #f46700;
}

.xmenu-search .search-group {
    position: relative;
}

.xmenu-search .search-group .search-btn {
    position: absolute !important;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background-color: transparent;
    height: 100%;
    width: 40px;
    display: flex;
    align-items: center;
}

.xmenu-search .search-group .search-btn i {
    font-size: 16px !important;
}

.search-overlay {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.search-overlay form {
    width: 100%;
}

.search-overlay .search-group {
    max-width: 800px;
    width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width: 991px) {
    .search-overlay .search-group {
        max-width: 100%;
        width: 100%;
    }
}

.search-overlay .form-control {
    background-color: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.search-overlay .form-control::placeholder {
    color: #fff;
    opacity: 1;
}

.search-overlay .form-control::-ms-input-placeholder {
    color: #fff;
}

.search-overlay .search-btn {
    color: #fff;
}

.search-overlay .search-remove {
    position: absolute;
    right: 30px;
    top: 30px;
    color: #fff;
    border: 0;
    background-color: transparent;
    font-size: 20px;
    opacity: 0.87;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.search-overlay.show {
    top: 0;
}

.search-top {
    background-color: #fff;
    position: fixed;
    width: 100%;
    min-height: 150px;
    left: 0;
    top: -100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.search-top form {
    width: 100%;
}

.search-top .search-group {
    max-width: 800px;
    width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width: 991px) {
    .search-top .search-group {
        max-width: 100%;
        width: 100%;
    }
}

.search-top .search-remove {
    position: fixed;
    font-size: 0;
    border: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
    left: 0;
    top: 150px;
    z-index: -9;
    opacity: 0;
    display: none;
    -webkit-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
}

.search-top.show {
    top: 0;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.05);
}

.search-top.show .search-remove {
    opacity: 0.6;
    display: block;
}

.search-dropdown {
    position: absolute;
    bottom: -100%;
    right: 0;
    background-color: #fff;
    width: 280px;
}

.offcanvas-search {
    height: 150px !important;
}


@media only screen and (max-width: 991px) {
    .header-nav.xmenu .logo-header {
        margin-right: 0 !important;
    }
}

.header-nav.xmenu>.nav {
    flex-direction: row;
}

.header-nav.xmenu>.nav>li.has-mega-menu {
    position: inherit;
}

@media only screen and (max-width: 991px) {
    .header-nav.xmenu>.nav>li {
        border-bottom: 1px solid #eee;
        width: 100%;
    }

    .e-p-bx li {
        font-size: 11px;
    }
}

.header-nav.xmenu>.nav>li.menu-item-has-children .sub-menu-down>a,
.header-nav.xmenu>.nav>li.sub-menu-down .sub-menu-down>a {
    position: relative;
}

@media only screen and (max-width: 991px) {

    .header-nav.xmenu>.nav>li.menu-item-has-children .sub-menu-down>a:after,
    .header-nav.xmenu>.nav>li.sub-menu-down .sub-menu-down>a:after {
        background-color: var(--secondary);
        opacity: 0.8;
        color: #fff;
        height: 30px;
        line-height: 30px;
        right: 0;
        text-align: center;
        width: 30px;
        z-index: 3;
        float: right;
        font-size: 11px;
        margin-top: -5px;
    }
}

.header-nav.xmenu>.nav>li.menu-item-has-children .sub-menu-down.open>a:after,
.header-nav.xmenu>.nav>li.sub-menu-down .sub-menu-down.open>a:after {
    content: "\f078";
}

@media only screen and (max-width: 991px) {

    .header-nav.xmenu>.nav>li.menu-item-has-children>a:after,
    .header-nav.xmenu>.nav>li.sub-menu-down>a:after {
        display: none;
    }
}

.header-nav.xmenu>.nav>li.menu-item-has-children>a i.tabindex,
.header-nav.xmenu>.nav>li.sub-menu-down>a i.tabindex {
    display: none;
}

@media only screen and (max-width: 991px) {

    .header-nav.xmenu>.nav>li.menu-item-has-children>a i.tabindex,
    .header-nav.xmenu>.nav>li.sub-menu-down>a i.tabindex {
        display: block;
        font-size: 9px;
        margin-left: 5px;
        margin-top: 0;
        vertical-align: middle;
        font-weight: 900;
        font-family: "Font Awesome 5 Free";
    }
}

@media only screen and (max-width: 991px) and (max-width: 991px) {

    .header-nav.xmenu>.nav>li.menu-item-has-children>a i.tabindex,
    .header-nav.xmenu>.nav>li.sub-menu-down>a i.tabindex {
        background-color: var(--secondary);
        color: #fff;
        height: 30px;
        line-height: 30px;
        right: 0;
        text-align: center;
        width: 30px;
        z-index: 3;
        float: right;
        font-size: 11px;
        margin: 0;
    }

    .header-nav.xmenu>.nav>li.menu-item-has-children>a i.tabindex:before,
    .header-nav.xmenu>.nav>li.sub-menu-down>a i.tabindex:before {
        content: "\f054";
    }
}

@media only screen and (max-width: 991px) {

    .header-nav.xmenu>.nav>li.menu-item-has-children.open>a i.tabindex:before,
    .header-nav.xmenu>.nav>li.sub-menu-down.open>a i.tabindex:before {
        content: "\f078";
    }
}

@media only screen and (max-width: 1199px) {
    .header-nav.xmenu>.nav>li>a {
        padding-left: 6px;
        padding-right: 6px;
    }

    .header-style-3.dark .header-curve .dez-logo:before .header-curve .logo-header:before {
        right: -60px;
    }
}

@media only screen and (max-width: 991px) {
    .header-nav.xmenu>.nav>li>a {
        padding: 8px 0;
        display: block;
        line-height: 30px;
        font-size: 16px;
    }
}

.header-nav.xmenu>.nav>li>a span {
    display: inline-block;
}

@media only screen and (max-width: 991px) {


    .header-nav.xmenu>.nav>li .mega-menu>li>a i.tabindex,
    .header-nav.xmenu>.nav>li .sub-menu>li>a i.tabindex {
        color: #fff !important;
        height: 30px;
        line-height: 30px;
        right: 0;
        text-align: center;
        width: 30px;
        z-index: 3;
        font-size: 14px !important;
        margin: 0 !important;
        background: #eee;
    }
}

.header-nav.xmenu>.nav>li .mega-menu .menu-item-has-children>a:before,
.header-nav.xmenu>.nav>li .sub-menu .menu-item-has-children>a:before {
    content: "\f054";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    float: right;
    font-size: 10px;
    margin-top: 2px;
}

@media only screen and (max-width: 991px) {

    .header-nav.xmenu>.nav>li .mega-menu .menu-item-has-children.open>a:before,
    .header-nav.xmenu>.nav>li .sub-menu .menu-item-has-children.open>a:before {
        content: "\f054";
    }
}

@media only screen and (max-width: 991px) {

    .header-nav.xmenu>.nav>li .mega-menu,
    .header-nav.xmenu>.nav>li .sub-menu {
        display: none;
        position: static;
        visibility: visible;
        width: auto;
        background: transparent;
        box-shadow: none;
        margin: 0;
        border-top: 1px solid #eee;
        padding: 15px 0;
        -webkit-transition: none;
        -ms-transition: none;
        transition: none;
        opacity: 1;
    }

    .header-nav.xmenu>.nav>li .mega-menu>li>a i.tabindex,
    .header-nav.xmenu>.nav>li .sub-menu>li>a i.tabindex {
        display: none;
    }

    .header-nav.xmenu>.nav>li .mega-menu .has-child>a:before,
    .header-nav.xmenu>.nav>li .mega-menu .menu-item-has-children>a:before,
    .header-nav.xmenu>.nav>li .mega-menu>li>a i.tabindex,
    .header-nav.xmenu>.nav>li .sub-menu .has-child>a:before,
    .header-nav.xmenu>.nav>li .sub-menu .menu-item-has-children>a:before,
    .header-nav.xmenu>.nav>li .sub-menu>li>a i.tabindex {
        color: #fff !important;
        font-size: 14px;
        content: "\f054";
        height: 30px;
        line-height: 30px;
        right: 0;
        text-align: center;
        width: 30px;
        font-family: "Font Awesome 5 Free";
        z-index: 3;
        margin: 0 !important;
        background: var(--primary);
        border-radius: var(--border-radius-base);
        font-weight: 900;
        float: right;
    }

    .header-nav.xmenu>.nav>li .mega-menu .has-child.open>a:before .menu-item-has-children.open>a:before,
    .header-nav.xmenu>.nav>li .sub-menu .has-child.open>a:before .menu-item-has-children.open>a:before {
        content: "\f078";
        background: #333;
    }
}

.header-nav.xmenu>.nav>li .mega-menu li,
.header-nav.xmenu>.nav>li .sub-menu li {
    position: relative;
}

.header-nav.xmenu>.nav>li .mega-menu li a.menu-title,
.header-nav.xmenu>.nav>li .sub-menu li a.menu-title {
    color: var(--title);
    display: block;
    padding: 0;
    padding-bottom: 0px;
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 10px;
    font-family: var(--font-family-title);
}

.header-nav.xmenu>.nav>li .sub-menu li .name a {
    font-size: 15px;
    font-weight: 500;
    color: inherit;
    padding: 0;
}

.header-nav.xmenu>.nav>li .mega-menu li>.sub-menu,
.header-nav.xmenu>.nav>li .sub-menu li>.sub-menu {
    left: 220px;
}

@media only screen and (max-width: 991px) {

    .header-nav.xmenu>.nav>li .mega-menu li>.sub-menu,
    .header-nav.xmenu>.nav>li .sub-menu li>.sub-menu {
        display: none;
    }
}

@media only screen and (max-width: 991px) {

    .header-nav.xmenu>.nav>li .mega-menu .mega-menu,
    .header-nav.xmenu>.nav>li .mega-menu .sub-menu,
    .header-nav.xmenu>.nav>li .sub-menu .mega-menu,
    .header-nav.xmenu>.nav>li .sub-menu .sub-menu {
        border-top: 0;
        padding-left: 20px;
    }
}

.header-nav.xmenu>.nav>li .sub-menu {
    width: 220px;
}

@media only screen and (max-width: 991px) {
    .header-nav.xmenu>.nav>li .sub-menu {
        width: 100%;
        padding: 0;
    }
}

.header-nav.xmenu>.nav>li .sub-menu li>a {
    padding: 10px 20px;
}

@media only screen and (max-width: 991px) {
    .header-nav.xmenu>.nav>li .sub-menu li>a {
        padding: 10px 0px 10px 10px;
        border-bottom: 1px solid #eee;
    }
}

.header-nav.xmenu>.nav>li .sub-menu li>a>i.tabindex {
    color: inherit;
    display: block;
    float: right;
    font-size: 18px;
    opacity: 1;
    margin-top: 0px;
}

@media only screen and (max-width: 991px) {
    .header-nav.xmenu>.nav>li .sub-menu li>a>i.tabindex {
        display: none;
    }
}

@media only screen and (min-width: 991px) {
    .header-nav.xmenu>.nav>li .sub-menu.sub-menu-md {
        width: 320px;
    }

    .header-nav.xmenu>.nav>li .sub-menu.sub-menu-lg {
        width: 420px;
    }
}

.header-nav.xmenu>.nav>li .mega-menu {
    right: 0px;
    z-index: 9;
}

.header-nav.xmenu>.nav>li .mega-menu>li {
    display: block;
    padding: 15px 0 15px;
    position: relative;
    vertical-align: top;
    width: 25%;
}

@media only screen and (max-width: 991px) {
    .header-nav.xmenu>.nav>li .mega-menu>li {
        width: 100%;
        padding: 0;
    }
}

.header-nav.xmenu>.nav>li .mega-menu>li>a {
    color: var(--title);
    display: block;
    padding: 0 15px;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 15px;
    font-family: var(--font-family-title);
}

.header-nav.xmenu>.nav>li .mega-menu>li>a>i.tabindex {
    font-size: 14px;
    margin-right: 5px;
    text-align: center;
    width: 15px;
}

@media only screen and (max-width: 991px) {
    .header-nav.xmenu>.nav>li .mega-menu>li>a {
        display: none;
    }
}

.header-nav.xmenu>.nav>li .mega-menu>li:last-child:after {
    display: none;
}

.header-nav.xmenu>.nav>li .mega-menu>li:hover>a {
    background-color: transparent;
}

.header-nav.xmenu>.nav>li .mega-menu>li li i.tabindex {
    font-size: 14px;
    margin-right: 5px;
    text-align: center;
    width: 15px;
}

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {
    .header-nav.xmenu>.nav>li .mega-menu {
        display: none;
        padding: 10px 0;
    }
}

.bg-primary,
.pagination-bx .pagination .active a,
.site-filters .site-button.active {
    color: #fff;
}

@media only screen and (max-width: 991px) {

    .header-nav.xmenu>.nav>li.active>.mega-menu,
    .header-nav.xmenu>.nav>li.active>.sub-menu,
    .header-nav.xmenu>.nav>li:hover>.mega-menu,
    .header-nav.xmenu>.nav>li:hover>.sub-menu {
        -webkit-transition: none;
        -ms-transition: none;
        transition: none;
    }
}

.header-nav.xmenu>.nav>li.active>.mega-menu li.active>.sub-menu,
.header-nav.xmenu>.nav>li.active>.mega-menu li:hover>.sub-menu,
.header-nav.xmenu>.nav>li.active>.sub-menu li.active>.sub-menu,
.header-nav.xmenu>.nav>li.active>.sub-menu li:hover>.sub-menu,
.header-nav.xmenu>.nav>li:hover>.mega-menu li.active>.sub-menu,
.header-nav.xmenu>.nav>li:hover>.mega-menu li:hover>.sub-menu,
.header-nav.xmenu>.nav>li:hover>.sub-menu li.active>.sub-menu,
.header-nav.xmenu>.nav>li:hover>.sub-menu li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    top: -1px;
    pointer-events: unset;
}

.header-nav.xmenu>.nav>li.open .mega-menu,
.header-nav.xmenu>.nav>li.open .sub-menu {
    display: block;
    opacity: 1;
    -webkit-transition: none;
    -ms-transition: none;
    transition: none;
}

.header-nav.xmenu>.nav>li.open .open>.mega-menu,
.header-nav.xmenu>.nav>li.open .open>.sub-menu {
    display: block;
    opacity: 1;
    -webkit-transition: none;
    -ms-transition: none;
    transition: none;
}

@media only screen and (max-width: 991px) {
    .header-nav.xmenu>.nav {
        float: none;
        padding: 0 20px;
    }
}

.xmenu.xmenu-start {
    justify-content: start;
}

.xmenu.xmenu-center {
    justify-content: center;
}

.xmenu.xmenu-end {
    justify-content: flex-end;
}

.xmenu .badge {
    font-size: 10px;
    padding: 2px 5px;
}

.xmenu .mega-menu {
    max-width: 1200px;
    width: 1200px;
    left: 13px !important;
    height: auto;
    overflow-y: auto;
    max-height: calc(100vh - 80px);
}

@media only screen and (min-width: 1191px) and (max-width: 1280px) {
    .xmenu .mega-menu {
        max-width: 1080px;
        width: 1080px;
    }
}

@media only screen and (max-width: 1191px) {
    .xmenu .mega-menu {
        left: 0 !important;
        max-width: 100%;
    }
}

@media only screen and (max-width: 991px) {
    .xmenu .mega-menu {
        max-height: unset;
        overflow-y: unset;
    }
}

.xmenu .mega-menu ul {
    margin-bottom: 15px;
}

@media only screen and (max-width: 991px) {
    .xmenu .mega-menu ul {
        margin-bottom: 0;
    }
}

.xmenu .mega-menu>ul {
    margin: 0 -15px;
    flex-wrap: wrap;
}

@media only screen and (min-width: 991px) {
    .xmenu .mega-menu>ul {
        display: flex;
    }
}

.xmenu .mega-menu>ul>li {
    padding: 10px 15px;
    flex: 1 0 0%;
    border-right: 1px solid #ccc6;
    min-width: 180px;
}

.xmenu .mega-menu>ul>li:last-child {
    border-right: none;
}

.xmenu .mega-menu .line-left {
    position: relative;
}

.xmenu .mega-menu .line-left:after {
    content: "";
    position: absolute;
    height: calc(100% + 70px);
    left: 0;
    top: -50px;
    background: #eee;
    width: 1px;
}

@media only screen and (max-width: 991px) {
    .xmenu .mega-menu .line-left:after {
        content: none;
    }
}

.xmenu .mega-menu.shop-menu {
    max-width: 1140px;
}

@media only screen and (max-width: 1199px) {
    .xmenu .mega-menu.shop-menu {
        max-width: 100%;
    }
}

@media only screen and (min-width: 991px) {
    .xmenu .mega-menu .portfolio-nav-link {
        display: flex;
        flex-wrap: wrap;
    }

    .xmenu .mega-menu .portfolio-nav-link>li {
        width: 20%;
        padding: 0 15px;
    }

    .xmenu .mega-menu .portfolio-nav-link a {
        padding: 0;
        padding: 0 !important;
        text-align: center;
        margin-bottom: 20px;
    }

    .xmenu .mega-menu .portfolio-nav-link a img {
        width: 150px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 10px;
        max-width: 100%;
        display: block;
    }
}

@media only screen and (max-width: 991px) {
    .xmenu .mega-menu .portfolio-nav-link a img {
        display: none;
    }
}

.xmenu .menu-close {
    position: absolute;
    right: 20px;
    top: 25px;
    background-color: #000;
    width: 25px;
    height: 25px;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: #fff;
    display: none;
}

@media only screen and (max-width: 991px) {
    .xmenu .menu-close {
        display: flex;
        z-index: 999;
    }
}

.menu-close {
    position: fixed;
    top: 0;
    background-color: #000;
    width: 0;
    height: 100%;
    opacity: 0.5;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    z-index: 999;
}

.menu-close.fade-left {
    left: 0;
}

.menu-close.fade-right {
    right: 0;
}

.menu-close.fade-overlay {
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
}

.xmenu-toggler.open~.menu-close.fade-left,
.xmenu-toggler.open~.menu-close.fade-right {
    width: 100%;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.xmenu-toggler.open~.menu-close.fade-overlay {
    opacity: 0.5;
    visibility: visible;
}

.xmenu-end.header-nav .nav>li>.mega-menu {
    right: 80px;
    left: auto !important;
}

@media only screen and (max-width: 1199px) {
    .xmenu-end.header-nav .nav>li>.mega-menu {
        right: 0;
    }
}

.justify-content-end.header-nav .nav>li>.mega-menu {
    right: 80px;
    left: auto !important;
}

@media only screen and (max-width: 1199px) {
    .justify-content-end.header-nav .nav>li>.mega-menu {
        right: 0;
    }
}

body.fixed {
    overflow: hidden;
}

.navbar-nav.nav>li>a .badge:not(.badge-drop) {
    transform: translateY(-2px);
}

@media only screen and (min-width: 991px) {
    .navbar-nav.nav>li>a .badge-drop {
        position: absolute;
        top: 9px;
    }

    .navbar-nav.nav>li>a .drop-start {
        left: 15px;
    }

    .navbar-nav.nav>li>a .drop-center {
        left: 50%;
        transform: translateX(-50%);
    }

    .navbar-nav.nav>li>a .drop-end {
        right: 35px;
    }
}

@media only screen and (max-width: 991px) {
    .navbar-nav.nav>li>a .badge {
        transform: translateY(-2px);
    }
}

.header-nav.xmenu .nav>li.menu-left {
    position: relative;
}

.header-nav.xmenu .nav>li.menu-left>.sub-menu {
    left: 0 !important;
}

.header-nav.xmenu .nav>li.menu-right {
    position: relative;
}

.header-nav.xmenu .nav>li.menu-right>.sub-menu {
    right: 0;
    left: auto !important;
}

.header-nav.xmenu .nav>li.menu-right>.sub-menu .sub-menu {
    left: -220px;
}

.header-nav.xmenu .nav>li.menu-center {
    position: relative;
}

.header-nav.xmenu .nav>li.menu-center>.sub-menu {
    left: 50% !important;
    transform: translateX(-50%);
}

@media only screen and (min-width: 1191px) {
    .header-nav.xmenu .nav>li.has-mega-menu.full-width .mega-menu {
        width: calc(100% - 160px);
        max-width: calc(100% - 160px);
    }
}

@media only screen and (min-width: 991px) {
    .header-nav.xmenu .nav>li.has-mega-menu.wide-width .mega-menu {
        width: 100%;
        max-width: 100%;
        left: 0 !important;
        padding-left: 80px;
        padding-right: 80px;
        left: 50% !important;
        transform: translate(-50%);
        width: 100vw;
        max-width: 100vw;
    }
}

@media only screen and (min-width: 1300px) {
    .container .header-nav.xmenu .nav>li.has-mega-menu.wide-width .mega-menu {
        padding-left: calc((100vw - 1320px) / 2 + 15px);
        padding-right: calc((100vw - 1320px) / 2 + 15px);
    }
}

@media only screen and (max-width: 1280px) {
    .header-nav.xmenu .nav>li.has-mega-menu.wide-width .mega-menu {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media only screen and (max-width: 991px) {
    .header-nav.xmenu .nav>li.has-mega-menu.wide-width .mega-menu {
        padding-left: 0;
        padding-right: 0;
    }
}

.header-nav.xmenu .nav>li.has-mega-menu.auto-width .mega-menu {
    width: fit-content;
    max-width: fit-content;
}

@media only screen and (min-width: 1191px) {
    .header-nav.xmenu .nav>li.has-mega-menu.auto-width .mega-menu>ul>li {
        width: 270px;
    }
}

.header-nav.xmenu .nav>li.has-mega-menu.menu-left {
    position: relative;
}

.header-nav.xmenu .nav>li.has-mega-menu.menu-left .mega-menu {
    left: 0 !important;
}

@media only screen and (max-width: 991px) {
    .header-nav.xmenu .nav>li.has-mega-menu .post-menu {
        width: 100%;
        flex: 0 0 100%;
    }
}

@media only screen and (min-width: 991px) and (max-width: 1190px) {

    .header-nav.xmenu .nav>li.has-mega-menu.menu-left.auto-width .mega-menu>ul>li,
    .header-nav.xmenu .nav>li.has-mega-menu.menu-center.auto-width .mega-menu>ul>li,
    .header-nav.xmenu .nav>li.has-mega-menu.menu-right.auto-width .mega-menu>ul>li {
        width: 180px;
    }
}

.header-nav.xmenu .nav>li.has-mega-menu.menu-left .mega-menu,
.header-nav.xmenu .nav>li.has-mega-menu.menu-center .mega-menu,
.header-nav.xmenu .nav>li.has-mega-menu.menu-right .mega-menu {
    width: max-content;
    max-width: max-content;
}

@media only screen and (max-width: 991px) {

    .header-nav.xmenu .nav>li.has-mega-menu.menu-left .mega-menu,
    .header-nav.xmenu .nav>li.has-mega-menu.menu-center .mega-menu,
    .header-nav.xmenu .nav>li.has-mega-menu.menu-right .mega-menu {
        width: 100%;
        max-width: 100%;
    }
}

.header-nav.xmenu .nav>li.has-mega-menu.menu-right {
    position: relative;
}

.header-nav.xmenu .nav>li.has-mega-menu.menu-right .mega-menu {
    right: 0;
    left: auto !important;
}

.header-nav.xmenu .nav>li.has-mega-menu.menu-center {
    position: relative;
}

@media only screen and (min-width: 991px) {
    .header-nav.xmenu .nav>li.has-mega-menu.menu-center .mega-menu {
        left: 50% !important;
        transform: translateX(-50%);
    }
}

.header-nav.xmenu .nav>li.has-mega-menu .menu-title {
    color: #555;
    display: block;
    padding: 0;
    padding-bottom: 0px;
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 10px;
}

@media only screen and (max-width: 991px) {
    .header-nav.xmenu .nav>li.has-mega-menu .menu-title {
        font-size: 14px;
        color: #566593;
        padding: 0 !important;
        font-weight: 400;
        text-align: left !important;
        display: none;
    }
}

.new-page {
    padding: 2px 5px;
    font-size: 10px;
    background: red;
    color: #fff;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 2px;
}

.header-nav.xmenu .nav>li.has-mega-menu .demo-menu a img {
    width: 100%;
    transition: all 0.4s;
}

.header-nav.xmenu .nav>li.has-mega-menu .demo-menu a span {
    display: block;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
}

@media only screen and (max-width: 991px) {
    .header-nav.xmenu .nav>li.has-mega-menu .demo-menu a img {
        display: none;
    }
}

.header-nav.xmenu .nav>li.has-mega-menu .demo-menu a:hover img {
    transform: translateY(-5px);
}

@media only screen and (min-width: 991px) {
    .header-nav.xmenu .nav>li.has-mega-menu .menu-media-left>ul {
        flex-wrap: wrap;
        margin: 0 -15px;
    }

    .header-nav.xmenu .nav>li.has-mega-menu .menu-media-left .side-left {
        width: 80%;
        flex: 0 0 80%;
        padding-left: 0;
        padding-right: 20px;
    }
}

@media only screen and (min-width: 991px) and (max-width: 991px) {
    .header-nav.xmenu .nav>li.has-mega-menu .menu-media-left .side-left {
        width: 100%;
        flex: 0 0 100%;
        padding: 0 5px;
    }
}

@media only screen and (min-width: 991px) {
    .header-nav.xmenu .nav>li.has-mega-menu .menu-media-left .side-left>ul {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 0;
    }

    .header-nav.xmenu .nav>li.has-mega-menu .menu-media-left .side-left>ul>li {
        width: 20%;
        text-align: center;
        padding: 0 10px;
    }

    .header-nav.xmenu .nav>li.has-mega-menu .menu-media-left .side-left>ul>li img {
        margin-bottom: 5px;
    }

    .header-nav.xmenu .nav>li.has-mega-menu .menu-media-left .side-left>ul>li span {
        margin-bottom: 5px;
        display: block;
    }
}

@media only screen and (min-width: 991px) and (max-width: 767px) {
    .header-nav.xmenu .nav>li.has-mega-menu .menu-media-left .side-left>ul>li {
        width: 25%;
        flex: 0 0 25%;
    }
}

@media only screen and (min-width: 991px) and (max-width: 575px) {
    .header-nav.xmenu .nav>li.has-mega-menu .menu-media-left .side-left>ul>li {
        width: 50%;
        flex: 0 0 50%;
    }
}

@media only screen and (min-width: 991px) {
    .header-nav.xmenu .nav>li.has-mega-menu .menu-media-left .side-left>ul .month-deal {
        width: 100%;
    }

    .header-nav.xmenu .nav>li.has-mega-menu .menu-media-left .side-right {
        width: 20%;
        flex: 0 0 20%;
        padding-left: 30px;
    }
}

@media only screen and (min-width: 991px) and (max-width: 991px) {
    .header-nav.xmenu .nav>li.has-mega-menu .menu-media-left .side-right {
        padding-left: 15px;
        width: 100%;
        flex: 0 0 100%;
    }
}

@media only screen and (min-width: 991px) {
    .header-nav.xmenu .nav>li.has-mega-menu .menu-media-right>ul {
        flex-wrap: wrap;
    }

    .header-nav.xmenu .nav>li.has-mega-menu .menu-media-right .side-left {
        width: 66%;
        flex: 0 0 66%;
    }
}

@media only screen and (min-width: 991px) and (max-width: 767px) {
    .header-nav.xmenu .nav>li.has-mega-menu .menu-media-right .side-left {
        width: 100%;
        flex: 0 0 100%;
    }
}

@media only screen and (min-width: 991px) {
    .header-nav.xmenu .nav>li.has-mega-menu .menu-media-right .side-left>ul {
        display: flex;
        flex-wrap: wrap;
    }

    .header-nav.xmenu .nav>li.has-mega-menu .menu-media-right .side-left>ul>li {
        width: 33.33%;
    }
}

@media only screen and (min-width: 991px) and (max-width: 575px) {
    .header-nav.xmenu .nav>li.has-mega-menu .menu-media-right .side-left>ul>li {
        width: 50%;
        flex: 0 0 50%;
    }
}

@media only screen and (min-width: 991px) {
    .header-nav.xmenu .nav>li.has-mega-menu .menu-media-right .side-left>ul .month-deal {
        width: 100%;
        flex: 0 0 100%;
    }

    .header-nav.xmenu .nav>li.has-mega-menu .menu-media-right .side-right {
        width: 34%;
        flex: 0 0 34%;
    }
}

@media only screen and (min-width: 991px) and (max-width: 767px) {
    .header-nav.xmenu .nav>li.has-mega-menu .menu-media-right .side-right {
        display: none;
    }
}

@keyframes animatedgradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes toTopFromBottom {
    49% {
        transform: translateX(100%);
    }

    50% {
        opacity: 0;
        transform: translateX(-100%);
    }

    51% {
        opacity: 1;
    }
}

.widget_post ul li {
    display: flex;
    align-items: center;
    padding-bottom: 16px;
}

.widget_post ul li:last-child {
    padding-bottom: 0;
}

.widget_post ul .dz-media {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 0;
    margin-right: 15px;
}

.widget_post ul .dz-media img {
    border-radius: 10px;
}

.widget_post ul .dz-content .name {
    margin-bottom: 0;
    font-weight: 600;
}

.widget_post ul .dz-content .time {
    font-size: 13px;
    font-weight: 400;
}

.header-nav.xmenu>.nav>li.menu-item-has-children>a i.badge-icon,
.header-nav.xmenu>.nav>li.sub-menu-down>a i.badge-icon {
    display: inline-block !important;
}

.show-focus-outline li:focus-within>.mega-menu,
.show-focus-outline li:focus-within>.sub-menu {
    opacity: 1 !important;
    visibility: visible !important;
    margin-top: 0 !important;
}

.show-focus-outline .sub-menu-down a:focus {
    outline: 2px solid #000 !important;
}

.show-focus-outline .sub-menu-down a:after:focus {
    outline: 2px solid #000 !important;
}


@media (min-width: 1200px) {
    .container {
        max-width: 1200px !important;
    }
}

.header-nav.xmenu .nav>li.has-mega-menu li>ul a {
    color: #5E626F;
    display: block;
    font-size: 12px;
    padding: 5px 0;
    line-height: 22px;
    font-weight: 400;
    text-transform: uppercase;
}

.logo-header-xmenu {
    display: flex;
    align-items: center;
    float: left;
    vertical-align: middle;
    padding: 0;
    color: #07576a;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    width: 180px;
    height: 80px;
    position: relative;
    z-index: 9;
}

@media only screen and (max-width: 1199px) {
    .logo-header-xmenu {
        width: 135px;
    }
}

@media only screen and (max-width: 575px) {
    .logo-header-xmenu {
        height: 65px;
    }

}

@media only screen and (max-width: 1199px) {
    .logo-header-xmenu {
        margin-right: 8px !important;
    }
}

@media only screen and (max-width: 991px) {
    .logo-header-xmenu {
        margin-right: 0 !important;
    }
}

.logo-header-xmenu a {
    display: table-cell;
    vertical-align: middle;
}

.logo-header-xmenu img {
    object-fit: contain;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

@media only screen and (max-width: 991px) {

    .mo-left .logo-header-xmenu,
    .mo-right .logo-header-xmenu {
        display: block;
        float: none;
        height: auto !important;
        max-width: 100%;
        padding: 25px 20px;
        width: 100% !important;
    }

    .header-nav.xmenu>.nav {
        float: none;
        padding: 0 20px !important;
    }

    .header-nav.xmenu .nav>li.has-mega-menu.auto-width .mega-menu {
        width: 100%;
        max-width: 100%;
    }

}

.dzSubscribeMsg {
    position: fixed;
    bottom: 40px;
    right: 30px;
    z-index: 999999;
}

.dz-alert.alert-danger {
    color: #D23636;
    border-color: #D23636;
}

.dz-alert.alert-success {
    color: #31A56D;
    border-color: #31A56D;
}

.dz-alert.alert-warning {
    color: #E79600;
    border-color: #E79600;
}

.dz-alert.alert-info {
    color: #0194D9;
    border-color: #0194D9;
}

.site-footer .footer-bottom a {
    margin: 0 5px;
}

/* like button */
.heart {
    width: 60px;
    height: 60px;
    display: inline-block;
    background: url(../images/like.png) no-repeat;
    cursor: pointer;
    margin: -25px -18px;
}

.heart-blast {
    background-position: -1680px 0;
    transition: background 1s steps(28);
}

.header-style-1 .top-bar .fa-brands {
    border: 1px solid rgba(255, 255, 255, .05);
    font-size: 15px;
    height: 35px;
    padding: 10px;
    text-align: center;
    vertical-align: middle;
    width: 35px;
    color: #ababab;
}

.jellysoft {
    font-family: 'Satisfy', cursive !important;
    font-size: 18px;
    font-weight: bold;
    color: #ffbf00 !important;
}

.jellysoft:hover {
    font-family: 'Satisfy', cursive;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff !important;
}

#Phonei img,
#Whatsapp img {
    width: 100%;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px 2px rgba(193, 53, 132, 0.7);
    }

    50% {
        box-shadow: 0 0 20px 10px rgba(193, 53, 132, 1);
    }

    100% {
        box-shadow: 0 0 5px 2px rgba(193, 53, 132, 0.7);
    }
}

#Phonei {
    position: fixed;
    bottom: 30%;
    right: 1%;
    width: 60px;
    z-index: 999;
    border: 2px solid #e60808;
    border-radius: 50px;
    height: 60px;
    background-color: #e60808;
    padding: 7px;
    line-height: 40px;
    text-align: center;
    animation: glow 2s infinite;
}

@keyframes glowWhatsapp {
    0% {
        box-shadow: 0 0 5px 2px rgba(37, 211, 102, 0.7);
    }

    50% {
        box-shadow: 0 0 20px 10px rgba(37, 211, 102, 1);
    }

    100% {
        box-shadow: 0 0 5px 2px rgba(37, 211, 102, 0.7);
    }
}

#Whatsapp {
    position: fixed;
    bottom: 20%;
    right: 1%;
    width: 60px;
    z-index: 999;
    border: 2px solid #18970e;
    border-radius: 50px;
    height: 60px;
    background-color: #fff;
    padding: 7px;
    line-height: 40px;
    text-align: center;
    animation: glowWhatsapp 2s infinite;
}

.jellysoft-section .link-btn a {
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    background: #72a01d;
    padding: 13px 19px;
    border-radius: 25px;
    font-weight: 600;
    border: 1px solid #058837;
    transition: all 500ms ease;
}