body {
    overflow-x: hidden;
    margin: 0px auto;
}

@font-face {
    font-family: mm1;
    src: url(../fonts/WildNature.ttf);
}

@font-face {
    font-family: mm2;
    src: url(../fonts/Barlow-Medium.ttf);
}




/*  --------------recipe-----------------------------------------*/




html {
    scroll-behavior: smooth;
}




/* Header page starts*/
.headerbar {
    width: 100%;
    position: fixed;
    z-index: 9;
    padding: 1% 0%;
    transition: all 1s;
}

.hdrottr {
    width: 70%;
    margin: auto;
}

.vislogo img {
    width: 100%;
}

.vislogo {
    width: 80%;
    margin-left: auto;
    padding: 7% 0%;
}

.hdrnavbar {
    display: grid;
    align-content: center;
    height: 100%;
}

.hdrnavlink {
    /*
    display: flex;*/
    align-items: center;
    text-align: center;
    font-size: 0.8vw;
    font-family: mm2;
    padding: 2% 0%;
    color: #fff;
}

.hdrnavitem {
    /*
    width: 100%;*/
    position: relative;
    line-height: 50px;
}

.hdrnavitem a {
    padding: 0% 4%;
    color: #fff;
    text-decoration: none;
    position: relative;
    display: inline-block;
    font-size: 0.9vw;
}

.hdrscllink {
    display: grid;
    align-content: center;
    height: 100%;
}

.hdrsclmddl {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    font-size: 1.2vw;
    font-family: mm2;
    padding: 4.5% 0%;
    color: #fff;
}

.hdrsclitem {
    width: 100%;
    position: relative;
}

.hdrsclitem a {
    padding: 0% 5%;
    color: #fff;
    text-decoration: none;
}

.hdrsclitem:hover svg {
    position: relative;
    color: #ffe800;
    transition: .5s;
    z-index: 3;
}

.hdrsclitem:hover svg {
    transform: rotateY(360deg);
}

.hdrsclitem:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .5s;
    z-index: 2;
}

.hdrsclitem:hover:before {
    top: 0;
}

.hdrmobile {
    display: none;
    position: fixed;
    z-index: 9;
    transition: all 1s;
    width: 100%;
}

.hdrottr2 {
    width: 90%;
    margin: auto;
}

.vislogohdrmbil img {
    width: 100%;
}

.vislogohdrmbil {
    width: 70px;
    padding: 7% 0%;
    transition: all 1s;
}

.menu a,
a:visited,
a:hover,
a:active {
    color: inherit;
    text-decoration: none;
}

.outer-menu {
    position: relative;
    top: 0%;
    right: 15%;
    z-index: 1;
}

.outer-menu .checkbox-toggle {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    cursor: pointer;
    width: 60px;
    height: 60px;
    opacity: 0;
}

.outer-menu .checkbox-toggle:checked+.hamburger>div {
    transform: rotate(135deg);
}

.outer-menu .checkbox-toggle:checked+.hamburger>div:before,
.outer-menu .checkbox-toggle:checked+.hamburger>div:after {
    top: 0;
    transform: rotate(90deg);
}

.outer-menu .checkbox-toggle:checked+.hamburger>div:after {
    opacity: 0;
}

.outer-menu .checkbox-toggle:checked~.menu {
    pointer-events: auto;
    visibility: visible;
}

.outer-menu .checkbox-toggle:checked~.menu>div {
    transform: scale(1);
    transition-duration: 0.75s;
}

.outer-menu .checkbox-toggle:checked~.menu>div>div {
    opacity: 1;
    transition: opacity 0.4s ease 0.4s;
}

/*
.outer-menu .checkbox-toggle:hover + .hamburger {
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}*/
.outer-menu .checkbox-toggle:checked:hover+.hamburger>div {
    transform: rotate(225deg);
}

