@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap');
@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');
:root {
    --color-white-100: hsl(206, 5%, 98%);
    --color-white-200: hsl(206, 5%, 90%);
    --color-white-300: hsl(206, 5%, 80%);
    --color-white-400: hsl(206, 5%, 65%);
    --color-white-500: hsl(206, 5%, 50%);
    --color-black-100: hsl(213, 23%, 8%);
    --color-black-200: hsl(214, 21%, 6%);
    --color-black-300: hsl(210, 21%, 6%);
    --color-black-400: hsl(216, 22%, 4%);
    --color-black-500: hsl(220, 18%, 3%);
    --color-pink-100: hsl(326, 85%, 90%);
    --color-pink-200: hsl(327, 87%, 80%);
    --color-pink-300: hsl(329, 86%, 70%);
    --color-pink-400: hsl(330, 81%, 60%);
    --color-pink-500: hsl(333, 71%, 50%);
    --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
        0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
        font-family:'Poppins', sans-serif;
}



/* .container {
    max-width: 75rem;
    height: auto;
    margin: 0 auto;
    padding: 0 1.25rem;
} */

.brand {
    font-size: 18px;
    color: black;
    padding: 0;
    margin: 0;
    margin: 5px 0 5px 0;
    font-weight: bold;
    width: 100px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0px;
    height: auto;
    z-index: 100;
    margin: 0 auto;
    box-shadow: var(--shadow-medium);
    background-color: var(--color-white-100);
}
nav#navbar {
    border-top: 1px solid #ddd;
    margin-top: 6px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 0px;
}

.wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    row-gap: 2rem;
    width: 100%;
    height: 3.5rem;
    margin: 0 auto;
}

@media screen and (max-width: 992px) {
    .navbar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 75%;
        height: 100%;
        z-index: 10;
        opacity: 0;
        overflow-y: auto;
        visibility: hidden;
        box-shadow: var(--shadow-medium);
        background-color: var(--color-white-100);
        transition: all 0.5s ease;
    }

    .navbar.active {
        left: 0rem;
        opacity: 1;
        visibility: visible;
    }
}


ul#menu {
    padding-left: 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.menu-item {
    /* position: relative; */
    /*margin-left: 38px;*/
    list-style: none;
}

.menu-link {

    /* font-weight: bold !important; */
    display: inline-block;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 0.25rem;
    column-gap: 0.25rem;
    font-family: inherit;
    font-size: 19px;
    /* font-weight: 500; */
    font-family: monospace;
    /* text-transform: uppercase !important; */
    line-height: inherit;
    cursor: pointer;
    text-transform: capitalize;
    color: var(--color-black-500);
    transition: all 0.3s ease-in-out;

}

.menu-link>i.bx {
    font-size: 1.35rem;
    line-height: 1.5;
    color: inherit;
}

.menu-link :hover {
    color: black !important;
}

.menu-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    margin-top: 2px;
    background: #d5312c;
    transition: width .4s ease;
}

.menu-link:hover::after {
    /* outline: none;
    color: var(--color-pink-500); */
    width: 100%;
    color: black
}

@media only screen and (min-width: 993px) {
    .menu-dropdown:hover>.submenu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@media only screen and (max-width: 992px) {
    .menu {
        width: 100%;
        height: auto;
        padding: 1rem 0;
    }

    .menu-item {
        display: block;
        margin: 0 auto;
    }

    .menu-link {
        justify-content: space-between;
        padding: 0.5rem 1.25rem;
    }
}

.submenu {
  position: absolute;
    top: 2.35rem;
    border-radius: 16px;
    left: -2rem;
    min-width: 13rem;
    height: auto;
    padding: 0 1rem 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem);
    /* border-radius: 0 0 0.25rem 0.25rem; */
    /* border-top: 2px solid var(--color-pink-400); */
    box-shadow: var(--shadow-medium);
    background-color: var(--color-white-100);
    transition: all 0.3s ease-in-out;
    font-family: 'Kaushan Script';
}

.submenu-item {
    display: block;
    margin-top: 0.75rem;
}

.submenu-link {
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    line-height: inherit;
    cursor: pointer;
    color: var(--color-black-500);
    transition: all 0.35s ease;
    padding: 10px 0px;
    /* margin-right: 20px; */
    display: block;
}

