@import url('lineicons.css');

html, body {
    overflow-x: hidden;
    font-family: "ir-medium", serif;
    font-size: var(--font-14);
    color: var(--body-text-color);
}
.main {
    width: 100%;
    overflow-x: hidden;
}

h6{
    line-height: 27px;
}


input:not([type="radio"]){
	color: var(--body-text-color);
    padding: 0 20px !important;
    width: calc(100% - 40px) !important;
    height: 45px !important;
    transition: none !important;
    border-radius: 10px !important;
    border: 2px solid var(--input-border-color) !important;
    font-size: var(--font-14) !important;
    background-color: white !important;
    margin: 0 !important;
}
input:focus, textarea:focus-visible {
    border-color: var(--input-border-focused) !important;
    box-shadow: none !important;
}
textarea:focus-visible{
    outline: none !important;
}

input.ltr::placeholder {
    direction: ltr !important;
}
textarea {
    border-radius: 10px;
    border: 2px solid var(--input-border-color) !important;
    resize: none;
    min-height: 160px;
    background-color: white !important;
}
h1,h2,h3,h4,h5,h6 {
    font-family: "ir-bold", serif;
    color: var(--heading-text-color);
}
small {
    font-size: 90%;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance:textfield;
}

[type="checkbox"]+span:not(.lever) {
    padding-right: 35px !important;
}

[type="checkbox"]+span:not(.lever):before,
[type="checkbox"]:not(.filled-in)+span:not(.lever):after {
    left: auto !important;
    right: 0px !important;
}
[type="checkbox"]:checked+span:not(.lever):before {
    right: 13px !important;
}

.invalid[type="checkbox"]:not(:checked)+span:not(.lever):after,
.invalid[type="checkbox"]:not(:checked)+span:not(.lever):before {
    border-color: red;
}
.select-dropdown.dropdown-trigger {
    direction: rtl;
}
.dropdown-content.select-dropdown span {
    direction: rtl;
    text-align: right;
}
.select-wrapper .caret {
    right: auto;
    left: 12px;
}

[type="radio"]:not(:checked)+span, [type="radio"]:checked+span {
    padding-right: 35px;
}
[type="radio"]+span:before, [type="radio"]+span:after {
    left: auto;
    right: 0;
}

.input-field{
    margin-top: 0;
    margin-bottom: 25px;
}

table.rtl th,
table.rtl td {
    text-align: right;
}
table {
    border-top: 1px solid rgba(0,0,0,0.12);
}

ul {
    list-style-type: none;
    margin-block-start: 0;
    margin-block-end: 0;
    padding-inline-start: 0;
}

a {
    text-decoration: none;
}

section.centered {
    display: flex;
    justify-content: center;
    align-items: center;
}

section.pad-1 {
    padding: 100px 0;
}
section.pad-2 {
    padding: 130px 0;
}
section.pad-3 {
    padding: 185px 0;
}
.hero-full-screen {
    min-height: calc(100vh - 60px);
}
section .section-content {
    width: var(--section-width);
}

.btn {
    border-radius: 100px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background-color: var(--primary-color);
    transition: 300ms ease;
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
}
.btn.disabled span{
    color: #9F9F9F;
}
.btn:focus {
    background-color: var(--primary-color);
}
.btn:hover {
    background-color: var(--primary-color);
    filter: brightness(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.20);
}
.btn-borderd {
    background-color: transparent !important;
    border: 2px solid var(--input-border-color) !important;
    color: #7f7f7f !important;
    box-shadow: none;
}
.btn-borderd:hover {
    box-shadow: none;
    border: 2px solid var(--input-border-color) !important;
    
}
.input-field.col label {
    right: 20px !important;
    left: auto;
    top: 0 !important;
    background-color: #ffffff;
    padding: 0 5px;
    transform: translateY(-10px) scale(1) !important;
    z-index: 2;
    font-size: 0.9rem;
    color: var(--cl-4);
}

.input-field.col label.invalid {
	color: var(--cl-6) !important;
}

.input-field.col .prefix ~ label{
    width: auto;
    left: -28px !important;
}
input.invalid {
    border-color: red !important;
    box-shadow: none !important;

}
input.invalid+label{

}

.select-wrapper+label {
    top: -32px;
}
.input-field>label:not(.label-icon).active {
    transform: translateY(-20px) translateX(25px) scale(0.8);
}
.card{
    border-radius: 15px;
    box-shadow: var(--box-shadow);
}


