/*Google font Popppins*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    padding: 0;
    margin: 0%;
    box-sizing: border-box;
}

html {
    font-family: 'Poppins', sans-serif;
}

:root{
    --cursor: url(img/cusour.png), auto;
}

body {
    width: 100%;
    height: 105vh;
    background: #22259e;
    display: flex;
    align-items: center;
    justify-content: center;
}

header {
    position: relative;
    width: 80%;
    height: 90%;
    background: linear-gradient(100deg, #153777, #2765b2);
    box-shadow: 0px 1.875rem 1.5625rem -0.0625rem rgba(0, 0, 0, .6);
    padding: 0px 1.875rem;
}

header nav {
    width: 100%;
    height: 15%;
    /* border: 1px solid #fff; */
    display: flex;
    align-items: center;
    justify-content: space-between;  
}

header nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

header nav ul li {
   padding: .1875rem .625rem;
}

header nav ul li a {
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    color: rgba(238, 238, 238, .85);
    transition: .3s linear;
    cursor: var(--cursor);
 }

 header nav ul li a:hover {
    color: #fff;
 }

 header nav .buy-nav-btn {
    text-decoration: none;
    color: rgba(238, 238, 238, .95);
    font-size: 11px;
    font-weight: 600;
    padding: 5px 20px;
    border: 2px solid rgba(238, 238, 238, .95);
    border-radius: 20px;
    cursor: var(--cursor);
    transition:.3s linear;
}

header nav .buy-nav-btn:hover {
    color: #fff;
    border: 2px solid #fff;
}

header section {
    width: 100%;
    height: 85%;
    /* border: 1px solid #fff; */
    display: flex;
}

header section .left-bx , 
.right-bx {
    position: relative;
    width: 60%;
    height: 100%;
    /* border: 1px solid #fff; */
}

header section .right-bx {
    width: 40%;
}

header section .left-bx #left-btn {
    position: absolute;
    left: 0;
    top: 3.75rem;
    color: #fff;
    font-size: 12px;
    cursor: var(--cursor);
    transition: .3s linear;
}

header section .left-bx #left-btn:hover {
    color: #2d71c0;
}

header section .left-bx {
    padding: .1rem 0 0 4.375rem;
}    

header section .left-bx .content {
    /* border: 1px solid #fff; */
    color: #fff;
} 

header section .left-bx .content h1 {
    font-size: 40px;
    font-weight: 700;
}

header section .left-bx .content p:nth-child(2) {
    font-size: 11px;
    color:rgba(255, 255, 255, .45);
}

header section .left-bx .content h2 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;  
}

header section .left-bx .content .nutrition-bx {
    display: flex;
    align-items: center;
    margin-top: 10px;  
}

header section .left-bx .content .nutrition-bx .card {
    position: relative;
    width: 80px;
    height: 80px;
    background: rgba(45, 113, 192, .5);
    margin-right: 5px;
}

header section .left-bx .content .nutrition-bx .card:nth-child(1) {
    background: rgba(45, 113, 192, 1);
}

header section .left-bx .content .nutrition-bx .card p {
    font-size: 7px;
    text-align: center;
    color: rgba(255, 255, 255, .7);
    font-weight: 600;
    margin-top: 15px;
}

header section .left-bx .content .nutrition-bx .card:nth-child(1) p {
    margin-top: 5px;
}

header section .left-bx .content .nutrition-bx .card h3 {
    font-weight: 600;
    text-align: center;
    margin-top: 2px;
}

header section .left-bx .content .nutrition-bx .card h6 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25%;
    background: rgba(56, 126, 206, .5);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
}

header section .left-bx .content .nutrition-bx .card:nth-child(1) h6 {
    background: rgba(56, 126, 206);
}

header section .left-bx .content p:nth-child(5) {
    font-size: 10px;
    color: rgba(255, 255, 255, .5);
    margin-top: 5px;
}

header section .left-bx .content button {
    margin-top: 30px;
    padding: .1875rem  2.5rem;
    border-radius: 1.25rem;  
    border: 2px solid #fff;  
    background: transparent;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: .6875rem;
    transition: .3s linear;
    cursor: var(--cursor);    
}

header section .left-bx .content button:hover {
    background: #2d71c0;
}

header section .left-bx .item-bx {
    display: flex;
    align-items: center;
    /* border: 1px solid #fff; */
    margin-top: 19px;
}

header section .left-bx .item-bx .card-pepsi {
    width: 30px;
    /* border: 1px solid #fff; */
    margin-right: 1.875rem;
    overflow: hidden;
    cursor: var(--cursor);
    z-index: 999;
}

header section .left-bx .item-bx .card-pepsi img {
    width: 30px;
    transition: .3s linear;
}

header section .left-bx .item-bx .card-pepsi h6 {
    width: 100%;
    text-align: center;
    color: #2c6cbb;
}

header section .left-bx .item-bx .card-pepsi:hover h6 {
    color: #fff;
}

header section .right-bx .right-btn-bx {
    position: absolute;
    top: 60px;
    right: 0;
    color: #fff;
    display: flex;
    align-items: center;
}

header section .right-bx .right-btn-bx span {
    font-size: 8px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.501);
    margin-right: 7px;
}