.outer-menu .hamburger {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 60px;
    height: 35px;
    padding: 0em 1em;
    /*
  background: rgba(33, 150, 243, 0.75);*/
    border-radius: 0 0.12em 0.12em 0;
    cursor: pointer;
    transition: all 1s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.outer-menu .hamburger>div {
    position: relative;
    flex: none;
    width: 100%;
    height: 2px;
    background: #FEFEFE;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.outer-menu .hamburger>div:before,
.outer-menu .hamburger>div:after {
    content: '';
    position: absolute;
    z-index: 1;
    top: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: inherit;
    transition: all 0.4s ease;
}

.outer-menu .hamburger>div:after {
    top: 10px;
}

.outer-menu .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    visibility: hidden;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    outline: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.outer-menu .menu>div {
    width: 200vw;
    height: 200vw;
    color: #FEFEFE;
    background: rgba(41, 98, 255, 0.97);
    border-radius: 50%;
    transition: all 0.4s ease;
    flex: none;
    transform: scale(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.outer-menu .menu>div>div {
    text-align: center;
    max-width: 90vw;
    max-height: 100vh;
    opacity: 0;
    transition: opacity 0.4s ease;
    overflow-y: auto;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.outer-menu .menu>div>div>ul {
    list-style: none;
    padding: 0 1em;
    margin: 0;
    display: block;
    max-height: 100vh;
}

.outer-menu .menu>div>div>ul>li {
    padding: 0;
    margin: 1em;
    font-size: 24px;
    display: block;
}

.outer-menu .menu>div>div>ul>li>a {
    position: relative;
    display: inline;
    cursor: pointer;
    transition: color 0.4s ease;
}

.outer-menu .menu>div>div>ul>li>a:hover {
    color: #e5e5e5;
}

.outer-menu .menu>div>div>ul>li>a:hover:after {
    width: 100%;
}

.outer-menu .menu>div>div>ul>li>a:after {
    content: '';
    position: absolute;
    z-index: 1;
    bottom: -0.15em;
    left: 0;
    width: 0;
    height: 2px;
    background: #e5e5e5;
    transition: width 0.4s ease;
}

/* nav */

.btn-7 a:hover {
    color: #ffe800;
}


.btn-7 a:before {
    content: "";
    display: block;
}


/* bottom-top-horizontal */
.btn-7 a:before {
    position: absolute;
    left: 12%;
    top: 100%;
    width: 80%;
    height: 100%;
    background-color: unset;
    z-index: -1;
    opacity: 0;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    border-top: 2px solid #ffe800;
}

.btn-7 a:hover:before {
    opacity: 1;
    top: 0;
}

/* Header page ends*/




/* Index page starts*/
.sld1 {
    background-image: url(../assets/img/bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    position: relative;
    padding: 25% 0%;
}
.sld2 , .sld3{
    width: 100%;
}
.sld2 img, .sld3 img{
    width: 100%;
}

.sld1txt1 {
    position: absolute;
    width: 100%;
    left: 10%;
    top: 40%;
    transform: rotate(-3deg);
}

.sld1txt1 h2 {
    font-family: mm1;
    font-size: 5.8vw;
    text-align: left;
    color: #fff;
    margin: 0;
    line-height: 0.8;
}

.sld1txt1 h3 {
    font-family: mm1;
    font-size: 3.5vw;
    text-align: left;
    color: #fff;
    margin: 0;
}

.sld1txt1 h4 {
    font-family: mm1;
    font-size: 6.5vw;
    text-align: left;
    margin: 0;
    color: #fff;
    line-height: 0.8;
}

.sld1txt1 h5 {
    font-family: mm1;
    font-size: 3.5vw;
    text-align: left;
    color: #fff;
    background: #bf0005;
    width: 27%;
    padding: 0.1% 1%;
}

.sld1prdctimg1 img {
    width: 100%;
    transition: all 1s;
}

.sld1prdctimg1 {
    width: 24%;
    position: absolute;
    left: 19%;
    top: 18%;
    transform: rotate(-15deg);
}

.sld1imggrl1 img {
    width: 100%;
}

.sld1imggrl1 {
    width: 51%;
    position: absolute;
    right: 1%;
    top: 10%;
}

.carousel-indicators {
    margin-left: 3% !important;
    justify-content: left !important;
}

.carousel-indicators [data-bs-target] {
    border-radius: 45px !important;
    width: 14px !important;
    height: 14px !important;
    border: 4px #fff solid;
    background: unset;
    opacity: unset;
}

.carousel-indicators .active {
    background-color: #fff !important;
}

.hmbnnr2 {
    background-image: url(../assets/img/pattren.png);
    background-repeat: no-repeat;
    background-size: 100%;
    position: relative;
    width: 100%;
    padding: 1% 0%;
}

.hmbnnr2img {
    background-image: url(../assets/img/circle.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    width: 43%;
    margin: auto;
    padding: 13% 12.5% 10.5% 12%;
}

.hmbnnr2txt p {
    font-family: mm2;
    font-size: 0.92vw;
    text-align: center;
    color: #fff;
    margin: 0;
}


.hvr-bounce-to-bottom {
    display: block !important;

}

.hvr-bounce-to-bottom:before {
    background: #005aff !important;
}

.hmbnnr2btn {
    border: 2px #f7a707 solid;
    background: #f7a707;
    width: fit-content;
    padding: 3%;
    text-align: center;
    margin: 5% auto;
    color: #fff;
    font-family: mm2;
    cursor: pointer;

}


.hmbnnr3pdrctnam {
    position: absolute;
    bottom: 0;
    background: #362c26;
    color: #f1f1f1;
    width: 91%;
    transition: .5s ease;
    opacity: 0;
    color: white;
    right: 6px;
    font-family: mm1;
    left: 25px;
    padding: 1% 0% 1% 0%;
    font-size: 2.5vw;
    margin: 0;
    text-align: center;
}

.hmbnnr3bgimg1:hover .hmbnnr3pdrctnam {
    opacity: 1;
}

.hmbnnr3bgimg2:hover .hmbnnr3pdrctnam {
    opacity: 1;
}

.hmbnnr3bgimg3:hover .hmbnnr3pdrctnam {
    opacity: 1;
}

.hmbnnr3prdctimg img {
    width: 100%;
    transition: all 1s;
}

.hmbnnr3 .owl-nav{
    display: none;
}



.hmbnnr3prdctimg {
    width: 80%;
    padding: 25% 5%;
    margin: auto;
}

.hmbnnr3prdctimg img:hover {
    transform: scale(1.05);
}

.hmbnnr3 .product-owl-carousel .owl-nav.disabled,
.product-owl-carousel .owl-dots.disabled {
    display: block;
    position: absolute;
    top: 1%;
    width: 100%;
    color: #fff;
    right: -94%;
    font-size: 0;
}
    #productcatygry {
        display:none;
    }
    #mobilecatgry{
        width:50%;
        margin:auto;
    }
    #productcatygry{
          position: relative;
    font-size: 22px;
    background: #e11616;
    border: none;
    box-shadow: none;
    outline: none;
    cursor: pointer;
    color: #fff;
    width:100%;
    margin: auto;
    }
    
    #procnme {
         position: absolute;
    margin: 0;
    padding: 2% 0;
    background: #ccc;
    z-index: 99;
    transform-origin: top;
    transform: perspective(1000px) rotateX(-90deg);
    transition: 0.5s;
    width: 50%;
      
    }
    
    #procnme.active{
      transform: perspective(1000px) rotateX(0deg);
    }
    
    #procnme li {
      list-style: none;
    }
    
    #procnme li a {
      display:block;
      padding: 10px;
      text-align: center;
      text-decoration: none;
      background: #262626;
      color: #fff;
      border-bottom: 1px solid rgba(0, 0, 0,.2);
      transition: 0.5s;
    }
    
    #procnme li a:hover{
      background: #0d7ad0;
    }
