@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&family=Quicksand:wght@400;500&display=swap');

:root{
    --primary-color: #47b11d;
    --secondary-color: #353747;
    --whitespace: #f6fff6;
    --swiper-navigation-size: 26px !important;
}
*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}
body{
    font-family: "Quicksand", sans-serif;
    background:var(--whitespace);
    scroll-behavior: smooth;
}
ul{
    list-style: none;
}
a{
    text-decoration: none;
}
img{
    width:100%;
    height:100%;
    object-fit: cover;
}
.inner-row{
    width:90%;
    margin:auto;
}
header .top-bar{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .left-top-bar .logo{
    width:250px;
    height: 80px;
}
.left-top-bar .logo img{
    object-fit: contain;
}
.right-top-bar{
    display:flex;
    gap:50px;
    align-items: center;
}
.right-top-bar .simple-heads-up{
    display: flex;
    gap:5px;
    align-items: center;
}
.simple-heads-up .icon-section{
    width:35px;
    height:35px;
}
.simple-heads-up .content h3{
    text-transform: uppercase;
    font-size:14px;
    font-family: "Montserrat";
    font-weight: 500;
}
.simple-heads-up .content p{
    font-weight: 500;
    font-size:14px;
}
.action-bar{
    display: flex;
    gap: 2px;
    align-items: center;
    background:var(--primary-color);
    color:whitesmoke;
    width:150px;
    height:35px;
    justify-content: center;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    cursor: pointer;
}

.action-bar h4{
    font-size:15px;
    font-weight: 500;
    line-height: 25px;
}
header{
    background:white;
    padding-bottom: 15px;
    position: fixed;
    top:0;
    width:100%;
    z-index: 100;
    box-shadow: 0 2px 2px -1px rgb(226, 226, 226);

}
header nav{
    width:95%;
    margin:auto;
}
header nav ul{
    display: flex;
    justify-content: right;
    gap:50px;
}
header nav ul li a{
    height:30px;
    display: flex;
    align-items: center;
    padding:0 8px;
    font-weight: 500;
    color:var(--secondary-color);
    position:relative; 
}

header nav ul li a::after{
    width: 0;
    height:2px;
    background:var(--primary-color);
    content:"";
    position: absolute;
    bottom: 0;
    left:0;
    transition:all 0.5s ease-in-out;
    -webkit-transition:all 0.5s ease-in-out;
    -moz-transition:all 0.5s ease-in-out;
    -ms-transition:all 0.5s ease-in-out;
    -o-transition:all 0.5s ease-in-out;
}
header nav ul li a:hover::after,
header nav ul li.active a::after{
   width: 100%;
}
header nav ul li.active a{
    color:var(--primary-color);
}

.navTrigger{
    cursor: pointer;
    width:30px;
    height:25px;
    margin:auto;
    position:absolute;
    right:20px;
    top:30px;
    display: none;
}
.navTrigger i{
    background:#111;
    width:100%;
    content: "";
    display:block;
    height:4px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}
.navTrigger i:nth-child(1){
    animation:outTp 0.8s backwards;
    -webkit-animation:outTp 0.8s backwards;
    animation-direction: reverse;
}
.navTrigger i:nth-child(2){
    margin:5px 0;
    animation:outMd 0.8s backwards;
    -webkit-animation:outMd 0.8s backwards;
    animation-direction: reverse;
}
.navTrigger i:nth-child(3){
    animation:outBtm 0.8s backwards;
    -webkit-animation:outBtm 0.8s backwards;
    animation-direction: reverse;
}
.navTrigger.active i:nth-child(1) {
    -webkit-animation: inTp 0.8s forwards;
    animation: inTp 0.8s forwards;
}

.navTrigger.active i:nth-child(2) {
    -webkit-animation: inMd 0.8s forwards;
    animation: inMd 0.8s forwards;
}

.navTrigger.active i:nth-child(3) {
    -webkit-animation: inBtm 0.8s forwards;
    animation: inBtm 0.8s forwards;
}
/*Keyframes*/
@keyframes inMd {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@keyframes outMd {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@keyframes inTp {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@keyframes outTp {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}


@keyframes inBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes outBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

#landing{
    margin-top: 125px;
}
.landing-slides{
    width:100%;
    height:60vh;
}

.swiper-button-prev,
.swiper-button-next{
    color: var(--primary-color) !important;
}
.swiper-pagination-bullet{
    background:gainsboro !important;

}
.swiper-pagination-bullet-active{
    background:var(--primary-color) !important;
}


#about-us{
    padding:80px 0;
}

.about-us-content{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap:50px;
    
}
.about-description{
    display: flex;
    align-items: center;
    padding-right: 50px;
}
.about-description h3{
    text-transform: uppercase;
    font-size: 30px;
    font-family: "Montserrat";
    font-weight: 500;
}
.about-description h1{
    font-size: 40px;
    font-family: "Montserrat";
    color:var(--primary-color);
    text-transform: uppercase;
}
.about-description .emphasis{
    display: flex;
    align-items: center;
    margin:15px 0;
    gap:50px;
}
.emphasis .emphasis-line{
    width:30%;
    height:2px;
    border-radius: 10px;
    background-color: var(--secondary-color);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.emphasis h4{
    text-transform: uppercase;
    font-size: 20px;
    font-family: "Montserrat";
    font-weight: 500;
    color:var(--secondary-color);
}
.about-description p{
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 28px;
}
.about-description .btn-section{
    margin-top:30px;
}
.btn-section a{
    width:150px;
    height:45px;
    border:1px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    color:var(--primary-color);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}
.btn-section a:hover{
    background:var(--primary-color);
    color:white;
    box-shadow: 0px 0px 5px 1px #a2ff7a;
}
.about-images-column{
    position:relative;
    padding-bottom: 120px;
    height:450px;
}
.about-images-column .image-one{
    position:absolute;
    top:0;
    width:350px;
    height:200px;
    z-index:3;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    overflow:hidden;
}
.about-images-column .image-two{
    position:absolute;
    top:25%;
    right:0px;
    width:70%;
    height:250px;
    z-index:2;
    background: radial-gradient(#f6fff6a4, #f6fff6), url("../images/shoppers.jpg") no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.about-images-column .image-three{
   width:200px;
   height:150px;
   bottom:0px;
   left:10%;
   position:absolute;
   z-index:3;
   border-radius: 5px;
   -webkit-border-radius: 5px;
   -moz-border-radius: 5px;
   -ms-border-radius: 5px;
   -o-border-radius: 5px;
   overflow: hidden;
}

#stores{
    padding:30px 0px  80px;
}

.title-content{
    text-align: center;
}
.title-content h1{
    font-size:40px;
    font-family: "Montserrat";
    text-transform: uppercase;
    margin-bottom: 10px;
}
.title-content p{
    font-size:18px;
    font-weight: 500;
    color:var(--primary-color);
}
.stores-logos{
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    margin: 50px auto 0 auto;
    gap:50px;
    justify-content: center;

}
.store-moja{
    width:150px;
    height:150px;
    background-color: white;
    box-shadow: 0px 0px 5px -1px rgb(151, 150, 150);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    flex-shrink: 0;
}
.store-moja a{
    display: flex;
    height: inherit;
    justify-content: center;
    align-items: center;
}
.store-moja img{
    width:80%;
    height:60%;
    object-fit: contain;
}

.action-btn{
    text-align: center;
    margin-top:50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.action-btn a{
    font-size:17px;
    color: var(--primary-color);
    transition: margin 0.5s ease-in;
    -webkit-transition: margin 0.5s ease-in;
    -moz-transition: margin 0.5s ease-in;
    -ms-transition: margin 0.5s ease-in;
    -o-transition: margin 0.5s ease-in;
}
.action-btn i{
    font-size: 18px;
    color: var(--primary-color);
    margin-top: 5px;
}
.action-btn a:hover{
    margin-right: 5px;
}

#directory-action{
    height:350px;
    position:relative;
    overflow: hidden;
    display: flex;
}
#directory-action:hover .background-image{
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}
.directory-action-content .background-image{
    width:100%;
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    z-index:2;
    transition:transform .5s ease-in-out;
    -webkit-transition:transform .5s ease-in-out;
    -moz-transition:transform .5s ease-in-out;
    -ms-transition:transform .5s ease-in-out;
    -o-transition:transform .5s ease-in-out;
}
.background-image .overlay{
    position:absolute;
    background:linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
    top:0;
    bottom:0;
    z-index: inherit;
    left:0;
    right:0;
}
.directory-action-content .action-content{
    z-index: 3;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.directory-action-content .action-content h1{
   font-size: 45px;
   color:white;
   font-family: "Montserrat";
   margin-bottom: 10px;
}
.action-content p{
    width:700px;
    color:white;
    font-size: 17px;
    line-height: 30px;
}
.action-content .directory-btn{
    width:200px;
    border-radius: 5px;
    height:45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color:white;
    border:2px solid white;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

#directory-action:hover .action-content .directory-btn{
    background:white;
    color:black;
}
.action-content .directory-btn:hover{
    color:var(--primary-color) !important;
}
#promotions{
    padding:80px 0;
}

.promotions-intro{
    text-align: center;
}

.promotions-intro h1{
    font-size:40px;
    font-family: "Montserrat";
    text-transform: uppercase;
    margin-bottom: 10px;
}
.promotions-intro p{
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
}
.promotions-container{
    display: flex;
    justify-content: center;
    gap:20px;
    margin-top:40px;
    flex-wrap: wrap;
}
.promotion-moja{
    width:350px;
    height: 350px;
}

#events{
    padding:80px 0;
    background:rgb(242, 250, 245);
}
#events .inner-row{
    width: 95%;
}
.events-container{
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
    gap:40px;
    margin-top:40px
}
.event-moja{
    width:350px;
   box-shadow: 0px 0px 4px 1px gainsboro;
   flex-shrink: 0;
}
.event-moja .bottom-split{
    padding:10px 20px 20px 20px;
    background-color:white;
}
.event-moja .bottom-split .date{
    display: flex;
    gap:5px;
}
.event-moja .bottom-split p{
    font-size: 14px;
}
.event-moja .line-split{
    width:100%;
    height: 1px;
    background:gainsboro;
    margin:10px 0;
}
.event-moja .bottom-split h2{
    text-transform: uppercase;
    font-family: "Montserrat";
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}
.event-moja .bottom-split p{
    font-size:16px;
    line-height: 25px;
}
.event-moja .left-split .event-btn{
    margin-top:10px;
    display: flex;
    width:100px;
    background-color: var(--primary-color);
    color:white;
    height:40px;
    align-items: center;
    justify-content: center;
    font-size:15px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.event-moja .right-split{
    width:230px;
    flex-shrink: 0;
}
.right-split img{
    object-fit: cover;
}

#help{
    padding:60px 0 100px;
}
.help-content{
    display:grid;
    grid-template-columns: repeat(2,1fr);
    gap:30px;
}
.maneno-side{
    width:80%;
}
.maneno-side h1{
    font-size:50px;
    font-family: "Montserrat";
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 20px;
}
.maneno-side p{
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
}
.maneno-side a{
    text-decoration: underline;
    color:#353747;
    font-weight: 500;
    display: block;
    margin:20px 0;
    font-size: 18px;
    transition: padding 0.5s ease;
    -webkit-transition: padding 0.5s ease;
    -moz-transition: padding 0.5s ease;
    -ms-transition: padding 0.5s ease;
    -o-transition: padding 0.5s ease;
}
.maneno-side a:hover{
   padding-left: 10px;
}

