@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Calibri', sans-serif;
}

:root {
    --bg-color: #fff;
    --second-bg-color: #4140403b;
    --text-color: #000;
    --second-text-color: #0B0BB4;
    --third-text-color: #0b32b4;
    --main-color: #EFE70B;
    --input-color: #212121b9;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}
body {
    background: var(--bg-color);
    color: var(--text-color);
    font-size: 0.88rem;
    user-select: none;
}
section {
    min-height: 100vh;    
    padding: 10rem 9% 2rem;;
}
/*header*/
.lheader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 9%;
    background: var(--second-text-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}
.lheader .sticky {
    border-bottom: .1rem solid rgba(0, 0, 0, .2);
}
.logo img{
    cursor: pointer;
    height: 40px;
}
.navbar a {
    font-size: 2rem;
    color: var(--bg-color);
    margin-left: 5rem;
    transition: .3s;
}

.navbar a:hover {
    color: var(--main-color);
}
.navbar a.active {
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 1px;
    color: var(--main-color);
}
#menu-icon{
    font-size: 3.6rem;
    color: var(--bg-color);
    display: none;
}
/*landin'*/
.lhome{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10rem;
}
.homec h4{
    color: var(--second-text-color);
    font-size: 60px;
}
.homec h5{
    color: var(--text-color);
    font-size: 45px;
    margin-left: 5px;
}
.abt-p2{
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: 700;
    color: var(--third-text-color);
}
.hsrc img {
    width: 35vw;
    height: 30vw;
    border-radius: 15px;
    padding: 2px;
    border: 0.2px solid var(--second-text-color);
    animation: floatImage 4s ease-in-out infinite;
}
@keyframes floatImage {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-2.4rem);
    }
    100% {
        transform: translateY(0);
    }
}
.hlbtn{
    color: var(--second-text-color);
    font-size: 13px;
    font-weight: 700;
    border-radius: 6px;
    border: 2px solid var(--second-text-color);
    padding: 8px 20px;
    transition: 0.3s ease;
    width: fit-content;    
    box-shadow: 0 0 1rem var(--second-text-color);
}
.hlbtn:hover{
    background-color: var(--second-text-color);
    color: var(--bg-color);
    box-shadow: none;
}
.hlbtn2{
    color: var(--bg-color);
    font-size: 13px;
    font-weight: 700;
    border-radius: 6px;
    border: 2px solid var(--second-text-color);    
    background-color: var(--second-text-color);
    padding: 10px 20px;
    transition: 0.3s ease;
    width: fit-content;    
}
.hlbtn2:hover{    
    background-color: var(--bg-color);
    color: var(--second-text-color);
    box-shadow: 0 0 1rem var(--second-text-color);
}
.abtn{
    display: flex;
    gap: 20px;
}
/*service*/
/*.labt{
    background: var(--second-bg-color);
}*/
.services-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}
.services-container .service-box {
    flex: 1 1 30rem;
    background-color: var(--second-bg-color);
    padding: 3rem 2rem 4rem;
    border-radius: 2rem;
    text-align: center;
    border: .2rem solid var(--text-color);
    transition: .5s ease;
    margin-bottom: 4.5rem;
}
.services-container .service-box:hover {
    border-color: var(--second-text-color);
    transform: scale(1.02);
}
.service-box i {
    font-size: 7rem;
    color: var(--second-text-color);
}
.service-box h3 {
    font-size: 3rem;
    color: var(--third-text-color);
}
.service-box p {
    font-size: 2rem;
    margin: 1rem 0;
}
/*contact*/
.heading{
    color: var(--second-text-color);
    font-size: 30px;
    text-align: center;
}
.c-cont{
    display: grid;
    grid-template-columns: repeat(2, 70rem);
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 15px;
}
.ad-c h4, .con-form h4{
    font-size: 18px;
    color: var(--second-text-color);
    margin-bottom: 8px;
}
.con-con{
    display: flex;
    margin-bottom: 10px;
    align-items: center;
    justify-content: space-evenly;
    max-width: 70rem;
}
.cont-info{
    display: flex;
    align-items: center;    
    justify-content: space-evenly;
    padding: 5px;
    border-radius: 6px;
    border: 1px solid var(--second-text-color);
    width: 34rem;
}
.cont-info i{
    font-size: 30px;
    color: var(--second-text-color);
}
.coti h4{
    font-size: 15px;
    color: var(--text-color);
    font-weight: 700;
}
.coti p{
    font-size: 13px;
    font-weight: 400;
}
.m-adr{
    max-width: 70rem;
    border: 1px solid var(--second-text-color);
    border-radius: 10px;
    padding: 2px;
    overflow: hidden;
}
.m-adr iframe{
    width: 100%;
    height: 35rem;
    border-radius: 10px;
}
.con-form form{
    max-width: 70rem;
    margin: 1rem auto;
    text-align: start;
    margin-bottom: 3rem;
}
.con-form form .input-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.con-form form .input-box input,
.con-form form textarea {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.6rem;
    color: var(--text-color);
    border: 0.1px solid var(--second-text-color);
    border-radius: .8rem;
    margin: .7rem 0;
}
.con-form form .input-box input {
    width: 49%;
}
/*Products*/
.icon-cart{
    position: fixed;
    top: 10%;
    right: 10%;
    cursor: pointer;
    z-index: 99;
}
.icon-cart i{
    width: 30px;
    font-size: 40px;
}
.icon-cart span{
    position: absolute;
    display: flex;
    color: var(--bg-color);
    align-items: center;
    justify-content: center;
    background: var(--second-text-color);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    top: 50%;
    right: -25px;
}
.hidden {
    display: none;
}
.merch{
    /*width: 900px;*/
    max-width: 90vw;
    margin: 0;
    text-align: center;
    transition: transform 0.5s;
}
.merch-product{
    display: grid;
    grid-template-columns: repeat(4, 200px);
    justify-content: center;
    align-items: center;
    gap: 20px;
    transition: transform 0.5s;
}
.merch-item{
    background: var(--second-bg-color);
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 2rem;
    cursor: pointer;
    transition: 0.5s;
}
.merch-item:hover{
    background: var(--bg-color);
    border: 2px solid var(--second-text-color);
}
.merch-item img{
    width: 150px;
    height: 150px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 10px;
    transition: transform 0.5s;
    margin-bottom: 5px;
}
.merch-item img:hover{
    transform: scale(1.5);
}
.merch-item h2{
    font-size: medium;
    font-weight: 700;
}
.price{
    letter-spacing: 4px;
    font-size: small;
    margin-top: 2px;
}
.addcart{
    color: var(--bg-color);
    background: var(--third-text-color);
    padding: 5px 10px;
    border-radius: 5px;
    border: 0.5px solid #000;
    margin-top: 10px;
    cursor: pointer;
}
.cart-tab{
    position: fixed;
    text-align: start;
    display: grid;
    grid-template-rows: 50px 1fr 50px;
    background: var(--bg-color);
    border-radius: 3%;
    color: var(--text-color);
    top: 20%;
    right: -400px;
    width: 400px;
    border: 2px solid var(--second-text-color);
    height: 75vh;
    transition: 0.5s;
}
body.showcart .cart-tab{
    right: 0;
}
body.showcart .merch{
    transform: translateX(-150px);
}
body.showcart .merch-product{
    grid-template-columns: repeat(3, 200px);
}
.cart-tab h1{
    padding: 20px;
    font-weight: 700;
    margin: 0;
    font-size: 15px;
    border-bottom: 0.5px solid var(--second-text-color);
    border-radius: 3%;
}
.listcart{
    overflow: auto;
}
.listcart::-webkit-scrollbar{
    width: 0;
}
.listcart-item{
    display: grid;
    grid-template-columns: 70px 130px 40px 1fr;
    gap: 5px;
    justify-content: center;
    text-align: center;
    align-items: center;
}
.listcart-item:nth-child(odd){
    background: var(--second-bg-color);
}
.list-img{
    padding: 5px;
    height: 65px;
}
.list-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5%;
}
.list-name{
    font-size: small;
    font-weight: 600;
}
.totalprice{
    letter-spacing: 3px;
    font-size: small;
    font-weight: 600;
}
.quantity span{
    display: inline-block;
    width: 25px;
    height: 25px;
    font-size: 17px;
    background: var(--bg-color);
    color: #000;
    border-radius: 50%;
    cursor: pointer;
    margin-left: 5px;
}
.plus,
.minus{    
    border: 1px solid var(--text-color);
}
.quantity span:nth-child(2){
    background: transparent;
    color: var(--text-color);
}
.merch-buttons{
    display: grid;
    grid-template-columns: repeat(2, 0.25fr);
    align-items: center;
    justify-content: center;
    gap: 2rem;
}
.merch-buttons button{
    background: darkslateblue;
    padding: 8px 0;
    font-weight: 500;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    cursor: pointer;
}
.merch-buttons .close-btn{
    background: var(--main-color);
    color: #000;
}
/*footer*/
.footer {
    padding: 2rem 5%;
    background: var(--second-text-color);
}
.fo-links{
    display: grid;
    grid-template-columns: repeat(4, auto);
    align-items: start;
    justify-content: space-evenly;
    padding: 2rem 0 8rem ;
}
footer input{
    width: 150px;
    padding: 8px 5px;
    background-color: var(--input-color);
    border-radius: 3px;
    border: 0.5px solid var(--bg-color);
    color: var(--bg-color);
}
footer h3{
    color: var(--main-color);
    font-size: 15px;
    font-weight: 500;
    padding-bottom: 8px;
}
footer h4{
    font-size: 13px;
    font-weight: 200;
    color: var(--main-color);
}
footer li {    
    padding-bottom: 5px;
    color: var(--bg-color);
    font-size: 12px;
    font-weight: 400;
    list-style: none;
}
footer li a{
    list-style: none;
    color: var(--bg-color);
    font-size: 12px;
    transition: 0.3 ease;
}
footer li a:hover{
    color: var(--main-color);
}
.footer-col-soc{
    display: flex;
    flex-direction: column;
    align-items: start;
    padding-bottom: 20px;
}
.footer-col{
    padding-bottom: 20px;
}
.fo-media a {
    color: var(--bg-color);
    cursor: pointer;
    font-size: 18px;
    margin: 3rem 3rem 3rem 0;
    background: transparent;
    transition: 0.5 ease;
}
.fo-media a:hover i{
    color: var(--main-color);
    transform: scale(1.6);
}
.footer-col p{
    color: var(--bg-color);
    font-size: 10px;
    padding-bottom: 5px;
}
.subs-btn {
    color: var(--second-text-color);
    background: var(--bg-color);
    font-size: 13px;
    font-weight: 900;
    border-radius: 3px;
    border: 0.5px solid var(--text-color);
    padding: 6px 5px;
    transition: 0.3s ease;
    cursor: pointer;
}
.subs-btn:hover{
    color: var(--bg-color);
    background: transparent;
    box-shadow: 0 0 1rem var(--main-color);
}
.footer-text{
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}
.footer-text p {
    font-size: 10px;
    font-weight: 300;
    color: var(--bg-color);
}
.footer-text img{
    height: 30px;
}
.footer-iconTop a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: .8rem;
    background: transparent;    
    border: 0.5px solid var(--bg-color);
    border-radius: .8rem;
    transition: .5s ease;
}
.footer-iconTop a:hover {
    box-shadow: 0 0 1rem var(--main-color);
}
.footer-iconTop a i {
    font-size: 2.4rem;
    color: var(--bg-color);
}
/*Popups*/
.popup,
.popupfail {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 300px;
    text-align: center;
    transform: translate(-50%, -50%);
    padding: 0 30px 30px;
    background: var(--bg-color);
    color: var(--text-color);
    border-radius: 5%;
    border: 1px solid var(--second-text-color);
    z-index: 1000;
}
.popup.open-popup,
.popupfail.open-popup {
    display: block; 
}
.popup img,
.popupfail img{
    width: 100px;
    margin-top: -50px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}
