/*==========================================================================
ANIMATE
===========================================================================*/


/*----- FLASH -----*/

@keyframes flash {
    from,
    10%,
    to {
        opacity: 1
    }
    5%,
    15% {
        opacity: 0
    }
    20% {
        opacity: 1;
    }
}


/*----- SCALE UPDOWN -----*/

@keyframes ovic-animation-scale-updown {
    0% {
        transform: scale(1)
    }
    50% {
        transform: scale(1.05)
    }
    100% {
        transform: scale(1)
    }
}


/* animation jello-horizontal */

@-webkit-keyframes jello-horizontal {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }
    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes jello-horizontal {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }
    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}


/* animation heartbeat */

@-webkit-keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    10% {
        -webkit-transform: scale(0.91);
        transform: scale(0.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    17% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    33% {
        -webkit-transform: scale(0.87);
        transform: scale(0.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

@keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    10% {
        -webkit-transform: scale(0.91);
        transform: scale(0.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    17% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    33% {
        -webkit-transform: scale(0.87);
        transform: scale(0.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}


/* The effect is reversed in the y-axis */

@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotateY(-20deg);
        transform: perspective(400px) rotateY(-20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    60% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg);
        opacity: 1
    }
    80% {
        -webkit-transform: perspective(400px) rotateY(-5deg);
        transform: perspective(400px) rotateY(-5deg)
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}


/*==========================================================================
CSS DEFAULT
===========================================================================*/

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

:after,
 :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.71428571;
    color: #666;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    --main-color: #51616a;
    margin: 0;
}

@media (min-width: 1200px) {
    .header {
        z-index: 5;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
    .header.is-sticky {
        padding: 0;
        border-width: 0 0 1px;
        border-style: solid;
        border-color: #e8e8e8;
        background-color: white;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }
}

a {
    color: inherit;
    text-decoration: none;
    line-height: inherit;
}

a:hover,
a:focus {
    color: var(--main-color);
    text-decoration: none;
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.3;
    color: #000;
    font-weight: 600;
    margin: 0 0 20px;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

img {
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    height: auto;
}

figure {
    margin: 0;
}

.button {
    display: inline-block;
    vertical-align: top;
    font-weight: 600;
    font-size: 16px;
    background-color: var(--main-color);
    color: #fff !important;
    padding: 0 30px;
    border-radius: 30px;
    height: 45px;
    line-height: 45px;
}

.button:hover {
    background-color: #000;
}

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

.flex {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-7 {
    width: 58.333333%;
    padding-left: 15px;
    padding-right: 15px;
}

.col-5 {
    width: 41.666667%;
    padding-left: 15px;
    padding-right: 15px;
}

.col-4 {
    width: 33.333333%;
    padding-left: 15px;
    padding-right: 15px;
}

.col-2 {
    width: 16.666667%;
    padding-left: 15px;
    padding-right: 15px;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.hidden {
    display: none;
}

.social-profile li {
    display: inline-block;
    margin-right: 15px;
}

.social-profile li a {
    font-size: 18px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: var(--main-color);
    color: white;
    text-align: center;
    border-radius: 50%;
    display: block;
}

.social-profile li a:hover {
    background-color: #000;
    color: white;
}

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

.main {
    overflow: hidden;
}

.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width: 768px) {
    .container {
        width: 750px
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px
    }
}

@media (min-width: 1470px) {
    .container {
        width: 1440px;
    }
}


/*==========================================================================
SECTION
===========================================================================*/

section {
    padding: 95px 0 100px;
}

.s-head {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.s-title {
    font-size: 36px;
    margin: 0;
    text-transform: uppercase;
}

.s-subtitle {
    font-size: 16px;
    line-height: 1.5;
    color: #8e8c8c;
    margin: 20px 0 0;
}

.s-nav {
    list-style: none;
    padding: 0;
    margin: 0 -15px 50px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    text-transform: capitalize;
    color: #000;
}

.s-nav li {
    display: inline-block;
    vertical-align: top;
    margin: 0 15px;
}

.s-nav li a {
    display: block;
    padding: 8px 0;
}

.s-nav li.active a {
    color: var(--main-color);
}

.s-inner {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -30px -60px;
}

.s-item {
    padding: 0 30px 60px;
}

.s-item .title {
    display: block;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;
    color: #000;
    margin: 25px 0 -5px;
    text-transform: uppercase;
}

.s-item .title:hover {
    color: var(--main-color);
}

.s-button {
    margin: 60px 0 0;
}

@media (max-width: 1499px) {
    .s-inner {
        margin-left: -20px;
        margin-right: -20px;
    }
    .s-item {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 1199px) {
    section {
        padding: 65px 0 70px;
    }
    .s-head {
        margin-bottom: 40px;
    }
    .s-subtitle {
        margin-top: 15px;
    }
    .s-inner {
        margin: 0 -15px -40px;
    }
    .s-item {
        padding: 0 15px 40px;
    }
    .s-item .title {
        margin-top: 17px;
    }
    .s-button {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    section {
        padding: 45px 0 50px;
    }
    .s-head {
        margin-bottom: 30px;
    }
    .s-title {
        font-size: 30px;
    }
    .s-subtitle {
        font-size: 14px;
        margin-top: 10px;
    }
    .s-inner {
        margin-bottom: -30px;
    }
    .s-item {
        padding-bottom: 30px;
    }
    .s-item .title {
        margin-top: 12px;
    }
}


/*----- SLIDER -----*/

.owl-dots {
    margin: 36px 0 -50px;
}

.owl-dot {
    display: inline-block;
    vertical-align: top;
    width: 33px;
    height: 4px;
    background-color: #000;
    margin: 10px 5px 0;
}

.owl-dot:not(.active):not(:hover) {
    opacity: 0.2;
}

@media (max-width: 1199px) {
    .owl-dots {
        margin-top: 16px;
    }
}

@media (max-width: 767px) {
    .owl-dots {
        margin-top: 10px;
    }
}


/*----- HEADER -----*/

.header {
    padding: 15px 0;
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.logo {
    font-size: 40px;
    line-height: 1;
    font-weight: 600;
}

.logo a {
    display: block;
    color: #000 !important;
}

.logo .text {
    display: inline-block;
    vertical-align: top;
}

.header-inner {
    display: flex;
    align-items: center;
}

.header-menu {
    flex: 1 1 auto;
    width: 1%;
    font-weight: 600;
    list-style: none;
    padding: 10px 30px;
    margin: 0;
    text-align: center;
    font-size: 18px;
}

.header-menu li {
    display: inline-block;
    vertical-align: top;
    margin: 0 20px;
}

.header-menu li a {
    display: block;
    padding: 3px 0;
}

.header-menu li a:not(:hover) {
    color: #000;
}

@media (max-width: 1100px) {
    .header {
        padding: 5px 0;
    }
}

@media (max-width: 991px) {
    .header {
        padding-top: 10px;
    }
    .header-inner {
        display: block;
        text-align: center;
    }
    .header-menu {
        width: auto;
        padding-left: 0;
        padding-right: 0;
        text-align: inherit;
        margin: 0 -20px;
    }
}

@media (max-width: 479px) {
    .header-menu {
        margin: 0 -10px;
    }
    .header-menu li {
        margin: 0 10px;
    }
}


/*----- BANNER -----*/

.banners {
    position: relative;
    padding: 0;
}


/* SLIDE UP */

@keyframes slide-up {
    0% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

.banners .banner-1,
.banners .banner-2 {
    position: absolute;
    top: 0;
    right: -277px;
    width: 1686px;
    animation: slide-up 15s linear infinite;
    pointer-events: none;
}

.banners .banner-2 {
    top: 1591px;
}

.banners .banner {
    position: absolute;
    bottom: 32px;
    left: -47px;
}

.banners .banner-title {
    position: absolute;
    bottom: 65px;
    right: 0;
    left: 0;
    text-align: right;
}

.banners .banner-title .img {
    margin-right: 20px;
}

.banners .banner-title .img:last-child {
    margin-right: 0;
}

.banners .img {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    position: relative;
    z-index: 1;
}

.banners .s-title {
    font-size: 26px;
    line-height: 1.54;
    margin: 0 0 41px;
    position: relative;
    z-index: 1;
}

.banners .button {
    padding: 11px 28px;
    box-shadow: 0 0 13px rgba(84, 102, 112, 0.11);
    position: relative;
    z-index: 1;
}

.banners .button:not(:hover) {
    color: #000 !important;
    background-color: #fff;
}

@media (max-width: 1499px) {
    .banners .banner-1,
    .banners .banner-2 {
        right: -477px;
    }
    .banners .banner {
        left: -147px;
    }
}

@media (max-width: 1199px) {
    .banners .banner-1,
    .banners .banner-2 {
        right: -677px;
    }
}

@media (max-width: 991px) {
    .banners .banner-1,
    .banners .banner-2 {
        right: -877px;
    }
}

@media (max-width: 767px) {
    .banners {
        justify-content: flex-start;
        padding: 70px 0 0;
        height: 550px;
    }
    .banners .img {
        margin-bottom: 21px;
    }
    .banners .s-title {
        margin-bottom: 31px;
    }
    .banners .banner-1,
    .banners .banner-2 {
        right: -1077px;
    }
}

@media (max-width: 479px) {
    .banners .banner-1,
    .banners .banner-2 {
        right: -1277px;
    }
    .banners .s-title {
        font-size: 24px;
    }
}

.background-gray {
    background-color: #f5f5f5;
}


/*----- DEMO -----*/

.demos {
    text-align: center;
}

.demos .s-item {
    width: 25%;
}

.demos .s-item a {
    display: block;
    position: relative;
}

.demos .s-item .thumb {
    display: block;
    position: relative;
    /*overflow: hidden;*/
    border-width: 1px;
    border-style: solid;
    border-color: #ebebeb;
    border-radius: 5px;
}

.demos .s-item a:not(:hover) .thumb::before {
    opacity: 0;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.demos .coming-soon .thumb::before {
    content: 'Coming Soon';
    opacity: 1 !important;
    transform: none !important;
}

.demos .new .thumb::after {
    position: absolute;
    content: 'NEW';
    top: 0;
    right: 0;
    font-size: 14px;
    line-height: 1.42857143;
    background-color: #79bf35;
    color: #fff;
    z-index: 1;
    letter-spacing: 0;
    width: 200px;
    padding: 25px 18px 5px 10px;
    -webkit-transform: translate(50%, 0) rotate(40deg);
    -moz-transform: translate(50%, 0) rotate(40deg);
    -ms-transform: translate(50%, 0) rotate(40deg);
    -o-transform: translate(50%, 0) rotate(40deg);
    transform: translate(50%, 0) rotate(40deg);
    -webkit-transform-origin: center top;
    -moz-transform-origin: center top;
    -ms-transform-origin: center top;
    -o-transform-origin: center top;
    transform-origin: center top;
    -webkit-animation: flash 4s infinite;
    -o-animation: flash 4s infinite;
    animation: flash 4s infinite;
}

.demos .s-item.hover .thumb {
    background-position: center 0;
    background-size: 100% auto;
    background-repeat: no-repeat;
    -webkit-transition: background-position 1s ease-out;
    -moz-transition: background-position 1s ease-out;
    -o-transition: background-position 1s ease-out;
    transition: background-position 1s ease-out;
}

.demos .s-item.hover a:hover .thumb {
    background-position: center 100%;
    -webkit-transition: background-position 3s ease-out;
    -moz-transition: background-position 3s ease-out;
    -o-transition: background-position 3s ease-out;
    transition: background-position 3s ease-out;
}
.demos .s-item.hover .thumb .label {
    position: absolute;
    right: -15px;
    top: -15px;
    width: 60px;
    height: 60px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.demos .s-item.hover .thumb .label.label-hot {
    background-color: #f36;
}
.demos .s-item.hover .thumb .label.label-new {
    background-color: #00aeef;
}
.header-layout .s-item,
.footer-layout .s-item {
    width: 100%;
}

.header-layout .s-item a figure,
.footer-layout .s-item a figure {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}

.header-layout .s-item a:hover figure,
.footer-layout .s-item a:hover figure {
    -webkit-box-shadow: 0px 0px 22.5px 2.5px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0px 0px 22.5px 2.5px rgba(0, 0, 0, .2);
    box-shadow: 0px 0px 22.5px 2.5px rgba(0, 0, 0, .2);
}

.special-feature .s-item .s-item-title .title {
    font-size: 36px;
    text-transform: unset;
    margin-bottom: 30px;
}

.special-feature .s-item .s-item-title .text {
    font-size: 15px;
    margin-bottom: 50px;
}

.special-feature .s-item .s-item-title .action {
    font-size: 18px;
    height: 45px;
    line-height: 45px;
    padding: 0 30px;
    border-radius: 30px;
    background-color: var(--main-color);
    color: #fff;
    display: inline-block;
    margin-right: 20px;
}

.special-feature .s-item .s-item-title .action:hover {
    background-color: #000;
}

.special-feature .s-item .s-item-title .action:last-child {
    margin-right: 0;
}

.wishlist-compare-ajax .s-item-title {
    text-align: right;
}

.wishlist-compare-ajax .s-inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -15px;
}

.wishlist-compare-ajax .s-item {
    padding-bottom: 0;
}

.wishlist-compare-ajax .item-right figure {
    position: relative;
    display: inline-block;
}

.wishlist-compare-ajax .item-right figure img {
    position: relative;
    z-index: 2;
}

.wishlist-compare-ajax .item-right figure:after {
    content: "";
    position: absolute;
    top: -30px;
    right: -30px;
    bottom: -30px;
    width: 75%;
    border-width: 2px;
    border-style: solid;
    border-color: #cedde0;
    z-index: 1
}

.wishlist-compare-ajax .s-inner-container {
    background-color: #e2dfd8;
    border-radius: 20px;
}

.power-full-admin .s-inner {
    align-items: center;
}

.power-full-admin .background-blue {
    background-color: #cedde0;
}

.power-full-admin .s-item-title {
    border-width: 1px;
    border-style: solid;
    border-color: #ebebeb;
    transition: all .3s ease;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 5px;
}

.power-full-admin .s-item .s-item-title .title {
    font-size: 24px;
    margin-top: 0;
}

.power-full-admin .s-item .s-item-title .text {
    margin-bottom: 0;
}

.power-full-admin .s-item .s-item-title:hover {
    box-shadow: 0 0 30px rgb(0 0 0 / 30%) inset;
}

.feature .s-item {
    padding: 0 15px 30px;
}

.feature .s-item:hover img {
    -webkit-animation: flipInY 1s both;
    animation: flipInY 1s both;
}

.support-center .s-item .title {
    text-transform: capitalize;
}

@media (max-width: 991px) {
    .demos .s-item {
        width: 50%;
    }
}

@media (max-width: 479px) {
    .demos .s-item {
        width: 100%;
    }
    .demos .s-item .thumb::before {
        font-size: 24px;
    }
}


/*----- MOBILE -----*/

.mobile {
    text-align: center;
    padding-left: 30px;
    padding-right: 30px;
}

.mobile .s-item {
    width: 33.33333333%;
    position: relative;
}

.mobile .s-item a {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    max-width: 515px;
    position: relative;
    z-index: 1;
    padding-right: 185px;
}

.mobile .s-item .qr-code {
    position: absolute;
    top: 0;
    bottom: 15%;
    right: 0;
    width: 155px;
    font-size: 13px;
    color: #000;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 150px;
}

.mobile .s-item .qr {
    border: 1px solid #ccc;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-top: 30px;
}

.mobile .s-item .qr::before {
    position: absolute;
    content: '';
    top: 100%;
    right: 50%;
    width: 150px;
    height: 170px;
    border-style: dashed;
    border-width: 0 2px 2px 0;
    border-color: #ccc;
    border-radius: 0 0 100% 0;
    z-index: -1;
}

@media (max-width: 1499px) {
    .mobile .s-item {
        width: 50%;
    }
}

@media (max-width: 1199px) {
    .mobile {
        padding-left: 15px;
        padding-right: 15px;
    }
    .mobile .s-item a {
        padding-right: 170px;
    }
    .mobile .s-item .qr-code {
        width: 150px;
        padding-bottom: 100px;
    }
    .mobile .s-item .qr {
        margin-top: 20px;
    }
    .mobile .s-item .qr::before {
        width: 120px;
        height: 130px;
    }
}

@media (max-width: 991px) {
    .mobile .s-item a {
        padding-right: 150px;
    }
    .mobile .s-item .qr-code {
        bottom: 12%;
        width: 135px;
        padding-bottom: 0;
    }
    .mobile .s-item .qr {
        margin-top: 0;
    }
    .mobile .s-item .qr::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .mobile .s-item {
        width: 100%;
        max-width: 355px;
    }
}

@media (max-width: 479px) {
    .mobile .s-item a {
        padding-right: 140px;
    }
    .mobile .s-item .qr-code {
        width: 125px;
        font-size: 12px;
    }
}


/*----- VENDOR -----*/

.background-gr-blue {
    background: rgb(207, 220, 226);
    background: linear-gradient(162deg, rgba(207, 220, 226, 1) 0%, rgba(224, 241, 248, 1) 50%, rgba(236, 238, 254, 1) 100%);
}

.background-pink {
    background-color: #FDF5F3;
}


/*----- FOOTER -----*/

.footer {
    text-align: center;
    background-color: #fbeeea;
}

.footer-top {
    padding: 95px 0 100px;
    background-color: var(--main-color);
    position: relative;
}

.footer-top .s-inner {
    margin: 0 -15px -30px;
}

.footer-top .s-item {
    width: 20%;
    padding: 0 15px 30px;
}

.footer-top .s-item a {
    color: #fff;
}

.footer-top .s-item a:hover {
    text-decoration: underline;
}

.footer-top .s-item a:hover img {
    -webkit-animation: jello-horizontal 0.9s both;
    animation: jello-horizontal 0.9s both;
}

.footer-top .s-item .title {
    color: #fff;
}

.footer-main {
    padding: 70px 0;
    text-align: initial;
    font-size: 15px;
}

.footer-main .box-content .link-list {
    webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
}

.footer-main .box-content .title {
    font-size: 20px;
}

.footer-main .box-content .text {
    margin-bottom: 50px;
    max-width: 400px;
}

.footer-main .box-content .link-list {
    margin-top: 0;
}

.footer-main .box-content .link-list a:hover {
    color: var(--main-color);
}

.footer-main .link-list li {
    margin-bottom: 15px;
}

.footer-main .link-list a {
    transition: all .3s ease;
}

.footer-main .link-list a:hover {
    text-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

.footer-main .our-product .link-list a img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.footer-main .our-product .link-list a:hover img {
    -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
    animation: heartbeat 1.5s ease-in-out infinite both;
}

.copyright {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 23px 0;
}

.copyright a {
    font-weight: 600;
}

.copyright p {
    color: #000;
    margin: 0;
}

@media (max-width: 1499px) {
    .footer-main {
        padding: 105px 0 120px;
    }
    .footer-main .button {
        margin-top: 60px;
    }
}

@media (max-width: 1199px) {
    .footer-main {
        padding: 75px 0 90px;
    }
    .footer-main .button {
        margin-top: 40px;
    }
}

@media (max-width: 991px) {
    .footer-top .s-item {
        width: 50%;
    }
    .footer-top .s-item span {
        margin-top: 18px;
    }
}

@media (max-width: 767px) {
    .footer-top .s-item {
        width: 100%;
    }
    .footer-top .s-item span {
        margin-top: 12px;
    }
    .footer-main {
        padding: 55px 0 70px;
    }
    .footer-main .s-title {
        font-size: 40px;
    }
}

@media (max-width: 479px) {
    .footer-main .s-title {
        font-size: 36px;
    }
    .footer-main .s-subtitle {
        font-size: 16px;
    }
    .footer-main .button {
        margin-top: 30px;
    }
}


/*----- BACK TO TOP -----*/

a.backtotop:not(.show) {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.backtotop {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 40px;
    height: 40px;
    padding: 0;
    -webkit-transition: transform .3s ease;
    -moz-transition: transform .3s ease;
    -o-transition: transform .3s ease;
    transition: transform .3s ease;
    overflow: hidden;
    z-index: 5;
}

.backtotop img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

@media (max-width: 767px) {
    .backtotop {
        right: 10px;
        bottom: 60px;
        width: 30px;
        height: 30px;
    }
    .backtotop img {
        width: 16px;
    }
}