/*** 

====================================================================
  Reset
====================================================================

 ***/

* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
}

/*** 

====================================================================
  Global Settings
====================================================================

 ***/

body {
    font-size: 16px;
    color: #888888;
    line-height: 28px;
    font-weight: 400;
    background: #ffffff;
    font-family: 'Open Sans', sans-serif;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    -webkit-font-smoothing: antialiased;
}

@media (min-width:1200px) {
    .container {
        max-width: 1200px;
        padding: 0px 15px;
    }
}

.large-container {
    max-width: 1500px;
    padding: 0px 15px;
    margin: 0 auto;
}

.container-fluid {
    padding: 0px;
}

.auto-container {
    position: static;
    max-width: 1200px;
    /* padding:0px 15px; */
    margin: 0 auto;
}

.small-container {
    max-width: 680px;
    margin: 0 auto;
}

.boxed_wrapper {
    position: relative;
    margin: 0 auto;
    overflow: hidden !important;
    width: 100%;
    min-width: 300px;
}

a {
    text-decoration: none;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

a:hover {
    text-decoration: none;
    outline: none;
}

input,
button,
select,
textarea {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    background: transparent;
}

::-webkit-input-placeholder {
    color: inherit;
}

::-moz-input-placeholder {
    color: inherit;
}

::-ms-input-placeholder {
    color: inherit;
}

ul,
li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

input {
    transition: all 500ms ease;
}

button:focus,
input:focus,
textarea:focus {
    outline: none;
    box-shadow: none;
    transition: all 500ms ease;
}

p {
    position: relative;
    font-family: 'Poppins', sans-serif;
    color: #888888;
    font-size: 16px;
    line-height: 1.8em;
    margin-bottom: 0px;
    font-weight: 400;
    transition: all 500ms ease;
    margin-bottom: 20px;
}

p:last-child {
    margin-bottom: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    position: relative;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #141417;
    line-height: 1.4em;
    margin: 0px;
    transition: all 500ms ease;
}

/** use-font-family **/

.font_family_inter {
    font-family: 'Inter', sans-serif;
}

.font_family_open_sans {
    font-family: 'Open Sans', sans-serif;
}

.font_family_oxygen {
    font-family: 'Oxygen', sans-serif;
}

.font_family_poppins {
    font-family: 'Poppins', sans-serif;
}

.font_family_frank {
    font-family: 'Frank Ruhl Libre', serif;
}

.font_family_spartan {
    font-family: 'Spartan', sans-serif;
}

.font_family_muli {
    font-family: 'Mulish', sans-serif;
}

.font_family_pt {
    font-family: 'PT Serif', serif;
}

.font_family_jost {
    font-family: 'Jost', sans-serif;
}

.centred {
    text-align: center;
}

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

figure {
    margin: 0px;
}

img {
    display: inline-block;
    
    height: auto;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}

/** button **/

/* theme-btn-one */

.theme-btn {
    position: relative;
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
    font-size: 15px;
    line-height: 26px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    color: #fff;
    text-align: center;
    padding: 12px 32px;
    border-radius: 5px;
    text-transform: capitalize;
    z-index: 1;
    -webkit-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
    -o-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
    transition: all cubic-bezier(.4, 0, .2, 1) .4s;
}

.theme-btn i {
    position: relative;
    margin-left: 8px;
    font-size: 14px;
    font-weight: 400;
    top: 1px;
}

.theme-btn-one:before {
    position: absolute;
    content: '';
    width: 0%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: -1;
    transition: all 500ms ease;
}

.theme-btn-one:hover:before {
    width: 100%;
}

/* theme-btn-two */

.theme-btn-two {
    background: #fff;
    padding: 12px 62px 12px 30px;
}

.theme-btn-two:hover {
    padding: 12px 69px 12px 30px;
}

.theme-btn-two span {
    position: relative;
    color: transparent;
}

.theme-btn-two span:before,
.theme-btn-two span:after {
    content: attr(data-text);
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%) translateX(0);
    -ms-transform: translateY(-50%) translateX(0);
    transform: translateY(-50%) translateX(0);
    width: 100%;
    -webkit-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
    -o-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
    transition: all cubic-bezier(.4, 0, .2, 1) .4s;
}

.theme-btn-two span:before {
    color: #141417;
}

.theme-btn-two span:after {
    color: #f4244f;
    opacity: 0;
}

.theme-btn-two:hover span:before {
    -webkit-transform: translateY(-50%) translateX(-30px);
    -ms-transform: translateY(-50%) translateX(-30px);
    transform: translateY(-50%) translateX(-30px);
    opacity: 0;
}