.popup h2,
.popupfail h2{
    font-size: 28px;
    font-weight: 400;
    margin: 30px 0 10px;
}
.popup p,
.popupfail p{
    font-size: 13px;
    font-weight: 200;
}
.popup button,
.popupfail button{
    width: 100%;
    margin-top: 30px;
    padding: 10px 0;
    color: var(--text-color);
    border: 0;
    outline: none;
    font-size: 18px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 5px 5px rgba(0, 0, 0, .2);
}
.popup button{
    background: #6fd649;
}
.popupfail button{    
    background: red;
}
/*snap*/
.snap {
    position: relative;
    display: inline-block;
}
.snap img {
    width: 100%;
    transition: opacity 0.3s ease;
}
.snap .sback {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--second-text-color);
    opacity: 0;
    color: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: opacity 0.3s ease;    
    transition: transform 0.5s;
    padding: 5px;
    border-radius: 10px;
    gap: 5px;
}
.snap:hover img {
    opacity: 0;
}
.snap:hover .sback {
    opacity: 1;    
    transform: scale(1.3); 
}
.snap:hover .sback h4,
.snap:hover .sback p {
    visibility: visible;
    opacity: 1;
}
.snap .sback h4, 
.snap .sback p {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.sback h4{
    font-size: 15px;
}
.sback p{
    font-size: 12px;
}
/* ads */
.abt-p{
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 6px;
}
.abt-p span{
    color: var(--second-text-color);
    font-weight: 900;
    font-size: 20px;
}
.lmissv{
    background: var(--second-bg-color);
    display: flex;
    align-items: center;
    flex-direction: column;
}
.lmissv img{
    height: 170px;
    margin-bottom: 10px;
}
.mis-hold {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-wrap: wrap;
    gap: 2rem;
}
.mis-hold .mis-cont {
    flex: 1 1 30rem;
    padding: 3rem 2rem 4rem;
    border-radius: 8px;
    text-align: start;
    transition: .5s ease;
}
.mis-hold .mis-cont:hover{
    border: .2rem solid var(--second-text-color); 
}
.mis-hold .mis-cont h3{
    font-size: 18px;
    margin-bottom: 5px;
}
.mis-hold .mis-cont p{
    font-size: 14px;
    padding-bottom: 8px;
}
.service-box img{
    width: 200px;
    margin-top: -50px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(74, 2, 189, 0.562);
}

/* Screen Breakpoints */
@media (max-width: 1200px) {
    html {
        font-size: 55%;
    }
}

@media (max-width: 991px) {
    .header {
        padding: 2rem 3%;
    }
    section {
        padding: 10rem 3% 2rem;
    }
    .hsrc img{
        height: 35vw;
        width: 40vw;
    }
    .homec h4{
        font-size: 55px;
    }
    .homec h5{
        font-size: 45px;
    }
   .abt-p2{
        font-size: 25px;
    }
    .c-cont{
        grid-template-columns: repeat(2, 50rem);
    }
    .cont-info{
        width: 24rem;
        gap: 0.5rem;
    }
    .coti h4{
        font-size: 13px;
    }
    .coti p{
        font-size: 11px;
    }
    .cont-info i{
        font-size: 20px;
    }
    .lsev {
        padding-bottom: 7rem;
    }
    .merch{
        max-width: 991px;
    }
    .icon-cart i{
        font-size: 40px;
    }
    .icon-cart span{
        width: 20px;
        height: 20px;
        font-size: 11px;
        right: -23px;
    }
    .merch-product{
        grid-template-columns: repeat(3, 200px);
    }
    body.showcart .merch-product{
        grid-template-columns: repeat(2, 200px);
    }
    .fo-links{
        grid-template-columns: repeat(2, auto);
    }
    .footer-text {
        padding: 2rem 3%;
    }
}

@media (max-width: 768px) {
    #menu-icon {
        display: block;
        cursor: pointer;
    }
    .navbar {
        position: absolute;
        top: 100%;
        left: 50%;
        width: 50%;
        height: 65rem;
        border-radius: 1%;
        background: var(--second-text-color);
        border-top: .1rem solid rgba(0, 0, 0, .2);
        box-shadow: 0 .5rem 1rem var(--text-color);
        display: none;
    }
    .navbar.active {
        display: block;
    }
    .navbar a {
        display: block;
        font-size: 12px;
        font-weight: 200;
        margin: 0;
        padding: 10px;
    }
    .navbar a:nth-child(even){
        background: rgba(238, 238, 238, 0.144);
    }
    .lhome {
        flex-direction: column;
        gap: 5rem;
    }
    .homec{
        margin-bottom: 5rem;
    }
    .hsrc img{
        height: 45vw;
        width: 70vw;
    }
    .c-cont{
        grid-template-columns: repeat(1, 66rem);
    }
    .cont-info{
        width: 32rem;
    }
    .merch{
        max-width: 768px;
    }
    .icon-cart i{
        font-size: 35px;
    }
    .icon-cart span{
        width: 20px;
        height: 20px;
        font-size: 11px;
        right: -18px;
    }
    .merch-product{
        grid-template-columns: repeat(2, 200px);
    }
    .cart-tab{
        width: 300px;
    }
    .listcart-item{
        grid-template-columns: 60px 100px 40px 1fr;
    }
    .list-img{
        height: 50px;
    }
    .totalprice{
        font-weight: 500;
    }
    .quantity span{
        width: 18px;
        height: 18px;
        font-size: 12px;
        margin-left: 2px;
    }
    .merch-buttons{
        grid-template-columns: repeat(2, 0.35fr);
    }
}

