:root {
    --theme-color-light: #ffffff;
    --theme-color-dark: #000000;
    --theme-color1: #57b33e;
    --theme-color2: #ef8613;
    --theme-color3: #27a5df;
    --theme-color4: #e50081;
    --text-color: #54595f;
    --headings-color: #000000;
    --link-color: var(--theme-color-dark);
    --link-hover-color: var(--theme-color-dark);
    --text-font: "Open Sans", sans-serif;
    --title-font: "Poppins", sans-serif;
    --body-font-size: 16px;
    --body-line-height: 30px;
    --body-font-weight: 400;
    --line-height-heading-h1: 1.2em;
    --line-height-heading: 1.2em;
    --line-height-heading-small: 1.4em;
    --h1-font-size: 80px;
    --h2-font-size: 40px;
    --h3-font-size: 32px;
    --h4-font-size: 24px;
    --h5-font-size: 22px;
    --h6-font-size: 18px;
    --h1-font-weight: 700;
    --h2-font-weight: 700;
    --h3-font-weight: 700;
    --h4-font-weight: 700;
    --h5-font-weight: 600;
    --h6-font-weight: 600;
    --sec-title-subtitle-color: #a1a1a1;
    --sec-title-subtitle-font-size: 12px;
    --sec-title-subtitle-font-family: var(--text-font);
    --sec-title-subtitle-font-weight: 700;
    --sec-title-subtitle-line-height: 15px;
    --sec-title-color: var(--theme-color-dark);
    --sec-title-font-size: var(--h2-font-size);
    --sec-title-font-family: var(--title-font);
    --sec-title-font-weight: 700;
    --theme-light-background: #f8f6f1;
    --theme-light-background-text-color: var(--headings-color);
    --theme-black: #000000;
    --container-width: 1200px;
    --small-container-width: 1000px;
    --large-container-width: 1790px;
    --container-pt: 120px;
    --container-pb: 120px;
}

/*
 * typography.scss
 * -----------------------------------------------
*/
::-moz-selection {
    background: var(--theme-color-dark);
    color: #fff;
    text-shadow: none;
}

::selection {
    background: var(--theme-color-dark);
    color: #fff;
    text-shadow: none;
}

:active,
:focus {
    outline: none !important;
}

::-webkit-input-placeholder {
    color: #7c858c;
}

::-moz-input-placeholder {
    color: #7c858c;
}

::-ms-input-placeholder {
    color: #7c858c;
}

body {
    background-color: #fff;
    background-attachment: fixed;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    counter-reset: my-sec-counter;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    color: var(--text-color);
    font-size: var(--body-font-size);
    font-family: var(--text-font);
    font-weight: var(--body-font-weight);
    line-height: var(--body-line-height);
    overflow-x: hidden !important;
}

p,
.text {
    color: var(--text-color);
    font-size: var(--body-font-size);
    font-family: var(--text-font);
    font-weight: var(--body-font-weight);
    line-height: var(--body-line-height);
    letter-spacing: -0.01em;
}

/* -------- Headings ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--headings-color);
    font-family: var(--title-font);
    position: relative;
    line-height: var(--line-height-heading-);
}

h1 small,
h1 .small,
h2 small,
h2 .small,
h3 small,
h3 .small,
h4 small,
h4 .small,
h5 small,
h5 .small,
h6 small,
h6 .small {
    font-weight: normal;
    line-height: 1;
    color: var(--headings-color);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
    font-weight: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 1rem;
}

h1 {
    font-size: var(--h1-font-size);
    font-weight: var(--h1-font-weight);
    line-height: var(--line-height-heading-h1);
}

h2 {
    font-size: var(--h2-font-size);
    font-weight: var(--h2-font-weight);
    line-height: var(--line-height-heading);
}

h3 {
    font-size: var(--h3-font-size);
    font-weight: var(--h3-font-weight);
    line-height: var(--line-height-heading);
}

h4 {
    font-size: var(--h4-font-size);
    font-weight: var(--h4-font-weight);
    line-height: var(--line-height-heading);
}

h5 {
    font-size: var(--h5-font-size);
    font-weight: var(--h5-font-weight);
    line-height: var(--line-height-heading);
}

h6 {
    font-size: var(--h6-font-size);
    font-weight: var(--h6-font-weight);
    line-height: var(--line-height-heading-small);
}

/* -------- Body Text ---------- */
table p {
    margin-bottom: 0;
}

p {
    margin-bottom: 20px;
}

p a:not(.button):not(.btn):hover,
p a:not(.button):not(.btn):focus {
    text-decoration: none;
}

/* -------- other ---------- */
a {
    color: var(--link-color);
    text-decoration: none;
    font-weight: var(--body-font-weight);
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    outline: none;
}

a b,
a strong {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

a img {
    border: none;
}

pre,
ul,
ol,
dl,
dd,
blockquote,
address,
table,
fieldset {
    margin-bottom: 10px;
}

ol,
ul {
    list-style-position: inside;
    margin: 0;
    padding: 0;
}

b,
strong {
    color: #333;
    font-weight: var(--body-font-weight-bold);
}

iframe {
    border: none !important;
}

/*
 * container.scss
 * -----------------------------------------------
*/
.container .container {
    width: 100%;
}

.container .container,
.container .container-fluid,
.container-fluid .container,
.container-fluid .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

section>.container,
section>.container-fluid {
    padding-top: var(--container-pt);
    padding-bottom: var(--container-pt);
}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: var(--container-width);
    }
}

/*** 

====================================================================
Reset
====================================================================

***/
* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    font-size: 100%;
}

/*** 

====================================================================
Global Settings
====================================================================

***/
textarea {
    overflow: hidden;
    resize: none;
}

button {
    outline: none !important;
    cursor: pointer;
}

img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

ul,
li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.title a {
    color: inherit;
}

.color1 {
    color: var(--theme-color1);
}

.color2 {
    color: var(--theme-color2);
}

.color3 {
    color: var(--theme-color3);
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
    z-index: 99;
    background-color: #ffffff;
}

.large-container {
    position: static;
    max-width: var(--large-container-width);
    padding: 0px 15px;
    margin: 0 auto;
    width: 100%;
}

.auto-container {
    position: static;
    max-width: var(--container-width);
    padding: 0px 15px;
    margin: 0 auto;
    width: 100%;
}

