/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
    --qrowd-font: "Manrope", sans-serif;
    --qrowd-reey-font: "reeyregular";
    --qrowd-gray: #6e7a7a;
    --qrowd-gray-rgb: 110, 122, 122;
    --qrowd-white: #ffffff;
    --qrowd-white-rgb: 255, 255, 255;
    --qrowd-base: #07847f;
    --qrowd-base2: #fe7f4c;
    --qrowd-base-rgb: 254, 127, 76;
    --qrowd-black: #1e3737;
    --qrowd-black-rgb: 30, 55, 55;
    --qrowd-primary: #fe7f4c;
    --qrowd-primary2: #07847f;
    --qrowd-primary-rgb: 7, 132, 127;
    --qrowd-extra: #dbf0f0;
    --qrowd-extra-rgb: 242, 247, 247;
    --qrowd-letter-spacing: -0.04em;
}

.row {
    --bs-gutter-x: 30px;
}

.gutter-y-30 {
    --bs-gutter-y: 30px;
}

body {
    font-family: var(--qrowd-font);
    color: var(--qrowd-gray);
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
}

body.locked {
    overflow: hidden;
}

a {
    color: var(--qrowd-gray);
}

a,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--qrowd-black);
    margin: 0;
    letter-spacing: var(--qrowd-letter-spacing);
}

p {
    margin: 0;
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

.section-separator {
    border-color: var(--qrowd-border);
    border-width: 1px;
    margin-top: 0;
    margin-bottom: 0;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-position: 50% 50%;
    opacity: 0.4;
    z-index: -1;
}

.black-bg {
    background-color: var(--qrowd-black);
}

.background-size-cover {
    background-size: cover;
}

.background-repeat-no {
    background-repeat: no-repeat;
}

.background-position-top-right {
    background-position: top right;
}

/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__innerhover {
    width: 25px;
    height: 25px;
    opacity: 0.4;
}

.thm-btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    appearance: none;
    outline: none !important;
    border: none;
    background-color: var(--qrowd-base);
    color: var(--qrowd-white);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
    padding: 15px 50px 15px;
    transition: all 0.5s linear;
    overflow: hidden;
    z-index: 1;
}

.thm-btn::before {
    position: absolute;
    content: "";
    background-color: var(--qrowd-black);
    width: 100%;
    height: 0%;
    left: 50%;
    top: 50%;
    border-radius: 0px;
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: -1;
    transition: all 500ms ease;
}

.thm-btn:hover {
    color: var(--qrowd-white);
}

.thm-btn:hover:before {
    height: 380%;
}

.section-title {
    position: relative;
    display: block;
    margin-top: -11px;
    margin-bottom: 49px;
}

.section-title__tagline {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 14px;
    color: var(--qrowd-base);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 1;
}

.section-title__tagline:before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: -3px;
    right: -3px;
    height: 6px;
    background-color: rgba(254, 144, 67, 0.2);
    z-index: -1;
}

.section-title__title {
    margin: 0;
    color: var(--qrowd-black);
    font-size: 50px;
    line-height: 60px;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-top: 5px;
}