.hmbnnr3 .product-owl-carousel .owl-next {
    background-image: url(../assets/img/Right.png) !important;
    left: 2%;
    position: absolute;
    background-size: 100% !important;
    width: 3% !important;
    padding: 15% 0% !important;
    background-repeat: no-repeat !important;
    height: 3vw;

}

.hmbnnr3 .product-owl-carousel .owl-prev {
    background-image: url(../assets/img/Left.png) !important;
    left: -1.5%;
    position: absolute;
    background-size: 100% !important;
    width: 3% !important;
    padding: 15% 0% !important;
    background-repeat: no-repeat !important;
    height: 3vw;
}

.hmbnnr3 .owl-dots {
    display: none;
}

.hmbnnr4 {
    position: relative;
    padding: 2% 0% 7% 0%;
    width: 80%;
    margin-left: auto;
}

.hmbnnr4txt h2 {
    font-family: mm1;
    font-size: 12vw;
    color: #e20006;
    margin: 0;
    line-height: 0.5;
}

.hmbnnr4txt h3 {
    font-family: mm1;
    font-size: 4.5vw;
    color: #0c58f9;
    margin: 0;
    width: 82%;
    margin-left: auto;
}

.hmbnnr4txt h4 {
    font-family: mm1;
    font-size: 8.5vw;
    color: #e20006;
    margin: 0;
    line-height: 0.8;
    padding-left: 3%;
}