.submenu-link:hover {
    outline: none;
    color: #f07739;
}

@media only screen and (max-width: 992px) {
    .submenu {
        position: relative;
        top: -0.5rem;
        left: 2.5rem;
        width: 100%;
        max-height: 0;
        padding: 0px;
        border: none;
        outline: none;
        opacity: 1;
        overflow: hidden;
        visibility: visible;
        transform: translateY(0px);
        box-shadow: none;
        background: transparent;
    }
}

.burger {
    position: relative;
    display: none;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 1.75rem;
    height: 1rem;
    opacity: 0;
    visibility: hidden;
    background: transparent;
}

.burger-line {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 2px;
    opacity: 1;
    border: none;
    outline: none;
    background: var(--color-black-500);
}

.burger-line:nth-child(1) {
    top: 0px;
}

.burger-line:nth-child(2) {
    top: 0.5rem;
}

.burger-line:nth-child(3) {
    top: 1rem;
}

@media only screen and (max-width: 992px) {
    .burger {
        display: block;
        opacity: 1;
        visibility: visible;
    }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease-in-out;
    background-color: rgba(0, 0, 0, 0.65);
}

@media only screen and (max-width: 992px) {
    .overlay.active {
        display: block;
        opacity: 1;
        visibility: visible;
    }
}
a{
    text-decoration: none;
}

.productshome .bor-img{
        /* border-radius: 0px 27px !important; */
        /* border-right: 2px solid #0f0e0f; */
        border-radius: 15px 15px 0px 0px;
        overflow: hidden;
}
.productshome .products .crossed h4{
    text-decoration: line-through;
    color: #e4432d;
}
.productshome .products h3{
    font-size: 17px;
    margin: 4px 0 9px 0;
    color: #000000;
    /* font-weight: bold; */
    font-family:'Poppins', sans-serif;
    text-align: left;
}
.productshome .products .callbtn{
    font-size: 16px;
    padding: 8px;
    background: #d81412;
    color: #fff;
    border-radius: 10px !important;
   font-family:'Poppins', sans-serif;
    width: 120px;
    display: block;
    text-align: center;
    transition: .3s ease;
    margin-left:auto;
}

.productshome .products .callbtn:hover{
    background: linear-gradient(#dc3545, rgb(255 18 18 / 25%));
        transition: .3s ease;
}


.productshome .card-data{
    /* border-radius: 0px 0px 35px 3px; */
    border-radius: 0px 0px 15px 15px;
    /* border-bottom: 2px solid #0c0c0c !important; */
    /* border-right: 2px solid #0c0c0c; */
    /* box-shadow: 0 .5rem 1rem rgb(0 0 0 / 17%) !important; */
    height: 120px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-content: center;
    align-items: stretch;
}
.productshome .card-data a{
    color: black;
}
.price-align
{
    align-items: center;
    display:grid;
    text-align: center;
}
.price-align h6
{
    color: #fff;
    margin-bottom: 0;
    font-size: 13px;
}
.productshome .geeks {
    width: 100%;
    height: 280px;
    overflow: hidden;
    margin: 0 auto;
}

.productshome .geeks img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: 0.5s all ease-in-out;
}

.productshome .geeks:hover img {
    transform: scale(1.5);
}
.singlehead{
    color: #304f8c;
    font-size: 33px;
    /*font-family: 'Poppins', sans-serif;*/
    font-weight: 600;
    margin-bottom: 0;
    text-transform: uppercase;
}

.separator_keep:after {
    position: absolute;
    content: '';
    right: 30px;
    top: 0px;
    width: 80px;
    height: 2px;
    background-color: #f8af3e;
}
.separator_keep span {
    position: absolute;
    left: 50%;
    top: -2px;
    width: 10px;
    height: 5px;
    margin-left: -5px;
    display: inline-block;
    background-color: #d71512;
}
.separator_keep:before {
    position: absolute;
    content: '';
    left: 30px;
    top: 0px;
    width: 80px;
    height: 2px;
    background-color: #f8af3e;
}
.separator_keep {
    position: relative;
    width: 40px;
    margin-top: 0px !important;
    margin-left: 70px;
}