/*** Helpers ***/
.run-after-load {
    animation-play-state: paused; 
}
.run-after-load.loaded {
    animation-play-state: running; 
}
.relative {
    position: relative;
}
.d-block {
    display: block;
}
.d-flex {
    display: flex;
}
.sp-between {
    display: flex;
    justify-content: space-between;
}
.justify-center {
    display: flex;
    justify-content: center;
}

.ltr {
    direction: ltr;
}
.rtl {
    direction: rtl;
    text-align: right;
}
.rtl-col {
    float: right !important;
}
.center {
    text-align: center !important;
}
.left {
    float: left;
}
.right {
    float: right;
}

.btn-block {
    width: 100%;
}

.sub-text {
    color: var(--subtext);
}

.small-icon {
    color: var(--primary-color);
    font-size: var(--font-20);
}
.text-justify{
    text-align: justify;
}

.app {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow-y: auto;
}
.border-bottom {
    border-bottom: 1px solid var(--section-border-color);
}

.btn.iconed {
    display: flex;
    align-items: center;
    width: fit-content;
}
.btn.iconed img {
    max-height: 30px;
    width: 30px;
}

/******** Navbar *******/
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 60px;
    background: transparent;
    box-shadow: none;
    transition: all 200ms;
    z-index: 99999;
}
.navbar.active {
    background: rgb(222 158 19 / 92%);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 5px rgb(0 0 0 / 20%);
}
.nav-container {
    height: 100%;
    width: var(--section-width);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}
.nav-links a {
    color: black;
}
.nav-links a.active {
    color: white;
}
.navbar .logo {
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.navbar .logo img {
    height: 50px;
    width: 50px;
}

.nav-trigger{
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-trigger i{
    font-size: 26px;
}

.mobile-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    direction: rtl;
    margin: 0 auto;
    height: 100%;
    padding: 0 10px;
}
.mobile-nav-container {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 0;
    z-index: 1000000;
    background-color: var(--primary-color);
    overflow: hidden;
    transition: height ease 0.3s;
}
.mobile-nav-container.on{
    height: 100%;
}
.mobile-nav-container ul li {
    width: 100%;
}
.mobile-nav-container ul li a {
    display: block;
    text-align: center;
    padding: 5px 0;
    font-size: var(--font-24);
    color: var(--heading-text-color);
    transition: all ease 0.3s;
}
.mobile-nav-container.on ul li a{
    padding: 12px 0;
}

.mobile-nav-container ul li a.active {
    color: rgb(238, 238, 238);
}

.close-mobile-nav{
    margin: 15px auto;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease 0.3s;
}
.mobile-nav-container.on .close-mobile-nav{
    transform: rotate(180deg);
}



/****************** Main *****************/

.main {
    padding-top: 60px;
}

.scroll-to-top {
    transition: 500ms cubic-bezier(0.01, 0.46, 0.08, 1.02);
    position: fixed;
    bottom: -70px;
    left: 60px;
    z-index: 99999999999;
    background: var(--primary-color);
    color: white;
    border-radius: 15px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 5px 5px 10px rgb(0, 0, 0, 0.2);
}
.scroll-to-top.active {
    bottom: 50px;
}


/************ Hero FullScreen *************/
.hero-full {
    height: 100vh;
    width: 100%;
    margin: auto;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    margin-top: -60px;
}

.hero-full::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: url(../img/food-pattern.png);
    background-repeat: repeat repeat;
    opacity: 0.1;
    background-size: 300px 300px;
    animation: movePattern 300s linear infinite;
}
.patterned::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: url(../img/food-pattern.png);
    background-repeat: repeat repeat;
    opacity: 0.06;
    background-size: 300px 300px;
    animation: movePattern 300s linear infinite;
    z-index: -1;
}
.home-hero-pic {
    position: relative;
}
.home-hero-pic .image-1 {
    position: absolute;
    transition: 500ms 500ms cubic-bezier(0.55, 0.06, 0.68, 0.19);
    opacity: 0;
}


.hero-content {
    z-index: 2;
    display: flex;
    width: 100%;
    max-width: var(--section-width);
}
.hero-content * {
    color: var(--heading-text-color);
}
.home-hero-pic img,
.download-hero-pic img {
    height: calc(300px + 35vh);
}
.logo-anim {
    width: 70%;
    margin-bottom: 25px;
}
.hero-content .info {
    display: flex;
    align-items: center;
    width: 50%;
}
.enamad{
    width: fit-content;
    border-radius: 16px;
    padding: 10px;
}