#call-to-action{
    background-color: rgb(242, 250, 245);
    position: relative;
}

.call-to-action-content{
    display: flex;
    padding:50px 30px;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    background:white;
    box-shadow: 0px 0px 3px -1px rgb(145, 145, 145);
    margin-bottom:-100px;
    position: relative;
    z-index: 3;
}
.action-left h1{
    font-family: "Montserrat";
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 10px;
}
.action-left p{
    font-size:17px;
    font-weight: 500;
    width:70%;
    line-height: 25px;
}
.action-right a{
    border:2px solid #222;
    width:150px;
    height:45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    font-weight: 500;
    color:#333;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.call-to-action-content:hover .action-right a{
    color:var(--primary-color);
    border:2px solid var(--primary-color);
}


footer{
    padding:100px 0;
    background:rgb(19, 24, 19);
    position: relative;
}
.footer-intro{
    margin-top: 50px;
}
.footer-logo{
    width:200px;
    margin:5px auto;
}
.footer-intro p{
    color:whitesmoke;
    width:60%;
    margin:auto;
    text-align: center;
    line-height: 25px;
}
.footer-line-through{
    width:80%;
    height:1px;
    background:rgba(220, 220, 220, 0.26);
    margin:50px auto;
}
.footer-column-row{
    margin-top:40px;
    color:whitesmoke;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    margin-left: 10%;
}
.footer-column-moja .footer-header h2{
    text-transform: uppercase;
    font-family: "Montserrat";
    font-size:18px;
    font-weight: 500;
    margin-bottom: 15px;
}
.footer-column-moja .footer-header h2::after{
    content:"";
    width:80px;
    height:2px;
    background:whitesmoke;
    display:block;
    margin:10px 0 5px 0;
}
.footer-column-moja ul.info li{
    line-height: 35px;
}

