body {
    color: #000;
    max-width: 100%;
    overflow-x: hidden;
    font-family: "Poppins", Arial, Helvetica, sans-serif
}

html {
    max-width: 100%;
    overflow-x: hidden;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

main {
    display: block
}

h1 {
    font-size: 2em;
    margin: .67em 0
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

pre {
    font-family: monospace, monospace;
    font-size: 1em
}

a {
    background-color: transparent
}

abbr[title] {
    border-bottom: 0;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

b,
strong {
    font-weight: bolder
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

img {
    border-style: none
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button,
input {
    overflow: visible
}

button,
select {
    text-transform: none
}

button,
[type=button],
[type=reset],
[type=submit] {
    -webkit-appearance: button
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
    border-style: none;
    padding: 0
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
    outline: 1px dotted ButtonText
}

fieldset {
    padding: .35em .75em .625em
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal
}

progress {
    vertical-align: baseline
}

textarea {
    overflow: auto
}

[type=checkbox],
[type=radio] {
    box-sizing: border-box;
    padding: 0
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

details {
    display: block
}

summary {
    display: list-item
}

template {
    display: none
}

[hidden] {
    display: none
}

.ps {
    overflow: hidden !important;
    overflow-anchor: none;
    -ms-overflow-style: none;
    touch-action: auto;
    -ms-touch-action: auto
}

.ps__rail-x {
    display: none;
    opacity: 0;
    transition: background-color .2s linear, opacity .2s linear;
    -webkit-transition: background-color .2s linear, opacity .2s linear;
    height: 15px;
    bottom: 0;
    position: absolute
}

.ps__rail-y {
    display: none;
    opacity: 0;
    transition: background-color .2s linear, opacity .2s linear;
    -webkit-transition: background-color .2s linear, opacity .2s linear;
    width: 15px;
    right: 0;
    position: absolute
}

.ps--active-x>.ps__rail-x,
.ps--active-y>.ps__rail-y {
    display: block;
    background-color: transparent
}

.ps:hover>.ps__rail-x,
.ps:hover>.ps__rail-y,
.ps--focus>.ps__rail-x,
.ps--focus>.ps__rail-y,
.ps--scrolling-x>.ps__rail-x,
.ps--scrolling-y>.ps__rail-y {
    opacity: .6
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
    background-color: #eee;
    opacity: .9
}

.ps__thumb-x {
    background-color: #aaa;
    border-radius: 6px;
    transition: background-color .2s linear, height .2s ease-in-out;
    -webkit-transition: background-color .2s linear, height .2s ease-in-out;
    height: 6px;
    bottom: 2px;
    position: absolute
}

.ps__thumb-y {
    background-color: #aaa;
    border-radius: 6px;
    transition: background-color .2s linear, width .2s ease-in-out;
    -webkit-transition: background-color .2s linear, width .2s ease-in-out;
    width: 6px;
    right: 2px;
    position: absolute
}

.ps__rail-x:hover>.ps__thumb-x,
.ps__rail-x:focus>.ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
    background-color: #999;
    height: 11px
}

.ps__rail-y:hover>.ps__thumb-y,
.ps__rail-y:focus>.ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
    background-color: #999;
    width: 11px
}

@supports(-ms-overflow-style:none) {
    .ps {
        overflow: auto !important
    }
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {
    .ps {
        overflow: auto !important
    }
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s
}

.animate-item {
    visibility: hidden
}

.animate-item.is-visible {
    visibility: visible
}

@-webkit-keyframes bounce {

    0,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }

    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px)
    }
}

@keyframes bounce {

    0,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }

    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px)
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce
}

@-webkit-keyframes flash {

    0,
    50%,
    100% {
        opacity: 1
    }

    25%,
    75% {
        opacity: 0
    }
}

@keyframes flash {

    0,
    50%,
    100% {
        opacity: 1
    }

    25%,
    75% {
        opacity: 0
    }
}

.flash {
    -webkit-animation-name: flash;
    animation-name: flash
}

@-webkit-keyframes pulse {
    0 {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes pulse {
    0 {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse
}

@-webkit-keyframes shake {

    0,
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px)
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px)
    }
}

@keyframes shake {

    0,
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px)
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px)
    }
}

.shake {
    -webkit-animation-name: shake;
    animation-name: shake
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg)
    }

    40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg)
    }

    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg)
    }

    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg)
    }

    40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg)
    }

    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg)
    }

    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
}

.swing {
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing
}

@-webkit-keyframes tada {
    0 {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    10%,
    20% {
        -webkit-transform: scale(.9) rotate(-3deg);
        transform: scale(.9) rotate(-3deg)
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg)
    }

    40%,
    60%,
    80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg)
    }

    100% {
        -webkit-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0)
    }
}

@keyframes tada {
    0 {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    10%,
    20% {
        -webkit-transform: scale(.9) rotate(-3deg);
        transform: scale(.9) rotate(-3deg)
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg)
    }

    40%,
    60%,
    80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg)
    }

    100% {
        -webkit-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0)
    }
}

.tada {
    -webkit-animation-name: tada;
    animation-name: tada
}

