/* basic css  */

* {
    font-family: 'Poppins', sans-serif;
}

:root {
    --web-col:#e3a53c;
    --main-col: #333333;
    --menu-col: #252525;
    --card-col: #111;
    --hover-col: linear-gradient(0deg, #313131, #545454);
    --hover-bg-col: #1d1d1d;
    --but-col: linear-gradient(25deg, #BF953F, #ead26e, #f0dc77, #d3b151, #AA771C);

}

body {
    background: #111 !important;
}

ul li {
    list-style: none;
}

a {
    color: white !important;
    text-decoration: none !important;
}

a:hover {
    color: #e2a540;
}

#banner {
    background-color: var(--main-col);
    padding: 20px 0px;
}

.p-10 {
    padding: 10px;
}

.b-r {
    border-radius: 21px;
}

img {
    width: 100%;
    height: 100%;
}

.w-5 {
    width: 5% !important;
}

.w-10 {
    width: 10% !important;
}

.w-20 {
    width: 20% !important;
}

.w-35 {
    width: 35% !important;
}

.w-40 {
    width: 70% !important;
}

.w-90 {
    max-width: 90% !important;
}


/* ====1===/////////gift frames side icon====////// */
        .event-qmenu {
            display: flex !important;
            align-items: center;
        }

        .event-qmenu[data-v-b13f313c] {
            animation: aqm-data-v-b13f313c 1.8s ease infinite;
            bottom: 10px;
            -webkit-filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .8));
            filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .8));
            left: 0;
            min-height: auto !important;
            position: fixed;
            transition: .3s ease;
            width: 110px;
            z-index: 21;
        }

        @keyframes aqm-data-v-b13f313c {
            0% {
                -webkit-filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .8));
                filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .8));
            }

            55% {
                -webkit-filter: drop-shadow(0 2px 6px #ffc84c);
                filter: drop-shadow(0 2px 6px #ffc84c);
            }

            70% {
                -webkit-filter: drop-shadow(0 2px 6px #ffd065);
                filter: drop-shadow(0 2px 6px #ffd065);
            }

            100% {
                -webkit-filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .8));
                filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .8));
            }
        }

        .event-qmenu .handle[data-v-b13f313c] {
            bottom: 0px;
            cursor: pointer;
            position: relative;
            right: 0px;
            width: 30px;
        }

        .event-qmenu .handle[data-v-b13f313c]:after {
            speak: none;
            color: #fff;
            content: url(images/gift/play-solid.svg);
            font-family: element-icons !important;
            font-size: 25px;
            font-style: normal;
            font-variant: normal;
            font-weight: 400;
            left: 4px;
            line-height: 1;
            position: absolute;
            text-align: center;
            text-shadow: 0 -1px 3px #cb8d00;
            text-transform: none;
            top: 50%;
            transform: translateY(-55%) rotate(180deg);
            width: 16px;
        }

        .event-qmenu.menu-close[data-v-b13f313c] {
            transform: translateX(-83px);
        }

        .event-qmenu .cont[data-v-b13f313c] {
            -ms-flex-align: center;
            align-items: center;
            background-color: rgba(0, 0, 0, .8);
            border: 3px solid #feb000;
            border-bottom-right-radius: 15px;
            border-left: 0;
            border-top-right-radius: 15px;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            min-height: 103px;
            padding: 10px;
            width: 80px;
        }

        .event-qmenu .cont .event-item[data-v-b13f313c] {
            -ms-flex-align: center;
            align-items: center;
            cursor: pointer;
            display: -ms-flexbox;
            display: flex;
            height: 60px;
            -ms-flex-pack: center;
            justify-content: center;
            margin: 5px 0;
            position: relative;
            transition: .3s ease;
            width: 60px;
        }

        .event-qmenu .cont .event-item img[data-v-b13f313c] {
            display: block;
            max-height: 100%;
            max-width: 100%;
        }

        .event-qmenu .cont .event-item img[data-v-b13f313c]:hover {
            transform: scale(1.1);
            transition: all .3s ease;
        }


        /* ====start=css==/////////social icon====////// */

        .social {

            position: fixed;
            top: 30%;
            display: flex;
            flex-direction: column;
            background-color: transparent;
        }


        .social ul {
            list-style: none;
            padding: 0;
            transform: translateX(-270px);
        }

        .social ul li {
            display: block;
            margin: 5px;
            background: rgba(0, 0, 0, 0.5);
            width: 300px;
            text-align: right;
            padding: 10px;
            border-radius: 0 30px 30px 0;
            transition: all 1s;
        }

        .social ul li:hover {
            transform: translateX(110px);
        }

        .social ul li#twitter:hover {
            background-color: #1DA1F2;
        }

        .social ul li#facebook:hover {
            background-color: #3A559F;
        }

        .social ul li#instagram:hover {
            background-color: #C11A76;
        }

        .social ul li a {
            color: #fff;
            text-decoration: none;
        }

        .social ul li i {
            text-align: center;
            color: #000;
            margin-left: 16px;
            background: var(--but-col);
            
            padding: 9px;
            border-radius: 50%;
            width: 39px;
            /* height: 20px; */
            font-size: 20px;
            transform: rotate(0deg);

        }

        .social ul li:hover i {
            transform: rotate(360deg);
            transition: all 1s;
        }
    
        /* ==header==//////---nav-bar start---//////===== */
            nav {
                height: 80px;
                background: black;
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 10px 20px;
                position: sticky;
                top: 0;
                box-shadow: 0px 0px 8px var(--nav-sha);
                z-index: 1000;
                color: white;

            }

            nav .menu-btn i {
                color: rgb(255, 248, 230);
                color: var(--nav-col);
                font-size: 25px;
                cursor: pointer;
                display: none;
            }

            #click {
                display: none;
            }

            nav ul {
                display: flex;
                align-items: center;
                margin-bottom: 0;
            }

            nav ul li {
                margin: 0px 5px;
                list-style: none;

            }

            nav ul li .navbtn {
                color: #e2a540;
                text-decoration: none;
                font-size: 20px;
                font-weight: 500;
                letter-spacing: 2px;
                padding: 10px;
                border-radius: 5px;
                transition: all 0.3s ease;
            }

            nav ul li .navbtn:hover {
                background-color: var(--main-col);


            }

            nav ul li a {
                border-radius: 62px;
                color: rgb(255, 255, 255);
                text-decoration: none;
                transition: all 0.3s ease;
                display: block;
                padding: 5px;
                background: var(--hover-bg-col);

            }

            nav ul li a:hover {
                background-color: var(--main-col);
                color: white;
                text-decoration: none;

            }

            nav ul li i {
                padding-right: 20px;
            }

            nav .logo {
                width: 85px;
                  /* box-shadow:5px 5px 10px gold, -5px -5px 10px black; */
            }

            img {
                width: 100%;
            }


            /*-----navbar end-------  */
            /*-------media quarie  nav bar-------*/
            @media(max-width:700px) {
                nav .menu-btn i {
                    display: block;
                }

                nav .menu-btn {
                    position: absolute;
                }

                #click:checked~.menu-btn i:before {
                    content: "\f00d";
                }

                nav .logo {
                    width: 69px;
margin: auto;
                }

                nav ul {
                    position: fixed;
                    top: 80px;
                    left: -110%;
                    background-color: var(--nav-sha);
                    height: auto;
                    width: 100%;
                    display: block;
                    box-shadow: -1px 5px 5px var(--nav-sha);
                    transition: all 0.3s ease;
                }

                #click:checked~ul {
                    left: 0%;
                }

                nav ul li {
                    margin: 12px 20px;
                    list-style: none;

                }

                nav ul li a {
                    display: block;
                    font-size: 20px;
                    width: 50px;
                }

                nav ul li .navbtn {
                    width: 100%;
                    ;
                }

                nav ul {
                    padding: 10px;
                    display: flex;
                    background-color: var(--menu-col);
                    justify-content: center;
                    position: absolute;
                }

                .supportive-team .content p{
                    padding: 0px !important;
                    text-align: justify !important;
                }

            }

            @media(max-width:500px) {
                nav ul li {

                    margin: 11px 5px;
                }

                nav ul li a {
                    width: 45px;
                }
            }

            @media(max-width:420px) {
                nav ul li {

                    margin: 11px 5px;
                }

                nav ul li a {
                    width: 45px;
                }

            }

            /* media quarie end of nav bar */
            
     /* =====////content headings////==== */
            .content {
                text-align: center;
                color: white;
                
            }

            .content .con-head {
                position: relative;
                padding: 10px;
                background-image: linear-gradient(45deg, #efaa17, #efaa17, transparent);
                color: transparent;
                -webkit-background-clip: text;
            }

            .content .con-head::after {
                content: "";
                position: absolute;
                width: 78px;
                height: 3px;
                background-color: #efaa17;
                bottom: 5px;
                left: 50%;
                transform: translate(-50%);


            }

            .cont-par {
                /* background: var(--main-col); */
                padding: 20px;
                margin-top: 10px;
            }
           .footer-up .footer-img{
            width: 166px;
            padding: 10px;
           }