.bootstrap-select .btn-light:not(:disabled):not(.disabled).active,
.bootstrap-select .btn-light:not(:disabled):not(.disabled):active,
.bootstrap-select .show > .btn-light.dropdown-toggle {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.bootstrap-select > .dropdown-toggle {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
    outline: none !important;
}

.bootstrap-select .dropdown-menu {
    border: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    z-index: 991;
    border-radius: 0;
}

.bootstrap-select .dropdown-menu > li + li > a {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.bootstrap-select .dropdown-menu > li.selected > a {
    background: var(--qrowd-primary);
    color: #fff;
}

.bootstrap-select .dropdown-menu > li > a {
    font-size: 16px;
    font-weight: 500;
    padding: 4px 20px;
    color: #ffffff;
    background: var(--qrowd-base);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.bootstrap-select .dropdown-menu > li > a:hover {
    background: var(--qrowd-black);
    color: var(--qrowd-white);
    cursor: pointer;
}

.preloader {
    position: fixed;
    background-color: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.preloader__image {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    background-image: url(../images/loader.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 60px auto;
    width: 100%;
    height: 100%;
}

/* scroll to top */
.scroll-to-top {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--qrowd-base);
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 99;
    text-align: center;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    display: none;
    border-radius: 50%;
}

.scroll-to-top i {
    color: var(--qrowd-white);
    font-size: 18px;
    line-height: 50px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    position: relative;
    display: inline-block;
    transform: rotate(-90deg);
}

.scroll-to-top:hover {
    background-color: var(--qrowd-primary);
}

.scroll-to-top:hover i {
    color: #fff;
}

/*--------------------------------------------------------------
# tombol keranjang
--------------------------------------------------------------*/
.keranjang-belanja {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--qrowd-primary);
    position: fixed;
    bottom: 100px; /* Diperbarui dari 40px menjadi 90px */
    left: 20px;
    z-index: 99;
    text-align: center;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border-radius: 50%;
}

.keranjang-belanja i {
    color: var(--qrowd-white);
    font-size: 18px;
    line-height: 50px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    position: relative;
    display: inline-block;
}

.keranjang-belanja:hover {
    background-color: var(--qrowd-base);
}

.keranjang-belanja:hover i {
    color: #fff;
}

/*--------------------------------------------------------------
# tombol whatsapp
--------------------------------------------------------------*/
.tombol-whatsapp {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--qrowd-base);
    position: fixed;
    bottom: 40px; /* Diperbarui dari 40px menjadi 90px */
    left: 20px;
    z-index: 99;
    text-align: center;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border-radius: 50%;
}

.tombol-whatsapp i {
    color: var(--qrowd-white);
    font-size: 18px;
    line-height: 50px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    position: relative;
    display: inline-block;
}

.tombol-whatsapp:hover {
    background-color: var(--qrowd-primary);
}

.tombol-whatsapp:hover i {
    color: #fff;
}

/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
    position: relative;
    display: block;
    width: 100%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 99;
}

.main-header__top {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    border-bottom: 1px solid #e1eaea;
}

.main-header__top-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
}

.main-header__top-left {
    position: relative;
    display: block;
}