.theme-btn-two:hover span:after {
    -webkit-transform: translateY(-50%) translateX(0);
    -ms-transform: translateY(-50%) translateX(0);
    transform: translateY(-50%) translateX(0);
    opacity: 1;
}

.theme-btn-two:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 32px;
    -webkit-transform: translateY(-50%) scaleX(1);
    -ms-transform: translateY(-50%) scaleX(1);
    transform: translateY(-50%) scaleX(1);
    width: 18px;
    height: 2px;
    background: #141417;
    transition: all 500ms ease;
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    transform-origin: right;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.theme-btn-two:hover:before {
    -webkit-transform: translateY(-50%) scaleX(1);
    -ms-transform: translateY(-50%) scaleX(1);
    transform: translateY(-50%) scaleX(1);
    width: 25px;
}

.theme-btn-two:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 32px;
    width: 9px;
    height: 9px;
    border-right: 2px solid #141417;
    border-top: 2px solid #141417;
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

/* theme-btn-three */

.theme-btn-three {
    padding: 12px 62px 12px 30px;
}

.theme-btn-three:hover {
    padding: 12px 69px 12px 30px;
}

.theme-btn-three span {
    position: relative;
    color: transparent;
}

.theme-btn-three span:before,
.theme-btn-three span:after {
    content: attr(data-text);
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%) translateX(0);
    -ms-transform: translateY(-50%) translateX(0);
    transform: translateY(-50%) translateX(0);
    width: 100%;
    transition: all 500ms ease;
}

.theme-btn-three span:before {
    color: #fff;
}

.theme-btn-three span:after {
    color: #141417;
    opacity: 0;
}

.theme-btn-three:hover span:before {
    -webkit-transform: translateY(-50%) translateX(-30px);
    -ms-transform: translateY(-50%) translateX(-30px);
    transform: translateY(-50%) translateX(-30px);
    opacity: 0;
}

.theme-btn-three:hover span:after {
    -webkit-transform: translateY(-50%) translateX(0);
    -ms-transform: translateY(-50%) translateX(0);
    transform: translateY(-50%) translateX(0);
    opacity: 1;
}

.theme-btn-three:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 32px;
    -webkit-transform: translateY(-50%) scaleX(1);
    -ms-transform: translateY(-50%) scaleX(1);
    transform: translateY(-50%) scaleX(1);
    width: 18px;
    height: 2px;
    background: #fff;
    transition: all 500ms ease;
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    transform-origin: right;
}

.theme-btn-three:hover:before {
    -webkit-transform: translateY(-50%) scaleX(1);
    -ms-transform: translateY(-50%) scaleX(1);
    transform: translateY(-50%) scaleX(1);
    width: 25px;
}

.theme-btn-three:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 32px;
    width: 9px;
    height: 9px;
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    transition: all 500ms ease;
}

/** theme-btn-four **/

.theme-btn-four {
    border-radius: 30px;
    background: #6a36ff;
}

.theme-btn-four:before {
    background-color: #141417;
    border-radius: 30px;
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(-100%, 0) rotate(10deg);
    transform-origin: top left;
    transition: .3s transform ease-out;
    will-change: transform;
    z-index: -1;
}

.theme-btn-four:hover:before {
    transform: translate(0, 0);
}

/** theme-btn-five **/

.theme-btn-five {
    background: #612ade;
    padding: 17px 40px;
}

.theme-btn-five:before {
    position: absolute;
    content: '';
    background: #141417;
    width: 0%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: -1;
    transition: all 500ms ease;
}

.theme-btn-five:hover:before {
    width: 100%;
}

/** theme-btn-six **/

.theme-btn-six {
    border: 1px solid #e7e7e7;
    padding: 16px 40px;
    color: #141417;
}

.theme-btn-six:hover {
    color: #fff !important;
    border-color: #f1592a;
}

.theme-btn-six:before {
    position: absolute;
    content: '';
    background: #e7b801;
    width: 0%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: -1;
    transition: all 500ms ease;
}

.theme-btn-six:hover:before {
    width: 100%;
}

/** theme-btn-seven **/

.theme-btn-seven {
    background: #f1592a;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 500;
    font-family: 'Muli', sans-serif;
    padding: 17px 35px;
    letter-spacing: 1px;
}

.theme-btn-seven:before {
    position: absolute;
    content: '';
    background: #141417;
    width: 0%;
    height: 100%;
    top: 0px;
    right: 0px;
    border-radius: 30px;
    z-index: -1;
    transition: all 500ms ease;
}

.theme-btn-seven:hover:before {
    width: 100%;
    left: 0px;
}

/** theme-btn-eight **/