@media (max-width: 617px) {
    .homec h4{
        font-size: 45px;
    }
    .homec h5{
        font-size: 35px;
    }
    .abt-p2{
        font-size: 20px;
    }
    .merch{
        max-width: 617px;
    }
    body.showcart .merch-product{
        grid-template-columns: repeat(1, 200px);
    }
    .sback h4{
        font-size: 13px;
    }
    .sback p{
        font-size: 11px;
    }
    .footer-text {
        flex-direction: column-reverse;
        align-items: center;
        gap: 5rem;
    }
    .footer-text img{
        height: 30px;
    }
}

@media (max-width: 450px) {
    html {
        font-size: 50%;        
    }
    .hsrc img{
        height: 75vw;
        width: 80vw;
    }
    .c-cont{
        grid-template-columns: repeat(1, 40rem);
    }
    .cont-info{
        width: 19rem;
    }
    .con-form form .input-box input {
        width: 100%;
    }
    .coti p{
        font-size: 10px;
    }
    .merch{
        max-width: 450px;
    }
    .icon-cart i{
        font-size: 30px;
    }
    .icon-cart span{
        width: 20px;
        height: 20px;
        font-size: 11px;
        right: -12px;
    }
    .merch-product{
        grid-template-columns: repeat(1, 200px);
    }
    body.showcart .merch{
        transform: translateX(-350px);
    }
    .list-name{
        font-size: 11px;
    }
    .fo-links{
        grid-template-columns: repeat(1, auto);
    }
}

@media (max-width: 365px) {
    .hsrc img{
        height: 85vw;
        width: 90vw;
    }
    .merch{
        max-width: 365px;
    }
}