@-webkit-keyframes bounceIn {
    0 {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3)
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        transform: scale(1.05)
    }

    70% {
        -webkit-transform: scale(.9);
        transform: scale(.9)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes bounceIn {
    0 {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3)
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        transform: scale(1.05)
    }

    70% {
        -webkit-transform: scale(.9);
        transform: scale(.9)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn
}

@-webkit-keyframes tsfadeInUp {
    0 {
        opacity: 0;
        -webkit-transform: translate3d(0, 40px, 0);
        transform: translate3d(0, 40px, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes tsfadeInUp {
    0 {
        opacity: 0;
        -webkit-transform: translate3d(0, 40px, 0);
        transform: translate3d(0, 40px, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.tsFadeInUp {
    -webkit-animation-name: tsfadeInUp;
    animation-name: tsfadeInUp;
    -webkit-animation-timing-function: cubic-bezier(.4, 0, .2, 1);
    animation-timing-function: cubic-bezier(.4, 0, .2, 1);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: calc(.3s);
    animation-duration: calc(.3s)
}

@-webkit-keyframes tsfadeIn {
    0 {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes tsfadeIn {
    0 {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.tsFadeIn {
    -webkit-animation-name: tsfadeIn;
    animation-name: tsfadeIn;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: calc(.2s);
    animation-duration: calc(.2s)
}

.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 1
}

.owl-carousel .owl-stage {
    position: relative;
    touch-action: manipulation;
    -moz-backface-visibility: hidden
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0)
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0)
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none
}

.owl-carousel .owl-item img {
    display: block;
    margin: 0 auto
}

@media(max-width:768) {
    .owl-carousel .owl-item img {
        width: 164px !important
    }
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
    display: none
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
    background: 0;
    color: inherit;
    border: 0;
    padding: 0 !important;
    font: inherit
}

.owl-carousel.owl-loaded {
    display: block
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block
}

.owl-carousel.owl-hidden {
    opacity: 0
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden
}

.owl-carousel.owl-drag .owl-item {
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab
}

.owl-carousel.owl-rtl {
    direction: rtl
}

.owl-carousel.owl-rtl .owl-item {
    float: right
}

.no-js .owl-carousel {
    display: block
}

.owl-carousel .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.owl-carousel .owl-animated-in {
    z-index: 0
}

.owl-carousel .owl-animated-out {
    z-index: 1
}

.owl-carousel .fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut
}

@-webkit-keyframes fadeOut {
    0 {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@keyframes fadeOut {
    0 {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

.owl-height {
    -webkit-transition: height .5s ease-in-out;
    transition: height .5s ease-in-out
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    -webkit-transition: opacity .4s ease;
    transition: opacity .4s ease
}

.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0
}

.owl-carousel .owl-item img.owl-lazy {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d
}

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url(owl.video.play.html) no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -webkit-transition: -webkit-transform .1s ease;
    transition: -webkit-transform .1s ease;
    transition: transform .1s ease;
    transition: transform .1s ease, -webkit-transform .1s ease
}

.owl-carousel .owl-video-play-icon:hover {
    -webkit-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3)
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-transition: opacity .4s ease;
    transition: opacity .4s ease
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%
}

body {
    background-color: #fff;
    overflow-x: hidden;
    line-height: 1.6
}

a {
    text-decoration: none;
    -webkit-transition: all .25s cubic-bezier(.25, .8, .25, 1);
    transition: all .25s cubic-bezier(.25, .8, .25, 1)
}

a:focus {
    outline: 0
}

p {
    font-size: 15px;
    margin-bottom: 1.55rem;
    word-spacing: .001em;
    line-height: 28px;
    font-feature-settings: "kern" 1;
    -webkit-font-kerning: normal;
    font-kerning: normal
}

img {
    height: auto;
    width: 100%
}

::-moz-selection {
    color: #fff;
    background-color: #ff771b
}

::selection {
    color: #fff;
    background-color: #ff771b
}

@media(min-width:992px) {
    .container.expanded {
        margin-top: -12px;
        max-width: 100%;
        padding-left: 65px;
        padding-right: 65px
    }
}

body {
    font-family: "Poppins", Arial, Helvetica, sans-serif
}

img {
    margin-bottom: -7px
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #1e1e1e
}

h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
    font-weight: 400
}

h1,
.h1 {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: 600
}

@media(min-width:992px) {

    h1,
    .h1 {
        font-size: 42px
    }
}

@media(min-width:1200px) {

    h1,
    .h1 {
        font-size: 60px
    }
}

h2,
.h2 {
    font-size: 24px;
    font-weight: 700
}

h3 {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600
}

@media(min-width:992px) {
    h3 {
        font-size: 28px
    }
}

h4 {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 500
}

h5 {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600
}

h6 {
    font-size: 12px;
    line-height: 1.3;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase
}

code {
    background-color: #f14668;
    color: #f5f5f5;
    font-size: .875em;
    padding: .25em .5em .25em
}

hr {
    border: 0;
    display: block;
    height: 1px;
    margin: 1.5rem 0
}

ul,
ol {
    margin-left: 0;
    list-style-position: inside;
    font-size: inherit
}

ul ul,
ul ol,
ol ul,
ol ol {
    margin-left: 15px
}

ul li,
ol li {
    margin-bottom: 0
}

ul li:last-child,
ol li:last-child {
    margin: 0
}

small {
    font-size: .875em
}

input[type=checkbox],
input[type=radio] {
    vertical-align: baseline
}

blockquote {
    display: block;
    border: 0;
    text-align: left;
    font-weight: 400;
    padding: 30px 0;
    color: #000;
    line-height: 30px;
    font-size: 17px;
    font-style: normal;
    margin: 0
}

cite {
    display: inline-block;
    margin-top: 20px;
    font-style: normal;
    font-weight: 400
}

p {
    font-size: 14px;
    color: #000;
    line-height: 28px;
    margin: 0;
    font-weight: 400;
    font-family: 'Roboto', sans-serif
}

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

a {
    -webkit-transition: all .3s;
    transition: all .3s
}

.site-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 900
}

.site-header.fixed-header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background-color: transparent;
    -webkit-transition: all .25s ease;
    transition: all .25s ease;
    padding: 20px 0;
    border-bottom: 1px solid rgba(250, 250, 250, .3)
}

.main-light-demo .site-header.fixed-header,
.personal-light-demo .site-header.fixed-header,
.minimal-light-demo .site-header.fixed-header {
    border-bottom: 0
}

@media(min-width:992px) {
    .site-header.fixed-header {
        padding: 0
    }
}

.site-header.fixed-header .main-menu li a {
    font-family: 'Roboto', sans-serif !important;
    padding: 40px 0;
    color: #1e1e1e;
    font-weight: 500
}

.main-light-demo .site-header.fixed-header .main-menu li a,
.personal-light-demo .site-header.fixed-header .main-menu li a,
.minimal-light-demo .site-header.fixed-header .main-menu li a {
    color: #1e1e1e;
    font-weight: 500
}

.site-header.fixed-header .main-white-button {
    display: none
}

@media(min-width:992px) {
    .site-header.fixed-header .main-white-button {
        display: inline-block
    }
}

.main-light-demo .site-header.fixed-header .main-white-button a,
.personal-light-demo .site-header.fixed-header .main-white-button a,
.minimal-light-demo .site-header.fixed-header .main-white-button a {
    background: linear-gradient(293deg, #2489c9 0, #2489c9 100%);
    color: #fff
}

.site-header.fixed-header .fixed-header-logo {
    display: inline-block;
    margin-top: -10px
}

.main-light-demo .site-header.fixed-header .fixed-header-logo,
.personal-light-demo .site-header.fixed-header .fixed-header-logo,
.minimal-light-demo .site-header.fixed-header .fixed-header-logo {
    display: none
}

.site-header.fixed-header .fixed-header-logo img {
    max-width: 250px
}

.site-header.fixed-header .is-fixed-header-logo {
    display: none !important
}

.main-light-demo .site-header.fixed-header .is-fixed-header-logo,
.personal-light-demo .site-header.fixed-header .is-fixed-header-logo,
.minimal-light-demo .site-header.fixed-header .is-fixed-header-logo {
    display: inline-block !important
}

.main-light-demo .site-header.fixed-header .is-fixed-header-logo img,
.personal-light-demo .site-header.fixed-header .is-fixed-header-logo img,
.minimal-light-demo .site-header.fixed-header .is-fixed-header-logo img {
    max-width: 250px
}

.site-header.fixed-header.is-fixed {
    background-color: #fff;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .07);
    padding: 12px 0
}

@media(min-width:992px) {
    .site-header.fixed-header.is-fixed {
        padding: 0
    }
}

.site-header.fixed-header.is-fixed .main-menu li a {
    font-family: 'Roboto', sans-serif !important;
    color: #1e1e1e;
    padding: 30px 0
}

.site-header.fixed-header.is-fixed .main-menu li a:after {
    display: none
}

.site-header.fixed-header.is-fixed .main-menu .active a {
    color: #ff771b
}

.site-header.fixed-header.is-fixed .main-white-button a {
    font-family: 'Roboto', sans-serif !important;
    background-color: #2489c9;
    color: #fff;
    background: linear-gradient(293deg, #2489c9 0, #2489c9 100%)
}

.site-header.fixed-header.is-fixed .main-white-button a:hover {
    opacity: .9
}

.site-header.fixed-header.is-fixed .fixed-header-logo {
    display: none
}

.site-header.fixed-header.is-fixed .is-fixed-header-logo {
    display: -webkit-inline-box !important;
    display: inline-flex !important;
    margin-top: 5px
}

.minimal-light-demo .site-header.fixed-header.is-fixed .is-fixed-header-logo {
    margin-top: 0
}

.site-header.fixed-header.is-fixed .is-fixed-header-logo img {
    max-width: 250px;
    margin-bottom: 0
}

.site-header .header-wrap {
    margin-bottom: 0;
    margin-top: -6px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: start
}

.site-header .header-wrap .is-fixed-header-logo,
.site-header .header-wrap .fixed-header-logo,
.site-header .header-wrap .header-widgets {
    display: -webkit-inline-box;
    display: inline-flex;
    flex-basis: 50%
}

.site-header .header-wrap .header-logo a {
    line-height: 10px
}

.site-header .header-wrap .header-logo a img {
    max-width: 100%
}

.site-header .header-wrap .header-nav {
    display: none
}

.site-header .header-wrap .header-widgets {
    -webkit-box-pack: end;
    justify-content: flex-end
}

@media(min-width:992px) {

    .site-header .header-wrap .is-fixed-header-logo,
    .site-header .header-wrap .fixed-header-logo,
    .site-header .header-wrap .header-widgets {
        flex-basis: 25%
    }

    .personal-light-demo .site-header .header-wrap .header-widgets,
    .personal-dark-demo .site-header .header-wrap .header-widgets,
    .minimal-light-demo .site-header .header-wrap .header-widgets,
    .minimal-dark-demo .site-header .header-wrap .header-widgets {
        flex-basis: 0%
    }

    .site-header .header-wrap .header-nav {
        display: -webkit-inline-box;
        display: inline-flex;
        flex-basis: 50%;
        -webkit-box-pack: center;
        justify-content: center
    }

    .personal-light-demo .site-header .header-wrap .header-nav,
    .personal-dark-demo .site-header .header-wrap .header-nav,
    .minimal-light-demo .site-header .header-wrap .header-nav,
    .minimal-dark-demo .site-header .header-wrap .header-nav {
        flex-basis: 75%;
        -webkit-box-pack: end;
        justify-content: flex-end
    }
}

.header-widgets .right-menu {
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    padding: 0
}

.header-widgets .right-menu .menu-item {
    display: none
}

.header-widgets .right-menu .menu-item.menu-mobile-nav {
    display: inline-block
}

@media(min-width:992px) {
    .header-widgets .right-menu .menu-item {
        display: inline-block
    }

    .header-widgets .right-menu .menu-item.menu-mobile-nav {
        display: none
    }
}

.header-widgets .right-menu .menu-item+.menu-item {
    margin-left: 30px
}

.main-menu {
    display: -webkit-box;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 1
}

.main-menu>li {
    display: -webkit-inline-box;
    display: inline-flex
}

.main-menu>li+li {
    margin-left: 30px
}

.main-menu>li>a {
    font-family: 'Roboto', sans-serif !important;
    padding: 36px 4px !important;
    position: relative;
    text-transform: capitalize;
    font-size: 15px;
    letter-spacing: .25px;
    color: #1e1e1e;
    font-weight: 500
}

.main-menu>li>a:hover {
    opacity: .75
}

.main-menu>li.active a:after {
    width: 100%;
    height: 3px;
    background: #fff;
    position: absolute;
    content: '';
    border-radius: 20%;
    bottom: -2px;
    left: 0
}

.main-light-demo .main-menu>li.active a:after,
.personal-light-demo .main-menu>li.active a:after,
.personal-dark-demo .main-menu>li.active a:after,
.minimal-light-demo .main-menu>li.active a:after {
    background: #ff771b
}

.main-menu li {
    margin: 0;
    white-space: nowrap
}

.main-menu li.menu-item-has-children {
    position: relative
}

.main-menu li.menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0)
}

.main-menu .sub-menu {
    padding: 10px 0;
    margin: 0;
    list-style: none;
    background-color: #fff;
    position: absolute;
    min-width: 225px;
    top: 80%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 10px 15px 0 rgba(0, 0, 0, .1);
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
    border-radius: 3px;
    -webkit-transition: opacity .4s cubic-bezier(.43, .59, .16, 1.25), visibility .4s cubic-bezier(.43, .59, .16, 1.25), -webkit-transform .4s cubic-bezier(.43, .59, .16, 1.25);
    transition: opacity .4s cubic-bezier(.43, .59, .16, 1.25), visibility .4s cubic-bezier(.43, .59, .16, 1.25), -webkit-transform .4s cubic-bezier(.43, .59, .16, 1.25);
    transition: opacity .4s cubic-bezier(.43, .59, .16, 1.25), visibility .4s cubic-bezier(.43, .59, .16, 1.25), transform .4s cubic-bezier(.43, .59, .16, 1.25);
    transition: opacity .4s cubic-bezier(.43, .59, .16, 1.25), visibility .4s cubic-bezier(.43, .59, .16, 1.25), transform .4s cubic-bezier(.43, .59, .16, 1.25), -webkit-transform .4s cubic-bezier(.43, .59, .16, 1.25)
}

.main-menu .sub-menu li {
    display: block;
    padding: 0 30px;
    margin-bottom: 10px;
    line-height: 1.1
}

.main-menu .sub-menu li:last-child {
    font-family: 'Roboto', sans-serif !important;
    margin-bottom: 0
}

.main-menu .sub-menu li a {
    padding: 3px 0 !important;
    display: block;
    color: #1e1e1e;
    font-size: 14px
}

.main-menu .sub-menu li a:after {
    display: none
}

.main-menu .sub-menu li a:hover {
    color: #e92627
}

.main-menu .sub-menu .sub-menu {
    top: 0;
    left: 100%
}

.menu-bar {
    position: relative;
    display: inline-block;
    min-width: 24px;
    height: 38px;
    text-align: center
}

.menu-bar .hamburger {
    display: block;
    position: absolute;
    width: 24px;
    height: 2px;
    top: 20px;
    right: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.fixed-header .menu-bar .hamburger {
    background-color: #000
}

.main-light-demo .fixed-header .menu-bar .hamburger,
.personal-light-demo .fixed-header .menu-bar .hamburger {
    background-color: #1e1e1e
}

.is-fixed .menu-bar .hamburger {
    background-color: #000
}

.main-light-demo .is-fixed .menu-bar .hamburger,
.personal-light-demo .is-fixed .menu-bar .hamburger {
    background-color: #ff771b
}

.menu-bar .hamburger:before,
.menu-bar .hamburger:after {
    position: absolute;
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    outline: 1px solid transparent;
    right: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.fixed-header .menu-bar .hamburger:before,
.fixed-header .menu-bar .hamburger:after {
    background-color: #000
}

.main-light-demo .fixed-header .menu-bar .hamburger:before,
.personal-light-demo .fixed-header .menu-bar .hamburger:before,
.main-light-demo .fixed-header .menu-bar .hamburger:after,
.personal-light-demo .fixed-header .menu-bar .hamburger:after {
    background-color: #1e1e1e
}

.is-fixed .menu-bar .hamburger:before,
.is-fixed .menu-bar .hamburger:after {
    background-color: #000
}

.main-light-demo .is-fixed .menu-bar .hamburger:before,
.personal-light-demo .is-fixed .menu-bar .hamburger:before,
.main-light-demo .is-fixed .menu-bar .hamburger:after,
.personal-light-demo .is-fixed .menu-bar .hamburger:after {
    background-color: #ff771b
}

.menu-bar .hamburger:before {
    top: -8px
}

.menu-bar .hamburger:after {
    top: 8px
}

.menu-bar.active .hamburger {
    background-color: transparent !important
}

.menu-bar.active .hamburger:before {
    -webkit-transform: translateY(8px) rotateZ(-45deg);
    transform: translateY(8px) rotateZ(-45deg)
}

.menu-bar.active .hamburger:after {
    -webkit-transform: translateY(-8px) rotateZ(45deg);
    transform: translateY(-8px) rotateZ(45deg)
}

.mobile-nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 75%;
    height: 100%;
    z-index: 1000;
    pointer-events: none;
    -webkit-transform: translate3d(-280px, 0, 0);
    transform: translate3d(-280px, 0, 0);
    transition: transform .25s ease, -webkit-transform .25s ease
}

.mobile-nav-wrapper .mobile-menu-inner {
    position: relative;
    display: inline-block;
    padding: 20px 0;
    background-color: #1d2023;
    cursor: default;
    min-width: 280px;
    max-width: 75%;
    height: 100%
}

.mobile-nav-wrapper.is-open {
    pointer-events: auto;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.mobile-menu-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .7);
    z-index: 999;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: opacity .25s ease, visibility 0 ease;
    transition: opacity .25s ease, visibility 0 ease
}

.mobile-menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto
}

.mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%
}

.mobile-menu>li {
    width: 100%;
    border-bottom: 1px solid #141618
}

.mobile-menu>li:last-child {
    border-bottom: 0
}

.mobile-menu>li>a {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    font-size: 14px;
    letter-spacing: .5px;
    padding: 15px 30px;
    font-weight: 400;
    color: #fff;
    -webkit-box-align: center;
    align-items: center;
    vertical-align: middle;
    text-transform: capitalize;
    background-color: #25282c
}

.mobile-menu>li>a i {
    -webkit-transition: all .5s;
    transition: all .5s
}

.mobile-menu>li ul {
    display: none;
    list-style: none;
    margin: 0;
    padding: 15px 30px 5px;
    overflow: hidden
}

.mobile-menu>li ul ul.sub-menu {
    padding: 0 10px
}

.mobile-menu>li ul>li>a {
    display: inline-block;
    font-size: 13px;
    color: #fff;
    padding: 5px 0
}

.mobile-menu>li ul>li:last-child {
    padding-bottom: 15px
}

.mobile-menu .is-open {
    border-bottom: 0
}

.mobile-menu .is-open a {
    color: #ffd503 !important
}

.mobile-menu .is-open a i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.mobile-menu .is-open li a {
    color: #fff
}

.mobile-menu .has-sub i {
    margin-left: 30px
}

footer {
    margin-top: 80px;
    background-color: #141618;
    padding: 100px 0 30px
}

@media(min-width:992px) {
    footer {
        margin-top: 120px
    }
}

.minimal-dark-demo footer {
    margin-top: 0;
    padding: 30px;
    position: relative
}

.minimal-light-demo footer {
    margin-top: 60px;
    background-color: #f5f6f9;
    padding: 30px 35px;
    position: relative
}

.main-light-demo footer {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-image: url(../images/light-footer-bg.png)
}

.main-dark-demo footer,
.personal-dark-demo footer,
.demo-page footer {
    margin-top: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-image: url(../images/dark-footer-bg.png)
}

.creative-agency-demo footer {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-image: url(../images/dark-footer-bg.png)
}

.personal-light-demo footer {
    margin-top: 90px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-image: url(../images/light-footer-bg.png)
}

.main-dark-demo footer {
    margin-top: 0
}

footer .about-us {
    margin-right: 0;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(250, 250, 250, .1)
}

@media(min-width:992px) {
    footer .about-us {
        margin-right: 30px;
        margin-bottom: 0;
        border-bottom: 0
    }
}

footer .about-us img {
    margin-left: -14px;
    max-width: 210px
}

footer .about-us p {
    font-size: 14px;
    color: #000;
    line-height: 28px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif !important;
    margin-top: 20px;
    margin-bottom: 10px;
    letter-spacing: .25px;
    text-align: justify
}

.main-light-demo footer .about-us p,
.personal-light-demo footer .about-us p {
    color: #000
}

footer .about-us ul.social-icons {
    margin-top: 30px
}

footer .about-us ul.social-icons li {
    display: inline-block;
    margin-right: 15px
}

footer .about-us ul.social-icons li a i {
    color: #0981c7;
    font-size: 16px;
    -webkit-transition: all .3s;
    transition: all .3s
}

.main-light-demo footer .about-us ul.social-icons li a i,
.personal-light-demo footer .about-us ul.social-icons li a i {
    color: #0981c7
}

footer .about-us ul.social-icons li a:hover i {
    color: #0981c7
}

footer .about-us ul.social-icons li:last-child {
    margin-right: 0
}

footer .useful-links {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(250, 250, 250, .1)
}

@media(min-width:992px) {
    footer .useful-links {
        margin-bottom: 0;
        border-bottom: 0;
        font-family: 'Roboto', sans-serif !important
    }
}

footer .useful-links h2 {
    font-family: 'Roboto', sans-serif !important;
    margin-top: 7px;
    color: #1e1e1e;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: .5px;
    margin-bottom: 25px
}

.main-light-demo footer .useful-links h2,
.personal-light-demo footer .useful-links h2 {
    color: #1e1e1e
}

footer .useful-links ul li {
    margin-bottom: 12px
}

footer .useful-links ul li a {
    color: #000;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 400
}

.main-light-demo footer .useful-links ul li a,
.personal-light-demo footer .useful-links ul li a {
    color: #000;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 400
}

footer .useful-links ul li a:hover {
    color: #e92627 !important
}

footer .subscribe-newsletters h2 {
    margin-top: 7px;
    font-family: 'Roboto', sans-serif !important;
    color: #1e1e1e;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: .5px;
    margin-bottom: 25px
}

.main-light-demo footer .subscribe-newsletters h2,
.personal-light-demo footer .subscribe-newsletters h2 {
    color: #1e1e1e;
    font-family: 'Roboto', sans-serif !important
}

footer .subscribe-newsletters p {
    color: #000;
    font-weight: 400;
    padding: 5px;
    letter-spacing: .25px
}

.main-light-demo footer .subscribe-newsletters p,
.personal-light-demo footer .subscribe-newsletters p {
    color: #000;
    font-weight: 400
}

footer .subscribe-newsletters form {
    margin-top: 25px
}

footer .subscribe-newsletters form input {
    color: #1e1e1e !important;
    border: 1px solid rgba(0, 0, 0, .4);
    background-color: rgba(0, 0, 0, .025);
    width: 100%;
    border-radius: 20px;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    font-size: 13px;
    letter-spacing: .25px;
    font-weight: 300;
    outline: 0;
    -webkit-transition: all .5s;
    transition: all .5s
}

.main-light-demo footer .subscribe-newsletters form input,
.personal-light-demo footer .subscribe-newsletters form input {
    color: #1e1e1e;
    border: 1px solid rgba(0, 0, 0, .4);
    background-color: rgba(0, 0, 0, .025)
}

footer .subscribe-newsletters form input::-webkit-input-placeholder {
    color: #fff
}

footer .subscribe-newsletters form input::-moz-placeholder {
    color: #fff
}

footer .subscribe-newsletters form input:-ms-input-placeholder {
    color: #fff
}

footer .subscribe-newsletters form input::-ms-input-placeholder {
    color: #fff
}

footer .subscribe-newsletters form input::placeholder {
    color: #fff
}

.main-light-demo footer .subscribe-newsletters form input::-webkit-input-placeholder,
.personal-light-demo footer .subscribe-newsletters form input::-webkit-input-placeholder {
    color: #7a7a7a
}

.main-light-demo footer .subscribe-newsletters form input::-moz-placeholder,
.personal-light-demo footer .subscribe-newsletters form input::-moz-placeholder {
    color: #7a7a7a
}

.main-light-demo footer .subscribe-newsletters form input:-ms-input-placeholder,
.personal-light-demo footer .subscribe-newsletters form input:-ms-input-placeholder {
    color: #7a7a7a
}

.main-light-demo footer .subscribe-newsletters form input::-ms-input-placeholder,
.personal-light-demo footer .subscribe-newsletters form input::-ms-input-placeholder {
    color: #7a7a7a
}

.main-light-demo footer .subscribe-newsletters form input::placeholder,
.personal-light-demo footer .subscribe-newsletters form input::placeholder {
    color: #7a7a7a
}

footer .subscribe-newsletters form input:focus {
    border: 1px solid #ff771b
}

footer .subscribe-newsletters form button {
    margin-top: 20px;
    display: inline-block;
    background: linear-gradient(293deg, #fc6076 0, #f94 100%);
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    padding: 0 20px;
    height: 40px;
    border-radius: 20px;
    letter-spacing: .25px;
    border: 0;
    outline: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
    cursor: pointer
}

footer .subscribe-newsletters form button:hover {
    background-color: #fe6600
}

.minimal-dark-demo footer .right-icons {
    text-align: center
}

@media(min-width:992px) {
    .minimal-dark-demo footer .right-icons {
        text-align: right
    }
}

.minimal-dark-demo footer .right-icons ul li {
    display: inline-block;
    margin-right: 20px
}

.minimal-dark-demo footer .right-icons ul li:last-child {
    margin-right: 0
}

.minimal-dark-demo footer .right-icons ul li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    background-color: #25282c;
    font-size: 14px;
    color: #fff
}

.minimal-dark-demo footer .right-icons ul li a:hover {
    background-color: #ff771b;
    color: #fff
}

.minimal-light-demo footer .right-icons {
    text-align: center
}

@media(min-width:992px) {
    .minimal-light-demo footer .right-icons {
        text-align: right
    }
}

.minimal-light-demo footer .right-icons ul li {
    display: inline-block;
    margin-right: 20px
}

.minimal-light-demo footer .right-icons ul li:last-child {
    margin-right: 0
}

.minimal-light-demo footer .right-icons ul li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    background-color: #e7e7e7;
    font-size: 14px;
    color: #1e1e1e
}

.minimal-light-demo footer .right-icons ul li a:hover {
    background-color: #ff771b;
    color: #fff
}

footer .copyright-text {
    background: #1f1f1f;
    margin-top: 45px;
    padding-top: 10px;
    padding-bottom: 5px;
    border-top: 1px solid rgba(250, 250, 250, .1);
    text-align: center
}

@media(min-width:992px) {
    footer .copyright-text {
        margin-top: 0
    }
}

.minimal-light-demo footer .copyright-text,
.minimal-dark-demo footer .copyright-text {
    text-align: center;
    margin-bottom: 15px;
    margin-top: 0;
    border-top: 0;
    padding-top: 10px
}

@media(min-width:992px) {

    .minimal-light-demo footer .copyright-text,
    .minimal-dark-demo footer .copyright-text {
        margin-bottom: 0;
        text-align: center
    }
}

.main-light-demo footer .copyright-text,
.personal-light-demo footer .copyright-text {
    background: linear-gradient(293deg, #1e1e1e 0, #1e1e1e 100%)
}

footer .copyright-text p {
    color: #fff;
    font-size: 13px;
    letter-spacing: .25px;
    font-weight: 500
}

.minimal-light-demo footer .copyright-text p {
    font-weight: 400;
    color: #1e1e1e
}

.main-light-demo footer .copyright-text p,
.personal-light-demo footer .copyright-text p {
    color: #fff;
    font-weight: 500
}

footer .copyright-text p a {
    color: #fff;
    font-weight: 500
}

.blog-sidebar {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #eee
}

@media(min-width:992px) {
    .blog-sidebar {
        padding-top: 0;
        border-top: 0;
        margin-top: 0;
        margin-left: 15px
    }
}

.blog-sidebar .sidebar-widget {
    padding: 30px 30px 15px;
    border: 2px solid #e92627;
    border-radius: 10px;
    margin-bottom: 40px
}

.blog-sidebar .sidebar-widget .sidebar-heading h3 {
    font-family: 'Roboto', sans-serif !important;
    margin-top: 0;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: .25px;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
    padding-bottom: 20px
}

.blog-sidebar .search {
    padding: 0;
    border: 0
}

.blog-sidebar .search form input {
    width: 100%;
    height: 50px;
    line-height: 50px;
    border-radius: 25px;
    background-color: #f5f6f9;
    border: 1px solid transparent;
    font-size: 14px;
    color: #1e1e1e;
    outline: 0;
    padding: 0 20px;
    -webkit-transition: all .5s;
    transition: all .5s
}

.blog-sidebar .search form input::-webkit-input-placeholder {
    color: #7a7a7a
}

.blog-sidebar .search form input::-moz-placeholder {
    color: #7a7a7a
}

.blog-sidebar .search form input:-ms-input-placeholder {
    color: #7a7a7a
}

.blog-sidebar .search form input::-ms-input-placeholder {
    color: #7a7a7a
}

.blog-sidebar .search form input::placeholder {
    color: #7a7a7a
}

.blog-sidebar .search form input:focus {
    border: 1px solid #ff771b
}

.blog-sidebar .about-me h4 {
    margin-top: 25px;
    margin-bottom: 15px
}

.blog-sidebar .about-me img {
    border-radius: 10px
}

.blog-sidebar .about-me ul.social-icons {
    margin-top: 15px
}

.blog-sidebar .about-me ul.social-icons li {
    display: inline-block;
    margin-right: 15px
}

.blog-sidebar .about-me ul.social-icons li a i {
    color: #1e1e1e;
    font-size: 16px;
    -webkit-transition: all .3s;
    transition: all .3s
}

.blog-sidebar .about-me ul.social-icons li a:hover i {
    color: #ff771b
}

.blog-sidebar .about-me ul.social-icons li:last-child {
    margin-right: 0
}

.blog-sidebar .recent-posts ul li {
    display: inline-block;
    margin-bottom: 22px
}

.blog-sidebar .recent-posts ul li:last-child {
    margin-bottom: 0
}

.blog-sidebar .recent-posts ul li .blog-thumb img {
    float: left;
    width: 80px;
    height: 80px;
    border-radius: 10px
}

.blog-sidebar .recent-posts ul li .right-content {
    margin-left: 100px
}

.blog-sidebar .recent-posts ul li .right-content h4 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 15px;
    text-transform: capitalize;
    font-weight: 500;
    line-height: 24px
}

.blog-sidebar .recent-posts ul li .right-content h4 a {
    color: #4a4a4a !important;
    font-family: 'Roboto', sans-serif !important;
    font-size: 14px
}

.blog-sidebar .recent-posts ul li .right-content h4 a:hover {
    color: #ff771b
}

.blog-sidebar .recent-posts ul li .right-content span {
    font-family: 'Roboto', sans-serif !important;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .25px;
    color: #7a7a7a
}

.blog-sidebar .categories ul li {
    width: 100%;
    display: inline-block;
    margin-bottom: 15px
}

.blog-sidebar .categories ul li:last-child {
    margin-bottom: 0
}

.blog-sidebar .categories ul li a {
    font-size: 14px;
    font-weight: 500;
    color: #1e1e1e
}

.blog-sidebar .categories ul li a:hover {
    color: #ff771b
}

.blog-sidebar .categories ul li a span {
    display: inline-block;
    float: right
}

.blog-sidebar .tags {
    padding-bottom: 20px
}

.blog-sidebar .tags ul li {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 10px
}

.blog-sidebar .tags ul li a {
    font-size: 14px;
    font-weight: 500;
    color: #1e1e1e
}

.blog-sidebar .tags ul li a:hover {
    color: #ff771b
}

section {
    margin-top: 60px
}

@media(min-width:992px) {
    section {
        margin-top: 120px
    }
}

.section-heading {
    font-family: 'Roboto', sans-serif !important;
    position: relative;
    margin-bottom: 50px
}

@media(min-width:992px) {
    .section-heading {
        margin-bottom: 50px
    }
}

.section-heading h1 {
    margin: 0;
    position: absolute;
    z-index: 1;
    color: rgba(0, 0, 0, .025);
    text-transform: uppercase;
    font-size: 80px;
    font-weight: 800;
    letter-spacing: .5px;
    width: 100%;
    left: 50%;
    top: -30px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    display: none
}

@media(min-width:992px) {
    .section-heading h1 {
        display: inline-block
    }
}

.main-dark-demo .section-heading h1,
.personal-dark-demo .section-heading h1 {
    color: rgba(250, 250, 250, .025)
}

.section-heading h2 {
    position: relative;
    z-index: 2;
    font-size: 30px;
    font-weight: 500
}

.main-dark-demo .section-heading h2,
.personal-dark-demo .section-heading h2 {
    color: #fff
}

.section-heading h2 em {
    font-weight: 500;
    color: #1f1f1f;
    font-style: normal
}

.section-heading p {
    position: relative;
    z-index: 2
}

.main-dark-demo .section-heading p,
.personal-dark-demo .section-heading p {
    color: #fff
}

.text-center {
    text-align: center
}

.text-left {
    text-align: left
}

.text-right {
    text-align: right
}

.main-white-button a {
    display: inline-block;
    background-color: #fff;
    color: #ff771b;
    font-size: 13px;
    text-transform: uppercase;
    padding: 12px 20px;
    border-radius: 22px;
    letter-spacing: .25px
}

.main-white-button a:hover {
    background-color: #f5f6f9
}

.main-primary-button a {
    font-family: 'Roboto', sans-serif !important;
    display: inline-block;
    background-color: #2489c9;
    background: linear-gradient(293deg, #2489c9 0, #2489c9 100%);
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 22px;
    letter-spacing: .25px
}

.main-primary-button a:hover {
    background-color: #fe6600
}

.icon-button i {
    width: 40px;
    height: 40px;
    display: inline-block;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
    border-radius: 50%;
    background-color: #0981c7;
    color: #fff;
    -webkit-transition: all .5s;
    transition: all .5s
}

.icon-button span {
    font-family: 'Roboto', sans-serif !important;
    font-size: 13px;
    text-transform: uppercase;
    color: #e92627;
    margin-left: 5px;
    -webkit-transition: all .5s;
    transition: all .5s
}

.icon-button:hover i {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
}

.icon-button:hover span {
    margin-left: 10px
}

.go-top {
    position: fixed;
    z-index: 15;
    left: 50%;
    bottom: 0;
    border-radius: 0;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    text-decoration: none;
    color: #fff;
    background-color: #0981c7;
    width: 100%;
    height: 18px;
    display: inline-block;
    text-align: center;
    line-height: 18px;
    font-size: 14px;
    opacity: .7;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    display: none
}

.minimal-light-demo .go-top,
.minimal-dark-demo .go-top {
    width: 40px;
    height: 40px;
    line-height: 40px;
    opacity: 1;
    border-radius: 50%;
    position: fixed;
    left: 50%;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
    left: 95% !important;
    top: unset !important;
    color: #fff;
    background-color: #0981c7
}

@media(min-width:992px) {

    .minimal-light-demo .go-top,
    .minimal-dark-demo .go-top {
        top: -50px
    }
}

@media(min-width:992px) {
    .go-top {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        line-height: 40px;
        left: 97%;
        bottom: 3%
    }
}

.go-top:hover {
    background-color: #ff771b
}

section.demo-page-baner {
    margin-top: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 100px 0;
    background-image: url(../images/main-demo-bg.png);
    text-align: center
}

section.demo-page-baner .demo-logo {
    padding: 40px 60px;
    background-color: rgba(0, 0, 0, .05);
    display: inline-block;
    border-radius: 10px
}

section.demo-page-baner .demo-logo img {
    -webkit-animation: move-up-down-little 2s infinite;
    animation: move-up-down-little 2s infinite;
    max-width: 200px
}

@media(min-width:992px) {
    section.demo-page-baner .demo-logo img {
        max-width: 275px
    }
}

section.demo-page-baner h2 {
    color: #fff;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 600;
    margin: 60px 0 40px
}

section.demo-page-baner h2 em {
    font-style: normal;
    font-weight: 700
}

.intro {
    background-color: #1d2023;
    text-align: center;
    padding: 20px 0
}

.intro h2 {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .5px;
    color: #fff
}

.intro h2 em {
    font-style: normal;
    color: #ff771b
}

.demo {
    padding: 60px 0 30px
}

@media(min-width:992px) {
    .demo {
        padding: 60px 25px 0
    }
}

.demo .col-lg-4 {
    padding: 0 30px
}

.demo .demo-item {
    -webkit-transition: all .5s;
    transition: all .5s;
    margin-bottom: 30px
}

@media(min-width:992px) {
    .demo .demo-item {
        margin-bottom: 60px
    }
}

.demo .demo-item .demo-thumb img {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px
}

.demo .demo-item .down-content {
    background-color: #f5f6f9;
    text-align: center;
    display: inline-block;
    width: 100%;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px
}

.demo .demo-item .down-content h4 {
    padding: 20px 0;
    margin: 0;
    font-size: 16px
}

@media(min-width:992px) {
    .demo .demo-item .down-content h4 {
        padding: 25px 0;
        font-size: 18px
    }
}

.demo .demo-item .down-content h4 a {
    color: #1e1e1e
}

.demo .demo-item .down-content h4 a:hover {
    color: #ff771b
}

.demo .demo-item:hover {
    margin-top: -5px
}

.demo .demo-item:hover .down-content h4 a {
    color: #ff771b
}

.demo .coming-soon .demo-thumb {
    background-image: url(../images/coming-soon-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    text-align: center;
    padding: 20px 15px;
    border-radius: 10px
}

@media(min-width:992px) {
    .demo .coming-soon .demo-thumb {
        padding: 80px 0
    }
}

.demo .coming-soon .demo-thumb h4 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 40px
}

.main-banner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 100px 0 40px;
    position: relative
}

@media(min-width:992px) {
    .main-banner {
        padding: 240px 0 140px
    }
}

.main-demo .main-banner {
    background-image: url(../images/main-demo-bg-image.png)
}

.main-dark-demo .main-banner {
    background-image: url(../images/dark-footer-bg.png)
}

.main-light-demo .main-banner {
    background-image: url(../images/1600-840.jpg)
}

.creative-agency-demo .main-banner {
    background-image: url(../images/creative-agency-demo-bg-image.jpg)
}

@media(min-width:992px) {
    .creative-agency-demo .main-banner {
        padding: 280px 0 180px
    }
}

.personal-light-demo .main-banner {
    background-image: url(../images/personal-light-demo-bg-image.jpg);
    padding: 150px 0 100px;
    background-position: left center
}

.personal-light-demo .main-banner:after {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(250, 250, 250, .5);
    content: '';
    z-index: 1;
    opacity: 1;
    visibility: visible
}

@media(min-width:992px) {
    .personal-light-demo .main-banner:after {
        opacity: 0;
        visibility: hidden
    }
}

@media(min-width:992px) {
    .personal-light-demo .main-banner {
        background-position: center center;
        padding: 390px 0 290px
    }
}

.personal-dark-demo .main-banner {
    background-image: url(../images/personal-dark-demo-bg-image.jpg);
    padding: 150px 0 100px;
    background-position: right center
}

.personal-dark-demo .main-banner:after {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .1);
    content: '';
    z-index: 1;
    opacity: 1;
    visibility: visible
}

@media(min-width:992px) {
    .personal-dark-demo .main-banner:after {
        opacity: 0;
        visibility: hidden
    }
}

@media(min-width:992px) {
    .personal-dark-demo .main-banner {
        background-position: center center;
        padding: 390px 0 290px
    }
}

.main-banner .left-content {
    text-align: center;
    position: relative;
    z-index: 2
}

@media(min-width:992px) {
    .main-banner .left-content {
        text-align: left
    }
}

.creative-agency-demo .main-banner .left-content {
    text-align: center
}

.main-banner .left-content h6 {
    margin-top: 60px;
    font-size: 18px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px
}

@media(min-width:992px) {
    .main-banner .left-content h6 {
        font-size: 24px
    }
}

.creative-agency-demo .main-banner .left-content h6 {
    margin-top: 120px;
    letter-spacing: 2.5px
}

@media(min-width:992px) {
    .creative-agency-demo .main-banner .left-content h6 {
        margin-top: 0
    }
}

.personal-light-demo .main-banner .left-content h6,
.personal-dark-demo .main-banner .left-content h6 {
    margin-top: 0;
    margin-bottom: 0
}

.main-light-demo .main-banner .left-content h6,
.personal-light-demo .main-banner .left-content h6 {
    font-size: 16px;
    color: #1e1e1e
}

@media(min-width:992px) {

    .main-light-demo .main-banner .left-content h6,
    .personal-light-demo .main-banner .left-content h6 {
        font-size: 18px
    }
}

.personal-light-demo .main-banner .left-content h6,
.personal-dark-demo .main-banner .left-content h6 {
    font-size: 20px
}

.main-banner .left-content h6 em {
    font-style: normal
}

.main-dark-demo .main-banner .left-content h6 em,
.main-light-demo .main-banner .left-content h6 em {
    color: #ff771b
}

.main-banner .left-content h1 {
    margin-top: 20px;
    margin-bottom: 45px;
    font-size: 46px;
    font-weight: 900;
    text-transform: capitalize;
    color: #fff;
    line-height: 65px
}

@media(min-width:992px) {
    .main-banner .left-content h1 {
        margin-top: 30px;
        line-height: 100px;
        font-size: 45px;
        margin-bottom: 0
    }
}

.creative-agency-demo .main-banner .left-content h1 {
    font-size: 42px;
    letter-spacing: 0;
    margin-top: 20px;
    line-height: 60px;
    margin-bottom: 120px
}

@media(min-width:992px) {
    .creative-agency-demo .main-banner .left-content h1 {
        line-height: 100px;
        margin-bottom: 0;
        font-size: 80px;
        letter-spacing: 2.5px
    }
}

.personal-light-demo .main-banner .left-content h1,
.personal-dark-demo .main-banner .left-content h1 {
    margin-top: 20px;
    font-size: 44px;
    margin-bottom: 10px
}

@media(min-width:992px) {

    .personal-light-demo .main-banner .left-content h1,
    .personal-dark-demo .main-banner .left-content h1 {
        margin-bottom: 0;
        font-size: 70px
    }
}

.main-light-demo .main-banner .left-content h1,
.personal-light-demo .main-banner .left-content h1 {
    color: #fff;
    font-family: 'Roboto', sans-serif !important
}

.main-banner .left-content h1 em {
    font-style: normal;
    font-family: 'Roboto', sans-serif !important
}

.main-dark-demo .main-banner .left-content h1 em,
.main-light-demo .main-banner .left-content h1 em,
.personal-light-demo .main-banner .left-content h1 em,
.personal-dark-demo .main-banner .left-content h1 em {
    color: #fff
}

.personal-light-demo .main-banner .left-content h5,
.personal-dark-demo .main-banner .left-content h5 {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px
}

@media(min-width:992px) {

    .personal-light-demo .main-banner .left-content h5,
    .personal-dark-demo .main-banner .left-content h5 {
        margin-bottom: 60px;
        font-weight: 600;
        letter-spacing: 2px;
        font-size: 36px
    }
}

.personal-dark-demo .main-banner .left-content h5 {
    color: #fff
}

.main-banner .left-content .scroll-down {
    -webkit-animation: move-up-down-little 2s infinite;
    animation: move-up-down-little 2s infinite;
    margin-top: 60px;
    display: none
}

@media(min-width:992px) {
    .main-banner .left-content .scroll-down {
        width: 100%;
        display: inline-block
    }
}

.main-banner .left-content .scroll-down img {
    max-width: 9px
}

.main-banner .left-content .scroll-down span {
    font-size: 14px;
    position: absolute;
    width: 100%;
    bottom: -6px;
    left: 19px;
    display: inline-block;
    color: #1e1e1e
}

.creative-agency-demo .main-banner .left-content .scroll-down span {
    left: 0;
    top: 50px;
    color: #fff
}

.main-dark-demo .main-banner .left-content .scroll-down span,
.main-demo .main-banner .left-content .scroll-down span {
    color: #fff;
    font-weight: 300
}

.main-banner .right-image {
    -webkit-animation: move-up-down 3s infinite;
    animation: move-up-down 3s infinite
}

.follow-me {
    text-align: center;
    margin-top: -55px;
    padding-bottom: 30px;
    -webkit-animation: move-up-down-little 2s infinite;
    animation: move-up-down-little 2s infinite;
    position: relative;
    z-index: 2
}

.follow-me ul.social-icons li {
    display: inline-block;
    margin-right: 5px
}

.follow-me ul.social-icons li:after {
    content: '|';
    margin-left: 7px;
    color: rgba(0, 0, 0, .5)
}

.personal-dark-demo .follow-me ul.social-icons li:after {
    color: #fff
}

.follow-me ul.social-icons li:last-child:after {
    display: none
}

.follow-me ul.social-icons li a {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: .25px;
    color: rgba(0, 0, 0, .5)
}

.personal-dark-demo .follow-me ul.social-icons li a {
    font-weight: 600;
    letter-spacing: .5px;
    color: #fff
}

.follow-me ul.social-icons li a:hover {
    color: #ff771b
}

.minimal-banner {
    background-color: #f5f6f9;
    padding: 150px 30px 50px
}

@media(min-width:992px) {
    .minimal-banner {
        padding: 200px 50px 100px
    }
}

.minimal-dark-demo .minimal-banner {
    background-color: #141618
}

.minimal-banner .left-content h6 {
    font-size: 16px;
    text-transform: capitalize;
    margin: 0;
    text-align: center
}

@media(min-width:992px) {
    .minimal-banner .left-content h6 {
        text-align: left;
        font-size: 20px
    }
}

.minimal-dark-demo .minimal-banner .left-content h6 {
    color: #fff
}

.minimal-banner .left-content h1 {
    font-size: 36px;
    font-weight: 600;
    margin: 20px 0;
    text-align: center
}

@media(min-width:992px) {
    .minimal-banner .left-content h1 {
        text-align: left;
        font-size: 80px
    }
}

.minimal-dark-demo .minimal-banner .left-content h1 {
    color: #fff
}

.minimal-banner .left-content h5 {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 400;
    margin: 0;
    text-align: center
}

@media(min-width:992px) {
    .minimal-banner .left-content h5 {
        text-align: left;
        font-size: 32px
    }
}

.minimal-dark-demo .minimal-banner .left-content h5 {
    color: #fff
}

.minimal-banner .right-icons {
    text-align: center;
    margin-top: 30px
}

@media(min-width:992px) {
    .minimal-banner .right-icons {
        margin-top: 0;
        text-align: right
    }
}

.minimal-banner .right-icons ul li {
    display: inline-block;
    margin-bottom: 0;
    margin: 0 5px
}

@media(min-width:992px) {
    .minimal-banner .right-icons ul li {
        display: block;
        margin-bottom: 20px
    }
}

.minimal-banner .right-icons ul li:last-child {
    margin-bottom: 0
}

.minimal-banner .right-icons ul li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    background-color: #e7e7e7;
    font-size: 14px;
    color: #1e1e1e
}