.hmbnnr4img img {
    width: 100%;
}

.hmbnnr4img {
    width: 40%;
    position: absolute;
    right: 24%;
    bottom: 4%;

}

.hmbnnr5 {
    background-image: url(../assets/img/Balle-Balle--bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    width: 100%;
    padding: 10% 0% 4% 0%;
    background-attachment: fixed;
    background-position: center;
}

.hmbnn5img {
    background-image: url(../assets/img/Ribbon.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    width: 36%;
    padding: 4% 8% 6% 8%;
    margin: auto;
}

.hmbnnr5txt h3 {
    font-family: mm1;
    font-size: 3.8vw;
    text-align: center;
    color: #fff;
}

.hmbnnr6 {
    position: relative;
    padding: 3% 10%;
}

.hmbnnr6tstmybgimg {
    background-image: url(../assets/img/Vector-Smart-Object2.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    width: 75%;
    padding: 13% 0% 15% 0%;
    margin: auto;
}

.hmbnnr6boyimg img {
    width: 100%;
}
.hmbnnr6boyimg {
    width: 27.5%;
    position: absolute;
    left: 7%;
    top: 13.7%;
}

.hmbnnr6tsmnycrsl {
    width: 72%;
    margin-left: auto;
}

.hmbnnr6tsmnytxt {
    padding: 9% 5% 9% 10%;

}

.hmbnnr6txmnytxt2 {
    text-align: right;
    font-family: mm2;
    font-size: calc(0.7vw + 0.9vh);
    color: #000;
}

.hmbnnr6 .owl-carousel {
    margin: auto;
    width: 83% !important;
}

.hmbnnr6 .owl-nav {
    display: none;
}

.hmbnnr6 .owl-dots {
    margin-top: 5%;
    text-align: center !important;
}

.hmbnnr6 .owl-dots .owl-dot {
    background: unset;
    border: 3px solid #e30c0c;
    margin: 0 5px !important;
    border-radius: 100% !important;
    width: 1vw !important;
    height: 1vw !important;
}

.hmbnnr6 .owl-dots .active {
    background-color: #de0004 !important;

}

.hmbnnr6tsmnytxt p {
    font-family: mm2;
    font-size: calc(0.6vw + 0.6vh);
    text-align: left;
    color: #000;
}

/* Index page ends */




/* About starts */
.bnnr {
    position: relative;
    background-color: #bf0005;
    padding: 5%;
}
.bnnr .bnnr-layer{
    width: 80%;
    margin: auto;
}
.bnnr .bnnr-layer h2 {
    font-family: mm1;
    font-size: 13.2vw;
    color: #fff;
    line-height: 0.1;
    margin: 13% 9% 3.5% 2%;
}

.bnnr .bnnr-layer img {
    width: 45%;
    position: absolute;
    top: 28%;
    right: 11%;
}

.vm {
    width: 70%;
    margin: 6% auto 3%;
    position: relative;
}

.vm .vision-text {
    font-family: mm2;
    font-size: calc(0.71vw + 0.7vh);
    text-align: center;
    margin: 5% 0;
}

.vm .vison-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 8% 14% 6% 14%;
    background-color: #bf0005;
    border-radius: 2%;
}
.vm .vison-box img.vm-im1{
    width: 60%;
}
.vm .vison-box img.vm-im2{
    width: 55%;
}

.vm .vison-box h2 {
    font-size: 1.7vw;
    margin: 7% 0 0 0;
}

.vm .vison-box p {
    font-family: mm2;
    font-size: calc(0.7vw + 0.7vh);
    text-align: center;
    color: #fff;
    margin: 0;
}

.vm .vison-box .vmimp1 {
    padding-bottom: 5%;
}
.vm .vm-img1 img,
.vm .vm-img2 img {
    width: 67%;
}

.vm .vm-img1 {
    position: absolute;
    top: 40%;
    left: -21.5%;
}
.vm .vm-img2 {
    position: absolute;
    top: 40.5%;
    right: -36.3%;
}



/* .left-icon {
    margin-left: 7%;
    font-size: 3rem;
}

.right-icon {
    text-align: end;
    margin-right: 7%;
    font-size: 3rem;
} */
/* About end */

/* gallery starts */
.bnnrinfrban{
    position: relative;
    background-color: #bf0005;
    padding: 5%;
}
.bnnrinfrban .bnnrinfrban-layer{
    width: 80%;
    margin: auto;
}
.bnnrinfrban .bnnrinfrban-layer img {
    width: 35%;
    position: absolute;
    top: 23.5%;
    right: 20.8%;
}
.bnnrinfrban .bnnrinfrban-layer h2 {
    font-family: mm1;
    font-size: 13.8vw;
    color: #fff;
    line-height: 0;
    margin: 15% 9% 6% 2%;
}

.bnnrinfrsect{
    width: 70%;
    margin: auto;
    padding: 5% 0;
}
.bnnrinfrsect .bnnrinfrimg img{
    width: 100%;
}

/* gallery end */

/* product starts */
.prsban{
    position: relative;
    background-color: #bf0005;
    padding: 5%;
}
.prsban .prsban-layer{
    width: 80%;
    margin: auto;
}

.prsban .prsban-layer h2 {
    font-family: mm1;
    font-size: 13.5vw;
    color: #fff;
    margin: 3% 9% 8% 2%;
}

.prsban .prsban-layer img {
    width: 42%;
    height: 78%;
    position: absolute;
    top: 36.5%;
    right: 14%;
}


.prssect{
    width: 70%;
    margin: auto;
    padding: 10% 0;
}
.prssectbox{
    position: relative;
}
.prssect .prssectbox img{
    width: 100%;
    transition: all 1s;
}
.prssect .prssectbox .prssectnam{
    position: absolute;
    bottom: 0;
    background: #362c26;
    color: #f1f1f1;
    width: 90%;
    margin: 0 auto;
    opacity: 0;
    color: white;
    font-family: mm1;
    left: 5%;
    padding: 1% 0% 1% 0%;
    font-size: 2.5vw;
    margin: 0;
    text-align: center;
    transition: all 1s ease-in-out;
}
.prssect .prssectbox img:hover{
    transform: scale(1.05);
}
.prssect .prssectbox:hover .prssectnam{
    opacity: 1;
}
   .bannerpro{
        
        background-image: url(../assets/img/Products/banner.jpg);
        background-size: cover;
        width: 100%;
        background-repeat: no-repeat;
        padding: 14% 0% 15% 57%;;
        position: relative;
    }
        .bannerpro h3 {
        font-family: mm2;
        font-size: 7.292vw;
        color: #fff;
        text-shadow: 4px 6px #000000c2;
        font-weight: 600;
    }
        .round-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); /* Adjust minmax width as needed */
            gap: 40px;
            justify-content: center;
            align-items: center;
            margin: 5% auto;
            width: 75%;
        }


        .round {
            width: 66%;
            border-radius: 246px;
            border: 5px solid rgb(225, 22, 22);
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin: 20px auto;
            padding: 20% 0;
        }
        .round_img{
                    width: 75%;
    margin: auto;
    margin-top: -43%;
        }
        .round_img img {
               width: 100%;
        }

        .round_text {
            text-align: center;
            transform: translateY(3vh);
        }

        .round_text h3 {
            font-size: 20px;
            margin: 0%;
            padding: 0%;
            /*transform: translateY(-20px);*/
        }
        .round_text h5 {
            font-size: 14px;
            margin: 0%;
            padding: 0%;
            /*transform: translateY(-20px);*/
        }
        .prdctctgry{
            width: 90%;
            margin: auto;
            padding: 5% 0% 5% 0%;
        }
        .prdctctgrylist{
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .prdctitem{
    font-size: 1.042vw;
    color: #7f7f7f;
    width: 100%;
    cursor: pointer;
    border-radius: 60px;
    text-align: center;
    /* background: #000; */
    padding: 5% 3% 5% 3%;
    transition: all 0.4s;
    border: 1px solid #EC181A;
    font-family: 'mm2';
    font-weight: bold;
    font-size:1.2vw;
}
.prdctitem:hover, .prdctitem:focus, .prdctitem:visited, .prdctitem:active, .prdctitem:focus-visible, .prdctitem:focus-within, .prdctitem:target{
    box-shadow: 5px 5px 5px 5px #000;
}
.dot{
    border-radius: 100px;
    width: 50px;
    height: 10px;
    background-color: #ef0606;
}
.prodivdspac{
    margin:1%; 
    width: 100%;
}
/* product ends */


/* Contact page Starts */
.ctsect {
    position: relative;
    background-color: #bf0005;
    padding: 5%;
}
.ctsect .ctsect-layer{
    width: 80%;
    margin: auto;
}
.ctsect .ctsect-layer h2 {
    font-family: mm1;
    font-size: 13.4vw;
    color: #fff;
    line-height: 0.1;
    margin: 13% 9% 4% 2%;
}
.ctsect .ctsect-layer img {
    width: 47%;
    position: absolute;
    top: 1.5%;
    right: -5px;
}

.ctsect-form {
    width: 70%;
    margin: auto;
    padding: 3%;
    font-family: mm2;
}

.ctsect-form .address {
    display: flex;
}

.ctsect-form .address img {
    padding: 3%;
    height: 20%;
    width: 20%;
}

.ctsect-form .address .add-content {
    padding: 3%;
    font-family: mm2;
}

.ctsect-form .address .add-content h2 {
    font-weight: 800;
    /* font-size: 1.5vw; */
    font-size: calc(1vw + 1vh)
}

.ctsect-form .address .add-content p {
    font-weight: 700;
    /* font-size: 1vw; */
    font-size: calc(0.8vw + 0.5vh);
    line-height: 0;
}

.ctsect-form .ctusform input,
textarea,
.ctsect-form .ctusform textarea {
    width: 100%;
    padding: 4%;
    background: #dbd5d5;
    color: #000;
    border: none;
    outline: none;
    box-shadow: none;
    font-size: calc(1vw + 1vh);
    /* font-size: 15px; */
    font-family: mm2;
    margin: 1% 0;
}

.ctsect-form .ctusform button {
    width: 20%;
    padding: 3%;
    background: #de0004;
    color: #fff;
    border: none;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    font-size: calc(1vw + 1vh);
    font-family: mm2;
    text-transform: uppercase;
    margin: 1% 0;
}

.map-container {
    width: 70%;
    margin: 3% auto;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    position: absolute;
}


/* Contact page ends */


/*career page start*/
.hmbnnrcrr1{
    background-image:url(../assets/img/career/unsplash_OQMZwNd3ThU.jpg);
    background-size:cover;
    padding:6% 20% 33% 0;
    position:relative;
}
.hmbnnrcrr1 h3{
    font-family: mm2;
    font-size: 5.5vw;
    color: #fff;
    font-weight: 600;
    text-align: end;
}
.hmbnnrcrr2{
    padding-top: 3%;
}
.hmbnnrcrr2, .hmbnnrcrr2left, .hmbnnrcrr2right{
    width: 80%;
    margin: auto;
}
.hmbnnrcrr2left h3, .hmbnnrcrr2right h3{
    font-size: 1.5vw;
}
.hmbnnrcrr2left h3{
    margin-bottom: 7%;
}
.hmbnnrcrr2lftbox{
    border-radius: 30px;
    border: 2px solid #EC181A;
    padding: 3% 1.5%;
    width: 80%;
    margin: auto;
    /*height: 352px;*/
    /*width: 444px;*/
}
/*.hmbnnrcrr2lftinr3row {*/
/*        margin-top: 8%;*/
/*}*/
.hmbnnrcrr2rightbox ul li{
       margin-bottom: 8%;
}
.hmbnnrcrr2right h3, .hmbnnrcrr2left h3{
    margin-left: 13%;
}
.hmbnnrcrr2rightbox{
    border-radius: 30px;
    border: 2px solid #EC181A;
    padding: 3% 1.5%;
    width: 80%;
    margin: auto; 
     /*width: 444px;*/
   
}
.hmbnnrcrr2lftinnrbx1row{
     display: flex;
    justify-content: space-between;
        margin-right: 10%;
}
.hmbnnrcrr2lftinnrbx1row p, .hmbnnrcrr2lftinnrbx1row span, .hmbnnrcrr2lftinnr2row p, .hmbnnrcrr2lftinnrboxlstrow p{
    margin: 0;
    font-size: calc(0.5vw + 0.7vh);
    font-weight: 600;
}
.hmbnnrcrr2lftinr3row p{
    margin: 0;
    font-size: calc(0.5vw + 0.7vh);
    font-weight: 700;
    margin-bottom: 0.8%;
}
.hmbnnrcrr2lftbox ul, .hmbnnrcrr2rightbox ul{
    list-style: none;
    padding: 0;
}
.hmbnnrcrr2lftbox ul li, .hmbnnrcrr2rightbox ul li{
    font-size: calc(0.5vw + 0.7vh);
    font-weight: 600;
}
.hmbnnr3crr{
    width: 45%;
    margin: 5% auto;
}
.hmbnnr3crr h3{
    font-weight:700;
    font-size:1.5vw;
    text-align:center;
    margin-bottom: 3%;
}
.hmbnnr3crrformbox{
    border:1px solid #EC181A;
    border-radius:10px;
        padding: 2% 1%;
    margin: 2% 0;
}
.hmbnnr3crrformbox input{
    border:none;
    border-bottom:1px solid #000;
    font-size:calc(0.7vw + 0.7vh);
    color:#000;
    width: 100%;
    outline: none;
}

.hmbnnr3crr form {
    width: 88%;
    margin: auto;
}
.hmbnnr3crr form span{
    color: red;
    font-size: 15px;
}
.hmbnnr3crrformbox select{
    border: none;
    outline: none;
    width: 100%;
    font-size: 18px;
    font-weight: 600;
}
#hmbnnrcrr3lastbx{
    display: flex;
    align-items:center;
        
}
#hmbnnrcrr3lastbx input{
        border: none;
}
#hmbnnrcrr3lastbx{
    margin-bottom:0;
}
#hmbnnrcrr3lastbx label{
    background-color: #e41719;
    color: #fff;
    padding: 1% 5%;
    font-size: 20px;
    font-weight: 600;
    border-radius: 7px;
}
.submitbtncrr{
    background-color: #EC181A;
    width: 100%;
    text-align: center;
    color: #fff;
    border-radius: 10px;
    border: none;
    padding: 1% 0;
    font-size: 20px;
        margin: 5% 0;
}
/*career page ends*/