/********** Our Vision **************/


.our-vision {
    display: flex;
    align-items: center;
    gap: 30px;
}
.our-vision .title {
    font-size: var(--font-36);
    font-weight: 600;
}
.our-vision .desc {
    margin-bottom: 25px;
}
.our-vision .btn {
    height: 50px;
    padding: 0 30px;
}
.our-vision .info {
    width: 50%;
}
.our-vision .image {
    width: 50%;
}
.our-vision .image img {
    border-radius: 25px;
    width: 60%;
}




#mission-section .image {
    transition: all 500ms ease;
    opacity: 0;
    transform: translateX(-30px);
}
#mission-section.active .image {
    opacity: 1;
    transform: translateX(0);
}

#mission-section .info {
    transition: all 500ms 200ms ease;
    opacity: 0;
    transform: translateX(30px);
}
#mission-section.active .info {
    opacity: 1;
    transform: translateX(0);
}


/********** Top Estab ***********/

.estab-widget {
    background: white;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    display: block;
    border: 1px dashed var(--input-border-focused);
    transition: all cubic-bezier(0.26, -0.9, 0.62, 1.75) 0.3s;
}
.estab-widget:hover {
    box-shadow: var(--box-shadow);
    transform: scale(1.03);
}
.estab-widget .cover{
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.estab-widget .cover img {
    width: 100%;
}
.estab-widget .logo {
    direction: rtl;
    transform: translate(-20px, -55px);
    height: 0;
}
.estab-widget .logo img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    box-shadow: var(--box-shadow);
}
.estab-widget .name {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 80%;
}
.estab-widget .rating {
    display: flex;
}
.estab-widget .rating i {
    font-size: var(--font-16);
    margin-right: 5px;
    margin-top: 2px;
    color: var(--primary-color);
}
.estab-holder { 
    background-color: var(--section-background-color);
    padding: 75px 0;
}





/********* food-widget *********/

.food-widget {
    padding: 20px;
    text-align: center;
    border-radius: 15px;
    display: block;
    border: 1px dashed var(--input-border-focused);
    transition: all cubic-bezier(0.26, -0.9, 0.62, 1.75) 0.3s;
}
.food-widget:hover {
    box-shadow: var(--box-shadow);
    transform: scale(1.03);
}
.food-widget .name {
    font-size: 14px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    color: var(--primary-color);
    margin-bottom: 0;
}
.food-widget .image img {
    width: 100%;
}
.food-widget .image img.lazy {
    border-radius: 150px;
}
.food-widget .price {
    font-size: 12px;
}
.food-widget .rating {
    background-color: #efefef;
    border-radius: 20px;
    width: 64px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-top: 10px;
    padding-top: 2px;
    font-size: 12px;
}
.food-widget .rating i {
    font-size: 14px;
    color: var(--primary-color);
}




/****************** Store ****************/

.market-header {
    width: 100%;
}
.blury-hero {
    height: 230px;
    animation: .7s bluryHero cubic-bezier(1, -0.02, 0.32, 0.9) forwards;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blury-hero .info {
    position: absolute;
}
.blury-hero .holder {
    position: relative;
    width: 500px;
    height: 500px;
    animation: 15s linear rotate infinite;
    filter: blur(250px);
}
.blury-hero .blub {
    position: absolute;
    width: calc(15vw + 150px);
    height: calc(15vw + 150px);
    border-radius: 50%;
}
.blury-hero .blub:nth-child(1) {
    background-color: #00FF00;
    top: -25vw;
    left: calc(50% - 165px);
}
.blury-hero .blub:nth-child(2) {
    background-color: #00FFFF;
    bottom: -25vw;
    right: -25vw;
}
.blury-hero .blub:nth-child(3) {
    background-color: #FF0000;
    bottom: -25vw;
    left: -25vw;
}


.store-search {
    width: 500px;
    height: 70px;
    padding-left: 15px;
    border-radius: 50px;
    box-shadow: 0 14px 20px -10px #00000024;
    background: white;
    transform: translateY(-35px);
    display: flex;
    align-items: center;
    position: relative;
    border: 2px solid transparent;
    transition: border 200ms ease; 
    margin: auto; 
}
.store-search {
    width: 300px;
    animation: .8s storeSearch cubic-bezier(0.62, 0.06, 0.38, 1.05) forwards; 
}


.store-search .icon i {
    color: rgb(194, 194, 194);
    padding: 25px;
}
.store-search input {
    border: none !important;
    border-bottom: none !important;
    margin-bottom: 0 !important;
    padding-right: 0 !important;
    height: 90% !important;
}
.store-search input:focus {
    box-shadow: none;
}
.store-search:has( > input:focus) {
    box-shadow: 0 14px 20px -10px #00000024;
    border: 2px solid rgb(206 219 239);
}

.no-results i {
    font-size: 90px;
}
.no-results .title {
    direction: rtl;
    text-align: center;
    font-size: var(--font-36);
    font-weight: 600;
}

.store-title {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--section-border-color);
}