@media only screen and (max-width: 767px)
{
    #toast-container
    {
        width:350px !important;
        margin-bottom:65px !important;
        z-index:99 !important;
    }
    #toast-container .toast-info
    {
        padding: 15px 10px !important;
    }
    .toast-close-button
    {
        right:1% !important;
        top:1% !important;
    }
    /*.toast-message*/
    /*{*/
    /*    padding: 15px 10px !important;*/
    /*}*/
    .t-bq-wrapper.t-bq-wrapper-boxed {
        max-width: 100% !important;
        margin: 0 auto;
    }
    .sidebllon
    {
       position: absolute;
    /* top: -26%; */
    z-index: 0;
    left: 0%;
    top: -92px;
    hwight: 200px;
    height: 200px;
    display:none;
    }
    .geeks2{
    width: auto;
    height: 200px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    border-radius: 12px;
    }
    .abt-bannier{
        display:none;
    }
    .seprator{
        width:100%;
        padding:0;
        margin:0!important;
    }
    .seprator img{

    }
    .singlehead{
        font-size: 20px;
        margin-top: 20px;
    }
    .laptop
    {
        /*display:none;*/
    }
    .mobile
    {
        display:block !important;
    }

}



.mobile
{
    display:none;
}


.footer {
    background-color: #fffffff0;
     background-image: url('Transparent_Colorful_Balloons_with_Confetti_PNG_Clipar_Image.png'); 
    /*height: 350px;*/
     background-attachment: fixed; 
    background-position: bottom;
    box-shadow: inset 0px 70px 70px 140px #ffdbdbf7;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer h3 {
    color: #e4432d;
    font-size: 22px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
}


.footer ul {
    color: white;
    margin: 14px 0 0 0;
    padding: 0;
    list-style: none;
}

.footer ul li {
    color: white;
    margin: 4px 0 0 0;
}

.footer ul li a {
    font-size: 13px;
    color: #000000;
    /* font-weight: 500; */
}
.menu-item a:hover{
    color: #e4432d;
}
.address a{

       color: #e4432d;

}
.footer .aboutbottom{
    color: #000 !important;
    font-size: 13px;
}
.footer .address {
    color: #000000;
    font-size: 14px;
    font-weight: 400;
}
.footer .address span{
   color: #000000;
   font-weight: bold;
}
.footer-bottom{
    background: #111111;
    padding: 17px;
}
.footer-bottom p{
    font-size: 14px;
    margin: 0;
}
.banner-top h1{
    font-size: 84px;
    font-weight: bold;
    margin-left: 80px;
    color: white;
}
.footer .address i{
    font-size: 21px;
}

.bottom-logo{
    max-width: 62% !important;
    height: auto;
    margin: 0;
}
.geeks2 {
        width: 300px;
        height: 300px;
        position: relative;
        overflow: hidden;
        filter: drop-shadow(2px 4px 6px purple);
        margin: 0 auto;
        border-radius:12px;
    }

    .geeks2 img {
        width: 100%;
        transition: 0.5s all ease-in-out;

    }

    .geeks2:hover img {
        transform: scale(1.5);
    }
    .flogo{
        width:200px;
        /*background-color: #fff;*/
    padding: 10px;
    }