/* Footer Starts */
.frtlnkpro:hover .frtddopn {
    display: block;
}

.frtddopn {
    display: none;
    position: absolute;
    right: 35%;
    z-index: 999;
    width: 17%;
    margin: auto;
    background-color: #075555d9;
    text-align: center;
    border-radius: 50px;
    padding: 2% 0% 2% 0%;
    animation: popIn 0.5s;
}

.toolbar21 {
    width: 60%;
    margin: auto;
}

.frtlnk {
    width: 20%;
    margin: auto;
}

.frtlnkpro {
    width: 20%;
    margin: auto;
}

.frtlnk h3 a {
    color: #ba974c;
    font-family: Trajan_Bold;
    text-decoration: none;
    font-size: calc(0.9vw + 0.9vh);
    padding: 0% 3%;
}

.endtxt {
    text-align: center;
}

.endtxt p {
    font-size: calc(0.55vw + 0.6vh);
    color: #fff;
    font-family: mm2;
    text-transform: uppercase;
}

.endtxt a {
    font-size: calc(0.55vw + 0.6vh);
    color: #fff;
    font-family: mm2;
}





/* Footer ends */





/* Inner Footer Starts */

.ftrmain {
    background: #de0004;
    padding: 5% 10% 5% 10%;
    position: relative;
}