.small-container {
    position: static;
    max-width: var(--small-container-width);
    padding: 0px 15px;
    margin: 0 auto;
    width: 100%;
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.dropdown-toggle::after {
    display: none;
}

.link-style-one {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 12px;
    line-height: 20px;
    font-weight: 600;
    overflow: hidden;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    font-family: var(--title-font);
    color: var(--theme-color-dark);
}

.link-style-one:before {
    position: absolute;
    left: 0;
    right: 18px;
    bottom: 2px;
    height: 1px;
    background-color: var(--theme-color1);
    content: "";
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.link-style-one i {
    position: relative;
    top: 1px;
    display: block;
    font-size: 14px;
    margin-left: 5px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.link-style-one:hover {
    color: var(--theme-color1);
}

.link-style-one:hover:before {
    right: 100%;
}

/*=== List Style One ===*/
.list-style-one {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 15px 0;
}

.list-style-one li {
    position: relative;
    font-size: 16px;
    line-height: 27px;
    font-weight: 400;
    color: var(--theme-color-dark);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 30px;
}

.list-style-one li i {
    margin-right: 10px;
    color: var(--theme-color-dark);
    font-size: 16px;
    line-height: 27px;
}

.list-style-one li a {
    display: block;
    color: var(--theme-color-dark);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.list-style-one li a:hover {
    color: var(--theme-color1);
}

.list-style-one.light li {
    color: var(--theme-color-light);
}

.list-style-one.light li a {
    color: var(--theme-color-light);
}

.list-style-one.light i {
    color: var(--theme-color-light);
}

/*==========================
        Default Tabs
===========================*/
.default-tabs {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.default-tabs .tab-buttons {
    position: relative;
    margin-bottom: 30px;
}

.default-tabs .tab-buttons li {
    position: relative;
    float: left;
    font-weight: 600;
    font-size: 18px;
    padding: 15px 35px;
    color: var(--theme-color1);
    line-height: 20px;
    border-radius: 5px;
    background-color: #ffffff;
    cursor: pointer;
    margin-right: 20px;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.default-tabs .tab-buttons li:last-child {
    margin-right: 0;
}

.default-tabs .tab-buttons li.active-btn {
    background: var(--gradient-1);
    color: #ffffff;
}

.default-tabs .tabs-content {
    position: relative;
    width: 100%;
}

.blockquote-style-one {
    position: relative;
    font-size: 14px;
    line-height: 24px;
    color: var(--theme-color-dark);
    padding: 0 0 0 25px;
    background-color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-family: var(--title-font);
    font-weight: 600;
    margin-bottom: 30px;
}

.blockquote-style-one:before {
    position: absolute;
    left: 0;
    top: 3px;
    bottom: 3px;
    width: 3px;
    z-index: 2;
    background-color: var(--theme-color1);
    content: "";
}

.before_none:before {
    display: none;
}

.after_none:after {
    display: none;
}

.theme-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-family: var(--title-font);
}

.theme-btn .btn-title {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/*Btn Style One*/
.btn-style-one {
    position: relative;
    font-size: 14px;
    line-height: 27px;
    padding: 17px 41px;
    font-weight: 700;
    overflow: hidden;
    color: var(--theme-color-light);
    background: var(--theme-color1);
    text-transform: uppercase;
}

.btn-style-one i {
    position: relative;
    display: block;
    margin-left: 5px;
}

.btn-style-one:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background-color: var(--theme-color-dark);
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    pointer-events: none;
    -webkit-transform-origin: top right;
    transform-origin: top right;
    transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.btn-style-one .btn-title {
    position: relative;
}

.btn-style-one .btn-title:before {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 1px;
    pointer-events: none;
    background-color: var(--theme-color-light);
}

.btn-style-one:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}

.btn-style-one:hover {
    color: var(--theme-color-light);
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-style-one.dark-bg {
    background-color: var(--theme-color-dark);
}

.btn-style-one.dark-bg::before {
    background-color: var(--theme-color2);
}

.btn-style-one.light-bg {
    background-color: var(--theme-color-light);
    color: var(--theme-color-dark);
}

.btn-style-one.light-bg:hover {
    color: var(--theme-color-light);
}

.btn-style-one.light-bg::before {
    background-color: var(--theme-color-dark);
}

.btn-style-one.bg-orange {
    background-color: var(--theme-color2);
}

.btn-style-one.bg-orange:before {
    background-color: var(--theme-color1);
}

.btn-style-one.hover-light:hover {
    color: var(--theme-color2);
}

.btn-style-one.hover-light:before {
    background-color: var(--theme-color-light);
}

.btn-style-one.hover-dark:hover {
    color: var(--theme-color-light);
}

.btn-style-one.hover-dark:before {
    background-color: var(--theme-color-dark);
}

.btn-style-one.hover-one:hover {
    color: var(--theme-color-light);
}

.btn-style-one.hover-one:before {
    background-color: var(--theme-color1);
}

/*=== List Style Two ===*/
.list-style-two {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.list-style-two li {
    position: relative;
    font-size: 15px;
    line-height: 24px;
    padding-left: 20px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--theme-color-dark);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    margin-bottom: 15px;
}

.list-style-two li i {
    position: absolute;
    left: 0px;
    top: 0px;
    color: var(--theme-color1);
    font-size: 12px;
    line-height: 24px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.list-style-two li a {
    display: inline-block;
    font-weight: inherit;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.list-style-two li a:hover {
    color: var(--theme-color1);
}

.list-style-two.two-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.list-style-two.two-column li {
    width: 50%;
}

@media (max-width: 767.98px) {
    .list-style-two.two-column li {
        width: 100%;
    }
}

.list-style-three {
    position: relative;
    padding: 0px 0;
}

.list-style-three li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: var(--theme-color-dark);
    font-family: var(--title-font);
    font-weight: 600;
    line-height: 24px;
    font-size: 18px;
    letter-spacing: -0.01em;
    padding-left: 78px;
    margin-right: 30px;
    margin-bottom: 40px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.list-style-three li:hover i {
    background-color: var(--theme-color1);
    color: var(--theme-color-light);
}

.list-style-three li i {
    position: absolute;
    top: 0;
    left: 0;
    width: 57px;
    height: 57px;
    line-height: 57px;
    display: block;
    color: var(--theme-color1);
    border-radius: 10px;
    font-size: 30px;
    margin-right: 19px;
    background-color: #f8f8f8;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    text-align: center;
}

.list-style-three li a {
    display: block;
    color: var(--theme-color-dark);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.list-style-three li a:hover {
    color: var(--theme-color1);
}

.list-style-three.list-vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.list-style-three.list-vertical li {
    margin-bottom: 10px;
}

.list-style-three.light li {
    color: var(--theme-color-light);
}

.list-style-three.light li a {
    color: inherit;
}

.list-style-three.style-two li {
    color: var(--theme-color-light);
    margin-right: 0;
}

.list-style-three.style-two li:last-child:after {
    display: none;
}

.list-style-three.style-two li:after {
    width: 1px;
    height: 28px;
    margin-left: 20px;
    margin-right: 24px;
    background: #67687A;
    content: "";
}

.list-style-three.style-two li a {
    color: var(--theme-color-light);
}

.list-style-three.style-two li i {
    color: var(--theme-color-light);
    font-size: 18px;
}

/*=== List Style Four ===*/
.list-style-four {
    position: relative;
    margin-bottom: 45px;
}

.list-style-four li {
    position: relative;
    font-family: var(--title-font);
    font-size: 16px;
    font-weight: 600;
    padding: 12px 0 12px 48px;
    letter-spacing: -0.01em;
    background-color: #e8e8e8;
}

.list-style-four li i {
    position: absolute;
    top: 15px;
    left: 28px;
    font-size: 16px;
    border-radius: 50%;
    color: var(--theme-color1);
    text-align: center;
}

.list-style-four li a {
    display: inline-block;
    color: #ffffff;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.list-style-four li a:hover {
    color: #ffffff;
}

.list-style-four.two-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.list-style-four.two-column li {
    width: 42%;
    margin-right: 20px;
}

@media (max-width: 767.98px) {
    .list-style-four.two-column li {
        width: 100%;
    }
}

/*Social Icon One*/
.social-icon-one {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.social-icon-one li {
    position: relative;
    margin: 0 10px;
}

.social-icon-one li:first-child {
    margin-left: 0;
}

.social-icon-one li a {
    position: relative;
    display: block;
    line-height: 27px;
    text-align: center;
    font-size: 12px;
    color: var(--theme-color-dark);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.social-icon-one li a:hover {
    color: var(--theme-color1);
}

.social-icon-one.light li a {
    color: var(--theme-color-light);
}

.social-icon-one.light li a:hover {
    color: var(--theme-color2);
}

/*Social Icon Two*/
.social-icon-two {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.social-icon-two li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 18px;
}

.social-icon-two li:first-child {
    margin-left: 0;
}

.social-icon-two li.title {
    font-size: 16px;
    font-weight: 700;
    color: var(--theme-color-light);
}

.social-icon-two li a {
    position: relative;
    display: block;
    height: 42px;
    width: 42px;
    line-height: 42px;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
    color: #ffffff;
    background-color: var(--theme-color1);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.social-icon-two li a i {
    position: relative;
}

.social-icon-two li a::before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    background-color: var(--theme-color2);
    content: "";
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    border-radius: 10px;
}

.social-icon-two li a:hover {
    color: #fff;
}

.social-icon-two li a:hover:before {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.bg-pattern-1 {
    background-image: url(../images/icons/pattern-1.png);
}

.bg-pattern-2 {
    background-image: url(../images/icons/pattern-2.png);
}

.bg-pattern-3 {
    background-image: url(../images/icons/pattern-3.jpg);
}

.bg-pattern-4 {
    background-image: url(../images/icons/pattern-4.jpg);
}

.bg-pattern-5 {
    background-image: url(../images/icons/pattern-5.png);
}

.devider {
    position: absolute;
    padding: 0;
    margin: 0;
    width: 80%;
    left: 0;
    right: 0;
    top: 0;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1199.98px) {
    .devider {
        width: 100%;
    }
}

/*** 

====================================================================
    Header Style One
====================================================================

***/
.header-style-one {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.1);
}

.header-style-one .header-top {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 991.98px) {
    .header-style-one .header-top {
        display: none;
    }
}

.header-style-one .header-top .inner-container {
    margin-left: 405px;
    padding-left: 60px;
    padding-right: 38px;
}

@media only screen and (max-width: 1699px) {
    .header-style-one .header-top .inner-container {
        margin-left: 360px;
    }
}

@media (max-width: 1199.98px) {
    .header-style-one .header-top .inner-container {
        margin-left: 150px;
        padding-right: 20px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.header-style-one .header-top .inner-container .list-style-one {
    padding: 12px 0;
}

.header-style-one .header-top .inner-container .list-style-one li {
    font-size: 12px;
    font-weight: 400;
    margin-right: 45px;
    color: var(--theme-color-light);
}

.header-style-one .header-top .inner-container .list-style-one li i {
    color: var(--theme-color-light);
    font-size: 12px;
}

.header-style-one .header-top .inner-container .list-style-one li a {
    font-weight: 400;
    color: var(--theme-color-light);
}

.header-style-one .header-top .inner-container .top-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 1399.98px) {
    .header-style-one .header-top .inner-container .top-right {
        display: none;
    }
}

.header-style-one .header-top .inner-container .top-right .info-btn {
    margin-right: 50px;
}

@media only screen and (max-width: 1699px) {
    .header-style-one .header-top .inner-container .top-right .info-btn {
        display: none;
    }
}

.header-style-one .header-top .inner-container .top-right .info-btn small,
.header-style-one .header-top .inner-container .top-right .info-btn strong {
    color: var(--theme-color-light);
    margin-left: 5px;
}

@media (max-width: 1399.98px) {
    .header-style-one .header-top .inner-container .top-right .social-icon-one {
        display: none;
    }
}

.header-style-one .header-lower .logo-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: -51px;
    height: 134px;
    min-width: 366px;
    margin-right: 100px;
}

@media only screen and (max-width: 1699px) {
    .header-style-one .header-lower .logo-box {
        margin-right: 55px;
    }
}

@media (max-width: 1199.98px) {
    .header-style-one .header-lower .logo-box {
        min-height: 100px;
    }
}

@media (max-width: 991.98px) {
    .header-style-one .header-lower .logo-box {
        margin-top: 0;
        padding: 0 20px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        min-width: auto;
        height: 80px;
    }
}

.header-style-one .header-lower .logo-box:before {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #f7f7f7;
    content: "";
}

.header-style-one .main-box .nav-outer {
    display: block;
}

.header-style-one .main-box .nav-outer .navigation>li {
    padding: 29px 0px;
}

.header-style-one .main-box .nav-outer .navigation>li>a {
    color: var(--theme-color-light);
}

.header-style-one .main-box .outer-box {
    margin-right: 25px;
}

.header-style-one .main-box .outer-box .ui-btn {
    color: var(--theme-color-light);
}

@media (max-width: 575.98px) {
    .header-style-one .main-box .outer-box .ui-btn {
        display: none;
    }
}

@media (max-width: 1199.98px) {
    .header-style-one .main-box .outer-box .cart-btn {
        display: none;
    }
}

.header-style-one .main-box .outer-box .divider {
    height: 45px;
    width: 1px;
    background-color: #e3dbd8;
    margin: 0 21px;
}

@media (max-width: 1199.98px) {
    .header-style-one .main-box .outer-box .divider {
        display: none;
    }
}

.header-style-one .main-box .theme-btn {
    line-height: 30px;
    padding: 25px 20px;
    min-width: 250px;
    height: 100%;
}

@media (max-width: 1399.98px) {
    .header-style-one .main-box .theme-btn {
        display: none;
    }
}

/*** 

====================================================================
Main Header
====================================================================

***/
.header-span {
    position: relative;
    height: 110px;
    display: block;
    width: 100%;
}

.main-header {
    position: relative;
    width: 100%;
    z-index: 999;
}

.header-top {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header-top .inner-container {
    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;
    width: 100%;
}

.header-top .top-left {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-top .top-right {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-top .useful-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 0;
}

.header-top .useful-links li {
    position: relative;
    margin-right: 30px;
    font-size: 12px;
    font-weight: 500;
    color: #bdbdbd;
    line-height: 20px;
    font-family: var(--title-font);
}

.header-top .useful-links li a {
    color: #bdbdbd;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.header-top .useful-links li a:hover {
    color: var(--theme-color1);
}

.main-header .logo {
    position: relative;
    display: block;
}

.main-header .logo img {
    max-width: 100%;
    height: 120px;
}

.main-header .main-box {
    position: relative;
    left: 0px;
    top: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-header .main-box .nav-outer {
    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;
    width: 100%;
}

.main-menu {
    position: relative;
}

@media only screen and (max-width: 1023px) {
    .main-menu {
        display: none;
    }
}

.main-menu .navbar-header {
    display: none;
}

.main-menu .navbar-collapse {
    padding: 0px;
}

.main-menu .navigation {
    position: relative;
    margin: 0px;
}

.main-menu .navigation>li {
    position: relative;
    float: left;
    padding: 20px 0px;
    margin-right: 50px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-menu .navigation>li:last-child {
    margin-right: 0;
}

.main-menu .navigation>li:before {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: 10px;
    height: 2px;
    width: 0%;
    background-color: var(--theme-color1);
    z-index: 3;
    content: "";
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-menu .navigation>li:hover:before,
.main-menu .navigation>li.current:before {
    left: 0;
    width: 100%;
}

.main-menu .navigation>li>a {
    position: relative;
    display: block;
    text-align: center;
    opacity: 1;
    color: var(--theme-color-dark);
    font-size: 15px;
    line-height: 24px;
    font-weight: 700;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    font-family: var(--title-font);
    text-transform: uppercase;
}

.main-menu .navigation>li>a .icon {
    position: relative;
    font-size: 20px;
    line-height: 24px;
    margin-left: 10px;
}

.main-menu .navigation>li.dropdown>a {
    padding-right: 14px;
    margin-right: -14px;
}

.main-menu .navigation>li.dropdown>a:after {
    content: "\f067";
    position: absolute;
    right: 0;
    top: 50%;
    width: 10px;
    height: 20px;
    display: block;
    line-height: 24px;
    font-size: 12px;
    z-index: 5;
    font-family: "FontAwesome";
    font-weight: 900;
    margin-top: -2px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.main-menu .navigation>li.dropdown:hover>ul {
    visibility: visible;
    opacity: 1;
    top: 100%;
    margin-top: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-menu .navigation>li>ul {
    position: absolute;
    left: 0px;
    top: 100%;
    width: 300px;
    z-index: 100;
    padding: 0;
    background-color: #ffffff;
    margin-top: 15px;
    opacity: 0;
    display: none;
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}

.main-menu .navigation>li>ul.from-right {
    left: auto;
    right: 0px;
}

.main-menu .navigation>li>ul>li {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #ebf1f5;
}

.main-menu .navigation>li>ul>li:last-child {
    border-bottom: none;
}

.main-menu .navigation>li>ul>li>a {
    position: relative;
    display: block;
    padding: 10px 0px;
    line-height: 29px;
    font-weight: 400;
    font-size: 16px;
    color: var(--theme-color-dark);
    text-align: left;
    margin: 0 30px;
    text-transform: capitalize;
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
}

.main-menu .navigation>li>ul>li:hover>a {
    color: var(--theme-color1);
}

.main-menu .navigation>li>ul>li.dropdown>a:after {
    font-family: "Font Awesome 6 Pro";
    content: "\f105";
    position: absolute;
    right: 0;
    top: 11px;
    display: block;
    line-height: 24px;
    font-size: 11px;
    font-weight: 900;
    z-index: 5;
}

.main-menu .navigation>li>ul>li.dropdown:hover>ul {
    visibility: visible;
    opacity: 1;
    top: 0px;
    margin-top: 20px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-menu .navigation>li>ul>li>ul {
    position: absolute;
    left: 100%;
    top: 0px;
    width: 220px;
    z-index: 100;
    display: none;
    background-color: var(--theme-color-light);
    opacity: 0;
    padding: 10px 0 0;
    margin-top: 10px;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
    -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}

.main-menu .navigation>li>ul>li>ul>li {
    position: relative;
    border-bottom: 1px solid #ebf1f5;
    width: 100%;
}

.main-menu .navigation>li>ul>li>ul>li:last-child {
    border-bottom: none;
}

.main-menu .navigation>li>ul>li>ul>li>a {
    position: relative;
    display: block;
    padding: 10px 0;
    line-height: 24px;
    font-weight: 400;
    font-size: 16px;
    color: var(--theme-color-dark);
    text-align: left;
    margin: 0 30px;
    text-transform: capitalize;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-menu .navigation>li>ul>li>ul>li>a:hover {
    color: var(--theme-color1);
}

.main-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: 10px;
    top: 8px;
    width: 34px;
    height: 30px;
    border: 1px solid var(--theme-color-light);
    text-align: center;
    font-size: 16px;
    line-height: 26px;
    color: var(--theme-color-light);
    cursor: pointer;
    z-index: 5;
    display: none;
}

.main-header .outer-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    padding: 0;
}

.main-header .ui-btn-outer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.main-header .ui-btn {
    position: relative;
    display: block;
    line-height: 30px;
    text-align: center;
    background: none;
    font-size: 22px;
    color: var(--theme-color-dark);
    margin-left: 15px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-header .ui-btn:hover {
    color: var(--theme-color1);
}

.main-header .cart-btn {
    position: relative;
    margin: 0;
    color: var(--theme-color-dark);
    margin-right: 30px;
    text-align: center;
}

.main-header .cart-btn:hover {
    color: var(--theme-color1);
}

.main-header .cart-btn .count {
    position: absolute;
    top: -11px;
    right: -11px;
    height: 21px;
    width: 21px;
    line-height: 21px;
    font-size: 12px;
    border-radius: 50%;
    color: #ffffff;
    background-color: var(--theme-color2);
    text-align: center;
}

.contact-list {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.contact-list li {
    position: relative;
    padding-left: 65px;
    margin-left: 35px;
}

.contact-list li .icon {
    position: absolute;
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    background-color: rgba(255, 255, 255, 0.05);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 20px;
    color: var(--theme-color1);
}

.contact-list li .title {
    font-size: 16px;
    line-height: 20px;
    color: #ffffff;
    font-weight: 600;
    font-family: var(--text-font);
    margin-bottom: 2px;
}

.contact-list li .text {
    font-size: 16px;
    line-height: 24px;
    color: #cecece;
}

.contact-list li .text a {
    color: inherit;
}

/*** 

====================================================================
    Header Style Two
====================================================================

***/
.header-style-two {
    position: relative;
    background-color: var(--theme-color-light);
}

.header-style-two .header-top {
    position: relative;
    border-bottom: 1px solid #ebebeb;
}

@media (max-width: 991.98px) {
    .header-style-two .header-top {
        display: none;
    }
}

.header-style-two .header-top .inner-container {
    margin-left: 405px;
    padding-left: 60px;
    padding-right: 38px;
}

@media only screen and (max-width: 1699px) {
    .header-style-two .header-top .inner-container {
        margin-left: 360px;
    }
}

@media (max-width: 1199.98px) {
    .header-style-two .header-top .inner-container {
        margin-left: 150px;
        padding-right: 20px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.header-style-two .header-top .inner-container .list-style-one {
    padding: 12px 0;
}

.header-style-two .header-top .inner-container .list-style-one li {
    font-size: 12px;
    font-weight: 400;
    margin-right: 40px;
}

.header-style-two .header-top .inner-container .list-style-one li i {
    font-size: 12px;
    color: var(--theme-color2);
}

.header-style-two .header-top .inner-container .list-style-one li a {
    font-weight: 400;
}

.header-style-two .header-top .inner-container .top-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-style-two .header-top .inner-container .top-right .info-btn {
    margin-right: 40px;
}

@media only screen and (max-width: 1699px) {
    .header-style-two .header-top .inner-container .top-right .info-btn {
        display: none;
    }
}

.header-style-two .header-top .inner-container .top-right .info-btn .icon {
    background-color: var(--theme-color1);
    color: var(--theme-color-light);
    padding: 3px;
    border-radius: 3px;
}

.header-style-two .header-top .inner-container .top-right .info-btn small,
.header-style-two .header-top .inner-container .top-right .info-btn strong {
    margin-left: 5px;
}

@media (max-width: 1399.98px) {
    .header-style-two .header-top .inner-container .top-right .social-icon-one {
        display: none;
    }
}

.header-style-two .header-top .inner-container .top-right .social-icon-one a {
    color: #54595f;
}

.header-style-two .header-top .inner-container .top-right .social-icon-one a:hover {
    color: var(--theme-color1);
}

.header-style-two .header-lower .logo-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: -51px;
    height: 134px;
    min-width: 366px;
    margin-right: 100px;
}

@media only screen and (max-width: 1699px) {
    .header-style-two .header-lower .logo-box {
        margin-right: 55px;
    }
}

@media (max-width: 1199.98px) {
    .header-style-two .header-lower .logo-box {
        min-width: 250px;
    }
}

@media (max-width: 991.98px) {
    .header-style-two .header-lower .logo-box {
        margin-top: 0;
        /* height: 80px; */
        padding: 0 20px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        min-width: auto;
    }
}

.header-style-two .header-lower .logo-box:before {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #ffffff;
    content: "";
}

@media (max-width: 991.98px) {
    .header-style-two .header-lower .logo-box:before {
        display: none;
    }
}

.header-style-two .header-lower .main-box .nav-outer {
    display: block;
}

@media (max-width: 991.98px) {
    .header-style-two .header-lower .main-box .nav-outer {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}

.header-style-two .header-lower .main-box .nav-outer .navigation>li {
    padding: 29px 0px;
}

.header-style-two .header-lower .main-box .outer-box {
    margin-right: 25px;
}

@media (max-width: 1199.98px) {
    .header-style-two .header-lower .main-box .outer-box .cart-btn {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .header-style-two .header-lower .main-box .outer-box .search-btn {
        display: none;
    }
}

.header-style-two .header-lower .main-box .outer-box .divider {
    height: 45px;
    width: 1px;
    background-color: #e3dbd8;
    margin: 0 21px;
}

@media (max-width: 1199.98px) {
    .header-style-two .header-lower .main-box .outer-box .divider {
        display: none;
    }
}

.header-style-two .header-lower .main-box .theme-btn {
    line-height: 32px;
    padding: 25px 20px;
    min-width: 250px;
    height: 100%;
}

@media (max-width: 1399.98px) {
    .header-style-two .header-lower .main-box .theme-btn {
        display: none;
    }
}

/*** 

====================================================================
    Header Style three
====================================================================

***/
.header-style-three {
    position: relative;
}

.header-style-three .header-top {
    position: relative;
    background-color: var(--theme-color1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 991.98px) {
    .header-style-three .header-top {
        display: none;
    }
}

.header-style-three .header-top .inner-container {
    margin-left: 405px;
    padding-left: 60px;
    padding-right: 36px;
}

@media (max-width: 1399.98px) {
    .header-style-three .header-top .inner-container {
        margin-left: 360px;
    }
}

@media (max-width: 1199.98px) {
    .header-style-three .header-top .inner-container {
        margin-left: 160px;
        padding-right: 20px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.header-style-three .header-top .inner-container .list-style-one {
    padding: 12px 0;
}

.header-style-three .header-top .inner-container .list-style-one li {
    font-size: 12px;
    font-weight: 400;
    margin-right: 45px;
    color: var(--theme-color-light);
}

.header-style-three .header-top .inner-container .list-style-one li i {
    color: var(--theme-color-light);
    font-size: 12px;
}

.header-style-three .header-top .inner-container .list-style-one li a {
    font-weight: 400;
    color: var(--theme-color-light);
}

@media (max-width: 1399.98px) {
    .header-style-three .header-top .inner-container .social-icon-one {
        display: none;
    }
}

.header-style-three .header-lower .logo-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: -51px;
    height: 134px;
    min-width: 366px;
    margin-right: 100px;
}

@media (max-width: 1399.98px) {
    .header-style-three .header-lower .logo-box {
        margin-right: 55px;
    }
}

@media (max-width: 1199.98px) {
    .header-style-three .header-lower .logo-box {
        min-width: 250px;
    }
}

@media (max-width: 991.98px) {
    .header-style-three .header-lower .logo-box {
        margin-top: 0;
        height: 80px;
        padding: 0 20px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        min-width: auto;
    }
}

.header-style-three .header-lower .logo-box:before {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #f7f7f7;
    content: "";
}

@media (max-width: 991.98px) {
    .header-style-three .header-lower .logo-box:before {
        display: none;
    }
}

.header-style-three .main-box .nav-outer {
    display: block;
}

.header-style-three .main-box .nav-outer .navigation>li {
    padding: 29px 0px;
}

.header-style-three .main-box .outer-box {
    margin-right: 25px;
}

.header-style-three .main-box .outer-box .info-btn-three {
    padding-left: 45px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 25px;
}

@media only screen and (max-width: 1699px) {
    .header-style-three .main-box .outer-box .info-btn-three {
        display: none;
    }
}

.header-style-three .main-box .outer-box .info-btn-three .icon {
    top: 0;
    color: var(--theme-color1);
}

.header-style-three .main-box .outer-box .info-btn-three small {
    font-family: var(--text-font);
    color: #4c4d56;
    font-size: 12px;
    line-height: 1em;
    letter-spacing: none;
}

.header-style-three .main-box .outer-box .info-btn-three strong {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #0c0f15;
}

.header-style-three .main-box .outer-box .divider {
    height: 45px;
    width: 1px;
    background-color: #e3dbd8;
    margin: 0 21px;
}

@media (max-width: 1199.98px) {
    .header-style-three .main-box .outer-box .divider {
        display: none;
    }
}

.header-style-three .main-box .outer-box .cart-btn {
    margin-right: 40px;
}

@media (max-width: 1199.98px) {
    .header-style-three .main-box .outer-box .cart-btn {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .header-style-three .main-box .outer-box .search-btn {
        display: none;
    }
}

.header-style-three .main-box .outer-box .theme-btn {
    line-height: 31px;
    padding: 16px 32px;
}

@media (max-width: 1399.98px) {
    .header-style-three .main-box .outer-box .theme-btn {
        display: none;
    }
}

/*** 

====================================================================
    Sticky Header
====================================================================

***/
.sticky-header {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    left: 0px;
    top: 0px;
    width: 100%;
    padding: 0px 0px;
    z-index: 99999;
    background: #ffffff;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.sticky-header.fixed-header {
    opacity: 1;
    z-index: 9999;
    visibility: visible;
}

.sticky-header .logo {
    padding: 5px 0;
}

.sticky-header .logo img {
    max-height: 100px;
}

.sticky-header .nav-outer {
    position: relative;
    background: none;
}

.sticky-header .inner-container {
    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;
}

.sticky-header .main-menu .navigation>li {
    margin: 0;
    margin-left: 60px;
    padding: 20px 0;
}

.sticky-header .main-menu .navigation>li.current>a,
.sticky-header .main-menu .navigation>li:hover>a {
    color: var(--theme-color1);
}

.sticky-header .outer-box,
.sticky-header .navbar-header {
    display: none;
}

.sticky-header .mobile-nav-toggler {
    color: var(--theme-color1);
}

@media only screen and (min-width: 768px) {

    .main-menu .navigation>li>ul,
    .main-menu .navigation>li>ul>li>ul {
        display: block !important;
        visibility: hidden;
        opacity: 0;
    }
}

/*** 

====================================================================
      Mobile Menu
====================================================================

***/
.mobile-nav-toggler {
    position: relative;
    font-size: 28px;
    line-height: 20px;
    cursor: pointer;
    color: var(--theme-color1);
    display: none;
    top: -3px;
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
    margin-left: 15px;
}

@media (max-width: 991.98px) {
    .mobile-nav-toggler {
        display: block;
    }
}

.mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    max-width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
}

.mobile-menu .menu-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
}

.mobile-menu .upper-box {
    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;
    width: 100%;
    padding: 10px 20px;
}

.mobile-menu .close-btn {
    position: relative;
    top: 0px;
    right: -5px;
    text-align: center;
    font-size: 18px;
    color: var(--theme-color1);
    height: 30px;
    width: 30px;
    line-height: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
}

.mobile-menu .close-btn:hover {
    opacity: 0.5;
}

.mobile-menu .nav-logo {
    position: relative;
    text-align: left;
    width: 100%;
}

.mobile-menu .nav-logo img {
    max-height: 80px;
}

.mobile-menu .menu-box {
    position: relative;
    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: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    background: var(--theme-color-light);
    padding: 0px 0px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    border-radius: 0px;
    -webkit-transform: translateX(101%);
    transform: translateX(101%);
}

.mobile-menu-visible {
    overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.4s ease 200ms;
    transition: all 0.4s ease 200ms;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu-visible .mobile-menu .close-btn {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

.mobile-menu-visible .scroll-to-top {
    opacity: 0;
    visibility: hidden;
}

.mobile-menu .navigation {
    position: relative;
    display: block;
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu .navigation li {
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu .navigation li>ul>li:last-child {
    border-bottom: none;
}

.mobile-menu .navigation li>ul>li:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu .navigation li>a {
    position: relative;
    display: block;
    line-height: 24px;
    padding: 10px 20px;
    font-size: 16px;
    color: var(--theme-color-dark);
    font-weight: 400;
    text-transform: capitalize;
}

.mobile-menu .navigation li:hover>a,
.mobile-menu .navigation li.current>a {
    color: var(--theme-color1);
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 44px;
    height: 44px;
    text-align: center;
    font-size: 16px;
    line-height: 44px;
    color: var(--theme-color-dark);
    cursor: pointer;
    z-index: 5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn:after {
    content: "";
    position: absolute;
    left: 0px;
    top: 10px;
    width: 1px;
    height: 24px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu .navigation li.dropdown .dropdown-btn.active i:before {
    content: "\f106";
}

.mobile-menu .navigation li.logo,
.mobile-menu .navigation li.logo-box {
    display: none;
}

.mobile-menu .navigation li>ul,
.mobile-menu .navigation li>ul>li>ul {
    display: none;
}

.mobile-menu .navigation li>ul>li {
    padding-left: 20px;
}

.contact-list-one {
    position: relative;
    padding: 30px 20px 20px;
}

.contact-list-one li {
    position: relative;
    padding-left: 50px;
    min-height: 50px;
    margin-bottom: 20px;
}

.contact-list-one li .icon {
    position: absolute;
    left: 0;
    top: 0px;
    font-size: 32px;
    line-height: 50px;
    color: var(--theme-color1);
}

.contact-list-one li .title {
    display: block;
    font-size: 14px;
    color: var(--theme-color-dark);
    font-weight: 700;
    text-transform: uppercase;
}

.contact-list-one li .text {
    font-size: 14px;
    line-height: 24px;
    color: var(--theme-color-dark);
}

.contact-list-one li .text a {
    color: var(--theme-color-dark);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.mobile-menu .social-links {
    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;
    background: var(--theme-color-light);
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: auto;
}

.mobile-menu .social-links li {
    position: relative;
    text-align: center;
    width: 100%;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu .social-links li a {
    position: relative;
    display: block;
    line-height: 50px;
    height: 50px;
    font-size: 14px;
    text-align: center;
    color: var(--theme-color1);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.mobile-menu .social-links li a:hover {
    color: var(--theme-color1);
}

/*** 

====================================================================
Section Title
====================================================================

***/
.sec-title {
    position: relative;
    margin-bottom: 50px;
}

@media (max-width: 991.98px) {
    .sec-title br {
        display: none;
    }
}

.sec-title .sub-title-outer {
    position: relative;
    margin-bottom: 5px;
    display: inline-block;
}

.sec-title .sub-title {
    position: relative;
    display: block;
    font-size: var(--sec-title-subtitle-font-size);
    line-height: var(--sec-title-subtitle-line-height);
    font-weight: var(--sec-title-subtitle-font-weight);
    font-family: var(--sec-title-subtitle-font-family);
    color: var(--sec-title-subtitle-color);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: -3px;
}

.sec-title .divider {
    position: relative;
    display: inline-block;
    width: 100%;
    background-image: url(../images/divider.png);
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    height: 16px;
}

.sec-title .divider:before,
.sec-title .divider:after {
    position: absolute;
    left: 50%;
    top: 50%;
    border-bottom: 1px solid var(--theme-color1);
    content: "";
    width: 50%;
    margin-left: 11px;
}

.sec-title .divider:after {
    right: 50%;
    left: auto;
    margin-right: 11px;
    margin-left: 0;
}

.sec-title h1 {
    position: relative;
    font-size: var(--h1-font-size);
    font-weight: 900;
    line-height: 1em;
    margin-bottom: 0;
}

@media (max-width: 1199.98px) {
    .sec-title h1 {
        font-size: 84px;
    }
}

@media (max-width: 991.98px) {
    .sec-title h1 {
        font-size: 72px;
    }
}

@media (max-width: 767.98px) {
    .sec-title h1 {
        font-size: 68px;
    }
}

@media (max-width: 575.98px) {
    .sec-title h1 {
        font-size: 54px;
    }
}

.sec-title h2 {
    position: relative;
    font-size: var(--sec-title-font-size);
    color: var(--sec-title-color);
    font-family: var(--sec-title-font-family);
    font-weight: var(--sec-title-font-weight);
    line-height: 1.3em;
    margin-bottom: 0;
}

@media (max-width: 575.98px) {
    .sec-title h2 {
        font-size: 36px;
    }
}

.sec-title .text {
    font-size: 16px;
    line-height: 30px;
    margin-top: 30px;
}

.sec-title.light .sub-title,
.sec-title.light .text,
.sec-title.light h2,
.sec-title.light h1 {
    color: #fff;
}

/***

==================================================================
    Features Section Four
==================================================================

***/
.features-section-four {
    position: relative;
    overflow: hidden;
    padding: 70px 0 70px;
}

.features-section-four .icon-solar-2 {
    position: absolute;
    top: 0;
    left: 0;
}

.icon-solar-2 {
    width: 421px;
    height: 301px;
    background-image: url(../images/icon-solar-2.png);
}

/*** 

====================================================================
    Services Section Two
====================================================================

***/
.services-section-two {
    position: relative;
    padding: 60px 0 90px;
    z-index: 3;
}

.services-section-two .bg {
    height: auto;
    bottom: 280px;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.services-section-two .bg:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgb(248, 248, 248)), color-stop(50%, rgb(248, 248, 248)), to(rgba(125, 185, 232, 0)));
    background: linear-gradient(to right, rgb(248, 248, 248) 0%, rgb(248, 248, 248) 50%, rgba(125, 185, 232, 0) 100%);
}

.services-section-two .bottom-text .text {
    color: var(--theme-color-light);
    font-family: var(--title-font);
    font-size: 16px;
}

.services-section-two .bottom-text .text a {
    margin-left: 5px;
    font-weight: 600;
    color: var(--theme-color2);
    text-decoration: underline;
}

.service-block-two {
    margin-bottom: 30px;
}

.service-block-two .inner-box {
    position: relative;
    height: 100%;
    background-color: var(--theme-color-light);
}

.service-block-two .inner-box:hover .image-box .image img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.service-block-two .inner-box:hover .content-box:before {
    height: 100%;
}

.service-block-two .inner-box:hover .content-box .icon {
    background-color: var(--theme-color-light);
    color: var(--theme-color2);
}

.service-block-two .inner-box:hover .content-box .title,
.service-block-two .inner-box:hover .content-box .text {
    color: var(--theme-color-light) !important;
}

.service-block-two .inner-box:hover .content-box .count {
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.1);
}

.service-block-two .inner-box:hover .content-box .icon-border {
    display: none;
}

.service-block-two .inner-box:hover .content-box .icon-border-2 {
    display: block;
}

.service-block-two .inner-box .image-box {
    position: relative;
    padding: 0 20px;
    z-index: 3;
}

.service-block-two .inner-box .image-box .image {
    overflow: hidden;
    margin-bottom: 0;
}

.service-block-two .inner-box .image-box .image img {
    width: 100%;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-block-two .inner-box .content-box {
    position: relative;
    background-color: var(--theme-color-light);
    padding: 175px 40px 50px 20px;
    margin-top: -140px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 1199.98px) {
    .service-block-two .inner-box .content-box {
        padding-right: 20px;
    }
}

@media (max-width: 575.98px) {
    .service-block-two .inner-box .content-box {
        padding-bottom: 30px;
    }
}

.service-block-two .inner-box .content-box:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    height: 0;
    background-color: var(--theme-color2);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-block-two .inner-box .content-box .icon-border-3 {
    position: absolute;
    left: 47px;
    bottom: 37px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-block-two .inner-box .content-box .icon-border-2 {
    position: absolute;
    left: 47px;
    bottom: 37px;
    display: none;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-block-two .inner-box .content-box .icon {
    position: relative;
    display: block;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 66px;
    height: 66px;
    line-height: 66px;
    font-size: 35px;
    color: var(--theme-color-light);
    background-color: var(--theme-color2);
    text-align: center;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-block-two .inner-box .content-box .content {
    margin-left: 19px;
}

.service-block-two .inner-box .content-box .title {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.service-block-two .inner-box .content-box .text {
    position: relative;
    margin-bottom: 0;
    font-size: 14px;
    letter-spacing: -0.01em;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

/*-----------------------------------------38. Owl Carousel-------------------------------------------*/
.custom-dot {
    display: inline-block;
    z-index: 1;
    margin-top: 30px;
}

.custom-dot span {
    width: 12px;
    height: 12px;
    margin: 5px 7px;
    background: #cecece;
    cursor: pointer;
    display: block;
    border: 1px solid #fff;
    -webkit-backface-visibility: visible;
    border-radius: 30px;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.custom-dot span:hover {
    background: #aaa;
    -webkit-backface-visibility: visible;
    border-radius: 30px;
}

.custom-dot.active span {
    width: 12px;
    height: 12px;
    background: #6c6c72;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.owl-nav i {
    color: #d00b2b;
    font-size: 20px;
    padding-top: 10px;
}

.owl-nav .owl-prev {
    color: #d21e2b;
    font-size: 43px;
    left: 0%;
    text-align: center;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    width: 50px;
    height: 50px;
    background: #fff !important;
    -webkit-box-shadow: 0px 5px 28px 0px rgba(50, 50, 50, 0.1);
    -moz-box-shadow: 0px 5px 28px 0px rgba(50, 50, 50, 0.1);
    box-shadow: 0px 5px 28px 0px rgba(50, 50, 50, 0.1);
}

.owl-nav .owl-next {
    color: #d21e2b;
    font-size: 43px;
    text-align: center;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    width: 50px;
    height: 50px;
    background: #fff !important;
    -webkit-box-shadow: 0px 5px 28px 0px rgba(50, 50, 50, 0.1);
    -moz-box-shadow: 0px 5px 28px 0px rgba(50, 50, 50, 0.1);
    box-shadow: 0px 5px 28px 0px rgba(50, 50, 50, 0.1);
}

.owl-theme .owl-nav {
    margin-top: 32px;
}

/** funfact-section **/

.funfact-section {

    padding: 70px 0px 64px 0px;
}

.bg-color-2 {
    background: #333333;
}

.funfact-section .inner-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.counter {
    color: var(--theme-color3);
    background: var(--theme-color3);
    text-align: center;
    width: 195px;
    height: 195px;
    padding: 0 0 20px 20px;
    margin: 0 auto;
    border-radius: 100px 100px;
    position: relative;
    z-index: 1;
}

.counter:before {
    content: "";
    background: #fff;
    width: 100%;
    height: 100%;
    border-radius: 100px 100px;
    box-shadow: 10px 10px 10px rgb(0, 0, 0, 0.1);
    position: absolute;
    top: 0;
    left: 15px;
    z-index: -1;
}

.counter .counter-icon {
    color: #fff;
    background: var(--theme-color3);
    font-size: 30px;
    line-height: 70px;
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    border-radius: 50px;
}

.counter h3 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 15px;
}

.counter .counter-value-wrap {
    font-size: 30px;
    font-weight: 600;
}

.counter .counter-value {
    /*    font-size: 30px;
        font-weight: 600;*/
}

@media screen and (max-width:990px) {
    .counter {
        margin-bottom: 40px;
    }
}

.testimonial {
    text-align: center;
    padding: 50px;
    margin: 30px 15px 35px;
    background: #f9f9f9;
    /* box-shadow: 8px 4px 0 0 #77a9dd; */
    position: relative;
}

.testimonial .pic {
    width: 120px;
    height: 120px;
    /*    border: 5px solid #77a9dd;*/
    margin: 0 auto;
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
}

.testimonial .pic img {
    width: 100%;
    height: auto;
}

.testimonial .description {
    font-size: 15px;
    color: #757575;
    line-height: 27px;
    margin-bottom: 20px;
    position: relative;
}

.testimonial .description:before {
    content: "\f10d";
    font-family: "FontAwesome";
    font-size: 32px;
    color: var(--theme-color3);
    position: absolute;
    top: -15px;
    left: -35px;
}

.testimonial .testimonial-profile {
    position: relative;
    margin: 20px 0 10px 0;
}

.testimonial .testimonial-profile:after {
    content: "";
    width: 50px;
    height: 2px;
    background: var(--theme-color3);
    margin: 0 auto;
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
}

.testimonial .title {
    display: inline-block;
    font-size: 18px;
    color: var(--theme-color1);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

.testimonial .post {
    display: inline-block;
    font-size: 15px;
    color: var(--theme-color1);
    text-transform: capitalize;
}

/***

==================================================================
        Main Footer
==================================================================

***/
.main-footer {
    position: relative;
    background-color: #333333;
}

.main-footer .widgets-section {
    position: relative;
    padding: 70px 0 25px;
}

.main-footer .footer-column {
    position: relative;
    margin-bottom: 40px;
}

.main-footer .footer-widget {
    position: relative;
}

.main-footer .widget-title {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 1.2em;
    color: var(--theme-color-light);
    font-weight: 700;
    margin-bottom: 25px;
}

.main-footer .about-widget .logo {
    margin-bottom: 40px;
}

.main-footer .about-widget .text {
    font-size: 16px;
    line-height: 30px;
    color: #e0e0e0;
    margin-bottom: 40px;
}

/*=== User LInks ===*/
.user-links {
    position: relative;
}

.user-links li {
    position: relative;
    font-size: 14px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    margin-bottom: 14px;
}

.user-links li a {
    position: relative;
    display: inline-block;
    color: inherit;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.user-links li a:hover {
    color: var(--theme-color-light);
}

.user-links li a:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--theme-color1);
    content: "";
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.user-links li a:hover:before {
    width: 100%;
}

.user-links li i {
    font-weight: 300;
    margin-right: 2px;
    font-size: 10px;
}

.user-links.two-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.user-links.two-column li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    width: 50%;
    padding-right: 15px;
}

.contact-list-two {
    position: relative;
    padding: 0;
}

.contact-list-two li {
    position: relative;
    padding-left: 40px;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
}

.contact-list-two li i {
    position: absolute;
    top: 0px;
    left: 0;
    color: var(--theme-color1);
    font-size: 24px;
    line-height: 24px;
}

.contact-list-two li:last-child {
    margin-bottom: 0;
}

.contact-list-two li a {
    position: relative;
    display: inline-block;
    color: var(--theme-color-dark);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.contact-list-two li a:hover {
    color: var(--theme-color1);
}

.contact-list-two.light li,
.contact-list-two.light a {
    color: var(--theme-color-light);
}



/*=== Footer Bottom ===*/
.footer-bottom {
    position: relative;
    width: 100%;
}

.footer-bottom .inner-container {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

.footer-bottom .copyright-text {
    position: relative;
    font-size: 14px;
    line-height: 30px;
    color: #c4c5c7;
    font-weight: 400;
    margin-bottom: 0px;
    letter-spacing: -0.025em;
    text-align: center;
}

.footer-bottom .copyright-text a {
    color: var(--theme-color1);
}

.footer-bottom .copyright-text a:hover {
    color: var(--theme-color2);
}

/***

==================================================================
        Main Footer
==================================================================

***/
.main-footer .bg:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #0c0f15;
    opacity: 0.97;
}

.main-footer .icon-turbines-7 {
    position: absolute;
    bottom: 0;
    right: 0;
}

.main-footer .footer-top {
    position: relative;
    padding-top: 88px;
}

.main-footer .footer-top .outer-box {
    position: relative;
    background-color: rgba(255, 255, 255, 0.1);
    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: 67px 100px 62px 68px;
}

@media (max-width: 991.98px) {
    .main-footer .footer-top .outer-box {
        padding: 60px 50px;
    }
}

@media (max-width: 767.98px) {
    .main-footer .footer-top .outer-box {
        -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;
    }
}

@media (max-width: 767.98px) {
    .main-footer .footer-top .outer-box .logo {
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .main-footer .footer-top .outer-box .social-icon-two li:nth-child(2) {
        margin-left: 0;
    }
}

@media (max-width: 767.98px) {
    .main-footer .footer-top .outer-box .social-icon-two li.title {
        display: none;
    }
}

/* CSS */
.button1 {
    background-color: #e50081;
    border-radius: 8px;
    border-style: none;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-family: "Haas Grot Text R Web", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    height: 40px;
    line-height: 20px;
    list-style: none;
    margin: 0;
    outline: none;
    padding: 10px 16px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: color 100ms;
    vertical-align: baseline;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button1:hover,
.button1:focus {
    background-color: #57b33e;
    text-decoration: none;
    color: #ffffff;
}

/*===========================
  card-01 css
===========================*/
.single-card {
    box-shadow: var(--shadow-1);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 30px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.single-card:hover {
    box-shadow: var(--shadow-4);
}

.single-card .card-image img {
    width: 100%;
    height: 100%;
}

.single-card .card-content {
    padding: 16px;
}

.single-card .card-content .card-title {
    margin-bottom: 0;
    text-align: center;
}

.single-card .card-content .card-title a {
    color: var(--black);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.single-card .card-content .card-title a:hover {
    color: var(--primary);
}

.single-card .card-content .text {
    color: var(--dark-3);
    margin-top: 8px;
}

.PageContent ul.list1 {
    list-style: none !important;
    /* padding-left: 30px !important; */
}

.PageContent ul.list1 li {
    list-style: none !important;
    background: url('../images/list.png') no-repeat left center !important;
    background-size: 16px 16px !important;
    padding-left: 25px !important;
    margin-bottom: 10px !important;
}