.minimal-dark-demo .minimal-banner .right-icons ul li a {
    background-color: #25282c;
    color: #fff
}

.minimal-banner .right-icons ul li a:hover {
    background-color: #ff771b;
    color: #fff
}

@-webkit-keyframes move-up-down {
    0 {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes move-up-down {
    0 {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes move-up-down-little {
    0 {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes move-up-down-little {
    0 {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.demo-page footer {
    margin-top: 0
}

footer .footer-cta {
    margin-bottom: 80px;
    background: url(../images/yellow-bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: unset;
    border: 0;
    padding: 20px 15px 40px;
    background-size: cover
}

@media(min-width:992px) {
    footer .footer-cta {
        padding: 20px 45px 35px
    }
}

.demo-page footer .footer-cta {
    margin-bottom: 70px
}

footer .footer-cta .section-heading {
    text-align: center;
    margin-bottom: 0
}

@media(min-width:992px) {
    footer .footer-cta .section-heading {
        text-align: left
    }
}

footer .footer-cta .section-heading h1 {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    left: 0;
    color: rgba(250, 250, 250, .05)
}

footer .footer-cta .section-heading h2 {
    color: #fff
}

footer .footer-cta .section-heading p {
    font-weight: 300;
    color: #fff;
    letter-spacing: .25px
}

.demo-page footer .footer-cta .section-heading p {
    font-weight: 400;
    letter-spacing: .5px;
    font-size: 15px
}

footer .footer-cta .main-white-button {
    text-align: center;
    margin-top: 25px
}

@media(min-width:992px) {
    footer .footer-cta .main-white-button {
        margin-top: 0;
        text-align: right
    }
}

section.page-heading {
    margin-top: 0;
    padding: 180px 0 80px;
    background-image: url(../images/dark-footer-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    text-align: center
}

section.page-heading ul.bread-crumbs li {
    display: inline-block;
    position: relative;
    margin-right: 10px;
    padding-right: 16px
}

section.page-heading ul.bread-crumbs li:after {
    content: '';
    width: 4px;
    height: 4px;
    background-color: #ff771b;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 12px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

section.page-heading ul.bread-crumbs li:last-child {
    margin-right: 0;
    padding-right: 0
}

section.page-heading ul.bread-crumbs li:last-child a {
    color: #ff771b
}

section.page-heading ul.bread-crumbs li:last-child:after {
    display: none
}

section.page-heading ul.bread-crumbs li a {
    font-size: 14px;
    color: #fff;
    font-weight: 300
}

section.page-heading .heading-title h3 {
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 48px;
    letter-spacing: .5px;
    text-transform: uppercase;
    font-weight: 800;
    background: #ff6b06;
    background: linear-gradient(-150deg, #ff6b06 30%, #ff9751 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

section.testimonials {
    margin-top: -7px;
    position: relative
}

.main-dark-demo section.testimonials,
.personal-dark-demo section.testimonials {
    background-color: #1d2023;
    margin-top: -130px;
    padding-top: 160px;
    padding-bottom: 60px;
    z-index: 1
}

@media(min-width:992px) {

    .main-dark-demo section.testimonials,
    .personal-dark-demo section.testimonials {
        padding-bottom: 120px;
        padding-top: 250px
    }
}

.personal-dark-demo section.testimonials {
    background-color: #141618
}

section.testimonials .section-heading {
    margin-bottom: 30px;
    text-align: center
}

@media(min-width:992px) {
    section.testimonials .section-heading {
        text-align: left;
        margin-bottom: 0
    }
}

section.testimonials .section-heading h1 {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    left: 0
}

section.testimonials .testimonial-item {
    border: 2px solid #0981c7;
    border-radius: 10px;
    padding: 15px;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative
}

.main-dark-demo section.testimonials .testimonial-item,
.personal-dark-demo section.testimonials .testimonial-item {
    background-image: url(../images/testimonial-dark-bg.png);
    background-color: #25282c;
    border: 0
}

section.testimonials .testimonial-item .icon {
    top: 20px;
    position: absolute;
    right: 30px;
    margin: 0 auto;
    width: 36px;
    height: 48px
}

section.testimonials .testimonial-item .icon img {
    -webkit-transition: all .5s;
    transition: all .5s
}

section.testimonials .testimonial-item h4 {
    color: #2489c9 !important;
    font-family: 'Roboto', sans-serif !important;
    margin-top: 0;
    margin-bottom: 5px
}

.main-dark-demo section.testimonials .testimonial-item h4,
.personal-dark-demo section.testimonials .testimonial-item h4 {
    color: #fff;
    font-weight: 600
}

section.testimonials .testimonial-item span {
    font-size: 15px !important;
    font-family: 'Roboto', sans-serif !important;
    color: #1e1e1e !important;
    font-weight: 400 !important
}

section.testimonials .testimonial-item p {
    font-size: 14px !important;
    color: #000 !important;
    line-height: 28px !important;
    font-weight: 400 !important;
    font-family: 'Roboto', sans-serif !important;
    margin-top: 10px;
    text-align: justify
}

.main-dark-demo section.testimonials .testimonial-item p,
.personal-dark-demo section.testimonials .testimonial-item p {
    font-weight: 400;
    color: #fff
}

section.testimonials .testimonial-item:hover .icon img {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
}

section.testimonials .my-owl-nav {
    margin-top: 40px
}

section.testimonials .my-owl-nav span i {
    background-color: #eee;
    color: #1e1e1e;
    display: inline-block;
    text-align: center;
    line-height: 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 14px;
    -webkit-transition: all .5s;
    transition: all .5s;
    cursor: pointer
}

.main-dark-demo section.testimonials .my-owl-nav span i,
.personal-dark-demo section.testimonials .my-owl-nav span i {
    background-color: #25282c;
    color: #fff
}

section.testimonials .my-owl-nav span i:hover {
    background-color: #0981c7;
    color: #fff
}

section.testimonials .my-owl-nav .my-next-button {
    margin-left: 10px
}

section.team-members {
    position: relative
}

.about-page section.team-members {
    padding-bottom: 225px;
    border-bottom: 1px solid #eee
}

.main-dark-demo section.team-members {
    background-color: #1d2023;
    margin-top: -130px;
    padding-top: 250px;
    padding-bottom: 120px;
    z-index: 1
}

section.team-members .section-heading {
    margin-bottom: 0;
    text-align: center
}

@media(min-width:992px) {
    section.team-members .section-heading {
        text-align: left
    }
}

section.team-members .section-heading h1 {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    left: 0
}

section.team-members .item {
    border-radius: 15px
}

section.team-members .item img {
    border-top-right-radius: 15px;
    border-top-left-radius: 15px
}

section.team-members .item .item-content {
    position: relative;
    padding: 30px;
    text-align: center;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    background-color: #f5f6f9
}

section.team-members .item .item-content h4 {
    margin-top: 0;
    margin-bottom: 10px
}

section.team-members .item .item-content span {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .25px;
    color: #ff771b
}

section.team-members .my-owl-nav {
    margin-top: 30px;
    margin-bottom: 30px
}

@media(min-width:992px) {
    section.team-members .my-owl-nav {
        margin-bottom: 0
    }
}

section.team-members .my-owl-nav span i {
    background-color: #eee;
    color: #1e1e1e;
    display: inline-block;
    text-align: center;
    line-height: 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 14px;
    -webkit-transition: all .5s;
    transition: all .5s;
    cursor: pointer
}

.main-dark-demo section.team-members .my-owl-nav span i {
    background-color: #25282c;
    color: #fff
}

section.team-members .my-owl-nav span i:hover {
    background-color: #ff771b;
    color: #fff
}

section.team-members .my-owl-nav .my-next-button {
    margin-left: 10px
}

.main-dark-demo .facts,
.personal-dark-demo .facts {
    background-color: #1d2023
}

@media(min-width:992px) {

    .main-dark-demo .facts,
    .personal-dark-demo .facts {
        background-color: transparent
    }
}

section.fun-facts {
    position: relative;
    z-index: 2;
    background-image: url(../images/facts-bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    margin-top: -130px;
    margin-left: 15px;
    margin-right: 15px;
    padding: 60px 45px 45px;
    text-align: center;
    border-radius: 15px
}

section.fun-facts p {
    font-size: 20px;
    text-align: center;
    margin-bottom: 35px
}

section.fun-facts .count-area-content {
    width: 140px;
    height: 140px;
    background-color: rgba(250, 250, 250, .2);
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    margin-bottom: 15px
}

section.fun-facts .count-area-content .count-digit {
    margin-top: 30px;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    position: relative
}

section.fun-facts .count-area-content .count-title {
    margin-top: 0;
    font-size: 14px;
    color: #fff;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 400;
    text-transform: capitalize
}

section.clients {
    background-image: url(../images/clients-bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
    margin-left: 15px;
    margin-right: 15px;
    padding: 60px 60px 50px;
    margin-top: -125px;
    text-align: center;
    border-radius: 10px;
    border: 0;
    position: relative;
    z-index: 2
}

section.clients .item {
    max-height: 176px !important;
    height: 128px !important;
    line-height: 90px;
    width: 100%;
    padding: 0 0 !important;
    background-color: rgba(250, 250, 250, .2);
    border-radius: 10px;
    cursor: unset !important
}

section.clients .owl-dots {
    text-align: center;
    margin-top: 30px
}

section.clients .owl-dots .owl-dot {
    margin: 0 5px;
    border-radius: 3px;
    width: 6px;
    height: 6px;
    background-color: #fff;
    opacity: .5;
    outline: 0;
    -webkit-transition: all .3s;
    transition: all .3s
}

section.clients .owl-dots .active {
    background-color: #fff;
    opacity: 1;
    width: 18px
}

section.clients-second {
    background-color: #f5f6f9;
    margin-top: 0;
    padding: 30px 0;
    text-align: center;
    border-radius: 10px;
    border: 0;
    position: relative;
    z-index: 2
}

@media(min-width:992px) {
    section.clients-second {
        padding: 50px 0
    }
}

section.clients-second .item {
    width: 100%;
    padding: 20px 10px;
    cursor: pointer
}

section.clients-second .owl-dots {
    display: none
}

section.recent-projects {
    background-color: #f5f6f9;
    padding: 60px 0 180px
}

@media(min-width:992px) {
    section.recent-projects {
        padding: 80px 0 210px
    }
}

.projects-page section.recent-projects {
    padding: 0;
    margin-top: 60px;
    background: #fffbf8
}

@media(min-width:992px) {
    .projects-page section.recent-projects {
        margin-top: 120px
    }
}

.minimal-light-demo section.recent-projects {
    background-color: #fff;
    margin-top: 0;
    padding: 60px 0 0
}

@media(min-width:992px) {
    .minimal-light-demo section.recent-projects {
        padding: 80px 50px 60px
    }
}

.minimal-dark-demo section.recent-projects {
    margin-top: 0;
    background-color: #1d2023;
    padding: 60px 0 0
}

@media(min-width:992px) {
    .minimal-dark-demo section.recent-projects {
        padding: 30px 50px 15px
    }
}

.main-dark-demo section.recent-projects {
    background-color: #141618;
    margin-top: 0
}

.personal-dark-demo section.recent-projects {
    margin-top: 0;
    background-color: #1d2023
}

section.recent-projects .section-heading {
    text-align: center
}

@media(min-width:992px) {
    section.recent-projects .section-heading {
        text-align: left
    }

    .creative-agency-demo section.recent-projects .section-heading {
        text-align: center
    }
}

section.recent-projects .section-heading h1 {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    left: 0
}

.creative-agency-demo section.recent-projects .section-heading h1 {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    left: 50%
}

section.recent-projects .main-primary-button {
    margin-top: 90px;
    display: none
}

@media(min-width:992px) {
    section.recent-projects .main-primary-button {
        display: inline-block
    }
}

.projects-page section.recent-projects .main-primary-button {
    margin-top: 30px
}

.creative-agency-demo section.recent-projects .main-primary-button,
.personal-light-demo section.recent-projects .main-primary-button,
.personal-dark-demo section.recent-projects .main-primary-button {
    margin-top: 0
}

section.recent-projects .container-fluid {
    padding: 0 15px
}

@media(min-width:992px) {
    section.recent-projects .container-fluid {
        padding: 0
    }
}

section.recent-projects .portfolio-filters {
    text-align: center;
    margin-top: -30px;
    margin-bottom: 30px
}

@media(min-width:992px) {
    section.recent-projects .portfolio-filters {
        text-align: right;
        margin-top: 105px;
        margin-bottom: 0
    }
}

.projects-page section.recent-projects .portfolio-filters {
    text-align: center;
    margin-top: 0;
    margin-bottom: 60px
}

.minimal-light-demo section.recent-projects .portfolio-filters,
.minimal-dark-demo section.recent-projects .portfolio-filters {
    text-align: center
}

@media(min-width:992px) {

    .minimal-light-demo section.recent-projects .portfolio-filters,
    .minimal-dark-demo section.recent-projects .portfolio-filters {
        margin-top: 0;
        text-align: left;
        margin-bottom: 80px
    }
}

.minimal-dark-demo section.recent-projects .portfolio-filters ul,
.minmimal-light-demo section.recent-projects .portfolio-filters ul {
    text-align: center
}

@media(min-width:992px) {

    .minimal-dark-demo section.recent-projects .portfolio-filters ul,
    .minmimal-light-demo section.recent-projects .portfolio-filters ul {
        text-align: left
    }
}

section.recent-projects .portfolio-filters ul li {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    margin-left: 30px;
    color: #1e1e1e;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s
}

.minimal-light-demo section.recent-projects .portfolio-filters ul li,
.projects-page section.recent-projects .portfolio-filters ul li {
    background-color: #f5f6f9;
    padding: 10px 15px;
    font-size: 13px;
    border-radius: 25px;
    margin: 5px
}

@media(min-width:992px) {

    .minimal-light-demo section.recent-projects .portfolio-filters ul li,
    .projects-page section.recent-projects .portfolio-filters ul li {
        font-size: 13px;
        padding: 10px 22px;
        margin-left: 15px
    }
}

.minimal-dark-demo section.recent-projects .portfolio-filters ul li {
    color: #fff;
    background-color: #25282c;
    padding: 10px 15px;
    font-size: 13px;
    border-radius: 25px;
    margin: 5px
}

@media(min-width:992px) {
    .minimal-dark-demo section.recent-projects .portfolio-filters ul li {
        font-size: 13px;
        padding: 10px 22px;
        margin-left: 15px
    }
}

.personal-dark-demo section.recent-projects .portfolio-filters ul li {
    color: #fff
}

section.recent-projects .portfolio-filters ul li:hover {
    color: #ff771b
}

section.recent-projects .portfolio-filters ul li:first-child {
    margin-left: 0
}

section.recent-projects .portfolio-filters ul .active {
    color: #ff771b
}

.minimal-light-demo section.recent-projects .portfolio-filters ul .active,
.minimal-dark-demo section.recent-projects .portfolio-filters ul .active,
.projects-page section.recent-projects .portfolio-filters ul .active {
    background-color: #ff771b;
    color: #fff
}

.personal-dark-demo section.recent-projects .portfolio-filters ul .active {
    color: #ff771b
}

section.recent-projects .item,
section.recent-projects .masonry-item {
    border-radius: 15px
}

.creative-agency-demo section.recent-projects .item,
.personal-light-demo section.recent-projects .item,
.personal-dark-demo section.recent-projects .item,
.minimal-light-demo section.recent-projects .item,
.minimal-dark-demo section.recent-projects .item,
.projects-page section.recent-projects .item,
.creative-agency-demo section.recent-projects .masonry-item,
.personal-light-demo section.recent-projects .masonry-item,
.personal-dark-demo section.recent-projects .masonry-item,
.minimal-light-demo section.recent-projects .masonry-item,
.minimal-dark-demo section.recent-projects .masonry-item,
.projects-page section.recent-projects .masonry-item {
    margin-bottom: 30px
}

section.recent-projects .item img,
section.recent-projects .masonry-item img {
    border-top-right-radius: 15px;
    border-top-left-radius: 15px
}

.minimal-light-demo section.recent-projects .item img,
.minimal-dark-demo section.recent-projects .item img,
.minimal-light-demo section.recent-projects .masonry-item img,
.minimal-dark-demo section.recent-projects .masonry-item img {
    border-radius: 15px;
    width: 372px
}

.minimal-dark-demo section.recent-projects .item .hover-effect,
.minimal-dark-demo section.recent-projects .masonry-item .hover-effect {
    width: 352px;
    background-color: #fffaf8e3 !important
}

.minimal-dark-demo section.recent-projects .item .hover-effect .hover-content h4,
.minimal-dark-demo section.recent-projects .masonry-item .hover-effect .hover-content h4 {
    color: #fff;
    font-weight: 600
}

.minimal-light-demo section.recent-projects .item .thumb,
.minimal-dark-demo section.recent-projects .item .thumb,
.minimal-light-demo section.recent-projects .masonry-item .thumb,
.minimal-dark-demo section.recent-projects .masonry-item .thumb {
    position: relative
}

.minimal-light-demo section.recent-projects .item .thumb .hover-effect,
.minimal-dark-demo section.recent-projects .item .thumb .hover-effect,
.minimal-light-demo section.recent-projects .masonry-item .thumb .hover-effect,
.minimal-dark-demo section.recent-projects .masonry-item .thumb .hover-effect {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .5s;
    transition: all .5s;
    position: absolute;
    right: 10px;
    top: 10px;
    left: 10px;
    bottom: 50px;
    background-color: rgba(250, 250, 250, .9);
    border-radius: 10px
}

.minimal-light-demo section.recent-projects .item .thumb .hover-effect .hover-content,
.minimal-dark-demo section.recent-projects .item .thumb .hover-effect .hover-content,
.minimal-light-demo section.recent-projects .masonry-item .thumb .hover-effect .hover-content,
.minimal-dark-demo section.recent-projects .masonry-item .thumb .hover-effect .hover-content {
    width: 92%;
    font-family: 'Roboto', sans-serif !important;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.minimal-light-demo section.recent-projects .item .thumb .hover-effect .hover-content i,
.minimal-dark-demo section.recent-projects .item .thumb .hover-effect .hover-content i,
.minimal-light-demo section.recent-projects .masonry-item .thumb .hover-effect .hover-content i,
.minimal-dark-demo section.recent-projects .masonry-item .thumb .hover-effect .hover-content i {
    background-color: #ff771b;
    color: #fff;
    display: inline-block;
    text-align: center;
    line-height: 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 14px;
    -webkit-transition: all .5s;
    transition: all .5s
}

.minimal-light-demo section.recent-projects .item .thumb .hover-effect .hover-content i:hover,
.minimal-dark-demo section.recent-projects .item .thumb .hover-effect .hover-content i:hover,
.minimal-light-demo section.recent-projects .masonry-item .thumb .hover-effect .hover-content i:hover,
.minimal-dark-demo section.recent-projects .masonry-item .thumb .hover-effect .hover-content i:hover {
    background-color: #fe6600
}

.minimal-light-demo section.recent-projects .item .thumb .hover-effect .hover-content h4,
.minimal-dark-demo section.recent-projects .item .thumb .hover-effect .hover-content h4,
.minimal-light-demo section.recent-projects .masonry-item .thumb .hover-effect .hover-content h4,
.minimal-dark-demo section.recent-projects .masonry-item .thumb .hover-effect .hover-content h4 {
    font-family: 'Roboto', sans-serif !important;
    color: #b1392f;
    margin-top: 15px;
    margin-bottom: 5px
}

.minimal-light-demo section.recent-projects .item .thumb .hover-effect .hover-content span,
.minimal-dark-demo section.recent-projects .item .thumb .hover-effect .hover-content span,
.minimal-light-demo section.recent-projects .masonry-item .thumb .hover-effect .hover-content span,
.minimal-dark-demo section.recent-projects .masonry-item .thumb .hover-effect .hover-content span {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .25px;
    color: #1e1e1e
}

.minimal-light-demo section.recent-projects .item .thumb:hover .hover-effect,
.minimal-dark-demo section.recent-projects .item .thumb:hover .hover-effect,
.minimal-light-demo section.recent-projects .masonry-item .thumb:hover .hover-effect,
.minimal-dark-demo section.recent-projects .masonry-item .thumb:hover .hover-effect {
    opacity: 1;
    visibility: visible
}

section.recent-projects .item .item-content,
section.recent-projects .masonry-item .item-content {
    position: relative;
    padding: 30px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    background-color: #fffaf8e3
}

.projects-page section.recent-projects .item .item-content,
.projects-page section.recent-projects .masonry-item .item-content {
    background-color: #f5f6f9
}

.main-dark-demo section.recent-projects .item .item-content,
.personal-dark-demo section.recent-projects .item .item-content,
.main-dark-demo section.recent-projects .masonry-item .item-content,
.personal-dark-demo section.recent-projects .masonry-item .item-content {
    background-color: #25282c
}

section.recent-projects .item .item-content .icon,
section.recent-projects .masonry-item .item-content .icon {
    position: absolute;
    top: 0;
    right: 20px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .5s;
    transition: all .5s
}

section.recent-projects .item .item-content .icon i,
section.recent-projects .masonry-item .item-content .icon i {
    background-color: #0981c8 !important;
    color: #fff;
    display: inline-block;
    text-align: center;
    line-height: 32px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 14px;
    -webkit-transition: all .5s;
    transition: all .5s
}

section.recent-projects .item .item-content .icon i:hover,
section.recent-projects .masonry-item .item-content .icon i:hover {
    background-color: #fe6600
}

section.recent-projects .item .item-content h4,
section.recent-projects .masonry-item .item-content h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #1e1e1e;
    text-align: center;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 500
}

.main-dark-demo section.recent-projects .item .item-content h4,
.personal-dark-demo section.recent-projects .item .item-content h4,
.main-dark-demo section.recent-projects .masonry-item .item-content h4,
.personal-dark-demo section.recent-projects .masonry-item .item-content h4 {
    color: #fff;
    font-weight: 600
}

section.recent-projects .item .item-content span,
section.recent-projects .masonry-item .item-content span {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .25px;
    color: #ff771b
}

section.recent-projects .item:hover .icon,
section.recent-projects .masonry-item:hover .icon {
    opacity: 1;
    visibility: visible;
    top: -20px
}

section.recent-projects .owl-dots {
    text-align: center;
    margin-top: 30px
}

@media(min-width:992px) {
    section.recent-projects .owl-dots {
        margin-top: 50px
    }
}

section.recent-projects .owl-dots .owl-dot {
    margin: 0 5px;
    border-radius: 3px;
    width: 6px;
    height: 6px;
    background-color: #2489c9;
    opacity: .5;
    outline: 0;
    -webkit-transition: all .3s;
    transition: all .3s
}

section.recent-projects .owl-dots .active {
    background-color: #ff771b;
    opacity: 1;
    width: 18px
}

.js-preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    z-index: 9999;
    -webkit-transition: opacity .25s ease;
    transition: opacity .25s ease
}

.js-preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

@-webkit-keyframes dot {
    50% {
        -webkit-transform: translateX(96px);
        transform: translateX(96px)
    }
}

@keyframes dot {
    50% {
        -webkit-transform: translateX(96px);
        transform: translateX(96px)
    }
}

@-webkit-keyframes dots {
    50% {
        -webkit-transform: translateX(-31px);
        transform: translateX(-31px)
    }
}

@keyframes dots {
    50% {
        -webkit-transform: translateX(-31px);
        transform: translateX(-31px)
    }
}

.preloader-inner {
    border: 1px solid #eee;
    border-left-color: #ff771b;
    -webkit-animation: loader-spin 1.2s infinite linear;
    animation: loader-spin 1.2s infinite linear;
    position: relative;
    display: inline-block;
    vertical-align: top;
    border-radius: 50%;
    width: 7em;
    height: 7em
}

.js-preloader .content img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

@-webkit-keyframes loader-spin {
    0 {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes loader-spin {
    0 {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.creative-agency-demo section.features {
    margin-top: 80px
}

.main-dark-demo section.features,
.personal-dark-demo section.features {
    margin-top: 0;
    padding-top: 60px;
    background-color: #1d2023;
    padding-bottom: 60px
}

@media(min-width:992px) {

    .main-dark-demo section.features,
    .personal-dark-demo section.features {
        padding-top: 120px;
        padding-bottom: 120px
    }
}

.personal-dark-demo section.features {
    background-color: #141618
}

.services-page section.features {
    padding-bottom: 210px;
    border-bottom: 1px solid #eee
}

section.features .feature-item {
    background-size: 40%;
    text-align: center;
    border: 2px solid #f7f7f7;
    border-radius: 10px;
    padding: 30px 10px;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-transition: all .5s;
    transition: all .5s;
    margin-bottom: 15px;
    position: relative;
    background-color: #fff;
    z-index: 2
}

.creative-agency-demo section.features .feature-item {
    padding: 50px 30px 40px
}

.personal-light-demo section.features .feature-item,
.personal-dark-demo section.features .feature-item,
.services-page section.features .feature-item {
    margin-bottom: 15px
}

@media(min-width:992px) {

    .personal-light-demo section.features .feature-item,
    .personal-dark-demo section.features .feature-item,
    .services-page section.features .feature-item {
        margin-bottom: 30px
    }
}

.main-dark-demo section.features .feature-item,
.personal-dark-demo section.features .feature-item {
    border: 0;
    background-color: #25282c
}

section.features .feature-item .icon {
    margin: 0 auto;
    padding-top: 3px
}

section.features .feature-item h4 {
    font-weight: 400;
    font-family: 'Roboto', sans-serif !important;
    margin-top: 40px;
    margin-bottom: 20px
}

.creative-agency-demo section.features .feature-item h4 {
    margin-top: 30px
}

.main-dark-demo section.features .feature-item h4,
.personal-dark-demo section.features .feature-item h4 {
    font-weight: 600;
    color: #fff
}

.main-dark-demo section.features .feature-item p,
.personal-dark-demo section.features .feature-item p {
    color: #fff
}

section.features .feature-item .main-primary-button {
    width: 100%;
    position: absolute;
    z-index: 1;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -40px;
    -webkit-transition: all .5s;
    transition: all .5s;
    opacity: 0;
    visibility: hidden
}

.personal-light-demo section.features .feature-item .main-primary-button,
.personal-dark-demo section.features .feature-item .main-primary-button,
.services-page section.features .feature-item .main-primary-button {
    bottom: -10px
}

section.features .feature-item:hover {
    border-color: transparent;
    box-shadow: 0 0 20px rgba(0, 0, 0, .1)
}

.main-dark-demo section.features .feature-item:hover {
    box-shadow: none
}

section.features .feature-item:hover .icon img {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
}

section.features .feature-item:hover .main-primary-button {
    bottom: -2px;
    opacity: 1;
    visibility: visible
}

@media(min-width:992px) {
    section.features .feature-item:hover .main-primary-button {
        bottom: -20px
    }
}

.personal-light-demo section.features .feature-item:hover .main-primary-button,
.personal-dark-demo section.features .feature-item:hover .main-primary-button,
.services-page section.features .feature-item:hover .main-primary-button {
    bottom: -2px
}

@media(min-width:992px) {

    .personal-light-demo section.features .feature-item:hover .main-primary-button,
    .personal-dark-demo section.features .feature-item:hover .main-primary-button,
    .services-page section.features .feature-item:hover .main-primary-button {
        bottom: 10px
    }
}

section.features .first-feature {
    background-image: url(../images/06-features-bg.png);
    background-size: 40%
}

.main-dark-demo section.features .first-feature,
.personal-dark-demo section.features .first-feature {
    background-image: url(../images/01-features-dark-bg.png)
}

.creative-agency-demo section.features .first-feature {
    background-size: 75%
}

section.features .first-feature .icon {
    width: 80px;
    height: 68px
}

.main-dark-demo section.features .second-feature,
.personal-dark-demo section.features .second-feature {
    background-image: url(../images/06-features-dark-bg.png)
}

.creative-agency-demo section.features .second-feature {
    background-size: 75%
}

section.features .second-feature .icon {
    width: 80px;
    height: 68px
}

.main-dark-demo section.features .third-feature,
.personal-dark-demo section.features .third-feature {
    background-image: url(../images/06-features-dark-bg.png)
}

.creative-agency-demo section.features .third-feature {
    background-size: 75%
}

section.features .third-feature .icon {
    width: 80px;
    height: 68px
}

.main-dark-demo section.features .fourth-feature,
.personal-dark-demo section.features .fourth-feature {
    background-image: url(../images/06-features-dark-bg.png)
}

.creative-agency-demo section.features .fourth-feature {
    background-size: 75%
}

section.features .fourth-feature .icon {
    width: 80px;
    height: 68px
}

.main-dark-demo section.features .fivth-feature,
.personal-dark-demo section.features .fivth-feature {
    background-image: url(../images/06-features-dark-bg.png)
}

.creative-agency-demo section.features .fivth-feature {
    background-size: 75%
}

section.features .fivth-feature .icon {
    width: 80px;
    height: 68px
}

.main-dark-demo section.features .sixth-feature,
.personal-dark-demo section.features .sixth-feature {
    background-image: url(../images/06-features-dark-bg.png)
}

.creative-agency-demo section.features .sixth-feature {
    background-size: 75%
}

section.features .sixth-feature .icon {
    width: 80px;
    height: 68px
}

section.more-about-us .section-heading {
    margin-bottom: 0
}

section.more-about-us .section-heading h1 {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    left: 0
}

section.more-about-us .section-heading .main-primary-button {
    margin-top: 30px;
    margin-bottom: 30px
}

@media(min-width:992px) {
    section.more-about-us .section-heading .main-primary-button {
        margin-bottom: 0
    }
}

section.more-about-us .right-image {
    -webkit-animation: move-up-down 3s infinite;
    animation: move-up-down 3s infinite
}

@media(min-width:992px) {
    section.more-about-us .right-image {
        margin-left: 30px
    }
}

section.about-me {
    background-color: #f5f6f9;
    margin-top: 0;
    padding: 60px 0
}

.about-page section.about-me {
    background-color: #fff;
    padding-bottom: 336px
}

.services-page section.about-me,
.single-service-page section.about-me {
    background-color: #fff
}

.single-service-page section.about-me {
    padding-bottom: 336px;
    border-bottom: 1px solid #eee
}

@media(min-width:992px) {
    section.about-me {
        padding: 120px 0
    }
}

.personal-dark-demo section.about-me {
    background-color: #1d2023
}

.services-page section.about-me .section-heading,
.single-service-page section.about-me .section-heading {
    margin-bottom: 40px
}

section.about-me .left-content {
    margin-right: 0;
    margin-bottom: 30px
}

@media(min-width:992px) {
    section.about-me .left-content {
        margin-right: 15px;
        margin-bottom: 0
    }
}

@media(min-width:992px) {
    .about-page section.about-me .left-content {
        margin-left: 15px
    }
}

.services-page section.about-me .left-content,
.single-service-page section.about-me .left-content,
.about-page section.about-me .left-content {
    margin-right: 0
}

section.about-me .left-content h2 {
    margin-top: 0;
    font-family: 'Roboto', sans-serif !important
}

.about-page section.about-me .left-content h2 em {
    font-style: normal;
    color: #ff771b
}

.personal-dark-demo section.about-me .left-content h2 {
    color: #fff;
    font-weight: 600
}

section.about-me .left-content p {
    margin-bottom: 30px
}

.personal-dark-demo section.about-me .left-content p {
    color: #fff
}

section.about-me .left-content span.testimonial {
    font-size: 17px;
    font-weight: 500;
    color: #1e1e1e;
    margin-top: 0;
    line-height: 30px;
    margin-bottom: 15px;
    display: inline-block
}

.personal-dark-demo section.about-me .left-content span.testimonial {
    color: #fff;
    font-weight: 400
}

section.about-me .left-content .skill-item {
    margin-top: 30px;
    position: relative
}

section.about-me .left-content .last-skill {
    border-bottom: 0
}

section.about-me .left-content span.percentage {
    position: absolute;
    top: -2px;
    left: 100%;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    font-size: 14px;
    font-weight: 600;
    color: #1e1e1e
}

.personal-dark-demo section.about-me .left-content span.percentage {
    color: #fff
}

section.about-me .left-content h6 {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    color: #1e1e1e;
    margin-bottom: 10px
}

.personal-dark-demo section.about-me .left-content h6 {
    color: #fff
}

section.about-me .left-content .skill-bar {
    width: 100%
}

section.about-me .left-content .filled-bar {
    position: absolute;
    z-index: 99;
    height: 5px;
    border-radius: 2.5px;
    background-color: #ff771b
}

section.about-me .left-content .unfilled-bar {
    height: 5px;
    border-radius: 2.5px;
    background-color: #e7e7e7
}

.personal-dark-demo section.about-me .left-content .unfilled-bar {
    background-color: #141618
}

section.about-me .left-content .first-bar .filled-bar {
    width: 85%
}

section.about-me .left-content .second-bar .filled-bar {
    width: 64%
}

section.about-me .left-content .third-bar .filled-bar {
    width: 70%
}

section.about-me .left-content .fourth-bar .filled-bar {
    width: 94%
}

section.about-me .right-image {
    -webkit-animation: move-up-down 5s infinite;
    animation: move-up-down 5s infinite;
    margin-left: 0
}

.about-page section.about-me .right-image {
    margin-bottom: 15px
}

@media(min-width:992px) {
    .about-page section.about-me .right-image {
        margin-bottom: 0
    }
}

.services-page section.about-me .right-image,
.single-service-page section.about-me .right-image {
    margin-top: 10px
}

@media(min-width:992px) {

    .services-page section.about-me .right-image,
    .single-service-page section.about-me .right-image {
        margin-top: 0;
        margin-left: 30px
    }
}

@media(min-width:992px) {
    section.about-me .right-image {
        margin-left: 15px
    }
}

section.about-me .left-image {
    -webkit-animation: move-up-down 5s infinite;
    animation: move-up-down 5s infinite
}

.personal-dark-demo section.about-me .left-image {
    margin-bottom: 30px
}

@media(min-width:992px) {
    section.about-me .left-image {
        margin-right: 15px
    }
}

.video {
    background-image: url(../images/video-bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    margin-top: -240px;
    border-radius: 15px
}

.video .play-button {
    padding: 200px 0;
    text-align: center
}

.video .play-button a {
    width: 80px;
    height: 80px;
    display: inline-block;
    text-align: center;
    line-height: 80px;
    background-color: #fff;
    color: #ff771b;
    border-radius: 50%;
    font-size: 22px
}

section.blog-entries {
    background-color: #f5f6f9;
    padding: 80px 0 190px
}

.creative-agency-demo section.blog-entries {
    padding: 60px 0
}

@media(min-width:992px) {
    .creative-agency-demo section.blog-entries {
        padding: 80px 0 120px
    }
}

.main-dark-demo section.blog-entries {
    background-color: #141618;
    margin-top: 0
}

.personal-dark-demo section.blog-entries {
    background-color: #1d2023;
    margin-top: 0
}

section.blog-entries .section-heading {
    text-align: center
}

@media(min-width:992px) {
    section.blog-entries .section-heading {
        text-align: left
    }
}

section.blog-entries .section-heading h1 {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    left: 0
}

section.blog-entries .main-primary-button {
    margin-top: 90px;
    display: none
}

@media(min-width:992px) {
    section.blog-entries .main-primary-button {
        display: inline-block
    }
}

section.blog-entries .blog-item {
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 6px 57px rgba(191, 66, 30, .21)
}

section.blog-entries .blog-item .blog-thumb {
    position: relative
}

section.blog-entries .blog-item .blog-thumb span.category {
    font-family: 'Roboto', sans-serif !important;
    position: absolute;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    top: 20px;
    left: 30px
}

section.blog-entries .blog-item .blog-thumb img {
    height: 300px;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px
}

section.blog-entries .blog-item .down-content {
    padding: 30px;
    background-color: #fff;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px
}

.main-dark-demo section.blog-entries .blog-item .down-content,
.personal-dark-demo section.blog-entries .blog-item .down-content {
    background-color: #25282c
}

section.blog-entries .blog-item .down-content h4 {
    line-height: 26px;
    font-family: 'Roboto', sans-serif !important;
    color: #4a4a4a !important;
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: 16px
}

.main-dark-demo section.blog-entries .blog-item .down-content h4,
.personal-dark-demo section.blog-entries .blog-item .down-content h4 {
    color: #fff;
    font-weight: 600
}

.main-dark-demo section.blog-entries .blog-item .down-content p,
.personal-dark-demo section.blog-entries .blog-item .down-content p {
    color: #fff
}

section.blog-entries .blog-item .down-content span.date {
    font-family: 'Roboto', sans-serif !important;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .25px;
    color: #7a7a7a
}

section.blog-entries .blog-item .down-content .icon-button {
    margin-top: 20px
}

.blog-posts .blog-post {
    border-radius: 15px;
    margin-bottom: 30px
}

.blog-posts .blog-post .blog-thumb {
    position: relative
}

.blog-posts .blog-post .blog-thumb span.category {
    position: absolute;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    top: 20px;
    left: 30px
}

.blog-posts .blog-post .blog-thumb img {
    border-top-right-radius: 15px;
    border-top-left-radius: 15px
}

.blog-posts .blog-post .down-content {
    padding: 30px;
    background-color: #f5f6f9;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px
}

.blog-posts .blog-post .down-content h4 {
    margin-top: 15px;
    margin-bottom: 20px
}

.blog-posts .blog-post .down-content p {
    margin-bottom: 30px
}

.blog-posts .blog-post .down-content p.right-text {
    margin-top: 20px
}

@media(min-width:992px) {
    .blog-posts .blog-post .down-content p.right-text {
        margin-top: -10px
    }
}

.blog-posts .blog-post .down-content span.quote {
    font-size: 17px;
    font-weight: 500;
    color: #1e1e1e;
    margin-top: 0;
    line-height: 30px;
    margin-bottom: 20px;
    display: inline-block
}

.blog-posts .blog-post .down-content ul li {
    display: inline-block;
    margin-right: 10px
}

.blog-posts .blog-post .down-content ul li:after {
    content: '/';
    color: #7a7a7a;
    margin-left: 10px
}

.blog-posts .blog-post .down-content ul li:last-child:after {
    display: none
}

.blog-posts .blog-post .down-content ul li a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .25px;
    color: #7a7a7a
}

.blog-posts .blog-post .down-content ul li a:hover {
    color: #ff771b
}

.blog-posts .blog-post .down-content .icon-button {
    margin-top: 20px
}

.blog-posts .blog-post .down-content .tags-share {
    border-top: 1px solid #eee;
    padding-top: 25px
}

.blog-posts .blog-post .down-content .tags-share ul.tags {
    text-align: center;
    margin-bottom: 15px
}

@media(min-width:992px) {
    .blog-posts .blog-post .down-content .tags-share ul.tags {
        margin-bottom: 0;
        text-align: left
    }
}

.blog-posts .blog-post .down-content .tags-share ul.tags li:after {
    display: none
}

.blog-posts .blog-post .down-content .tags-share ul.tags li a {
    font-size: 14px;
    font-weight: 500;
    color: #1e1e1e
}

.blog-posts .blog-post .down-content .tags-share ul.tags li a:hover {
    color: #ff771b
}

.blog-posts .blog-post .down-content .tags-share ul.social-icons {
    text-align: center
}

@media(min-width:992px) {
    .blog-posts .blog-post .down-content .tags-share ul.social-icons {
        text-align: right
    }
}

.blog-posts .blog-post .down-content .tags-share ul.social-icons li {
    display: inline-block;
    margin-right: 15px
}

.blog-posts .blog-post .down-content .tags-share ul.social-icons li:after {
    display: none
}

.blog-posts .blog-post .down-content .tags-share ul.social-icons li a i {
    color: #1e1e1e;
    font-size: 16px;
    -webkit-transition: all .3s;
    transition: all .3s
}

.blog-posts .blog-post .down-content .tags-share ul.social-icons li a:hover i {
    color: #ff771b
}

.blog-posts .blog-post .down-content .tags-share ul.social-icons li:last-child {
    margin-right: 0
}

.blog-posts .comments {
    background-color: #f5f6f9;
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px
}

.blog-posts .comments .heading-title h3 {
    margin-top: 0;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .25px;
    margin-bottom: 30px
}

.blog-posts .comments ul li {
    position: relative;
    display: inline-block;
    margin-bottom: 32px
}

.blog-posts .comments ul li:last-child {
    margin-bottom: 0
}

.blog-posts .comments ul li .comment-thumb img {
    float: left;
    width: 80px;
    height: 80px;
    border-radius: 10px
}

.blog-posts .comments ul li .right-content {
    margin-left: 100px
}

.blog-posts .comments ul li .right-content a {
    position: relative;
    right: 0;
    top: 0;
    font-size: 13px;
    color: #ff771b;
    text-transform: uppercase;
    font-weight: 500
}

@media(min-width:992px) {
    .blog-posts .comments ul li .right-content a {
        position: absolute
    }
}

.blog-posts .comments ul li .right-content h4 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 15px;
    text-transform: capitalize;
    font-weight: 600;
    line-height: 24px
}

.blog-posts .comments ul li .right-content span {
    margin-left: 0;
    display: block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .25px;
    color: #7a7a7a
}

@media(min-width:992px) {
    .blog-posts .comments ul li .right-content span {
        margin-left: 10px;
        display: inline
    }
}

.blog-posts .comments ul .replied {
    margin-left: 0;
    background-color: rgba(0, 0, 0, .05);
    border-radius: 5px;
    padding: 15px
}

@media(min-width:992px) {
    .blog-posts .comments ul .replied {
        padding: 0;
        background-color: transparent;
        border-radius: 0;
        margin: 100px
    }
}

.blog-posts .leave-comment {
    background-color: #f5f6f9;
    border-radius: 15px;
    padding: 30px;
    margin-top: 60px
}

.blog-posts .leave-comment .heading-title h3 {
    margin-top: 0;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .25px;
    margin-bottom: 30px
}

.blog-posts .leave-comment form input {
    width: 100%;
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    margin-bottom: 30px;
    font-size: 14px;
    color: #1e1e1e;
    outline: 0;
    padding: 0 15px;
    -webkit-transition: all .5s;
    transition: all .5s
}

.blog-posts .leave-comment form input::-webkit-input-placeholder {
    color: #7a7a7a
}

.blog-posts .leave-comment form input::-moz-placeholder {
    color: #7a7a7a
}

.blog-posts .leave-comment form input:-ms-input-placeholder {
    color: #7a7a7a
}

.blog-posts .leave-comment form input::-ms-input-placeholder {
    color: #7a7a7a
}

.blog-posts .leave-comment form input::placeholder {
    color: #7a7a7a
}

.blog-posts .leave-comment form input:focus {
    border: 1px solid #ff771b
}

.blog-posts .leave-comment form textarea {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    max-height: 240px;
    min-height: 150px;
    height: 190px;
    border-radius: 20px;
    background-color: #fff;
    border: 0;
    margin-bottom: 30px;
    font-size: 14px;
    color: #1e1e1e;
    outline: 0;
    padding: 15px;
    -webkit-transition: all .5s;
    transition: all .5s;
    border: 1px solid transparent
}

.blog-posts .leave-comment form textarea::-webkit-input-placeholder {
    color: #7a7a7a
}

.blog-posts .leave-comment form textarea::-moz-placeholder {
    color: #7a7a7a
}

.blog-posts .leave-comment form textarea:-ms-input-placeholder {
    color: #7a7a7a
}

.blog-posts .leave-comment form textarea::-ms-input-placeholder {
    color: #7a7a7a
}

.blog-posts .leave-comment form textarea::placeholder {
    color: #7a7a7a
}

.blog-posts .leave-comment form textarea:focus {
    border: 1px solid #ff771b
}

.blog-posts .leave-comment form button {
    display: inline-block;
    background-color: #ff771b;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    padding: 14px 20px;
    border-radius: 22px;
    letter-spacing: .25px;
    cursor: pointer;
    outline: 0;
    border: 0;
    -webkit-transition: all .3s;
    transition: all .3s
}

.blog-posts .leave-comment form button:hover {
    background-color: #fe6600
}

.blog-pagination {
    margin-top: 30px
}

.blog-pagination ul li {
    display: inline-block;
    margin-right: 7px
}

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

.blog-pagination ul li a {
    width: 40px;
    height: 40px;
    display: inline-block;
    text-align: center;
    line-height: 40px;
    background-color: #f5f6f9;
    border-radius: 50%;
    color: #1e1e1e;
    font-weight: 500;
    font-size: 14px
}

.blog-pagination ul li a:hover {
    color: #ff771b
}

.blog-pagination ul .active a {
    background-color: #ff771b;
    color: #fff
}

section.error-page {
    background-image: url(../images/error-page-bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 60px 15px;
    border-radius: 10px;
    border: 0
}

@media(min-width:992px) {
    section.error-page {
        padding: 120px 0
    }
}

section.error-page h1 {
    text-align: center;
    margin: 0;
    font-size: 100px;
    font-weight: 900;
    color: #fff
}

@media(min-width:992px) {
    section.error-page h1 {
        font-size: 150px
    }
}

section.error-page h4 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .25px;
    color: #fff;
    margin-top: 0;
    text-align: center
}

@media(min-width:992px) {
    section.error-page h4 {
        text-align: left
    }
}

section.error-page p {
    color: #fff;
    margin-bottom: 25px;
    text-align: center
}

@media(min-width:992px) {
    section.error-page p {
        text-align: left
    }
}

section.error-page .main-white-button {
    text-align: center
}

@media(min-width:992px) {
    section.error-page .main-white-button {
        text-align: left
    }
}

section.more-information {
    position: relative;
    z-index: 1
}

.main-dark-demo section.more-information,
.personal-dark-demo section.more-information {
    background-color: #1d2023;
    margin-top: -130px;
    padding-top: 160px;
    padding-bottom: 45px
}

@media(min-width:992px) {

    .main-dark-demo section.more-information,
    .personal-dark-demo section.more-information {
        padding-bottom: 105px;
        padding-top: 250px
    }
}

.personal-dark-demo section.more-information {
    background-color: #141618
}

section.more-information .info-item {
    background: #0981c7;
    border: 2px solid #f7f7f7;
    border-radius: 10px;
    padding: 30px 30px 42px;
    -webkit-transition: all .5s;
    transition: all .5s;
    margin-bottom: 15px;
}

.main-dark-demo section.more-information .info-item,
.personal-dark-demo section.more-information .info-item {
    background-color: #25282c;
    border: 0
}

.personal-light-demo section.more-information .info-item,
.personal-dark-demo section.more-information .info-item,
.contact-page section.more-information .info-item {
    margin-bottom: 30px
}

section.more-information .info-item .icon {
    margin-right: 25px;
    float: left;
    width: 80px;
    height: 80px;
    line-height: 80px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    background: #ff6b06;
    background: linear-gradient(-150deg, #ff6b06 30%, #ff9751 100%)
}

section.more-information .info-item .icon img {
    -webkit-transition: all .5s;
    transition: all .5s
}

section.more-information .info-item .right-content {
    display: inline-block
}

section.more-information .info-item .right-content h4 {
    margin-top: 10px;
    margin-bottom: 10px
}

.main-dark-demo section.more-information .info-item .right-content h4,
.personal-dark-demo section.more-information .info-item .right-content h4 {
    color: #fff;
    font-weight: 600
}

section.more-information .info-item .right-content span a {
    font-size: 14px;
    color: #7a7a7a
}

@media(min-width:992px) {
    section.more-information .info-item .right-content span a {
        font-size: 15px
    }
}

section.more-information .info-item .right-content span a:hover {
    color: #ff771b
}

section.more-information .info-item:hover {
    border-color: transparent;
    box-shadow: 0 0 20px rgba(0, 0, 0, .1)
}

.main-dark-demo section.more-information .info-item:hover {
    box-shadow: none
}

section.more-information .info-item:hover .icon img {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
}

section.more-information .phone .icon img {
    margin: 17px 0;
    width: 46px;
    height: 46px
}

section.more-information .email .icon img {
    margin: 26px 0;
    width: 44px;
    height: 28px
}

section.more-information .address .icon img {
    margin: 15px 0;
    width: 40px;
    height: 50px
}

@media(min-width:992px) {
    section.more-information form {
        margin-left: 15px
    }
}

section.more-information form p {
    margin-top: -5px;
    margin-bottom: 28px
}

.personal-dark-demo section.more-information form p {
    color: #fff
}

section.more-information form input {
    width: 100%;
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    background-color: #f5f6f9;
    border: 1px solid #e92628;
    margin-bottom: 30px;
    font-size: 14px;
    color: #1e1e1e;
    outline: 0;
    padding: 0 15px;
    -webkit-transition: all .5s;
    transition: all .5s
}

.personal-dark-demo section.more-information form input {
    background-color: #1d2023;
    color: #fff
}

section.more-information form input::-webkit-input-placeholder {
    color: #7a7a7a
}

section.more-information form input::-moz-placeholder {
    color: #7a7a7a
}

section.more-information form input:-ms-input-placeholder {
    color: #7a7a7a
}

section.more-information form input::-ms-input-placeholder {
    color: #7a7a7a
}

section.more-information form input::placeholder {
    color: #7a7a7a
}

section.more-information form input:focus {
    border: 1px solid #ff771b
}

section.more-information form textarea {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    max-height: 240px;
    min-height: 150px;
    height: 190px;
    border-radius: 20px;
    background-color: #f5f6f9;
    border: 0;
    margin-bottom: 30px;
    font-size: 14px;
    color: #1e1e1e;
    outline: 0;
    padding: 15px;
    -webkit-transition: all .5s;
    transition: all .5s;
    border: 1px solid #e92628
}

.personal-dark-demo section.more-information form textarea {
    background-color: #1d2023;
    color: #fff
}

section.more-information form textarea::-webkit-input-placeholder {
    color: #7a7a7a
}

section.more-information form textarea::-moz-placeholder {
    color: #7a7a7a
}

section.more-information form textarea:-ms-input-placeholder {
    color: #7a7a7a
}

section.more-information form textarea::-ms-input-placeholder {
    color: #7a7a7a
}

section.more-information form textarea::placeholder {
    color: #7a7a7a
}

section.more-information form textarea:focus {
    border: 1px solid #ff771b
}

section.more-information form button {
    font-family: 'Roboto';
    margin: 0 auto;
    display: table;
    background: linear-gradient(293deg, #2489c9 0, #2489c9 100%);
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 22px;
    letter-spacing: .25px;
    cursor: pointer;
    outline: 0;
    border: 0;
    -webkit-transition: all .3s;
    transition: all .3s
}

section.more-information form button:hover {
    background-color: #fe6600
}

section.map {
    margin-top: 80px
}

.single-project .top-content {
    margin-bottom: 60px
}

.single-project .top-content .left-content {
    margin-bottom: 30px
}

@media(min-width:992px) {
    .single-project .top-content .left-content {
        margin-bottom: 0;
        margin-right: 15px
    }
}

.single-project .top-content .left-content .section-heading {
    margin-bottom: 0
}

.single-project .top-content .right-info {
    border: 2px solid #eee;
    padding: 30px;
    border-radius: 10px
}

.single-project .top-content .right-info ul li {
    font-weight: 400;
    color: #7a7a7a;
    font-size: 14px;
    margin-bottom: 30px
}

.single-project .top-content .right-info ul li span {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #1e1e1e
}

.single-project .top-content .right-info span {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 5px
}

.single-project .top-content .right-info ul.social-icons {
    margin-top: 15px
}

.single-project .top-content .right-info ul.social-icons li {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 0
}

.single-project .top-content .right-info ul.social-icons li a i {
    color: #1e1e1e;
    font-size: 16px;
    -webkit-transition: all .3s;
    transition: all .3s
}

.single-project .top-content .right-info ul.social-icons li a:hover i {
    color: #ff771b
}

.single-project .top-content .right-info ul.social-icons li:last-child {
    margin-right: 0
}

.single-project img {
    border-radius: 15px;
    margin-bottom: 30px
}

.single-project .projects-pagination {
    border-top: 1px solid #eee;
    margin-top: 30px;
    padding-top: 60px
}

.single-project .projects-pagination .second-icon-button i {
    width: 40px;
    height: 40px;
    display: inline-block;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
    border-radius: 50%;
    background-color: #ff771b;
    color: #fff;
    -webkit-transition: all .5s;
    transition: all .5s
}

.single-project .projects-pagination .second-icon-button span {
    font-size: 13px;
    text-transform: uppercase;
    color: #ff771b;
    margin-right: 5px;
    -webkit-transition: all .5s;
    transition: all .5s
}

.single-project .projects-pagination .second-icon-button:hover i {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
}

.single-project .projects-pagination .second-icon-button:hover span {
    margin-right: 10px
}

.stats-wrap {
    background: url(../images/stat-top.png);
    max-width: 750px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    margin: 0 auto 0;
    padding-top: 80px;
    position: relative;
    z-index: 15
}

.stats-wrap-inner {
    background: #fff;
    padding: 20px 15px 20px;
    -webkit-border-radius: 0 0 10px 10px;
    border-radius: 0 0 10px 10px
}

.stat-item {
    text-align: center;
    position: relative;
    color: #d5565f;
    z-index: 10
}

.stat-icon {
    width: 72px;
    display: inline-block;
    min-height: 66px
}

.stat-item h2 {
    font-weight: 500;
    background: -moz-linear-gradient(left, #f94 0, #fc6076 100%);
    background: -webkit-linear-gradient(left, #f94 0, #fc6076 100%);
    background: linear-gradient(left, #f94 0, #fc6076 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 35px;
    margin: 25px 0 10px
}

.stat-item p {
    color: #4a4a4a;
    font-size: 20px
}

.stat-item:after {
    content: "";
    width: 2px;
    height: 80%;
    background: #979797;
    opacity: .2;
    position: absolute;
    right: -1px;
    top: 50%;
    -moz-transform: translateY(-53%);
    -webkit-transform: translateY(-53%);
    -o-transform: translateY(-53%);
    -ms-transform: translateY(-53%);
    transform: translateY(-53%)
}

.col-xs-4 {
    width: 33.33333333%;
    float: left;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px
}

.stats-wrap-inner:before {
    content: "";
    width: 100%;
    height: 50%;
    bottom: 0;
    box-shadow: 0 6px 57px #f5cf131a;
    position: absolute;
    left: 0;
    z-index: -1
}

@media(max-width:768px) {
    .stat-item {
        width: 100%
    }
}

@media(min-width:992px) {
    .col-md-offset-1 {
        margin-left: 8.33333333%
    }
}

@media(min-width:992px) {
    .col-md-4 {
        width: 33.33333333%
    }
}

.industry-item-title {
    overflow: hidden;
    margin-bottom: 15px
}

.industry-item-title h4 {
    color: #b1392f;
    font-family: 'Roboto', sans-serif !important;
    overflow: hidden;
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    line-height: 1.35
}

.industry-item-inner p {
    margin-bottom: 10px
}

.button-orange.button-transparent {
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif !important;
    border: 1px solid #e92627;
    color: #e92627
}

.button-small {
    padding: 6px 40px;
    font-size: 13px
}

.button {
    display: inline-block;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 500;
    -webkit-border-radius: 40px;
    border-radius: 40px;
    border: 1px solid;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.button-transparent {
    background: url(../images/btn-bg-transparent.png)
}

.industry-item-title img {
    float: left;
    margin-right: 20px;
    width: 50px
}

@media(max-width:991px) {
    .industry-list .row {
        margin-bottom: 40px
    }
}

@media(max-width:991px) {
    .industry-item-inner {
        padding: 20px
    }
}

@media(min-width:992px) {
    .col-md-8 {
        width: 66.66666667%
    }
}

.firstrow {
    padding-left: 80px;
    margin-top: 0;
    background: #fffbf8
}

.secondrow {
    padding-right: 80px;
    margin-top: -42px;
    background: #fffbf8
}

.thirdrow {
    padding-left: 250px;
    margin-top: -36px;
    padding-bottom: 60px;
    background: #fffbf8
}

.features {
    margin-top: 0;
    background: #fffbf8;
    padding-top: 10px
}

.about-me {
    padding: 80px 0 0 !important
}

.numbers {
    display: block;
    font-size: 40px;
    color: #0981c7;
    font-family: 'Gotham Rounded';
    font-weight: 500;
    margin-bottom: 20px
}

.mac-book {
    max-width: 425px;
    height: 250px;
    background: url(../images/macbook.png) no-repeat;
    position: relative;
    background-size: contain
}

.mac-book-inner {
    padding-top: 90px;
    padding-left: 90px
}

.mac-book h3 {
    font-size: 34px;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 700;
    background: -moz-linear-gradient(left, #f94 0, #fc6076 100%);
    background: -webkit-linear-gradient(left, #f94 0, #fc6076 100%);
    background: linear-gradient(left, #f94 0, #fc6076 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    line-height: 1
}

.mac-book h4 {
    color: #b1392f;
    font-family: 'Roboto', sans-serif !important;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    opacity: .9;
    margin: 0 0 10px
}

.mac-book span {
    display: inline-block;
    background: -moz-linear-gradient(top, #f94 0, #fc6076 100%);
    background: -webkit-linear-gradient(top, #f94 0, #fc6076 100%);
    background: linear-gradient(top, #f94 0, #fc6076 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 24px;
    margin-left: -8px;
    -webkit-animation: DownMove 3s infinite .6s;
    -moz-animation: DownMove 3s infinite .6s;
    animation: DownMove 3s infinite .6s
}

.icon-arrow-down:before {
    content: "\e90d"
}

.brochure-inner {
    padding-bottom: 128.67%;
    position: relative;
    margin-bottom: 20px
}

.brochure-inner>img {
    position: absolute;
    left: 0;
    top: 0;
    width: 250px;
    height: 300px
}

.brochure-main:hover .brochure-hover {
    opacity: 1;
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.brochure-main .brochure-hover {
    position: absolute;
    left: 0;
    top: 0;
    width: 250px;
    height: 300px;
    opacity: 0;
    -moz-transform: scale(.6);
    -webkit-transform: scale(.6);
    -o-transform: scale(.6);
    -ms-transform: scale(.6);
    transform: scale(.6);
    background: -moz-linear-gradient(165deg, #f94, #fc6076);
    background: -webkit-linear-gradient(165deg, #f94, #fc6076);
    background: linear-gradient(165deg, #f94, #fc6076);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    font-size: 0
}

.brochure-hover-inner {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 1px);
    text-align: center
}

.brochure-hover:after {
    content: "";
    width: 1px;
    height: 100%;
    display: inline-block;
    vertical-align: middle
}

.brochure-main .brochure-hover span {
    font-family: 'Roboto', sans-serif !important;
    font-size: 16px;
    color: #fff;
    margin-bottom: 8px;
    display: block
}

.brochure-main .brochure-hover button {
    width: 115px;
    height: 35px;
    line-height: 35px;
    padding: 0;
    text-align: center;
    border-color: #f94;
    font-size: 13px;
    font-weight: 600;
    background: #fff url(../images/btn-bg-white.png);
    border-color: #fff;
    color: #c93024;
    font-family: 'Roboto', sans-serif !important
}

.clientbg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 15px 0 40px;
    background: linear-gradient(293deg, #fc6076 0, #f94 100%)
}

.blogspadding {
    background: #fffbf8 !important;
    padding: 30px 0 50px !important;
    margin-top: 50px !important
}

#footer1 {
    margin-bottom: -50px;
    margin-top: 0;
    padding: 0 !important;
    background-color: #fff !important
}

.footer-cta {
    margin-bottom: 80px;
    background: url(../images/cta-bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 10px;
    border: 0;
    padding: 20px 15px 40px;
    background-size: cover
}

@media(min-width:992px) {
    #footer1 .footer-cta {
        padding: 20px 45px 35px;
        border-radius: 10px
    }
}

#footer1 .footer-cta .section-heading h1 {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    left: 0;
    color: rgba(250, 250, 250, .05)
}

#footer1 .footer-cta .section-heading h2 {
    color: #1f1f1f;
    line-height: 30px
}

#footer1 .footer-cta .section-heading p {
    font-weight: 400;
    color: #1f1f1f;
    letter-spacing: .25px
}

@media(min-width:992px) {
    #footer1 .footer-cta .main-white-button {
        margin-top: 0;
        text-align: right
    }
}

.main-white-button a {
    font-family: 'Roboto', sans-serif !important;
    display: inline-block;
    background-color: #fff;
    color: #ff771b;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 12px 20px;
    border-radius: 22px;
    letter-spacing: .25px
}

.footer-bottom {
    position: relative;
    overflow: hidden;
    padding: 130px 0 98px;
    background: #fffbf8
}

.footer-bottom:before {
    content: "";
    width: 90%;
    height: 270px;
    position: absolute;
    left: 26px;
    bottom: 0;
    background: -moz-linear-gradient(293deg, #fc6076 0, #f94 100%);
    background: -webkit-linear-gradient(293deg, #fc6076 0, #f94 100%);
    background: linear-gradient(293deg, #fc6076 0, #f94 100%);
    -webkit-border-radius: 70px 0 0;
    border-radius: 70px 0 0;
    -webkit-transform: rotate(5deg);
    -moz-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
    -webkit-transform-origin: -50% 0;
    -moz-transform-origin: -50% 0;
    -ms-transform-origin: -50% 0;
    transform-origin: -50% 0;
    opacity: .25
}

.footer-bottom .container-fluid {
    position: relative;
    z-index: 5
}

.container-fluid:before {
    display: table;
    content: " "
}

.site-info p {
    float: left;
    margin: 0
}

.site-info a {
    float: right;
    color: #fff;
    text-decoration: none
}

.footer-bottom:after {
    content: "";
    width: 84%;
    height: 100%;
    position: absolute;
    right: 0;
    bottom: 0;
    background: -moz-linear-gradient(293deg, #fc6076 0, #f94 100%);
    background: -webkit-linear-gradient(293deg, #fc6076 0, #f94 100%);
    background: linear-gradient(293deg, #fc6076 0, #f94 100%);
    -webkit-border-radius: 70px 0 0;
    border-radius: 70px 0 0;
    transform: rotate(-11deg) skewX(-11deg);
    transform-origin: 100% 0
}

.site-footer:after {
    content: "";
    display: table
}

.clearfix:before {
    display: table;
    content: " "
}

.headerbg {
    background: #fff
}

.smx-timeline {
    position: relative
}

.timeline-item {
    position: relative;
    padding-bottom: 20px;
    z-index: 10
}

.timeline-item:before {
    content: "";
    width: 1px;
    height: 100%;
    left: 50%;
    top: 0;
    position: absolute;
    background: #d2d2d2
}

.smx-timeline-img {
    position: absolute;
    left: calc(50% - 25px);
    top: 0;
    width: 51px;
    height: 51px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #fff
}

.smx-timeline-img:before {
    content: "";
    width: 41px;
    height: 41px;
    background: #44ff8a;
    background: -moz-linear-gradient(151deg, rgba(68, 255, 138, .09) 0, rgba(96, 252, 178, .09) 100%);
    background: -webkit-linear-gradient(151deg, rgba(68, 255, 138, .09) 0, rgba(96, 252, 178, .09) 100%);
    background: linear-gradient(151deg, rgba(68, 255, 138, .09) 0, rgba(96, 252, 178, .09) 100%);
    position: absolute;
    left: calc(50% - 20px);
    top: calc(50% - 20px);
    border: 1px solid #148674;
    -webkit-border-radius: 50%;
    border-radius: 50%
}

.smx-timeline-img:after {
    content: "";
    width: 6px;
    height: 6px;
    position: absolute;
    left: calc(50% - 3px);
    top: calc(50% - 3px);
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #2ec581
}

.smx-timeline-content {
    float: right;
    text-align: left;
    width: calc(50% - 50px);
    font-size: 16px;
    line-height: 1.5625
}

.smx-timeline-content h3 {
    font-size: 20px;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 500;
    margin: 8px 0;
    color: #35e3a2;
    background: -moz-linear-gradient(112deg, #35e3a2 0, #2cc7ad 100%);
    background: -webkit-linear-gradient(112deg, #35e3a2 0, #2cc7ad 100%);
    background: linear-gradient(112deg, #b1392f 0, #b1392f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block
}

.smx-timeline-content p {
    margin: 0
}

.timeline-item:after {
    content: "";
    display: table;
    clear: both
}

.timeline-item:nth-child(2n) .smx-timeline-content {
    float: left;
    text-align: right
}

.timeline-item-2 .smx-timeline-content h3 {
    color: #6f41c3;
    background: -moz-linear-gradient(115deg, #ac7cf3 0, #6f41c3 100%);
    background: -webkit-linear-gradient(115deg, #ac7cf3 0, #6f41c3 100%);
    background: linear-gradient(115deg, #b1392f 0, #b1392f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.timeline-item-3 .smx-timeline-img:before {
    background: -moz-linear-gradient(151deg, rgba(68, 239, 255, .05) 0, rgba(96, 238, 252, .05) 100%);
    background: -webkit-linear-gradient(151deg, rgba(68, 239, 255, .05) 0, rgba(96, 238, 252, .05) 100%);
    background: linear-gradient(151deg, rgba(68, 239, 255, .05) 0, rgba(96, 238, 252, .05) 100%);
    border-color: #31c9ff
}

.timeline-item-3 .smx-timeline-img:after {
    background: #73c7e6
}

.timeline-item-4 .smx-timeline-img:before {
    background: -moz-linear-gradient(151deg, rgba(254, 166, 85, .17) 0, rgba(240, 142, 99, .17) 100%);
    background: -webkit-linear-gradient(151deg, rgba(254, 166, 85, .17) 0, rgba(240, 142, 99, .17) 100%);
    background: linear-gradient(151deg, rgba(254, 166, 85, .17) 0, rgba(240, 142, 99, .17) 100%);
    border-color: #f08e63
}

.timeline-item-4 .smx-timeline-img:after {
    background: #f1bb28
}

.aboutpadding {
    padding-top: 80px !important;
    padding-bottom: 250px !important
}

.timelinepadding {
    padding-top: 0;
    padding-bottom: 0
}

.homeabout {
    padding: 40px 28px 28px !important;
    background: #fff !important
}

#lastfooter {
    padding: 0 !important;
    margin-top: 0;
    background: #fff !important
}

.site-info p {
    float: left;
    margin: 0;
    padding-left: 40px !important
}

.site-info a {
    font-size: 14px;
    font-family: 'Roboto', sans-serif !important;
    padding-right: 125px !important
}

.main-light-demo footer {
    background-image: none !important
}

section.clients {
    padding: 35px 60px 25px !important;
    margin-top: 35px !important
}

.more-information {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
    margin-top: 80px;
    background: #fffbf8 !important
}

.about-img-box {
    margin-top: -21px;
    left: -15px;
    text-align: center;
    position: relative;
    z-index: 1;
    margin-left: auto
}

figure {
    margin: 0
}

.about-img-box .about__img img {
    width: 453px
}

.about-img-box:after {
    position: absolute;
    top: -13px;
    left: -10px;
    width: 100%;
    height: 100%;
    z-index: -1;
    content: '';
    text-align: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%
}

.bannerpara {
    font-size: 15px;
    color: #fff;
    line-height: 28px;
    margin: 0;
    font-weight: 500;
    font-family: 'Roboto', sans-serif !important
}

section.testimonials .titem {
    border: 2px solid #d0dbe1 !important;
    border-radius: 10px
}

.titem img {
    border-radius: 10px
}

@media(max-width:768px) {
    .site-header.fixed-header {
        background-color: #fff !important
    }
}

@media(max-width:768px) {
    .stats-wrap {
        margin: -50px auto 0 !important
    }
}

@media(max-width:768px) {
    .statmobile {
        padding-top: 30px !important
    }
}

.stat-item h2 {
    font-family: 'Roboto', sans-serif !important;
    font-size: 24px !important;
    margin: 8px 0 20px !important
}

.stat-item p {
    margin-top: -16px !important
}

@media(max-width:768px) {
    .blogspadding {
        padding: 0 !important
    }
}

@media(max-width:768px) {
    .brochure-inner {
        margin-left: 48px !important;
        padding-bottom: 100% !important
    }
}

section.brochurebg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-image: url(../images/bg-images-new.jpg) !important;
    margin-top: 0;
    padding: 60px 0
}

.memberpara {
    text-align: justify;
    padding-top: 10px
}

.memberitem {
    border-radius: 15px;
    box-shadow: 0 0 7px rgba(0, 0, 0, .1);
    padding: 15px 36px 20px
}

.memberitem1 {
    border-radius: 15px;
    padding: 12px;
    background: #fff
}

.memberitem1newpadding {
    padding: 15px 10px 23px
}

.teamsecondrow {
    padding: 0 60px
}

@media(max-width:768px) {
    .teamsecondrow {
        padding: 0 !important
    }
}

.featuressecond {
    margin-top: 0;
    background: #fffbf8;
    padding-top: 50px;
    padding-bottom: 60px
}

.memberitem a {
    color: #2489c9;
    font-family: 'Roboto', sans-serif !important
}

.memberitem h4 {
    margin-bottom: 0;
    color: #0981c7;
    font-family: 'Roboto', sans-serif !important;
    font-size: 20px;
    padding-top: 11px;
    text-align: center
}

.memberitem1 h3 {
    line-height: 20px;
    margin-bottom: -7px;
    color: #b1392f;
    font-family: 'Roboto', sans-serif !important;
    font-size: 15px;
    padding-top: 0;
    text-align: center
}

.memberitem span {
    color: #0981c7;
    color: #1e1e1e;
    font-family: 'Roboto', sans-serif !important;
    font-size: 16px;
    text-align: center
}

.familybg {
    margin: 30px 30px 10px;
    padding: 0 0 30px !important
}

.familysolutions {
    background: #fffbf8;
    padding: 40px 0px !important;
    margin: 0
}

.accordion {
    font-size: 15px;
    border: 1px dotted #e92627;
    background-color: #fffbf8;
    color: #1f1f1f;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    outline: 0;
    transition: .4s;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 400
}

.active,
.accordion:hover {
    background-color: #ffffff0a
}

.panel {
    padding: 0 18px;
    background-color: #fff;
    display: none;
    overflow: hidden
}

.accordion:after {
    content: '\02795';
    font-size: 12px;
    color: #777;
    float: right;
    margin-left: 5px
}

.active:after {
    display: none;
    content: "\2796"
}

.othersolutions {
    padding-bottom: 0 !important;
    border-bottom: none !important
}

.systemcarousel {
    padding: 80px 0 !important;
    margin: 0 !important
}

.more-information-form {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
    margin-top: 0;
    background: #fffbf8 !important
}

.faq {
    background: #fff !important;
    padding-top: 0 !important;
    margin-top: 25px
}

section.testimonials .testiitem {
    padding: 30px;
    border-radius: 2% !important;
    border: 2px solid #e92627;
    background: #fff
}

.familysolutionsecondrow {
    padding-top: 8px !important
}

.familysolutionthirdrow {
    padding-top: 8px !important
}

.familybanner {
    background-image: url(../images/1600-840.jpg);
    padding: 240px 0 140px
}

.systemcarousel {
    background-image: url(../images/triangle-big.jpg)
}

.recentproject {
    color: #fff
}

.recentprojectpara {
    color: #fff
}

.viewbutton a {
    border: 1px solid #e92628;
    color: #000;
    background: #fff;
    font-family: 'Roboto', sans-serif !important
}

.right-image {
    -webkit-animation: move-up-down 5s infinite;
    animation: move-up-down 5s infinite;
    margin-left: 0
}

.testipagepara {
    text-align: justify !important;
    font-size: 14px !important;
    color: #120e0e !important;
    line-height: 28px !important;
    font-weight: 500 !important;
    font-family: 'Roboto', sans-serif !important
}

.testipagehead {
    color: #b1392f !important
}

.testipagepadding {
    padding-bottom: 30px
}

.testipagesub {
    font-size: 15px !important;
    font-family: 'Roboto', sans-serif !important;
    color: #1e1e1e !important;
    font-weight: 400 !important
}

@media(max-width:768px) {
    .movetop {
        margin-top: 80px !important
    }
}

.bb {
    background: #fff0 !important
}

.bb .glyphicon-chevron-left {
    margin-top: -106px !important
}

.bb .glyphicon-chevron-right {
    margin-top: -106px !important
}

.new-tabs>li>a {
    font-family: 'Roboto', sans-serif !important;
    color: #1f1f1f;
    background: linear-gradient(293deg, #f5cf13 0, #f5c813 102%)
}
}

.new-tabs>li.active>a {
    color: #fff !important;
    font-family: 'Roboto', sans-serif !important
}

.homeaboutpara {
    text-align: justify
}

.industriesheading {
    color: #fff;
    text-align: center;
    font-size: 20px !important;
    font-family: 'Roboto', sans-serif !important
}

.slidercaption {
    left: 20% !important;
    top: 40% !important;
    color: #fff !important;
    font-family: 'Roboto', sans-serif !important
}

.slidercaption h3 {
    font-size: 35px !important;
    padding-bottom: 15px
}

.slidercaption h1 {
    padding-bottom: 15px;
    color: #fff !important;
    font-size: 32px !important;
    font-weight: 700
}

.industriestopheading {
    text-align: center;
    color: #fff !important
}

.industriespara {
    text-align: center;
    color: #fff !important
}

.section-heading h3 {
    text-align: center;
    display: inline-block !important;
    margin: 0;
    position: absolute;
    z-index: 1;
    color: rgba(0, 0, 0, .025);
    text-transform: uppercase;
    font-size: 74px;
    font-weight: 800;
    letter-spacing: .5px;
    width: 100%;
    left: 50%;
    top: -25px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

.testimonialsbgnew {
    margin-top: 25px !important
}

.belowbannerbutton a {
    font-family: 'Roboto', sans-serif !important;
    font-weight: 500;
    color: #fff !important;
    padding: 7px 35px;
    font-size: 16px;
    margin-top: 10px;
    background: linear-gradient(293deg, #2489c9 0, #2489c9 100%)
}

.footercontact1 .fa {
    color: #1f1f1f;
    font-size: 17px
}

.footercontact2 .fa {
    color: #1f1f1f;
    font-size: 16px
}

.footercontact3 .fa {
    color: #1f1f1f;
    font-size: 16px
}

.gameheading {
    color: #1f1f1f;
    font-size: 23px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif !important
}

.gameheading1 {
    font-size: 23px
}

.menumail a {
    color: #b1392f !important;
    font-size: 15px !important;
    text-transform: unset !important
}

.secondeventsrow {
    padding-top: 20px
}

.funbg {
    margin-top: 0 !important;
    background-image: url(../images/fun-facts-bg.png) !important;
    background-repeat: no-repeat;
    background-position: center center;
    margin-top: 0;
    padding: 40px 0 30px;
    text-align: center
}

.count-area-content {
    background: linear-gradient(293deg, #fc6076 0, #ff9944c4 100%);
    width: 300px;
    height: 300px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    margin-bottom: 30px
}

.count-area-content .count-digit {
    margin-top: 60px;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    position: relative
}

.count-area-content .count-title {
    padding: 10px 17px 17px;
    margin-top: 0;
    font-size: 14px;
    color: #fff;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 500;
    text-transform: unset;
    letter-spacing: .25px
}

.count-area-content .count-title1 {
    padding: 70px 25px 0;
    margin-top: 0;
    font-size: 20px;
    color: #fff;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 500;
    text-transform: unset;
    letter-spacing: .25px
}

.more-informationpadding {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
    background-image: url(../images/white-bg.jpg) !important;
    box-shadow: 0 6px 40px rgba(191, 66, 30, .21);
    padding-top: 50px !important;
    padding-bottom: 30px !important;
    margin-top: 0 !important
}

.about-me1 {
    background: #fffbf8 !important;
    margin-top: 0;
    margin-bottom: 30px;
    padding: 28px 0 30px !important
}

.missionheading {
    color: #1f1f1f;
    font-family: 'Roboto', sans-serif !important;
    font-size: 22px;
    text-align: center
}

.missionpara {
    text-align: center;
    font-family: 'Roboto', sans-serif !important
}

.downloadbg a {
    background: linear-gradient(293deg, #fc6076 0, #f94 100%);
    color: #fff
}

.aboutbreadcrumb {
    font-size: 35px !important;
    font-weight: 500 !important;
    font-family: 'Roboto', sans-serif !important;
    color: #fff
}

.vissionpadding {
    background: #fffbf8 !important;
    padding: 18px 38px 59px 14px !important
}

.missionpadding {
    background: #fffbf8 !important;
    padding: 20px 38px 28px 14px !important
}

@media(min-width:768px) {
    .movetop img {
        height: 550px !important
    }
}

@media(min-width:768px) {
    .movetop2 img {
        height: 617px !important
    }
}

.homeblogsidebar {
    margin-left: 0 !important
}

.solutionbannerpara {
    color: #fff;
    font-weight: 600;
    font-size: 16px
}

.technology {
    padding: 40px 50px 0 !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
    background-image: url(../images/yellow-bg.jpg) !important;
    box-shadow: 0 6px 57px rgba(191, 66, 30, .21)
}

.widebanner {
    background: #fff;
    padding: 40px 0 50px;
    margin: 0;
    background: linear-gradient(293deg, #fc6076 0, #f94 100%)
}

.minimal-dark-demo .site-header .header-wrap .header-widgets {
    flex-basis: 25% !important
}

section.blog-entries2 {
    background-color: #fffbf8;
    padding: 40px !important;
    margin-top: 0 !important
}

section.attractions .main-primary-button {
    margin-top: 0
}

section.clients1 .item {
    background: #fff;
    border-radius: 10px
}

section.clients1 {
    background-image: url(../images/yellow-bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
    margin-left: 15px;
    margin-right: 15px;
    padding: 60px 60px 50px;
    margin-top: -125px;
    text-align: center;
    border-radius: 10px;
    border: 0;
    position: relative;
    z-index: 2
}

.teamsection {
    text-align: center
}

.familymainfeatures {
    text-align: center !important
}

.fecprojecttitle {
    color: #1e1e1e;
    text-align: right
}

.minimal-dark-demo section.recent-projects .item img {
    width: 305px !important
}

.minimal-dark-demo section.recent-projects .item {
    width: 305px !important
}

.bb {
    top: 40% !important
}

.fecfaq {
    font-size: 22px !important;
    line-height: 36px
}

.fecsolutionheading {
    font-family: 'Roboto', sans-serif !important;
    color: #1f1f1f;
    width: 100%;
    text-align: center;
    font-size: 22px
}

.othersolutionsitem {
    text-align: center
}

.extrapaddingsubsolution {
    padding: 40px 10px !important
}

.faqsection {
    margin-bottom: 40px !important
}

.subsolutionbg {
    margin: 0;
    padding: 30px 0 0 !important
}

.listpoints {
    list-style-type: square;
    margin-bottom: 10px;
    color: #000;
    font-weight: 400;
    font-family: 'Roboto', sans-serif !important;
    font-size: 14px;
    line-height: 22px;
    padding: 5px 0 0;
    width: 100%;
    height: 100%;
    transition: width 2s;
    transition-timing-function: ease;
    transition-timing-function: ease
}

@media(max-width:768px) {
    .listpoints {
        font-size: 14px
    }
}

.listpoints1 {
    list-style-type: square;
    text-align: justify;
    margin-bottom: 10px;
    color: #000;
    font-weight: 400;
    font-family: 'Roboto', sans-serif !important;
    font-size: 14px;
    line-height: 24px;
    padding: 5px;
    width: 100%;
    height: 100%;
    transition: width 2s;
    transition-timing-function: ease;
    transition-timing-function: ease
}

.listpoints1:hover {
    background: linear-gradient(293deg, #f5cf137a 0, #f5cf1314 100%)
}

.listpoints:hover {
    background: linear-gradient(293deg, #f5cf137a 0, #f5cf1314 100%)
}

.featuresheading {
    font-family: 'Roboto', sans-serif !important;
    color: #1f1f1f;
    font-weight: 500;
    font-size: 23px !important
}

.crm {
    padding: 30px 10px 50px !important
}

.wireless {
    padding: 30px 10px 50px !important
}

.belowbannertext {
    padding-left: 52px !important
}

.familybg1 {
    margin: 30px;
    padding: 30px 0 10px !important
}

.homefeaturespadding {
    background: #fffbf8 !important;
    padding: 45px 60px 40px !important;
    margin-top: 0 !important
}

.homeaboutsection {
    padding-top: 10px !important
}

.newwidth {
    padding: 5px 10px 10px !important
}

.newwidthicons {
    width: 65px !important;
    height: 30px !important
}

.icon-bar {
    position: fixed;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1000;
    left: 0
}

.icon-bar a {
    display: block;
    text-align: center;
    padding: 10px;
    transition: all .3s ease;
    color: #1e1e1e;
    font-size: 20px
}

.icon-bar a:hover {
    background-color: #ededed3d
}

.facebook {
    background: #ededed3d;
    color: #1e1e1e
}

.twitter {
    background: #ededed3d;
    color: #1e1e1e
}

.google {
    background: #ededed3d;
    color: #1e1e1e
}

@media(max-width:768px) {
    .icon-bar a {
        padding-left: 7px !important;
        padding-right: 9px !important;
        font-size: 14px
    }
}

@media(max-width:768px) {
    .icon-bar {
        top: 77% !important
    }
}

section.industryserve .my-owl-nav {
    text-align: center !important
}

.featuresmiddlebutton {
    margin: 0 auto;
    display: table;
    margin-top: 20px
}

.header-nav {
    padding-left: 160px !important
}

.featurestab {
    margin-top: 0
}

.testitab {
    margin-top: -46px
}

.completefec {
    margin-left: 40px;
    margin-top: -30px
}

.familysolutionfirstrow {
    margin-top: -30px
}

.top_bar {
    width: 100%;
    height: 47px;
    background: linear-gradient(293deg, #f5cf13 0, #f5c813 102%)
}

.con h5 {
    font-size: 17px;
    line-height: 0
}

.social_icon {
    margin-left: 10px;
    line-height: 30px
}

.social_icon .fa-facebook .fa-twitter .fa-linkedin:hover {
    color: #337ab7
}

.topbaricons {
    padding-left: 8px !important;
    padding-top: 4px
}

.topbaricons2 {
    padding-left: 170px !important;
    padding-top: 8px !important
}

.top_bar a {
    font-family: 'Roboto', sans-serif !important;
    font-size: 14px;
    color: #1e1e1e !important
}

.topbarmail {
    padding-left: 80px !important
}

.languageicon a {
    font-size: 14px;
    color: #1e1e1e !important
}

.languageiconsub a {
    color: #000 !important
}

.languagemainoption {
    margin-left: -20px;
    margin-top: -24px !important
}

.abouttopbaricons2 {
    padding-left: 278px !important;
    padding-top: 6px
}

.aboutlanguagemainoption {
    margin-left: -20px;
    margin-top: -24px !important
}

.industriescarouselsecondrow {
    padding-top: 20px
}

.industriescarouselfirstrow {
    padding-top: 20px
}

.fecheaderbutton a {
    padding: 12px 20px;
    border-radius: 22px;
    color: #fff;
    background: linear-gradient(293deg, #fc6076 0, #f94 100%)
}

.testimonialssolution {
    margin-top: 30px !important
}

.testimonialssolution2 {
    padding-top: 15px
}

.section-heading h4 {
    text-align: left;
    display: inline-block !important;
    margin: 0;
    position: absolute;
    z-index: 1;
    color: rgba(0, 0, 0, .025);
    text-transform: uppercase;
    font-size: 74px;
    font-weight: 800;
    letter-spacing: .5px;
    width: 100%;
    left: 50%;
    top: -25px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

@media(min-width:1340px) {
    .topbaricons2 {
        padding-left: 200px !important;
        padding-top: 6px
    }
}

.signageicon {
    width: 75px !important;
    height: 42px !important;
    padding-top: 10px
}

.signageicon2 {
    width: 75px !important;
    height: 30px !important;
    padding-top: 10px
}

.wirelesspara {
    font-size: 15px;
    color: #000;
    line-height: 28px;
    margin: 0;
    font-weight: 400;
    font-family: 'Roboto', sans-serif !important
}

.wirelesssecondimage {
    padding-top: 100px
}

.headerbutton a {
    font-weight: 600;
    font-family: 'Roboto', sans-serif !important;
    background: linear-gradient(293deg, #2489c9 0, #2489c9 100%);
    color: #fff
}

.fecmainpara {
    text-align: justify;
    padding-top: 44px
}

.mainsolutionheading {
    font-size: 23px !important
}

.projectspagepadding {
    margin-top: 0 !important
}

.clientspagefeatures {
    margin-top: 20px !important
}

.testimonialsbgneww {
    margin-top: 30px !important
}

.testimonialspagepadding {
    background: #fffbf8 !important;
    margin-top: 20px !important
}

.testimonialspagesolution {
    margin-top: 10px !important;
    margin-bottom: 100px
}

.movetop1 img {
    height: 200px !important
}

.slidercaption1 {
    left: -37% !important;
    top: 78% !important;
    color: #fff !important;
    font-family: 'Roboto', sans-serif !important
}

.slidercaption1 h1 {
    color: #fff !important;
    font-size: 27px !important
}
.card{
    display: grid;
}
/* .contactpagepadding { */
    /* padding-top: 25px !important;
    padding-bottom: 60px !important;
    margin-top: 0;
    margin-bottom: 30px;
    /* background-color: #fffbf8 !important; */
    /* background: url('images/parafait-form-bg.jpg') !important; */

    .contactpagepadding {
        padding-top: 50px !important;
        padding-bottom: 60px !important;
        margin-bottom: 30px;
        background: url('/images/parafait-form-bg.jpg') !important;
    }

.contactpagesubheading {
    font-family: 'Roboto', sans-serif !important;
    font-size: 18px;
    color: #fffbfb !important;
    line-height: 28px
}

.contactpagetext {
    font-size: 14px;
    color: #fff;
    line-height: 24px;
    margin: 0;
    font-weight: 500;
    text-align: center;
    font-family: 'Roboto', sans-serif !important
}

.contactpagetext a {
    color: #fff !important
}

.contactpagetext1 a {
    color: #fff !important
}

.contactpagetext1 {
    font-size: 14px;
    color: #fff;
    line-height: 24px;
    margin: 0;
    font-weight: 500;
    text-align: center;
    font-family: 'Roboto', sans-serif !important
}

.contactmap a {
    color: #ffd503 !important
}

.contactmap a:hover {
    color: #1f1 !important
}

.contactsectionpadding {
    background: #0981c7;
    border: 2px solid #f7f7f7;
    border-radius: 10px;
    -webkit-transition: all .5s;
    transition: all .5s;
    margin-bottom: 10px;
    padding: 10px 0 30px 20px !important
}

.contactsectionpaddingchina {
    background: #0981c7;
    border: 2px solid #f7f7f7;
    border-radius: 10px;
    -webkit-transition: all .5s;
    transition: all .5s;
    margin-bottom: 10px;
    padding: 10px 0 30px 20px !important;
}
.contactsectionpaddingUK{
    background: #0981c7;
    border: 2px solid #f7f7f7;
    border-radius: 10px;
    -webkit-transition: all .5s;
    transition: all .5s;
    margin-bottom: 10px;
    padding: 10px 0 30px 20px !important;
}
.contactsectionpaddingcis {
    background: #0981c7;
    border: 2px solid #f7f7f7;
    border-radius: 10px;
    -webkit-transition: all .5s;
    transition: all .5s;
    margin-bottom: 15px;
    padding: 10px 0 44px 20px !important
}

.enquireheading {
    color: #1f1f1f;
    font-weight: 500;
    font-family: 'Roboto', sans-serif !important;
    font-size: 24px;
    text-align: center;
    padding-bottom: 20px
}

.contactpagesection1padding {
    background: #ffffff;
    padding: 60px 50px 40px !important;
    margin: 0
}

.contactdoenloadbutton {
    font-family: 'Roboto', sans-serif !important;
    background-color: #ff771b !important;
    color: #fff !important;
    background: linear-gradient(293deg, #fc6076 0, #f94 100%) !important
}

.featuresheading1 {
    font-family: 'Roboto', sans-serif !important;
    color: #b1392f;
    font-size: 24px !important
}

.deducingagentsecondimage {
    width: 440px
}

.about-img-box1 {
    margin-left: auto
}

.deducingagentthirdimage {
    width: 375px
}

.parkdigitalsignage {
    width: 312px;
    margin-top: -40px;
    margin-bottom: 0
}

.digitalfeature {
    margin-bottom: 30px
}

.parkbg {
    margin: 30px;
    padding: 0 0 30px !important
}

.signagebg {
    margin: 30px 30px 0;
    padding: 0 !important
}

.parklockerimage {
    width: 292px;
    margin-top: -78px;
    margin-left: 67px
}

.recipe-managementimage {
    width: 314px !important;
    margin-top: 15px;
    margin-left: 23px
}

.recipeheading {
    margin-bottom: -40px
}

.kitchendisplayimage {
    margin-top: -78px;
    width: 334px;
    margin-left: 22px
}

.kitchenbg {
    padding: 0 !important;
    margin: 30px 0 0 !important
}

.posfb {
    width: 340px !important
}

.posbg {
    padding: 0 !important;
    margin: 30px 0 45px !important
}

.mobileorderbg {
    margin: 30px;
    padding: 60px 0 30px !important
}

.newwidth1 {
    padding: 5px 10px 30px !important
}

.bookingreservation {
    width: 332px;
    margin-top: 0;
    margin-left: 0
}

.bookingreservationbg {
    margin: 30px;
    padding: 0 !important
}

.debitcardsimage {
    margin-top: -88px;
    width: 436px
}

.debitbg {
    padding: 0 !important;
    margin: 30px 0 -45px
}

.kiosk {
    width: 185px;
    margin-top: -27px;
    margin-left: 33px
}

.partnersimg {
    width: 200px !important;
    margin: 0 auto !important;
    display: table !important;
    border-bottom: 1px solid #b1392f;
    padding-bottom: 12px
}

.partnersicon {
    width: 80px;
    margin: 0 auto;
    display: table
}

.featuressecondpartners {
    margin-top: 0;
    background: #fffbf8;
    padding-top: 30px;
    padding-bottom: 0
}

.featurespartnersrow {
    margin-top: 0;
    background: #fffbf8;
    padding-top: 50px
}

.featuressecondpartnersfirstrow {
    margin-top: 0;
    background: #fffbf8;
    padding-top: 0;
    padding-bottom: 0
}

.featuressecondpartnerslastrow {
    margin-top: 0;
    background: #fffbf8;
    padding-top: 30px;
    padding-bottom: 60px
}

.footerpartnerpadding {
    padding-top: 50px !important;
    margin-top: 0;
    background: #fff !important
}

.associalink {
    padding-top: 20px
}

.associalink a {
    font-size: 15px
}

.wirelessimg1 {
    width: 400px;
    float: left;
    padding-top: 0
}

@media(max-width:768px) {
    .wirelessimg1 {
        width: 245px;
        margin-top: -24px
    }
}

.wirelessimg3 {
    width: 368px;
    float: left;
    padding-top: 7px
}

.wirelessimg2 {
    width: 450px;
    padding-top: 40px
}

.wirelessimg4 {
    width: 376px;
    padding-top: 16px
}

.wirelessimg5 {
    width: 420px;
    float: left;
    padding-top: 40px
}

.projects-page section.recent-projects .masonry-item .item-content {
    background-color: #fff !important
}

section.recent-projects .masonry-item img {
    border: 2px solid #d0dbe1 !important;
    border-radius: 10px !important
}

.item-content {
    padding: 0 !important
}

.maintenancebg {
    margin: 30px 30px 0;
    padding: 0 !important
}

.parkscrmimage {
    width: 300px;
    margin-top: -27px;
    margin-left: 30px
}

.testibrochure a {
    background-color: #2489c9;
    color: #fff;
    background: linear-gradient(293deg, #2489c9 0, #2489c9 100%)
}

.partnerslider {
    padding-top: 110px
}

.testiiconup {
    margin-top: -30px
}

.mobilepos {
    width: 300px;
    margin-left: -6px
}

.entryticketbg {
    margin: 30px;
    padding: 0 !important
}

.testimonialspagepadding2 {
    background: #fffbf8 !important;
    margin-top: 20px !important;
    padding: 80px 0 0 !important
}

.contactslider {
    top: 40% !important
}

.threebg {
    margin: 30px 30px 0;
    padding: 0 !important
}

.digitalsignagefecbg {
    margin: 30px 30px 10px;
    padding: 0 !important
}

.fecsignageimg {
    margin-bottom: 0;
    margin-top: -56px;
    width: 312px
}

.feconlinebooking {
    margin-top: -79px;
    width: 421px;
    margin-left: -50px
}

.onlinebookingbg {
    padding: 0 !important;
    margin: 30px 30px -20px !important
}

.achieve3 {
    margin-top: -18px;
    float: left;
    width: 361px
}

.redemptionimg {
    margin-top: 77px;
    text-align: right;
    position: relative;
    z-index: 1;
    margin-left: auto;
    width: 700px;
    margin-left: -101px
}

.redemptionbg {
    margin: 30px;
    padding: 0 !important
}

.smartfunimg {
    width: 588px;
    margin-left: -120px;
    margin-top: -50px
}

.smartfunbg {
    margin-top: 30px;
    padding: 0 !important
}

#waiversecondcol {
    padding-left: 45px
}

.waiverimg {
    margin-top: 100px;
    text-align: right;
    position: relative;
    z-index: 1;
    margin-left: auto;
    width: 689px;
    margin-left: -101px
}

.annualpassimg {
    width: 353px;
    margin-top: -115px
}

.annualpassbg {
    margin-top: 30px;
    padding: 0 !important;
    margin-bottom: -50px
}

.cashlessimage {
    width: 347px;
    margin-top: 16px
}

.cashlessbg {
    margin-top: 30px;
    padding: 0 0 20px !important
}

.entryticketimage {
    width: 316px;
    margin-top: -27px;
    margin-left: 0
}

.fnbimage {
    width: 377px;
    margin-top: -109px;
    margin-left: -21px
}

.fnbbg {
    margin: 30px 30px -45px;
    padding: 0 !important
}

.parkonlineimage {
    margin-top: -40px;
    width: 421px;
    margin-left: -39px
}

.onlineparkbg {
    margin-top: 30px;
    padding: 0 !important
}

.retailimage {
    margin-top: -96px;
    width: 350px;
    margin-left: -13px
}

.retailbg {
    margin-top: 30px;
    padding: 0 !important
}

.kioskparkimage {
    width: 300px;
    margin-top: -27px;
    margin-left: -30px
}

.staffimage {
    width: 385px;
    margin-top: -97px;
    margin-left: -18px
}

.staffbg {
    margin-bottom: -48px;
    margin-top: 30px;
    padding: 0 !important
}

.crmfoodbg {
    margin-top: 30px;
    margin-bottom: -10px;
    padding: 0 !important
}

.kitchendeliverysol {
    background: #fffbf8;
    padding: 40px 50px !important;
    margin-top: 0;
    margin-bottom: 30px
}

.careerfeatureheading {
    font-size: 19px;
    color: #1e1e1e;
    padding-top: 10px
}

.careerurl {
    padding-left: 15px !important
}

.careerpoints {
    list-style-type: square;
    text-align: justify;
    margin-bottom: 10px;
    color: #4a4a4a;
    font-weight: 500;
    font-family: 'Roboto', sans-serif !important;
    font-size: 14px;
    line-height: 24px;
    padding: 5px 0 0
}

.careerpara {
    padding-top: 10px
}

.careersrow {
    padding-top: 0 !important;
    margin-top: -17px;
    background: #fff !important
}

.downloadd a {
    background-color: #2489c9;
    color: #fff;
    background: linear-gradient(293deg, #2489c9 0, #2489c9 100%)
}

.kioskfec {
    width: 300px;
    margin-top: 0
}

.nav-tabs>li.active>a {
    background: #d0dbe1 !important;
    color: #1e1e1e !important
}

.inventoryrecipeimage {
    width: 400px;
    margin-top: -23px;
    margin-left: -37px
}

.inventorybg {
    margin: 30px 30px 0;
    padding: 0 !important
}

.policylists li {
    font-size: 14px;
    color: #000;
    line-height: 28px;
    margin: 0;
    font-weight: 500;
    font-family: 'Roboto', sans-serif !important
}

.section-heading h1 em {
    color: #b1392f;
    font-style: normal;
    text-transform: none
}

.section-heading h1 {
    z-index: 2;
    text-transform: none;
    font-size: 23px;
    font-weight: 700;
    color: #1e1e1e;
    margin-top: 38px;
    margin-bottom: 10px
}

.aboutkeywordpara {
    padding-top: 60px
}

.bannerbutton {
    border: 1px solid #2489c9;
    color: #fff;
    background: linear-gradient(293deg, #2489c9 0, #2489c9 100%);
    border-radius: 40px;
    font-size: 14px;
    padding: 5px 30px;
    text-shadow: none !important;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 500
}

.bannerbutton:hover {
    color: #1a1a1a
}

.industrysecondrow {
    margin-top: 30px
}

.blogcontent {
    padding: 30px 30px 15px;
    background-color: #fff;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px
}

.blogcontent h4 {
    line-height: 26px;
    font-family: 'Roboto', sans-serif !important;
    color: #4a4a4a !important;
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: 16px
}

.blog-item {
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    box-shadow: 0 6px 57px rgba(191, 66, 30, .08)
}

.blog-img {
    border-top-right-radius: 15px;
    border-top-left-radius: 15px
}

.worldviewheading {
    margin-bottom: 37px !important
}

.section-heading2 h2 {
    position: relative;
    z-index: 2;
    font-size: 23px;
    color: #1e1e1e;
    font-weight: 400 !important;
    font-family: 'Roboto', sans-serif !important
}

.policypara {
    text-align: justify
}

.projects-page {
    background: #fffbf8
}

#clientfooter {
    padding: 30px 0 0 !important;
    margin-top: 0;
    background: #fff !important
}

.careerpage {
    background: #fffbf8 !important;
    margin-top: 0;
    margin-bottom: 0;
    padding: 30px 0 0 !important
}

.about-img-boxcrm {
    margin-top: -50px;
    width: 300px;
    text-align: right;
    position: relative;
    z-index: 1;
    margin-left: 6px
}

.parkscrmbg {
    margin: 30px 30px 10px;
    padding: 0 !important
}

.accordianaboutstyle {
    background-color: #fff;
    cursor: pointer;
    padding: 10px;
    width: 74%;
    margin-top: 14px;
    text-align: center;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 500;
    border: 1px solid #fd7663;
    color: #fd7663;
    border-radius: 40px
}

.teambgg {
    margin-top: 40px;
    background: #fffbf8;
    padding-top: 20px
}

.about-me2 {
    background: #fffbf8 !important;
    margin-top: 0;
    margin-bottom: 0;
    padding: 28px 0 0 !important
}

.attractions {
    padding-top: 12px !important;
    padding-bottom: 10px
}

.about-img-box img {
    border-radius: 40px;
    width: 443px
}

.memberitemalpha {
    border-radius: 15px;
    box-shadow: 0 0 7px rgba(0, 0, 0, .1);
    padding: 15px 36px 80px
}

.memberitemcard {
    border-radius: 15px;
    box-shadow: 0 0 7px rgba(0, 0, 0, .1);
    padding: 15px 36px 75px
}

.memberitemlaser {
    border-radius: 15px;
    box-shadow: 0 0 7px rgba(0, 0, 0, .1);
    padding: 15px 36px 129px
}

.memberitemmg {
    border-radius: 15px;
    box-shadow: 0 0 7px rgba(0, 0, 0, .1);
    padding: 15px 36px 69px
}

.memberitemone {
    border-radius: 15px;
    box-shadow: 0 0 7px rgba(0, 0, 0, .1);
    padding: 15px 36px 130px
}

.memberitemspeed {
    border-radius: 15px;
    box-shadow: 0 0 7px rgba(0, 0, 0, .1);
    padding: 15px 36px 130px
}

.partnersub a {
    color: #2489c9;
    font-family: 'Roboto', sans-serif !important
}

.posfecimage {
    margin-top: 54px;
    margin-left: -14px
}

.sixpointersmargin {
    margin-left: -34px
}

.crmfbimage {
    width: 300px;
    margin-top: -27px;
    margin-left: 11px !important
}

@media(max-width:768px) {
    .clientstab li {
        float: unset !important;
        margin-bottom: -1px;
        padding: 3px !important
    }
}

.clientssubhead {
    font-size: 12px;
    margin-top: 14px !important;
    margin-bottom: 5px !important
}

.listpointscsr {
    list-style-type: square;
    margin-bottom: 0;
    color: #000;
    font-weight: 500;
    font-family: 'Roboto', sans-serif !important;
    font-size: 14px;
    line-height: 24px;
    padding: 5px;
    width: 100%;
    height: 100%;
    transition: width 2s;
    transition-timing-function: ease
}

.objectivepara {
    text-align: justify;
    padding-top: 10px
}

.objectivemainpara {
    text-align: justify
}

.objectiveheading {
    font-family: 'Roboto', sans-serif !important;
    font-size: 16px
}

.objectivemainheading {
    font-size: 23px;
    color: #1e1e1e;
    font-weight: 400 !important;
    font-family: 'Roboto', sans-serif !important
}

table,
th,
td {
    border: 1px solid #000;
    border-collapse: collapse
}

th,
td {
    padding: 15px
}

.listpointscommitee {
    margin-bottom: 0;
    color: #000;
    font-weight: 500;
    font-family: 'Roboto', sans-serif !important;
    font-size: 14px;
    line-height: 24px;
    padding: 5px;
    width: 100%;
    height: 100%;
    transition: width 2s;
    transition-timing-function: ease
}

.csr {
    padding-top: 0 !important;
    margin-top: 25px;
    background-color: #fffbf8
}

.csrsection {
    margin-bottom: 20px !important
}

.individualclientimg {
    width: 164px !important
}

.memberpara1 {
    text-align: left;
    padding-top: 10px
}

.clientbutton a {
    background: linear-gradient(293deg, #2489c9 0, #2489c9 100%);
    color: #fff
}

.newwidthfec {
    padding: 5px 10px 20px !important
}

.newwidthfec1 {
    padding: 5px 10px 0 !important
}

.extra a {
    background: linear-gradient(293deg, #2489c9 0, #2489c9 100%);
    color: #fff
}

.footerli {
    display: inline-block;
    margin: 5px
}

@media(max-width:768px) {
    .main-light-demo .site-header.fixed-header .is-fixed-header-logo img {
        max-width: 137px !important
    }
}

@media(max-width:768px) {
    .site-header.fixed-header.is-fixed .is-fixed-header-logo img {
        max-width: 137px !important
    }
}

.aboutparas {
    line-height: 32px;
    text-align: center
}

.dd {
    font-weight: 500;
    color: #2489c9
}

.robertpadding {
    padding: 15px 36px 46px
}

.minimal-dark-demo section.recent-projects .masonry-item .thumb .hover-effect .hover-content h4 {
    color: #2489c9 !important
}

.downn a {
    color: #e92627
}

.footercontact1 a {
    color: #e92627 !important
}

.footercontact2 a {
    color: #e92627 !important
}

.footercontact3 a {
    color: #e92627 !important
}

.footerli .fa {
    color: #1f1f1f !important
}

section.features .rfidchoose h4 {
    margin-top: 177px !important
}

.newwidthrfid {
    width: 332px !important;
    height: 20px !important
}

.newwidthrfid1 {
    height: 20px !important;
    width: 293px !important
}

.posclients {
    padding-top: 40px
}

.poshead {
    line-height: 32px
}

.clientname {
    color: #000;
    font-size: 14px;
    padding-top: 20px
}

.individualclientimg1 {
    width: 136px !important;
    margin-top: -10px !important
}

.newwidthrfid2 {
    height: 20px !important;
    width: 350px !important;
    margin-left: -16px
}

.newwidthrfid3 {
    height: 20px !important;
    width: 294px !important
}

.aboutbutton a {
    background: linear-gradient(293deg, #2489c9 0, #2489c9 100%);
    color: #fff !important
}

.aboutparas1 {
    margin-bottom: 5px !important;
    line-height: 32px;
    text-align: justify
}

.aboutbg {
    padding: 60px 28px 50px !important;
    background: #fffbf8 !important
}

.partnerslidertitle {
    text-align: center;
    font-weight: 600;
    color:#2a2525;
    margin-top: 35px;
    margin-bottom: 35px;
}

.trampdesktop {
    margin: 30px 0 0;
    padding: 100px 0 6px !important
}

.trampcol {
    padding-top: 80px;
    padding-left: 40px
}

.tramphead {
    font-size: 30px;
    line-height: 40px;
    font-weight: 500;
    color: #1e1e1e !important;
    font-family: 'Roboto', sans-serif !important
}

.tramppara {
    font-size: 18px;
    line-height: 34px;
    font-family: 'Roboto', sans-serif !important
}

.trampimg {
    width: 423px;
    margin-top: 14px;
    margin-left: 57px
}

.tramp-buttondesktop {
    border: 1px solid #0981c7 !important;
    color: #fff !important;
    padding: 8px 20px;
    font-size: 14px;
    margin-top: 20px;
    background: #0981c7 !important;
    border-radius: 40px !important
}

.trampbgmobile {
    box-shadow: rgba(254, 247, 248, .58) 0 0 0 1000px inset;
    margin: 30px 0 0;
    padding: 107px 8px 7px 9px !important
}

.trampheadmobile {
    font-family: 'Roboto', sans-serif !important;
    font-size: 12px;
    line-height: 17px;
    color: #1e1e1e !important
}

.trampparamobile {
    font-size: 10px !important;
    line-height: 16px;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 400
}

.trampimgmobile {
    width: 189px;
    margin-top: 3px;
    margin-left: -51px
}

.tramp-buttonmobile {
    border: 1px solid #0981c7 !important;
    color: #fff !important;
    padding: 5px 13px 6px;
    font-size: 9px;
    background: #0981c7 !important;
    border-radius: 40px !important
}

@media(max-width:768px) {
    .trampdesktop {
        display: none
    }
}

.trampbgmobile {
    display: none
}

@media(max-width:768px) {
    .trampbgmobile {
        display: table !important
    }
}

@media(max-width:768px) {
    .site-header.fixed-header .fixed-header-logo img {
        max-width: 137px
    }
}

@media(max-width:768px) {
    footer .about-us img {
        max-width: 150px
    }
}

.kioskform1 {
    font-size: 22px !important;
    line-height: 36px
}

.fecfaq1 {
    font-size: 20px !important;
    line-height: 36px
}

.kioskimg3 {
    width: 325px;
    float: right;
    padding-left: 111px
}

.kioskimg3 img {
    margin-left: -117px
}

.kioskimg2 img {
    width: 266px;
    padding-top: 0
}

.kioskimg1 {
    float: right;
    padding-top: 0px;
    width: 202px;
    margin-right: 42px;
}

@media(max-width:768px) {
    .listpoints1 {
        font-size: 14px
    }
}

.kioskabout {
    padding: 60px 28px 0 !important;
    background: #fff !important
}

@media(max-width:768px) {
    .kioskimg1 {
        float: right;
        padding-top: 0;
        width: 100% !important;
        padding-bottom: 50px
    }
}

@media(max-width:768px) {
    .kioskimg3 {
        width: 286px;
        padding-left: 148px;
        padding-bottom: 40px
    }
}

@media(max-width:768px) {
    .kioskimg2 img {
        width: 180px;
        margin: 0 auto;
        display: table
    }
}

.contactsectionpaddingamerica {
    padding: 10px 0 33px 20px !important;
    background: #0981c7;
    border: 2px solid #f7f7f7;
    border-radius: 10px;
    -webkit-transition: all .5s;
    transition: all .5s;
    margin-bottom: 10px
}

.contactsectionpaddingindia {
    padding: 10px 0 58px 20px !important;
    background: #0981c7;
    border: 2px solid #f7f7f7;
    border-radius: 10px;
    -webkit-transition: all .5s;
    transition: all .5s;
    margin-bottom: 10px
}

.homebgmobile {
    display: none
}

@media(max-width:768px) {
    .homebgmobile {
        display: table
    }
}

.homedesktop {
    margin: 30px 0 0;
    padding: 77px 0 6px !important
}

.homecol {
    padding-top: 70px;
    padding-left: 30px !important
}

.homehead {
    font-family: 'Roboto', sans-serif !important;
    font-size: 30px;
    line-height: 40px;
    font-weight: 500;
    color: #1e1e1e !important
}

.homepara1 {
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif
}

.homepara {
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif
}

.homeheadmobile {
    font-family: 'Roboto', sans-serif !important;
    font-size: 12px;
    line-height: 17px;
    color: #1e1e1e !important
}

.homeparamobile {
    font-size: 10px !important;
    line-height: 16px;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 400
}

.homebgmobile {
    box-shadow: rgb(254 247 248/58%) 0 0 0 1000px inset;
    margin: 30px 0 0;
    padding: 107px 8px 7px 9px !important
}

.homeimgmobile {
    width: 162px;
    margin-top: 0;
    margin-left: -53px
}

@media(max-width:768px) {
    .homedesktop {
        display: none
    }
}

.homeimg {
    width: 444px;
    margin-top: 20px;
    margin-left: 84px
}

.home-buttonmobile {
    border: 1px solid #0981c7 !important;
    color: #fff !important;
    padding: 5px 13px 6px;
    font-size: 9px;
    background: #0981c7 !important;
    border-radius: 40px !important
}

.insidesolheading2 {
    padding-bottom: 15px;
    color: #fff !important;
    font-size: 32px !important;
    font-weight: 700
}

@media(max-width:768px) {
    .insidesolheading2 {
        font-size: 13px !important;
        font-weight: 700;
        padding-top: 20px !important
    }
}

.debitbgmobile img {
    width: 154px;
    margin-top: 8px;
    margin-left: -43px
}

@media(max-width:768px) {
    .debitbgmobile {
        display: table !important
    }
}

.debitbgmobile {
    display: none
}

.debitbgmobile {
    box-shadow: rgba(254, 247, 248, .58) 0 0 0 1000px inset;
    margin: 30px 0 0;
    padding: 107px 8px 16px 9px !important
}

.kioskheadmobile {
    font-family: 'Roboto', sans-serif !important;
    font-size: 14px;
    line-height: 20px;
    color: #1e1e1e !important
}

.kioskparamobile {
    font-size: 10px !important;
    line-height: 16px;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 400
}

.kioskonimgmobile {
    width: 154px;
    margin-top: 12px;
    margin-left: -49px
}

.industrysolutions {
    background: #fffbf8;
    padding: 40px 20px !important;
    margin: 0
}

.industrybg1 {
    margin: 0;
    padding: 0 !important
}

.industrysidebar {
    padding: 40px 21px 0 0 !important
}

.industrysidebar .sidebar-widget {
    padding: 30px 10px 15px !important
}

.blogindustryimg {
    padding-top: 20px
}

.industrytestimonials {
    margin-top: 0 !important;
    padding-bottom: 20px
}

.familyindustryhomeimg {
    width: 500px;
    margin-top: 20px;
    margin-left: 40px
}

.famindustrycol {
    padding-top: 100px
}

.industrylist {
    padding-left: 20px;
    font-size: 17px !important;
    color: #1f1f1f !important
}

.industrylist li {
    list-style-type: disc
}

.industrylistmobile {
    list-style-type: disc
}

.industrylistmobile {
    font-size: 10px !important;
    color: #1f1f1f !important;
    font-weight: 400 !important;
    font-family: 'Roboto', sans-serif !important
}

.industrybold {
    font-family: 'Roboto', sans-serif !important;
    font-weight: 500 !important
}

.homeparamobile1 {
    font-size: 10px;
    line-height: 14px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif
}

.testimonialauthor {
    font-weight: 600;
    color: #e92627 !important
}

.aquariumpadding {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
    box-shadow: 0 6px 40px rgba(191, 66, 30, .09);
    padding-top: 15px !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important
}

.aquariumclientheading {
    color: #1f1f1f;
    font-family: 'Roboto', sans-serif !important;
    font-size: 25px;
    text-align: center;
    padding-bottom: 20px;
    padding-top: 11px
}

.aquariuminsidepadding {
    background: #fff !important;
    padding: 18px 40px 30px 14px !important
}

.smartfunrow {
    padding-top: 18px
}

.smartfunrow1 {
    padding-bottom: 18px
}

.downloadname {
    font-size: 23px;
    line-height: 34px;
    padding-top: 100px
}

@media(max-width:768px) {
    .downloadname {
        font-size: 15px;
        line-height: 24px;
        padding-top: 50px
    }
}

.partybookingclients {
    padding-top: 20px
}

.partybookingimgmobile {
    width: 182px;
    margin-top: 3px;
    margin-left: -18px
}

.parafaitfeatures {
    line-height: 30px
}

.radianimg {
    border-radius: 40px;
    width: 415px;
    margin-top: -59px;
    float: unset
}

.radianbg {
    margin: 30px 30px 0;
    padding: 0 !important
}

.tramplpimg {
    width: 459px;
    margin-top: -43px;
    margin-left: 57px
}

.trampimglpmobile {
    width: 198px;
    margin-top: -24px;
    margin-left: -28px
}

.rfidnewimg {
    width: 460px;
    margin-top: 20px;
    margin-left: 40px
}

.newsolutioncontactpadding {
    padding-top: 30px !important;
    padding-bottom: 10px !important;
    margin-top: 0;
    margin-bottom: 30px;
    background: #fffbf8 !important
}

.cashlessimgpos {
    float: left;
    padding-top: 30px;
    width: 415px
}

.fnbimg img {
    width: 400px;
    padding-top: 0
}

.retailimg {
    width: 500px;
    float: right;
    padding-left: 80px
}

.slotbookimg {
    width: 423px;
    margin-top: 20px;
    margin-left: 60px
}

.lockers img {
    width: 450px;
    padding-top: 0
}

.inventoryone {
    float: left;
    padding-top: 30px;
    width: 600px
}

.inventorytwo {
    float: right;
    padding-top: 0;
    width: 600px
}

.analyticsimg {
    width: 400px;
    padding-top: 20px
}

.mixlogoimg {
    max-width: 500px !important
}

.salesimg {
    float: left;
    padding-top: 30px;
    width: 225px
}

.cashflowimg {
    width: 200px;
    float: left;
    padding-top: 30px
}

.inventoryimg {
    float: right;
    padding-top: 30px;
    width: 200px
}

.inventorycol {
    padding-top: 20px
}

.productmanagementimg {
    float: right;
    padding-top: 30px;
    width: 190px
}

.parafaitimg {
    float: right;
    padding-top: 30px;
    width: 375px
}

.crmimg {
    float: left;
    padding-top: 80px;
    width: 215px
}

.waiverimage {
    width: 600px;
    margin-left: unset !important;
    padding-top: 0
}

.waiverbg {
    margin: 30px 0 -54px 30px;
    padding: 0 !important
}

.swinggateimage {
    width: 320px
}

.readerimage {
    width: 450px
}

.handheldimage {
    width: 480px
}

.flapbarrierimage {
    width: 350px
}

.handheldbg {
    margin: 30px 30px 10px;
    padding: 0 !important
}

.tripodimg {
    float: right;
    padding-top: 30px;
    width: 340px
}

@media(max-width:768px) {
    .aboutmovedown {
        list-style: none;
        margin: 0;
        padding: 90px 30px 5px !important
    }
}

@media(max-width:768px) {
    .bringdown {
        padding: 480px 30px 5px !important
    }
}

.posimage {
    float: left;
    padding-top: 30px;
    width: 415px
}

.kioskonimg {
    width: 423px;
    margin-top: 14px;
    margin-left: 57px
}

.funbgindustry {
    margin-top: 0 !important;
    background-repeat: no-repeat;
    background-position: center center;
    margin-top: 0;
    padding: 40px 0 30px;
    text-align: center
}

a:hover {
    text-decoration: unset !important
}

.solreading {
    background: #337ab7;
    padding: 10px;
    color: #fff;
    border-radius: 22px
}

.readerimg {
    width: 300px
}

.wirelessimg3expo {
    width: 300px;
    float: right;
    padding-top: 7px
}

.wirelessimg1expo {
    width: 400px;
    float: right;
    padding-top: 0
}

.wirelessimg2expo {
    width: 300px;
    padding-top: 0;
    float: left
}

.wirelessimg5expo {
    width: 248px;
    float: left;
    padding-top: 0
}

.wirelessimg4expo {
    width: 300px;
    padding-top: 0;
    margin-top: -45px;
    float: right
}

.wirelessimg6expo {
    width: 310px;
    float: left;
    padding-top: 0;
    margin-top: -85px
}

.familybg1 {
    margin: 30px 30px 0;
    padding: 0 !important
}

.more-information1 {
    padding-top: 0 !important;
    padding-bottom: 60px !important;
    margin-top: 0;
    background: #fffbf8 !important
}

.downloadname1 {
    font-size: 23px;
    line-height: 34px;
    padding-top: 40px
}

.about-me22 {
    margin-top: 0;
    margin-bottom: 0;
    padding: 28px 0 0 !important;
    margin-bottom: 0 !important
}

.aboutsection2 {
    margin-bottom: 0
}

.teamtitles1 {
    padding-top: 30px;
    margin-bottom: 20px
}

.homeaboutpara11 {
    text-align: justify;
    margin-bottom: 4px !important
}

.date {
    color: #337ab7;
    font-weight: 700;
    font-size: 16px
}

@media(max-width:768px) {
    .wirelessimg1expo {
        width: 324px
    }
}

@media(max-width:768px) {
    .wirelessimg2expo {
        width: 283px;
        padding-top: 20px;
        float: left
    }
}

@media(max-width:768px) {
    .wirelessimg3expo {
        width: 290px;
        float: right;
        padding-top: 7px;
        padding-bottom: 30px
    }
}

@media(max-width:768px) {
    .wirelessimg5expo {
        width: 233px;
        float: left;
        padding-top: 20px
    }
}

@media(max-width:768px) {
    .wirelessimg4expo {
        width: 250px;
        padding-top: 0;
        margin-top: -65px
    }
}

@media(max-width:768px) {
    .wirelessimg6expo {
        width: 240px;
        float: unset;
        padding-top: 0;
        margin-top: 12px
    }
}

@media(max-width:768px) {
    .ctadown {
        font-size: 17px !important
    }
}

.firstheadd {
    font-size: 28px;
    color: #337ab7
}

.secondhead {
    font-size: 28px;
    color: #e92627
}

.thirdhead {
    font-size: 28px;
    color: #f5cf13
}

.readerimg1 {
    width: 208px
}

.wirelessimg5expo2 {
    width: 215px;
    margin: 0 auto;
    display: table
}

.readerimg1expo {
    width: 250px;
    margin: 0 auto;
    display: table
}

.vissionpaddingexpo {
    background: #fffbf8 !important;
    padding: 10px 38px 20px 14px !important
}

.vissionpaddinglocker {
    background: #fffbf8 !important;
    padding: 10px 38px 20px 3px !important;
}

.lockerexpo {
    width: 315px;
    margin: 0 auto;
    display: table;
    padding-bottom: 10px
}

.radianexpo {
    width: 350px;
    margin: 0 auto;
    display: table
}

.radianpadding {
    background: #fffbf8 !important;
    padding: 20px 38px 20px 14px !important
}

.readerimg1expo {
    width: 222px;
    margin: 0 auto;
    display: table
}

.wirelessimg5expolumin {
    width: 230px;
    padding-top: 0;
    margin: 0 auto;
    display: table
}

.more-informationpaddingexpo {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
    padding-top: 20px !important;
    padding-bottom: 24px !important;
    margin-top: 0 !important
}

.time {
    font-size: 30px !important
}

@media(max-width:768px) {
    .expohomebutton {
        font-size: 11px
    }
}

@media(max-width:768px) {
    .lockerexpo {
        width: 305px
    }
}

.downloadnameexpo {
    font-size: 25px;
    line-height: 34px;
    padding-top: 40px;
    text-align: center;
    color: #000;
    font-weight: 600
}

.more-information2 {
    background: linear-gradient(293deg, #f5cf13 0, #f5cf13 102%) !important;
    padding-top: 0 !important;
    padding-bottom: 50px !important;
    margin-top: 0
}

.teampaddding {
    padding: 0 50px !important
}

@media(max-width:768px) {
    .teampaddding {
        padding: 0 12px !important;
        text-align: justify
    }
}

#lastfooter1 {
    padding: 34px 0 0 0 !important;
    margin-top: 0;
    background: #fff !important
}

#thankfooter {
    background: #fff
}

.thanksheading {
    font-size: 28px
}

.thankspara {
    font-size: 18px
}

.more-informationexpo {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
    margin-top: 0;
    background: #fffbf8 !important
}

.teambold {
    color: #337ab7;
    font-weight: 700;
    font-size: 16px
}

.vissionpaddingproducts {
    background: #fffbf8 !important;
    padding: 18px 38px 30px 14px !important
}

@media(max-width:768px) {
    .missionheadingexpo {
        font-size: 14px !important;
        line-height: 26px
    }
}

.missionheadingexpo {
    color: #1f1f1f;
    font-family: 'Roboto', sans-serif !important;
    font-size: 16px;
    text-align: center
}

.vissionpaddingexpoluminos {
    background: #fffbf8 !important;
    padding: 10px 38px 33px 14px !important
}

@media(max-width:768px) {
    .bringdown2 {
        padding: 230px 30px 5px !important
    }
}

.fa-angle-right {
    font-weight: 600;
    font-size: 20px;
    color: #2489c9;
    padding-left: 5px
}

@media(max-width:768px) {
    .fa-angle-up {
        font-weight: 600;
        font-size: 18px;
        color: #fff;
        padding-top: 0
    }
}

.fecusa {
    padding-top: 30px;
    padding-bottom: 25px
}

.homeusaimgmobile {
    width: 162px;
    margin-top: 0;
    margin-left: -42px
}

.ukclientheading {
    padding: 20px
}

@media(max-width:768px) {
    .lasttt {
        margin-bottom: -115px
    }
}

.radianimg {
    width: 350px;
    margin-top: 20px;
    margin-left: 40px
}

.newwidthiconsradian {
    width: 43px !important;
    height: 20px !important
}

.annualnewwidthicons {
    width: 50px !important;
    height: 30px !important
}

.annulpassimg {
    width: 389px;
    margin-top: 5px;
    margin-left: 60px
}

.xcess {
    width: 250px;
    margin: 0 auto;
    display: table;
    padding-bottom: 0
}

.teamtop {
    margin-top: 20px
}

.homelistadditional {
    list-style: square
}

.homelistadditional li {
    font-size: 14px;
    color: #000;
    line-height: 28px;
    margin: 0;
    font-weight: 400;
    font-family: 'Roboto', sans-serif
}

.homeaboutpara1 {
    margin-bottom: 0 !important;
    text-align: justify;
    font-size: 14px;
    color: #000;
    line-height: 28px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif
}

.faqhomebutton {
    margin: 0 auto;
    display: table;
    margin-top: 20px
}

.faqpage {
    background: #fff !important;
    padding-top: 110px !important;
    margin-top: 25px
}

.familysolutionshome {
    background: #fff;
    padding: 40px 50px !important;
    margin: 0
}

.faqhomepage {
    background: #fffbf8 !important;
    padding-top: 30px !important;
    margin-top: 25px
}

#footer2 {
    margin-top: 65px;
    margin-bottom: -50px;
    padding: 0 !important;
    background-color: #fff !important
}

#footer2 .footer-cta .section-heading h2 {
    color: #1f1f1f;
    line-height: 30px
}

#footer2 .footer-cta .section-heading p {
    font-weight: 400;
    color: #1f1f1f;
    letter-spacing: .25px
}

.arcadecta a {
    font-size: 14px
}

section.features .feature-item h4 {
    font-weight: 500;
    font-size: 14px;
    color: #000
}

.homefaq {
    font-size: 30px;
    font-weight: 500;
    color: #1f1f1f;
    font-style: normal
}

@media(max-width:768px) {
    .homeabout {
        padding-top: 45px !important
    }
}

.industryhead {
    padding-top: 40px
}

.parafaitclienthead {
    margin-bottom: 10px
}

.posclients h2 {
    font-size: 30px;
    font-weight: 500 !important
}

.posclientsparty {
    padding-top: 20px
}

.posclientsparty h2 {
    font-size: 30px;
    font-weight: 500 !important
}

.parafaitindustryclient {
    margin-bottom: 40px !important;
    padding-top: 30px
}

.parafaitindustrycta {
    line-height: 38px !important;
    font-size: 26px !important
}

.posclients2 {
    padding-top: 20px
}

.posclients2 h2 {
    font-size: 30px;
    font-weight: 500 !important
}

.newwidthindustry {
    padding: 10px 10px 20px 10px !important
}

.waiverfaq {
    font-size: 20px !important;
    line-height: 36px
}

.waiverform1 {
    font-size: 20px !important;
    line-height: 36px
}

.newsolutionradiantpadding {
    padding-top: 0 !important;
    padding-bottom: 10px !important;
    margin-top: 0;
    margin-bottom: 30px;
    background: #fff !important
}

.parafaitindustryclient h3 {
    top: 25px
}

.more-informationpaddingexpo1 {
    background-position: center center !important;
    background: #fff !important;
    padding-top: 20px !important;
    padding-bottom: 24px !important;
    margin-top: 0 !important
}

.uk {
    margin-left: 14px
}

footer .subscribe-newsletters p {
    color: #000;
    font-weight: 400;
    padding: 0 5px 0 5px;
    letter-spacing: .25px;
    margin: 0 0 4px
}

.ornaldoteam img {
    margin: 0 auto;
    display: table;
    width: 200px
}

.vissionpaddingkomplete {
    background: #fffbf8 !important;
    padding: 10px 38px 5px 14px !important
}

.vissionpaddingkomplete1 {
    background: #fffbf8 !important;
    padding: 10px 38px 33px 14px !important
}

.downloadnameexpoorlando {
    font-size: 25px;
    line-height: 34px;
    padding-top: 40px;
    text-align: center;
    color: #000;
    font-weight: 600
}

@media(max-width:768px) {
    .downloadnameexpoorlando {
        font-size: 19px;
        line-height: 32px
    }
}

@media(max-width:768px) {
    .featuressecond {
        padding-top: 30px;
        padding-bottom: 0
    }
}

.wirelessimg5expo22 {
    width: 215px;
    margin: 0 auto;
    display: table;
    padding-bottom: 20px
}

.missionpadding2 {
    padding: 20px 38px 78px 14px !important;
    background: #fffbf8 !important
}

.missionpadding3 {
    padding: 20px 38px 38px 14px !important;
    background: #fffbf8 !important
}

.vissionpaddinglocker2 {
    background: #fffbf8 !important;
    padding: 20px 38px 42px 14px !important
}

.memberitemwarehouse {
    border-radius: 15px;
    box-shadow: 0 0 7px rgb(0 0 0 / 10%);
    padding: 15px 36px 132px
}

.memberitemprologic {
    border-radius: 15px;
    box-shadow: 0 0 7px rgb(0 0 0 / 10%);
    padding: 15px 36px 50px
}

.kioskimg5 {
    width: 170px
}

.xterpad {
    background: #fffbf8 !important;
    padding: 10px 38px 47px 14px !important
}

.xesspad {
    background: #fffbf8 !important;
    padding: 10px 38px 47px 14px !important
}

.digitalpad {
    background: #fffbf8 !important;
    padding: 10px 38px 50px 14px !important
}

.topexpologo {
    max-width: 200px !important;
}

.lockerexpo3 {
    width: 250px;
    margin-left: 33px !important;
    margin: 0 auto;
    display: table;
    padding-bottom: 10px;
}

.paddingradian {
    padding: 10px 38px 5px 14px !important;
    background: #fffbf8 !important;
}

.wristimg {
    width: 270px;
    margin: 0 auto;
    display: table;
    padding-bottom: 0;
}

.komplete {
    background: #fffbf8 !important;
    padding: 10px 38px 25px 14px !important;
}

.teamsecondrow {
    padding-top: 30px;
}

.amusementimg {
    padding-top: 75px !important;
    height: unset !important;
}

@media(max-width:768px) {
    .amusementimg {
        padding-top: 0px !important;
    }
}

@media(max-width:768px) {
    .amusementmobilebanner {
        padding-top: 110px;
    }
}

.amuselogo {
    width: 200px !important;
}

.button-smalliaapi {
    padding: 6px 40px;
    font-size: 13px;
    margin-top: -30px;
    margin-left: 0px;
}

.paddingradian2 {
    padding: 10px 38px 60px 14px !important;
    background: #fffbf8 !important;
}

.klaimprize {
    width: 200px;
    margin: 0 auto;
    display: table;
    padding-bottom: 0;
}

.newwidth22 {
    border: none;
    padding: 55px 10px 40px !important;
    border: none !important;
}

.newwidth22:hover {
    box-shadow: none !important;
}

.newwidth22 h4 {
    text-align: center;
    line-height: 20px;
}

@media(max-width:768px) {
    .newwidth22 h4 {
        text-transform: unset !important;
        padding: 20px 40px 50px 20px;
    }
}

@media(max-width:768px) {
    .newwidth22 {
        padding: 100px 10px 40px !important;
    }
}

.familysolutionskiosk {
    background: none;
    padding: 40px 50px 0px 50px !important;
    margin: 0;
}

.kioskbenefitrow {
    margin: 0 auto;
    display: table;
}

.kioskpara {
    margin-bottom: -20px;
    text-align: center;
}

/*iaapa asia lp*/
.xcessreaderasia {
    background: #fffbf8 !important;
    padding: 10px 38px 11px 14px !important;
}

.kompleteasia {
    background: #fffbf8 !important;
    padding: 10px 38px 23px 14px !important;
}

.beamasia {
    width: 250px;
    margin: 0 auto;
    display: table;
    padding-bottom: 0;
    margin-bottom: -23px;
}

.xterasia {
    width: 215px;
    margin: 0 auto;
    display: table;
    padding-bottom: 12px;
}

.waiverasia {
    background: #fffbf8 !important;
    padding: 10px 38px 82px 14px !important;
}

.klassicbowlexpo {
    width: 230px;
    margin: 0 auto;
    display: table;
    padding-bottom: 10px;
}

.klassicbowlexpopad {
    background: #fffbf8 !important;
    padding: 10px 38px 0px 14px !important;
}

.klaimprizebowlexpo {
    width: 305px;
    margin: 0 auto;
    display: table;
    padding-bottom: 10px;
}

.waiverasiabowl {
    background: #fffbf8 !important;
    padding: 10px 38px 60px 14px !important;
}

.vissionpaddingexpoluminos2 {
    background: #fffbf8 !important;
    padding: 10px 38px 6px 14px !important;
}

.kompleteasia2 {
    background: #fffbf8 !important;
    padding: 10px 38px 84px 14px !important;
}

.missionpadding2 {
    background: #fffbf8 !important;
    padding: 20px 38px 109px 14px !important;
}

.vissionpaddinglocker3 {
    background: #fffbf8 !important;
    padding: 10px 38px 109px 14px !important;
}

.clientbowlbg {
    background: #ffffff !important;
    padding: 10px 38px 6px 14px !important;
}

.kioskimg6 {
    width: 330px;
}

.kioskimg11 {
    float: right;
    padding-top: 0px;
    width: 200px;
    margin-right: 42px;
}

@media (max-width: 768px) {
    .kioskimg11 {
        width: 200px !important;
        padding-bottom: 50px;
    }
}
.contact-banner{
    width:100%; 
    height:250px!important;
}
@media(min-width:768px) {
    .contact-banner {
        height: 150px !important
    }
}