.fttrlgosclotrbar {
    padding: 20% 0%;
}

.fttrlogo img {
    width: 100%;
}

.fttrlogo {
    width: 40%;
    margin: auto;
}

.fttlinksotrbr {
    padding: 10% 0%;
}

.ftrlink {
    width: 80%;
    margin: auto;
}

.ftrlink h4 {
    font-size: calc(0.8vw + 1vh);
    color: #fff;
    font-family: mm2;
}

.ftrlink a {
    text-decoration: none;
    padding: 1%;
}

.ftrlink p {
    font-size: calc(0.5vw + 0.8vh);
    font-family: mm2;
    color: #fff;
    margin: 0%;
    transition: 0.4s;
    text-transform: uppercase;
}

.ftrlink p:hover {
    padding-left: 2%;
    color: #ffe800;
}

.fttrsclfbtg {
    width: 65%;
    margin: auto;
    border: 10px #3e5a9b solid;
    position: relative;
}

.fttrclmddl {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    font-size: 1.2vw;
    font-family: mm2;
    padding: 4.5% 0%;
    color: #fff;
}

.fttrcllink {
    display: grid;
    align-content: center;
    height: 100%;
}

.fttrsclitem {
    width: 13%;
    position: relative;
}

.fttrsclitem a {
    padding: 0% 5%;
    color: #fff;
    text-decoration: none;
}