.footer-column-moja ul li a{
    color:whitesmoke;
    font-size: 16px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.footer-column-moja .info li a:hover{
    padding-left:10px;
}
.footer-column-moja p{
    line-height: 35px;
}
.footer-column-moja p i{
    margin-right: 5px;
    font-size: 18px;
}
.footer-column-moja .form-control{
    width:200px;
    height:40px;
    border:none;
    outline:none;
    background:white;
    padding-left:5px;
    font-family: "Quicksand";
    font-size:16px;
}
.newsletter-form ::placeholder{
    font-size:14px;
}
.newsletter-form form{
    display:flex;
    gap:5px;
    margin-bottom: 20px;
}
.newsletter-form button{
    width:100px;
    height:40px;
    background:white;
    text-transform: uppercase;
    font-family: "Quicksand";
    font-weight: 500;
    border:none;
    font-size: 14px;
}
.footer-column-moja h3{
    font-size:18px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.footer-column-moja .footer-social-links ul{
    display:flex;
    gap:30px;
    flex-wrap: wrap;
}
.footer-column-moja .footer-social-links ul li a{
    width:45px;
    height:45px;
    border:1px solid whitesmoke;
    display:inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.footer-column-moja .footer-social-links ul li a:hover{
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
}
.footer-column-moja .footer-social-links ul li:nth-child(1):hover a{
    color:#4267B2;
}
.footer-column-moja .footer-social-links ul li:nth-child(2):hover a{
    color:#1DA1F2;
}
.footer-column-moja .footer-social-links ul li:nth-child(3):hover a{
   color:#C13584;
}
.footer-column-moja .footer-social-links ul li:nth-child(4):hover a{
    color:#c4302b;
}
.copyright{
    background:rgb(19, 24, 19);
    display:flex;
    justify-content: space-between;
    padding:30px 50px;
    border-top: 1px solid rgba(231, 231, 231, 0.315);
}
.copyright p{
    font-size:12px;
    color:whitesmoke;
}
.copyright .right-copyright{
    display:flex;
    align-items: center;
    gap:5px;
}
.right-copyright a{
    color:rgb(51, 197, 223);
    font-size:13px;
}


@media(max-width:1200px){
    .maneno-side{
        width:100%;
    }
}
@media(max-width:1020px){
    .right-top-bar{
        display: none;
    }
    .navTrigger{
        display: block;
    }
    header{
       padding-bottom: 0;
    }
    header nav{
        border-top:1px solid gainsboro;
        padding: 10px 0;
        display:none;
}
    header nav.show{
        display: block;
    }
    header nav ul{
        flex-direction: column;
        gap:25px;
    }
    header nav ul li a{
         display: inline-flex;
         padding:0;
    }
    #landing{
        margin-top:80px;
    }

    .about-us-content{
        grid-template-columns: repeat(1,1fr);
    }

    .directory-action-content .action-content{
         flex-direction: column;
         text-align: center;
         gap:20px;
    }
    .footer-column-row{
        grid-template-columns: repeat(2,1fr);
        gap:10px;
    }
    .help-content{
        grid-template-columns: repeat(1,1fr);
    }
    .maneno-side{
        text-align: center;
    }
}
@media(max-width:768px){
     .action-content p{
        width:100%;
     }
     .event-moja{
        width:100%;
     }
     .call-to-action-content{
        flex-direction: column;
        gap:20px;
        text-align: center;
     }
     .action-left p{
        width:100%;

     }
     .footer-column-row{
        grid-template-columns: repeat(1,1fr);
     }
     .footer-intro p{
        width:100%;
     }
     .copyright{
        flex-direction: column;
        gap:10px;
        text-align: center;
     }
     .copyright .right-copyright{
        justify-content: center;
     }
}
@media(max-width:600px){
    header .left-top-bar .logo{
        width:200px;
    }
    header .inner-row{
        width:95%;
    }
    #directory-action{
        height:auto;
        padding:60px 0;
    }
    .footer-column-row{
        margin-left:0;
    }
    .footer-line-through{
        width:100%;
    }
}

@media(max-width:480px){
    .event-moja{
        width:90%;
    }
    .promotions-intro h1,
    .title-content h1,
    .about-description h1{
        font-size: 30px;
    }
    .about-description h3{
        font-size:20px;
    }
    .about-description{
        text-align: center;
        padding-right:0;
    }
    .about-description .emphasis{
        gap:10px;
        justify-content: center;
    }
    .emphasis h4{
        font-size:15px;
    }
    .btn-section a{
        margin:auto;
    }
    .event-moja{
        flex-direction: column;
    }
    .event-moja .right-split{
        width:100%;
        height:200px;
    }
    .promotion-moja{
        width:250px;
        height:250px;
    }
    .about-images-column .image-one{
        width:90%;
    }
    .action-right a{
        width:80%;
        font-size:15px;
        margin:auto;
    }
    .newsletter-form form{
        flex-direction: column;
    }
    .footer-column-moja .form-control{
        width:100%;
    }
    .copyright .right-copyright{
        flex-direction: column;
     }

}