.theme-btn-eight {
    font-weight: 500;
    font-family: 'Spartan', sans-serif;
    border-radius: 0px;
    padding: 13px 26px 11px 26px;
    background: #ff7f4c;
}

.theme-btn-eight:before {
    webkit-transition-duration: 800ms;
    transition-duration: 800ms;
    position: absolute;
    width: 200%;
    height: 200%;
    content: "";
    bottom: 110%;
    left: 50%;
    background-color: #141417;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: -1;
}

.theme-btn-eight:hover:before {
    bottom: -40%;
}

/* theme-btn-nine */

.theme-btn-nine {
    border-radius: 0px;
    font-family: 'Jost', sans-serif;
    padding: 17px 40px;
    font-size: 17px;
    background: #fff;
    color: #141417 !important;
}

.theme-btn-nine:before {
    position: absolute;
    content: '';
    background: #141417;
    width: 100%;
    height: 0%;
    left: 0px;
    bottom: 0px;
    z-index: -1;
    transition: all 500ms ease;
}

.theme-btn-nine:hover:before {
    top: 0px;
    height: 100%;
}

.theme-btn-nine:hover {
    color: #fff !important;
}

.sec-pad {
    padding: 150px 0px;
}

/** sec-title **/

.sec-title .sub-title {
    border-radius: 30px;
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.10);
    padding: 6px 37px;
    text-transform: uppercase;
}

.sec-title .sub-title:before {
    position: absolute;
    content: '';
    background: #fff;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 30px;
    z-index: -1;
}

.sec-title h2 {
    line-height: 52px;
}

.sec-title-two span {
    color: #fff;
    border-radius: 30px;
    text-transform: uppercase;
}

.sec-title-two h2 {
    line-height: 52px;
}

.sec-title-two.light h2 {
    color: #fff;
}

.sec-title-three h6 {
    text-transform: uppercase;
}

.sec-title-three h2 {
    line-height: 52px;
}

.sec-title-three.light h2 {
    color: #fff;
}

.sec-title-four h6 {
    border: 1px solid #e5e5e5;
    padding: 0px 28px;
}

.sec-title-four h2 {
    line-height: 52px;
}

.sec-title-five.light h2 {
    color: #fff;
}

.sec-title-seven h4 {
    padding-right: 14px;
}

.sec-title-seven h4:after {
    position: absolute;
    content: '/';
    top: 0px;
    right: 0px;
    font-size: 16px;
}

.sec-title-seven.centred h4 {
    padding-left: 14px;
}

.sec-title-seven.centred h4:before {
    position: absolute;
    content: '/';
    top: 0px;
    left: 0px;
    font-size: 16px;
}

.sec-title-seven h2 {
    line-height: 55px;
}

.sec-title-nine h6 {
    background: #feecee;
}