.logo img{
    max-width: 90px !important;
}


    @media only screen and (max-width: 767px)
{

    .geeks2{
    width: auto;
    height: 200px;
    overflow: hidden;
    position:relative;
    margin: 0 auto;
    border-radius: 12px;
    }
    .listingDiv2
    {
        font-size: 14px !important;
        left: 20px !important;
    }
    .img-gradient::after
    {
        background-image: linear-gradient(to bottom, rgb(0 0 0 / 55%) 0, rgb(0 0 0 / 32%) 100%) !important;
        margin-top: -300px !important;
        height: 200px !important;
    }
}
.listingDiv2 {
    position: absolute;
    bottom: 18px;
    left: 23px;
    z-index: 1;
    color: white;
    font-size: 22px;
    font-family: 'Poppins', sans-serif;
}
.img-gradient::after {
    display: block;
    position: relative;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(12, 1, 1, 0.719) 100%);
    margin-top: -150px;
    height: 150px;
    width: 100%;
    content: '';
    border-radius: 6px;
    transition: 0.5s ease;
}
.seprator img{

    margin-top:-130px;
    z-index:-9;
     position: sticky;
     filter: drop-shadow(2px 4px 6px purple);
}
.socials-media-container {
    top: 50%;
    list-style-type: none;
    padding: 0;
    position: fixed;
    left: calc(100% - 48px);
    transform: translateY(-50%);
    min-width: 250px;
    z-index: 22;
    transition:0.4s ease;
}
.socials-media {
    border-radius: 4px;
    align-items: center;
    display: flex;
    transition: transform 0.3s ease-in-out;
}
.socials-media.facebook {
    background-color: #4267B2;
}
.socials-media i {
    color: #fff;
    font-size: 20px;
    padding: 12px;
    text-align: center;
    width: 50px;
}
.socials-media a {
    color: #fff;
    padding: 0 10px;
    text-align: center;
    text-decoration: none;
}
.socials-media.instagram {
    background: linear-gradient(45deg,#fcd533,#ec4b78,#6941cd,#c13584,#e1306c,#ed4a63);
}
.socials-media.youtube {
    background-color: red;
}
.socials-media.twetter {
    background: #00acee;
}
.socials-media.linkedin {
    background-color: #0077b5;
}
.socials-media.linkedin {
    background-color: #0077b5;
}
.socials-media.whatsapp {
    background: #25D366;
}
.socials-media:hover {
    transform: translateX(calc(-100% + 125px));
}
.banner-desig img
{
    border-radius: 10px;
}
.bannerdesign .owl-nav
{
    display: none;
}
.bannerdesign .owl-dots
{
    display: none;
}
.this-tab-back
{
    /* background: url('../images/CarnivalBirthdayThemeDecorationForKidsBirthdayPartyPune4.webp') center center no-repeat; */
    background-size: cover;
    background-repeat: no-repeat;
    /* box-shadow: inset 0px 0px 2000px 3000px #0000006b; */
    /* background-attachment: fixed; */
    background: #fffae5;
}
.back-this-deco
{
    /* background: url('../images/decorative-party-balloons-banner-design_zkmhIKtO_SB_PM.jpg') center center no-repeat; */
    background-size: cover;
    background-repeat: no-repeat;
    /* box-shadow: inset 0px 0px 2000px 3000px #0000006b; */
    background-attachment: fixed;
    background: #fdfcfc;
}
.productshome .products .callbtn2 {
    font-size: 17px;
    padding: 10px 4px;
    background: #d71512;
    border-radius: 73px 73px !important;
    font-family: 'Poppins', sans-serif;
    width: auto;
    display: inline-block;
}




#counter {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fffae4;
  padding: 40px 0px;
  width: 100%;
}
#counter .item {
  background: #fff;
  width: 320px;
  padding: 35px 40px;
  margin: 10px;
  text-align: center;
  border-radius: 20px;
  -webkit-box-shadow: 0px 0px 38px -8px rgba(0, 0, 0, 0.34);
  -moz-box-shadow: 0px 0px 38px -8px rgba(0, 0, 0, 0.34);
  box-shadow: 0px 0px 38px -8px rgba(0, 0, 0, 0.34);
}
#counter .item .count {
     color: #cb3a27;
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 40px;
}
#counter .item h3 {
  color: #4f4e28;
  text-transform: capitalize;
  font-size: 22px;
}


@media only screen and (max-width: 992px) {
   #counter .item {
    background: #fff;
    width: 100%;
    padding: 6px 11px;
    margin: 7px;
    
}
#counter .item h3 {
    font-size: 13px;
}
#counter .item .count {
  
    font-size: 23px;
}

#counter{
        padding: 21px 0px;
        margin-left: 10px;
}
.count-rw{
    max-width: 100%;
    background: #e3e3e4;
}
.counter-contnr{
    background: #e3e3e4;
}

}
button.owl-prev {
    display: none;
}
button.owl-next {
    display: none;
}




.bg-nav{
     box-shadow: unset;
}
.category-nav {
  // box-shadow: unset;
  border-top: 1px solid #ddd;
  background: #fff;
}
.searchbar{
  min-width:600px;
}
.searchbar input{
  min-height: 45px;
    border-radius: 6px;
    background: #fafafa;
    font-size: 12px;
}
.search-icon{
  min-height: 45px;
}


