/*-----------------------------------------------------------------------------------

	Theme Name: Astred
	Theme URI: http://themeforest.net/user/zytheme
	Description: Astred is a pixel perfect creative multi purpose html5 tempalte  based on designed with great attention to details, flexibility and performance. It is ultra professional, smooth and sleek, with a clean modern layout.
	Author: zytheme
	Author URI: http://themeforest.net/user/zytheme
	Version: 1.0

-----------------------------------------------------------------------------------*/


/*!
// Contents
// ------------------------------------------------>

	1.  Global Styles
	2.  Typography
	3.	Color
	4.	Align
	5.	Grid
	6.	Blockquotes
	7.	Background
	8.	Breadcrumbs
	9.	Buttons
	10. Forms
	11. Icons
	12. List
	13. Media
	14. Tabs
	15. Accordions
	16. Page Title
	17. Pagination
	18. Alerts
	19. Backtop
	20. Range
	21. Misc
	22. Modals
	23. Header
	24. Menu
	25. Module
	26. Topbar
	27. Page Title
	28. Carousel
	29. Heading
	30. Hero
	31. Blog
	32. Shop
	33. Work
	34. Sidebar
	35. Features
	36. Pricing
	37. team
	38. Contact
	39. Faq
	40. Clients
	41. Testimonial
	42. Video
	43. Counters
	44. Services
	45. Action
	46. 404
	47. Maintenance
	48. Soon
	49. Landing
	50. Footer

/*
WARNING! DO NOT EDIT THIS FILE!

To make it easy to update your theme, you should not edit the styles in this file. Instead use 
the custom.css file to add your styles. You can copy a style from this file and paste it in 
custom.css and it will override the style in this file. You have been warned! :)
*/


/*------------------------------------*\
    #CSS VARIBALES
\*------------------------------------*/

:root {
    --global--color-primary: #494949;
    --global--color-primary-light: rgb(209 209 209);
    --global--color-heading: #222222;
    --global--color-secondary: #282828;
    --global--color-body: #656565;
    --global--color-white: #ffffff;
    --global--color-gray: #f9f9f9;
    --global--color-gray-light: #eaeaea;
    --global--font-body: 'Source Sans Pro', sans-serif;
    --global--font-heading: 'Montserrat', sans-serif;
}


/*------------------------------------*\
    #RESET
\*------------------------------------*/

*,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
a,
dl,
dt,
dd,
ol,
ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

*,
:active,
:focus {
    outline: none !important;
}

ul,
ol {
    list-style: none;
}

textarea {
    resize: none;
}

::-moz-selection {
    text-shadow: none;
}

::selection {
    text-shadow: none;
}

::-moz-selection {
    text-shadow: none;
}

::-webkit-selection {
    text-shadow: none;
}

.form-control {
    -webkit-box-shadow: none;
    box-shadow: none;
}

button {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    outline: none;
    padding: 0;
}

textarea {
    resize: none;
}


/*------------------------------------*\
    #GLOBAL STYLES
\*------------------------------------*/

body,
html {
    overflow-x: hidden;
}

body {
    background-color: var(--global--color-white);
    font-family: var(--global--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--global--color-body);
    margin: 0;
}

.wrapper {
    background-color: var(--global--color-white);
}

.wrapper.sidearea-active .sidearea-overlay::before {
    visibility: visible;
    opacity: 1;
    right: 0;
}

::-moz-selection {
    background-color: var(--global--color-primary);
    color: var(--global--color-white);
    text-shadow: none;
}

::selection {
    background-color: var(--global--color-primary);
    color: var(--global--color-white);
    text-shadow: none;
}

a {
    color: var(--global--color-primary);
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    text-decoration: none;
}

a:hover {
    color: var(--global--color-primary-light);
    text-decoration: none;
}

textarea {
    resize: none;
}

.fullscreen {
    height: 100vh !important;
}

section {
    background-color: var(--global--color-white);
    padding: 120px 0;
    overflow: hidden;
}

@media screen and (max-width: 991.98px) {
    section {
        padding: 70px 0;
    }
}

hr {
    background-color: #bbb9b9;
    border-color: var(--global--color-gray-light);
    margin: 0;
}


/* Medium Devices, Desktops */

@media only screen and (max-width: 992px) {
    .fullscreen {
        height: auto !important;
    }
}


/*------------------------------------*\
    #TYPOGRAPHY
\*------------------------------------*/


/* Heading Text */

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--global--color-heading);
    font-family: var(--global--font-heading);
    font-weight: 700;
    margin: 0 0 28px;
    line-height: 1;
}

.h1,
h1 {
    font-size: 52px;
}

.h2,
h2 {
    font-size: 42px;
}

.h3,
h3 {
    font-size: 38px;
}

.h4,
h4 {
    font-size: 28px;
}

.h5,
h5 {
    font-size: 24px;
}

.h6,
h6 {
    font-size: 18px;
}