header section .right-bx .right-btn-bx .bi {
    font-size: 12px;
    cursor: var(--cursor);
    transition: .3s linear;
}

header section .right-bx .right-btn-bx .bi:hover {
    color: #2d71c0;
}

header section .right-bx img {
    width: 430px;
    margin: 1.25rem 0 0 -180px;
}

header section .right-bx .level {
    position: absolute;
    top: 20%;
    right: 0;
    width: 1.875rem;
    height: 45%;
    /* border: .0625rem solid #fff; */
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
}

header section .right-bx .level h6 {
    width: 8px;
    height: 1px;
    background: rgba(255, 255, 255, 0.504);
    margin-top: .8125rem;
}

header section .right-bx .level h6:nth-child(3) {
    width: 1.125rem;
    height: .0625rem;
    background: #fff;
}

header .ml-bx {
    position: absolute;
    width: 6.875rem;
    height: 7.375rem;
    background: rgb(44, 138, 245);
    bottom: 0;
    right: 0;
    color: #fff;
    padding: 1.25rem 0 0 1rem;
}

header .ml-bx p {
    font-size: .5625rem;
}

header .ml-bx h6 {
    font-size: .625rem;
    margin-top: .625rem;
    font-weight: 500;
    background: #196bd0;
    width: 100%;
}


/* Media Query*/

@media screen and (max-width: 1246px) {
    header {
        width: 90%;
        transition: 1s linear;
    }
}

@media screen and (max-width: 840px) {
    header {
        width: 95%;
    }
    header section .left-bx {
        padding: 40px 0 0 20px;
    }
}

@media screen and (max-width: 780px) {
    header section {
        width: 100%;
        height: 100%;
        align-items: center;
        justify-content: center;
        flex-direction: column-reverse;
    }
    header section .left-bx .right-bx {
        width: 100%;
        height: 60%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    header section .left-bx {
        padding: .625rem 0 0 1.25rem;
        width: 80%;
    }
    header section .right-bx {
        width: 100%;
        height: 40%;
    }
    header section .right-bx img {
        width: 19.375rem;
        margin: 3.25rem 0 0 calc(20% - 2rem);
    }
    header section .right-bx .right-btn-bx {
        top: 45%;
        z-index: 99999;
    }
    header section .left-bx .content {
        max-width: 100%;
    }
    header section .left-bx .content .nutrition-bx .card h3 {
        font-size: 15px;
    }
    header section .left-bx .content button {
        margin-top: 1.25rem;
    }
    header section .left-bx .item-bx {
        margin-top: 0;
    }
    header section .left-bx #left-btn {
        top: -52.5%;
        left: -10%;
        z-index: 9999999;
    }
    header nav ul li {
        padding: .1875rem .3125rem;
    }
    header nav ul li a {
        font-size: .5625rem;
    }
}

@media screen and (max-width: 570px) {
    header section {
        height: 100%;
    }
    header nav ul {
        position: absolute;
        top: .3125rem;
        right: 1.875rem;
    }
    header nav {
        position: absolute;
        top:.3125rem;
        max-width: 90%;
    }
  header section .left-bx #left-btn {
        top: -56.5%;
        left: 0;
    }
    header section .left-bx {
        width: 100%;
    }
    header section .right-bx img {
        width: 19.375rem;
        margin: 5.25rem 0 0 calc(10% - 3rem);
    }
    header .ml-bx {
        width: 5rem;
        height: 6.5625rem;
        padding: .625rem 0 0 .3125rem;
    }
}

@media screen and (max-width: 452px) {
    header section {
        height: 100%;
    }
    header section .left-bx #left-btn {
        top: -10%;
        left: 0%;
    }
   /* header section .left-bx .content ,.nutrition-bx .card {
        width: 4.125rem;
    }
    header section .left-bx .content .nutrition-bx .card:nth-child(4) p {
        margin-top: .375rem;
    }
    header section .left-bx .item-bx .card-pepsi {
        margin-right: 1.25rem;
    }
    header section .left-bx #left-btn {
        top: -32.5%;
        left: 0%;
    }
    header section .left-bx .content h1 {
        font-size: 2rem;
        font-weight: 700;
        justify-content: center;
      }
    header section .right-bx .right-btn-bx span {
        display: none;
    }
    header section .right-bx img {
        width: 18.375rem;
        margin: 7.25rem 0 0 calc(10% - 3rem);
    }
    header section .left-bx .content p:nth-child(2) {
        font-size: .5625rem;
    } */
}
/* 
@media screen and (max-width: 390px) {
    header section .left-bx .content .nutrition-bx .card {
        width: 4.4375rem;
        height: 4.375rem;
    }
    header section .left-bx .content .nutrition-bx .card h3 {
        font-size: .875rem;
    }
    header section .left-bx .content p:nth-child(2) {
        font-size: .5rem;
    }
    header nav .buy-nav-btn {
        font-size: .5rem;
        padding: .3125rem .625rem;
    }
    header .ml-bx {
        width: 3.875rem;
        height: 25px;
        padding: .1875rem 0 0 .3125rem;
    }
    header .ml-bx h3{
        font-size: .875rem;
        margin-top: 0;
    }
    header .ml-bx h5 {
        display: none;
    }
    
} */