.btn-phone-header, .btn-whatsapp-header{
    padding: 0px;
    box-shadow: unset;
    margin-left:20px;
    position: relative;

}
.btn-phone-header:hover, .btn-whatsapp-header:hover{
  box-shadow: unset;
}

.btn-phone-header .icon {
    color: #000;
    font-size: 20px;
    background: #f9af3e;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: inline-block;
    line-height: 41px;
    border: 4px solid #ddddddcf;
    position: absolute;
   left: -43px;
    top: -3px;
}

.btn-phone-header .phone {
    background: #f9af3e;
    border-radius: 4px 10px 10px 0px;
    font-size: 15px;
    padding: 5px 20px;
    margin-left: -10px;
    font-weight: 400;
    color: #000;
    font-style: italic;
    border: 4px solid #ddddddcf;
    margin-right:50px;
    display: inline-block;
}

.btn-whatsapp-header .icon {
    color: #fff;
    font-size: 20px;
    background:  #d81412;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: inline-block;
    line-height: 41px;
    border: 4px solid #ddddddcf;
    position: absolute;
   left: -43px;
    top: -3px;
}
.btn-whatsapp-header .phone small,.btn-phone-header .phone small{
    font-size: 9px !important;
    display: block;
    line-height: 8px;
    font-weight: 600;
    font-style: italic;
    text-transform: capitalize;
    text-align: left;
    margin-bottom: -3px;
}

.btn-whatsapp-header .phone {
    background:  #d81412;
    border-radius: 4px 10px 10px 0px;
    font-size: 15px;
    padding: 5px 20px;
    margin-left: -10px;
    font-weight: 400;
    color: #fff;
    font-style: italic;
    border: 4px solid #ddddddcf;
    display: inline-block;
}
.bannersection{
    margin-top:130px;
}
.t-bq-quote-jasper .t-bq-quote-jasper-pattern .t-bq-quote-jasper-qmark svg {
    width: 50px;
}
.border-15{
    border-radius:15px 15px 0px 0px;
    overflow:hidden;
}

@media only screen and (max-width:900px){
    .col-sm-6 {
    width: 50%;
    padding-left: 4px;
    padding-right: 4px;
}

.productshome .geeks {
    height: 170px;
}

.p-3 {
    padding: .5rem !important;
}

.productshome .card-data {
    height: 110px;
}

.productshome .products h3 {
    font-size: 14px;
}

.productshome .products .callbtn {
    font-size: 14px;
    width: 100%;
    padding: 5px;
    border-radius: 5px !important;
}

.breadcrumbcat {
    margin-top: 70px;
    height: 150px;
}

.breadcrumbcat h1 {
    font-size: 16px;
}
ul#menu {
    display: block;
    text-align: center;
}
.navbar.showPhoneNav {
    opacity: 1 !important;
    position: relative;
    left: 0px !important;
    visibility: visible;
    height: auto;
}

.searchbar {
    display: none;
}


.btn-whatsapp-header .phone {
    display: none;
}

.btn-phone-header .phone {
    display: none;
}

.btn-phone-header .icon {
    left: -130px;
    top: -22px;
    width: 40px;
    height: 40px;
    font-size: 14px;
    line-height: 31px;
}


.btn-whatsapp-header .icon {
    left: -100px;
    top: -22px;
    width: 40px;
    height: 40px;
    font-size: 14px;
    line-height: 31px;
}

.brand {
    width: auto;
    margin-bottom: 0px;
    padding: 0px !important;
}

.logo img {
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}

.burger {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 999;
}
.footer {
    box-shadow: inset 0px 70px 70px 230px #ffdbdbf7;
}

.pb-50 {
    padding-bottom: 10px !important;
}

.pt-50 {
    padding-top: 10px !important;
}

}
.callbtn2{
    font-size: 16px;
    padding: 8px;
    background: #d81412;
    color: #fff;
    border-radius: 10px !important;
    font-family: 'Poppins', sans-serif;
    width: 120px;
    display: block;
    border: none;
    border-radius: 1px !important;
    text-align: center;
    transition: .3s ease;
    margin-left: auto;
}