.main-header__contact-list {
    position: relative;
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.main-header__contact-list li {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header__contact-list li + li {
    margin-left: 30px;
}

.main-header__contact-list li .icon {
    position: relative;
    display: flex;
    align-items: center;
    top: 2px;
}

.main-header__contact-list li .icon i {
    font-size: 12px;
    color: var(--qrowd-base);
}

.main-header__contact-list li .text {
    margin-left: 10px;
}

.main-header__contact-list li .text p {
    font-size: 13px;
    font-weight: 500;
}

.main-header__contact-list li .text p a {
    color: var(--qrowd-gray);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-header__contact-list li .text p a:hover {
    color: var(--qrowd-base);
}

.main-header__top-right {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header__login {
    position: relative;
    display: block;
    background-color: var(--qrowd-extra);
    padding: 5px 40px 5px;
}

.main-header__login-list {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header__login-list li {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header__login-list li + li {
    margin-left: 17px;
}

.main-header__login-list li a {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--qrowd-gray);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-header__login-list li a:hover {
    color: var(--qrowd-base);
}

.main-header__login-list li a:before {
    content: "";
    position: absolute;
    top: 11px;
    left: -9px;
    height: 10px;
    width: 1px;
    background-color: var(--qrowd-gray);
    transform: rotate(15deg);
}

.main-header__login-list li:first-child a:before {
    display: none;
}

.main-header__login-list li a i {
    font-size: 16px;
    color: var(--qrowd-base);
    padding-right: 10px;
}

.main-header__social {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 40px;
    padding: 12.5px 0;
}

.main-header__social a {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: var(--qrowd-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-header__social a:hover {
    color: var(--qrowd-base);
}

.main-header__social a + a {
    margin-left: 25px;
}

.main-menu {
    position: relative;
    display: block;
}

.main-menu__wrapper {
    position: relative;
    display: block;
}

.main-menu__wrapper-inner {
    position: relative;
    display: block;
    padding: 0 60px;
}

.main-menu__left {
    display: block;
    float: left;
}

.main-menu__logo {
    display: block;
    padding: 29px 0;
    float: left;
    margin-right: 165px;
}

.main-menu__main-menu-box {
    display: block;
    float: left;
}

.main-menu__right {
    display: block;
    float: right;
}

.main-menu__call-search-btn-box {
    position: relative;
    display: flex;
    align-items: center;
    padding: 25px 0;
}

.main-menu__call {
    position: relative;
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.main-menu__call-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background-color: var(--qrowd-primary);
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu__call-icon:hover {
    background-color: var(--qrowd-base);
}

.main-menu__call-icon i {
    font-size: 15px;
    color: var(--qrowd-white);
    position: relative;
    display: inline-block;
}

.main-menu__call-content {
    margin-left: 10px;
}

.main-menu__call-sub-title {
    font-size: 13px;
    font-weight: 500;
    line-height: 15px;
    margin-bottom: 4px;
}

.main-menu__call-number {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 15px;
}

.main-menu__call-number a {
    color: var(--qrowd-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu__call-number a:hover {
    color: var(--qrowd-base);
}

.main-menu__search-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 60px;
    margin-right: 40px;
    padding: 13px 0;
}

.main-menu__search-box:before {
    content: "";
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: -30px;
    background-color: #e1eaea;
    width: 1px;
}

.main-menu__search {
    font-size: 24px;
    color: var(--qrowd-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu__search:hover {
    color: var(--qrowd-base);
}

.main-menu__btn-box {
    position: relative;
    display: block;
    margin-left: 20px;
}

.main-menu__btn {
    padding: 10px 40px 10px;
}

.main-menu__btn i {
    padding-right: 10px;
    font-size: 13px;
    position: relative;
    top: 2px;
}

.main-menu .main-menu__list,
.main-menu .main-menu__list > li > ul,
.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: none;
}

@media (min-width: 1200px) {
    .main-menu .main-menu__list,
    .main-menu .main-menu__list > li > ul,
    .main-menu .main-menu__list > li > ul > li > ul,
    .stricky-header .main-menu__list,
    .stricky-header .main-menu__list > li > ul,
    .stricky-header .main-menu__list > li > ul > li > ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.main-menu .main-menu__list > li,
.stricky-header .main-menu__list > li {
    padding-top: 35px;
    padding-bottom: 35px;
    position: relative;
}

.main-menu .main-menu__list > li + li,
.stricky-header .main-menu__list > li + li {
    margin-left: 60px;
}

.main-menu .main-menu__list > li > a,
.stricky-header .main-menu__list > li > a {
    font-size: 17px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--qrowd-gray);
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    font-weight: 600;
}

.main-menu .main-menu__list > li.dropdown > a {
    padding-right: 16px;
}

.main-menu .main-menu__list > li.dropdown > a:after {
    position: absolute;
    top: 50%;
    right: 0;
    font-family: "Font Awesome 5 Free";
    content: "\f107";
    font-size: 13px;
    color: var(--qrowd-gray);
    transform: translateY(-50%);
    z-index: 1;
}

.main-menu .main-menu__list > li > a::before,
.stricky-header .main-menu__list > li > a::before {
    content: "";
    height: 6px;
    border-radius: 0px;
    background-color: rgba(254, 144, 67, 0.2);
    position: absolute;
    bottom: 6px;
    left: -4px;
    right: -4px;
    transition: transform 500ms ease;
    transform: scale(0, 1);
    transform-origin: left center;
    z-index: 1;
}

.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a,
.stricky-header .main-menu__list > li.current > a,
.stricky-header .main-menu__list > li:hover > a {
    color: var(--qrowd-black);
}

.main-menu .main-menu__list > li.current > a::before,
.main-menu .main-menu__list > li:hover > a::before,
.stricky-header .main-menu__list > li.current > a::before,
.stricky-header .main-menu__list > li:hover > a::before {
    transform: scale(1, 1);
    transform-origin: right center;
}

.main-menu .main-menu__list > li.current > a::after,
.main-menu .main-menu__list > li:hover > a::after,
.stricky-header .main-menu__list > li.current > a::after,
.stricky-header .main-menu__list > li:hover > a::after {
    color: var(--qrowd-black);
}

.main-menu .main-menu__list > li > ul,
.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 270px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-transform: scaleY(0) translateZ(100px);
    transform: scaleY(0) translateZ(100px);
    -webkit-transition: opacity 500ms ease, visibility 500ms ease,
        -webkit-transform 700ms ease;
    transition: opacity 500ms ease, visibility 500ms ease,
        -webkit-transform 700ms ease;
    transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
    transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease,
        -webkit-transform 700ms ease;
    z-index: 99;
    background-color: rgb(255, 255, 255);
    padding: 31px 20px 31px;
}

.shadow-box {
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.main-menu .main-menu__list > li > ul > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul > li > ul {
    display: none;
}

.main-menu .main-menu__list > li:hover > ul,
.main-menu .main-menu__list > li > ul > li:hover > ul,
.stricky-header .main-menu__list > li:hover > ul,
.stricky-header .main-menu__list > li > ul > li:hover > ul {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleY(1) translateZ(0px);
    transform: scaleY(1) translateZ(0px);
}

.main-menu .main-menu__list > li > ul > li,
.main-menu .main-menu__list > li > ul > li > ul > li,
.stricky-header .main-menu__list > li > ul > li,
.stricky-header .main-menu__list > li > ul > li > ul > li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    width: 100%;
    position: relative;
}

.main-menu .main-menu__list > li > ul > li + li,
.main-menu .main-menu__list > li > ul > li > ul > li + li,
.stricky-header .main-menu__list > li > ul > li + li,
.stricky-header .main-menu__list > li > ul > li > ul > li + li {
    border-top: none;
    margin-top: 10px;
}

.main-menu .main-menu__list > li > ul > li > a,
.main-menu .main-menu__list > li > ul > li > ul > li > a,
.stricky-header .main-menu__list > li > ul > li > a,
.stricky-header .main-menu__list > li > ul > li > ul > li > a {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    color: var(--qrowd-gray);
    letter-spacing: 0;
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 5px 20px 5px;
    -webkit-transition: 500ms;
    transition: 500ms;
    background-color: var(--qrowd-white);
}

.main-menu .main-menu__list > li > ul > li:hover > a,
.main-menu .main-menu__list > li > ul > li > ul > li:hover > a,
.stricky-header .main-menu__list > li > ul > li:hover > a,
.stricky-header .main-menu__list > li > ul > li > ul > li:hover > a {
    background-color: var(--qrowd-extra);
    color: var(--qrowd-black);
}

.main-menu .main-menu__list > li > ul > li > a::before,
.main-menu .main-menu__list > li > ul > li > ul > li > a::before,
.stricky-header .main-menu__list > li > ul > li > a::before,
.stricky-header .main-menu__list > li > ul > li > ul > li > a::before {
    position: absolute;
    top: 50%;
    right: 20px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    font-size: 14px;
    color: var(--qrowd-base);
    transform: translateY(-50%) scale(0);
    -webkit-transition: 500ms;
    transition: 500ms;
}

.main-menu .main-menu__list > li > ul > li:hover > a::before,
.main-menu .main-menu__list > li > ul > li > ul > li:hover > a::before,
.stricky-header .main-menu__list > li > ul > li:hover > a::before,
.stricky-header .main-menu__list > li > ul > li > ul > li:hover > a::before {
    transform: translateY(-50%) scale(1);
}

.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
    top: 0;
    left: 100%;
}

.main-menu .main-menu__list li ul li > ul.right-align,
.stricky-header .main-menu__list li ul li > ul.right-align {
    top: 0;
    left: auto;
    right: 100%;
}

.main-menu-three__main-menu-box .main-menu__list > .megamenu,
.main-menu-two__main-menu-box .main-menu__list > .megamenu,
.main-menu__wrapper .main-menu__list > .megamenu {
    position: static;
}

.main-menu-three__main-menu-box .main-menu__list > .megamenu > ul,
.main-menu-two__main-menu-box .main-menu__list > .megamenu > ul,
.main-menu__wrapper .main-menu__list > .megamenu > ul {
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background-color: transparent;
}

.main-menu-three__main-menu-box .main-menu__list > .megamenu > ul > li,
.main-menu-two__main-menu-box .main-menu__list > .megamenu > ul > li,
.main-menu__wrapper .main-menu__list > .megamenu > ul > li {
    padding: 0 !important;
}

.stricky-header {
    position: fixed;
    z-index: 991;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
    visibility: hidden;
    -webkit-transform: translateY(-120%);
    transform: translateY(-120%);
    -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
    transition: visibility 500ms ease, -webkit-transform 500ms ease;
    transition: transform 500ms ease, visibility 500ms ease;
    transition: transform 500ms ease, visibility 500ms ease,
        -webkit-transform 500ms ease;
    -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
    .stricky-header {
        display: none !important;
    }
}

.stricky-header.stricky-fixed {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
}

.stricky-header .main-menu__inner {
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-right: 0;
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
}

.mobile-nav__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    margin-right: 10px;
}

@media (min-width: 1200px) {
    .mobile-nav__buttons {
        display: none;
    }
}

.mobile-nav__buttons a {
    font-size: 20px;
    color: var(--qrowd-base);
    cursor: pointer;
}

.mobile-nav__buttons a + a {
    margin-left: 10px;
}

.mobile-nav__buttons a:hover {
    color: var(--qrowd-base);
}

.main-menu .mobile-nav__toggler {
    font-size: 20px;
    color: var(--qrowd-base);
    cursor: pointer;
    -webkit-transition: 500ms;
    transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
    color: var(--qrowd-black);
}

@media (min-width: 1200px) {
    .main-menu .mobile-nav__toggler {
        display: none;
    }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition: visibility 500ms ease 500ms,
        -webkit-transform 500ms ease 500ms;
    transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
    transition: transform 500ms ease 500ms, visibility 500ms ease 500ms,
        -webkit-transform 500ms ease 500ms;
    visibility: hidden;
}

.mobile-nav__wrapper .container {
    padding-left: 0;
    padding-right: 0;
}

.mobile-nav__wrapper.expanded {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    visibility: visible;
    -webkit-transition: visibility 500ms ease 0ms,
        -webkit-transform 500ms ease 0ms;
    transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
    transition: transform 500ms ease 0ms, visibility 500ms ease 0ms,
        -webkit-transform 500ms ease 0ms;
}

.mobile-nav__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    opacity: 0.5;
    cursor: pointer;
}

.mobile-nav__content {
    width: 300px;
    background-color: var(--qrowd-black);
    z-index: 10;
    position: relative;
    height: 100%;
    overflow-y: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms,
        -webkit-transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms,
        -webkit-transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms,
        transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms,
        transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms,
        -webkit-transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms,
        -webkit-transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms,
        transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms,
        transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__content .logo-box {
    margin-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.mobile-nav__close {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 18px;
    color: var(--qrowd-white);
    cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list > li > ul,
.mobile-nav__content .main-menu__list > li > ul > li > ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.mobile-nav__content .main-menu__list > li > ul,
.mobile-nav__content .main-menu__list > li > ul > li > ul {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-left: 0.5em;
}

.mobile-nav__content .main-menu__list > li:not(:last-child),
.mobile-nav__content .main-menu__list > li > ul > li:not(:last-child),
.mobile-nav__content
    .main-menu__list
    > li
    > ul
    > li
    > ul
    > li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list > li > a > .main-menu-border {
    display: none !important;
}

.mobile-nav__content .main-menu__list > li > a,
.mobile-nav__content .main-menu__list > li > ul > li > a,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    line-height: 30px;
    color: #ffffff;
    font-size: 14px;
    font-family: var(--qrowd-font, "Rubik", sans-serif);
    font-weight: 500;
    height: 46px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: 500ms;
    transition: 500ms;
}

.mobile-nav__content
    .main-menu__list
    > li
    > a.expanded
    .mobile-nav__content
    .main-menu__list
    > li
    > ul
    > li
    > a.expanded
    .mobile-nav__content
    .main-menu__list
    > li
    > ul
    > li
    > ul
    > li
    > a.expanded {
    color: var(--qrowd-base);
}

.mobile-nav__content .main-menu__list > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button {
    width: 30px;
    height: 30px;
    background-color: var(--qrowd-base);
    border: none;
    outline: none;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition: -webkit-transform 500ms ease;
    transition: -webkit-transform 500ms ease;
    transition: transform 500ms ease;
    transition: transform 500ms ease, -webkit-transform 500ms ease;
    padding: 0;
}

.mobile-nav__content .main-menu__list > li > a > button.expanded,
.mobile-nav__content .main-menu__list > li > ul > li > a > button.expanded,
.mobile-nav__content
    .main-menu__list
    > li
    > ul
    > li
    > ul
    > li
    > a
    > button.expanded {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    background-color: #fff;
    color: var(--qrowd-base);
}

/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > ul {
    display: none !important;
}

.mobile-nav__content .main-menu__list li.cart-btn span {
    position: relative;
    top: auto;
    right: auto;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
    font-size: 16px;
}

.mobile-nav__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
    color: var(--qrowd-text-dark);
}

.mobile-nav__container {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.mobile-nav__social a {
    font-size: 16px;
    color: var(--qrowd-white);
    -webkit-transition: 500ms;
    transition: 500ms;
}

.mobile-nav__social a + a {
    margin-left: 30px;
}

.mobile-nav__social a:hover {
    color: var(--qrowd-base);
}

.mobile-nav__contact {
    margin-bottom: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.mobile-nav__contact li {
    color: var(--qrowd-text-dark);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.mobile-nav__contact li + li {
    margin-top: 15px;
}

.mobile-nav__contact li a {
    color: #ffffff;
    -webkit-transition: 500ms;
    transition: 500ms;
}

.mobile-nav__contact li a:hover {
    color: var(--qrowd-base);
}

.mobile-nav__contact li > i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--qrowd-base);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    font-size: 11px;
    margin-right: 10px;
    color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
    display: none;
}

.mobile-btn-box {
    position: relative;
    display: block;
    align-items: center;
}
.mobile__btn-box {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.mobile__btn {
    padding: 10px 40px 10px;
}

.mobile__btn i {
    padding-right: 10px;
    font-size: 13px;
    position: relative;
    top: 2px;
}

.mobile-btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    appearance: none;
    outline: none !important;
    border: none;
    background-color: var(--qrowd-base);
    color: var(--qrowd-white);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
    padding: 15px 50px 15px;
    transition: all 0.5s linear;
    overflow: hidden;
    z-index: 1;
}

.mobile-btn::before {
    position: absolute;
    content: "";
    background-color: var(--qrowd-black);
    width: 100%;
    height: 0%;
    left: 50%;
    top: 50%;
    border-radius: 0px;
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: -1;
    transition: all 500ms ease;
}

.mobile-btn:hover {
    color: var(--qrowd-white);
    background-color: var(--qrowd-base2);
}

/*--------------------------------------------------------------
# Home Showcase
--------------------------------------------------------------*/
.home-showcase {
    margin-top: -31px;
    margin-bottom: -31px;
}

.home-showcase__inner {
    padding: 40px 40px 40px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.home-showcase .row {
    --bs-gutter-x: 42px;
    --bs-gutter-y: 20px;
}

.home-showcase__image {
    position: relative;
    background-color: var(--qrowd-base);
    overflow: hidden;
}

.home-showcase__image > img {
    width: 100%;
    -webkit-transition: 500ms ease;
    transition: 500ms ease;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.home-showcase__image:hover > img {
    opacity: 0.75;
}

.home-showcase__image:hover .home-showcase__buttons {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
    visibility: visible;
}

.home-showcase__buttons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    opacity: 0;
    visibility: hidden;
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
    -webkit-transition: 500ms ease;
    transition: 500ms ease;
}

.home-showcase__buttons__item {
    padding: 10px 20px;
    width: 150px;
    text-align: center;
}

.home-showcase__buttons__item + .home-showcase__buttons__item {
    margin-top: 10px;
}

.home-showcase__title {
    margin: 0;
    text-align: center;
    font-size: 16px;
    font-weight: 800;
    color: var(--qrowd-black);
    margin-top: 17px;
}

.mobile-nav__wrapper .home-showcase .row [class*="col-"] {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}

.mobile-nav__wrapper .home-showcase__inner {
    padding: 15px 0px;
    background-color: rgba(0, 0, 0, 0);
}

.mobile-nav__wrapper .home-showcase__title {
    color: var(--qrowd-white, #ffffff);
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    padding-left: 20px;
    padding-right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transform: translateY(-110%);
    transform: translateY(-110%);
    -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease,
        -webkit-transform 500ms ease;
}

.search-popup.active {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}

.search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--qrowd-black);
    opacity: 0.75;
    cursor: pointer;
}

.search-popup__content {
    width: 100%;
    max-width: 560px;
}

.search-popup__content form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    background-color: #fff;
    border-radius: 0;
    overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
    width: 100%;
    background-color: #fff;
    font-size: 16px;
    border: none;
    outline: none;
    height: 66px;
    padding-left: 30px;
}

.search-popup__content .thm-btn {
    padding: 0;
    width: 68px;
    height: 68px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    right: -1px;
    border-radius: 0;
    background-color: var(--qrowd-base);
    border: 0;
}

.search-popup__content .thm-btn i {
    height: auto;
    width: auto;
    background-color: transparent;
    border-radius: 50%;
    color: var(--qrowd-white);
    font-size: 22px;
    line-height: inherit;
    text-align: center;
    top: 0;
    margin-right: 0;
    padding-left: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.search-popup__content .thm-btn:hover:before {
    width: 150%;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
    position: relative;
    display: block;
    padding: 156px 0 155px;
    background-color: var(--qrowd-black);
    overflow: hidden;
    z-index: 1;
}

.page-header-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    mix-blend-mode: luminosity;
    opacity: 0.5;
    z-index: -1;
}

.page-header-shape-1 {
    position: absolute;
    top: 0;
    right: -30px;
    mix-blend-mode: hard-light;
}

.page-header-shape-1 img {
    width: auto;
}

.page-header-shape-2 {
    position: absolute;
    top: 0;
    right: 0;
    mix-blend-mode: soft-light;
    opacity: 0.4;
}

.page-header-shape-2 img {
    width: auto;
}

.page-header-shape-3 {
    position: absolute;
    bottom: 0;
    right: -29px;
    mix-blend-mode: color-dodge;
}

.page-header-shape-3 img {
    width: auto;
}

.page-header__inner {
    position: relative;
    display: block;
    z-index: 15;
}

.page-header__inner h2 {
    font-size: 50px;
    color: var(--qrowd-white);
    font-weight: 800;
    line-height: 59px;
}

.thm-breadcrumb {
    position: relative;
    display: block;
}

.thm-breadcrumb li {
    position: relative;
    display: inline-block;
    color: var(--qrowd-white);
    font-size: 16px;
    font-weight: 600;
    opacity: 0.6;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.thm-breadcrumb li + li {
    margin-left: 4px;
}

.thm-breadcrumb li a {
    position: relative;
    display: inline-block;
    color: var(--qrowd-white);
    font-size: 16px;
    font-weight: 600;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.thm-breadcrumb li:hover a {
    color: var(--qrowd-base);
}

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
    position: relative;
    display: block;
    background-color: var(--qrowd-black);
    z-index: 1;
}

.site-footer__top {
    position: relative;
    display: block;
    padding: 127px 0 120px;
    z-index: 1;
}

.site-footer__shape-1 {
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0.03;
    z-index: -1;
}

.site-footer__shape-1 img {
    width: auto;
}

.footer-widget__about {
    position: relative;
    display: block;
    margin-right: 70px;
    margin-top: -7px;
}

.footer-widget__logo {
    position: relative;
    display: block;
}

.footer-widget__about-text-box {
    position: relative;
    display: block;
    padding-bottom: 24px;
    padding-top: 25px;
}

.footer-widget__about-text {
    font-size: 15px;
    font-weight: 500;
    color: #8b9e9e;
}

.footer-widget__subscribe-box {
    position: relative;
    display: block;
}

.footer-widget__subscribe-input-box {
    position: relative;
    display: block;
    background-color: var(--qrowd-white);
}

.footer-widget__subscribe-input-box input[type="email"] {
    height: 60px;
    width: 100%;
    background-color: var(--qrowd-white);
    outline: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--qrowd-gray);
    border: none;
    padding-left: 20px;
    padding-right: 60px;
}

.footer-widget__subscribe-btn {
    position: absolute;
    top: 50%;
    right: 15px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border: none;
    background-color: var(--qrowd-primary);
    font-size: 10px;
    color: var(--qrowd-white);
    border-radius: 50%;
    transform: translateY(-50%);
    padding: 0;
    margin: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.footer-widget__subscribe-btn:hover {
    background-color: var(--qrowd-base);
}

.footer-widget__subscribe-btn img {
    width: auto;
}

.footer-widget__Explore {
    position: relative;
    display: block;
    margin-right: 56px;
}

.footer-widget__title-box {
    position: relative;
    display: block;
    margin-bottom: 27px;
}

.footer-widget__title {
    font-size: 18px;
    color: var(--qrowd-white);
    line-height: 28px;
    font-weight: 800;
}

.footer-widget__Explore-list {
    position: relative;
    display: block;
}

.footer-widget__Explore-list li + li {
    margin-top: 5px;
}

.footer-widget__Explore-list li a {
    position: relative;
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    color: #8b9e9e;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.footer-widget__Explore-list li a:hover {
    color: var(--qrowd-base);
}

.footer-widget__Explore-list li a:before {
    content: "";
    position: absolute;
    bottom: 7px;
    left: -3px;
    right: -3px;
    height: 6px;
    background-color: rgba(var(--qrowd-white-rgb), 0.1);
    transition: transform 500ms ease;
    transform: scale(0, 1);
    transform-origin: left center;
    z-index: -1;
}

.footer-widget__Explore-list li:hover a:before {
    transform: scale(1, 1);
    transform-origin: right center;
}

.footer-widget__Fundraising {
    position: relative;
    display: block;
    margin-right: 74px;
}

.footer-widget__Contact {
    position: relative;
    display: block;
    margin-right: 74px;
}

.footer-widget__Contact-list {
    position: relative;
    display: block;
    padding-top: 2px;
}

.footer-widget__Contact-list li {
    position: relative;
    display: flex;
    align-items: center;
}

.footer-widget__Contact-list li + li {
    margin-top: 9px;
}

.footer-widget__Contact-list li .icon {
    font-size: 13px;
    margin-right: 10px;
}

.footer-widget__Contact-list li .icon span {
    color: var(--qrowd-base);
}

.footer-widget__Contact-list li .text p {
    font-size: 15px;
    font-weight: 500;
    color: #8b9e9e;
}

.footer-widget__Contact-list li .text p a {
    color: #8b9e9e;
}

.footer-widget__Contact-list li .text p a:hover {
    color: var(--qrowd-base);
    transition: all 500ms ease;
}

.site-footer__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 30px;
}

.site-footer__social a {
    position: relative;
    height: 40px;
    width: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    color: var(--qrowd-white);
    background-color: #172d2d;
    font-size: 15px;
    border-radius: 50%;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.site-footer__social a:hover {
    color: var(--qrowd-base);
    background-color: var(--qrowd-white);
}

.site-footer__social a:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: var(--qrowd-white);
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-transition-property: all;
    transition-property: all;
    opacity: 1;
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    z-index: -1;
}

.site-footer__social a:hover:after {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.site-footer__social a + a {
    margin-left: 10px;
}

.site-footer__bottom {
    position: relative;
    display: block;
    padding: 33px 0 38px;
    background-color: rgb(23, 45, 45);
    box-shadow: 0px -1px 0px 0px rgba(255, 255, 255, 0.08);
}

.site-footer__bottom-inner {
    position: relative;
    display: block;
    text-align: center;
}

.site-footer__bottom-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    color: #8b9e9e;
}

.site-footer__bottom-text a {
    color: #8b9e9e;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.site-footer__bottom-text a:hover {
    color: var(--qrowd-base);
}