.sec-title-ten .sub-title {
    background: #e9e3f6;
    border-radius: 25px;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

@-webkit-keyframes circle {
    0% {
        opacity: 1;
    }
    40% {
        opacity: 1;
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

@keyframes circle {
    0% {
        opacity: 1;
    }
    40% {
        opacity: 1;
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

@-webkit-keyframes ripple {
    70% {
        -webkit-box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes ripple {
    70% {
        -webkit-box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes slide {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 1920px 0;
    }
}

@-webkit-keyframes slide {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 1920px 0;
    }
}

.float-bob-y {
    animation-name: float-bob-y;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: float-bob-y;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: float-bob-y;
    -moz-animation-duration: 2s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: float-bob-y;
    -ms-animation-duration: 2s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: float-bob-y;
    -o-animation-duration: 2s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

.float-bob-x {
    animation-name: float-bob-x;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: float-bob-x;
    -webkit-animation-duration: 15s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: float-bob-x;
    -moz-animation-duration: 15s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: float-bob-x;
    -ms-animation-duration: 15s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: float-bob-x;
    -o-animation-duration: 15s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

:root {
    --theme-color: #e35711;
}

.theme-color {
    color: var(--theme-color);
}

.color_black {
    color: #141417;
}

.g_color_2 {
    color: transparent;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
}

.g_color_2 {
    background: -webkit-linear-gradient(45deg, #41a0ea, #f18e95 75%);
}

.default-form input[type='text'],
.default-form input[type='email'],
.default-form input[type='tel'],
.default-form input[type='password'],
.default-form textarea {
    position: relative;
    width: 100%;
    height: 50px;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 5px;
    font-size: 15px;
    color: #808080;
    padding: 15px 20px;
    transition: all 500ms ease;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

@-webkit-keyframes circle {
    0% {
        opacity: 1;
    }
    40% {
        opacity: 1;
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

@keyframes circle {
    0% {
        opacity: 1;
    }
    40% {
        opacity: 1;
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

@-webkit-keyframes ripple {
    70% {
        -webkit-box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes ripple {
    70% {
        -webkit-box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes slide {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 1920px 0;
    }
}

@-webkit-keyframes slide {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 1920px 0;
    }
}

.float-bob-y {
    animation-name: float-bob-y;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: float-bob-y;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: float-bob-y;
    -moz-animation-duration: 2s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: float-bob-y;
    -ms-animation-duration: 2s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: float-bob-y;
    -o-animation-duration: 2s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

.float-bob-x {
    animation-name: float-bob-x;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: float-bob-x;
    -webkit-animation-duration: 15s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: float-bob-x;
    -moz-animation-duration: 15s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: float-bob-x;
    -ms-animation-duration: 15s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: float-bob-x;
    -o-animation-duration: 15s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

.tabs-box .tab {
    position: relative;
    display: none;
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
}

.tabs-box .tab.active-tab {
    display: block;
}

.tabs-box .tab {
    transform: scale(0.9, 0.9) translateY(0px);
}

.tabs-box .tab.active-tab {
    transform: scale(1) translateY(0px);
}

/* Color */

a:hover,
a {
    color: #222222;
}

/* .btn-style-one {
  background-color: #FDC900;
  color: #000000;
} */

.banner-slider-button-next:hover {
    background-color: #e35711;
}

.banner-slider-button-prev:hover {
    background-color: #e35711;
}

.main-header .outer-box {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.header-lower .outer-box .logo-box {
    padding: 30px 0px;
}

.header-lower .outer-box .logo-box .logo {
    max-width: 142px;
}

.header-lower .outer-box .logo-box .logo img {
    width: 100%;
}

/******* footer *********/

.footer-one {
    position: relative;
    background: #222226;
}

.footer-top {
    position: relative;
    padding: 30px 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-top .social-links li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 15px;
}

.footer-top .social-links li:last-child {
    margin: 0px !important;
}

.footer-top .social-links li a {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 42px;
    line-height: 42px;
    font-size: 16px;
    color: #fff;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    text-align: center;
    z-index: 1;
}

.footer-top .social-links li a:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    transform: scale(0, 0);
    left: 0px;
    top: 0px;
    z-index: -1;
    transition: all 500ms ease;
}

.footer-top .social-links li a:hover:before {
    transform: scale(1, 1);
}

.footer-top .social-links {
    position: relative;
    top: 4px;
}

.footer-widget-section {
    position: relative;
    padding: 70px 0px 70px 0px;
}

.footer-widget .widget-title {
    position: relative;
    display: block;
    margin-bottom: 26px;
}

.footer-widget .widget-title h4 {
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    margin-bottom: 0px;
}

.footer-widget p {
    color: #a9a9aa;
}

.footer-widget-section .about-widget p {
    margin-bottom: 32px;
}

.footer-widget-section .about-widget .subscribe-form .form-group {
    position: relative;
    margin: 0px;
}

.footer-widget-section .about-widget .subscribe-form .form-group input[type='email'] {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    background: #1c1c1f;
    border: 1px solid #1c1c1f;
    border-radius: 6px;
    font-size: 15px;
    color: #a9a9aa;
    padding: 0px 20px;
    transition: all 500ms ease;
}

.footer-widget-section .about-widget .subscribe-form .form-group input:focus {}

.footer-widget-section .about-widget .subscribe-form .form-group button {
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 14px;
    background: transparent;
    color: #a9a9aa;
    transition: all 500ms ease;
}

.footer-widget-section .about-widget .subscribe-form .form-group input:focus+button,
.footer-widget-section .about-widget .subscribe-form .form-group button:hover {}

.footer-widget-section .links-list li {
    position: relative;
    display: block;
    font-size: 16px;
    color: #a9a9aa;
    margin-bottom: 7px;
}

.footer-widget-section .links-list li:last-child {
    margin-bottom: 0px;
}

.footer-widget-section .links-list li a {
    display: inline-block;
    color: #a9a9aa;
}

.footer-widget-section .links-list li a:hover {
    color: #fff;
}

.footer-widget-section .info-list li {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    color: #a9a9aa;
    margin-bottom: 19px;
}

.footer-widget-section .info-list li:last-child {
    margin-bottom: 0px;
}

.footer-widget-section .info-list li a {
    display: inline-block;
    color: #a9a9aa;
}

.footer-widget-section .info-list li a:hover {
    color: #fff;
}

.footer-bottom {
    position: relative;
    background: #141417;
    padding: 31px 0px;
}

.footer-bottom p,
.footer-bottom a {
    color: #a9a9aa;
}

.footer-bottom a:hover {
    color: #fff;
}

.footer-bottom .footer-nav li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 35px;
}

.footer-bottom .footer-nav li:last-child {
    margin-right: 0px;
}

.footer-bottom .footer-nav li:before {
    position: absolute;
    content: '';
    background: #9b9b9c;
    width: 1px;
    height: 16px;
    top: 7px;
    right: -18px;
}

.footer-bottom .footer-nav li:last-child:before {
    display: none;
}

.footer-one .pattern-layer .pattern-1 {
    position: absolute;
    left: -30px;
    bottom: 50px;
    width: 205px;
    height: 272px;
    background-repeat: no-repeat;
    opacity: 0.03;
}

.footer-one .pattern-layer .pattern-2 {
    position: absolute;
    left: 0px;
    bottom: 90px;
    width: 196px;
    height: 266px;
    background-repeat: no-repeat;
}

.footer-one .pattern-layer .pattern-3 {
    position: absolute;
    top: -24px;
    right: -50px;
    width: 193px;
    height: 278px;
    background-repeat: no-repeat;
    opacity: 0.03;
}

.footer-one .pattern-layer .pattern-4 {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 196px;
    height: 266px;
    background-repeat: no-repeat;
}

/** footer-two **/

.footer-two {
    position: relative;
    background: #f7f7f7;
}

.footer-top-two {
    position: relative;
    padding: 66px 0px 30px 0px;
    border-bottom: 1px solid #ebebeb;
}

.footer-top-two .footer-menu li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 44px;
    font-size: 16px;
    line-height: 26px;
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    color: #141417;
}

.footer-top-two .footer-menu li a {
    display: inline-block;
    color: #141417;
}

.footer-top-two .footer-menu li a:hover {}

.footer-two .footer-widget .widget-title h4 {
    font-weight: 700;
    color: #141417;
    font-family: 'Oxygen', sans-serif;
}

.footer-two .footer-widget-section .about-widget p,
.footer-two .footer-widget-section .links-list li a,
.footer-two .footer-widget-section .info-list li,
.footer-two .footer-widget-section .info-list li a {
    font-size: 16px;
    font-family: 'Oxygen', sans-serif;
    color: #141417;
}

.footer-two .footer-widget-section a:hover {}

.footer-social-two li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 15px;
}

.footer-social-two li:last-child {
    margin: 0px !important;
}

.footer-social-two li a {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 42px;
    line-height: 42px;
    background: #f0f0f0;
    font-size: 14px;
    color: #141417;
    text-align: center;
    border-radius: 5px;
    z-index: 1;
}

.footer-social-two li a:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    transform: scale(0, 0);
    z-index: -1;
    border-radius: 5px;
    transition: all 500ms ease;
}

.footer-two .footer-social-two li a:hover {
    color: #fff !important;
}

.footer-social-two li a:hover:before {
    transform: scale(1, 1);
}

.footer-two .footer-bottom {
    background: #f0f0f0;
}

.footer-two .footer-bottom a,
.footer-two .footer-bottom p {
    font-family: 'Oxygen', sans-serif;
    color: #141417;
}

.footer-two .footer-bottom a:hover {}

/** footer-three **/

.footer-three {
    background: #222226;
}

.footer-three .footer-widget-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    padding: 100px 0px 100px 0px;
}

.footer-three .pattern-layer .pattern-1 {
    width: 216px;
    height: 407px;
    left: -100px;
    background-repeat: no-repeat;
}

.footer-three .footer-bottom {
    background: transparent;
}

.footer-three .pattern-layer .pattern-2 {
    width: 209px;
    height: 402px;
    background-repeat: no-repeat;
}

/** footer-four **/

.footer-four {
    position: relative;
    background: #f5f8fc;
}

.footer-four .about-widget .text p {
    color: #141417;
    font-weight: 500;
    line-height: 28px;
}

.footer-four .footer-social-two li a {
    background: transparent;
    border: 1px solid #e4e7eb;
}

.footer-four .footer-social-two li a:hover {
    color: #fff;
}

.footer-four .footer-social-two li a:before {
    display: none;
}

.footer-four .footer-widget .widget-title h4,
.footer-four .footer-widget-section .links-list li a,
.footer-four .footer-widget-section .info-list li,
.footer-four .footer-widget-section .info-list li a {
    color: #141417;
    font-family: 'Poppins', sans-serif;
}

.footer-four .footer-widget-section .links-list li a:hover {}

.footer-four .footer-widget-section {
    padding: 100px 0px;
}

.footer-four .footer-bottom {
    background: transparent;
    border-top: 1px solid #e4e7eb;
}

.footer-four .footer-bottom p,
.footer-four .footer-bottom a {
    color: #141417;
    font-family: 'Poppins', sans-serif;
}

.footer-four .footer-bottom a:hover {}

.footer-four .pattern-layer .pattern-1 {
    width: 470px;
    background-repeat: no-repeat;
}

.footer-four .pattern-layer .pattern-2 {
    width: 157px;
    height: 304px;
}

/** footer-five **/

.footer-five {
    background: #222226;
}

.footer-five .footer-social-two li a {
    background: transparent;
    border: 1px solid #4e4e51;
    color: #fff;
}

.footer-five .footer-widget-section {
    padding: 100px 0px;
}

.footer-five .footer-bottom {
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-five .pattern-layer .pattern-1 {
    width: 470px;
    height: 170px;
    background-repeat: no-repeat;
}

.footer-five .pattern-layer .pattern-2 {
    width: 170px;
    height: 354px;
    background-repeat: no-repeat;
}

.footer-five .pattern-layer .pattern-3 {
    width: 100%;
    height: 50px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}

/** footer-six **/

.footer-six {
    background: #222226;
}

.footer-social-three li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 15px;
}

.footer-social-three li:last-child {
    margin: 0px !important;
}

.footer-social-three li a {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    border: 1px solid #4d4d50;
    border-radius: 50%;
}

.footer-social-three li a:hover {}

.footer-six p {
    font-family: 'Muli', sans-serif;
    font-size: 17px;
    line-height: 28px;
}

.footer-six a,
.footer-six .footer-widget-section .info-list li {
    font-family: 'Muli', sans-serif;
    font-size: 16px;
}

.footer-six .footer-bottom {
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-widget .widget-title h4 {
    font-family: 'Spartan', sans-serif;
    font-weight: 700;
}

.footer-six .pattern-layer .pattern-1 {
    width: 470px;
    height: 170px;
    background-repeat: no-repeat;
}

.footer-six .pattern-layer .pattern-2 {
    width: 189px;
    height: 424px;
    background-repeat: no-repeat;
}

/** footer-seven **/

.footer-seven {
    background: #1f1f22;
}

.footer-seven .about-widget .text p {
    font-size: 17px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    line-height: 28px;
}

.footer-seven .footer-social li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 15px;
}

.footer-seven .footer-social li:last-child {
    margin: 0px !important;
}

.footer-seven .footer-social li a {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 42px;
    line-height: 42px;
    font-size: 16px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.10);
    text-align: center;
}

.footer-seven .footer-social li a:hover {
    background: #fff;
    border-color: #fff;
}

.footer-seven .footer-widget .widget-title h4 {
    font-size: 22px;
    font-weight: 700;
    font-family: 'Frank Ruhl Libre', sans-serif;
}

.footer-seven .footer-widget-section .links-list li a,
.footer-seven .footer-widget-section .info-list li {
    font-size: 16px;
    font-family: 'Oxygen', sans-serif;
}

.footer-seven .subscribe-inner {
    position: relative;
    padding: 23px 50px 21px 50px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 100px;
}

.footer-seven .subscribe-inner h2 {
    position: relative;
    display: block;
    font-size: 30px;
    font-weight: 700;
    font-family: 'Frank Ruhl Libre', sans-serif;
    color: #fff;
    line-height: 38px;
}

.footer-seven .subscribe-inner .form-inner .form-group {
    position: relative;
    margin-bottom: 0px;
    padding-right: 170px;
}

.footer-seven .subscribe-inner .form-inner .form-group button {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 160px;
    padding: 12px 25px;
}

.footer-seven .subscribe-inner .form-inner .form-group input {
    border-radius: 0px;
    font-size: 15px;
    font-family: 'Oxygen', sans-serif;
    color: #808080;
}

.footer-seven .subscribe-inner .form-inner {
    margin-top: 12px;
}

.footer-seven .footer-widget-section {
    padding: 94px 0px 90px 0px;
}

.footer-seven .footer-bottom {
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-seven .pattern-layer {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/** footer-eight **/

.footer-eight {
    background: #222226;
}

.footer-eight .footer-social li a:hover {
    color: #fff;
}

.footer-eight .footer-widget .widget-title h4 {
    font-family: 'PT Serif', serif;
    font-size: 22px;
    font-weight: 700;
}

.footer-seven .footer-bottom p,
.footer-seven .footer-bottom a {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
}

/** footer-nine **/

.footer-nine {
    background: #1c1c1c;
}

.footer-nine .footer-top .social-links li a {
    border-radius: 0px;
}

.footer-nine .footer-widget-section .about-widget .subscribe-form .form-group input[type='email'] {
    background: rgba(255, 255, 255, 0.10);
    border-radius: 0px;
}

.footer-nine .footer-widget .widget-title h4 {
    font-weight: 600;
}

.footer-nine .footer-widget-section .about-widget p,
.footer-nine .footer-widget-section .links-list li a,
.footer-nine .footer-widget-section .info-list li,
.footer-nine .footer-bottom p,
.footer-nine .footer-bottom a {
    font-family: 'Oxygen', sans-serif;
}

/** footer-ten **/

.footer-ten {
    padding: 0px 70px;
}

.footer-ten .outer-container {
    background: #222226;
}

.footer-ten .footer-widget-section {
    padding-top: 190px;
    padding-bottom: 90px;
}

.footer-ten .footer-widget-section .about-widget p {
    font-size: 17px;
    font-family: 'Oxygen', sans-serif;
}

.footer-ten .footer-social-three li a {
    border-radius: 0px;
}

.footer-ten .footer-widget .widget-title h4 {
    font-size: 24px;
    font-weight: 500;
    font-family: 'Frank Ruhl Libre', sans-serif;
}

.footer-ten .footer-widget-section .links-list li a,
.footer-ten .footer-widget-section .info-list li {
    font-family: 'Oxygen', sans-serif;
}

.footer-ten .footer-bottom {
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-ten .footer-bottom p,
.footer-ten .footer-bottom a {
    font-family: 'Oxygen', sans-serif;
}

/** footer-11 **/

.footer-11 {
    background: #001b47;
}

.footer-11 .footer-social-three li a {
    border-radius: 0px;
}

.footer-11 .footer-widget-section .about-widget p,
.footer-11 .footer-widget-section .links-list li a,
.footer-11 .footer-widget-section .info-list li {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.footer-11 .footer-widget .widget-title h4 {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 24px;
}

.footer-11 .footer-widget-section {
    padding: 92px 0px 90px 0px;
}

.footer-11 .footer-bottom {
    background: #00173d;
}

.footer-11 .image-layer {
    width: 310px;
    height: 310px;
    background-repeat: no-repeat;
}

/** footer-12 **/

.footer-12 {
    background: #222226;
}

.footer-12 .footer-top-two .footer-menu li a {
    color: #fff;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.footer-12 .footer-top-two {
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    padding: 40px 0px;
}

.footer-12 .footer-widget-section .about-widget p {
    font-size: 17px;
    font-weight: 500;
    line-height: 30px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

.footer-12 .footer-social-two li a {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #fff;
}

.footer-12 .footer-widget .widget-title h4 {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
}

.footer-12 .footer-widget-section .links-list li a,
.footer-12 .footer-widget-section .info-list li {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.footer-12 .footer-widget-section {
    position: relative;
    padding: 93px 0px 90px 0px;
}

.footer-12 .footer-bottom {
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-12 .footer-bottom p,
.footer-12 .footer-bottom a {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

/** footer-13 **/

.footer-13 {
    position: relative;
    padding-top: 92px;
}

.footer-13 .footer-bottom {
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-13 .footer-top-two {
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    padding-bottom: 40px;
}

.footer-13 .footer-top-two .footer-menu li a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.footer-13 .footer-top-two .footer-menu li a:hover {
    text-decoration: underline;
}

.footer-13 .shape .shape-1 {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.footer-13 .shape .shape-2 {
    width: 100%;
    height: 135px;
    background-repeat: no-repeat;
    animation: slide 70s linear infinite;
    -webkit-animation: slide 70s linear infinite;
}

.footer-13 .shape .shape-3 {
    left: 50%;
    top: 290px;
    width: 100%;
    height: 135px;
    background-repeat: no-repeat;
    animation: slide 70s linear infinite;
    -webkit-animation: slide 70s linear infinite;
}

.footer-13 .footer-widget-section .about-widget p {
    font-size: 17px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: #b9cbe7;
}

.footer-13 .footer-social-two li a {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #fff;
}

.footer-13 .footer-social-two li a:before {
    display: none;
}

.footer-13 .footer-social-two li a:hover {
    color: #fff;
}

.footer-13 .footer-widget .widget-title h4 {
    font-family: 'Jost', serif;
    font-weight: 500;
}

.footer-13 .footer-widget-section .links-list li a,
.footer-13 .footer-widget-section .info-list li,
.footer-13 .footer-widget-section .info-list li a,
.footer-13 .footer-widget-section .links-list li {
    font-family: 'Poppins', sans-serif;
    color: #b9cbe7;
    font-weight: 400;
}

.footer-13 .footer-widget-section .links-list li a:hover,
.footer-13 .footer-widget-section .info-list li a:hover {
    color: #fff;
}

.footer-13 .footer-widget-section {
    padding: 92px 0px 90px 0px;
}

.footer-13 .footer-bottom a,
.footer-13 .footer-bottom p {
    font-family: 'Poppins', sans-serif;
    color: #b9cbe7;
}

.footer-13 .footer-bottom a:hover {
    color: #fff;
}

/** footer-14 **/

.footer-14 .pattern-layer {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}

.footer-14 .footer-widget-section .about-widget p {
    font-size: 17px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: #141417;
}

.footer-14 .footer-social-three li a {
    border: none;
    background: #fff;
    color: #141417;
}

.footer-14 .footer-social-three li a:hover {
    color: #fff;
    z-index: 1;
}

.footer-14 .footer-social-three li a:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    transform: scale(0, 0);
    z-index: -1;
    border-radius: 50%;
    transition: all 500ms ease;
}

.footer-14 .footer-social-three li a:hover:before {
    transform: scale(1, 1);
}

.footer-14 .footer-widget .widget-title h4 {
    font-size: 24px;
    font-weight: 600;
    font-family: 'Jost', serif;
    color: #141417;
}

.footer-14 .footer-widget-section .links-list li a,
.footer-14 .footer-widget-section .info-list li,
.footer-14 .footer-widget-section .info-list li a {
    font-family: 'Poppins', sans-serif;
    color: #141417;
}

.footer-14 .footer-bottom {
    background: transparent;
    border-top: 1px solid #e9e6ed;
}

.footer-14 .footer-bottom p,
.footer-14 .footer-bottom a {
    color: #141417;
    font-family: 'Poppins', sans-serif;
}

.footer-14 .footer-widget-section {
    padding-bottom: 90px;
}

/** footer-15 **/

.footer-15 .footer-top-two .footer-menu li a:hover {}

.footer-15 .footer-widget .widget-title h4 {
    color: #141417;
    font-size: 20px;
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
}

.footer-15 .footer-widget-section .about-widget p {
    font-size: 15px;
    color: #141417;
    font-family: 'Poppins', sans-serif;
}

.footer-15 .footer-social-two li a {
    background: #f0f0f0;
}

.footer-15 .footer-social-two li a:hover {
    color: #fff;
}

.footer-15 .footer-widget-section .links-list li a,
.footer-15 .footer-widget-section .info-list li,
.footer-15 .footer-widget-section .info-list li a {
    color: #141417;
    font-family: 'Poppins', sans-serif;
}

.footer-15 .footer-widget-section .links-list li a:hover {}

.footer-15 .footer-widget-section .info-list li a:hover {}

.footer-15 .footer-bottom {
    background: transparent;
    border-top: 1px solid #e5e5e5;
}

.footer-15 .footer-bottom p,
.footer-15 .footer-bottom a {
    color: #141417;
    font-family: 'Poppins', sans-serif;
}

.footer-15 .footer-bottom a:hover {}

.footer-15 .footer-bottom .footer-nav li:before {
    background: #141417;
}

.footer-15 .footer-top-two {
    padding: 90px 0px 30px 0px;
}

/** footer-16 **/

.footer-16 {
    background: #262c3b;
}

.footer-16 .footer-widget-section .about-widget .subscribe-form .form-group input[type='email'] {
    background: #2e3647;
    border-color: #2e3647;
}

.footer-16 .footer-widget .widget-title h4 {
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.footer-16 .footer-bottom {
    background: #2e3647;
}

.footer-16 .shape .shape-1 {
    top: 50%;
    transform: translateY(-50%);
    width: 244px;
    height: 217px;
    background-repeat: no-repeat;
}

.footer-16 .shape .shape-2 {
    top: 50%;
    transform: translateY(-50%);
    width: 191px;
    height: 192px;
    background-repeat: no-repeat;
}

.footer-three.about-page-2 .footer-widget .widget-title h4 {
    font-family: 'Oxygen', sans-serif;
}

.footer-three.about-page-2 .footer-widget-section .about-widget p,
.footer-three.about-page-2 .footer-widget-section .links-list li a,
.footer-three.about-page-2 .footer-widget-section .info-list li,
.footer-three.about-page-2 .footer-bottom p,
.footer-three.about-page-2 .footer-bottom a {
    font-size: 15px;
    font-family: 'Oxygen', sans-serif;
}

.footer-three.service-page .footer-widget .widget-title h4 {
    font-family: 'Oxygen', sans-serif;
}

.footer-three.service-page .footer-widget-section .about-widget p,
.footer-three.service-page .footer-widget-section .links-list li a,
.footer-three.service-page .footer-widget-section .info-list li,
.footer-three.service-page .footer-bottom p,
.footer-three.service-page .footer-bottom a {
    font-size: 15px;
    font-family: 'Oxygen', sans-serif;
}