p {
    font-family: var(--global--font-body);
    color: var(--global--color-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.lead {
    font-size: 16px;
    line-height: 1.8;
}


/* Aligning Text */

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

.text--right {
    text-align: right !important;
}

.text--center {
    text-align: center !important;
}

.text--just {
    text-align: justify !important;
}

.align--top {
    vertical-align: top;
}

.align--bottom {
    vertical-align: bottom;
}

.align--middle {
    vertical-align: middle;
}

.align--baseline {
    vertical-align: baseline;
}


/* Weight Text */

.bold {
    font-weight: bold !important;
}

.regular {
    font-weight: normal !important;
}

.medium {
    font-weight: 500 !important;
}

.italic {
    font-style: normal;
}

.break-word {
    word-wrap: break-word;
}

.no-wrap {
    white-space: nowrap;
}


/* Text Color */

.text-white {
    color: var(--global--color-white) !important;
}

.text-gray {
    color: var(--global--color-gray) !important;
}

.text-black {
    color: var(--global--color-heading);
}

.text-theme {
    color: var(--global--color-primary) !important;
}

.text--capitalize {
    text-transform: capitalize !important;
}

.text--uppercase {
    text-transform: uppercase !important;
}

.font-heading {
    font-family: var(--global--font-heading);
}

.font-heading {
    font-family: var(--global--font-heading);
}

.font-18 {
    font-size: 24px;
}

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

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

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

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


/* Custom, iPhone Retina */

@media only screen and (min-width: 320px) and (max-width: 767px) {
    text-center-xs {
        text-align: center !important;
    }
}


/* Small Devices, Tablets */

@media only screen and (min-width: 768px) and (max-width: 991px) {
    text-center-sm {
        text-align: center !important;
    }
}

.higlighted-style1 {
    background-color: var(--global--color-primary);
    color: var(--global--color-white);
    padding: 5px 0;
}

.higlighted-style2 {
    background-color: var(--global--color-heading);
    color: var(--global--color-white);
    padding: 5px 0;
}

.higlighted-style3 {
    background-color: var(--global--color-gray);
    color: var(--global--color-primary);
    padding: 5px 0;
}


/*------------------------------------*\
    #COLORS
\*------------------------------------*/

.color-heading {
    color: var(--global--color-heading) !important;
}

.color-theme {
    color: var(--global--color-primary) !important;
}

.color-white {
    color: var(--global--color-white) !important;
}

.color-gray {
    color: var(--global--color-gray) !important;
}


/*------------------------------------*\
    #Align
\*------------------------------------*/

address,
blockquote,
dd,
dl,
fieldset,
form,
ol,
p,
pre,
table,
ul {
    margin-bottom: 20px;
}


/* All margin */

.m-0 {
    margin: 0 !important;
}

.m-xs {
    margin: 10px;
}

.m-sm {
    margin: 20px;
}

.m-md {
    margin: 40px;
}

.m-lg {
    margin: 80px;
}


/* top margin */

.mt-0 {
    margin-top: 0;
}

.mt-xs {
    margin-top: 10px;
}

.mt-10 {
    margin-top: 10px !important;
}

.mt-15 {
    margin-top: 15px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

.mt-60 {
    margin-top: 60px;
}

.mt-70 {
    margin-top: 70px !important;
}

.mt-80 {
    margin-top: 80px !important;
}

.mt-90 {
    margin-top: 90px !important;
}

.mt-100 {
    margin-top: 100px !important;
}

.mt-150 {
    margin-top: 150px;
}


/* bottom margin */

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-25 {
    margin-bottom: 25px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-45 {
    margin-bottom: 45px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-55 {
    margin-bottom: 50px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mb-70 {
    margin-bottom: 70px !important;
}

.mb-80 {
    margin-bottom: 80px !important;
}

.mb-90 {
    margin-bottom: 90px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.mb-120 {
    margin-bottom: 120px !important;
}

.mb-150 {
    margin-bottom: 150px !important;
}


/* right margin */

.mr-0 {
    margin-right: 0;
}

.mr-25 {
    margin-right: 25px !important;
}

.mr-30 {
    margin-right: 30px !important;
}

.mr-50 {
    margin-right: 50px;
}

.mr-60 {
    margin-right: 60px;
}

.mr-150 {
    margin-right: 150px;
}


/* left margin */

.ml-0 {
    margin-left: 0;
}

.ml-xs {
    margin-left: 10px;
}

.ml-sm {
    margin-left: 20px;
}

.ml-md {
    margin-left: 40px;
}

.ml-lg {
    margin-left: 80px;
}

.ml-30 {
    margin-left: 30px !important;
}

.ml-50 {
    margin-left: 50px;
}

.ml-60 {
    margin-left: 60px;
}

.ml-150 {
    margin-left: 150px;
}


/* All padding */

.p-0 {
    padding: 0 !important;
}

.p-xs {
    padding: 10px;
}

.p-sm {
    padding: 20px;
}

.p-md {
    padding: 40px;
}

.p-lg {
    padding: 80px;
}


/* top padding */

.pt-0 {
    padding-top: 0 !important;
}

.pt-30 {
    padding-top: 30px !important;
}

.pt-40 {
    padding-top: 40px !important;
}

.pt-50 {
    padding-top: 50px !important;
}

.pt-60 {
    padding-top: 60px !important;
}

.pt-70 {
    padding-top: 70px !important;
}

.pt-80 {
    padding-top: 80px !important;
}

.pt-90 {
    padding-top: 90px !important;
}

.pt-100 {
    padding-top: 100px !important;
}

.pt-130 {
    padding-top: 130px !important;
}

.pt-150 {
    padding-top: 150px !important;
}

.pt-180 {
    padding-top: 180px !important;
}


/* bottom padding */

.pb-0 {
    padding-bottom: 0 !important;
}

.pb-20 {
    padding-bottom: 20px !important;
}

.pb-30 {
    padding-bottom: 30px !important;
}

.pb-40 {
    padding-bottom: 40px !important;
}

.pb-50 {
    padding-bottom: 50px !important;
}

.pb-60 {
    padding-bottom: 60px !important;
}

.pb-70 {
    padding-bottom: 70px !important;
}

.pb-80 {
    padding-bottom: 80px !important;
}

.pb-85 {
    padding-bottom: 85px !important;
}

.pb-90 {
    padding-bottom: 90px !important;
}

.pb-100 {
    padding-bottom: 100px !important;
}

.pb-130 {
    padding-bottom: 130px !important;
}

.pb-150 {
    padding-bottom: 150px !important;
}

.pt-140 {
    padding-top: 140px !important;
}

.mb-188 {
    margin-bottom: 188px !important;
}


/* right padding */

.pr-0 {
    padding-right: 0;
}

.pr-xs {
    padding-right: 10px;
}

.pr-sm {
    padding-right: 20px;
}

.pr-md {
    padding-right: 40px;
}

.pr-lg {
    padding-right: 80px;
}

.pr-15 {
    padding-right: 15px !important;
}

.pr-30 {
    padding-right: 30px !important;
}

.pr-50 {
    padding-right: 50px;
}

@media (max-width: 767px) {
    .pr-50 {
        padding-right: 25px;
    }
}

.pr-60 {
    padding-right: 60px;
}

.pr-100 {
    padding-right: 100px !important;
}

.pr-150 {
    padding-right: 150px;
}


/* left padding */

.pl-0 {
    padding-left: 0;
}

.pl-30 {
    padding-left: 30px;
}

.pl-50 {
    padding-left: 50px;
}

.pl-60 {
    padding-left: 60px;
}

.pl-70 {
    padding-left: 70px;
}

.pl-100 {
    padding-left: 100px !important;
}

.pl-150 {
    padding-left: 150px;
}


/* Postions */

.fixed {
    position: fixed;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.static {
    position: static;
}


/* Zindex*/

.zindex-1 {
    z-index: 1;
}

.zindex-2 {
    z-index: 2;
}

.zindex-3 {
    z-index: 3;
}


/* Borders */

.border-all {
    border: 1px solid var(--global--color-primary);
}

.border-top {
    border-top: 1px solid var(--global--color-primary);
}

.border-bottom {
    border-bottom: 1px solid var(--global--color-primary);
}

.border-right {
    border-right: 1px solid var(--global--color-primary);
}

.border-left {
    border-left: 1px solid var(--global--color-primary);
}


/* Display */

.inline {
    display: inline;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.hide {
    display: none;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media only screen and (max-width: 767px) {
    .text-center-xs {
        text-align: center !important;
    }
    .pull-none-xs {
        float: none !important;
        text-align: center !important;
    }
    .mb-15-xs {
        margin-bottom: 15px;
    }
    .mb-30-xs {
        margin-bottom: 30px !important;
    }
    .mb-40-xs {
        margin-bottom: 40px !important;
    }
    .mb-50-xs {
        margin-bottom: 50px;
    }
    .mb-60-xs {
        margin-bottom: 60px !important;
    }
    .p-none-xs {
        padding-right: 0;
        padding-left: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .text-center-sm {
        text-align: center !important;
    }
    .mb-0-sm {
        margin-bottom: 0;
    }
    .mb-15-sm {
        margin-bottom: 15px;
    }
    .mb-30-sm {
        margin-bottom: 30px !important;
    }
    .mb-40-sm {
        margin-bottom: 40px;
    }
    .mb-50-sm {
        margin-bottom: 50px;
    }
    .mb-60-sm {
        margin-bottom: 60px;
    }
    .pb-15-sm {
        padding-bottom: 15px;
    }
    .pb-30-sm {
        padding-bottom: 30px;
    }
    .pb-50-sm {
        padding-bottom: 50px;
    }
    .pb-60-sm {
        padding-bottom: 60px;
    }
    .p-none-sm {
        padding-right: 0;
        padding-left: 0;
    }
    .pull-none-sm {
        float: none !important;
        text-align: center !important;
    }
}

.border-b {
    border-bottom: 1px solid var(--global--color-gray);
}

.mt--80 {
    margin-top: -80px;
}

.p-0 {
    padding: 0;
}

.pt-200 {
    padding-top: 200px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-25 {
    padding-top: 25px !important;
}

.pt-55 {
    padding-top: 55px;
}

.pt-90 {
    padding-top: 90px;
}

.pt-120 {
    padding-top: 120px;
}

.pt-130 {
    padding-top: 130px;
}

.pt-145 {
    padding-top: 145px;
}

.pt-180 {
    padding-top: 180px;
}

.pt-210 {
    padding-top: 210px;
}

.pt-225 {
    padding-top: 225px;
}

.pt-240 {
    padding-top: 240px;
}

.pt-250 {
    padding-top: 250px;
}

.pt-260 {
    padding-top: 260px;
}

.pt-265 {
    padding-top: 265px;
}

.pt-300 {
    padding-top: 300px;
}

.pt-355 {
    padding-top: 355px;
}

.pt-370 {
    padding-top: 370px;
}

.pt-380 {
    padding-top: 380px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-35 {
    padding-bottom: 35px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-115 {
    padding-bottom: 115px;
}

.pb-120 {
    padding-bottom: 120px;
}

.pb-130 {
    padding-bottom: 130px;
}

.pb-170 {
    padding-bottom: 170px;
}

.pb-190 {
    padding-bottom: 190px;
}

.pb-200 {
    padding-bottom: 200px;
}

.mt-45 {
    margin-top: 45px;
}

.mt-35 {
    margin-top: 35px !important;
}

.mb-32 {
    margin-bottom: 32px !important;
}

.mb-35 {
    margin-bottom: 35px !important;
}

.mt--7 {
    margin-top: -7px;
}

.overflow-visible {
    overflow: visible;
}

.mr-10 {
    margin-right: 10px;
}

.mr-20 {
    margin-right: 20px !important;
}

.ml-20 {
    margin-left: 20px !important;
}


/*------------------------------------*\
    #Grid
\*------------------------------------*/

.row-no-padding [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.col-lg-5ths,
.col-md-5ths,
.col-sm-5ths,
.col-xs-5ths {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-xs-5ths {
    width: 20%;
    float: left;
}

@media (min-width: 768px) {
    .col-sm-5ths {
        width: 20%;
        float: left;
    }
}

@media (min-width: 992px) {
    .col-md-5ths {
        width: 20%;
        float: left;
    }
}

@media (min-width: 1200px) {
    .col-lg-5ths {
        width: 20%;
        float: left;
    }
}

.col-content {
    padding: 120px 100px 110px 120px;
}


/* Custom, iPhone Retina */

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .col-content {
        padding: 125px 18px 0 !important;
    }
}


/* Postion Helpers */

.pos-fixed {
    position: fixed;
}

.pos-relative {
    position: relative;
}

.pos-absolute {
    position: absolute;
}

.pos-static {
    position: static;
}

.pos-top {
    top: 0;
}

.pos-bottom {
    bottom: 0;
}

.pos-right {
    right: 0;
}

.pos-left {
    left: 0;
}

.pos-vertical-center {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.height-700 {
    height: 700px !important;
}

.height-500 {
    height: 500px !important;
}

.height-800 {
    height: 800px !important;
}

@media only screen and (min-width: 992px) {
    .hidden-lg,
    .hidden-md {
        display: none;
    }
}

@media only screen and (min-width: 768px) {
    .col-lg-5ths {
        -ms-flex: 0 0 20%;
        -webkit-box-flex: 0;
        flex: 0 0 20%;
        max-width: 20%;
    }
}


/*------------------------------------*\
    #Blockquotes
\*------------------------------------*/

.blockquote,
blockquote {
    font-size: 20px;
    font-family: var(--global--font-heading);
    color: var(--global--color-body);
    font-style: normal;
    line-height: 28px;
    font-weight: 500;
    padding: 30px 0 30px 30px;
    position: relative;
    border-left: 6px solid var(--global--color-heading);
}

.blockquote .quote-author,
blockquote .quote-author {
    font-family: var(--global--font-heading);
    display: block;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    color: var(--global--color-heading);
    margin-top: 18px;
}

.blockquote .author,
blockquote .author {
    font-family: var(--global--font-body);
    display: block;
    font-size: 18px;
    font-style: italic;
    font-weight: 600;
    line-height: 1;
    color: var(--global--color-heading);
    margin-top: 18px;
}

.blockquote-1 {
    border-left: 6px solid var(--global--color-heading);
}

.blockquote-2 {
    position: relative;
    border-left: none;
}

.blockquote-2::before,
.blockquote-2::after {
    font-family: "Font Awesome 5 Free";
    font-size: 16px;
    position: absolute;
    color: var(--global--color-primary);
    line-height: 1.8;
    font-weight: 600;
}

.blockquote-2::before {
    content: "\f10d";
    top: 0;
    left: 0;
}

.blockquote-2::after {
    content: "\f10e";
    right: 0;
    bottom: 0;
}

.blockquote-3 {
    background-color: var(--global--color-heading);
}

.blockquote-3 .author {
    color: var(--global--color-body);
}


/*------------------------------------*\
    #BACKGROUNDS
\*------------------------------------*/

.bg-theme {
    background-color: var(--global--color-primary) !important;
}

.bg-gray {
    background-color: var(--global--color-gray) !important;
}

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

.bg-dark {
    background-color: var(--global--color-heading) !important;
}

.bg-blue {
    background-color: #165153 !important;
}

.bg-secondary {
    background-color: var(--global--color-secondary);
}


/* Background Image */

.bg-section {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 100%;
}

.bg-parallax {
    background-attachment: fixed;
}

.bg-overlay:before {
    content: "";
    display: inline-block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

.bg-overlay-light:before {
    background-color: var(--global--color-white);
    opacity: 0.8;
}

.bg-overlay-dark:before {
    background-color: #1b1a1a;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(27, 26, 26, 0.25)), color-stop(34%, rgba(27, 26, 26, 0)), color-stop(82%, rgba(27, 26, 26, 0)));
    background-image: -o-linear-gradient(top, rgba(27, 26, 26, 0.25) 0%, rgba(27, 26, 26, 0) 34%, rgba(27, 26, 26, 0) 82%);
    background-image: linear-gradient(to bottom, rgba(27, 26, 26, 0.25) 0%, rgba(27, 26, 26, 0) 34%, rgba(27, 26, 26, 0) 82%);
    opacity: 0.5;
}

.bg-overlay-dark2:before {
    background-color: var(--global--color-heading);
    opacity: 0.95;
}

.bg-overlay-dark3:before {
    background-color: var(--global--color-heading);
    opacity: 0.2;
}

.bg-overlay-theme:before {
    background-color: var(--global--color-primary);
    opacity: 0.9;
}

.bg-overlay-theme2:before {
    background-color: var(--global--color-primary);
    opacity: 0.96;
}


/* Background Video */

.bg-video {
    position: relative;
}

.bg-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    -webkit-transform: rotateZ(0);
    -ms-transform: rotate(0);
    transform: rotateZ(0);
}

.bg-video h2 {
    text-transform: capitalize;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
    z-index: 5;
}

.no-shadow {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.bg-animate {
    background-size: cover;
    background-position: 0px 0px;
    background-repeat: repeat-x;
    -webkit-animation: animatedBackground 30s linear infinite;
    animation: animatedBackground 30s linear infinite;
}

@-webkit-keyframes animatedBackground {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 100% 0;
    }
}

@keyframes animatedBackground {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 100% 0;
    }
}


/* Elements Background */

.el-bg {
    height: 550px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.el-bg h2 {
    color: var(--global--color-white);
}


/*------------------------------------*\
    #BREADCRUMB
\*------------------------------------*/


/* Breadcrumb Style 1 */

.breadcrumb {
    background-color: transparent;
    margin-bottom: 0;
    padding: 0;
    border-radius: 0;
    color: #e5e4e4;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    text-transform: capitalize;
    display: block;
}

.breadcrumb>li {
    display: inline-block;
}

.breadcrumb>li+li:before {
    padding: 0 5px;
    color: #ccc;
    content: "/\00a0";
}

.breadcrumb>li a {
    color: #e5e4e4;
}

.breadcrumb>li a:hover {
    color: var(--global--color-primary);
}

.breadcrumb>.active {
    color: var(--global--color-gray);
}


/*------------------------------------*\
    #BUTTONS
\*------------------------------------*/

.btn {
    font-family: var(--global--font-heading);
    position: relative;
    z-index: 2;
    font-size: 13px;
    font-weight: 700;
    text-transform: capitalize;
    text-align: center;
    border-radius: 0;
    padding: 0;
    line-height: 48px;
    width: 170px;
    height: 50px;
    letter-spacing: 0.26px;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn.no-shadow {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn:focus,
.btn.active,
.btn:active {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
}

.btn i {
    margin-right: 7px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}


/* Button Primary */

.btn--primary {
    background-color: var(--global--color-primary);
    color: var(--global--color-white);
    border: 2px solid var(--global--color-primary);
}

.btn--primary:active,
.btn--primary:focus,
.btn--primary:hover {
    background-color: var(--global--color-heading);
    border-color: var(--global--color-heading);
    color: var(--global--color-white);
}

.btn--primary.btn--inverse:active,
.btn--primary.btn--inverse:focus,
.btn--primary.btn--inverse:hover {
    background-color: var(--global--color-white);
    color: var(--global--color-primary);
    border-color: var(--global--color-white);
}


/* Button Secondary*/

.btn--secondary {
    background-color: var(--global--color-heading);
    color: var(--global--color-white);
    border: 2px solid var(--global--color-heading);
}

.btn--secondary:active,
.btn--secondary:focus,
.btn--secondary:hover {
    background-color: var(--global--color-primary);
    color: var(--global--color-white);
    border-color: var(--global--color-primary);
}

.btn--secondary.btn--inverse:active,
.btn--secondary.btn--inverse:focus,
.btn--secondary.btn--inverse:hover {
    background-color: var(--global--color-white);
    color: var(--global--color-heading);
    border-color: var(--global--color-white);
}


/* Button White */

.btn--white {
    background-color: var(--global--color-white);
    color: var(--global--color-heading);
    border: 2px solid var(--global--color-white);
}

.btn--white .btn-inversed {
    background-color: transparent;
    color: var(--global--color-white);
    border: 2px solid var(--global--color-white);
}

.btn--white:active,
.btn--white:focus,
.btn--white:hover {
    background-color: var(--global--color-primary);
    color: var(--global--color-white);
    border-color: var(--global--color-primary);
}

.btn--white.btn--inverse:active,
.btn--white.btn--inverse:focus,
.btn--white.btn--inverse:hover {
    background-color: var(--global--color-heading);
    color: var(--global--color-white);
    border-color: var(--global--color-heading);
}

.btn--white.btn--secondary {
    color: var(--global--color-heading);
    border-color: var(--global--color-white);
    background-color: var(--global--color-white);
}

.btn--white.btn--secondary:active,
.btn--white.btn--secondary:focus,
.btn--white.btn--secondary:hover {
    color: var(--global--color-white);
    background-color: var(--global--color-primary);
    border-color: var(--global--color-primary);
}


/* Buttons Custom */

.btn--danger {
    background-color: #dd3333;
    color: var(--global--color-white);
}

.btn--danger:active,
.btn--danger:focus,
.btn--danger:hover {
    background-color: var(--global--color-heading);
    color: var(--global--color-white);
    border-color: var(--global--color-heading);
}

.btn--success {
    background-color: #81d742;
    color: var(--global--color-white);
}

.btn--success:active,
.btn--success:focus,
.btn--success:hover {
    background-color: var(--global--color-heading);
    color: var(--global--color-white);
    border-color: var(--global--color-heading);
}

.btn--prime {
    background-color: #1e73be;
    color: var(--global--color-white);
}

.btn--prime:active,
.btn--prime:focus,
.btn--prime:hover {
    background-color: var(--global--color-heading);
    color: var(--global--color-white);
    border-color: var(--global--color-heading);
}

.btn--purble {
    background-color: #8224e3;
    color: var(--global--color-white);
}

.btn--purble:active,
.btn--purble:focus,
.btn--purble:hover {
    background-color: var(--global--color-heading);
    color: var(--global--color-white);
    border-color: var(--global--color-heading);
}


/* Button Fluid */

.btn--block {
    width: 100%;
}


/*Button Auto */

.btn--auto {
    width: auto;
    padding: 0 20px;
}


/* Button Rounded */

.btn--rounded {
    border-radius: 50px;
}


/* Buttons Shadow */

.btn-shadow {
    -webkit-box-shadow: 0px 9px 30px 0px rgba(40, 40, 40, 0.15);
    box-shadow: 0px 9px 30px 0px rgba(40, 40, 40, 0.15);
}

.btn-shadow-hover:hover,
.btn-shadow-hover:active,
.btn-shadow-hover:focus {
    -webkit-box-shadow: 0px 9px 30px 0px rgba(40, 40, 40, 0.15);
    box-shadow: 0px 9px 30px 0px rgba(40, 40, 40, 0.15);
}


/* Button Bordered */

.btn--bordered {
    background-color: transparent;
}

.btn--bordered.btn--primary {
    color: var(--global--color-primary);
    border-color: var(--global--color-primary);
}

.btn--bordered.btn--primary:active,
.btn--bordered.btn--primary:focus,
.btn--bordered.btn--primary:hover {
    color: var(--global--color-white);
    background-color: var(--global--color-primary);
    border-color: var(--global--color-primary);
}

.btn--bordered.btn--secondary {
    color: var(--global--color-heading);
    border-color: var(--global--color-heading);
}

.btn--bordered.btn--secondary:active,
.btn--bordered.btn--secondary:focus,
.btn--bordered.btn--secondary:hover {
    color: var(--global--color-white);
    background-color: var(--global--color-heading);
    border-color: var(--global--color-heading);
}

.btn--bordered.btn--white {
    color: var(--global--color-white);
    border-color: var(--global--color-white);
}

.btn--bordered.btn--white:active,
.btn--bordered.btn--white:focus,
.btn--bordered.btn--white:hover {
    color: var(--global--color-primary);
    background-color: var(--global--color-white);
    border-color: var(--global--color-white);
}

.btn--slide :last-of-type {
    margin-left: -6px;
}

.btn--slide-wide {
    width: 270px;
}

@media screen and (max-width: 360px) {
    .btn--slide-wide {
        width: 240px;
    }
}

.btn--video {
    color: var(--global--color-white);
    font-size: 13px;
    font-weight: 600;
    line-height: 51px;
    text-transform: uppercase;
}

.btn--video:hover {
    color: var(--global--color-primary);
}

.btn--video:hover i {
    color: var(--global--color-primary);
}

.btn-transparent {
    color: var(--global--color-primary);
    border-color: var(--global--color-primary);
    background-color: transparent;
}

.btn-transparent:active,
.btn-transparent:focus,
.btn-transparent:hover {
    color: var(--global--color-white);
    background-color: var(--global--color-heading);
    border-color: var(--global--color-heading);
}


/* Buttons Sizes */

.btn-small {
    width: 170px;
    height: 41px;
    line-height: 41px;
}

.btn-super {
    width: 170px;
    height: 61px;
    line-height: 61px;
}


/*------------------------------------*\
    #FORMS
\*------------------------------------*/

form {
    position: relative;
}

.form-control {
    color: var(--global--color-body);
    font-size: 13px;
    font-weight: 400;
    height: 51px;
    line-height: 49px;
    border: 1px solid var(--global--color-gray-light);
    background: transparent;
    padding-left: 20px;
    margin-bottom: 30px;
    position: relative;
    border-radius: 2px;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.form-control:focus {
    background: transparent;
    border-color: var(--global--color-primary);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-control::-webkit-input-placeholder {
    font-size: 14px;
    font-family: var(--global--font-body);
    color: var(--global--color-body);
    text-transform: capitalize;
}

.form-control:-moz-placeholder {
    font-size: 14px;
    font-family: var(--global--font-body);
    color: var(--global--color-body);
    text-transform: capitalize;
}

.form-control::-moz-placeholder {
    font-size: 14px;
    font-family: var(--global--font-body);
    color: var(--global--color-body);
    text-transform: capitalize;
}

.form-control:-ms-input-placeholder {
    font-size: 14px;
    font-family: var(--global--font-body);
    color: var(--global--color-body);
    text-transform: capitalize;
}

.form-control+.error {
    position: absolute;
    top: -23px;
    left: 20px;
    color: red;
}

.form-control.error {
    border-color: red;
}

textarea.form-control {
    height: auto;
}

.form-select {
    position: relative;
}

.form-select i {
    position: absolute;
    font-size: 19px;
    font-weight: 400;
    line-height: 49px;
    right: 20px;
    top: 0;
    z-index: 1;
    pointer-events: none;
    cursor: pointer;
    color: var(--global--color-body);
}

.form-select select {
    line-height: 1;
    color: var(--global--color-body);
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


/* Input Checkbox */

.input-checkbox {
    margin-bottom: 30px;
}

.input-checkbox p {
    display: block;
    position: relative;
    font-size: 13px;
    padding-left: 30px;
    line-height: 20px;
    text-align: left;
    margin-bottom: 0;
}

.label-checkbox {
    display: block;
    position: relative;
    cursor: pointer;
    font-size: 18px;
    line-height: 18px;
    z-index: 2;
}

.label-checkbox input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.label-checkbox .check-indicator {
    position: absolute;
    top: 2px;
    left: 0;
    height: 17px;
    width: 17px;
    background: transparent;
    border: 1px solid #e1e3e3;
    border-radius: 2px;
}

.label-checkbox .check-indicator:after {
    content: "";
    position: absolute;
    display: none;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 12px;
    border: solid var(--global--color-primary);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.label-checkbox input:checked~.check-indicator {
    background: var(--global--color-white);
}

.label-checkbox input:checked~.check-indicator:after {
    display: block;
}


/*------------------------------------*\
    #Lists
\*------------------------------------*/

ul.list-icons {
    padding: 0;
    font-size: 14px;
    list-style-type: none;
}

ul.list-icons li {
    font-family: var(--global--font-body);
    color: var(--global--color-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 29px;
    position: relative;
}

ul.list-icons li i {
    font-size: 14px;
    color: var(--global--color-heading);
    margin-right: 10px;
}


/*------------------------------------*\
    #Tabs
\*------------------------------------*/

.tabs .tab-content>.tab-pane {
    font-family: var(--global--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.tabs-1 .nav-pills .nav-link.active,
.tabs-1 .nav-pills .show>.nav-link {
    color: var(--global--color-primary);
    border-color: var(--global--color-primary);
}

.tabs-1 .nav-pills {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.tabs-1 .nav-pills .nav-link {
    border-bottom: 2px solid transparent;
    background-color: transparent;
    color: var(--global--color-heading);
    font-family: var(--global--font-heading);
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
    padding-top: 0;
    border-radius: 0;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.tabs-1 .nav-pills .nav-link:hover {
    color: var(--global--color-primary);
    border-color: var(--global--color-primary);
}

.tabs-2 .nav-pills .nav-link.active,
.tabs-2 .nav-pills .show>.nav-link {
    color: var(--global--color-primary);
}

.tabs-2 .nav-pills .nav-link.active i,
.tabs-2 .nav-pills .show>.nav-link i {
    color: var(--global--color-white);
    background-color: var(--global--color-primary);
    border-color: var(--global--color-primary);
}

.tabs-2 .nav-pills {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.tabs-2 .nav-pills .nav-link {
    border: 0;
    background-color: transparent;
    color: var(--global--color-heading);
    font-family: var(--global--font-heading);
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
    padding-top: 0;
    border-radius: 0;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.tabs-2 .nav-pills .nav-link i {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border: 1px solid #e6e6e6;
    border-radius: 3px;
    color: var(--global--color-heading);
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    font-size: 25px;
    margin-bottom: 15px;
}

.tabs-2 .nav-pills .nav-link:hover {
    color: var(--global--color-primary);
}

.tabs-2 .nav-pills .nav-link:hover i {
    color: var(--global--color-white);
    background-color: var(--global--color-primary);
}


/*------------------------------------*\
    #Accordion
\*------------------------------------*/


/* Accordion Base */

.accordion .card,
.accordion .card:first-of-type,
.accordion .card:not(:first-of-type):not(:last-of-type) {
    padding: 32px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid var(--global--color-gray-light);
    margin-bottom: 15px;
    border-radius: 0;
}

.accordion .card .card-heading,
.accordion .card:first-of-type .card-heading,
.accordion .card:not(:first-of-type):not(:last-of-type) .card-heading {
    padding: 0;
}

.accordion .card .card-heading .card-link,
.accordion .card:first-of-type .card-heading .card-link,
.accordion .card:not(:first-of-type):not(:last-of-type) .card-heading .card-link {
    font-family: var(--global--font-heading);
    font-size: 16px;
    color: var(--global--color-primary);
    font-weight: 600;
    line-height: 20px;
    text-transform: capitalize;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-left: 0;
}

.accordion .card .card-heading .card-link::after,
.accordion .card:first-of-type .card-heading .card-link::after,
.accordion .card:not(:first-of-type):not(:last-of-type) .card-heading .card-link::after {
    /* symbol for "opening" cards */
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    content: "\f068";
    font-size: 11px;
    margin-right: 0px;
    color: var(--global--color-primary);
}

.accordion .card .card-heading .card-link:hover,
.accordion .card:first-of-type .card-heading .card-link:hover,
.accordion .card:not(:first-of-type):not(:last-of-type) .card-heading .card-link:hover {
    color: var(--global--color-primary);
}

.accordion .card .card-heading .card-link.collapsed,
.accordion .card:first-of-type .card-heading .card-link.collapsed,
.accordion .card:not(:first-of-type):not(:last-of-type) .card-heading .card-link.collapsed {
    color: var(--global--color-heading);
}

.accordion .card .card-heading .card-link.collapsed:hover,
.accordion .card:first-of-type .card-heading .card-link.collapsed:hover,
.accordion .card:not(:first-of-type):not(:last-of-type) .card-heading .card-link.collapsed:hover {
    color: var(--global--color-primary);
}

.accordion .card .card-heading .card-link.collapsed::after,
.accordion .card:first-of-type .card-heading .card-link.collapsed::after,
.accordion .card:not(:first-of-type):not(:last-of-type) .card-heading .card-link.collapsed::after {
    /* symbol for "collapsed" cards */
    content: "\f067";
}

.accordion .card .card-body,
.accordion .card:first-of-type .card-body,
.accordion .card:not(:first-of-type):not(:last-of-type) .card-body {
    font-family: var(--global--font-body);
    padding: 22px 0 0 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
}

.accordion .card:last-of-type {
    margin-bottom: 15px;
}


/*------------------------------------*\
    #PAGINATION
\*------------------------------------*/

.pagination {
    display: block;
    margin: 0;
    border-radius: 0;
}

.pagination li {
    margin-right: 10px;
    display: inline-block;
}

.pagination li:last-child {
    margin-right: 0;
}

.pagination li a,
.pagination li span {
    background-color: var(--global--color-gray);
    color: var(--global--color-heading);
    font-family: var(--global--font-heading);
    font-size: 13px;
    font-weight: 700;
    border: none;
    text-transform: uppercase;
    padding: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 0px;
    display: inline-block;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.pagination li a.current,
.pagination li a:hover,
.pagination li span.current,
.pagination li span:hover {
    background-color: var(--global--color-primary);
    color: var(--global--color-white);
    border-color: var(--global--color-primary);
}

.pagination-nav .pagination {
    display: block;
    margin: 0;
    border-radius: 0;
}

.pagination-nav .pagination>a {
    display: none;
}

.pagination-nav .pagination .nav-links a,
.pagination-nav .pagination .nav-links span {
    margin: 0 5px;
    background-color: var(--global--color-gray);
    color: var(--global--color-heading);
    font-family: var(--global--font-heading);
    font-size: 14px;
    font-weight: 700;
    border: none;
    text-transform: uppercase;
    padding: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 0;
    display: inline-block;
}

.pagination-nav .pagination .nav-links a:hover,
.pagination-nav .pagination .nav-links span:hover {
    background-color: var(--global--color-primary);
    color: var(--global--color-white);
    border-color: var(--global--color-primary);
}

.pagination-nav .pagination .nav-links .current {
    background-color: var(--global--color-primary);
    color: var(--global--color-white);
    border-color: var(--global--color-primary);
}

.pagination-buttons .next-page a,
.pagination-buttons .prev-page a {
    font-family: var(--global--font-heading);
    background-color: var(--global--color-primary);
    color: var(--global--color-white);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    width: 170px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    display: inline-block;
}

.pagination-buttons .next-page a:hover,
.pagination-buttons .prev-page a:hover {
    background-color: var(--global--color-heading);
    color: var(--global--color-white);
}

.pagination-buttons .next-page {
    text-align: right;
}

.page-link {
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 16px;
    color: var(--global--color-body);
    background-color: transparent;
    border: none;
    padding: 0;
}

.page-link:hover {
    background-color: transparent;
    border: none;
    color: var(--global--color-heading);
    cursor: auto;
}

.page-link a {
    color: var(--global--color-heading);
}

.page-link a:hover {
    color: var(--global--color-primary);
}


/*------------------------------------*\
    #ALERT MESSAGE
\*------------------------------------*/

.alerts {
    background-color: var(--global--color-gray);
    border-radius: 2px;
    padding: 20px;
    margin-bottom: 30px;
}

.alerts .alert-icon {
    width: 46px;
    height: 46px;
    line-height: 46px;
    background-color: var(--global--color-primary);
    border-radius: 2px 1px 1px 2px;
    text-align: center;
    position: absolute;
}

.alerts .alert-icon i {
    color: var(--global--color-white);
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
}

.alerts .alert-content {
    padding-left: 68px;
}

.alerts .alert-content h4 {
    color: var(--global--color-primary);
    font-size: 15px;
    font-weight: 800;
    line-height: 32px;
    text-transform: capitalize;
    margin-bottom: 0;
    margin-top: -6px;
}

.alerts .alert-content p {
    font-family: var(--global--font-body);
    color: var(--global--color-body);
    font-size: 13px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 0;
}

.alerts.alert-warning h4 {
    color: #8a6d3b;
}

.alerts.alert-warning .alert-icon {
    background-color: #fcf8e3;
}

.alerts.alert-warning .alert-icon i {
    color: #8a6d3b;
}

.alerts.alert-danger h4 {
    color: #a94442;
}

.alerts.alert-danger .alert-icon {
    background-color: #f2dede;
}

.alerts.alert-danger .alert-icon i {
    color: #a94442;
}

.alert {
    font-size: 16px;
    font-family: var(--global--font-body);
}


/* Subscribe Alert */

.subscribe-alert .alert {
    margin: 10px auto;
    font-size: 12px;
}


/* Contact Alert */

#contact-result .alert {
    margin: 10px auto;
    font-size: 12px;
}


/*------------------------------------*\
    #BACK TO TOP
\*------------------------------------*/

#back-to-top {
    z-index: 9999;
    position: fixed;
    right: 40px;
    bottom: 40px;
    opacity: 0;
}

#back-to-top.show {
    opacity: 1;
}

#back-to-top:hover {
    background-color: var(--global--color-heading);
}

.backtop {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: var(--global--color-white);
    cursor: pointer;
    border-radius: 50%;
    -webkit-transition: opacity 200ms ease-out;
    -o-transition: opacity 200ms ease-out;
    transition: opacity 200ms ease-out;
    background-color: var(--global--color-primary);
    font-size: 20px;
}

@media only screen and (max-width: 992px) {
    #back-to-top.show {
        opacity: 0;
    }
}


/*------------------------------------*\
    #LOADING-SECTION
\*------------------------------------*/

.preloader {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: fixed;
    z-index: 99999;
    background-color: var(--global--color-white);
    overflow: hidden;
}

.preloader .signal {
    border: 5px solid var(--global--color-primary);
    border-radius: 30px;
    height: 30px;
    left: 50%;
    margin: -15px 0 0 -15px;
    opacity: 0;
    position: absolute;
    top: 50%;
    width: 30px;
    -webkit-animation: pulsate 1s ease-out;
    animation: pulsate 1s ease-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-webkit-keyframes pulsate {
    0% {
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes pulsate {
    0% {
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}


/*------------------------------------*\
    #About
\*------------------------------------*/

.about .heading {
    padding-top: 78px;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .about .heading {
        padding-top: 0;
        text-align: left;
    }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    .about .heading {
        padding-top: 30px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .about .heading .heading-title {
        font-size: 32px;
        line-height: 40px;
        text-align: left;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .about .heading .heading-desc {
        text-align: left;
    }
}

@media screen and (max-width: 991.98px) {
    .about.about-2 {
        padding-bottom: 70px;
    }
}

.about.about-3 {
    padding-top: 20px;
    padding-bottom: 120px;
}

@media screen and (max-width: 991.98px) {
    .about.about-3 {
        padding-top: 250px;
        padding-bottom: 70px;
    }
}


/*------------------------------------*\
    #HEADER
\*------------------------------------*/

.header {
    height: 100px;
}

.header.header-transparent {
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

.header .logo {
    max-width: 100%;
    width: 100px;
}

.header .logo.slogan-dark {
    width: auto;
}

.header.header-3 .navbar-nav>li {
    cursor: pointer;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .header.header-3 .navbar-nav>li {
        margin-right: 20px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .header.header-3 .navbar-nav>li::last-child {
        margin-right: 0;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .header.header-3 .module-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.header.header-3 .navbar-nav>li::before,
.header.header-3 .navbar-nav>li:hover::before {
    bottom: 40px;
    background: var(--global--color-white);
}

.header.header-3 .navbar-fixed .navbar-nav>li::before,
.header.header-3 .navbar-fixed .navbar-nav>li:hover::before {
    bottom: 0;
    background: var(--global--color-primary);
}

.header.header-popup .tab .logo-light {
    display: block;
}

.header.header-popup.header-transparent .navbar.navbar-fixed .module-social a {
    color: var(--global--color-white);
}

.header.header-popup.header-transparent .navbar.navbar-fixed .menu .module-social a {
    color: var(--global--color-white);
}

.header.header-popup.header-transparent .module-social a {
    color: var(--global--color-white);
}

.header.header-popup.header-light .toggle-icon i {
    color: var(--global--color-heading);
}

.header.header-popup.header-light .navbar.navbar-light {
    background-color: var(--global--color-white);
}

.header.header-popup.header-light .navbar.navbar-light .module-social a {
    color: var(--global--color-heading);
}

@media screen and (max-width: 991.98px) {
    .header.header-popup.header-light .navbar .module {
        line-height: 100px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .header.header-popup.header-light .navbar .module-consultation {
        float: left;
    }
}

@media screen and (max-width: 991.98px) {
    .header.header-popup.header-light .navbar .toggle-icon i {
        line-height: 100px;
        color: var(--global--color-heading);
    }
}

.header.header-popup.header-light .navbar .module-social a {
    color: var(--global--color-heading);
}

.header.header-popup.header-light .navbar .popup-menu-warp .module-social a {
    color: var(--global--color-white);
}

@media screen and (max-width: 991.98px) {
    .header.header-popup.header-light .module-consultation .btn {
        color: var(--global--color-white);
        margin-right: 30px;
    }
}

.header.header-popup.header-light .module-consultation .btn.btn-dark:hover {
    color: var(--global--color-heading);
}

.header.header-popup .navbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 992px) {
    .header.header-popup .navbar.navbar-fixed {
        position: fixed;
        background-color: var(--global--color-white);
    }
    .header.header-popup .navbar.navbar-fixed .toggle-icon i {
        color: var(--global--color-heading);
    }
}

.header.header-popup .navbar .navbar-brand {
    margin-left: 50px;
}

@media screen and (max-width: 767px) {
    .header.header-popup .navbar .navbar-brand {
        margin-left: 30px;
    }
}

@media screen and (max-width: 992px) {
    .header.header-popup .navbar .module {
        width: auto;
        border-bottom: 0;
        padding: 0;
    }
}

.header.header-popup .navbar .toggle-icon {
    margin-right: 50px;
}

@media screen and (max-width: 991.98px) {
    .header.header-popup .navbar .toggle-icon {
        margin-right: 30px;
        -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px);
    }
}

.header.header-popup .navbar .toggle-icon i {
    -webkit-transition: 300ms ease-in-out;
    -o-transition: 300ms ease-in-out;
    transition: 300ms ease-in-out;
}

@media screen and (max-width: 992px) {
    .header.header-popup .navbar .toggle-icon i {
        color: var(--global--color-white);
    }
}

.header.header-popup .navbar .social-share {
    margin-right: 20px;
}

.header.header-popup .navbar .social-share a {
    color: var(--global--color-white);
    -webkit-transition: 300ms ease-in-out;
    -o-transition: 300ms ease-in-out;
    transition: 300ms ease-in-out;
    font-size: 16px;
    margin-right: 15px;
}

.header.header-popup .navbar .social-share a:last-of-type {
    margin-right: 0;
}

.header.header-popup .navbar .social-share a:hover {
    color: var(--global--color-primary);
}

.header.header-6 .navbar-nav>li {
    cursor: pointer;
}

.header.header-6 .navbar-nav>li::before,
.header.header-6 .navbar-nav>li:hover::before {
    bottom: 40px;
    background: var(--global--color-primary);
}

.header.header-6 .navbar.navbar-dark .navbar-nav>li.active>.menu-item,
.header.header-6 .navbar.navbar-dark .navbar-nav>li>a:hover {
    color: var(--global--color-primary);
}

@media screen and (max-width: 991.98px) {
    .header.header-8 .navbar-sticky,
    .header.header-8 .navbar.navbar-fixed {
        -webkit-box-shadow: 0 2px 4px rgba(3, 27, 78, 0.1);
        box-shadow: 0 2px 4px rgba(3, 27, 78, 0.1);
    }
}

@media screen and (max-width: 767.98px) {
    .header.header-8 .navbar .navbar-brand {
        margin-left: 15px;
    }
}

.header.header-8 .navbar .module-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width: 767.98px) {
    .header.header-8 .navbar .module-container .module-social {
        display: none;
    }
}

@media screen and (max-width: 767.98px) {
    .header.header-8 .navbar .module-container .module-consultation .btn {
        margin-right: 15px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .header.header-12 .navbar .navbar-nav>li {
        margin-right: 20px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .header.header-12 .navbar .navbar-nav>li::last-child {
        margin-right: 0;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .header.header-12 .navbar .module-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .header.header-13 .navbar .navbar-nav>li,
    .header.header-16 .navbar .navbar-nav>li {
        margin-right: 20px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .header.header-13 .navbar .navbar-nav>li::last-child,
    .header.header-16 .navbar .navbar-nav>li::last-child {
        margin-right: 0;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .header.header-13 .navbar .module-container,
    .header.header-16 .navbar .module-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.body-fixed-side .wrapper {
    margin: 0 0 0 270px !important;
    width: auto !important;
    padding: 0 15px;
}

.body-fixed-side .header-fixed-side {
    position: fixed;
    height: 100%;
    width: 270px;
    top: 0;
    left: 0;
    padding: 35px 50px 0 30px;
    border-right: 1px solid var(--global--color-gray-light);
}

@media screen and (max-width: 767.98px) {
    .body-fixed-side .header-fixed-side {
        padding-left: 10px;
    }
}

@media screen and (max-width: 991.98px) {
    .body-fixed-side .header-fixed-side {
        padding: 35px 0 0 15px;
    }
}

.body-fixed-side .header-fixed-side .navbar-brand {
    margin-bottom: 200px;
    display: block;
    padding: 0;
}

@media screen and (max-width: 992px) {
    .body-fixed-side .header-fixed-side .navbar-brand {
        margin-bottom: 120px;
    }
}

.body-fixed-side .header-fixed-side .navbar-brand .logo {
    width: 90px;
}

.body-fixed-side .header-fixed-side .menu {
    margin-bottom: 0;
}

.body-fixed-side .header-fixed-side .menu a {
    font-family: var(--global--font-heading);
    font-size: 13px;
    line-height: 40px;
    font-weight: bold;
    color: var(--global--color-heading);
    text-transform: uppercase;
}

.body-fixed-side .header-fixed-side .menu a:hover {
    color: var(--global--color-primary);
}

.body-fixed-side .header-fixed-side .bottom {
    position: absolute;
    bottom: 30px;
}

.body-fixed-side .header-fixed-side .bottom .copyright {
    font-family: var(--global--font-heading);
    font-size: 12px;
    margin-bottom: 10px;
}

.body-fixed-side .header-fixed-side .bottom .copyright span {
    color: var(--global--color-body);
}

.body-fixed-side .header-fixed-side .bottom .copyright a {
    color: var(--global--color-primary);
}

.body-fixed-side .header-fixed-side .bottom .copyright a:hover {
    color: rgba(249, 188, 1, 0.7);
}

.body-fixed-side .header-fixed-side .bottom .header-social a {
    color: var(--global--color-heading);
    -webkit-transition: 300ms ease-in-out;
    -o-transition: 300ms ease-in-out;
    transition: 300ms ease-in-out;
    font-size: 16px;
    margin-right: 15px;
}

.body-fixed-side .header-fixed-side .bottom .header-social a:last-of-type {
    margin-right: 0;
}

.body-fixed-side .header-fixed-side .bottom .header-social a:hover {
    color: var(--global--color-primary);
}

.header-full+.mtop-100,
.header-full+.page-title,
.header-full+.hero,
.header-full+.slider {
    position: relative;
    margin-top: -30px;
}


/* Header Bordered */

.header-bordered .navbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.header-bordered .navbar.navbar--dark {
    border-bottom: 1px solid rgba(34, 34, 34, 0.1);
}


/* Header Logo Brand */

.header-transparent .navbar-brand .logo {
    line-height: 100px;
}

.header-transparent .navbar-brand .logo-dark {
    display: none;
}


/* Header Light */

.header-light {
    background-color: var(--global--color-white);
}

.header-light .navbar .slogan-dark {
    margin-right: 10px;
}

.header-light .navbar .logo-dark {
    display: inline-block;
}

.header-light .navbar .logo-light {
    display: none;
}


/* Header With Top Bar */

.header-topbar {
    height: 150px;
}

.header-topbar .module-social {
    height: 50px;
    line-height: 50px;
}

@media screen and (max-width: 992px) {
    .header-topbar .module-social {
        border-bottom: 0;
    }
}

@media screen and (max-width: 992px) {
    .header-topbar .module-social a {
        color: var(--global--color-white);
        line-height: 50px;
        height: 50px;
    }
}

.header-topbar .top-bar {
    background-color: var(--global--color-secondary);
}

.header-topbar nav {
    top: 0px;
}

@media screen and (max-width: 991.98px) {
    .header-topbar nav {
        top: 0px;
    }
}


/* Header full */

.header-full {
    height: 162px;
    background: var(--global--color-white);
}

.header-full .contact-bar {
    height: 105px;
}

.header-full .contact-bar .navbar-header {
    height: 105px;
    line-height: 105px;
}

.header-full .contact-bar .module-container {
    padding: 35px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header-full .contact-bar .contact-box {
    position: relative;
    margin-right: 48px;
}

.header-full .contact-bar .contact-box-icon {
    position: absolute;
    left: 0;
    top: 0;
    line-height: 42px;
    color: var(--global--color-primary);
    font-size: 16px;
    font-weight: 400;
}

.header-full .contact-bar .contact-box-info {
    padding-left: 25px;
}

.header-full .contact-bar .contact-box-info p {
    color: var(--global--color-body);
    font-size: 13px;
    font-weight: 400;
    line-height: 21px;
    margin-bottom: 0;
}

.header-full .contact-bar .module-social a {
    color: var(--global--color-primary);
    font-size: 19px;
    font-weight: 400;
    line-height: 42px;
}

.header-full .contact-bar .module-social a::hover {
    color: var(--global--color-heading);
}


/*------------------------------------*\
    #Menu
\*------------------------------------*/

.navbar {
    margin-bottom: 0;
    border-radius: 0;
    min-height: 100px;
    border: none;
    z-index: 1030;
    padding: 0;
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.navbar.navbar-bordered {
    border-bottom: 1px solid rgba(143, 136, 136, 0.2);
}

.navbar .navbar-nav>li {
    margin-right: 30px;
    position: relative;
}

.navbar .navbar-nav>li:last-child {
    margin-right: 0;
}

.navbar .navbar-nav>li>a {
    font-family: var(--global--font-heading);
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 100px;
    color: var(--global--color-white);
    padding: 0;
    position: relative;
    display: block;
}

.navbar .navbar-nav>li>a:before {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 1px;
    background: var(--global--color-primary);
    content: "";
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.2, 1, 0.3, 1);
    transition: -webkit-transform 1s cubic-bezier(0.2, 1, 0.3, 1);
    -o-transition: transform 1s cubic-bezier(0.2, 1, 0.3, 1);
    transition: transform 1s cubic-bezier(0.2, 1, 0.3, 1);
    transition: transform 1s cubic-bezier(0.2, 1, 0.3, 1), -webkit-transform 1s cubic-bezier(0.2, 1, 0.3, 1);
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
}

.navbar .navbar-nav>li.active>a,
.navbar .navbar-nav>li>a:focus,
.navbar .navbar-nav>li>a:hover {
    background-color: transparent;
}

.navbar .navbar-nav>li.active>a,
.navbar .navbar-nav>li:hover a {
    color: var(--global--color-heading);
}

@media (min-width: 992px) {
    .navbar .navbar-nav>li.active>a,
    .navbar .navbar-nav>li:hover a {
        background-color: transparent;
        color: var(--global--color-white);
    }
    .navbar .navbar-nav>li.active>a::before,
    .navbar .navbar-nav>li:hover a::before {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
        -webkit-transform-origin: 0 50%;
        -ms-transform-origin: 0 50%;
        transform-origin: 0 50%;
    }
}

.navbar.navbar-magic-line .navbar-nav>li>a:before {
    position: absolute;
    bottom: 39px;
    left: 0;
    margin: auto;
    width: 100%;
    height: 1px;
    background: var(--global--color-white);
    content: "";
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.2, 1, 0.3, 1);
    transition: -webkit-transform 1s cubic-bezier(0.2, 1, 0.3, 1);
    -o-transition: transform 1s cubic-bezier(0.2, 1, 0.3, 1);
    transition: transform 1s cubic-bezier(0.2, 1, 0.3, 1);
    transition: transform 1s cubic-bezier(0.2, 1, 0.3, 1), -webkit-transform 1s cubic-bezier(0.2, 1, 0.3, 1);
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
}

.navbar.navbar-magic-line .navbar-nav>li.active>a::before,
.navbar.navbar-magic-line .navbar-nav>li:hover a::before {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transform-origin: 0 50%;
    -ms-transform-origin: 0 50%;
    transform-origin: 0 50%;
}

.navbar .navbar-brand {
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.navbar.navbar-fixed {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background: var(--global--color-white);
    -webkit-box-shadow: 0 2px 4px rgba(3, 27, 78, 0.1);
    box-shadow: 0 2px 4px rgba(3, 27, 78, 0.1);
}

.navbar.navbar-fixed .navbar-brand .logo-dark {
    display: inline-block;
}

.navbar.navbar-fixed .navbar-brand .logo-light {
    display: none;
}

.navbar.navbar-fixed .navbar-nav>li>a {
    color: #f9f9f9;
}

.navbar.navbar-fixed.navbar-magic-line .navbar-nav>li.active>a::before,
.navbar.navbar-fixed.navbar-magic-line .navbar-nav>li:hover a::before {
    background: var(--global--color-heading);
}

.navbar-nav>li.active>ul {
    margin-top: 0;
}


/* Menu Level #1 */

li.has-dropdown>.dropdown-toggle::after {
    display: none;
}

@media (min-width: 992px) {
    li.has-dropdown>ul.dropdown-menu>li.dropdown-submenu>a:after,
    ul.dropdown-menu>li.has-dropdown>a:after {
        margin: 0;
        border: 0;
        font-family: 'Font Awesome 5 Free';
        content: "\f054";
        font-weight: 700;
        font-size: 10px;
        position: absolute;
        right: 25px;
    }
}


/* Menu Levels */

.dropdown-menu {
    background-color: transparent;
    position: relative;
    width: 100%;
    border: none;
    margin: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.navbar.navbar-dark .module .module-icon i {
    color: var(--global--color-heading);
}

.navbar.navbar-dark .navbar-nav>li>a {
    color: var(--global--color-heading);
}

.navbar.navbar-dark .navbar-nav>li>a:hover {
    color: var(--global--color-primary);
}

.navbar.navbar-dark .navbar-nav>li.active>a,
.navbar.navbar-dark .navbar-nav>li:hover>a {
    color: var(--global--color-primary);
}


/* Small Devices, Tablets */

@media only screen and (max-width: 991px) {
    .navbar-sticky,
    .navbar.navbar-fixed {
        position: relative;
        background: transparent;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    .navbar .navbar-brand {
        margin-left: 0;
        height: 100px;
        line-height: 100px;
    }
    .navbar .navbar-toggler {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 30px;
        height: 30px;
        -webkit-transition: 0.3s ease-in-out;
        -o-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
        border: 0;
        padding: 0;
        outline: 0;
        cursor: pointer;
        border-radius: 0;
    }
    .navbar .navbar-toggler:focus {
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}

@media only screen and (max-width: 991px) and (min-width: 992px) {
    .navbar .navbar-toggler {
        display: none;
    }
}

@media only screen and (max-width: 991px) {
    .navbar .navbar-toggler:not(.collapsed) .navbar-toggler-icon {
        background-color: transparent;
    }
    .navbar .navbar-toggler:not(.collapsed) .navbar-toggler-icon:before,
    .navbar .navbar-toggler:not(.collapsed) .navbar-toggler-icon:after {
        top: 0;
    }
    .navbar .navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .navbar .navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .navbar .navbar-toggler .navbar-toggler-icon {
        background-color: var(--global--color-white);
        width: 100%;
        height: 2px;
        position: relative;
        -webkit-transition: 0.3s ease-in-out;
        -o-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    }
    .navbar .navbar-toggler .navbar-toggler-icon::before,
    .navbar .navbar-toggler .navbar-toggler-icon::after {
        content: '';
        position: absolute;
        left: 0;
        height: 2px;
        width: 100%;
        background-color: var(--global--color-white);
        -webkit-transition: 0.3s ease-in-out;
        -o-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    }
    .navbar .navbar-toggler .navbar-toggler-icon::before {
        top: -10px;
    }
    .navbar .navbar-toggler .navbar-toggler-icon::after {
        top: 10px;
    }
    .navbar .navbar-collapse {
        background-color: var(--global--color-white);
        padding: 15px;
    }
    .navbar.navbar-bordered {
        border-bottom: none;
    }
    /* Navabr */
    .navbar .navbar-nav>li {
        margin-right: 0;
    }
    .navbar .navbar-nav>li>a {
        line-height: 36px;
        color: var(--global--color-heading);
        display: block;
    }
    .navbar .navbar-nav>li.active::after {
        color: var(--global--color-primary);
    }
    .navbar .navbar-nav>li.active>a {
        color: var(--global--color-primary);
    }
    .navbar .navbar-nav>li.active>a:before {
        content: unset;
    }
    .navbar .menu-item::before {
        display: none;
    }
    .navbar .has-dropdown>a {
        z-index: 1;
    }
    .navbar .has-dropdown:after {
        font-family: "Font Awesome 5 Free";
        content: "\f105";
        font-weight: 700;
        font-size: 14px;
        position: absolute;
        right: 0;
        top: 0;
        color: var(--global--color-heading);
        line-height: 36px;
    }
    .navbar .has-dropdown.show:after {
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    .navbar .has-dropdown.show>.dropdown-menu {
        display: block;
    }
    .navbar .dropdown-menu.show {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding-top: 10px;
        border-radius: 0;
    }
    .navbar .dropdown-menu li {
        line-height: 26px;
    }
    .navbar .dropdown-menu li a {
        padding-left: 20px;
        color: var(--global--color-heading);
        font-size: 15px;
        display: block;
        text-transform: capitalize;
    }
    .navbar .dropdown-menu li.current a {
        color: var(--global--color-primary);
    }
    .navbar .show>.dropdown-menu {
        display: block;
    }
    .navbar .dropdown-submenu {
        position: relative;
    }
    .navbar .dropdown-submenu .dropdown-toggle:after {
        display: none;
    }
    .navbar .dropdown-submenu:after {
        font-family: "Font Awesome 5 Free";
        content: "\f105";
        font-weight: 700;
        font-size: 14px;
        position: absolute;
        right: 15px;
        top: 0;
        color: var(--global--color-heading);
        line-height: 26px;
    }
    .navbar .dropdown-submenu.show:after {
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    .navbar .dropdown-submenu .dropdown-menu li a {
        color: var(--global--color-heading);
    }
    .navbar .dropdown-submenu .dropdown-menu li.current a {
        color: var(--global--color-primary);
    }
    .navbar .dropdown-submenu.show .dropdown-menu {
        display: block;
    }
    .navbar .dropdown-submenu .dropdown-menu {
        padding-left: 20px;
    }
    /* Header Modifers */
    .navbar.navbar-light .navbar-nav>li>a {
        color: var(--global--color-heading);
    }
    .navbar-light:not(.navbar-fixed) .navbar-toggler-icon {
        background-image: none;
        background-color: var(--global--color-white);
    }
    .navbar-light:not(.navbar-fixed) .navbar-toggler-icon::before,
    .navbar-light:not(.navbar-fixed) .navbar-toggler-icon::after {
        background-color: var(--global--color-white);
    }
    .navbar-dark .navbar-toggler .navbar-toggler-icon,
    .navbar-light.navbar-fixed .navbar-toggler .navbar-toggler-icon {
        background-image: none;
        background-color: var(--global--color-heading);
    }
    .navbar-dark .navbar-toggler .navbar-toggler-icon::before,
    .navbar-dark .navbar-toggler .navbar-toggler-icon::after,
    .navbar-light.navbar-fixed .navbar-toggler .navbar-toggler-icon::before,
    .navbar-light.navbar-fixed .navbar-toggler .navbar-toggler-icon::after {
        background-color: var(--global--color-heading);
    }
}


/* Large Devices, Wide Screens */

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .navbar-nav>li {
        margin-right: 16px;
    }
    .module .module-icon,
    .module-consultation .btn {
        margin-right: 0;
    }
}

@media only screen and (min-width: 992px) {
    .navbar-collapse {
        padding-right: 0;
        padding-left: 0;
    }
    /* Menu with Dropdown */
    .navbar-nav>li.has-dropdown>ul.dropdown-menu {
        background-color: white;
        -webkit-transition: all 400ms ease-in-out;
        -o-transition: all 400ms ease-in-out;
        transition: all 400ms ease-in-out;
        opacity: 0;
        visibility: hidden;
        position: absolute;
        left: 0;
        right: auto;
        -webkit-transform-origin: left top;
        -ms-transform-origin: left top;
        transform-origin: left top;
        -webkit-transform: scaleY(0);
        -ms-transform: scaleY(0);
        transform: scaleY(0);
        display: block;
        width: 220px;
        min-width: 220px;
        padding: 18px 0;
        background-color: white;
    }
    .navbar-nav>li.has-dropdown>ul.dropdown-menu>li {
        padding-right: 0;
        position: relative;
        vertical-align: top;
    }
    .navbar-nav>li.has-dropdown>ul.dropdown-menu li a {
        font-family: var(--global--font-heading);
        line-height: 36px;
        color: var(--global--color-body);
        padding: 0;
        display: block;
        font-size: 13px;
        font-weight: 500;
        -webkit-transition: all 350ms;
        -o-transition: all 350ms;
        transition: all 350ms;
        text-transform: capitalize;
        margin: 0 25px;
    }
    .navbar-nav>li.has-dropdown>ul.dropdown-menu li a:active,
    .navbar-nav>li.has-dropdown>ul.dropdown-menu li a:focus,
    .navbar-nav>li.has-dropdown>ul.dropdown-menu li a:hover {
        background-color: transparent;
        color: var(--global--color-primary);
    }
    .navbar-nav>li.has-dropdown>ul.dropdown-menu li.current>a {
        color: var(--global--color-primary);
    }
    .navbar-nav>li.has-dropdown:hover>ul.dropdown-menu {
        opacity: 1;
        visibility: visible;
        -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
        transform: scaleY(1);
        z-index: 100;
        display: block;
    }
    .navbar-nav li ul.dropdown-menu.left {
        left: -650px !important;
        margin-left: 0 !important;
    }
    .navbar-nav li.has-dropdown.mega-dropdown>.dropdown-menu {
        background-color: transparent;
        padding: 0;
    }
    .navbar-nav li.has-dropdown.mega-dropdown>.dropdown-menu .container .row {
        background-color: var(--global--color-white);
        width: 100%;
        margin-right: 0;
        margin-left: 0;
        padding: 30px 18px;
    }
    .navbar-nav li.has-dropdown.mega-dropdown>.dropdown-menu .container .row ul {
        margin: 0;
        padding: 0;
    }
    .navbar-nav li.has-dropdown.mega-dropdown>.dropdown-menu .container .row ul li {
        line-height: 2.5;
    }
    .navbar-nav li.has-dropdown.mega-dropdown>.dropdown-menu .container .row ul li.title {
        color: var(--global--color-heading);
        font-size: 13px;
        font-weight: 600;
        text-transform: capitalize;
    }
    .navbar-nav li.has-dropdown.mega-dropdown>.dropdown-menu .container .row ul li a {
        margin: 0;
    }
    .navbar-nav.mx-auto li.has-dropdown.mega-dropdown,
    .navbar-nav.ms-auto li.has-dropdown.mega-dropdown,
    .navbar-nav.me-auto li.has-dropdown.mega-dropdown {
        position: static !important;
    }
    .navbar-nav.mx-auto li.has-dropdown.mega-dropdown>.dropdown-menu,
    .navbar-nav.ms-auto li.has-dropdown.mega-dropdown>.dropdown-menu,
    .navbar-nav.me-auto li.has-dropdown.mega-dropdown>.dropdown-menu {
        overflow: hidden;
        width: 1140px;
        right: auto;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .navbar-nav.ml-auto:not(.mr-auto) li.has-dropdown.mega-dropdown {
        position: static !important;
    }
    .navbar-nav.ml-auto:not(.mr-auto) li.has-dropdown.mega-dropdown>.dropdown-menu {
        overflow: hidden;
        width: 100%;
        left: 0;
        right: 0;
    }
    /* Menu Level #2 */
    li.has-dropdown>ul.dropdown-menu>li.dropdown-submenu>ul.dropdown-menu {
        background-color: var(--global--color-white);
        padding: 15px 0 10px;
        -webkit-transition: all 300ms linear;
        -o-transition: all 300ms linear;
        transition: all 300ms linear;
        opacity: 0;
        -webkit-transform: translateX(10%);
        -ms-transform: translateX(10%);
        transform: translateX(10%);
        visibility: hidden;
        display: block;
        position: absolute;
        left: 100%;
        right: auto;
        top: 0;
        margin: -1px 0 0;
        z-index: 1001;
    }
    li.has-dropdown>ul.dropdown-menu>li.dropdown-submenu:hover>ul.dropdown-menu {
        visibility: visible;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
        z-index: 1001;
        margin-top: -1px;
        margin-left: 0;
        -webkit-box-shadow: 0 2px 3px rgba(40, 40, 40, 0.1);
        box-shadow: 0 2px 3px rgba(40, 40, 40, 0.1);
    }
    li.dropdown-submenu.pull-left>ul.dropdown-menu {
        left: auto;
        right: 0;
        margin-right: 0;
    }
    /* Menu Level #3 */
    li.dropdown-submenu>ul.dropdown-menu>li.has-dropdown>ul.dropdown-menu {
        background-color: var(--global--color-heading);
        float: none;
        position: absolute;
        border-radius: 0;
        left: 100%;
        right: auto;
        top: 0;
        margin: -1px 0 0;
        z-index: 1;
        border: 1px solid var(--global--color-gray-light);
        padding: 13px 0;
    }
    li.dropdown-submenu>ul.dropdown-menu>li.has-dropdown>ul.dropdown-menu.left {
        left: -185px !important;
    }
}


/*------------------------------------*\
    #MODULE
\*------------------------------------*/

.module-container {
    padding-left: 30px;
}

.module {
    display: inline-block;
    position: relative;
}

.module span.title {
    display: none;
}

.module .module-icon {
    cursor: pointer;
    line-height: 100px;
}

@media screen and (min-width: 992px) {
    .module .module-icon {
        margin-right: 20px;
    }
}

.module .module-icon i {
    font-size: 14px;
    line-height: 24px;
    color: var(--global--color-white);
}

@media screen and (max-width: 991px) {
    .module .module-icon i {
        margin-right: 8px;
    }
}

.module:last-of-type .module-icon {
    margin-right: 0;
}

.module .menu-icon-double i {
    margin-left: 30px;
}

.module .module-label {
    width: 16px;
    height: 16px;
    line-height: 16px;
    border-radius: 50%;
    background-color: var(--global--color-primary);
    color: var(--global--color-white);
    font-size: 10px;
    font-weight: 400;
    text-align: center;
    position: absolute;
    top: 34px;
    left: 8px;
}

.module .module-content {
    height: 0;
    opacity: 0;
    -webkit-transition: all 350ms linear;
    -o-transition: all 350ms linear;
    transition: all 350ms linear;
}

.module .module-content.module-fullscreen {
    height: 100%;
    opacity: 1;
    -webkit-transition: all 600ms ease-in-out;
    -o-transition: all 600ms ease-in-out;
    transition: all 600ms ease-in-out;
}

.module .module-box {
    position: absolute;
    display: block;
    -webkit-box-shadow: 0 2px 3px rgba(40, 40, 40, 0.1);
    box-shadow: 0 2px 3px rgba(40, 40, 40, 0.1);
    background-color: #1b1a1a;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear;
    right: 0;
    width: 290px;
    border-radius: 6px;
    padding: 30px;
    z-index: 99;
    -webkit-transform: translateY(10%);
    -ms-transform: translateY(10%);
    transform: translateY(10%);
    height: 0;
    margin-top: 1px;
}

.module .widget-contact-info {
    padding-bottom: 18px;
}

.module .widget-contact-info ul {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.module .widget-contact-info ul li {
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    font-family: var(--global--font-body);
    line-height: 23px;
    color: #a5a5a5;
}

.module .widget-contact-info ul li:first-of-type {
    margin-bottom: 12px;
}


/* Module Fullscreen */

.module-fullscreen {
    left: 0;
    top: 0;
    right: 0;
    z-index: 99;
    display: block;
    height: 100%;
    opacity: 1;
    width: 100%;
    -webkit-clip-path: circle(10px at 90% -10%);
    clip-path: circle(10px at 90% -10%);
    -webkit-transition: 300ms ease-in-out;
    -o-transition: 300ms ease-in-out;
    transition: 300ms ease-in-out;
    background-color: var(--global--color-primary);
    position: fixed;
}

.module-fullscreen .container {
    display: none;
    -webkit-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear;
}

.module-fullscreen .module-cancel {
    top: 30px;
    position: absolute;
    right: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--global--color-primary);
    line-height: 28px;
    text-align: center;
}

.module-fullscreen .module-cancel:hover {
    opacity: 1;
    color: var(--global--color-heading);
}

.module-fullscreen.fullscreen-light {
    background-color: var(--global--color-white);
}

.module-active .module-fullscreen {
    -webkit-clip-path: circle(150% at 90% -10%);
    clip-path: circle(150% at 90% -10%);
}

.module-active .container {
    display: block;
}

.module-active .module-box {
    opacity: 1;
    visibility: visible;
    display: block;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    height: inherit;
}


/* Module SideArea*/

.module-sidearea-wrap .sidearea-overlay::before {
    content: "";
    position: fixed;
    top: 0;
    left: auto;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 500ms ease-in-out;
    -o-transition: 500ms ease-in-out;
    transition: 500ms ease-in-out;
}

.module-sidearea-wrap .sidearea-overlay.sidearea-overlay-active:before {
    right: 0;
    opacity: 1;
    visibility: visible;
}

.module-sidearea-wrap .module-sidearea-content {
    background-color: var(--global--color-white);
    padding: 106px 40px 40px 40px;
    height: 100%;
    width: 370px;
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    opacity: 1;
    visibility: visible;
    display: block;
    overflow-x: hidden;
    -webkit-transition: 500ms ease-in-out;
    -o-transition: 500ms ease-in-out;
    transition: 500ms ease-in-out;
    -webkit-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
    -webkit-transform: translateX(370px);
    -ms-transform: translateX(370px);
    transform: translateX(370px);
}

.module-sidearea-wrap .module-sidearea-content::-webkit-scrollbar {
    display: none;
}

.module-sidearea-wrap .module-sidearea-content .module-cancel {
    position: absolute;
    right: 40px;
    top: 45px;
    height: 9px;
    line-height: 9px;
    font-size: 12px;
    color: var(--global--color-primary);
    z-index: 3;
}

.module-sidearea-wrap .module-sidearea-content .sidearea-header {
    margin-bottom: 28px;
}

.module-sidearea-wrap .module-sidearea-content .sidearea-header .logo {
    width: 100px;
    margin-bottom: 30px;
    display: block;
}

.module-sidearea-wrap .module-sidearea-content .sidearea-header .logo img {
    max-width: 100%;
}

.module-sidearea-wrap .module-sidearea-content .sidearea-header p {
    font-family: var(--global--font-heading);
    color: #a5a5a5;
    font-size: 13px;
    font-weight: 400;
    line-height: 25px;
}

.module-sidearea-wrap .module-sidearea-content .sidearea-body {
    margin-bottom: 42px;
}

.module-sidearea-wrap .module-sidearea-content .sidearea-body .widget {
    background: transparent;
    border-radius: 0;
    padding: 0;
}

.module-sidearea-wrap .module-sidearea-content .sidearea-footer .module-social {
    line-height: 32px;
    height: auto;
}

.module-sidearea-wrap .module-sidearea-content .sidearea-footer .module-social a {
    line-height: 32px;
    font-size: 17px;
    font-weight: 400;
    color: #333333;
    text-align: center;
    display: inline-block;
    background-color: transparent;
    -webkit-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
}

.module-sidearea-wrap .module-sidearea-content .sidearea-footer .module-social a:hover {
    color: var(--global--color-primary);
}

.module-sidearea-wrap .module-sidearea-content .sidearea-footer .copywright {
    font-size: 12px;
    font-weight: 400;
    line-height: 24px;
    color: var(--global--color-body);
}

.module-sidearea-wrap.sidearea-wrap-active .module-sidearea-content {
    -webkit-box-shadow: 0 9px 30px rgba(40, 40, 40, 0.15);
    box-shadow: 0 9px 30px rgba(40, 40, 40, 0.15);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}


/* Module Search */

.module-search-warp {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1999;
    height: 100%;
    width: 100%;
    -webkit-transition: 600ms ease-in-out;
    -o-transition: 600ms ease-in-out;
    transition: 600ms ease-in-out;
    background-color: rgba(69, 69, 69, 0.75);
    -webkit-clip-path: circle(10px at 90% -10%);
    clip-path: circle(10px at 90% -10%);
}

.module-search-warp .module-cancel {
    top: 40px;
    position: absolute;
    right: 40px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--global--color-white);
    opacity: 0.8;
    -webkit-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
    line-height: 28px;
    text-align: center;
}

.module-search-warp .module-cancel:hover {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 1;
    color: var(--global--color-white);
}

.module-search-warp .form-search {
    margin-bottom: 0;
    padding-bottom: 12px;
    padding-left: 45px;
}

.module-search-warp .form-search button::before {
    position: absolute;
    right: 0;
    top: 0;
    content: "\e905";
    color: var(--global--color-white);
    font-family: "icomoon";
    font-size: 24px;
    font-weight: 400;
    line-height: 70px;
    z-index: 999;
    cursor: pointer;
}

.module-search-warp .form-search .form-control {
    position: relative;
    color: var(--global--color-white);
    font-family: var(--global--font-heading);
    font-size: 45px;
    font-weight: 400;
    line-height: 70px;
    height: 70px;
    border: none;
    background-color: transparent;
    width: 100%;
    padding: 0;
    margin-bottom: 0;
    text-transform: capitalize;
}

.module-search-warp .form-search .form-control::-webkit-input-placeholder {
    color: var(--global--color-gray);
    font-family: var(--global--font-heading);
    font-size: 45px;
}

.module-search-warp .form-search .form-control::-moz-placeholder {
    color: var(--global--color-gray);
    font-family: var(--global--font-heading);
    font-size: 45px;
}

.module-search-warp .form-search .form-control::-moz-placeholder {
    color: #9e9e9e;
    font-family: var(--global--font-heading);
    font-size: 45px;
}

.module-search-warp .form-search .form-control:-ms-input-placeholder {
    color: var(--global--color-gray);
    font-family: var(--global--font-heading);
    font-size: 45px;
}

.module-search-warp .form-search .btn {
    background-color: transparent;
    border-radius: 0;
    width: 35px;
    line-height: 57px;
    color: var(--global--color-white);
    font-size: 28px;
    font-weight: 400;
    text-align: right;
    margin-left: 0;
    padding: 0;
}

.module-search-warp.search-warp-active {
    -webkit-clip-path: circle(150% at 90% -10%);
    clip-path: circle(150% at 90% -10%);
}

.module-search-warp.search-warp-active .form-search {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

.module-search-warp.search-warp-active .container {
    display: block;
}


/* Module Cart */

.module-cart .module-icon {
    position: relative;
}

.module-cart .module-icon i {
    font-size: 16px;
    position: relative;
}

.module-cart .module-cart-warp {
    top: 100%;
    left: -253px;
    width: 290px;
    background-color: var(--global--color-white);
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(40px);
    -ms-transform: translateY(40px);
    transform: translateY(40px);
    -webkit-transition: 500ms;
    -o-transition: 500ms;
    transition: 500ms;
}

@media screen and (min-width: 992px) {
    .module-cart .module-cart-warp {
        position: absolute;
    }
}

.module-cart .module-cart-warp .cart-overview {
    margin-bottom: 0;
    width: 100%;
}

.module-cart .module-cart-warp .cart-overview li {
    padding-bottom: 30px;
    position: relative;
}

.module-cart .module-cart-warp .cart-overview li:last-child {
    margin-bottom: 0;
}

.module-cart .module-cart-warp .cart-overview li .cart-cancel {
    position: absolute;
    right: 0;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--global--color-white);
    font-size: 7px;
    width: 20px;
    height: 20px;
    background-color: #333333;
}

.module-cart .module-cart-warp .cart-overview li .cart-cancel:hover {
    background-color: var(--global--color-primary);
}

.module-cart .module-cart-warp .cart-overview img {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    position: absolute;
}

.module-cart .module-cart-warp .cart-overview .product-meta {
    padding-left: 60px;
}

.module-cart .module-cart-warp .cart-overview h5 {
    color: var(--global--color-secondary);
    font-family: var(--global--font-heading);
    font-size: 14px;
    text-transform: capitalize;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 8px;
}

.module-cart .module-cart-warp .cart-overview p {
    font-family: var(--global--font-heading);
    color: var(--global--color-body);
    font-size: 13px;
    line-height: 20px;
    font-weight: 600;
    margin-bottom: 0;
}

.module-cart .module-cart-warp span {
    font-family: var(--global--font-heading);
    color: var(--global--color-body);
    font-size: 15px;
    font-weight: 600;
    line-height: 22px;
    display: inline-block;
    text-transform: capitalize;
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
    margin-bottom: 18px;
}

.module-cart .module-cart-warp span .total-price {
    color: var(--global--color-primary);
    font-style: normal;
}

.module-cart .module-cart-warp .cart--control .btn {
    height: 42px;
    width: 209px;
    line-height: 31px;
    margin-right: 10px;
    border-radius: 0;
    background-color: var(--global--color-primary);
    color: var(--global--color-white);
}

@media screen and (max-width: 991.98px) {
    .module-cart .module-cart-warp .cart--control .btn {
        width: 250px;
    }
}

.module-cart .module-cart-warp .cart--control .btn:hover {
    background-color: var(--global--color-heading);
}

.module-cart .module-cart-warp .cart--control:last-of-type {
    margin-right: 0;
}

.module-cart.module-active .module-cart-warp {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}


/* Module Popup Menu */

.popup-menu-warp {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 100vh;
    z-index: 10000;
    background-color: #1b1a1a;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transition: 300ms ease-in-out;
    -o-transition: 300ms ease-in-out;
    transition: 300ms ease-in-out;
}

.popup-menu-warp.popup-menu-warp-active {
    opacity: 1;
    visibility: visible;
}

.popup-menu-warp .container {
    position: relative;
    height: 100vh;
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
}

.popup-menu-warp .container .tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    height: 100px;
}

.popup-menu-warp .container .tab .module-cancel i {
    font-size: 12px;
}

.popup-menu-warp .container .menu {
    margin-bottom: 95px;
}

.popup-menu-warp .container .menu a {
    font-family: var(--global--font-heading);
    font-size: 50px;
    font-weight: bold;
    line-height: 84px;
    text-transform: capitalize;
    color: var(--global--color-white);
    -webkit-transition: 300ms ease-in-out;
    -o-transition: 300ms ease-in-out;
    transition: 300ms ease-in-out;
}

.popup-menu-warp .container .menu a:hover {
    color: var(--global--color-primary);
}

.popup-menu-warp .container .module-social {
    width: 100%;
    position: absolute;
    bottom: -3px;
    left: 15px;
}

.popup-menu-warp .container .module-social a {
    font-size: 17px;
    margin-left: 10px;
    line-height: 100px;
}


/* Module Reservation */

.module-consultation {
    float: left;
    height: 100px;
    line-height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .module-consultation {
        float: none;
    }
}

@media screen and (max-width: 991.98px) {
    .module-consultation {
        height: auto;
    }
}

.module-consultation .btn {
    width: 100px;
    height: 35px;
    line-height: 33px;
    margin-right: 30px;
    text-transform: uppercase;
    display: block;
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    color: #333333;
    border: 2px solid var(--global--color-white);
    background-color: var(--global--color-white);
}

.module-consultation .btn:hover {
    background-color: var(--global--color-heading);
    color: var(--global--color-white);
    border-color: var(--global--color-heading);
}

.module-consultation .btn.btn--transparent {
    background-color: transparent;
    border-color: var(--global--color-white);
    color: var(--global--color-white);
}

@media screen and (max-width: 991.98px) {
    .module-consultation .btn.btn--transparent {
        color: var(--global--color-heading);
        border-color: var(--global--color-heading);
    }
}

.module-consultation .btn.btn--transparent:hover {
    background-color: var(--global--color-heading);
    color: var(--global--color-white);
    border-color: var(--global--color-heading);
}

.module-consultation .btn.btn--small {
    width: 85px;
}

.module-consultation .btn-dark {
    border-color: var(--global--color-heading);
    color: var(--global--color-white);
    background: var(--global--color-heading);
}

.module-consultation .btn-dark:hover {
    background-color: var(--global--color-white);
    color: var(--global--color-heading);
    border-color: var(--global--color-heading);
}


/* Module Social */

.module-social {
    line-height: 100px;
    height: 100px;
    margin-right: 20px;
    margin-bottom: 0;
}

.module-social:last-child {
    margin-right: 0;
}

.module-social a {
    color: var(--global--color-white);
    font-size: 17px;
    font-weight: 400;
    line-height: 100px;
    margin-left: 5px;
    position: relative;
    overflow: hidden;
    width: 25px;
    height: 25px;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.module-social a:first-of-type {
    margin-left: 0;
}

.module-social a:hover i:first-child {
    top: -101%;
}

.module-social a:hover i:last-child {
    top: 2px;
}

.module-social a i:first-child {
    position: absolute;
    top: 2px;
    left: 0;
    width: 25px;
    height: 25px;
    -webkit-transition: 300ms ease-in-out;
    -o-transition: 300ms ease-in-out;
    transition: 300ms ease-in-out;
}

.module-social a i:last-child {
    position: absolute;
    top: 103%;
    left: 0;
    width: 25px;
    height: 25px;
    color: var(--global--color-primary);
    -webkit-transition: 300ms ease-in-out;
    -o-transition: 300ms ease-in-out;
    transition: 300ms ease-in-out;
}

.module-social.module-social-dark a {
    color: var(--global--color-heading);
}


/* Navbar For header Top Bar */

.header-topbar .topbar .contact-info {
    line-height: 46px;
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 46px;
    margin-right: 30px;
    display: inline-block;
}

.header-topbar .topbar .contact-info i {
    color: var(--global--color-primary);
    margin-right: 9px;
    font-size: 16px;
}

.header-topbar .topbar .contact-social {
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 0;
    display: inline-block;
}

.header-topbar .topbar .contact-social a {
    color: var(--global--color-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 46px;
    margin-left: 20px;
    line-height: 46px;
}

.header-topbar .topbar .contact-social a:hover {
    color: var(--global--color-white);
}


/* Header Fixed */

.navbar-fixed .module .module-icon i {
    color: var(--global--color-heading);
}

.navbar-fixed .module-consultation .btn {
    background: var(--global--color-heading);
    border-color: var(--global--color-heading);
    color: var(--global--color-white);
}

.navbar-fixed .module-consultation .btn:hover {
    background: var(--global--color-white);
    color: var(--global--color-heading);
}

.navbar-fixed .module-social a {
    color: var(--global--color-heading);
}

.navbar-fixed .module-social a:hover {
    color: var(--global--color-primary);
}


/* Small Devices, Tablets */

@media only screen and (max-width: 991px) {
    .module {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .module .module-icon {
        padding-top: 0;
        line-height: 36px !important;
    }
    .module .module-icon i {
        color: var(--global--color-heading);
    }
    .module .module-box {
        position: relative;
        right: 0;
        width: 100%;
        border: none;
    }
    .module .module-label {
        top: -3px;
        position: relative;
    }
    .module span.title {
        display: inline-block;
        color: var(--global--color-heading);
        font-size: 13px;
        font-weight: 700;
        text-transform: capitalize;
    }
    .module .module-cart-warp,
    .module .search-box {
        display: none;
        padding-right: 10px;
        padding-left: 10px;
    }
    .module .module-content {
        margin-bottom: 10px;
    }
    .module .module-cart-warp .cart-overview h5 {
        color: var(--global--color-white);
    }
    .module .module-search .search-icon i {
        border-left: none;
        padding-left: 0;
        padding-right: 5px;
    }
    .module-cart.active .module-cart-warp {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
    .module.module-active .module-cart-warp,
    .module.module-active .search-box {
        display: block !important;
    }
    .module-search.module-active .search-box .search-form {
        margin-bottom: 10px;
    }
    .module-search.module-active .search-box .search-form input {
        background-color: var(--global--color-white);
        margin-bottom: 0;
        height: 35px;
        line-height: 35px;
        padding-left: 10px;
        max-width: 100%;
    }
    .module-cart.module-active .module-cart-warp {
        background-color: var(--global--color-heading);
        border: none;
        padding: 30px 20px;
        margin-bottom: 10px;
    }
    .module-cart.module-active .module-cart-warp .cart-control {
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    }
    .module-cart.module-active .module-cart-warp .cart-control .pull-right {
        float: none !important;
    }
    .module-consultation {
        padding: 10px 0;
    }
    .module-consultation .btn {
        border-color: var(--global--color-heading);
        color: var(--global--color-heading);
        margin: 0;
    }
    .module-social a {
        color: var(--global--color-heading);
        line-height: 36px;
    }
    .module-container {
        padding-left: 0;
    }
    .module-search-warp .form-control {
        font-size: 24px;
    }
    .module-sidearea .module-sidearea-wrap {
        width: 320px;
        padding: 40px;
    }
}


/* Large Devices, Wide Screens */

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .module-search .search-icon i {
        padding-left: 16px;
        padding-right: 16px;
    }
}


/*------------------------------------*\
    #TopBar
\*------------------------------------*/

.top-bar {
    height: 50px;
    overflow: hidden;
    background-color: transparent;
}

.top-bar .top--contact {
    margin-bottom: 0;
}

.top-bar .top--contact li {
    display: inline-block;
    margin-right: 21px;
    line-height: 50px;
}

@media screen and (max-width: 525px) {
    .top-bar .top--contact li {
        margin-right: 10px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .top-bar .top--contact li {
        margin-right: 10px;
    }
}

.top-bar .top--contact li::after {
    content: "/";
    position: relative;
    color: var(--global--color-primary);
    margin-left: 20px;
}

@media screen and (max-width: 525px) {
    .top-bar .top--contact li::after {
        margin-left: 10px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .top-bar .top--contact li::after {
        margin-left: 10px;
    }
}

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

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

.top-bar .top--contact a {
    font-family: var(--global--font-body);
    line-height: 50px;
    color: var(--global--color-body);
    font-size: 14px;
    font-weight: 400;
    -webkit-transition: 300ms ease-in-out;
    -o-transition: 300ms ease-in-out;
    transition: 300ms ease-in-out;
}

.top-bar .top--contact a:hover {
    color: var(--global--color-primary);
}

.top-bar .top--contact i {
    margin-right: 6px;
}

.top-bar .top--social {
    color: var(--global--color-gray);
    font-size: 12px;
    font-weight: 400;
    line-height: 50px;
}

.top-bar .top--social a {
    color: var(--global--color-gray);
    font-size: 16px;
    line-height: 28px;
    margin-left: 19px;
}

.top-bar .top--social a:hover {
    color: var(--global--color-primary);
}

.top-bar .contact-info {
    margin-bottom: 0;
    font-size: 12px;
    color: var(--global--color-gray);
    font-weight: 400;
    line-height: 50px;
    margin-right: 30px;
    display: inline-block;
    font-family: var(--global--font-heading);
}

.top-bar .contact-info i {
    color: var(--global--color-primary);
    margin-right: 9px;
    font-size: 16px;
}

.top-bar .contact-info a {
    color: var(--global--color-gray);
}

.top-bar .contact-info a:hover {
    color: var(--global--color-heading);
}

.top-bar .contact-social {
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 0;
    display: inline-block;
}

.top-bar .contact-social a {
    color: var(--global--color-white);
    font-size: 14px;
    font-weight: 400;
    line-height: 50px;
    margin-left: 20px;
}

.top-bar .contact-social a:hover {
    color: var(--global--color-heading);
}


/*------------------------------------*\
    #PAGE-TTILE
\*------------------------------------*/

.page-title {
    padding: 0;
}

.page-title.bg-grey {
    background-color: #f5f4f2;
}

.page-title .title {
    padding: 275px 0 35px 0;
    /* Title #2 */
}

@media (max-width: 767px) {
    .page-title .title {
        padding-top: 150px;
    }
}

.page-title .title .title-heading {
    margin-bottom: 149px;
}

.page-title .title .title-heading h1 {
    color: var(--global--color-white);
    font-size: 70px;
    font-weight: 700;
    line-height: 75px;
    margin-bottom: 0;
    text-transform: capitalize;
}

@media (max-width: 767px) {
    .page-title .title .title-heading h1 {
        font-size: 32px;
        line-height: 1.2;
    }
}

.page-title .title .title-desc p {
    color: var(--global--color-gray);
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 300;
}

.page-title .title .breadcrumb {
    font-size: 13px;
    font-weight: 400;
    line-height: 1px;
    background: transparent;
    color: var(--global--color-white);
    font-family: var(--global--font-heading);
}

@media (max-width: 767px) {
    .page-title .title .breadcrumb {
        line-height: inherit;
    }
}

.page-title .title .breadcrumb a {
    font-size: 13px;
    font-weight: 400;
    line-height: 1px;
    background: transparent;
    color: var(--global--color-white);
}

.page-title .title .breadcrumb a:hover {
    color: var(--global--color-primary);
}

.page-title .title .breadcrumb .active {
    color: var(--global--color-white);
}

.page-title .title .breadcrumb .breadcrumb-item+.breadcrumb-item {
    padding-left: 0;
}

.page-title .title .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: var(--global--color-white);
    padding: 0 9px;
}

.page-title .title.title-1 {
    padding-bottom: 110px;
}

.page-title .title.title-1 .breadcrumb {
    position: absolute;
    bottom: 30px;
    right: 0;
    left: 0;
}

.page-title .title.title-2 {
    padding: 90px 0;
}

.page-title .title.title-2 h1 {
    font-family: var(--global--font-body);
    font-size: 25px;
    font-weight: 900;
    margin-bottom: 30px;
}

.page-title .title.title-2 .breadcrumb,
.page-title .title.title-2 .breadcrumb a,
.page-title .title.title-2 .breadcrumb .active,
.page-title .title.title-2 .breadcrumb-item+.breadcrumb-item::before {
    color: var(--global--color-secondary);
}

.page-title .title.title-4 {
    padding-bottom: 184px;
    padding-top: 276px;
}

.page-title .title.title-4 .title-heading {
    margin-bottom: 28px;
}

.page-title .title.title-5 {
    padding-bottom: 184px;
    padding-top: 228px;
}

.page-title .title.title-5 .title-heading {
    margin-bottom: 28px;
}

.page-title .title.title-6 .title-heading h1 {
    font-family: var(--global--font-body);
    color: var(--global--color-heading);
    font-weight: 900;
    margin-bottom: 30px;
}

.page-title .title.title-6 .breadcrumb,
.page-title .title.title-6 .breadcrumb a,
.page-title .title.title-6 .breadcrumb .active,
.page-title .title.title-6 .breadcrumb-item+.breadcrumb-item::before {
    color: var(--global--color-secondary);
}

.page-title .title.title-7 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 63px 0 63px 0;
}

.page-title .title.title-7 .title-heading {
    margin-bottom: 0;
}

.page-title .title.title-7 .title-heading h1 {
    color: var(--global--color-secondary);
    font-weight: 700;
    font-size: 50px;
}

.page-title .title.title-7 .breadcrumb,
.page-title .title.title-7 .breadcrumb a,
.page-title .title.title-7 .breadcrumb .active,
.page-title .title.title-7 .breadcrumb-item+.breadcrumb-item::before {
    color: var(--global--color-secondary);
}

.page-title .title.title-white .title-heading h1 {
    color: var(--global--color-white);
}

.page-title .title.title-white .breadcrumb a {
    color: var(--global--color-white);
}

.page-title .title.title-white .breadcrumb .active {
    color: var(--global--color-white);
}

.page-title .title.title-white .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: var(--global--color-white);
}


/*------------------------------------*\
    #Carousel
\*------------------------------------*/

.owl-nav.disabled {
    display: none;
}

.carousel.owl-carousel .owl-item img {
    width: inherit;
}

.carousel.owl-carousel.carousel-dots .owl-dots.disabled {
    display: block;
}

.carousel-dots button.owl-dot,
.carousel-dots button.owl-dot:focus {
    padding: 0;
    background-color: transparent;
    border: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.carousel-dots .owl-dots {
    text-align: center;
    line-height: 1;
    margin-top: 40px;
}

.carousel-dots .owl-dots .owl-dot span {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: var(--global--color-heading);
    border: 3px solid var(--global--color-heading);
    margin: 0 4px;
    display: inline-block;
    cursor: pointer;
}

.carousel-dots .owl-dots .owl-dot.active span {
    background-color: var(--global--color-primary);
    border-color: var(--global--color-primary);
}

.carousel-dots.carousel-white .owl-dots .owl-dot span {
    border-color: rgba(255, 255, 255, 0.5);
}

.carousel-dots.carousel-white .owl-dots .owl-dot.active span {
    background-color: var(--global--color-white);
    border-color: var(--global--color-white);
}

.carousel-dots.carousel-theme .owl-dots .owl-dot.active span {
    background-color: var(--global--color-primary);
    border-color: var(--global--color-primary);
}

.carousel-navs .owl-nav span {
    font-size: 0;
}

.carousel-navs .owl-nav [class*="owl-"] {
    position: absolute;
    top: 50%;
    height: auto;
    width: auto;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--global--color-white);
    font-size: 0;
    font-weight: 400;
    background-color: transparent;
    text-align: center;
    padding: 0;
    border-radius: 0;
    -webkit-transition: all 0.35s;
    -o-transition: all 0.35s;
    transition: all 0.35s;
    cursor: pointer;
}

.carousel-navs .owl-nav [class*="owl-"]:hover {
    color: var(--global--color-primary);
}

.carousel-navs .owl-nav .owl-next:before,
.carousel-navs .owl-nav .owl-prev:before {
    font-family: "Font Awesome 5 Free";
    font-size: 20px;
    font-weight: 600;
    color: var(--global--color-white);
}

.carousel-navs .owl-nav .owl-prev {
    left: 40px;
}

.carousel-navs .owl-nav .owl-prev:before {
    content: "\f060";
}

.carousel-navs .owl-nav .owl-next {
    right: 40px;
}

.carousel-navs .owl-nav .owl-next:before {
    content: "\f061";
}

.carousel-navs .owl-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
}

.carousel-navs .owl-dots .owl-dot span {
    background-color: transparent;
    border: 1px solid var(--global--color-white);
}

.carousel-navs .owl-dots .owl-dot.active span,
.carousel-navs .owl-dots .owl-dot:hover span {
    background: var(--global--color-white);
}


/* Custom, iPhone Retina */

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .carousel-dots {
        margin-top: 20px;
    }
}


/* Small Devices, Tablets */

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-navs .owl-nav .owl-next:before,
    .slider-navs .owl-nav .owl-prev:before {
        font-size: 30px;
    }
}


/*------------------------------------*\
    #Heading
\*------------------------------------*/

.heading {
    margin-bottom: 70px;
}

@media screen and (max-width: 991.98px) {
    .heading {
        text-align: center;
    }
}

.heading .heading-subtitle {
    font-family: var(--global--font-heading);
    text-transform: capitalize;
    color: var(--global--color-primary);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 26px;
}

@media screen and (max-width: 991.98px) {
    .heading .heading-subtitle {
        line-height: 1.5;
    }
}

.heading .heading-title {
    font-family: var(--global--font-heading);
    text-transform: capitalize;
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 0;
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    .heading .heading-title {
        font-size: 26px;
        line-height: 1.5;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .heading .heading-title {
        font-size: 32px;
        line-height: 1.5;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .heading .heading-title {
        font-size: 32px;
        line-height: 1.5;
    }
}

@media screen and (min-width: 992px) and (max-width: 1400px) {
    .heading .heading-title {
        font-size: 40px;
    }
}

.heading .heading-desc {
    font-family: var(--global--font-body);
    color: var(--global--color-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 0;
    margin-top: 30px;
}

@media screen and (max-width: 360px) {
    .heading .heading-desc {
        max-width: 270px;
        margin-right: auto;
        margin-left: auto;
    }
}

@media screen and (min-width: 361px) and (max-width: 767px) {
    .heading .heading-desc {
        padding: 0 25px;
        max-width: 460px;
        margin-right: auto;
        margin-left: auto;
    }
}

@media screen and (max-width: 767px) {
    .heading .heading-desc br {
        display: none;
    }
}

.heading.heading-bg2 .heading-subtitle {
    color: var(--global--color-gray);
    margin-bottom: 21px;
}

.heading.heading-bg2 .heading-title {
    color: var(--global--color-white);
    font-size: 50px;
    line-height: 55px;
    margin-bottom: 30px;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .heading.heading-bg2 .heading-title {
        font-size: 32px;
        line-height: 45px;
    }
}

@media screen and (max-width: 767px) {
    .heading.heading-bg2 .heading-title {
        font-size: 32px;
        line-height: 42px;
    }
}

.heading.heading-bg2 .heading-desc {
    color: var(--global--color-gray);
}

.heading.heading-light .heading-subtitle {
    color: var(--global--color-gray);
}

.heading.heading-light .heading-title {
    color: var(--global--color-white);
}

.heading.heading-light .heading-desc {
    color: var(--global--color-gray);
}

.heading.heading-3 {
    margin-bottom: 60px;
}

.heading.heading-3 .heading-title {
    font-size: 32px;
    line-height: 42px;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .heading.heading-3 .heading-title {
        font-size: 26px;
        line-height: 1.5;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .heading.heading-3 .heading-title {
        font-size: 27px;
        line-height: 1.5;
    }
}

@media screen and (max-width: 767.98px) {
    .heading.heading-3 .heading-title {
        font-size: 21px;
        line-height: 32px;
    }
}

.heading.heading-3 .heading-subtitle {
    margin-bottom: 19px;
}

.heading.heading-3 .heading-desc {
    margin-top: 0;
}

.heading.heading-4 .heading-title {
    font-size: 40px;
    line-height: 55px;
}

.heading.heading-5 {
    margin-bottom: 50px;
}

@media screen and (min-width: 767px) {
    .heading.heading-5 {
        text-align: left;
    }
}

@media screen and (max-width: 991.98px) {
    .heading.heading-5 .heading-title {
        margin-bottom: 30px;
    }
}

@media screen and (min-width: 767px) and (max-width: 991px) {
    .heading.heading-5 .heading-title br {
        display: none;
    }
}

.heading.heading-6 .heading-title {
    font-size: 40px;
    line-height: 55px;
}

@media screen and (max-width: 767px) {
    .heading.heading-6 .heading-title {
        font-size: 24px;
        line-height: 32px;
    }
}

.heading.heading-7 {
    margin-bottom: 62px;
}

.heading.heading-7 .heading-desc {
    margin-top: 22px;
}

.heading.heading-8 {
    margin-bottom: 50px;
}

.heading-2 .heading-title {
    font-size: 33px;
}

@media only screen and (min-width: 320px) and (max-width: 500px) {
    .heading-2 .heading-title {
        font-size: 28px;
    }
}


/*------------------------------------*\
    #Skills
\*------------------------------------*/

.skills .progressbar {
    margin-bottom: 39px;
}

.skills .progressbar:last-of-type {
    margin-bottom: 0;
}

.skills .progress {
    height: 4px;
    background-color: #eeeeee;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
    width: 100%;
    margin-bottom: 0;
}

.skills .progress-bar {
    height: 4px;
    background-color: var(--global--color-primary);
    border-radius: 2px;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 0;
}

.skills .progress-title {
    display: block;
    position: relative;
    width: 100%;
    margin-bottom: 8px;
    line-height: 1;
}

.skills .progress-title .title {
    color: var(--global--color-heading);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2px;
    text-transform: capitalize;
}

.skills .progress-title .value {
    font-family: var(--global--font-heading);
    color: var(--global--color-body);
    font-size: 14px;
    line-height: 19px;
    font-weight: 700;
    line-height: inherit;
    text-transform: uppercase;
    padding-top: 0;
    position: absolute;
    margin-left: -27px;
    opacity: 0;
    -webkit-transition: opacity 500ms 300ms linear;
    -o-transition: opacity 500ms 300ms linear;
    transition: opacity 500ms 300ms linear;
}

.skills.skills-1 {
    padding-top: 120px;
    padding-bottom: 114px;
}

@media screen and (max-width: 991.98px) {
    .skills.skills-1 {
        padding-top: 70px;
        padding-bottom: 64px;
    }
}

.skills.skills-1 .heading {
    margin-bottom: 0;
}

@media screen and (max-width: 991.98px) {
    .skills.skills-1 .heading {
        margin-bottom: 30px;
    }
}

.circle-progresses {
    padding-top: 110px;
    padding-bottom: 100px;
}

@media screen and (max-width: 991.98px) {
    .circle-progresses {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}


/* Custom, iPhone Retina */

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .skills .heading {
        margin-bottom: 30px;
    }
}


/* Small Devices, Tablets */

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .skills .heading {
        margin-bottom: 30px;
    }
}


/*------------------------------------*\
    #slider
\*------------------------------------*/

.slider {
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
}

.slider .slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 800px;
}

@media screen and (max-width: 425px) {
    .slider .slide {
        min-height: 750px;
    }
}

@media screen and (min-width: 426px) and (max-width: 991px) {
    .slider .slide {
        min-height: 550px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    .slider .slide {
        min-height: 700px;
    }
}

@media screen and (max-width: 767.98px) {
    .slider .slide .slider-content {
        text-align: center;
    }
}

@media screen and (max-width: 767.98px) {
    .slider .slider-content3 {
        text-align: center;
    }
}

.slider .slider-content3 .slider-desc {
    margin-bottom: 32px;
}

.slider .slider-content3 .slider-headline {
    margin-bottom: 38px;
}

@media screen and (max-width: 410px) {
    .slider .btn {
        margin-bottom: 20px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 426px) {
    .slider .btn {
        display: block;
        width: 140px;
        margin: 0 auto 20px !important;
    }
    .slider .btn.btn--video {
        width: 200px;
    }
}

.slider .slider-subheadline {
    font-family: var(--global--font-heading);
    color: var(--global--color-white);
    font-size: 16px;
    line-height: 27px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 18px;
}

.slider .slider-headline {
    font-family: var(--global--font-heading);
    color: var(--global--color-white);
    font-size: 70px;
    font-weight: 700;
    line-height: 75px;
    margin-bottom: 15px;
    text-transform: capitalize;
}

@media only screen and (max-width: 767px) {
    .slider .slider-headline {
        font-size: 32px;
        line-height: 45px;
        margin-top: 0;
        margin-bottom: 15px;
        max-width: 400px;
        margin-right: auto;
        margin-left: auto;
    }
    .slider .slider-headline br {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider .slider-headline {
        font-size: 45px;
        line-height: 55px;
        margin-top: 0;
    }
    .slider .slider-headline br {
        display: none;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .slider .slider-headline {
        font-size: 60px;
        line-height: 70px;
        margin-top: 0;
    }
}

.slider .slider-desc {
    font-family: var(--global--font-body);
    color: var(--global--color-white);
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    margin: 0 auto 33px auto;
    max-width: 650px;
}

@media only screen and (max-width: 767px) {
    .slider .slider-desc {
        font-size: 16px;
        line-height: 24px;
        padding: 0 20px;
        max-width: 400px;
        margin-right: auto;
        margin-left: auto;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider .slider-desc {
        font-size: 16px;
        padding: 0 60px;
    }
}

.slider .btn--video {
    color: white;
    font-size: 13px;
    font-weight: 700;
    line-height: 51px;
    text-transform: uppercase;
    width: auto;
}

.slider .btn--video:hover {
    color: var(--global--color-primary);
}

.slider .btn--video:hover i {
    background-color: var(--global--color-primary);
    color: white;
}

.slider .btn--video i {
    display: inline-block;
    width: 51px;
    height: 51px;
    line-height: 51px;
    border-radius: 51px;
    background-color: white;
    color: var(--global--color-heading);
    margin-right: 12px;
}

.slider .carousel-navs .owl-nav [class*="owl-"] {
    color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 45px;
    opacity: 0.5;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.slider .carousel-navs .owl-nav [class*="owl-"]:hover {
    opacity: 1;
    color: white;
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .slider .carousel-navs .owl-nav [class*="owl-"] {
        display: none;
    }
}

.slider .carousel-navs .owl-nav .owl-next:before,
.slider .carousel-navs .owl-nav .owl-prev:before {
    font-family: "icomoon" !important;
    font-size: 9px;
}

.slider .carousel-navs .owl-nav .owl-prev:before {
    content: "\e907";
}

.slider .carousel-navs .owl-nav .owl-next:before {
    content: "\e908";
}

.slider .carousel-navs .owl-nav .owl-next {
    right: 35px;
}

.slider .carousel-navs .owl-nav .owl-prev {
    left: 35px;
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .slider .carousel-dots {
        margin-top: 0;
    }
}

.slider .owl-dots {
    bottom: 25px;
    margin: 0;
}

.slider .owl-dots .owl-dot span {
    background-color: var(--global--color-white);
}

.slider .owl-dots .owl-dot.active span {
    background-color: var(--global--color-primary);
}

.slider .scroll--btn {
    position: absolute;
    bottom: 0;
    left: 50%;
    display: inline-block;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 700;
    color: var(--global--color-white);
    z-index: 5;
    padding: 30px 0;
}

.slider .scroll--btn:before,
.slider .scroll--btn:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.5);
}

.slider .scroll--btn:after {
    top: auto;
    bottom: 0;
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .slider.slider-2 .slider-desc {
        padding: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider.slider-2 .slider-desc {
        padding: 0 160px 0 0;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .slider.slider-4 .slider-headline {
        font-size: 50px;
        line-height: 1.5;
    }
}

.slider.slider-4 .slider-desc {
    padding: 0 130px 0 0;
    max-width: 770px;
    margin: 0 0 33px 0;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .slider.slider-4 .slider-desc {
        padding-right: 25px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .slider.slider-4 .slider-desc {
        padding: 0 20px;
        max-width: 390px;
        margin-right: auto;
        margin-left: auto;
    }
    .slider.slider-4 .slider-desc br {
        display: none;
    }
}

.slider.slider-4 .carousel-navs .owl-nav .owl-prev {
    left: 0px;
}

.slider.slider-4 .carousel-navs .owl-nav .owl-next {
    right: 0px;
}

.hero {
    overflow: visible;
}

@media screen and (min-width: 992px) {
    .hero {
        padding-bottom: 0;
    }
}

.hero .hero-content {
    padding-top: 175px;
}

@media screen and (max-width: 991.98px) {
    .hero .hero-content {
        text-align: center;
        padding-top: 90px;
    }
}

.hero .hero-content .hero-subtitle {
    font-family: var(--global--font-heading);
    color: var(--global--color-gray);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
    .hero .hero-content .hero-subtitle {
        margin-bottom: 0;
    }
}

.hero .hero-content .hero-title {
    color: var(--global--color-white);
    font-size: 70px;
    line-height: 75px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 20px;
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    .hero .hero-content .hero-title {
        font-size: 50px;
        line-height: 55px;
    }
}

@media screen and (max-width: 767px) {
    .hero .hero-content .hero-title {
        font-size: 42px;
        line-height: 55px;
    }
}

.hero .hero-content .hero-desc {
    color: var(--global--color-white);
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    margin-bottom: 34px;
}

@media screen and (min-width: 992px) {
    .hero .mockup--img {
        -webkit-transform: translate(-120px, 70px);
        -ms-transform: translate(-120px, 70px);
        transform: translate(-120px, 70px);
    }
}

@media screen and (max-width: 767px) {
    .hero .mockup--img {
        -webkit-transform: translate(-120px, 62px);
        -ms-transform: translate(-120px, 62px);
        transform: translate(-120px, 62px);
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .hero .mockup--img {
        -webkit-transform: translate(-50px, 62px);
        -ms-transform: translate(-50px, 62px);
        transform: translate(-50px, 62px);
    }
}

.hero.hero-2 {
    padding-bottom: 100px;
}

@media screen and (max-width: 991.98px) {
    .hero.hero-2 {
        padding-bottom: 70px;
    }
}

.hero.hero-2 .heading {
    padding-top: 190px;
}

@media screen and (max-width: 991.98px) {
    .hero.hero-2 .heading {
        padding-top: 100px;
    }
}

.hero.hero-2 .heading .heading-title {
    font-size: 64px;
    line-height: 75px;
    margin-bottom: 26px;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .hero.hero-2 .heading .heading-title {
        font-size: 45px;
        line-height: 1.5;
    }
}

@media screen and (max-width: 767px) {
    .hero.hero-2 .heading .heading-title {
        font-size: 32px;
        line-height: 40px;
    }
}

.hero.hero-2 .heading .heading-desc {
    line-height: 27px;
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .hero.hero-2 .btn:first-child {
        margin-right: 30px;
    }
}

@media screen and (max-width: 410px) {
    .hero .btn {
        margin-bottom: 20px;
    }
}

.hero .btn.btn--video {
    color: white;
    font-size: 13px;
    font-weight: 700;
    line-height: 51px;
    text-transform: capitalize;
    width: auto;
}

.hero .btn.btn--video:hover {
    color: var(--global--color-primary);
}

.hero .btn.btn--video:hover i {
    background-color: var(--global--color-primary);
    color: white;
}

.hero .btn.btn--video i {
    display: inline-block;
    width: 51px;
    height: 51px;
    line-height: 51px;
    border-radius: 51px;
    background-color: white;
    color: var(--global--color-heading);
    margin-right: 12px;
}

.hero .contact {
    padding: 0;
}

@media screen and (min-width: 992px) {
    .hero .contact {
        margin-top: 100px;
    }
}

.hero .contact .contact-card {
    padding: 67px 70px 70px;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .hero .contact .contact-card {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media screen and (max-width: 767px) {
    .hero .contact .contact-card {
        padding: 67px 27px 70px;
    }
}

.hero .contact .contact-card .heading {
    padding-top: 0;
    margin-bottom: 0;
    text-align: center;
}

@media screen and (min-width: 992px) {
    .hero .contact .contact-card .heading {
        text-align: left;
    }
}

.hero .contact .contact-card .heading .heading-subtitle {
    font-size: 18px;
    margin-bottom: 18px;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .hero .contact .contact-card .heading .heading-subtitle {
        font-size: 16px;
        line-height: 1.5;
    }
}

.hero .contact .contact-card .heading .heading-title {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 41px;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .hero .contact .contact-card .heading .heading-title {
        font-size: 21px;
        line-height: 1.5;
    }
}

@media screen and (max-width: 767px) {
    .hero .contact .contact-card .heading .heading-title {
        font-size: 22px;
        line-height: 32px;
    }
}

.hero .contact .contact-card .contact-body .btn {
    width: 100%;
}

.hero.hero-3 {
    height: 800px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.hero.hero-3 .heading img {
    max-width: 100%;
}

.hero.hero-3 .heading .heading-desc {
    font-family: var(--global--font-heading);
    font-weight: 600;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 32px;
}

.hero.hero-4 {
    height: 100vh;
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
}

.hero.hero-4 .heading {
    position: relative;
    z-index: 2;
    padding-top: 0;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media screen and (max-width: 991.98px) {
    .hero.hero-4 .heading {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.hero.hero-4 .heading img {
    margin-bottom: 30px;
}

.hero.hero-4 .heading .heading-title {
    color: var(--global--color-white);
    font-size: 46px;
    line-height: 60px;
    font-weight: 700;
    margin-bottom: 40px;
}

.hero.hero-4 .mockup--img {
    width: 70%;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
    z-index: 0;
}

@media screen and (max-width: 991.98px) {
    .hero.hero-4 .mockup--img {
        display: none;
    }
}

.hero.hero-5 {
    padding-top: 255px;
}

@media screen and (max-width: 767.98px) {
    .hero.hero-5 {
        padding-top: 175px;
        padding-bottom: 0;
    }
}

.hero.hero-5 .heading {
    margin-bottom: 42px;
}

@media screen and (max-width: 767.98px) {
    .hero.hero-5 .heading {
        margin-bottom: 0;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .hero.hero-5 .heading .heading-title {
        font-size: 32px;
        line-height: 1.5;
    }
}

@media screen and (max-width: 767.98px) {
    .hero.hero-5 .heading .heading-title {
        font-size: 24px;
        line-height: 1.5;
    }
}


/*------------------------------------*\
    #BLOG-SECTION
\*------------------------------------*/

.blog-p-1 {
    padding-bottom: 67px;
}

@media screen and (max-width: 991.98px) {
    .blog-p-1 {
        padding-bottom: 20px;
    }
}

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

.blog-entry .entry-img {
    position: relative;
    overflow: hidden;
}

.blog-entry .entry-img:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.blog-entry .entry-img img {
    -webkit-transition: 300ms all ease-in-out;
    -o-transition: 300ms all ease-in-out;
    transition: 300ms all ease-in-out;
    max-width: 100%;
    height: auto;
}

.blog-entry .entry-content {
    padding: 22px 25px 0 0;
    position: relative;
}

.blog-entry .entry-date {
    position: absolute;
    top: 30px;
    left: -10px;
    width: 60px;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--global--color-primary);
    color: white;
    font-family: var(--global--font-body);
    text-transform: capitalize;
    font-weight: 600;
    padding: 7px 0 9px;
}

.blog-entry .entry-date .month {
    font-size: 14px;
    -webkit-transform: translateY(12px);
    -ms-transform: translateY(12px);
    transform: translateY(12px);
}

.blog-entry .entry-date .date {
    font-size: 34px;
}

.blog-entry .entry-category {
    color: var(--global--color-primary);
    font-family: var(--global--font-body);
    font-size: 14px;
    font-weight: 600;
    line-height: 26px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.blog-entry .entry-category a::after {
    content: ", ";
    position: relative;
}

.blog-entry .entry-category a:last-of-type::after {
    content: "";
}

.blog-entry .entry-category a:hover {
    color: var(--global--color-heading);
}

.blog-entry .entry-title {
    margin-bottom: 17px;
}

.blog-entry .entry-title h4 {
    color: var(--global--color-heading);
    font-size: 20px;
    font-weight: 700;
    line-height: 29px;
    margin-bottom: 0;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .blog-entry .entry-title h4 {
        font-size: 18px;
    }
}

.blog-entry .entry-title a {
    color: var(--global--color-heading);
}

.blog-entry .entry-title a:hover {
    color: var(--global--color-primary);
}

.blog-entry .entry-bio p {
    font-family: var(--global--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    margin-bottom: 21px;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .blog-entry .entry-bio p {
        font-size: 15px;
    }
}

.blog-entry .entry-author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.blog-entry .entry-author img {
    margin-right: 10px;
    border-radius: 50%;
}

.blog-entry .entry-author span {
    font-family: var(--global--font-body);
    font-size: 14px;
    font-weight: 600;
    line-height: 26px;
    color: #616161;
    text-transform: capitalize;
    margin-bottom: 0;
}

.blog-entry .entry-author span i {
    font-style: normal;
    color: var(--global--color-secondary);
}


/* Blog Standard */

.blog-standard .entry-img {
    margin-bottom: 17px;
}

.blog-standard .blog-entry {
    margin-bottom: 43px;
}

.blog-standard .blog-entry:last-of-type {
    margin-bottom: 50px;
}

.blog-standard .blog-entry .entry-type,
.blog-standard .blog-entry .entry-author {
    margin-bottom: 0;
    display: inline-block;
    margin-right: 12px;
}

.blog-standard .blog-entry .entry-author {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 26px;
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
    transform: translateY(5px);
}

.blog-standard .blog-entry .entry-date {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: var(--global--color-white);
    margin-right: 16px;
}

.blog-standard .blog-entry .entry-date .month {
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
}

.blog-standard .entry-content {
    padding: 14px 25px 0 0;
}

.blog-standard .entry-meta-container {
    padding-left: 0;
}

.blog-standard .entry-meta-author,
.blog-standard .entry-meta-comment,
.blog-standard .entry-meta,
.blog-standard .entry-date {
    display: inline-block;
    font-family: var(--global--font-body);
    font-size: 14px;
    font-weight: 600;
    line-height: 26px;
    color: #616161;
}

.blog-standard .entry-category {
    display: inline-block;
    margin-right: 17px;
}

.blog-standard .entry-meta-author img {
    margin-right: 8px;
}

.blog-standard .entry-title {
    margin-top: 6px;
    margin-bottom: 0px;
}

.blog-standard .entry-title h4 {
    font-size: 28px;
    line-height: 36px;
}

.blog-standard .entry-bio {
    margin-bottom: 18px;
}

.blog-standard .entry-bio p {
    font-family: var(--global--font-body);
    color: var(--global--font-heading);
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 16px;
}

.blog-standard .entry-more a {
    font-family: var(--global--font-heading);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 13px;
    color: var(--global--color-primary);
    position: relative;
}

.blog-standard .entry-more a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: var(--global--color-primary);
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.blog-standard .entry-more:hover a {
    color: var(--global--color-heading);
}

.blog-standard .entry-more:hover a::after {
    background-color: var(--global--color-heading);
}


/* Blog Single */

.blog-single .blog-entry:hover .entry-img {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.blog-single .entry-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 13px;
    border-bottom: 2px solid #9999994a;
}

@media screen and (max-width: 991.98px) {
    .blog-single .entry-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media screen and (min-width: 992px) {
    .blog-single .entry-container {
        padding-bottom: 40px;
    }
}

.blog-single .entry-container .entry-share {
    padding: 0;
    border-bottom: 0;
    border-top: 0;
    margin-bottom: 0;
}

@media screen and (max-width: 991.98px) {
    .blog-single .entry-container .entry-share {
        margin-bottom: 40px;
    }
}

.blog-single .entry-container .entry-tags {
    margin-bottom: 0;
}

@media screen and (max-width: 991.98px) {
    .blog-single .entry-container .entry-tags {
        margin-bottom: 20px;
    }
}

.blog-single .entry-container .entry-tags a {
    margin-bottom: 0;
}

@media screen and (max-width: 991.98px) {
    .blog-single .entry-container .entry-tags a {
        margin-bottom: 10px;
    }
}

.blog-single .entry-share {
    border-top: 1px solid var(--global--color-gray-light);
    border-bottom: 1px solid var(--global--color-gray-light);
    padding: 40px 0;
    line-height: 1;
    text-align: center;
    margin-bottom: 40px;
}

.blog-single .entry-share a {
    color: #333333;
    font-size: 17px;
    margin-right: 18px;
}

.blog-single .entry-share a:hover {
    color: var(--global--color-primary);
}

.blog-single .entry-share a:last-child {
    margin-right: 0;
}

.blog-single .entry-share .share--title {
    color: var(--global--color-heading);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 0;
    margin-right: 26px;
    display: inline-block;
}

.blog-single .entry-tags {
    margin-bottom: 30px;
}

.blog-single .entry-tags a {
    font-family: var(--global--font-heading);
    display: inline-block;
    background-color: var(--global--color-primary);
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    color: var(--global--color-white);
    margin-right: 9px;
    margin-bottom: 10px;
    text-transform: capitalize;
    padding: 9px 12px;
    border-radius: 3px;
}

.blog-single .entry-tags a:hover {
    background-color: var(--global--color-heading);
}

.blog-single .entry-tags a:last-of-type {
    margin-right: 0;
}

.blog-single .entry-bio p {
    margin-bottom: 21px;
}

.blog-single .nav-posts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 35px;
    text-transform: capitalize;
}

@media screen and (max-width: 991.98px) {
    .blog-single .nav-posts {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.blog-single .nav-posts span {
    display: block;
    margin-bottom: 22px;
    font-family: var(--global--font-body);
    font-size: 15px;
    line-height: 1px;
    color: #b8b8b8;
}

.blog-single .nav-posts a {
    font-family: var(--global--font-heading);
    font-weight: 600;
    font-size: 15px;
    line-height: 22px;
    color: var(--global--color-secondary);
    -webkit-transition: 300ms ease-in-out;
    -o-transition: 300ms ease-in-out;
    transition: 300ms ease-in-out;
}

.blog-single .nav-posts a:hover {
    color: var(--global--color-primary);
}

@media screen and (min-width: 992px) {
    .blog-single .nav-posts .prev-post,
    .blog-single .nav-posts .next-post {
        -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
    }
}

.blog-single .nav-posts .prev-post {
    text-align: left;
}

@media screen and (max-width: 991.98px) {
    .blog-single .nav-posts .prev-post {
        margin-bottom: 38px;
        text-align: center;
    }
}

.blog-single .nav-posts .next-post {
    text-align: right;
}

@media screen and (max-width: 991.98px) {
    .blog-single .nav-posts .next-post {
        text-align: center;
    }
}

.blog-single .entry-content {
    padding-bottom: 0;
    border-bottom: 0;
}

.blog-single .entry-widget .entry-widget-title {
    position: relative;
    padding-top: 10px;
    margin-bottom: 21px;
}

.blog-single .entry-widget .entry-widget-title h4 {
    font-family: var(--global--font-heading);
    font-size: 19px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 0;
    position: relative;
    text-transform: capitalize;
}

.blog-single .entry-widget-bio {
    padding: 40px 40px 35px;
    background-color: #f5f5f5;
}

@media screen and (max-width: 767.98px) {
    .blog-single .entry-widget-bio {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.blog-single .entry-widget-bio .entry-widget-content {
    position: relative;
}

@media screen and (min-width: 768px) {
    .blog-single .entry-widget-bio img {
        position: absolute;
        left: 0;
        top: 0;
    }
}

@media screen and (max-width: 767.98px) {
    .blog-single .entry-widget-bio img {
        margin: 0 auto 30px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media screen and (min-width: 768px) {
    .blog-single .entry-widget-bio .entry-bio-desc {
        padding-left: 120px;
    }
}

.blog-single .entry-widget-bio .entry-bio-desc h4 {
    color: var(--global--color-heading);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 14px;
}

.blog-single .entry-widget-bio .entry-bio-desc p {
    color: var(--global--color-body);
    font-size: 15px;
    font-family: var(--global--font-body);
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 17px;
}

.blog-single .entry-widget-bio .entry-bio-desc a {
    color: #333;
    font-size: 17px;
    font-weight: 400;
    line-height: 1;
    margin-right: 18px;
}

.blog-single .entry-widget-bio .entry-bio-desc a:last-child {
    margin-right: 0;
}

.blog-single ul.comments-list {
    width: 100%;
    list-style: none;
    overflow: hidden;
    padding-left: 0;
    margin-bottom: 0;
}

.blog-single ul.comments-list li {
    position: relative;
    margin-bottom: 30px;
}

.blog-single ul.comments-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.blog-single ul.comments-list li:last-child .comment {
    border-bottom: none;
}

.blog-single ul.comments-list li ul.replies-list {
    margin-top: 25px;
    padding-top: 30px;
    border-top: 2px solid #9999994a;
}

.blog-single ul.comments-list li:last-child ul.replies-list {
    margin-top: 25px;
    padding-top: 30px;
    border-top: 2px solid #9999994a;
}

.blog-single ul.comments-list li:last-child ul.replies-list .comment {
    border-bottom: 2px solid #9999994a;
}

.blog-single ul.comments-list li:last-child ul.replies-list .comment-body:last-child .comment {
    border: 0;
}

.blog-single ul.comments-list .comment-body .avatar {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
    overflow: hidden;
}

@media screen and (max-width: 767.98px) {
    .blog-single ul.comments-list .comment-body .avatar {
        position: relative;
        top: auto;
        right: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 30px;
    }
}

.blog-single ul.comments-list .comment-body .comment {
    padding-bottom: 25px;
    border-bottom: 2px solid #9999994a;
}

@media screen and (min-width: 768px) {
    .blog-single ul.comments-list .comment-body .comment {
        margin-left: 90px;
    }
}

.blog-single ul.comments-list .comment-body .comment h6 {
    font-size: 14px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 0;
    line-height: 22px;
}

.blog-single ul.comments-list .comment-body .comment .date {
    color: #616161;
    font-family: var(--global--font-body);
    font-size: 14px;
    font-weight: 600;
    line-height: 26px;
    margin-bottom: 5px;
}

.blog-single ul.comments-list .comment-body .comment p {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 8px;
}

.blog-single ul.comments-list .comment-body .comment a.reply {
    font-family: var(--global--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--global--color-primary);
    line-height: 1;
    display: inline-block;
}

.blog-single ul.comments-list .comment-body .comment a.reply:hover {
    color: var(--global--color-heading);
}

.blog-single ul.comments-list ul.comment-children {
    list-style: none;
    margin: 20px 0 0 90px;
    padding-top: 30px;
    padding-left: 0;
    border-bottom: 2px solid #9999994a;
}

.blog-single ul.comments-list ul.comment-children .comment-body .comment {
    padding-left: 90px;
}

.blog-single ul.comments-list ul.comment-children li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

@media screen and (max-width: 767.98px) {
    .blog-single ul.replies-list {
        padding-left: 25px;
    }
}

.blog-single ul.replies-list li {
    position: relative;
    margin-bottom: 30px;
}

.blog-single ul.replies-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.blog-single ul.replies-list li:last-child .comment {
    border-bottom: none;
}

.blog-single ul.replies-list .comment-body .comment {
    padding-bottom: 25px;
    border-bottom: 2px solid #9999994a;
}

.blog-single .entry-add-comment {
    padding-top: 40px;
    border-top: 2px solid #9999994a;
}

.blog-single .entry-add-comment .form-control {
    margin-bottom: 30px;
}

.blog-single .entry-add-comment .btn {
    text-transform: uppercase;
    border-radius: 0;
    border: 1px solid var(--global--color-primary);
}


/* Custom, iPhone Retina */

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .blog-entry {
        max-width: 370px;
        margin: 0 auto 30px;
    }
    .blog-entry .entry-content {
        padding-left: 0;
        padding-right: 0;
    }
    .blog-standard .blog-entry:hover .entry-img {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    .blog-standard .entry-meta-container {
        padding-left: 0;
    }
    .blog-standard .entry-meta-author,
    .blog-standard .entry-meta-comment,
    .blog-standard .entry-meta,
    .blog-standard .entry-date {
        margin-right: 7px;
        margin-bottom: 10px;
    }
    .blog-standard .entry-title h4 {
        font-size: 20px;
        line-height: 28px;
    }
}


/* Small Devices, Tablets */

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog-entry .entry-content {
        padding-left: 0;
        padding-right: 0;
    }
    .col-md-4 .blog-entry .entry-title h4 {
        font-size: 15px;
    }
    .blog-standard .entry-meta-container {
        padding-left: 0;
    }
}


/*------------------------------------*\
    #Shop
\*------------------------------------*/


/* Product Item */

.product-item {
    position: relative;
    margin-bottom: 67px;
    border-radius: 0;
    text-align: center;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.product-item:hover .product--action {
    opacity: 1;
}

.product-item:hover .btn {
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    opacity: 1;
}

.product-item .product--img {
    position: relative;
    border-radius: 0;
    overflow: hidden;
}

.product-item .product--img img {
    max-width: 100%;
    height: auto;
    margin-bottom: 0;
}

.product-item .badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--global--color-white);
    background-color: #f9c400;
    text-transform: capitalize;
    border-radius: 0;
    padding: 8px 12px;
}

.product-item .badge.badge-sale {
    background-color: #ff0000;
}

.product-item .product--action {
    position: absolute;
    left: 0;
    top: 30px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: transparent;
    overflow: hidden;
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.product-item .product--action .btn {
    border-radius: 0;
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.product-item .product--action .btn:hover {
    background-color: var(--global--color-heading);
    border-color: var(--global--color-heading);
    color: var(--global--color-white);
}

.product-item .product--action .btn:hover i {
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.product-item .btn {
    position: absolute;
    left: 50%;
    bottom: 30px;
    width: 190px;
    text-align: center;
    -webkit-transform: translate(-50%, 90px);
    -ms-transform: translate(-50%, 90px);
    transform: translate(-50%, 90px);
    text-transform: capitalize;
}

.product-item .product--content {
    position: relative;
    padding: 25px 25px 0 25px;
    background-color: var(--global--color-white);
    z-index: 2;
}

.product-item .product--price {
    font-family: var(--global--font-heading);
    color: var(--global--color-primary);
    font-size: 17px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0;
}

.product-item .product--title h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 13px;
    color: var(--global--color-secondary);
}

.product-item .product--title a {
    color: var(--global--color-heading);
}

.product-item .product--title a:hover {
    color: var(--global--color-primary);
}


/* Shop Options */

.shop-options {
    padding: 20px;
    background-color: var(--global--color-gray);
    border-radius: 6px;
    margin-bottom: 30px;
}

.shop-options .product-options2 span,
.shop-options .product-view-mode span {
    color: var(--global--color-heading);
    font-size: 12px;
    font-weight: 700;
    line-height: 20px;
    margin-right: 10px;
}

.shop-options .product-options2 .product-sort {
    position: relative;
    margin-right: 30px;
}

.shop-options .product-options2 .product-sort i {
    position: absolute;
    font-size: 14px;
    right: 10px;
    top: 8px;
    z-index: 1;
    pointer-events: none;
    cursor: pointer;
    color: var(--global--color-body);
}

.shop-options .product-options2 select {
    height: 30px;
    line-height: 30px;
    width: 134px;
    background-color: var(--global--color-white);
    border: 1px solid #eeeeee;
    border-radius: 3px;
    color: var(--global--color-body);
    font-size: 12px;
    font-weight: 400;
    padding-left: 10px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.shop-options .product-view-mode {
    line-height: 30px;
}

.shop-options .product-view-mode a i {
    background-color: var(--global--color-white);
    border: 1px solid #eee;
    border-radius: 0;
    color: var(--global--color-body);
    font-size: 14px;
    font-weight: 400;
    margin-left: 10px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
}

.shop-options .product-view-mode a:first-of-type i {
    margin-left: 0;
}

.shop-options .product-view-mode a.active i,
.shop-options .product-view-mode a:hover i {
    color: var(--global--color-primary);
}

.product-list {
    width: 100%;
    text-align: left;
    min-height: 340px;
    margin-bottom: 0;
}

.product-list .product--img {
    float: left;
    width: 33%;
}

.product-list .product--content {
    padding-left: 300px;
}


/* Shop Single */

.single-product .sidebar-shop .widget-recent-products .product .product-img {
    margin-bottom: 0;
}

.single-product .sidebar-shop .widget-recent-products .product .product-desc {
    padding-bottom: 0;
}

.single-product .product-img {
    margin-bottom: 45px;
}

.single-product .product-title h3 {
    color: var(--global--color-secondary);
    font-size: 18px;
    font-weight: 800;
    line-height: 27px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.single-product .product-price {
    color: var(--global--color-primary);
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
}

.single-product .product-rating {
    margin-right: 30px;
}

.single-product .product-rating i {
    color: var(--global--color-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
}

.single-product .product-rating i.active {
    color: #e6ae48;
}

.single-product .product-review span {
    color: var(--global--color-body);
    font-size: 13px;
    line-height: 1;
    font-weight: 400;
}

.single-product .product-review span a {
    color: var(--global--color-body);
}

.single-product .product-review span a:hover {
    color: var(--global--color-primary);
}

.single-product .product-desc {
    padding-bottom: 25px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--global--color-gray-light);
}

.single-product .product-desc p {
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 17px;
}

.single-product .product-details h5,
.single-product .product-share h5 {
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 19px;
}

.single-product .product-details {
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--global--color-gray-light);
}

.single-product .product-details ul {
    margin-bottom: 32px;
}

.single-product .product-details ul li {
    line-height: 26px;
    color: var(--global--color-primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: capitalize;
}

.single-product .product-details ul li span {
    color: #959595;
}

.single-product .product-quantity {
    line-height: 49px;
}

.single-product .product-quantity .qua {
    font-family: var(--global--font-heading);
    color: var(--global--color-heading);
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    margin-right: 10px;
}

.single-product .product-quantity a i {
    width: 25px;
    height: 25px;
    font-size: 10px;
    line-height: 25px;
    border: 1px solid #eee;
    border-radius: 1px;
    color: var(--global--color-primary);
    text-align: center;
}

.single-product .product-quantity input {
    width: 30px;
    height: 25px;
    border: 1px solid #eee;
    border-radius: 1px;
    color: var(--global--color-heading);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
    background-color: transparent;
}

.single-product .product-cta {
    padding-bottom: 30px;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--global--color-gray-light);
}

.single-product .product-cta .btn {
    margin-left: 20px;
    width: 134px;
    height: 42px;
    line-height: 40px;
    text-transform: capitalize;
    font-size: 14px;
}

.single-product .product-share {
    margin-bottom: 50px;
}

.single-product .product-share a {
    width: 34px;
    height: 34px;
    line-height: 34px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 400;
    color: var(--global--color-white);
    text-align: center;
    display: inline-block;
    background-color: var(--global--color-primary);
    margin-right: 3px;
    -webkit-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
}

.single-product .product-share a:hover {
    background-color: var(--global--color-heading);
}

.single-product .product-tabs {
    background-color: var(--global--color-white);
    border: 1px solid #eee;
    border-radius: 1px;
    color: var(--global--color-body);
    font-size: 13px;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 50px;
}

.single-product .product-tabs .nav-pills {
    background-color: var(--global--color-gray);
}

.single-product .product-tabs .nav-pills li {
    margin-bottom: -1px;
}

.single-product .product-tabs .nav-pills li a {
    color: var(--global--color-heading);
    font-size: 14px;
    font-weight: 700;
    font-family: var(--global--font-heading);
    text-transform: capitalize;
    border-radius: 0;
    padding: 0 20px;
    border-right: 1px solid #eeeeee;
    margin-right: 0;
    line-height: 60px;
    height: 60px;
    display: block;
}

.single-product .product-tabs .nav-pills li a:focus,
.single-product .product-tabs .nav-pills li a:hover {
    background-color: transparent;
    border-left-color: transparent;
    border-top-color: transparent;
    border-bottom-color: transparent;
    color: var(--global--color-primary) !important;
}

.single-product .product-tabs .nav-pills li:last-child>a {
    border-right: none;
}

.single-product .product-tabs .nav-pills li>.active,
.single-product .product-tabs .nav-pills li>.active:focus,
.single-product .product-tabs .nav-pills li>.active:hover {
    color: var(--global--color-primary) !important;
    border: none;
    border-right: 1px solid #eee;
    background-color: var(--global--color-white);
}

.single-product .product-tabs .tab-content {
    padding: 20px;
}

.single-product .product-tabs .tab-content p {
    font-size: 15px;
    font-weight: 400;
    line-height: 23px;
}

.single-product .product-tabs .tab-content h5 {
    font-size: 13px;
}

.single-product .product-review li {
    background-color: var(--global--color-gray);
    padding: 20px;
    margin-bottom: 30px;
}

.single-product .product-review li h6 {
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 13px;
}

.single-product .product-review li .product-rating {
    color: var(--global--color-primary);
    margin-bottom: 10px;
}

.single-product .product-review .review-date {
    margin-bottom: 0;
}

.single-product .product-review .product-comment p {
    margin-bottom: 0;
}

.single-product .form-review .form-control {
    margin-bottom: 30px;
}


/*Shop Cart*/

.shop-cart .cart-table {
    margin-bottom: 50px;
}

.shop-cart .cart-table.table-responsive {
    min-height: 0.01%;
    overflow-x: auto;
}

.shop-cart .cart-table .table {
    background-color: var(--global--color-white);
    border: 1px solid #eee;
    border-radius: 0;
    margin-bottom: 0;
    color: var(--global--color-body);
}

.shop-cart .cart-table .table thead {
    background-color: var(--global--color-gray);
}

.shop-cart .cart-table .table tr:first-child th {
    border-top: 0;
}

.shop-cart .cart-table .table tr th {
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-transform: capitalize;
    color: var(--global--color-secondary);
    font-family: "Poppins", sans-serif;
    line-height: 55px !important;
    border-bottom-width: 0 !important;
    border-color: #eee;
    border-top-color: #eeeeee;
    padding: 0;
}

.shop-cart .cart-table .table tbody tr td {
    padding: 20px;
    border-color: #eee;
}

.shop-cart .cart-table .table tbody tr td.cart-product-price,
.shop-cart .cart-table .table tbody tr td.cart-product-total {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    line-height: 26px;
    color: var(--global--color-body);
    font-family: var(--global--font-body);
}

.shop-cart .cart-table .table tbody tr td.cart-product-item .cart-product-remove {
    float: right;
    width: 19px;
    height: 19px;
    line-height: 19px;
    font-size: 9px;
    background-color: #000;
    border-radius: 1px;
    color: var(--global--color-white);
    text-align: center;
    cursor: pointer;
}

.shop-cart .cart-table .table tbody tr td.cart-product-item .cart-product-img {
    float: left;
    padding-right: 20px;
}

.shop-cart .cart-table .table tbody tr td.cart-product-item .cart-product-name h6 {
    color: var(--global--color-heading);
    font-size: 16px;
    font-weight: 600;
    line-height: 27px;
    text-transform: capitalize;
    margin-bottom: 28px;
}

.shop-cart .cart-table .table tbody tr td.cart-product-quantity .product-quantity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 1px;
}

.shop-cart .cart-table .table tbody tr td.cart-product-quantity .product-quantity a {
    -webkit-transition: 300ms;
    -o-transition: 300ms;
    transition: 300ms;
}

.shop-cart .cart-table .table tbody tr td.cart-product-quantity .product-quantity a i {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border: 1px solid #eee;
    border-radius: 1px;
    color: var(--global--color-primary);
    margin-right: 5px;
    font-size: 10px;
}

.shop-cart .cart-table .table tbody tr td.cart-product-quantity .product-quantity input {
    width: 30px;
    height: 25px;
    border: 1px solid #eee;
    border-radius: 2px;
    text-align: center;
    color: var(--global--color-heading);
    font-family: var(--global--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    margin-right: 5px;
}

.shop-cart .cart-table .table tbody tr td.cart-product-quantity .product-quantity input.plus,
.shop-cart .cart-table .table tbody tr td.cart-product-quantity .product-quantity input.minus {
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    color: var(--global--color-primary);
}

.shop-cart .cart-table .table .cart-product-action .form-control {
    border-radius: 0;
    margin-bottom: 0;
    margin-right: 10px;
}

.shop-cart .cart-table .table .cart-product-action #coupon {
    height: 42px;
    line-height: 42px;
}

.shop-cart .cart-table .table .cart-product-action .btn {
    width: 134px;
    height: 42px;
    line-height: 39px;
    margin-right: 10px;
}

@media screen and (max-width: 575.98px) {
    .shop-cart .cart-table .table .cart-product-action .btn {
        margin-top: 20px;
    }
}

.shop-cart .cart-table .table .cart-product-action .btn:last-child {
    margin-right: 0;
}

.shop-cart .cart-shiping,
.shop-cart .cart-total-amount {
    background-color: white;
    border: 1px solid #eee;
    padding: 30px 20px;
}

.shop-cart .cart-shiping h6,
.shop-cart .cart-total-amount h6 {
    color: var(--global--color-secondary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.shop-cart .cart-shiping .select-container {
    position: relative;
}

.shop-cart .cart-shiping .select-container select {
    font-family: var(--global--font-body);
    line-height: 1.5;
    -webkit-appearance: none;
    appearance: none;
    -moz-appearance: textfield;
}

.shop-cart .cart-shiping .select-container .nice-select {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.shop-cart .cart-shiping .select-container .nice-select .list {
    width: 100%;
}

.shop-cart .cart-total-amount ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--global--color-primary);
    font-size: 13px;
    font-weight: 700;
    line-height: 36px;
    text-transform: uppercase;
}

.shop-cart .cart-total-amount ul li span {
    color: var(--global--color-body);
    font-family: var(--global--font-body);
    font-size: 13px;
    font-weight: 400;
    line-height: 36px;
    text-transform: capitalize;
}


/* Shop Checkout */

.shop-checkout {
    padding-bottom: 120px;
}

.shop-checkout .cart-empty,
.shop-checkout .cart-coupon {
    padding: 30px;
    background-color: #f5f5f5;
    border-top: 3px solid #1e85be;
    font-size: 18px;
    font-weight: 400;
    font-family: var(--global--font-body);
    line-height: 1;
    color: #515151;
    margin-bottom: 35px;
}

.shop-checkout .cart-empty a,
.shop-checkout .cart-coupon a {
    color: var(--global--color-primary);
}

.checkout-widget {
    background-color: var(--global--color-gray);
    padding: 20px;
    margin-bottom: 45px;
}

.checkout-widget .widget-title {
    margin-bottom: 15px;
}

.checkout-widget label {
    font-family: var(--global--font-heading);
    font-weight: 500;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 10px;
    text-transform: capitalize;
    color: var(--global--color-heading);
    display: block;
}

.checkout-widget label .required {
    margin-left: 3px;
    color: red;
}

.checkout-widget .form-control {
    background-color: var(--global--color-white);
    margin-bottom: 12px;
}

.checkout-widget .nice-select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

.checkout-widget .nice-select .list {
    width: 100%;
}

.your-order {
    margin-bottom: 53px;
}

.your-order h5 {
    text-transform: capitalize;
}

.your-order .table-order {
    background-color: var(--global--color-gray);
    padding: 30px 30px 12px;
}

.your-order .table-order table {
    width: 100%;
}

.your-order .table-order table thead .order-heading {
    border-bottom: 1px solid var(--global--color-gray-light);
}

.your-order .table-order table thead .order-heading th {
    font-family: var(--global--font-body);
    font-size: 16px;
    color: var(--global--color-heading);
    font-weight: 700;
    text-transform: capitalize;
    padding-bottom: 3px;
}

.your-order .table-order table tbody tr {
    border-bottom: 1px solid var(--global--color-gray-light);
}

.your-order .table-order table tbody tr:last-child {
    border-bottom: 0;
}

.your-order .table-order table tbody tr td {
    font-family: var(--global--font-body);
    font-size: 14px;
    color: var(--global--color-heading);
    text-transform: capitalize;
    font-weight: 700;
    padding-top: 13px;
    padding-bottom: 13px;
}

.your-order .table-order table tbody tr td:last-of-type {
    font-weight: 400;
    color: var(--global--color-body);
}

.your-order .table-order table tbody tr td.product-name {
    padding-left: 10px;
}

.your-order .table-order table tbody tr.cart-total td:last-of-type {
    font-weight: 700;
    color: var(--global--color-heading);
}

.payment {
    background-color: var(--global--color-gray);
    padding: 33px 15px;
}

.payment .payment-method {
    margin: 0 15px;
}

.payment .payment-method .no-payment {
    border-top: 3px solid #1e85be;
    padding: 27px 0;
}

.payment .payment-method .no-payment p {
    font-family: var(--global--font-body);
    padding: 0 30px;
    font-size: 18px;
    line-height: 2;
    font-weight: 500;
    color: var(--global--color-heading);
}

.payment .payment-conditions {
    margin: 0 15px;
}

.payment .payment-conditions .message {
    padding-top: 10px;
    font-family: var(--global--font-body);
    font-size: 17px;
    line-height: 2;
    color: var(--global--color-body);
    font-weight: 400;
    margin-bottom: 30px;
}

.payment .payment-conditions label {
    text-transform: capitalize;
    font-weight: 500;
    color: var(--global--color-heading);
    font-size: 16px;
    margin-bottom: 30px;
}

.payment .payment-conditions label a {
    color: var(--global--color-primary);
}

.login {
    padding-bottom: 140px;
}

.login .login-body {
    background-color: var(--global--color-gray);
    padding: 40px;
}

.login .login-body label {
    font-family: var(--global--font-heading);
    font-weight: 500;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 5px;
    text-transform: capitalize;
    color: var(--global--color-heading);
}

.login .login-body label .required {
    margin-left: 3px;
    color: red;
}

.login .login-body .form-control {
    background-color: var(--global--color-white);
    margin-bottom: 8px;
}

.login .login-body .check {
    margin-top: 10px;
    margin-bottom: 5px;
}

.login .login-body .check label {
    margin-left: 5px;
}

.login .login-body .forget {
    margin-top: 13px;
    font-family: var(--global--font-body);
    font-size: 15px;
    font-weight: 700;
    color: var(--global--color-heading);
}

.login .login-body .forget:hover {
    color: var(--global--color-primary);
}


/* Custom, iPhone Retina */

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .product-item {
        max-width: 270px;
        margin: 0 auto 30px;
    }
    .product-options2 span {
        display: inline-block;
        min-width: 50px;
        margin-bottom: 10px;
    }
    .single-product .product-review,
    .single-product .product-price,
    .single-product .product-quantity,
    .single-product .product-cta {
        float: none !important;
        text-align: left !important;
    }
    .single-product .product-price {
        margin-bottom: 10px;
    }
    .single-product .product-cta .btn {
        margin: 0 10px 10px 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-product .product-review,
    .single-product .product-price,
    .single-product .product-quantity,
    .single-product .product-cta {
        float: none !important;
        text-align: left !important;
    }
    .single-product .product-price {
        margin-bottom: 10px;
    }
    .single-product .product-cta .btn {
        margin: 0 10px 10px 0;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .single-product .product-quantity,
    .single-product .product-cta {
        float: none !important;
        text-align: left !important;
    }
    .single-product .product-cta .btn {
        margin: 0 10px 10px 0;
    }
}


/*------------------------------------*\
    #work
\*------------------------------------*/

.work {
    padding-top: 95px;
}

#work-all {
    padding-bottom: 20px;
}


/* work Filter */

.work-filter {
    text-align: center;
    margin-bottom: 25px;
}

.work-filter li {
    display: inline-block;
}

.work-filter li li:last-child a {
    margin-right: 0;
}

.work-filter li a {
    color: var(--global--color-heading);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    margin-right: 24px;
    text-transform: capitalize;
    font-family: var(--global--font-heading);
}

.work-filter li a:hover {
    color: var(--global--color-primary);
}

.work-filter li a.active-filter {
    color: var(--global--color-primary);
}


/* work Item */

.work-item {
    margin-bottom: 30px;
}

.work-item .work-item-container {
    overflow: hidden;
}

.work-item .work--img {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.work-item .work--img img {
    max-width: 100%;
    height: auto;
}

.work-item .work--hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.work-item .work--hover .work--action {
    width: 100%;
    height: 100%;
    background-color: rgba(69, 69, 69, 0.75);
    text-align: center;
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.work-item:hover .work--hover .work--action {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.work-item .work--title h4 {
    color: var(--global--color-secondary);
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 3px;
    text-transform: capitalize;
}

.work-item .work--title a {
    color: var(--global--color-secondary);
}

.work-item .work--title a:hover:hover {
    color: var(--global--color-primary);
}

.work-item .work--cat {
    margin-bottom: 9px;
}

.work-item .work--cat a {
    color: var(--global--color-body);
    font-family: var(--global--font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    position: relative;
    padding-left: 8px;
    text-transform: capitalize;
}

.work-item .work--cat a:hover:hover {
    color: var(--global--color-primary);
}

.work-item .work--cat a:before {
    content: ",";
    position: absolute;
    top: 3px;
    left: 2px;
}

.work-item .work--cat a:first-of-type {
    padding-left: 0;
}

.work-item .work--cat a:first-of-type:before {
    display: none;
}

.work-item .work--zoom a {
    display: inline-block;
    position: absolute;
    top: 40px;
    left: 50px;
    width: 20px;
    height: 20px;
}

.work-item .work--zoom a:before {
    position: absolute;
    content: "";
    left: -10px;
    top: -1px;
    width: 20px;
    height: 2px;
    background-color: var(--global--color-white);
}

.work-item .work--zoom a:after {
    position: absolute;
    content: "";
    left: -1px;
    top: -10px;
    width: 2px;
    height: 20px;
    background-color: var(--global--color-white);
}

.work-item .work--content {
    padding: 23px 10px 0;
    text-align: center;
}


/* work Grid */

.work-grid .work-item .work--content {
    padding: 0;
    position: absolute;
    bottom: 30px;
    left: 40px;
    text-align: left;
}

.work-grid .work-item .work--title h4 a {
    color: var(--global--color-white);
}

.work-grid .work-item .work--title h4 a:hover {
    color: #ccc;
}

.work-grid .work-item .work--cat a {
    color: var(--global--color-gray);
}

.work-grid .work-item .work--cat a:hover {
    color: var(--global--color-heading);
}


/* work-Gallery */

.work-gallery .work-item {
    margin-bottom: 0;
}

.work-gallery .work-item .work-item-container {
    border-radius: 0;
}

.work-gallery .work-item .work-item-container .work--img {
    border-radius: 0;
}


/* Work-standard */

.work-standard #work-all {
    padding-bottom: 0;
}

.work-standard .work-item {
    margin-bottom: 35px;
}

.work-standard .work-item .work--cat a {
    color: #333;
}

.work-standard .work-item .work--zoom a {
    top: 50%;
    left: 50%;
}

.work-standard .work-item .work--content {
    text-align: left;
}

.work-standard .work-item .work--content .work--title h4 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 9px;
}

.work-standard .work-item .work--content .work--title h4 a {
    color: var(--global--color-heading);
    -webkit-transition: 300ms ease-in-out;
    -o-transition: 300ms ease-in-out;
    transition: 300ms ease-in-out;
}

.work-standard .work-item .work--content .work--title h4 a:hover {
    color: var(--global--color-primary);
}


/* work-single */

.work-single {
    padding-top: 100px;
    padding-bottom: 100px;
}

@media screen and (max-width: 991.98px) {
    .work-single {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

.work-single .work--img img {
    margin-bottom: 30px;
}

.work-single .work--title h3 {
    color: var(--global--color-heading);
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 30px;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .work-single .work--title h3 {
        font-size: 26px;
        line-height: 1.5;
    }
}

@media screen and (max-width: 767.98px) {
    .work-single .work--title h3 {
        font-size: 26px;
        line-height: 1.5;
    }
}

.work-single .work--content {
    padding-bottom: 47px;
    text-align: left;
}

.work-single .work--content p {
    color: var(--global--color-body);
    font-family: var(--global--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 28px;
}

.work-single .work--list {
    background-color: transparent;
    border-radius: 0;
    margin-bottom: 36px;
}

.work-single .work--list li {
    font-family: var(--global--font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 33px;
    color: #9e9e9e;
    text-transform: capitalize;
}

.work-single .work--list li span {
    font-family: var(--global--font-heading);
    font-size: 14px;
    color: var(--global--color-heading);
    font-weight: 700;
    width: 40%;
    display: inline-block;
}

.work-single .work--list li:last-child {
    border-bottom: none;
}

.work-single .work-share span {
    color: var(--global--color-heading);
    font-size: 13px;
    font-weight: 700;
    line-height: 30px;
    text-transform: capitalize;
    display: inline-block;
    width: 40%;
}

.work-single .work-share a {
    color: #333333;
    font-size: 17px;
    line-height: 1;
    margin-right: 3px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    width: 25px;
    height: 25px;
}

.work-single .work-share a:last-of-type {
    margin-right: 0;
}

.work-single .work-share a:hover i:first-child {
    top: -101%;
}

.work-single .work-share a:hover i:last-child {
    top: 2px;
}

.work-single .work-share a i:first-child {
    position: absolute;
    top: 2px;
    left: 0;
    width: 25px;
    height: 25px;
    -webkit-transition: 300ms ease-in-out;
    -o-transition: 300ms ease-in-out;
    transition: 300ms ease-in-out;
}

.work-single .work-share a i:last-child {
    position: absolute;
    top: 103%;
    left: 0;
    width: 25px;
    height: 25px;
    color: var(--global--color-primary);
    -webkit-transition: 300ms ease-in-out;
    -o-transition: 300ms ease-in-out;
    transition: 300ms ease-in-out;
}

.work-single.work-small .work--img {
    max-width: 750px;
}

.work-single.work-small .work--content {
    padding-bottom: 5px;
}

.work-single.work-small .work--list {
    margin-bottom: 38px;
}

.work-single.work-gallery .work-item {
    margin-bottom: 30px;
}

.work-single.work-gallery .work--img img {
    margin-bottom: 0;
}

@media screen and (max-width: 991.98px) {
    .work-single.work-masonry .work-masonry-layout .grid-sizer,
    .work-single.work-masonry .work-masonry-layout .grid-item,
    .work-single.work-masonry .work-masonry-layout .grid-item--width2,
    .work-single.work-masonry .work-masonry-layout .grid-item--width3 {
        width: 46%;
    }
}

@media screen and (max-width: 767.98px) {
    .work-single.work-masonry .work-masonry-layout .grid-sizer,
    .work-single.work-masonry .work-masonry-layout .grid-item,
    .work-single.work-masonry .work-masonry-layout .grid-item--width2,
    .work-single.work-masonry .work-masonry-layout .grid-item--width3 {
        width: 99%;
    }
}

@media screen and (min-width: 768px) {
    .work-single.work-masonry.work-small .work-masonry-layout .grid-sizer,
    .work-single.work-masonry.work-small .work-masonry-layout .grid-item {
        width: 46%;
    }
}

.work-single.work-masonry.work-small .work-masonry-layout .grid-item--width3 {
    width: 100%;
}

.work--prev-next {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.work--prev-next .work--next,
.work--prev-next .work--prev {
    position: relative;
    min-height: 49px;
}

.work--prev-next #portfolio {
    font-size: 18px;
    color: var(--global--color-heading);
    z-index: 2;
    -webkit-transition: 300ms ease-in-out;
    -o-transition: 300ms ease-in-out;
    transition: 300ms ease-in-out;
}

.work--prev-next #portfolio:hover {
    color: var(--global--color-primary);
}

.work--prev-next .work--icon {
    width: 49px;
    height: 49px;
    line-height: 49px;
    text-align: center;
    background-color: var(--global--color-gray);
}

.work--prev-next .work--icon a {
    text-align: center;
    display: block;
    color: var(--global--color-heading);
    font-size: 17px;
    font-weight: 400;
    -webkit-transition: all 350ms;
    -o-transition: all 350ms;
    transition: all 350ms;
}

.work--prev-next .work--icon a:hover {
    background-color: var(--global--color-primary);
    color: var(--global--color-white);
}

.work--prev-next .work--bio {
    padding-top: 6px;
}

.work--prev-next .work--bio p {
    color: #b8b8b8;
    font-size: 12px;
    line-height: 1;
    margin-bottom: 4px;
}

.work--prev-next .work--bio a {
    color: var(--global--color-heading);
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
}

.work--prev-next .work--bio a:hover {
    color: var(--global--color-primary);
}

.work--prev-next .work--prev .work--icon {
    left: 0;
}

.work--prev-next .work--prev .work--bio {
    padding-left: 65px;
}

.work--prev-next .work--next .work--icon {
    right: 0;
}

.work--prev-next .work--next .work--bio {
    padding-right: 65px;
    text-align: right;
}


/* Work-Masonry-Layout*/

.masonry-layout {
    padding-top: 30px;
    padding-bottom: 0;
}

.masonry-layout .work-masonry-layout .grid-sizer,
.masonry-layout .work-masonry-layout .grid-item {
    width: 23%;
}

.masonry-layout .work-masonry-layout .grid-item--width2 {
    width: 48%;
}

.masonry-layout .work-masonry-layout .grid-item--width3 {
    width: 100%;
}

@media screen and (max-width: 1200px) {
    .masonry-layout .work-masonry-layout .grid-sizer,
    .masonry-layout .work-masonry-layout .grid-item {
        width: 48%;
    }
    .masonry-layout .work-masonry-layout .grid-item--width2 {
        width: 48%;
    }
}

@media screen and (max-width: 767px) {
    .masonry-layout .work-masonry-layout .grid-sizer,
    .masonry-layout .work-masonry-layout .grid-item {
        width: 100%;
    }
    .masonry-layout .work-masonry-layout .grid-item--width2 {
        width: 100%;
    }
}

.masonry-layout .work-masonry-layout .work-item {
    margin-bottom: 30px;
}

.masonry-layout .work-masonry-layout .work-item .work--img img {
    width: 100%;
    height: 100%;
}

.masonry-layout .work-masonry-layout .work-item .work--title h4 {
    margin-bottom: 23px;
}

.masonry-layout .work-masonry-layout .work-item .work--title a {
    color: var(--global--color-heading);
    -webkit-transition: 300ms ease-in-out;
    -o-transition: 300ms ease-in-out;
    transition: 300ms ease-in-out;
}

.masonry-layout .work-masonry-layout .work-item .work--title a:hover {
    color: var(--global--color-primary);
}

.masonry-layout .work-masonry-layout .work-item .work--hover {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.masonry-layout .work-masonry-layout .work-item .work--hover:hover .work--content {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.masonry-layout .work-masonry-layout .work-item .work--hover .work--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    background-color: var(--global--color-white);
    margin: 30px;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 800ms linear;
    -o-transition: 800ms linear;
    transition: 800ms linear;
    text-align: left;
    padding: 23px 29px 0;
}

.masonry-layout .work-masonry-layout .work-item .work--hover .work--content .work--cat a {
    color: #333;
    -webkit-transition: 300ms ease-in-out;
    -o-transition: 300ms ease-in-out;
    transition: 300ms ease-in-out;
}

.masonry-layout .work-masonry-layout .work-item .work--hover .work--content .work--cat a:hover {
    color: var(--global--color-primary);
}


/*Work-Single-Masonry*/

.work-masonry .work-item .work--zoom a {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.work-masonry .work--img img {
    margin-bottom: 0;
}


/* work-slider */

.work-slider .owl-carousel .owl-nav button.owl-next,
.work-slider .owl-carousel .owl-nav button.owl-prev {
    background: var(--global--color-white);
    -webkit-transition: 300ms ease-in-out;
    -o-transition: 300ms ease-in-out;
    transition: 300ms ease-in-out;
    width: 51px;
    height: 51px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.work-slider .carousel-navs .owl-nav .owl-next:before,
.work-slider .carousel-navs .owl-nav .owl-prev:before {
    color: var(--global--color-heading);
    font-family: "Font Awesome 5 Free";
    font-size: 16px;
    font-weight: 700;
}

.work-slider .carousel-navs .owl-nav .owl-prev:before {
    content: "\f053";
}

.work-slider .carousel-navs .owl-nav .owl-next:before {
    content: "\f054";
}

.work-slider .carousel-navs .owl-nav .owl-next {
    right: 25px;
}

.work-slider .carousel-navs .owl-nav .owl-prev {
    left: 25px;
}


/* Custom, iPhone Retina */

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .work-filter li a {
        margin-right: 10px;
        font-size: 13px;
    }
    .work-item .work--img img,
    .work .owl-carousel .owl-item img {
        width: 100%;
    }
    .work-grid .work-item-container,
    .work-masonry .work-item-container {
        max-width: 370px;
        margin-right: auto;
        margin-left: auto;
    }
    .work-gallery .work-item-container {
        max-width: 530px;
        margin-right: auto;
        margin-left: auto;
    }
    .work-slider .carousel-navs .owl-nav .owl-next:before,
    .work-slider .carousel-navs .owl-nav .owl-prev:before {
        font-size: 30px;
    }
}


/* Small Devices, Tablets */

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .work-masonry .work--img img {
        width: 100%;
    }
}


/*------------------------------------*\
	#Widgets
\*------------------------------------*/


/* Widget */

.widget {
    margin-bottom: 53px;
}

.widget .widget-title {
    margin-bottom: 20px;
}

.widget .widget-title h5 {
    font-size: 19px;
    line-height: 1;
    text-transform: capitalize;
    margin-bottom: 0;
    position: relative;
}

.widget .divider--line {
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 35px;
    position: relative;
}


/*widget About*/

.widget-about .img {
    margin-bottom: 27px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.widget-about p {
    font-family: var(--global--font-body);
    font-size: 15px;
    line-height: 24px;
    margin: 0;
}


/* Category Widget */

.widget-categories {
    margin-bottom: 48px;
}

.widget-categories .widget-title {
    margin-bottom: 15px;
}

.widget-categories ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

.widget-categories ul li a {
    display: block;
    line-height: 33px;
    color: #7f7f7f;
    font-size: 16px;
    font-family: var(--global--font-body);
    font-weight: 400;
    text-transform: capitalize;
    position: relative;
}

.widget-categories ul li a:hover {
    color: var(--global--color-primary);
}


/* Tags Widget */

.widget-tags .widget-title {
    margin-bottom: 25px;
}

.widget-tags ul {
    margin-bottom: 0;
    margin-left: 0;
}

.widget-tags ul li {
    padding-left: 0;
    padding-right: 0;
}

.widget-tags a {
    font-family: var(--global--font-heading);
    display: inline-block;
    background-color: var(--global--color-primary);
    font-family: var(--global--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    color: var(--global--color-white);
    margin-right: 9px;
    margin-bottom: 10px;
    text-transform: capitalize;
    padding: 0px 12px;
}

.widget-tags a:hover {
    background-color: var(--global--color-heading);
}


/* Recent Widegt */

.widget-recent-posts .widget-title {
    margin-bottom: 25px;
}

.widget-recent-posts .entry {
    position: relative;
    margin-bottom: 27px;
}

.widget-recent-posts .entry:last-of-type {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.widget-recent-posts .entry .entry-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
    overflow: hidden;
}

.widget-recent-posts .entry .entry-desc {
    position: relative;
    margin-left: 90px;
}

.widget-recent-posts .entry .entry-desc .entry-meta {
    margin-right: 13px;
}

.widget-recent-posts .entry .entry-desc .entry-meta a {
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    color: #616161;
    text-transform: uppercase;
}

.widget-recent-posts .entry .entry-desc .entry-date {
    display: inline-block;
    line-height: 26px;
}

.widget-recent-posts .entry .entry-title a {
    font-family: var(--global--font-heading);
    color: var(--global--color-heading);
    font-size: 15px;
    font-weight: 700;
    line-height: 22px;
    text-transform: capitalize;
}

.widget-recent-posts .entry .entry-title a:hover {
    color: var(--global--color-primary);
}


/* Search Widget */

.widget-search .form-search {
    border: 1px solid var(--global--color-gray-light);
    margin-bottom: 0;
}

.widget-search .form-search .form-control {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #9e9e9e;
    font-size: 14px;
    font-family: var(--global--font-body);
    font-weight: 400;
    line-height: 49px;
    height: 49px;
    text-transform: capitalize;
    padding-left: 15px;
    background-color: transparent;
    border-radius: 0;
    margin-bottom: 0;
}

.widget-search .form-search .btn {
    background-color: transparent;
    color: var(--global--color-heading);
    border-radius: 0;
    width: 35px;
    height: 49px;
    line-height: 29px;
    font-size: 16px;
    color: var(--global--color-primary);
}

.widget-search .form-search .btn:hover {
    color: var(--global--color-heading);
}


/* Recent Product Widegt */

.widget-recent-products {
    margin-bottom: 60px;
}

.widget-recent-products .widget-title {
    margin-bottom: 28px;
}

.widget-recent-products .product {
    position: relative;
    margin-bottom: 30px;
}

.widget-recent-products .product:last-of-type {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.widget-recent-products .product img {
    position: absolute;
    left: 0;
    top: 0;
    max-width: 50px;
}

.widget-recent-products .product .product-desc {
    position: relative;
    padding-left: 65px;
    margin-bottom: 0;
    border-bottom: none;
}

.widget-recent-products .product:last-of-type .product-desc {
    padding-bottom: 0;
}

.widget-recent-products .product .product-title {
    margin-bottom: 0;
}

.widget-recent-products .product .product-title a {
    font-family: var(--global--font-heading);
    color: var(--global--color-heading);
    font-size: 15px;
    font-weight: 800;
    line-height: 24px;
    text-transform: capitalize;
}

.widget-recent-products .product .product-title a:hover {
    color: var(--global--color-primary);
}

.widget-recent-products .product .product-desc .product-meta {
    font-size: 12px;
    font-weight: 600;
    line-height: 23px;
    color: var(--global--color-body);
    font-family: var(--global--font-heading);
}


/* fiter product */

.ui-slider {
    position: relative;
    text-align: left;
}

.ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 2;
    width: 1.2em;
    height: 1.2em;
    cursor: default;
    -ms-touch-action: none;
    touch-action: none;
}

.ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    font-size: 0.7em;
    display: block;
    border: 0;
    background-position: 0 0;
}


/* support: IE8 - See #6727 */

.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
    -webkit-filter: inherit;
    filter: inherit;
}

.ui-slider-horizontal .ui-slider-handle {
    top: -2px;
    margin-left: -0.6em;
}

.ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 100%;
}

.ui-slider-horizontal .ui-slider-range-min {
    left: 0;
}

.ui-slider-horizontal .ui-slider-range-max {
    right: 0;
}

.ui-slider-vertical {
    width: 0.8em;
    height: 100px;
}

.ui-slider-vertical .ui-slider-handle {
    left: -0.3em;
    margin-left: 0;
    margin-bottom: -0.6em;
}

.ui-slider-vertical .ui-slider-range {
    left: 0;
    width: 100%;
}

.ui-slider-vertical .ui-slider-range-min {
    bottom: 0;
}

.ui-slider-vertical .ui-slider-range-max {
    top: 0;
}

.widget-filter .ui-slider {
    height: 4px;
    background-color: rgba(34, 34, 34, 0.06);
    border-radius: 0;
    margin-bottom: 20px;
    margin-top: 5px;
}

.widget-filter .ui-slider-handle {
    /* Style for "Line" */
    width: 8px;
    height: 8px;
    margin-left: 0;
    background-color: var(--global--color-primary);
    border-radius: 50%;
}

.widget-filter .ui-slider-range {
    height: 4px;
    background-color: var(--global--color-primary);
    margin-bottom: 20px;
}

.widget-filter .slider-mount {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: var(--global--font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 2px;
}

.widget-filter label {
    color: var(--global--color-body);
    margin: 0;
}

.widget-filter input {
    color: var(--global--color-primary);
    border: none;
    background-color: transparent;
}

.widget-filter .btn-filter {
    float: right;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--global--color-heading);
    -webkit-box-flex: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
    text-align: right;
}

.widget-filter .btn-filter:hover {
    color: var(--global--color-primary);
}


/* ADS widget */

.ads-widget img {
    max-width: 100%;
    height: auto;
}


/* Info Widget */

.widget-info {
    padding: 30px 20px;
    min-height: 70px;
    text-align: center;
}

.widget-info .info--title {
    color: var(--global--color-heading);
    font-size: 15px;
    font-weight: 700;
    line-height: 21px;
    position: relative;
    margin-bottom: 10px;
}

.widget-info .info--content {
    margin-bottom: 20px;
}

.widget-info .info--icon {
    line-height: 42px;
}


/* shop sidebar */

.sidebar-shop .widget-search {
    margin-bottom: 58px;
}


/* blog sidebar */

.sidebar-blog .widget {
    background-color: var(--global--color-white);
}

.sidebar-blog .widget-search {
    margin-bottom: 60px;
}

.sidebar-blog .form-search {
    background-color: var(--global--color-white);
}

.sidebar-blog .widget-recent-posts .entry-img img {
    width: 100%;
    height: 100%;
}

.sidebar-blog .widget-recent-posts {
    margin-bottom: 57px;
}

.sidebar-blog .widget-recent-posts .entry {
    margin-bottom: 30px;
}

.sidebar-blog .widget-recent-posts .entry:last-of-type {
    margin-bottom: 0;
}

.sidebar-blog .widget-recent-posts .entry-title a {
    font-weight: 700;
}

.sidebar-blog .widget-recent-posts .entry-date {
    font-family: var(--global--font-body);
    font-size: 13px;
    font-weight: 600;
    color: #616161;
}

.sidebar-blog .widget-categories ul li:last-of-type {
    border-bottom: none;
}


/* Widget Instagram */

.widget-instagram a {
    width: 88px;
    height: 88px;
    display: inline-block;
    margin: 2px;
    position: relative;
}

.widget-instagram a img {
    max-width: 100%;
    height: auto;
}

.widget-instagram a .insta-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 350ms;
    -o-transition: all 350ms;
    transition: all 350ms;
}

.widget-instagram a .insta-hover i {
    display: block;
    border-radius: 1px;
    background-color: var(--global--color-primary);
    color: var(--global--color-white);
    font-size: 11px;
    font-weight: 400;
    line-height: 88px;
    text-align: center;
}

.widget-instagram a:hover .insta-hover {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}


/* Custom, iPhone Retina */

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .sidebar {
        margin-top: 40px;
    }
    .widget {
        margin-bottom: 30px;
    }
}


/* Small Devices, Tablets */

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .sidebar {
        margin-top: 40px;
    }
    .widget-recent .entry .entry-desc {
        margin-left: 70px;
    }
}


/*------------------------------------*\
    #Features
\*------------------------------------*/

.features .feature-panel {
    margin-bottom: 56px;
    position: relative;
}

@media screen and (max-width: 991.98px) {
    .features .feature-panel {
        margin-bottom: 30px !important;
    }
}

.features .feature-panel .feature-img {
    margin-bottom: 30px;
    border-radius: 6px;
    overflow: hidden;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.features .feature-panel .feature-img:hover {
    -webkit-box-shadow: 0px 9px 30px 0px rgba(40, 40, 40, 0.15);
    box-shadow: 0px 9px 30px 0px rgba(40, 40, 40, 0.15);
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}

.features .feature-panel .feature-icon {
    font-size: 50px;
    line-height: 1;
    color: var(--global--color-primary);
    margin-bottom: 17px;
}

.features .feature-panel .feature-icon svg {
    width: 75px;
    height: auto;
}

.features .feature-panel .feature-content h4,
.features .feature-panel .feature-content .h4
{
    font-size: 20px;
    line-height: 29px;
    text-transform: capitalize;
    margin-bottom: 17px;
}

.features .feature-panel .feature-content p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 5px;
}

@media screen and (min-width: 800px) and (max-width: 1200px) {
    .features .feature-panel .feature-content p {
        font-size: 15px;
    }
}

.features .feature-panel.style-bordered {
    padding: 60px 50px;
    border: 1px solid var(--global--color-gray-light);
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    .features .feature-panel.style-bordered {
        padding: 40px;
    }
}

@media screen and (max-width: 991px) {
    .features .feature-panel.style-bordered {
        padding: 30px 20px;
    }
}

.features .feature-panel.style-shadow {
    padding: 60px 43px 40px;
    -webkit-box-shadow: 0px 1px 73px 0px rgba(40, 40, 40, 0.1);
    box-shadow: 0px 1px 73px 0px rgba(40, 40, 40, 0.1);
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .features .feature-panel.style-shadow {
        padding: 60px 20px 40px;
    }
}

.features.features-light .feature-panel .feature-content h4 {
    color: var(--global--color-white);
}

.features.features-1 .feature-panel {
    text-align: center;
    padding: 0 20px;
    border-radius: 0px;
    -webkit-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    max-width: 300px;
    margin-right: auto;
    margin-left: auto;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .features.features-1 .feature-panel {
        padding: 0;
    }
}

.features.features-1 .feature-panel .feature-content h4,
.features.features-1 .feature-panel .feature-content .h4
{
    text-transform: capitalize;
    font-weight: 700;
}

.features.features-1 .feature-panel .feature-content p {
    font-family: var(--global--font-body);
    color: var(--global--color-body);
}

.features.features-1.side .feature-panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.features.features-1.side .feature-panel .feature-content {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.features.features-1.bg-dark .feature-panel .feature-icon {
    margin-top: 5px;
    margin-right: 35px;
    font-size: 50px;
}

.features.features-1.bg-dark .feature-panel .feature-content h4 {
    color: var(--global--color-white);
}

.features.features-2 {
    overflow: visible;
}

.features.features-2 .features-container {
    position: relative;
    -webkit-transform: translateY(150px);
    -ms-transform: translateY(150px);
    transform: translateY(150px);
}

.features.features-2 .features-container .feature-panel {
    padding: 47px 60px;
    -webkit-box-shadow: 0px 1px 73px 0px rgba(40, 40, 40, 0.1);
    box-shadow: 0px 1px 73px 0px rgba(40, 40, 40, 0.1);
}

@media screen and (max-width: 767px) {
    .features.features-2 .features-container .feature-panel {
        padding: 47px 35px;
    }
}

@media screen and (max-width: 991.98px) {
    .features.features-2 .features-container .feature-panel {
        margin-bottom: 40px;
        text-align: center;
    }
}

.features.features-2 .features-container .feature-panel.panel-one {
    background-color: var(--global--color-white);
}

.features.features-2 .features-container .feature-panel.panel-one .feature-index {
    color: var(--global--color-heading);
}

.features.features-2 .features-container .feature-panel.panel-one .feature-content h4 {
    font-weight: 600;
    color: var(--global--color-secondary);
}

.features.features-2 .features-container .feature-panel.panel-one .feature-content p {
    color: var(--global--color-body);
}

.features.features-2 .features-container .feature-panel.panel-two {
    background-color: var(--global--color-primary);
}

.features.features-2 .features-container .feature-panel.panel-two .feature-index {
    color: var(--global--color-gray);
}

.features.features-2 .features-container .feature-panel.panel-two .feature-content h4 {
    color: var(--global--color-white);
}

.features.features-2 .features-container .feature-panel.panel-two .feature-content p {
    color: var(--global--color-gray);
}

.features.features-2 .features-container .feature-panel.panel-three {
    background-color: var(--global--color-heading);
}

.features.features-2 .features-container .feature-panel.panel-three .feature-index {
    color: var(--global--color-gray);
}

.features.features-2 .features-container .feature-panel.panel-three .feature-content h4 {
    color: var(--global--color-white);
}

.features.features-2 .features-container .feature-panel.panel-three .feature-content p {
    color: var(--global--color-gray);
}

.features.features-2 .features-container .feature-panel .feature-index {
    font-size: 30px;
    margin-bottom: 101px;
}

.features.features-2 .features-container .feature-panel .feature-index::after {
    content: ".";
    position: relative;
}

.features.features-2 .features-container .feature-panel .feature-icon {
    font-size: 40px;
    color: var(--global--color-white);
}

.features.features-2 .features-container .feature-panel .feature-content h4 {
    text-transform: capitalize;
    font-size: 20px;
}

.features.features-2 .features-container .feature-panel .feature-content p {
    font-family: var(--global--font-body);
}

.features.features-2 .features-container .feature-panel .feature-content h4,
.features.features-2 .features-container .feature-panel .feature-content p {
    color: var(--global--color-white);
}

.features.features-2 .mockup--img {
    position: absolute;
    bottom: -275px;
    right: -50px;
}

.features.features-3 {
    overflow: visible;
}

@media screen and (min-width: 992px) {
    .features.features-3 {
        padding: 0;
    }
}

.features.features-3 .fancy-container {
    position: relative;
}

@media screen and (min-width: 992px) {
    .features.features-3 .fancy-container {
        -webkit-transform: translateY(-100px);
        -ms-transform: translateY(-100px);
        transform: translateY(-100px);
        z-index: 1;
    }
}

@media screen and (min-width: 767px) and (max-width: 991px) {
    .features.features-3 .fancy-container>* {
        padding: 0;
    }
}

.features.features-3 .fancy-container .fancy-box.fancy-1 {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.features.features-5 .feature-panel {
    padding: 70px 20px 56px 20px;
    border-radius: 6px;
    -webkit-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
}

.features.features-5 .feature-panel:hover {
    -webkit-box-shadow: 0px 9px 30px 0px rgba(40, 40, 40, 0.15);
    box-shadow: 0px 9px 30px 0px rgba(40, 40, 40, 0.15);
}

.features.features-5 .feature-panel.active {
    -webkit-box-shadow: 0px 9px 30px 0px rgba(40, 40, 40, 0.15);
    box-shadow: 0px 9px 30px 0px rgba(40, 40, 40, 0.15);
}

.features.features-6 .feature-panel {
    text-align: center;
    padding: 50px 40px;
    background: var(--global--color-white);
    border: 1px solid var(--global--color-gray-light);
    margin-bottom: 30px;
}

.features.features-6 .feature-panel .feature-icon {
    font-size: 50px;
}

.features.features-6 .feature-panel .feature-content h4 {
    font-size: 18px;
}

.features.features-6 .feature-panel .feature-content p {
    font-size: 15px;
    line-height: 28px;
}

.features.features-7 {
    padding-top: 120px;
    padding-bottom: 70px;
}

@media screen and (max-width: 991.98px) {
    .features.features-7 {
        padding-top: 70px;
    }
}

.features.features-8 {
    padding-top: 145px;
    padding-bottom: 0;
}

.features.features-8 .heading {
    margin-bottom: 145px;
}

.features.features-8 .heading .heading-subtitle {
    margin-bottom: 8px;
}

.features.features-8 .heading .heading-title {
    margin-bottom: 21px;
}

.features.features-8 .features-container {
    -webkit-transform: translateY(210px);
    -ms-transform: translateY(210px);
    transform: translateY(210px);
    margin-bottom: -210px;
    margin-top: -210px;
}

.features.features-9 {
    padding-top: 90px;
    padding-bottom: 110px;
}

@media screen and (max-width: 991.98px) {
    .features.features-9 {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

.features.features-9 .feature-panel {
    text-align: center;
}

@media screen and (min-width: 992px) {
    .features.features-9 .feature-panel {
        text-align: left;
    }
}

.features.features-10 {
    height: auto;
}

.features.features-11 {
    padding-top: 120px;
    padding-bottom: 100px;
}

@media screen and (max-width: 991.98px) {
    .features.features-11 {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

.features.features-11 .feature-panel {
    margin-bottom: 44px;
}

.features.features-12 {
    padding-top: 130px;
    padding-bottom: 60px;
}

@media screen and (max-width: 991.98px) {
    .features.features-12 {
        padding-top: 70px;
        padding-bottom: 0;
    }
}

.features.features-13 {
    padding-top: 120px;
    padding-bottom: 140px;
}

@media screen and (max-width: 991.98px) {
    .features.features-13 {
        padding-top: 40px;
        padding-bottom: 30px;
    }
}

@media screen and (min-width: 768px) {
    .features.features-13 .feature-panel {
        text-align: left;
    }
}

.features.features-14 {
    padding-top: 120px;
    padding-bottom: 100px;
}

@media screen and (max-width: 991.98px) {
    .features.features-14 {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

@media screen and (min-width: 992px) {
    .features.features-14 .feature-panel {
        margin-bottom: 60px;
    }
}

.features.features-15 .heading {
    padding-top: 25px;
    margin-bottom: 5px;
}

.features-p-1 {
    padding-bottom: 60px;
}

@media screen and (max-width: 991.98px) {
    .features-p-1 {
        padding-bottom: 20px;
    }
}


/*------------------------------------*\
    #Fancy Box
\*------------------------------------*/

.fancy-box {
    position: relative;
    -webkit-box-shadow: 0px 1px 73px 0px rgba(40, 40, 40, 0.1);
    box-shadow: 0px 1px 73px 0px rgba(40, 40, 40, 0.1);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.fancy-box.fancy-1 {
    height: 297px;
    -webkit-transform: translateY(60px);
    -ms-transform: translateY(60px);
    transform: translateY(60px);
}

@media screen and (max-width: 991px) {
    .fancy-box.fancy-1 {
        height: 100%;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fancy-box.fancy-1 .fancy-content {
    padding: 30px;
}

@media screen and (min-width: 992px) {
    .fancy-box.fancy-1 .fancy-content {
        padding: 85px 40px;
    }
}

@media screen and (min-width: 767px) and (max-width: 991px) {
    .fancy-box.fancy-1 .fancy-content {
        padding: 30px 16px;
    }
}

.fancy-box.fancy-1 .fancy-content .fancy-content-inner {
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
}

.fancy-box.fancy-1 .fancy-icon {
    font-size: 64px;
    line-height: 1;
    color: var(--global--color-primary);
    margin-bottom: 24px;
}

.fancy-box.fancy-1 .fancy-icon i {
    display: inline-block;
    -webkit-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}

.fancy-box.fancy-1 h3 {
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
}

@media screen and (min-width: 992px) {
    .fancy-box.fancy-1 h3 {
        margin-bottom: 0;
    }
}

.fancy-box.fancy-1 .fancy-desc {
    font-size: 16px;
    line-height: 24px;
    margin-top: 18px;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

@media screen and (min-width: 992px) {
    .fancy-box.fancy-1 .fancy-desc {
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
        height: 0;
    }
}

.fancy-box.fancy-1 .fancy-img {
    margin-bottom: 30px;
    border-radius: 6px;
    overflow: hidden;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.fancy-box.fancy-1 .fancy-img:hover {
    -webkit-box-shadow: 0px 9px 30px 0px rgba(40, 40, 40, 0.15);
    box-shadow: 0px 9px 30px 0px rgba(40, 40, 40, 0.15);
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}

@media screen and (min-width: 992px) {
    .fancy-box.fancy-1.display-hover:hover .fancy-content-inner {
        -webkit-transform: translateY(-27px);
        -ms-transform: translateY(-27px);
        transform: translateY(-27px);
    }
}

@media screen and (min-width: 992px) {
    .fancy-box.fancy-1.display-hover:hover .fancy-desc {
        opacity: 1;
        visibility: visible;
        height: 100%;
        -webkit-transform: translateY(-32px);
        -ms-transform: translateY(-32px);
        transform: translateY(-32px);
    }
}

.fancy-box.fancy-2 {
    -webkit-transform: translateY(140px);
    -ms-transform: translateY(140px);
    transform: translateY(140px);
}

.fancy-box.fancy-2 .fancy-content {
    padding: 60px;
}

@media screen and (min-width: 1400px) {
    .fancy-box.fancy-2 .fancy-content {
        padding: 60px 75px;
    }
}

.fancy-box.fancy-2 .fancy-icon {
    font-size: 30px;
    line-height: 1;
    color: var(--global--color-heading);
    margin-bottom: 108px;
}

.fancy-box.fancy-2 .fancy-icon i {
    display: inline-block;
    -webkit-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}

.fancy-box.fancy-2 h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 29px;
    max-width: 80%;
    text-transform: capitalize;
    margin-bottom: 0;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .fancy-box.fancy-2 h3 {
        font-size: 18px;
    }
}

.fancy-box.fancy-2 .fancy-desc {
    font-size: 16px;
    line-height: 24px;
    margin-top: 18px;
}

.fancy-box.fancy-3 {
    -webkit-transform: translateY(490px);
    -ms-transform: translateY(490px);
    transform: translateY(490px);
}

.fancy-box.fancy-4 {
    -webkit-transform: translateY(40px);
    -ms-transform: translateY(40px);
    transform: translateY(40px);
}

@media screen and (max-width: 991.98px) {
    .fancy-box.fancy-4 {
        margin-bottom: 30px;
    }
}

.fancy-box.fancy-4 .fancy-content {
    text-align: center;
}

.fancy-box.fancy-light {
    background-color: white;
}

.fancy-box.fancy-light .fancy-icon {
    color: var(--global--color-heading);
}

.fancy-box.fancy-dark {
    background-color: var(--global--color-secondary);
}

.fancy-box.fancy-dark .fancy-icon,
.fancy-box.fancy-dark h3,
.fancy-box.fancy-dark .fancy-desc {
    color: var(--global--color-white);
}

.fancy-box.fancy-primary {
    background-color: var(--global--color-primary);
}

.fancy-box.fancy-primary .fancy-icon,
.fancy-box.fancy-primary h3,
.fancy-box.fancy-primary .fancy-desc {
    color: var(--global--color-white);
}


/* Small Devices, Tablets */

@media only screen and (max-width: 1200px) {
    .fancy-box {
        max-width: 570px;
        margin-right: auto;
        margin-left: auto;
    }
    .fancy-box.fancy-2 .fancy-content {
        padding: 50px 30px;
    }
    .fancy-box.fancy-2 .fancy-content .fancy-icon {
        margin-bottom: 40px;
    }
    .fancy-box.fancy-2 .fancy-content h3 {
        max-width: initial;
    }
}

@media only screen and (max-width: 767px) {
    .fancy-box {
        max-width: 370px;
        margin-right: auto;
        margin-left: auto;
    }
}


/* Custom, iPhone Retina */

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .feature-panel {
        max-width: 370px;
        margin-right: auto;
        margin-left: auto;
    }
    .features-2 .mockup--img {
        bottom: 0;
        position: relative;
        right: 0;
        margin-top: 30px;
    }
    .features-2 .mockup--img img {
        max-width: 100%;
        height: auto;
    }
}


/* Custom, iPhone Retina */

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .features-2 .mockup--img {
        bottom: 0;
        position: relative;
        right: 0;
        margin-top: 30px;
    }
    .features-2 .mockup--img img {
        max-width: 100%;
        height: auto;
    }
}


/* Custom, iPhone Retina */


/*--------------------------------
    #pricing
---------------------------------*/

.pricing {
    padding-bottom: 134px;
}

@media screen and (max-width: 991.98px) {
    .pricing {
        padding-bottom: 84px;
    }
}

.pricing .pricing-panel {
    background-color: var(--global--color-white);
    padding: 50px 40px;
    overflow: hidden;
    -webkit-box-shadow: 0px 2px 6px 0px rgba(40, 40, 40, 0.1);
    box-shadow: 0px 2px 6px 0px rgba(40, 40, 40, 0.1);
}

@media screen and (max-width: 991.98px) {
    .pricing .pricing-panel {
        text-align: center;
        max-width: 370px;
        margin: 0 auto 40px;
    }
}

.pricing .pricing-panel .pricing-heading h4 {
    font-family: var(--global--font-body);
    font-size: 16px;
    line-height: 1;
    color: var(--global--color-primary);
    margin-bottom: 15px;
    padding-bottom: 19px;
    position: relative;
    text-transform: capitalize;
    -webkit-transition: 300ms ease-in-out;
    -o-transition: 300ms ease-in-out;
    transition: 300ms ease-in-out;
}

.pricing .pricing-panel .pricing-heading h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: var(--global--color-primary);
}

.pricing .pricing-panel .pricing-heading .pricing-desc {
    font-family: var(--global--font-body);
    font-size: 15px;
    color: #a5a5a5;
    line-height: 21px;
    margin-bottom: 43px;
}

.pricing .pricing-panel .pricing-heading p {
    font-family: var(--global--font-heading);
    font-size: 70px;
    font-weight: 600;
    color: var(--global--color-heading);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    line-height: 46px;
    margin-bottom: 3px;
}

@media screen and (max-width: 991.98px) {
    .pricing .pricing-panel .pricing-heading p {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.pricing .pricing-panel .pricing-heading p .currency {
    font-weight: 700;
    font-size: 28px;
    margin-right: 5px;
}

.pricing .pricing-panel .pricing-heading p .time {
    font-weight: 700;
    font-size: 13px;
}

.pricing .pricing-panel .pricing-body {
    padding: 12px 0 17px;
}

.pricing .pricing-panel .pricing-body .pricing-list {
    margin-bottom: 9px;
}

.pricing .pricing-panel .pricing-body .pricing-list li {
    font-family: var(--global--font-body);
    font-size: 16px;
    line-height: 35px;
    margin-bottom: 4px;
}

.pricing .pricing-active {
    background-color: var(--global--color-primary);
    position: relative;
    z-index: 2;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.pricing .pricing-active .pricing-heading h4 {
    color: var(--global--color-white);
}

.pricing .pricing-active .pricing-heading h4::after {
    background-color: var(--global--color-white);
}

.pricing .pricing-active .pricing-heading .pricing-desc {
    color: var(--global--color-white);
}

.pricing .pricing-active .pricing-heading p {
    color: var(--global--color-white);
}

.pricing .pricing-active .pricing-body .pricing-list {
    color: var(--global--color-white);
}

.pricing .pricing-active .btn {
    -webkit-box-shadow: 0px 9px 30px 0px rgba(40, 40, 40, 0.15);
    box-shadow: 0px 9px 30px 0px rgba(40, 40, 40, 0.15);
}

.pricing.pricing-2 {
    overflow: visible;
    z-index: 2;
    position: relative;
    margin-top: -238px;
    background-color: transparent;
}

.pricing.pricing-3 {
    padding-bottom: 50px;
}


/* Custom, iPhone Retina */

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .pricing {
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .pricing .heading {
        margin-top: 0;
    }
    .pricing .pricing-panel {
        max-width: 400px;
        margin: 0 auto 30px;
    }
    .pricing .pricing-active {
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}


/* Tablets */

@media only screen and (min-width: 767px) and (max-width: 991px) {
    .pricing {
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .pricing .heading {
        margin-top: 0;
    }
}


/*------------------------------------*\
    #Team
\*------------------------------------*/

.team .member {
    -webkit-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    margin-bottom: 30px;
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .team .member {
        max-width: 370px;
        margin: 0 auto 30px;
    }
}

.team .member .member-img {
    position: relative;
    overflow: hidden;
}

.team .member .member-img img {
    -webkit-transition: 800ms all ease-in-out;
    -o-transition: 800ms all ease-in-out;
    transition: 800ms all ease-in-out;
    max-width: 100%;
    width: 100%;
    height: auto;
}

.team .member .member-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(249, 188, 1, 0.9);
    -webkit-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}

.team .member .member-overlay .member-social {
    margin-bottom: 20px;
}

.team .member .member-overlay .member-social a {
    color: var(--global--color-white);
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    margin-right: 20px;
}

.team .member .member-overlay .member-social a:hover {
    color: var(--global--color-heading);
}

.team .member .member-overlay .member-social a:last-child {
    margin-right: 0;
}

.team .member .member-overlay .member-info {
    position: absolute;
    left: 40px;
    bottom: 40px;
    opacity: 0;
    -webkit-transition: 600ms ease;
    -o-transition: 600ms ease;
    transition: 600ms ease;
}

@media screen and (min-width: 767px) and (max-width: 991px) {
    .team .member .member-overlay .member-info {
        left: 20px;
        bottom: 20px;
    }
}

.team .member .member-overlay .member-info h5 {
    font-size: 20px;
    color: var(--global--color-white);
    font-weight: 600;
    margin-bottom: 14px;
}

.team .member .member-overlay .member-info h6 {
    font-family: var(--global--font-body);
    color: var(--global--color-gray);
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 0;
}

.team .member:hover {
    -webkit-box-shadow: 0px 9px 30px 0px rgba(40, 40, 40, 0.15);
    box-shadow: 0px 9px 30px 0px rgba(40, 40, 40, 0.15);
}

.team .member:hover .member-overlay {
    height: 100%;
}

.team .member:hover .member-overlay .member-info {
    opacity: 1;
}

.team.team-1 {
    padding-top: 120px;
    padding-bottom: 170px;
}

@media screen and (max-width: 991.98px) {
    .team.team-1 {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}


/*------------------------------------*\
    #Contacts
\*------------------------------------*/

.contact {
    padding-top: 110px;
    padding-bottom: 110px;
    background-color: var(--global--color-white);
}

@media screen and (max-width: 991.98px) {
    .contact {
        text-align: center;
    }
}

.contact .banner {
    padding: 50px;
}

@media screen and (min-width: 992px) {
    .contact .banner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 113px 100px 120px;
    }
}

@media screen and (max-width: 767px) {
    .contact .banner {
        padding: 70px 100px 40px;
    }
}

.contact .contact-card {
    background-color: var(--global--color-white);
    padding: 113px 100px 120px;
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    .contact .contact-card {
        padding: 113px 50px 120px;
    }
}

@media screen and (max-width: 991.98px) {
    .contact .contact-card {
        padding: 70px 100px 70px;
    }
}

.contact .contact-card .heading {
    margin-bottom: 73px;
}

.contact .contact-card .heading .heading-title {
    font-size: 32px;
    line-height: 42px;
}

@media screen and (max-width: 767px) {
    .contact .contact-card .heading .heading-title {
        font-size: 20px;
        line-height: 1.5;
    }
    .contact .contact-card .heading .heading-title br {
        display: none;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .contact .contact-card .heading .heading-title {
        font-size: 28px;
    }
}

.contact .contact-card textarea {
    height: 122px;
    margin-bottom: 40px;
}

.contact-1 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-filter: brightness(104%) contrast(99%) saturate(0%) blur(0px) hue-rotate(0deg);
    filter: brightness(104%) contrast(99%) saturate(0%) blur(0px) hue-rotate(0deg);
}

@media screen and (max-width: 991.98px) {
    .contact-1 iframe {
        position: relative;
        width: 100%;
        height: 500px;
    }
}

.contact-2 .contact-container {
    margin-top: -628px;
}

.contact-2 .contact-card {
    border-radius: 0;
    background-color: var(--global--color-gray);
}

.contact-3 {
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
}

@media screen and (max-width: 991.98px) {
    .contact-3 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.contact-3 .contact-card {
    position: relative;
    padding: 75px 90px 80px;
    border-radius: 0;
    background-color: var(--global--color-white);
    -webkit-box-shadow: 0px 1px 73px 0px rgba(40, 40, 40, 0.1);
    box-shadow: 0px 1px 73px 0px rgba(40, 40, 40, 0.1);
}

.contact-3 .contact-card .contact--icon {
    font-size: 45px;
    color: var(--global--color-primary);
    line-height: 1;
    margin-bottom: 24px;
}

.contact-3 .contact-card .heading {
    margin-bottom: 50px;
}

.contact-3 .contact-card .heading p {
    margin-bottom: 13px;
}

.contact-3 .contact-card .btn {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.contact-3 iframe {
    -webkit-filter: brightness(104%) contrast(99%) saturate(0%) blur(0px) hue-rotate(0deg);
    filter: brightness(104%) contrast(99%) saturate(0%) blur(0px) hue-rotate(0deg);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.contact-4 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.contact-4 .contact-card {
    padding: 0;
}

.map {
    position: relative;
    height: 720px;
}

.map iframe {
    -webkit-filter: brightness(104%) contrast(99%) saturate(0%) blur(0px) hue-rotate(0deg);
    filter: brightness(104%) contrast(99%) saturate(0%) blur(0px) hue-rotate(0deg);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
}

.addresses {
    background-color: var(--global--color-white);
    padding-bottom: 110px;
}

@media screen and (max-width: 992px) {
    .addresses .address {
        margin-bottom: 40px;
    }
}

.addresses .address .office {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.addresses .address p {
    font-family: var(--global--font-body);
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 23px;
}

.addresses .address .info {
    margin-bottom: 0;
}

.addresses .address .info li {
    font-family: var(--global--font-body);
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 4px;
}

.addresses .address .info li span {
    margin-right: 10px;
}


/* Custom, iPhone Retina */

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .contact .contact-card {
        padding: 70px 20px;
    }
}


/* Tablets  */


/*------------------------------------*\
    #Client
\*------------------------------------*/

.clients {
    padding-top: 70px;
    padding-bottom: 70px;
}

@media screen and (max-width: 991.98px) {
    .clients {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.clients.bg-grey {
    color: var(--global--color-gray);
}

.clients .client {
    position: relative;
    line-height: 50px;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.clients .client img {
    max-width: 100%;
    width: auto !important;
    display: block;
    margin-right: auto;
    margin-left: auto;
}


/* Client #1 */

.clients-1 {
    padding-top: 70px;
    padding-bottom: 70px;
}

@media screen and (max-width: 991.98px) {
    .clients-1 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}


/* Client #2 */

.clients-2 {
    border-top: 1px solid var(--global--color-gray-light);
}

@media only screen and (max-width: 991px) {
    .client {
        margin-bottom: 20px;
    }
}


/*------------------------------------*\
    #Banners
\*------------------------------------*/

.banner-container {
    background: url(../images/banners/2.jpg) no-repeat fixed;
    background-size: cover;
    position: relative;
}

.banner-container .banner {
    background-color: var(--global--color-primary);
    padding: 110px 85px 90px;
}

@media screen and (min-width: 1400px) {
    .banner-container .banner {
        padding: 110px 110px 90px;
    }
}

@media screen and (max-width: 425px) {
    .banner-container .banner {
        -webkit-transform: translate(0px, -30px);
        -ms-transform: translate(0px, -30px);
        transform: translate(0px, -30px);
        padding: 70px 15px 70px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .banner-container .banner {
        padding: 70px 15px 70px;
        -webkit-transform: translate(-20px, -30px);
        -ms-transform: translate(-20px, -30px);
        transform: translate(-20px, -30px);
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .banner-container .banner {
        padding: 70px 50px 70px;
        -webkit-transform: translate(-40px, -40px);
        -ms-transform: translate(-40px, -40px);
        transform: translate(-40px, -40px);
    }
}

@media screen and (min-width: 992px) {
    .banner-container .banner {
        -webkit-transform: translate(-80px, -100px);
        -ms-transform: translate(-80px, -100px);
        transform: translate(-80px, -100px);
    }
}

.banner-container .banner .heading-title {
    font-size: 50px;
    line-height: 55px;
    margin-bottom: 35px;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .banner-container .banner .heading-title {
        font-size: 36px;
        line-height: 45px;
    }
}

@media screen and (max-width: 767px) {
    .banner-container .banner .heading-title {
        font-size: 24px;
        line-height: 1.5;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .banner-container .banner .heading-title {
        font-size: 40px;
        line-height: 1.5;
    }
}

.banner-container .banner .heading-subtitle {
    margin-bottom: 29px;
}

@media screen and (max-width: 767px) {
    .banner-container .banner .heading-subtitle {
        line-height: 1.5;
    }
}

.banner-container .banner .heading-desc {
    margin-bottom: 35px;
}

@media screen and (max-width: 991.98px) {
    .banner-section {
        text-align: center;
    }
}

.banner-section .banner {
    padding: 126px 100px 124px;
    min-height: 400px;
}

@media screen and (min-width: 992px) {
    .banner-section .banner {
        min-height: 690px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media screen and (max-width: 767px) {
    .banner-section .banner {
        padding: 100px 30px 80px;
    }
}

.banner-section .banner.counter {
    padding: 113px 90px 120px;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .banner-section .banner.counter {
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media screen and (max-width: 767px) {
    .banner-section .banner.counter {
        padding: 113px 30px 120px;
    }
}

.banner-section .banner.counter .heading-subtitle {
    color: var(--global--color-primary);
}

.banner-section .banner.counter .heading-title {
    font-size: 50px;
}

@media screen and (min-width: 992px) and (max-width: 1400px) {
    .banner-section .banner.counter .heading-title {
        font-size: 40px;
    }
}

@media screen and (max-width: 1199.98px) {
    .banner-section .banner.counter .heading-title {
        font-size: 32px;
        line-height: 1.5;
    }
}

@media screen and (max-width: 767.98px) {
    .banner-section .banner.counter .heading-title {
        font-size: 26px;
    }
}

.banner-section .banner.counter .heading-desc {
    color: var(--global--color-gray);
}

.banner-section .player {
    display: inline-block;
    margin-top: 45px;
}

.banner-section .player a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--global--color-primary);
    color: var(--global--color-white);
    -webkit-transition: 300ms ease-in-out;
    -o-transition: 300ms ease-in-out;
    transition: 300ms ease-in-out;
    cursor: pointer;
}

.banner-section .player a:hover {
    background-color: var(--global--color-heading);
}

.banner-section .player a:hover i {
    color: var(--global--color-white);
}

.banner-section .player a i {
    color: var(--global--color-white);
    font-size: 18px;
    -webkit-transition: 300ms ease-in-out;
    -o-transition: 300ms ease-in-out;
    transition: 300ms ease-in-out;
}


/*------------------------------------*\
    #Circle Progress
\*------------------------------------*/

.circle-progress {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

@media screen and (max-width: 991.98px) {
    .circle-progress {
        margin-bottom: 30px;
    }
}

.circle-progress .circle-head {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.circle-progress .circle-head .circle-prog {
    position: relative;
    width: 170px;
    height: 170px;
}

@media screen and (min-width: 992px) {
    .circle-progress .circle-head .circle-prog {
        width: 155px;
        height: 155px;
    }
}

.circle-progress .circle-head .circle-prog canvas {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.circle-progress .circle-head .circle-prog .circle {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 150px;
    height: 150px;
    border-radius: 100%;
    border: 5px solid rgba(0, 0, 0, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 10px;
    font-size: 43px;
    line-height: 28px;
    color: var(--global--color-primary);
}

@media screen and (min-width: 992px) {
    .circle-progress .circle-head .circle-prog .circle {
        width: 135px;
        height: 135px;
    }
}

.circle-progress .circle-head .circle-prog .circle span {
    font-size: 23px;
    -webkit-transform: translateY(3px);
    -ms-transform: translateY(3px);
    transform: translateY(3px);
    margin-right: 5px;
}

.circle-progress .circle-desc {
    margin-top: 42px;
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 0;
    text-transform: capitalize;
    color: var(--global--color-heading);
}


/*------------------------------------*\
    #Testimonial
\*------------------------------------*/

.testimonial-panel {
    text-align: center;
    background-color: var(--global--color-gray);
}

.testimonial-panel .testimonial-img {
    width: 60px;
    height: 60px;
    line-height: 60px;
    overflow: hidden;
    border-radius: 50%;
    display: block;
    margin-bottom: 26px;
    display: inline-block;
    padding: 2px;
    border: 2px solid var(--global--color-primary);
}

.testimonial-panel .testimonial-img img {
    max-width: 100%;
}

.testimonial-panel .testimonial-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.testimonial-panel .testimonial-body {
    position: relative;
}

.testimonial-panel .testimonial-body p {
    text-align: left;
    font-family: var(--global--font-heading);
    color: var(--global--color-body);
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    margin-bottom: 30px;
}

.testimonial-panel .testimonial-meta {
    position: relative;
    text-align: center;
    padding-bottom: 11px;
}

.testimonial-panel .testimonial-meta h4 {
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 9px;
    text-transform: capitalize;
}

.testimonial-panel .testimonial-meta p {
    font-family: var(--global--font-body);
    color: var(--global--color-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 23px;
    margin-bottom: 0;
}

.testimonial-panel.testimonial-card {
    padding: 37px 40px 0;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .testimonial-panel.testimonial-card {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.testimonial-panel.testimonial-card .testimonial-body p {
    text-align: center;
}

.testimonial-2 .testimonial-panel {
    padding: 50px 0;
    background-color: white;
    border-radius: 6px;
    -webkit-box-shadow: 0px 9px 30px 0px rgba(40, 40, 40, 0.02);
    box-shadow: 0px 9px 30px 0px rgba(40, 40, 40, 0.02);
}

@media only screen and (max-width: 991px) {
    .testimonial-2 .testimonial-panel {
        max-width: 370px;
        margin-right: auto;
        margin-left: auto;
    }
}

.testimonial-2 .testimonial-panel .testimonial-icon {
    margin-bottom: 26px;
}

.testimonial-2 .testimonial-panel .testimonial-body p {
    font-size: 17px;
    line-height: 27px;
    text-align: center;
    padding: 0 25px 35px 35px;
}

.testimonial-2 .testimonial-panel .testimonial-img {
    width: 55px;
    height: 55px;
    line-height: 55px;
    margin-bottom: 9px;
}

.testimonial-2 .testimonial-meta:before,
.testimonial-2 .testimonial-meta:after {
    content: "";
    position: absolute;
    top: 26px;
    left: 0;
    width: calc(50% - 42px);
    height: 1px;
    background-color: var(--global--color-gray-light);
}

.testimonial-2 .testimonial-meta:after {
    left: auto;
    right: 0;
}

.testimonial-2 .testimonial-meta h4 {
    margin-bottom: 4px;
}

.testimonial-2 .owl-item {
    padding: 5px;
}

.testimonial-2 .owl-item:not(.center) {
    opacity: 0.8;
}

.testimonial-2 .carousel-dots .owl-dots {
    margin-top: 35px;
}

.testimonial-3 .testimonial-panel.testimonial-card {
    padding-bottom: 20px;
}

@media screen and (max-width: 991px) {
    .testimonial-3 .testimonial-panel.testimonial-card {
        max-width: 460px;
        margin-right: auto;
        margin-left: auto;
    }
}

.testimonial-4 {
    padding-top: 373px;
    padding-bottom: 75px;
}

#carousel-custom-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

#carousel-custom-dots .owl-dot {
    display: inline-block;
    width: 55px;
    height: 55px;
    line-height: 44px;
    overflow: hidden;
    border-radius: 50%;
    display: block;
    margin-bottom: 26px;
    display: inline-block;
    padding: 2px;
    -webkit-transition: 300ms ease-in-out;
    -o-transition: 300ms ease-in-out;
    transition: 300ms ease-in-out;
    margin: 0 10px;
    opacity: 0.8;
}

#carousel-custom-dots .owl-dot.active {
    opacity: 1;
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
    border: 2px solid var(--global--color-primary);
}

#carousel-custom-dots .owl-dot img {
    max-width: 100%;
    cursor: pointer;
}

.custom-carousel .owl-nav button span {
    display: none;
}

.custom-carousel .owl-nav button.owl-next,
.custom-carousel .owl-nav button.owl-prev {
    width: 30px;
    height: 30px;
}

.custom-carousel .owl-nav button.owl-next:hover::before,
.custom-carousel .owl-nav button.owl-prev:hover::before {
    color: var(--global--color-primary);
}

.custom-carousel .owl-nav button.owl-next {
    position: absolute;
    z-index: 4;
    top: 20%;
    right: 0;
}

@media screen and (min-width: 992px) {
    .custom-carousel .owl-nav button.owl-next {
        right: -30px;
    }
}

.custom-carousel .owl-nav button.owl-next::before {
    font-size: 9px;
    content: "\e902";
    font-family: "icomoon";
    font-weight: 700;
    color: var(--global--color-body);
    -webkit-transition: 300ms ease-in-out;
    -o-transition: 300ms ease-in-out;
    transition: 300ms ease-in-out;
}

.custom-carousel .owl-nav button.owl-prev {
    position: absolute;
    z-index: 4;
    top: 20%;
    left: 0;
}

@media screen and (min-width: 992px) {
    .custom-carousel .owl-nav button.owl-prev {
        left: -30px;
    }
}

.custom-carousel .owl-nav button.owl-prev::before {
    font-size: 9px;
    content: "\e901";
    font-family: "icomoon";
    font-weight: 700;
    color: var(--global--color-body);
    -webkit-transition: 300ms ease-in-out;
    -o-transition: 300ms ease-in-out;
    transition: 300ms ease-in-out;
}

.custom-carousel .testimonial-panel {
    background-color: transparent;
}

.custom-carousel .testimonial-panel .testimonial-body {
    padding: 15px 55px 0;
}

.custom-carousel .testimonial-panel .testimonial-body p {
    text-align: center;
    font-family: var(--global--font-body);
    font-size: 27px;
    line-height: 41px;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 50px;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .custom-carousel .testimonial-panel .testimonial-body p {
        font-size: 22px;
        line-height: 1.5;
    }
}

@media screen and (max-width: 767.98px) {
    .custom-carousel .testimonial-panel .testimonial-body p {
        line-height: 2;
    }
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .testimonial-1 .testimonial-panel .testimonial-body {
        padding: 50px 30px 0 30px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .testimonial-1 .testimonial-panel .testimonial-body p {
        font-size: 22px;
    }
}

.testimonial-p-1 {
    padding-top: 10px;
    padding-bottom: 65px;
}

.testimonial-p-2 {
    padding-top: 125px;
    padding-bottom: 63px;
}

@media screen and (max-width: 991.98px) {
    .testimonial-p-2 {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

.testimonial-p-3 {
    padding-top: 240px;
    padding-bottom: 80px;
}

@media screen and (max-width: 991.98px) {
    .testimonial-p-3 {
        padding-top: 200px;
        padding-bottom: 70px;
    }
}

.testimonial-p-4 {
    padding-top: 315px;
    padding-bottom: 65px;
}

@media screen and (max-width: 991.98px) {
    .testimonial-p-4 {
        padding-top: 200px;
        padding-bottom: 65px;
    }
}

.testimonial-p-5 {
    padding-top: 120px;
    padding-bottom: 80px;
}

@media screen and (max-width: 991.98px) {
    .testimonial-p-5 {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

.testimonial-p-6 {
    padding-top: 54px;
    padding-bottom: 65px;
}

@media screen and (max-width: 991.98px) {
    .testimonial-p-6 {
        padding-top: 70px;
        padding-bottom: 65px;
    }
}

.testimonial-p-7 {
    padding-top: 93px;
    padding-bottom: 175px;
}

@media screen and (max-width: 991.98px) {
    .testimonial-p-7 {
        padding-top: 70px;
        padding-bottom: 100px;
    }
}

.testimonial-p-8 {
    padding-top: 96px;
    padding-bottom: 65px;
}

@media screen and (max-width: 991.98px) {
    .testimonial-p-8 {
        padding-top: 70px;
        padding-bottom: 65px;
    }
}


/*------------------------------------*\
    #Video
\*------------------------------------*/

.video--button {
    position: relative;
}

.video--button .popup-video {
    text-align: center;
    display: inline-block;
    position: relative;
}

.video--button .popup-video span {
    position: relative;
    width: 88px;
    height: 88px;
}

.video--button .popup-video span:before {
    position: absolute;
    left: -4px;
    top: -37px;
    content: "";
    width: 88px;
    height: 88px;
    border: 2px solid var(--global--color-white);
    border-radius: 50%;
    opacity: 1;
    -webkit-animation: pulse 1s infinite linear;
    animation: pulse 1s infinite linear;
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}

.video--button .popup-video i {
    font-size: 18px;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background-color: var(--global--color-white);
    color: var(--global--color-heading);
    position: relative;
    display: inline-block;
}

.video--button .popup-video i:hover {
    color: var(--global--color-primary);
}

.video--button .popup-video h6 {
    color: white;
    font-size: 13px;
    font-weight: 700;
    padding-top: 27px;
    margin-bottom: 0;
    line-height: 1;
}

.video--button .popup-video:hover {
    -webkit-animation: none;
    animation: none;
}

.video {
    position: relative;
    height: 700px;
    overflow: visible;
}

.video:hover .player a {
    background-color: var(--global--color-primary);
}

.video:hover .player a i {
    opacity: 1;
    visibility: visible;
}

@media screen and (max-width: 1200px) {
    .video {
        height: 400px;
    }
}

.video .player {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 600;
}

.video .player a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--global--color-white);
    color: var(--global--color-white);
    -webkit-transition: 300ms ease-in-out;
    -o-transition: 300ms ease-in-out;
    transition: 300ms ease-in-out;
    cursor: pointer;
}

.video .player a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--global--color-primary);
}

.video .player a i {
    opacity: 0;
    z-index: 5;
    visibility: hidden;
    color: var(--global--color-white);
    font-size: 18px;
    -webkit-transition: 300ms ease-in-out;
    -o-transition: 300ms ease-in-out;
    transition: 300ms ease-in-out;
}

@media screen and (max-width: 991.98px) {
    .video.features {
        height: auto;
        padding-top: 300px;
        padding-bottom: 300px;
    }
    .video.features .player {
        top: 20%;
    }
}

.video .features-container {
    -webkit-transform: translateY(490px);
    -ms-transform: translateY(490px);
    transform: translateY(490px);
}


/* video #1 */

.video-1 {
    padding-top: 0;
    padding-bottom: 0;
}

.video-1 .video--button {
    height: 720px;
}

.video-2 {
    position: relative;
}

.video-2:hover .btn--video {
    color: var(--global--color-primary);
}

.video-2:hover .btn--video i {
    background-color: var(--global--color-primary);
    color: white;
}

.video-2 .btn--video {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: white;
    font-size: 13px;
    font-weight: 700;
    line-height: 51px;
    text-transform: capitalize;
    width: auto;
}

.video-2 .btn--video::before {
    content: unset;
}

.video-2 .btn--video i {
    display: inline-block;
    width: 81px;
    height: 81px;
    line-height: 81px;
    border-radius: 51px;
    font-size: 18px;
    background-color: white;
    color: var(--global--color-primary);
    margin-right: 12px;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}


/* Custom, iPhone Retina */

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .video-1 .video--button {
        height: 400px;
    }
}

.mfp-wrap {
    z-index: 1642;
}

.mfp-bg {
    z-index: 1543;
}


/*About Video*/

.about-video {
    position: relative;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: 0px 1px 73px 0px rgba(40, 40, 40, 0.1);
    box-shadow: 0px 1px 73px 0px rgba(40, 40, 40, 0.1);
}

@media screen and (max-width: 991.98px) {
    .about-video {
        margin-bottom: 50px;
    }
}

.video-4 .player {
    top: 210px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

@media screen and (max-width: 991.98px) {
    .video-5 {
        height: auto;
        padding: 100px 0 50px;
    }
}

.video-5 .player {
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 991.98px) {
    .video-5 .player {
        top: 150px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    .video-5 .fancy-box {
        -webkit-transform: translateY(300px);
        -ms-transform: translateY(300px);
        transform: translateY(300px);
    }
}

@media screen and (min-width: 1200px) {
    .video-5 .fancy-box {
        -webkit-transform: translateY(490px);
        -ms-transform: translateY(490px);
        transform: translateY(490px);
    }
}


/*------------------------------------*\
    #FAQs
\*------------------------------------*/

.faq .col-content {
    padding: 130px 130px 110px 90px;
}

.faq .banner--img {
    -webkit-transform: translate(-50px, 100px) scale(1.1, 1);
    -ms-transform: translate(-50px, 100px) scale(1.1, 1);
    transform: translate(-50px, 100px) scale(1.1, 1);
}

.faqs {
    padding-top: 120px;
    padding-bottom: 104px;
}

@media screen and (max-width: 991.98px) {
    .faqs {
        padding-top: 70px;
        padding-bottom: 54px;
    }
}


/* Custom, iPhone Retina */

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .faq .banner--img {
        -webkit-transform: translate(0) scale(1, 1);
        -ms-transform: translate(0) scale(1, 1);
        transform: translate(0) scale(1, 1);
    }
}


/* Tablets */

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .faq .banner--img {
        -webkit-transform: translate(0) scale(1, 1);
        -ms-transform: translate(0) scale(1, 1);
        transform: translate(0) scale(1, 1);
    }
    .faq .col-content {
        padding: 30px;
    }
}


/*------------------------------------*\
    #Counters
\*------------------------------------*/

.counter.bg-dark .count-box .count-title {
    color: var(--global--color-body);
}

.counter .count-box .counting {
    font-family: var(--global--font-heading);
    color: var(--global--color-primary);
    font-size: 70px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 10px;
    position: relative;
}

.counter .count-box .count-title {
    color: var(--global--color-heading);
    font-family: var(--global--font-body);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-transform: capitalize;
}

.counter-light .count-box .counting {
    color: var(--global--color-gray);
}

.counter-light .count-box .count-title {
    color: var(--global--color-gray);
}


/* Custom, iPhone Retina */

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .counter .count-box {
        margin-bottom: 30px;
    }
    .counter .count-box .counting {
        font-size: 40px;
    }
}


/* Small Devices, Tablets */

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .counter .count-box {
        margin-bottom: 30px;
    }
}


/*------------------------------------*\
    #Call To Action
\*------------------------------------*/

.cta .btn {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.cta-1 {
    padding: 150px 0;
}

.cta-2 .heading {
    margin-bottom: 0;
}

.cta-2 .heading .heading-title {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 9px;
}

@media screen and (max-width: 991.98px) {
    .cta-2 .heading .heading-title {
        line-height: 1.5;
    }
}

.cta-2 .heading .heading-desc {
    font-size: 18px;
    line-height: 1;
    margin-bottom: 0;
    margin-top: 0;
}

@media screen and (max-width: 991.98px) {
    .cta-2 .heading .heading-desc {
        line-height: 1.5;
    }
}

.cta-2 .heading .btn {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}


/*------------------------------------*\
    #404
\*------------------------------------*/

.page-404 h3 {
    font-size: 280px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .page-404 h3 {
        font-size: 150px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .page-404 h3 {
        font-size: 180px;
    }
}

.page-404 p {
    color: #a5a5a5;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
    .page-404 .btn {
        width: 125px;
    }
}


/*------------------------------------*\
    #MAINTENANCE
\*------------------------------------*/

.page-maintenance {
    padding-top: 150px;
    padding-bottom: 150px;
}

.page-maintenance h3 {
    font-size: 85px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: 1.7px;
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .page-maintenance h3 {
        font-size: 40px;
    }
}

.page-maintenance p {
    color: #a5a5a5;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 50px;
}

.skills.skills-scroll .progress-bar {
    background-color: var(--global--color-heading);
}

.skills.skills-scroll .progress-title .title {
    color: var(--global--color-white);
}


/*------------------------------------*\
    #SOON
\*------------------------------------*/

.page-soon {
    padding-top: 140px;
    padding-bottom: 140px;
}

@media only screen and (max-width: 991px) {
    .page-soon {
        padding-top: 150px !important;
        padding-bottom: 100px !important;
    }
}

.page-soon h3 {
    font-size: 85px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 38px;
}

@media only screen and (min-width: 320px) and (max-width: 480px) {
    .page-soon h3 {
        font-size: 45px;
        margin-top: 100px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .page-soon h3 {
        font-size: 45px;
    }
}

.page-soon p {
    color: #a5a5a5;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 70px;
}


/* jQuery Countdown styles 2.0.0. */

.countdown-rtl {
    direction: rtl;
}

.countdown-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.countdown-section {
    position: relative;
    width: 100%;
    display: block;
    text-align: center;
    position: relative;
    height: auto;
    padding: 0 23px;
}

.countdown-section:last-of-type {
    margin-right: 0;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .countdown-section {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 480px) {
    .countdown-section {
        margin-top: 10px;
        margin-bottom: 10px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%;
    }
}

.countdown-section .countdown-amount {
    font-family: var(--global--font-heading);
    color: var(--global--color-primary);
    font-size: 80px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 18px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .countdown-section .countdown-amount {
        font-size: 60px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .countdown-section .countdown-amount {
        font-size: 40px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 480px) {
    .countdown-section .countdown-amount {
        font-size: 30px;
    }
}

.countdown-section .countdown-period {
    display: block;
    color: #616161;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-transform: capitalize;
    text-align: center;
}

@media only screen and (min-width: 320px) and (max-width: 480px) {
    .countdown-section .countdown-period {
        font-size: 12px;
    }
}

.countdown-boxed .countdown-section {
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.4);
    padding: 23px;
    margin: 0 15px;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .countdown-boxed .countdown-section {
        padding: 15px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 480px) {
    .countdown-boxed .countdown-section {
        margin: 5px;
        padding: 10px 5px;
    }
}

.countdown-boxed .countdown-amount {
    color: var(--global--color-white);
}

.countdown-boxed .countdown-period {
    color: var(--global--color-gray);
}

.countdown-dark .countdown-amount {
    color: var(--global--color-heading);
}

.countdown-dark .countdown-period {
    color: #616161;
}

.countdown-theme .countdown-amount {
    color: var(--global--color-primary);
}


/*------------------------------------*\
    #Landing Page / Promo Page
\*------------------------------------*/

.landing-hero {
    min-height: 700px;
    padding: 200px 0;
    background-position: right center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .landing-hero {
        padding-top: 150px;
    }
}

.landing-hero img {
    display: inline-block;
    margin-bottom: 40px;
}

.landing-hero h1 {
    font-family: var(--global--font-heading);
    color: var(--global--color-white);
    font-size: 48px;
    font-weight: 700;
    line-height: 65px;
    margin-bottom: 40px;
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .landing-hero h1 {
        font-size: 40px;
        line-height: 50px;
    }
}

.landing-hero p {
    font-family: var(--global--font-heading);
    color: var(--global--color-white);
    font-size: 15px;
    font-weight: 600;
    line-height: 26px;
}

.landing-hero .hero-action .btn:first-of-type {
    margin-right: 30px;
}

.landing-demos .showcase-card {
    -webkit-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms;
    cursor: pointer;
}

.landing-demos .showcase-card a {
    position: relative;
    display: block;
}

.landing-demos .showcase-card .showcase-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    width: 100%;
    min-height: 400px;
    position: relative;
    z-index: 2;
    -webkit-transition: all 400ms ease-out 0s;
    -o-transition: all 400ms ease-out 0s;
    transition: all 400ms ease-out 0s;
}

.landing-demos .showcase-card .showcase-content {
    margin-top: 22px;
}

.landing-demos .showcase-card .showcase-content span {
    font-size: 14px;
}

.landing-demos .showcase-card .showcase-content h4 {
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 40px;
    font-family: 800;
    -webkit-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    cursor: pointer;
}

.landing-demos .showcase-card .showcase-content h4 a {
    color: var(--global--color-heading);
}

.landing-demos .showcase-card .showcase-content h4 a:hover {
    color: var(--global--color-primary);
}

.landing-demos .showcase-card:hover {
    -webkit-transform: translateY(-12px);
    -ms-transform: translateY(-12px);
    transform: translateY(-12px);
}

.landing-demos .showcase-card:hover .showcase-img {
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 767px) {
    .showcase-card {
        max-width: 370px;
        margin-left: auto;
        margin-right: auto;
    }
}

.landing-action {
    padding-top: 200px;
}

.landing-action img {
    margin-bottom: 40px;
}

.landing-action p {
    font-family: var(--global--font-body);
    font-size: 20px;
    color: #ebebeb;
    line-height: 28px;
}

.landing-action p.subtitle {
    font-family: var(--global--font-heading);
    color: var(--global--color-primary);
    font-size: 15px;
    font-weight: 600;
    line-height: 26px;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.landing-action h2 {
    font-family: var(--global--font-heading);
    color: var(--global--color-white);
    font-size: 60px;
    font-weight: 700;
    line-height: 75px;
    margin-bottom: 40px;
}


/* landing banners */

.landing-banners {
    padding: 230px 0;
}


/* Custom, iPhone Retina */

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .landing-action h2 {
        font-size: 40px;
        line-height: 50px;
    }
}

@media only screen and (min-width: 767px) and (max-width: 991px) {
    .landing-action h2 {
        font-size: 50px;
        line-height: 60px;
    }
}


/* Small Devices, Tablets */

@media only screen and (max-width: 991px) {
    .landing-demos .portfolio-item {
        max-width: 370px;
        margin-right: auto;
        margin-left: auto;
    }
}


/*------------------------------------*\
    #Footer
\*------------------------------------*/


/* Parallax Effect */

#wrapperParallax {
    position: relative;
    z-index: 1060;
    min-height: 100vh;
}

#footerParallax {
    position: fixed;
    z-index: -1;
    left: 0;
    right: 0;
    bottom: 0;
}

@media only screen and (max-width: 991px) {
    #wrapperParallax {
        margin-bottom: 0 !important;
    }
    #footerParallax {
        position: static;
        text-align: center;
    }
}

.footer {
    background-color: var(--global--color-heading);
    padding-top: 0;
    padding-bottom: 0;
    /* Footer Widgets */
}

.footer .footer-logo {
    max-width: 100%;
    width: 100px;
}

.footer .footer-top {
    padding-top: 60px;
    padding-bottom: 40px;
}

@media screen and (max-width: 991.98px) {
    .footer .footer-top {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

@media screen and (max-width: 991.98px) {
    .footer .module-social {
        border-bottom: 0;
    }
}

@media screen and (max-width: 991.98px) {
    .footer .module-social a {
        color: var(--global--color-white);
    }
}

.footer .footer-widget .footer-widget-title h5,
.footer .footer-widget .footer-widget-title .h5
{
    color: var(--global--color-white);
    font-size: 13px;
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer .footer-widget .widget-content p {
    color: #a5a5a5;
    font-size: 13px;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 25px;
}

.footer .footer-widget .widget-content img {
    margin-bottom: 24px;
}

.footer .footer-widget .widget-content .module-social {
    height: auto;
    line-height: normal;
}

.footer .widget-instagram a {
    display: inline-block;
    margin: 2px;
    position: relative;
    width: 59px;
    height: 59px;
}

.footer .widget-instagram a img {
    max-width: 100%;
    height: auto;
}

.footer .widget-instagram a:hover .insta-hover {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.footer .widget-instagram .insta-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 350ms;
    -o-transition: all 350ms;
    transition: all 350ms;
}

.footer .widget-instagram .insta-hover i {
    line-height: 59px;
    display: block;
    background-color: var(--global--color-primary);
    color: var(--global--color-white);
    font-size: 11px;
    text-align: center;
}

.footer .widget-newsletter .widget-content {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
}

@media screen and (max-width: 991px) {
    .footer .widget-newsletter .widget-content {
        padding: 25px;
    }
}

.footer .widget-newsletter p {
    font-family: var(--global--font-body);
    font-size: 15px;
    color: var(--global--color-gray);
    margin-bottom: 21px;
}

.footer .widget-newsletter form {
    overflow: hidden;
    margin-bottom: 12px;
}

.footer .widget-newsletter .form-control {
    background-color: white;
    border: none;
    color: #b9b9b9;
    font-family: var(--global--font-body);
    font-size: 14px;
    font-weight: 400;
    height: 42px;
    line-height: 40px;
    margin-bottom: 0;
    border-radius: 0;
    padding-left: 16px;
    padding-right: 16px;
    margin-right: 50px;
    width: calc(100% - 52px);
    text-transform: capitalize;
}

.footer .widget-newsletter .form-control::-webkit-input-placeholder {
    color: #757575;
}

.footer .widget-newsletter .form-control::-moz-placeholder {
    color: #757575;
}

.footer .widget-newsletter .form-control:-ms-input-placeholder {
    color: #757575;
}

.footer .widget-newsletter button {
    position: absolute;
    top: 0;
    right: -1px;
    background-color: var(--global--color-primary);
    border: none;
    width: 42px;
    height: 42px;
    line-height: 41px;
    color: var(--global--color-white);
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    margin-left: 10px;
}

.footer .widget-newsletter button:hover {
    background-color: var(--global--color-white);
    color: var(--global--color-heading);
}

.footer .widget-links ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
    overflow: hidden;
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.footer .widget-links ul li {
    width: 50%;
    float: left;
}

@media screen and (max-width: 767px) {
    .footer .widget-links ul li {
        width: 100%;
    }
}

.footer .widget-links ul li a {
    color: var(--global--color-body);
    font-size: 12px;
    font-weight: 400;
    line-height: 31px;
    text-transform: capitalize;
    font-family: var(--global--font-heading);
}

.footer .widget-links ul li a:hover {
    color: var(--global--color-primary);
}

.footer .widget-contact-info li {
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    font-family: var(--global--font-body);
    line-height: 23px;
    color: #a5a5a5;
    margin-bottom: 5px;
}

.footer .widget-contact-info li:last-child {
    margin-bottom: 0;
}

.footer-copyright {
    border-top: 2px solid #2b2b2b;
    padding: 33px 0;
    font-size: 12px;
    font-family: var(--global--font-heading);
}

.footer-copyright .copyright {
    margin-bottom: 15px;
}

.footer-copyright .module-social {
    height: auto;
    line-height: normal;
}

.footer-copyright .module-social a {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.footer-copyright-links {
    text-align: right;
}

.footer-copyright-links li {
    display: inline-block;
}

.footer-copyright-links li a {
    display: block;
    color: var(--global--color-body);
    font-size: 13px;
    line-height: 1;
    display: block;
    padding-left: 16px;
    position: relative;
}

.footer-copyright-links li a:hover {
    color: var(--global--color-white);
}

.footer-copyright-links li a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 8px;
    height: 10px;
    width: 1px;
    background-color: var(--global--color-body);
}

.footer-copyright-links li:first-child a :before {
    display: none;
}

.footer-widget-recent .entry {
    margin-bottom: 15px;
}

.footer-widget-recent .entry .entry-title a {
    color: #7f7f7f;
    font-size: 14px;
    line-height: 23px;
    display: block;
    margin-bottom: 5px;
}

.footer-widget-recent .entry .entry-title a:hover {
    color: var(--global--color-primary);
}

.footer-widget-recent .entry .entry-meta {
    color: var(--global--color-body);
    font-size: 12px;
}

.footer-widget-recent .entry:last-of-type {
    margin-bottom: 0;
}

.footer-light {
    background-color: white;
}

.footer-light .footer-widget-title h5 {
    color: var(--global--color-heading);
}

.footer-light .widget-newsletter .form-control {
    border: 1px solid var(--global--color-gray-light);
}

.footer-light .widget-newsletter button:hover {
    background-color: var(--global--color-heading);
    color: var(--global--color-white);
}

.footer-light .footer-copyright {
    border-color: var(--global--color-gray-light);
}


/* Custom, iPhone Retina */

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .footer .footer-widget {
        padding-bottom: 0;
        text-align: center;
    }
    .footer .footer-widget {
        margin-bottom: 30px;
    }
    .footer .footer-widget-title h5 {
        margin-bottom: 15px;
    }
    .footer .widget-newsletter form {
        max-width: 400px;
    }
    .footer .pull-right {
        float: none !important;
    }
}


/* Small Devices, Tablets */

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer .footer-widget {
        padding-bottom: 40px;
        margin-bottom: 20px;
    }
    .footer .footer-widget .footer-widget-title h5, 
    .footer .footer-widget .footer-widget-title .h5 
    {
        margin-bottom: 15px;
    }
}


/*------------------------------------*\
    #Demos
\*------------------------------------*/

.demos {
    padding-top: 115px;
    padding-bottom: 120px;
}

.demos .demo {
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    margin-bottom: 35px;
}

.demos .demo:hover {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}

.demos .demo:hover .demo-img {
    -webkit-box-shadow: 0px 9px 30px 0px rgba(40, 40, 40, 0.15);
    box-shadow: 0px 9px 30px 0px rgba(40, 40, 40, 0.15);
}

.demos .demo .demo-img {
    display: inline-block;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.demos .demo .demo-img img {
    max-width: 100%;
}

.demos .demo .num {
    margin-top: 24px;
    font-family: var(--global--font-body);
    font-size: 14px;
    color: var(--global--color-body);
    font-weight: 500;
    margin-bottom: 7px;
}

.demos .demo .demo-link a {
    font-family: var(--global--font-heading);
    color: var(--global--color-heading);
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    text-transform: capitalize;
    font-weight: 700;
    font-size: 18px;
}

.demos .demo .demo-link a:hover {
    color: var(--global--color-primary);
}

.preview {
    padding-top: 0;
    padding-bottom: 0;
}

.preview .heading {
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.purchase {
    padding-top: 0;
    padding-bottom: 0;
}

.purchase .heading {
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.purchase .heading .heading-subtitle {
    color: var(--global--color-primary);
}

.purchase .heading .heading-title {
    color: var(--global--color-white);
}


/*------------------------------------*\
    #Demos
\*------------------------------------*/

.demos {
    padding-top: 115px;
    padding-bottom: 120px;
}

.demos .demo {
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    margin-bottom: 35px;
}

.demos .demo:hover {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}

.demos .demo:hover .demo-img {
    -webkit-box-shadow: 0px 9px 30px 0px rgba(40, 40, 40, 0.15);
    box-shadow: 0px 9px 30px 0px rgba(40, 40, 40, 0.15);
}

.demos .demo .demo-img {
    display: inline-block;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.demos .demo .demo-img img {
    max-width: 100%;
}

.demos .demo .num {
    margin-top: 24px;
    font-family: var(--global--font-body);
    font-size: 14px;
    color: var(--global--color-body);
    font-weight: 500;
    margin-bottom: 7px;
}

.demos .demo .demo-link a {
    font-family: var(--global--font-heading);
    color: var(--global--color-heading);
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    text-transform: capitalize;
    font-weight: 700;
    font-size: 18px;
}

.demos .demo .demo-link a:hover {
    color: var(--global--color-primary);
}

.preview {
    padding-top: 0;
    padding-bottom: 0;
}

.preview .heading {
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.purchase {
    padding-top: 0;
    padding-bottom: 0;
}

.purchase .heading {
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.purchase .heading .heading-subtitle {
    color: var(--global--color-primary);
}

.purchase .heading .heading-title {
    color: var(--global--color-white);
}