/************* estab info ************/

.estab-info i {
    color: var(--primary-color);
}

.search-box {
    box-shadow: var(--box-shadow);
    border-radius: 15px;
    padding: 5px 20px;
    margin-top: 20px;
    border: 1px solid transparent;
    transition: 200ms ;
}
.search-box:has( input:focus) {
    border: 1px solid var(--primary-color);
}

#estab-item-search,
#estab-item-search:focus {
    border-bottom: none !important;
    box-shadow: none;
}

.market-header {
    position: relative;
}

.market-header .info {
    text-align: center;
}

.blury-hero.alt-gradiant {
    height: 510px !important;
}
.market-header .info {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 103px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.market-header .info .logo img {
    width: 125px !important;
    height: 125px !important;
    border-radius: 50%;
    box-shadow: 4px 4px 10px rgb(0 0 0 / 15%);
    animation: .5s imgInlarge forwards;
}
.market-header .info .rating {
    display: flex;
    justify-content: center;
}
.market-header .info .rating i {
    font-size: var(--font-16);
    margin-top: 1px;
}
.market-header .info .details div:nth-child(1){
    opacity: 0;
    animation: fadeIn .5s ease .2s forwards;
}
.market-header .info .details div:nth-child(2){
    opacity: 0;
    animation: fadeIn .5s ease .3s forwards;
}
.market-header .info .details div:nth-child(3){
    opacity: 0;
    animation: fadeIn .5s ease .4s forwards;
}
.market-header .info .details div:nth-child(4){
    opacity: 0;
    animation: fadeIn .5s ease .5s forwards;
}



/***************** sign up **************/
.signup-form-holder {
    margin: 0 auto;
    padding-bottom: 180px;
    padding-top: 120px;
}
.temp-hide {
    display: none;
}





.driver-talent-table [type="radio"]:not(:checked)+span,
.driver-talent-table [type="radio"]:checked+span {
    padding-right: 0;
    padding-top: 25px;
}
.driver-talent-table [type="radio"]+span:before, 
.driver-talent-table [type="radio"]+span:after {
    right: auto;
    left: auto;
}

.driver-talent-table [type="radio"]:not(:checked)+span, 
.driver-talent-table [type="radio"]:checked+span {
    display: flex;
    justify-content: center;
}

.driver-talent-table th {
    display: flex;
    align-items: center;
    direction: rtl;
    text-align: right;
}
.driver-talent-table input {
    width: 110px !important;
    border-radius: 15px !important;
    text-align: center;
    margin-right: 20px !important;
    height: 50px !important;
}




/************** Recruit ************/

.background-image-desktop {
    display: block;
    height: calc(100vh - 60px);
    width: 100%;
    overflow: hidden;
}
.background-image-desktop img {
    width: 100%;
    min-height: calc(100vh - 60px);
    object-fit: cover;
    filter: brightness(0.2);
    transform: scale(1.2);
    animation: recruitImg 1s ease 500ms forwards;
}
.background-image-mobile {
    display: none;
    height: calc(100vh - 60px);
    width: 100%;
    overflow: hidden;
}
.background-image-mobile img {
    width: 100%;
    min-height: calc(100vh - 60px);
    object-fit: cover;
    filter: brightness(0.2);
    transform: scale(1.2);
    animation: recruitImg 1s ease 500ms forwards;
}



.recruit-hero-texts {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 60px;
}

.recruit-hero-texts .title {
    font-size: var(--font-36);
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
    opacity: 0;
    animation: recruitTitle 1s ease 500ms forwards;
}
.recruit-hero-texts .sub-text {
    text-align: center;
    color: rgba(230, 230, 230);
    transform: translateY(-20px);
    opacity: 0;
    animation: recruitSubtext 1s ease 800ms forwards;
}



.scroll-icon {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}
.scroll-icon i {
    font-size: 38px;
    color: var(--primary-color);
    transform: translateY(-15px);
    animation: recruitScrollIcon 3s ease infinite;
}






.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100000;
    background-color: var(--primary-color);
}
.page-loader i {
    font-size: 50px;
}



