/*  import google fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
html{
    scroll-behavior: smooth;
}

/* custom scroll bar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* all similar content styling codes */
section{
    padding: 100px 0;
}
.max-width{
    max-width: 1300px;
    padding: 0 80px;
    margin: auto;
}
.about, .brands, .skills, .services, .contact, footer, .fashion, .footwear, .groceries{
    font-family: 'Poppins', sans-serif;
}
.about .about-content,
.brands .brand-content,
.skills .skills-content,
.contact .contact-content,
.fashion .fashion-content,
.footwear .footwear-content,
.groceries .groceries-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
section .title{
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Ubuntu', sans-serif;
}
section .title::before{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 280px;
    height: 3px;
    background: #111;
    transform: translateX(-50%);
}
section .title::after{
    position: absolute;
    bottom: -8px;
    left: 50%;
    font-size: 20px;
    color: #cc2c5c;
    padding: 0 5px;
    background: #fff;
    transform: translateX(-50%);
}

/* navbar styling */
.navbar{
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 30px 0;
    font-family: 'Popins', sans-serif;
    transition: all 0.3s ease;
}
.navbar.sticky{
    padding: 15px 0;
    background: #cc2c5c;
}
.navbar .max-width{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar .logo a{
    color: #cc2c5c;
    font-size: 40px;
    font-weight: 600;
    text-shadow: 0.5px 0.5px 0px #000;
}
.navbar .logo a span{
    color: #000;
    font-size: 45px;
    transition: all 0.3s ease;
    text-shadow: 0.5px 0.5px 0px #cc2c5c;
}
.navbar.sticky .logo a{
    color: #eee;
    text-shadow: 1px 1px 0px #000;
}
.navbar.sticky .logo a span{
    color: #eee;
    text-shadow: 1px 1px 0px #000;
}
.navbar .menu li{
    list-style: none;
    display: inline-block;
}
.navbar .menu li a{
    display: block;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    margin-left: 25px;
    position: relative;
}
.navbar .menu li a::after{
    content: '';
    width: 0;
    height: 3px;
    background: #cc2c5c;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}
.navbar .menu li a:hover::after{
    width: 100%;
}
.navbar.sticky .menu li a{
    color: #eee;
}
.navbar.sticky .menu li a::after{
    background: #000;
}
.menu-btn{
    color: #000;
    font-size: 25px;
    cursor: pointer;
    display: none;
}
.navbar.sticky .menu-btn{
    color: #eee;
    text-shadow: 1px 1px 0px #000;
}
.scroll-up-btn{
    position: fixed;
    height: 45px;
    width: 42px;
    background: #255c99;
    right: 30px;
    bottom: 10px;
    text-align: center;
    line-height: 45px;
    color: #eee;
    z-index: 9999;
    font-size: 30px;
    border-radius: 30px;
    border-bottom-width: 2px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}
.scroll-up-btn.show{
    bottom: 30px;
    opacity: 1;
    pointer-events: auto;
}
.scroll-up-btn:hover{
    filter: brightness(90%);
    background: #cc2c5c;
}

/* home section styling */
.home{
    display: flex;
    background: url("images/banner.png") no-repeat center;
    height: 100vh;
    color: #fff;
    min-height: 500px;
    background-size: cover;
    background-attachment: fixed;
    font-family: 'Ubuntu', sans-serif;
}
.home .max-width{
    width: 100%;
    display: flex;
    margin-top: 20%;
}
.home .max-width .row{
    margin-right: 0;
}
.home .home-content{
    width: 90%;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: right; 
}
.home .home-content .text-1{
    font-size: 35px;
    color: #000;
    text-shadow: 0.5px 0.5px 0px #666;
}
.home .home-content .text-2 span{
    font-size: 85px;
    font-weight: 600;
    color: #cc2c5c;
    text-shadow: 2px 2px 0px #000;
}
.home .home-content .text-3{
    font-size: 40px;
    margin: 5px 0;
    color: #000;
    text-shadow: 0.5px 0.5px 0px #666;
}
.home .home-content a{
    display: inline-block;
    background: #eee;
    color: #cc2c5c;
    font-size: 25px;
    padding: 12px 36px;
    margin-top: 20px;
    font-weight: 400;
    border-radius: 30px;
    border: 2px solid #cc2c5c;
    transition: all 0.3s ease;
}
.home .home-content a:hover{
    color: #000;
    background: #99c222;
    border: 2px solid #000;
    transform: translateY(-8px);
}

/* about section styling */
.about{
    color:#000;
    background: #eee;
}
.about .title::after{
    background: #eee;
    content: "who we are";
}
.about .about-content .right{
    width: 100%;
}
.about .about-content .right .text{
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}
.about .about-content .right .text span{
    color: #cc2c5c;
    font-size: 30px;
    text-align: center;
}
.about .about-content .right p{
    text-align: center;
}
.about .about-content .right a{
    display: inline-block;
    background: #cc2c5c;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 30px;
    border: 2px solid #cc2c5c;
    transition: all 0.3s ease;
}
.about .about-content .right a:hover{
    color: #cc2c5c;
    background: none;
    transform: translateY(-8px);
}

/* brands section styling */
.brands{
    color:#000;
    background: #d47491;
}
.brands .title::before{
    background: #000;
}
.brands .title::after{
    background: #d47491;
    color: #fff;
    content: "websites";
}
.brands .brand-content .card{
    width: calc(33% - 20px);
    background: #cc2c5c;
    text-align: center;
    border-radius: 15px;
    padding: 50px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.brands .brand-content .card a{
    color: #000;
}
.brands .brand-content .card:hover{
    background: crimson;
}
.brands .brand-content .card .box{
    transition: all 0.3s ease;
}
.brands .brand-content .card:hover .box{
    transform: scale(1.05);
}
.brands .brand-content .card img{
    font-size: 50px;
    color: #cc2c5c;
    transition: color 0.3s ease;
    height: 250px;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid #eee;
}
.brands .brand-content .card:hover img{
    color: #eee;
    border: 3px solid #eee;
}
.brands .brand-content .card .text{
    font-size: 25px;
    font-weight: 500;
    margin: 10px 0 7px 0;
}

/* cta section styling */
.cta h2{
    font-size: 35px;
    color: #000;
}

.cta{
    display: flex;
    background: url("images/cta.png") no-repeat center;
    height: 50vh;
    color: #fff;
    min-height: 50px;
    background-size: cover;
    background-attachment: fixed;
    font-family: 'Ubuntu', sans-serif;
}
.cta a{
    display: inline-block;
    background: #000;
    color: #eee;
    font-size: 22px;
    font-weight: 500;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 30px;
    border: 2px solid #eee;
    transition: all 0.3s ease;
    
}
.cta a:hover{
    color: #cc2c5c;
    background: #000;
    border: 2px solid #cc2c5c;
    transform: translateY(-8px);
}

/* contact section styling */
.contact{
    color:#000;
    background: #eee;
}
.contact .title::after{
    background: #eee;
    content: "get in touch";
}
.contact .contact-content .column{
    width: calc(50% - 30px);
}
.contact .contact-content .text{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.contact .contact-content .left p{
    text-align: justify;
}
.contact .contact-content .left .icons{
    margin: 10px 0;
}
.contact .contact-content .row{
    display: flex;
    height: 65px;
    align-items: center;
}
.contact .contact-content .row .info{
    margin-left: 30px;
}
.contact .contact-content .row i{
    font-size: 25px;
    color: #cc2c5c;
}
.contact .contact-content .info .head{
    font-weight: 500;
}
.contact .contact-content .info .sub-title a{
    color: #222;
}
.contact .contact-content .info .sub-title a:hover{
    color: #cc2c5c;
    font-weight: 600;
}
.contact .right form .fields{
    display: flex;
}
.contact .right form .field,
.contact .right form .fields .field{
    height: 45px;
    width: 100%;
    margin-bottom: 15px;
}
.contact .right form .textarea{
    height: 80px;
    width: 100%;
}
.contact .right form .name{
    margin-right: 10px;
}
.contact .right form .field input,
.contact .right form .textarea textarea{
    height: 100%;
    width: 100%;
    background: rgba(204, 44, 92, 0.1);
    border: 1px solid #cc2c5c;
    border-radius: 30px;
    outline: none;
    padding: 0 15px;
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}
.contact .right form .field input:focus,
.contact .right form .textarea textarea:focus{
    border-color: #eee;
}
.contact .right form .textarea textarea{
  padding-top: 10px;
  resize: none;
}
.contact .right form .button-area{
  display: flex;
  align-items: center;
}
.right form .button-area button{
  color: #eee;
  display: block;
  width: 160px!important;
  height: 45px;
  outline: none;
  font-size: 18px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  flex-wrap: nowrap;
  background: #cc2c5c;
  border: 2px solid #cc2c5c;
  transition: all 0.3s ease;
}
.right form .button-area button:hover{
  color: #000;
  background: #99c222;
}

/* popup section styling */
.popup{
    width: 300px;
    background: #eee;
    border-radius: 15px;
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.1);
    text-align: center;
    padding: 0 30px 30px;
    color: #333;
    border: 2px solid #cc2c5c;
    visibility: hidden;
    transition: transform 0.5s, top 0.5s;
}
.open-popup{
    visibility: visible;
    top: auto;
    transform: translate(-50%, -50%) scale(1);
}
.popup img{
    width: 80px;
    margin-top: -30px;
    border-radius: 50%;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}
.popup h2{
    font-size: 28px;
    font-weight: 500;
    margin: 30px 0 10px;
}
.popup button{
    width: 100%;
    margin-top: 50px;
    margin-left: 40px;
    padding: 10px 0;
    background: #cc2c5c;
    border-radius: 30px;
    outline: none;
    font-size: 18px;
    color: #000;
    cursor: pointer;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}
.popup button:hover{
    background: #99c222;
}

/* footer section styling */
footer{
    background: #222;
    padding: 15px 23px;
    color: #eee;
    text-align: center;
}
footer span a{
    color: aliceblue;
    text-decoration: none;
}
footer span a:hover{
    text-decoration: none;
    color: #cc2c5c;
}
.social-icons a span{
    margin-right: 20px;
    margin-bottom: 20px;
    color: #cc2c5c;
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    text-align: center;
    font-size: 25px;
    border-radius: 50%;
    transition: transform 0.5s;
    border: 2px solid #cc2c5c;
}
.social-icons a span:hover{
    color: #255c99;
    transform: translateY(-8px);
}

/* fashion brand section styling */
.fashion{
    color:#000;
    background: #eee;
}
.fashion .title::after{
    background: #eee;
    content: "life style";
}

.fashion .fashion-content .left{
    width: 45%;
}
.fashion .fashion-content .left img{
    height: 500px;
    width: 450px;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid #cc2c5c;
}
.fashion .fashion-content .right{
    width: 55%;
}
.fashion .fashion-content .right .text{
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}
.fashion .fashion-content .right .text span{
    color: #cc2c5c;
    font-size: 30px;
    text-align: center;
}
.fashion .fashion-content .right p{
    text-align: justify;
}
.fashion .fashion-content .right a{
    display: inline-block;
    background: #cc2c5c;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 30px;
    border: 2px solid #cc2c5c;
    transition: all 0.3s ease;
}
.fashion .fashion-content .right a:hover{
    color: #cc2c5c;
    background: none;
    transform: translateY(-8px);
}

/* footwear brand section styling */
.footwear{
    color:#000;
    background: #eee;
}
.footwear .title::after{
    background: #eee;
    content: "footprints";
}

.footwear .footwear-content .left{
    width: 45%;
}
.footwear .footwear-content .left img{
    height: 500px;
    width: 450px;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid #cc2c5c;
}
.footwear .footwear-content .right{
    width: 55%;
}
.footwear .footwear-content .right .text{
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}
.footwear .footwear-content .right .text span{
    color: #cc2c5c;
    font-size: 30px;
    text-align: center;
}
.footwear .footwear-content .right p{
    text-align: justify;
}
.footwear .footwear-content .right a{
    display: inline-block;
    background: #cc2c5c;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 30px;
    border: 2px solid #cc2c5c;
    transition: all 0.3s ease;
}
.footwear .footwear-content .right a:hover{
    color: #cc2c5c;
    background: none;
    transform: translateY(-8px);
}

/* groceries brand section styling */
.groceries{
    color:#000;
    background: #eee;
}
.groceries .title::after{
    background: #eee;
    content: "food & beverages";
}

.groceries .groceries-content .left{
    width: 45%;
}
.groceries .groceries-content .left img{
    height: 500px;
    width: 450px;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid #cc2c5c;
}
.groceries .groceries-content .right{
    width: 55%;
}
.groceries .groceries-content .right .text{
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}
.groceries .groceries-content .right .text span{
    color: #cc2c5c;
    font-size: 30px;
    text-align: center;
}
.groceries .groceries-content .right p{
    text-align: justify;
}
.groceries .groceries-content .right a{
    display: inline-block;
    background: #cc2c5c;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 30px;
    border: 2px solid #cc2c5c;
    transition: all 0.3s ease;
}
.groceries .groceries-content .right a:hover{
    color: #cc2c5c;
    background: none;
    transform: translateY(-8px);
}


/* =============================================================== */
/* responsive media query start */
@media (max-width: 1104px) {
    .about .about-content .left img,
    .fashion .fashion-content .left img,
    .footwear .footwear-content .left img,
    .groceries .groceries-content .left img{
        height: 350px;
        width: 350px;
    }
}

@media (max-width: 991px) {
    .max-width{
        padding: 0 10px;
    }
}
@media (max-width: 947px){
    .menu-btn{
        display: block;
        z-index: 999;
    }
    .menu-btn i.active:before{
        content: "\f00d";
    }
    .navbar .menu{
        position: fixed;
        height: 100vh;
        width: 100%;
        left: -100%;
        top: 0;
        background: #cc2c5c;
        text-align: center;
        padding-top: 80px;
        transition: all 0.3s ease;
    }
    .navbar .menu.active{
        left: 0;
    }
    .navbar .menu li{
        display: block;
    }
    .navbar .menu li a{
        display: inline-block;
        margin: 20px 0;
        font-size: 25px;
        color: #fff;
    }
    .home .home-content{
        top: 50%;
    }
    .home .home-content .text-1{
        font-size: 20px;
    }
    .home .home-content .text-2 span{
        font-size: 35px;
        text-shadow: 0.5px 0.5px 0px #000;
    }
    .home .home-content .text-3{
        font-size: 25px;
    }
    .home .home-content a{ /* banner button */
        font-size: 23px;
        padding: 10px 30px;
    }
    .max-width{
        max-width: 930px;
    }
    .home .max-width{
        width: 100%;
        display: flex;
        margin-top: 5%;
}
    .about .about-content .column,
    .fashion .fashion-content .column,
    .footwear .footwear-content .column,
    .groceries .groceries-content .column{
        width: 100%;
    }
    .about .about-content .left,
    .fashion .fashion-content .left,
    .footwear .footwear-content .left,
    .groceries .groceries-content .left{
        display: flex;
        justify-content: center;
        margin: 0 auto 60px;
    }
    .about .about-content .right,
    .fashion .fashion-content .right,
    .footwear .footwear-content .right,
    .groceries .groceries-content .right{
        flex: 100%;
    }
    .brands .brand-content .card{
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }
    .contact .contact-content .column{
        width: 100%;
        margin-bottom: 35px;
    }
}

@media (max-width: 690px) {
    .max-width{
        padding: 0 23px;
    }
    .navbar .logo a{
        font-size: 35px;
        text-shadow: 0.5px 0.5px 0px #000;
    }
    .navbar .logo a span{
        font-size: 42px;
        text-shadow: 0.5px 0.5px 0px #000;
    }
    .home .home-content{
        top: 50%;
    }
    .home .home-content .text-1{
        font-size: 20px;
        margin-top: 90%;
    }
    .home .home-content .text-2{
        font-size: 35px;
        text-shadow: 0.5px 0.5px 0px #000;
    }
    .home .home-content .text-3{
        font-size: 25px;
    }
    .home .home-content a{
        font-size: 20px;
    }
    .brands .brand-content .card{
        width: 100%;
    }
}

@media (max-width: 500px) {
    .home .home-content{
        top: 50%;
    }
    .home .home-content .text-1{
        font-size: 20px;
        margin-top: 90%;
    }
    .home .home-content .text-2{
        font-size: 35px;
        text-shadow: 0.5px 0.5px 0px #000;
    }
    .home .home-content .text-3{
        font-size: 25px;
    }
    .about .about-content .right .text,
    .fashion .fashion-content .right .text,
    .footwear .footwear-content .right .text,
    .groceries .groceries-content .right .text{
        font-size: 19px;
    }
    .contact .right form .fields{
        flex-direction: column;
    }
    .contact .right form .name,
    .contact .right form .email{
        margin: 0;
    }
    .right form .error-box{
       width: 150px;
    }
    .scroll-up-btn{
        right: 15px;
        bottom: 15px;
        height: 38px;
        width: 35px;
        font-size: 23px;
        line-height: 38px;
    }
}
