@font-face {
    font-family: "a";
    src: url("./fonts/static/OpenSans-Light.ttf");
}

@font-face {
    font-family: "b";
    src: url("./fonts/static/OpenSans-Bold.ttf");
}

:root {
    --pink-color: #e21b70;
    --pink-hover: #C21760;
    --dark-gray: #414B54;
}

* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

html,
body {
    width: 100%;
    height: 100%;
}

main {
    position: relative;
    overflow: hidden;
}

html {
    font-size: 10px;
}

/* Header styling */
header {
    box-sizing: border-box;
    width: 100%;
    height: 60px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
    position: fixed;
    z-index: 1;
    top: 0;
    background: #fff;
}

.logo {
    width: 130px;
}

button {
    cursor: pointer;
}

.pink-btn {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 500;
    background-color: var(--pink-color);
    padding: 1rem 1.3rem;
    border-radius: 5px;
    text-decoration: none;
    transition: .4s;
    border: none
}

.pink-btn:hover {
    transform: scale(1.1);
    background-color: var(--pink-hover);
}

.login-btn:hover {
    transform: scale(1.1);
    background-color: #f7f7f7;
}

.navigation {
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    gap: 2.1rem;
}

.login-btn {
    text-decoration: none;
    font-size: 1.5rem;
    padding: .6rem 1.3rem;
    border-radius: 5px;
    border: 1px solid #000;
    transition: .4s;
    color: #000;
}

.icon {
    font-size: 1.8rem;
    color: transparent;
    -webkit-text-stroke: 1px black;
}

#lang-dropdown {
    padding: 1rem 1.4rem;
    border: none;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    border-radius: 5px;
}

#lang-dropdown:hover {
    background-color: #F0F2F2;
}

.shopping-icon {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .4s ease-in;
}

.shopping-icon:hover {
    background-color: #F0F2F2;

}

/* header styling End  */

/* Page-1 styling */
.page-1 {
    margin-top: 60px;
    width: 100vw;
    height: 80vh;
    background-color: #F7F7F7;
    display: flex;
}

.left {
    width: 50%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-left: 3rem;
}

.left h1 {
    font-size: 3.31rem;
    color: #414B54;
    margin-bottom: 3rem;
}

.right {
    width: 50%;
    display: flex;
    justify-content: end;
    align-items: end;
}

.right img {
    width: 100%;
    height: 80%;
    position: relative;
    left: 20%;
}

/* inp-box */

.inp-container {
    width: 93%;
    height: 30px;
    background-color: #fff;
    box-shadow: rgba(200, 200, 200, 0.559) 0px 6px 12px -2px, rgba(255, 255, 255, 0.765) 0px 3px 7px -3px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    padding: 2.2rem 2rem;
    align-items: center;
}

.inp-inner-box {
    width: 80%;
}

.inp {
    padding: 1.5rem 1rem;
    border: 1px solid #c1c1c1;
    border-radius: 6px;
    display: flex;
    gap: 5%;

    &>input {
        border: none;
        outline: none;
        width: 65%;
        font-size: 1.5rem;
        padding-left: 1rem;
    }
}

.location-box {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.location-box span {
    font-size: 1.5rem;
}

.pink-icon {
    font-size: 2rem;
    color: var(--pink-color);
    margin-right: 1.2rem;
}

/* End */

/* Page-2 styling */
.page-2 {
    position: relative;
    margin-top: 5rem;
}

.primary-heading {
    font-size: 3rem;
    margin: 0 0 4rem 2rem;
}

.page-2 .img {
    min-width: 50vw;
    min-height: 60vh;
    background: url("https://images.deliveryhero.io/image/foodpanda/home-vendor-pk.jpg?width=1264&height=808.96") no-repeat;
    background-position: center right;
    background-size: cover;
}

.box {
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.16);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    z-index: 1;
    background-color: #fff;
    bottom: 10%;
    left: 2rem;
    border-radius: 10px;
    width: 47rem;
    transform: translate(3rem, -11rem);
    justify-content: start;
    align-items: start;
}

.primary-para {
    font-size: 1.4rem;
    color: var(--dark-gray);
}

.box > h3 {
    font-size: 2.2rem;
    font-weight: lighter;
}

/* END */