/****************** footer ***************/
.footer {
    padding: 25px 0;
    border-top: 1px solid var(--section-border-color);
}













/************* Scroll ************/
.estab-holder .row {
    transition: 500ms ease;
    transform: translateY(-20px);
    opacity: 0;
}
.estab-holder .row.active {
    transform: translateY(0);
    opacity: 1;
}
.all-merchant-link {
    opacity: 0;
    transition: 500ms ease;
}

#top-food-section .row {
    transition: 500ms ease;
    transform: translateY(-20px);
    opacity: 0;
}
#top-food-section .row.active {
    transform: translateY(0);
    opacity: 1;
}
.all-foods-link {
    transition: 500ms ease;
    opacity: 0;
}


.bg-1 { 
    background-color: var(--section-background-color);
}
.bg-2 { 
    background-color: #757575;
}




/************ Animations *************/

.rotate {
    -webkit-animation:spin 1s linear infinite;
    -moz-animation:spin 1s linear infinite;
    animation:spin 1s linear infinite;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes movePattern {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 500px 500px;
    }
    100% {
        background-position: 0 0;
    }
}

@keyframes hand-wave {
    0% {
        transform: rotate(346deg);
        transform-origin: 0% 100%;
    }
    50% {
        transform: rotate(355deg);
        transform-origin: 0% 100%;
    }
    100% {
        transform: rotate(346deg);
        transform-origin: 0% 100%;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes recruitScrollIcon {
    0% {
        transform: translateY(0) scaleX(0.8);
        opacity: 100%;
    }
    50% {
        transform: translateY(-15px) scaleX(1);
        opacity: 50%;
    }
    100% {
        transform: translateY(0) scaleX(0.8);
        opacity: 100%;
    }
}
@keyframes recruitImg {
    100% {
        transform: scale(1);
        filter: brightness(0.3);
    }
}
@keyframes recruitTitle {
    100% {
        opacity: 1;
    }
}
@keyframes recruitSubtext {
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes imgInlarge {
    0% {
        width: 100px;
    }
    100% {
        width: 125px;
    }
}
@keyframes storeSearch {
    0% {
        width: 300px;
    }
    100% {
        width: 500px;
    }
}

@keyframes bluryHero {
    100% {
        height: 260px;
    }
}



/************ Responsive *************/

.only-pc{
    display: block;
}
.only-mobile{
    display: none;
}

@media all and (max-width: 992px) and (min-width: 600px) {  
    #home-merchant-section .col:last-child {
        display: none;
    }
}

@media all and (max-width: 992px) {  
    .our-vision .info {
        width: 100%;
    }
    .our-vision .image {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .our-vision {
        flex-direction: column;
    }
    .our-vision.reversed {
        flex-direction: column-reverse;
    }
    .hero-content {
        display: block;
    }
    .hero-content .info {
        width: var(--section-width) !important;
    }
    .footer *, .footer a{
        text-align: center !important;
    }
}

@media all and (min-width: 600px) {
    .recruit-hero-texts .title {
        font-size: var(--font-45);
    }
}

@media all and (max-width: 600px) {

    .only-pc{
        display: none;
    }
    .only-mobile{
        display: block;
    }

    .enamad{
        margin: 0 auto;
    }

    .sign-background {
        background-color: transparent;
    }
    .sign-background::after {
        background: none;
    }
    #signup-page .card {
        background-color: transparent;
        box-shadow: none;
    }
 
    .scroll-to-top {
        left: 25px;
    }
    .scroll-to-top.active {
        bottom: 30px;
    }
 
    .logo-anim {
        width: 100%;
    }
    .hero-full * {
        text-align: center;
    }

    .store-search {
        width: calc(100% - 50px) !important;
    }

    .background-image-desktop {
        display: none;
    }
    .background-image-mobile {
        display: block;
    }

}