.fttrsclitem:hover svg {
    position: relative;
    color: #ffe800;
    transition: .5s;
    z-index: 3;
}

.fttrsclitem:hover svg {
    transform: rotateY(360deg);
}

.fttrsclitem:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .5s;
    z-index: 2;
}

.fttrsclitem:hover:before {
    top: 0;
}

.fttrsclfblogo img {
    width: 100%;
}

.fttrsclfblogo {
    width: 13%;
    position: absolute;
    right: 102.9%;
    top: 10%;
}



.topbtn {
    position: fixed;
    bottom: 40px;
    right: 1%;
    z-index: 9999;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background: #ffa900;
    border-radius: 113%;
    display: none;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 27px;
    box-shadow: 1px 1px 3px #00000085;
    transition: all 0.4s;
    cursor: url(../assets/img/toppoint.png), auto;
}

.topbtn:hover {
    background: #0c58f9;
    color: #fff;
    cursor: pointer;
    font-size: 31px;
}

.topbtn a:hover {
    text-decoration: none;
}

.topbtnshow {
    display: grid;
}

.whatsapp {
    position: fixed;
    bottom: 40px;
    left: 1.5%;
    z-index: 9999;
    width: 45px;
}

.whatsapp img {
    width: 100%;
}


/* Inner Footer ends */




#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50000;
}

#loader-img {
    display: block;
    position: relative;
    top: 35%;
    width: 31%;
    height: 27%;
    margin: auto;
    z-index: 1001;
    background-image: url(../assets/img/sshape-1.png);
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: center;
    animation: bounce 2s infinite;

    z-index: 1020;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background: #fff;
    z-index: 1000;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
}

.loader-section.section-left {
    left: 0;
}

.loader-section.section-right {
    right: 0;
}

.panel_left {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all .7s .3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    transition: all .7s .3s cubic-bezier(0.645, 0.045, 0.355, 1.000)
}

.panel_right {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all .7s .3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    transition: all .7s .3s cubic-bezier(0.645, 0.045, 0.355, 1.000)
}

.loaded-circle {
    opacity: 0;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out
}

.loaded-img {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all .3s 1s ease-out;
    transition: all .3s 1s ease-out
}