/* Page-3 styling */
.page-3 {
    position: relative;
}

.cities-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.5rem;
}

.cities {
    width: 35rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.cities figure {
    width: 100%;
    height: 100%;
}

.cities img {
    border-radius: 20px;
    max-width: 100%;
    max-height: 100%;
    transition: .3s;
}

.cities img:hover {
    transform: scale(1.1);
}

.cities span {
    padding: 1rem;
    border: none;
    border-radius: 10px;
    background-color: #fff;
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    font-size: 1.6rem;
    color: #000;
}

/* END */


/* page-4 styling */
.page-4 {
    position: relative;
    margin: 4.5rem;
}

.page-4 :is(.primary-heading) {
    margin: 0;
}

.page-4 .app-download {
    display: flex;
    width: 100%;
    height: 22vw;
    border-radius: 10px;
    margin-top: 3rem;
    border-radius: 12px;
    background-color: var(--pink-color);
    color: #fff;
}

.app-download>div {
    width: 50%;
    height: 100%;
}

.download-content {
    padding: 2rem;
}

.download-content-heading {
    font-size: 1.8rem;
    font-family: "b";
}

.download-content-inner {
    display: flex;
    gap: 5%;
    margin: 2rem 0;
}

.download-content-QR {
    max-height: 88px;
    max-width: 88px;
    padding: 8px;
    border: 1px solid #fff;
    border-radius: 10px;
}

.download-content-para {
    font-size: 1.5rem;
    min-width: 70%;
    line-height: 2.7rem;
}

.download-content-links {
    display: flex;
    gap: 1rem;
}

.app-download-banner {
    display: flex;
    justify-content: end;
    position: relative;
    bottom: 7rem;
    min-width: 35rem;
    min-height: 35rem;
}

.app-download-banner img {
    width: 100%;
    height: 100%;
    /* max-height: 90%; */
}

/* END */

/* page-5 styling */

.page-5 {
    position: relative;
}

.page-5 .img {
    min-width: 50vw;
    min-height: 60vh;
    background: url("https://images.deliveryhero.io/image/foodpanda/home-corporate-pk.jpg?width=1920&height=1228.8") no-repeat;
    background-position: center right;
    background-size: cover;
}

/* End */

/* page-6 styling */
.page-6 {
    margin: 7rem;
    margin-top: 0;
}

.page-6 p {
    color: var(--dark-gray);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 100;
    line-height: 2.7rem;
    font-family: "a";
}

.page-6 h3 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    font-family: "b";
}

.faq>.faq-head {
    font-size: 2.1rem;
}

.faq h4 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-family: "b";
}

.page-6 ul li {
    display: flex;
    gap: 1rem;
}

.page-6 ul {
    list-style: none;
}

.page-6 ul span {
    color: var(--pink-color);
    font-size: 1.6rem;
}

hr {
    border: none;
    border-top: 1px solid #ebebeb;
}

.page-6 a {
    color: var(--pink-color);
    font-family: "b";

    &:hover {
        color: var(--pink-hover);
    }
}

/* END */
/* footer styling */
footer {
    padding: 3rem;
    /* display: flex;
    flex-direction: column;
    align-items: center; */
}

footer>div {
    padding: 2rem;
}

footer a {
    font-size: 1.5rem;
    color: var(--dark-gray);
    font-family: "b";
    padding: 1rem;
}

.footer-1 {}

.footer-2 {
    display: flex;
    gap: 3%;
}

.footer-2-logo {
    font-size: 1.4rem;
    color: var(--dark-gray);
}

.footer-2>div {
    flex: 1;
}

.footer-2>div:not(:first-child) {
    display: flex;
    flex-direction: column;
}

.footer-3 {
    display: flex;
    justify-content: space-between;
}

.vl {
    border-right: 1px solid #000;
    width: 1px;
    height: 100%;
}

.food-panda {
    display: flex;
    gap: .5rem;
    justify-content: center;
}

.footer-branding-logos,
.footer-social-links {
    display: flex;
    gap: 1rem;
}

.footer-social-links i {
    font-size: 1.5rem;
    border-radius: 50%;
    border: 1px solid #000;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
}

.footer-social-links i:hover {
    cursor: pointer;
    width: 35px;
    height: 35px;
}