

@font-face {
    font-family: boldfont;
    src: url(./font/Gotham-Font/Gotham-Bold.otf);
   
  }
  
  @font-face {
    font-family: normalfont;
    src: url(./font/Gotham-Font/Gotham-Light.otf);
  
  }
  
  @font-face {
    font-family: lightfont;
    src: url(./font/Gotham-Font/Gotham-XLight.otf);
   
  }
  
  a{
    text-decoration: none;
  }
  a:hover{
    text-decoration: none;
    color: unset;
  }
  
  p{
    font-size: 16px;
  }
  
  h1, h2, h3, h4, h5{
    font-family: boldfont;
  }
  
  *{
    font-family: normalfont;
    box-sizing: border-box;
  }
  
  header{
    position: fixed;
    z-index: 9999;
    background: white;
    width: 100%;
  }
  .headerflex{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    height: 100px;
  }
  
  header.sticky{
    box-shadow: 0 0 10px rgb(14 18 89);
  }
  
  header.sticky  .logo{
  width: 10%;
  transition:all 0.3s ;
  -webkit-transition:all 0.3s ;
  -moz-transition:all 0.3s ;
  -ms-transition:all 0.3s ;
  -o-transition:all 0.3s ;
  }
  
  header.sticky  .headerflex{
    height: 50px;
    transition:all 0.3s ;
  -webkit-transition:all 0.3s ;
  -moz-transition:all 0.3s ;
  -ms-transition:all 0.3s ;
  -o-transition:all 0.3s ;
  }
  
  
  .headerflex ul {
    display: flex;
    align-items: center;
    padding: 0;
    gap: 20px;
    margin: 0;
    width: 40%;
    justify-content: space-between;
  }
  
  .logo{
    width: 20%;
  }
  .logo img{
    width: 100%;
    max-width: 170px;
    display: block;
    margin: 0 auto;
  }
  .headerflex ul li{
    list-style: none;
    position: relative;
    padding: 10px 0;
  }
  
  .headerflex ul li a{
    text-decoration: none;
    color: black;
    font-size: 14px;
  }
  .headercontainer{
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .leftsidebanner{
    background: rgb(14,18,89);
    background: linear-gradient(80deg, rgba(14,18,89,1) 16%, rgba(193,3,40,1) 100%);
    color: white;
  width: 45%;
    padding-left: 150px;
    height: 618px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
  }
  .banner{
    display: flex;
    padding-top: 120px;
  }
  .banner img{
    width:55%;
  }
  
  
  .leftsidebanner span{
    font-size: 30px;
  }
  
  .leftsidebanner h1{
    font-size: 55px;
    margin: 0;
    font-weight: bold;
  }
  .leftsidebanner p{
    font-size: 44px;
    margin-top: 10px;
    font-weight: 300;
    line-height: 45px;
  }

  .containers {
		
		
    padding: 40px;
    background-color: #fff;
            padding-top: 130px;
}
.containers h1 {
color: #333;
/* margin-bottom: 20px; */
font-weight: bold;
font-size: 24px;
color: red;
font-size: 32px;
color: #e23462;
}
.containers .terms {
    margin-bottom: 40px;
}
.containers ol {
    counter-reset: item;
    list-style: none;
    padding: 0;
    margin: 0;
}
.item.active{
    background-color: transparent;
}
.containers li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
    position: relative;
}
.containers li:before {
    content: counter(item) ".";
    counter-increment: item;
    font-weight: bold;
    margin-right: 10px;
}
.containers p {
    margin-bottom: 40px;
    color: #666;
}
  
  .bannercta{
    background-color: white;
    font-size: 24px;
    width: fit-content;
    display: flex;
    padding: 5px 10px;
    gap: 10px;
    margin-top: 20px;
    color: black;
    align-items: baseline;
  }
  .customforone .productbox a{
    color: #000000;
    font-weight: bold;
    font-size: 13px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
  }
  
  .bannercta span{
    font-size: 30px;
    color: black;
  }
  
  .bannercta h3{
    background: rgb(14,18,89);
    background: linear-gradient(80deg, rgba(14,18,89,1) 16%, rgba(193,3,40,1) 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    display: block;
    font-size: 38px;
    background-size: cover;
    margin: 0;
    font-weight: 600;
  }
  
  .bannermainbtn{
    border: 1px solid white;
    color: white;
    width: fit-content;
    margin-top: 20px;
    padding: 10px 30px;
    font-size: 18px;
  }
  .titleone{
    text-align: center;
  }
  
  .headerflex ul li:hover > .dropdown_menu{
    display: flex!important;
  }
  .dropdown_menu {
    position: absolute;
    position: absolute;
    display: flex;
    flex-direction: column;
    background: white;
    width: 238px!important;
    z-index: 9999;
    box-shadow: 0 0 10px gray;
    top: 40px;
    left: -50%;
    gap: 0px!important;
    display: none!important;
    border-top: 3px solid gray;
  }
  .dropdown_menu li{
    width: 100%;
    text-align: center;
    margin: 0;
    border-bottom: 1px solid lightgray;
  }
  
  .dropdown_menu li:hover{
    background: rgb(14,18,89);
    background: linear-gradient(80deg, rgba(14,18,89,1) 16%, rgba(193,3,40,1) 100%);
  }
  .modal{
    z-index: 9999999999999999;
  }
  
  .aboutgreeright  .item img{
    max-height: 240px!important;
    width: auto!important;
    margin: 0 auto;
    max-width: 100%;
  }
  
  .model_form .modal-header {
    padding: 15px;
    background: linear-gradient(to right, #360670 , #db0768);
    border-bottom: 1px solid #e5e5e5;
    color: #ffffff;
  }
  .model_form .modal-header button.close {
    color: #ffffff;
    opacity: 1;
    margin-top: 0px;
        font-size: 25px;
        outline: none;
  }
  .model_form input,.model_form textarea {
    outline: none;
    border: none;
    margin-bottom: 10px;
    padding: 5px 10px;
    font-size: 14px;
  }
  .model_form .modal-body {
    background: #f5f5f5;
  }
  .model_form input::placeholder ,.model_form textarea::placeholder{
    color: #555555;
  }
  
  .model_form input, .model_form textarea{
    outline: none;
    border: none;
    margin-bottom: 10px;
  }
  .modal-header {
    padding: 15px;
    background: linear-gradient(to right, #360670, #db0768);
    border-bottom: 1px solid #e5e5e5;
    color: #ffffff;
  }
  .dropdown_menu li:hover > a{
    color: white!important;
  }
  .dropdown_menu li a{
    padding: 10px;
  }
  
  .contactrow{
    display: flex;
    background-color: #dd1c58;
    max-width: fit-content;
    margin: 0 auto;
    margin-top: 50px;
    gap: 20px;
    align-items: center;
    justify-content: center;
  }
  .contactrow p{
    font-size: 24px;
    color: white;
    margin: 0;
    display: flex;
    align-items: center;
  }
  .contactrow p a{
    color: white;
  }
  .contactrow img{
    scale: 1.3;
  }
  .contactrow img:nth-child(1){
    margin-left: -5px;
  }
  
  .iconsright img{
    margin-right: -10px;
  }
  .titleone h2{
    font-size: 33px;
    color: #6a3969;
    text-transform: uppercase;
  }
  .productsslider{
    padding: 60px 0;
  }
  .titleone{
    background-image: url(./images/titleguide.png);
    background-size: 400px;
    background-repeat: no-repeat;
    background-position: center;
  }
  .productbox{
    background-size: 100%;
    background-repeat: no-repeat;
    max-width: 365px;
    margin: 0 auto;
    /* height: 320px; */
    display: flex;
    flex-direction: column;
    justify-content: end;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    aspect-ratio: 1 / 0.9;
  }
  .productbox:hover{
    background-size: 120%;
  }
  .productbox img{
    margin-left: auto;
    margin-bottom: -25px;
    z-index: 999;
    width: 40% !important;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    object-fit: contain;
    aspect-ratio: 149 / 155;
  }
  .productbox:hover img{
    width: 50% !important;
  }
  .procontent{
    background-color: #ffffffcf;
    padding: 10px;
    padding-top: 30px;
    color:black;
  }
  .procontent h3{
    font-size: 18px;
  }
  .productowlcol{
    margin-top: 60px;
  }
  .owl-prev{
    position: absolute;
    width: 27px;
    height: 40px;
    background: #a7a1a1!important;
    top: 40%;
    left: -39px;
    font-size: 22px;
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
  
  }
  .owl-next{
    position: absolute;
    width: 27px;
    height: 40px;
    background: #a7a1a1!important;
    top: 40%;
    right: -39px;
    font-size: 22px;
    clip-path: polygon(100% 49%, 0 0, 0 100%);
  
  }
  .owl-next span{
    display: none;
  }
  .owl-prev span{
    display: none;
  }
  .blogsbox{
    width: 50%;
    position: relative;
    overflow: hidden;
  }
  
  .carrerfoorm{
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }
  .inputboxc{
    width: calc(50% - 20px);
  position: relative;
  }
  .inputboxc input{
    width: 100%;
    padding: 10px;
    background: linear-gradient(white, white) padding-box, linear-gradient(to right, rgba(14, 18, 89, 1) 16%, rgba(193, 3, 40, 1) 100%) border-box;
  border: 2px solid transparent;
  }
  .inputboxc textarea{
    width: 100%;
    padding: 10px;
    background: linear-gradient(white, white) padding-box, linear-gradient(to right, rgba(14, 18, 89, 1) 16%, rgba(193, 3, 40, 1) 100%) border-box;
  border: 2px solid transparent;
  }
  .submitbtnbox{
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .submitbtnbox button{
    max-width: 400px;
  margin-top: 20px;
  padding: 7px 40px;
  text-decoration: none;
  display: block;
  text-align: center;
  color: black;
  background: linear-gradient(white, white) padding-box, linear-gradient(to right, rgba(14, 18, 89, 1) 16%, rgba(193, 3, 40, 1) 100%) border-box;
  border: 2px solid transparent;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  }
  .carrertitle{
    margin-bottom: 40px;
    text-align: center;
    color:#cf154d;
  }
  .inputboxc span{
    position: absolute;
  top: -14px;
  background: white;
  left: 35px;
  padding: 4px 10px;
  color: gray;
  font-weight: 600;
  }
  .formcarrer{
    padding-bottom: 70px;
  }
  .blogsbox img{
    width: 100%;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
  }
  .blogsbox:hover img{
    scale: 1.1;
  }
  
  .blogrow{
    display: flex;
    flex-wrap: wrap;
    padding: 0;
  }
  .blogsbox .blogcontent {
    position: absolute;
    bottom: 0;
    background-color: #ffffffcd;
    width: 100%;
    padding: 13px;
    padding-left: 70px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    min-height: 180px;
  
  }
  .blogcontent h3{
    width: 100%;
    font-size: 24px;
    color: purple;
  }
  .blogincerleft{
   width: calc(100% - 200px);
   padding-right: 20px;
  }.blogincerleft p{
    font-size: 14px;
    color: black;
  }
  .blogcontent button{
    width: 170px;
    outline: none;
    background: linear-gradient(white, white) padding-box, linear-gradient(to right, rgba(14,18,89,1) 16%, rgba(193,3,40,1) 100%) border-box;
    border: 2px solid transparent;
    color: #000;
    padding: 5px 20px;
    margin-left: 20px;
    font-size: 16px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
  }
  
  .blogcontent .button{
    width: 170px;
    outline: none;
    background: linear-gradient(white, white) padding-box, linear-gradient(to right, rgba(14,18,89,1) 16%, rgba(193,3,40,1) 100%) border-box;
    border: 2px solid transparent;
    color: #000;
    padding: 5px 20px;
    margin-left: 20px;
    font-size: 16px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    text-align: center;
  }
  .blogcontent .button:hover{
    background: rgb(14,18,89);
    background: linear-gradient(80deg, rgba(14,18,89,1) 16%, rgba(193,3,40,1) 100%);
    color: white;
    border: 2px solid white;
  }
  .blogcontent button:hover{
    background: rgb(14,18,89);
    background: linear-gradient(80deg, rgba(14,18,89,1) 16%, rgba(193,3,40,1) 100%);
    color: white;
    border: 2px solid white;
  }
  .pngboxtree:hover img{
    rotate: 360deg;
    scale: 1.3;
  }
  .pngboxtree img{
    background: rgb(14,18,89);
    background: linear-gradient(80deg, rgba(14,18,89,1) 16%, rgba(193,3,40,1) 100%);
    padding: 30px;
    aspect-ratio: 1/1;
    max-width: 150px;
    display: block;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin: 0 auto;
    width: 150px;
    object-fit: contain;
    overflow: visible;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
  }
  
  .threpoints{
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
  }
  .threpoints::before{
    content: "";
    position: absolute;
    width:70%;
    height: 2px;
    background: rgb(14,18,89);
    background: linear-gradient(80deg, rgba(14,18,89,1) 16%, rgba(193,3,40,1) 100%);
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    z-index: -1;
  }
  .pngboxtree{
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 30px;
    max-width: 235px;
  }
  
  .downloadbseciton{
    padding: 100px 0 50px;
  }
  .donwlink{
    max-width: 300px;
    margin-top: 60px;
    padding: 7px 20px;
    text-decoration: none;
    display: block;
    margin: 0 auto;
    text-align: center;
    color: black;
    background: linear-gradient(white, white) padding-box,    linear-gradient(to right, rgba(14,18,89,1) 16%, rgba(193,3,40,1) 100%) border-box;
    border: 2px solid transparent;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
  }
  .donwlink:hover{
    background: rgb(14,18,89);
    background: linear-gradient(80deg, rgba(14,18,89,1) 16%, rgba(193,3,40,1) 100%);
    color: white;
    scale: 1.1;
  }
  
  .bringsection{
    display: flex;
  }
  .contentbgbox{
    color: white;
    background: rgb(14,18,89);
    background: linear-gradient(80deg, rgba(14,18,89,1) 16%, rgba(193,3,40,1) 100%);
    padding: 100px 80px ;
    width: 100%;
  }
  .contentbgbox h2{
    margin-bottom: 30px;
  }
  .contentbgbox a{
    max-width: 150px;
    margin-top: 30px;
    padding: 7px 20px;
    text-decoration: none;
    display: block;
   
    text-align: center;
    color: white;
    border: 2px solid white;
   
  }
  .contentbgbox p{
    font-size: 18px;
    max-width: 1000px;
  }
  .testimonialsection{
    background-image: url(./images/testimonialbg.png);
    background-repeat: no-repeat;
    background-position:  center 120px;
    background-size: 1100px;
    padding: 60px 0;
  }
  .testimonialsection h3{
    text-align: center;
    margin-bottom: 60px;
    color: #6a3969;
  }
  
  .sliderbox{
    width: 700px;
   position: relative;
    background-color: white;
    margin: 0 auto;
    box-shadow: 0 0 20px  rgba(0, 0, 0, 0.286);
    padding: 0 100px;
  }
  
  .testimonialslider .item{
    text-align: center;
    padding: 30px;
    min-height: 415px;
  }
  
  .testimonialslider .item h3{
    margin-bottom: 10px;
    color: black;
    font-size: 18px;
  }
  
  .testimonialslider .item img{
    width: 110px!important;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .quote1{
    position: absolute;
    top: 0;
    right: 0;
  }
  
  .quote2{
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .formsectionformbox input:focus-within{
    outline: none;
  }
  
  .formsectionformbox select:focus-within{
    outline: none;
  }
  
  .formsectionformbox input, .formsectionformbox select{
    width: 100%;
    margin-top: 50px;
    margin:  10px;
    padding: 10px;
    border: none;
    border-bottom: 2px solid black;
    background: transparent;
    color: black;
    font-size: 19px;
  }
  .formsectionformbox input::placeholder{
    color: black;
  }
  .formsection{
    text-align: center;
    padding: 60px 0;
    background-color: #c7b5cf;
  }
  .termscheckbox{
    display: flex;
    align-items: baseline;
    margin-top: 30px;
  
  }
  .formboxtitle{
    margin-bottom: 70px;
  }
  .termscheckbox p{
    margin: 0;
    text-align: left;
  }
  .termscheckbox input{
    width: 50px;
    margin: 0;
  }
  .formsubmitbtn{
    padding: 10px 30px;
    font-size: 18px;
    border: none;
    outline: none;
    border: 2px solid black;
    color: black;
    background-color: transparent;
    margin-top: 70px;
  }
  .formsubmitbtn:hover{
    color: white;
    background: rgb(14,18,89);
    background: linear-gradient(80deg, rgba(14,18,89,1) 16%, rgba(193,3,40,1) 100%);
  }
  .footericonsbox{
    display: flex;
    justify-content: center;
    gap:20px;
    margin-top: 30px;
    align-items: center;
  }
  .pendingtitiel{
    text-align: center;
    background: rgb(14, 18, 89);
    background: linear-gradient(90deg, rgba(14, 18, 89, 1) 40%, rgba(193, 3, 40, 1) 54%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 5vw;
    margin-bottom: 50px;
    margin-top: 100px;
    max-width: 1300px;
    margin: 100px auto;
  }
  .footericonsbox img{
    width: 50px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
  }
  .footersection{
    padding: 40px 0;
  }
  
  .footersection ul li{
    list-style: none;
    margin-bottom: 10px;
  }
  .footersection ul li a{
    text-decoration: none;
    color: gray;
  }
  .footersection ul{
    padding: 0;
  }
  .footersection h3{
    font-size: 18px;
    color: gray;
  }
  
  .testimonialslider .owl-prev{
    background-color: #ce154d!important;
  }
  
  .testimonialslider .owl-next{
    background-color: #ce154d!important;
  }
  .hbanners{
    padding-top: 120px;
  }
  .accordion-item {
    background-color: #fff;
    border: none;
  }
  .accordion-button {
    border-bottom: 1px solid black;
  }
  .accordion-button:focus {
    z-index: 3;
    border-color: none;
    outline: 0;
    box-shadow: none;
  }
  .accordion-button:not(.collapsed) {
    color: #e11350;
    background-color: transparent;
    box-shadow: none;
  }
  .jobmainsection{
    padding: 70px 0;
  }
  .jobtitle{
    text-align: center;
    color: #e11350;
    margin-bottom: 50px;
  }
  .accordion-body p, .accordion-body b{
    margin-bottom: 15px;
    display: block;
  }
  .accordion-button:focus {
    z-index: 3;
    border-color: black;
    outline: 0;
    box-shadow: none;
  }
  .gridrow{
    display: flex;
  }
  .gridcardcarrer{
    width: 33%;
    padding: 20px;
    text-align: center;
  }
  .gridcardcarrer p{
    max-width: 300px;
    margin: 0 auto;
  }
  .gridcardcarrer:nth-child(odd){
    background:#efefef;
  }
  
  .gridcardcarrer:nth-child(odd) h1{
    color: white;
  }
  .gridcardcarrer h1{
    font-size: 100px;
    text-align: center;
    border-bottom: 2px solid white;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 20px;
    color: gray;
  }
  .gridtitle{
    text-align: center;
    font-size: 33px;
    text-transform: uppercase;
    background: rgb(14, 18, 89);
    background: linear-gradient(90deg, rgba(14, 18, 89, 1) 40%, rgba(193, 3, 40, 1) 54%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    margin-top: 30px;
  }
  .gridcardcarrer b{
    font-size: 22px;
    font-weight: bold;
    font-family: boldfont;  
    margin-bottom: 15px;
    display: block;
  
  }
  .gridcardcarrer:nth-child(1) b, .gridcardcarrer:nth-child(1) h1{
    color: #1e1e52;
  }
  .gridcardcarrer:nth-child(2) b, .gridcardcarrer:nth-child(2) h1{
    color: #83206b;
  }
  .gridcardcarrer:nth-child(3) b, .gridcardcarrer:nth-child(3) h1{
    color: #e11350;
  }
  .quicklinkitem{
    position: fixed;
    right: 0;
    top:30%;
    width: 35px;
    cursor: pointer;
    z-index: 9999;
  }
  .quicklinkitem img{
    width: 100%;
  }
  .quicklinkitem span{
    display: block;
    writing-mode: vertical-lr;
    text-orientation: mixed;
    text-orientation: mixed;
    -webkit-text-orientation: mixed;
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: vertical-lr;
    color: white;
   position: absolute;
   top:20%;
   left: 30%;
  }
  .quicklinkitem i{
    display: block;
    writing-mode: vertical-lr;
    text-orientation: mixed;
    text-orientation: mixed;
    -webkit-text-orientation: mixed;
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: vertical-lr;
    color: white;
   position: absolute;
   top:20%;
   left: 30%;
  }
  
  .quicklinkitem:hover .quicklinkoptionbox{
    left: -290px;
  }
  
  
  
  
  
  .rightcarrerbox{
    width: 60%;
    position: relative;
  }
  .rightcarrerbox img{
    width: 100%;
  }
  .carrerend{
    padding: 100px 0;
  }
  .carrerendcontent{
    background: linear-gradient(90deg, rgba(14, 18, 89, .95) -10%, rgba(193, 3, 40, .95) 100%);
  color: white;
  position: absolute;
  top: 17%;
  right: -70%;
  max-width: 705px;
  padding: 90px 40px;
  }
  .carrerendcontent h3{
    margin-bottom: 30px;
    font-family: normalfont;
    font-weight: bold;
  }
  
  .owl-carousel{
    z-index: 0!important;
  }
  .quicklinkoptionbox{
    position: absolute;
    width: 270px;
    left: -300px;
    background-color: white;
    padding: 20px 10px;
    top: 0;
    z-index: 9999999999999!important;
    border-radius: 10px;
    border: 1px solid gray;
    left: 600px;
    transition: all 0.3s;
  }
  .quicklinkoptionbox.show{
    left: -290px;
  }
  .quicklinkoptionbox li{
    list-style:none;
    padding: 10px 0;
    border-bottom: 1px solid gray;
  }
  .quicklinkoptionbox ul{
    padding: 0;
    margin: 0;
  }
  .quicklinkoptionbox li img{
    width: 30px;;
    margin-right: 10px;
  }
  .quicklinkoptionbox li:nth-last-child(){
    border-bottom: 0;
  }
  .quicklinkoptionbox li a{
    text-decoration: none;
    color: black;
  }
  
  .aboutusbanercontent{
    font-size: 18px!important;
    line-height: 30px!important;
  }
  
  .tryingdemoabouth1{
    font-size: 60px!important;
  }
  
  .aboutsecondsection {
    display: flex;
  }
  .aboutsecondsection .aboutleftimg{
  width: 45%;
  }
  .aboutsecondsection img{
    width: 100%;
    z-index: -1;
  }
  
  .eventbox{
    width: 100%;
    position: relative;
    display: flex;
  }
  .eventbox img{
    width: 60%!important;
  }
  .graybg .sliderbox{
    padding: 0 50px;
  }
  .graybg .testimonialslider .item{
    min-height: 300px;
  }
  .graybg .testimonialslider .item img{
    margin-bottom: 0;
  }
  .eventsliders{
    width: 100%!important;
  }
  .aboutsiderightcontent{
   width: 55%;
   padding: 50px 60px;
   position: relative;
  }
  .aboutsiderightcontent h2{
    color: #6a3969;
    margin-bottom: 30px;
  }
  .aboutsiderightcontent p{
    margin-bottom: 20px;
    font-weight: 400;
  }
  
  .aboutsiderightcontent a{
    max-width: 200px;
    margin-top: 40px;
    padding: 7px 20px;
    text-decoration: none;
    display: block;
    text-align: center;
    color: black;
    background: linear-gradient(white, white) padding-box,    linear-gradient(to right, rgba(14,18,89,1) 16%, rgba(193,3,40,1) 100%) border-box;
    border: 2px solid transparent;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
  }
  .aboutsiderightcontent a:hover{
    background: rgb(14, 18, 89);
    background: linear-gradient(80deg, rgba(14, 18, 89, 1) 16%, rgba(193, 3, 40, 1) 100%);
    color: white;
    scale: 1.1;
  }
  
  .aboutgreenslidersection{
    background-color: #88cc78;
    margin-top: 400px;
  }
  .aboutgreeleft{
    padding: 70px ;
   
  }
  
  .aboutgreeright{
    padding: 50px;
    background-color: #56ab45;
  }
  
  .aboutgreeleft h2{
    color: #284e1f;
  }
  
  .aboutgreeleft p{
    color: #284e1f;
  }
  .aboutoutpng{
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 530px;
  }
  .aboutpersonsection{
    display: flex;
  
  }
  .aboutpersonleft{
    width: 45%;
    display: flex;
    justify-content: center;
    padding: 50px;
    background-color: white;
    align-items: center;
  }
  
  .gradentbtn{
    max-width: fit-content;
    margin-top: 40px;
    padding: 7px 20px;
    text-decoration: none;
    display: block;
    text-align: center;
    color: black;
    background: linear-gradient(white, white) padding-box,    linear-gradient(to right, rgba(14,18,89,1) 16%, rgba(193,3,40,1) 100%) border-box;
    border: 2px solid transparent;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
  }
  .gradentbtn:hover{
    background: rgb(14, 18, 89);
    background: linear-gradient(80deg, rgba(14, 18, 89, 1) 16%, rgba(193, 3, 40, 1) 100%);
    color: white;
    scale: 1.1;
  }
  .aboutpersonright{
    padding: 50px;
    width: 55%;
  }
  .aboutpersonright p{
    max-width: 600px;
  }
  .truecolorbanersection{
    padding-top: 120px;
  }
  .truecolorbanersection img{
    width: 100%;
  }
  .calculatorsection{
    max-width: 1100px;
    padding-bottom: 40px;
  }
  .inputtypetwobox{
    outline: none;
  background: linear-gradient(white, white) padding-box, linear-gradient(to right, rgba(14,18,89,1) 16%, rgba(193,3,40,1) 100%) border-box!important;
  border: 3px solid transparent!important;
  color: #000;
  position: relative;
  padding: 15px;
  }
  .ceckboxbox{
    display: flex;
    gap: 30px;
  }
  .ceckboxbox label{
    font-size: 14px;
  color: #000000;
  font-weight: 600;       
  }
  .inputbox{
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 35px 0;
  }
  .inputtypetwobox{
    margin: 35px 0;
  }
  .lablespan{
    position: absolute;
  top: -11px;
  left: 30px;
  background: white;
  padding: 0 20px;
  color: #a2a2a2;
  font-weight: 600;
  }
  .inputbox label{
    position: absolute;
  top: -11px;
  left: 30px;
  background: white;
  padding: 0 10px;
  color: gray;
  font-weight: 600;
  }
  .inputbox input{
    padding: 10px;
    outline: none;
  background: linear-gradient(white, white) padding-box, linear-gradient(to right, rgba(14,18,89,1) 16%, rgba(193,3,40,1) 100%) border-box!important;
  border: 3px solid transparent!important;
  height: 50px;
  }
  
  .inputbox select{
    padding: 10px;
    outline: none;
  background: linear-gradient(white, white) padding-box, linear-gradient(to right, rgba(14,18,89,1) 16%, rgba(193,3,40,1) 100%) border-box!important;
  border: 3px solid transparent!important;
  height: 50px;
  }
  
  .quickpillsmine{
    display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
  }
  .nav-pills li{
    width: 50%;
  }
  .nav-pills li button{
    width: 100%;
    border-radius: 0!important;
  outline: none;
  background: linear-gradient(white, white) padding-box, linear-gradient(to right, rgba(14,18,89,1) 16%, rgba(193,3,40,1) 100%) border-box!important;
  border: 2px solid transparent!important;
  color: #000;
  padding: 5px 20px;
  margin-left: 20px;
  font-size: 16px;
  padding: 10px;
  margin: 0;
  }
  .nav-pills li button.active{
    background: rgb(14,18,89);
  background: linear-gradient(80deg, rgba(14,18,89,1) 16%, rgba(193,3,40,1) 100%)!important;
    width: 100%;
    color: white;
    border-radius: 0!important;
   
  }
  .imgbgbox img{
    width: 100%;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    height: 100%;
  }
  .contentbgbox{
    width: 60%;
  }
  .imgbgbox{
    overflow: hidden;
    width: 40%;
  }
    .imgbgbox:hover img{
        scale: 1.3;
    }
  .bugetcalculatorbanner{
    display: flex;
    padding-top: 120px;
  }
  .bugetbnrimg{
    width: 50%;
  }
  .bugetbnrimg img{
    width: 100%;
  }
  .bugetrightcontentbrn{
    width: 50%;
    background: rgb(14,18,89);
  background: linear-gradient(80deg, rgba(14,18,89,1) 16%, rgba(193,3,40,1) 100%);
    padding: 160px 60px;
    display: flex;
    flex-direction: column;
  }
  .bugetrightcontentbrn h4{
    color: white;
    font-size: 40px;
  }
  .bugetrightcontentbrn h2{
    color: white;
    font-size: 60px;
  }
  .titlepera{
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 0;
    text-align: center;
  }
  .titlepera p{
    font-size: 18px;
  }
  .checkbox{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
  .col-md-x{
    width: 20%;
  }
  .procbox{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  
  }
  .procbox:hover img{
    rotate: 360deg;
    scale: 1.1;
  }
  .procbox p{
    color: white;
  }
  .procbox img{
    max-width: 150px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
  }
  .processection h2{
    text-align: center;
    margin-bottom: 40px;
    color: white;
    font-size: 22px;
  }
  .processection{
    padding: 60px 0;
    background: rgb(14,18,89);
    background: linear-gradient(80deg, rgba(14,18,89,1) 16%, rgba(193,3,40,1) 100%);
  }
  .whitebtn{
    width: fit-content;
    color: white;
    border: 1px solid white;
    padding: 10px 40px;
    text-decoration: none;
    margin: 0 auto;
    display: block;
    margin-top: 40px;
  }
  
  .videobox{
    min-height: 275px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    background-size: cover;
    position: relative;
  }   
  .testicontent{
    position: absolute;
    background: #c3c3c3f5;
    display: flex;
    align-items: center;
    bottom: 0;
    padding: 10px;
    justify-content: space-between;
  }
  .testicontent p{
    width: 60%;
    font-size: 13px;
  }
  
  .testicontent button{
    width: fit-content;
    background: rgb(14,18,89);
    background: linear-gradient(80deg, rgba(14,18,89,1) 16%, rgba(193,3,40,1) 100%);
    outline: none;
    border: none;
    padding: 5px ;
    color: white;
    font-size: 14px;
    padding: 5px 10px;
  }
  .testimonalvideosection{
    padding: 80px 0;
  }
  .videobox img{
    width: 80px;
    margin-top: 40px;
  }
  .graybg{
    background-color: #ebebeb;
  }
  .eventcontentbox{
    position: relative;
    bottom: 0;
    background: #ebebeb;
    padding: 50px 155px 50px 50px;
    width: 50%;
  }
  .eventcontentbox h1{
    color: #83206b;
    margin-bottom: 50px;
    font-size: 30px;
  }
  .eventcontentbox h3{
    font-size: 22px;
    color: #1b2254;
  }
  .eventcontentbox h3 span{
    font-size: 18px;
    display: block;
    margin-top: 10px;
    margin-bottom: 20px;
    font-weight: bold;
    font-style: italic;
  }
  
  .eventcontentbox p{
    font-size: 18px;
    color: #1b2254;
    max-width: 450px;
  }
  
  .productsectionbnr{
    padding-top: 120px;
  }
  .productbanersection{
    background-image: url(./images/productbaner.png);
   
  }
  .productrightcontent h2{
    font-size: 55px;
  }
  .productrightcontent p{
    font-size: 29px;
  }
  .productrightcontent {
    background: rgb(14, 18, 89);
  background: linear-gradient(80deg, rgb(14 18 89 / 75%) 16%, rgb(193 3 41 / 90%) 100%);
  color: white;
  width: 45%;
  padding-left: 150px;
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 500px;
  
  }
  .productscontentsecitno{
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 0;
  text-align:center;
  }
  .productsgrid{
  display: flex;
  flex-wrap: wrap;
  }
  .gridproduct{
  width: 33%;
  background-color: red;
  aspect-ratio: 1/0.7;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-size: cover;
  position: relative;
  transition: all 0.3s;
  }
  .gridproduct:hover p{
  scale: 1.3;
  }
  .opacity{
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #00000024;
  
  }
  .gridproduct p{
  
  font-size: 26px;
  font-weight: bolder;
  color: #fff;
  z-index: 99;
  text-align: center;
  text-shadow: 0 0 10px #000000bd;
  transition: all 0.4s;
  opacity: 0.7;
  
  }
  
  .gridproduct p span{
  
  font-size: 22px;
  
  }
  .gridproduct h3{
  font-size: 22px;
  }
  .productscontentsecitno h2{
  font-size: 33px;
  color: #6a3969;
  margin-bottom: 40px;
  }
  .productscontentsecitno p{
  font-size: 18px;
  }
  
  .downloadbsecitoncopy2{
  padding: 100px 0;
  }
  .downloadbsecitoncopy2 .threpoints {
  display: flex;
  justify-content: space-between;
  max-width: 1220px;
  margin: 0 auto;
  position: relative;
  }
  
  .downloadbsecitoncopy2 .threpoints::before {
  content: "";
  position: absolute;
  width: 83%;
  height: 2px;
  background: rgb(14, 18, 89);
  background: linear-gradient(80deg, rgba(14, 18, 89, 1) 16%, rgba(193, 3, 40, 1) 100%);
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  z-index: -1;
  }
  .downloadbsecitoncopy2 .donwlink{
  margin-top: 50px;
  }
  .footerbnnersingleproducts{
    margin-top: 0;
    padding: 0;
  }
  
  .footerbnnersingleproducts .leftsidebanner{
    width: 50%;
  }
  .footerbnnersingleproducts .singleproductrightbner{
    width: 50%;
    position: relative;
  }
  .footerbnnersingleproducts .singleproductrightbner img{
    width: 100%;
  }
  .contentsingleright{
    position: absolute;
    max-width: 600px;
    top: 20%;
    left: 10%;
  }
  .contentsingleright p{
    color: #000;
    text-shadow: 2px 2px 5px white;
  
  }
  .contentsingleright p:nth-child(3){
    font-family: boldfont;
    font-weight: bold;
  }
  .singleexporebtn{
    margin: 0;
    margin-top: 30px;
    width: fit-content;
  }
  .contentsingleright h2{
    color: #ce154e;
    margin-bottom: 40px;
  }
  
  .footerbnnersingleproducts .leftsidebanner p {
    font-size: 24px;
    margin-top: 24px;
    font-weight: 300;
    line-height: 30px;
  }
  .footerbnnersingleproducts .leftsidebanner p a{
    color: white;
    font-family: boldfont;
  }
  
  .productbanermain{
    padding-top: 120px;
  }
  .product_bnr{
    background-image: url(./images/singleproductbaner.jpg);
    background-size: cover;
    padding-top: 120px;
    background-size: 100%;
    aspect-ratio: 1375 / 521;
  }
  .singleprodcuctname{
    max-width: 600px;
    margin: 0 auto;
  }
  .singleprodcuctname h1{
    font-size: 48px;
    background: rgb(14, 18, 89);
    background: linear-gradient(80deg, rgba(14, 18, 89, 1) 16%, rgba(193, 3, 40, 1) 100%);
    color: white;
    line-height: 61px;
    display: inline;
  
  }
  .singleprodcuctname h3{
    font-size: 42px;
  color: #253275;
  font-weight: 400;
  font-family: normalfont;
  }
  .featurebox{
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
  }
  .freaturesofproducts{
    padding:80px 0 80px;
  }
  .freaturesofproducts + .titleone{
    margin-bottom: 100px;
  }
  .featuretitle p{
    font-size: 18px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 70px;
  }
  
  
  .closebtn{
    display: none;
  }
  .closebtn .close{
  
    border: 1px solid gray;
    border-radius: 30px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mobileheader{
    position: absolute;
    background-color: rgb(255, 255, 255);
    width: 400px;
    padding: 15px 15px;
    right: -208%;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    overflow-y: scroll;
    height: calc(100vh - 70px);
    top: 70px;
  }
  .activemenu{
    right: 0;
    width: 100%;
  }
  
  .mobileheader ul li{
    list-style: none;
    padding: 5px 0;
    margin: 5px 0;
    border-bottom: 1px dashed gray;
  }
  
  
  
  
  .mobileheader ul li a{
    text-decoration: none;
    color: black;
    font-size: 14px;
  }
  .mobileheader .footericonsbox{
    gap: 0;
    justify-content:flex-start;
  }
  .mobileheader ul li:hover > ul{
    display: block!important;
    display: block !important;
    position: unset;
    margin-top: 10px;
  }
  .mehtaleftbosx{
    width: 100%;
    padding-top: 120px;
    position: relative;
  }
  .mehtaleftbosx img{
    width: 100%;
  }
  .mehtagroupcontentbaner{
    width: 56%;
    position: absolute;
    top: 14%;
    left: 44%;
    background: #e6e6e6;
    padding: 100px;
   
  }
  
  .mehtagroupcontentbaner h2{
    font-size: 32px;
    margin-top: 10px;
    font-weight: 700;
    line-height: 50px;
    font-family: normalfont;
    text-transform: uppercase;
  
    background: rgb(14, 18, 89);
    background: linear-gradient(80deg, rgba(14, 18, 89, 1) 16%, rgba(193, 3, 40, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .mehtagroupcontentbaner p{
    font-size: 20px;
    width: 500px;
    font-weight: bold;
  }
  
  
  
  
  
  .mehtapagesection2{
    display: flex;
    background: rgb(14, 18, 89);
  background: linear-gradient(80deg, rgba(14, 18, 89, 1) 16%, rgba(193, 3, 40, 1) 100%);
  }
  .mehtapagesection2 .leftsec2{
    width: 55%;
    padding: 70px 70px;
    color: white;
  }
  .mehtapagesection2 .leftsec2 h2{
    font-size: 25px;
  margin-bottom: 30px;
  font-family: 'normalfont';
  font-weight: 600;
  }
  .mehtapagesection2 .leftsec2 p{
    margin-bottom: 30px;
  }
  .mehtapagesection2 .rightsec2{
    width: 45%;
    display: flex;
  }
  .mehtapagesection2 .rightsec2 img{
    width: 100%;
    aspect-ratio: 1 / 0.97;
    object-fit: cover;
  }
  
  .readmores  { max-width: 250px; margin-top: 30px; padding: 7px 20px; text-decoration: none; display: block; text-align: center; color: white; transition:all 0.3s ; border: 2px solid white; -webkit-transition:all 0.3s ; -moz-transition:all 0.3s ; -ms-transition:all 0.3s ; -o-transition:all 0.3s ;
  }
  .readmores:hover{
    background-color: white;
    color: black;
    scale: 1.1;
  }
  .videoslider{
  padding: 70px 0;
  }
  .videoslider h2{
  text-align: center;
  margin-bottom: 50px;
  font-size: 28px;
  color: #6a3969;
  }
  .itemvediobox{
    background-color: black;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    max-width: 370px;
    margin: 0 auto;
    overflow: hidden;
    
    }
    .itemvediobox:hover img{
        scale: 1.1;
    }
    .itemvediobox img{
    opacity: 0.5;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    cursor: pointer;
  }
    .playbtns{
    position: absolute;
    z-index: 9999;
    top: 10px;
    width: 69px !important;
    height: 69px;
    right: 33%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 1 !important;
    }
    .itemvediobox span{
        position: absolute;
        bottom: 0;
        right:0;
        width: 100%;
        color: white;
        background-color: rgba(0, 0, 0, 0.605);
        text-align: center;
        padding: 10px;
    }
  
    .learnmorevedio{
        background-color: white;
    }
    .learnmorevedio img{
        opacity: 1;
    }
    .learnmorevedio .playbtns{
        display: none!important;
    }
  
    .roomswalltype input{
        width: 70%;
        margin:5px 0;
    }
    .roomswalltype h3{
        font-size: 16px;
    }
    .measurinput{
        outline: none;
        background: linear-gradient(white, white) padding-box, linear-gradient(to right, rgba(14, 18, 89, 1) 16%, rgba(193, 3, 40, 1) 100%) border-box !important;
        border: 2px solid transparent !important;
        padding: 10px;
    }
  
    .roomswalltype{
        margin-bottom: 30px;
    }
    .calculatebtn{
        background: linear-gradient(80deg, rgba(14, 18, 89, 1) 16%, rgba(193, 3, 40, 1) 100%) !important;
        width: fit-content;
        color: white;
        border-radius: 0 !important;
        padding: 10px 30px;
        outline: none;
    }
  
  
    .contactussection{
        padding-top: 120px;
    }
    .contactussection img{
        width: 100%;
    }
    .contactdetails{
        padding: 70px 0;
    }
    .contactdetails .boxifram{
        border: 3px solid purple;
        padding: 0!important;
    }
  
    .contactdetails iframe{
      min-height: 400px;
    }
    .contactphoneemail{
        margin-top: 30px;
    }
    .conrow{
        margin: 20px 0;
        display: flex;
        gap:20px;
        align-items: center;
        justify-content: flex-start;
    }
    .rightsidecontyy{
        padding: 30px 40px;
    }
    .rightsidecontyy h3{
        font-size: 22px;
        margin-bottom: 30px;
    }
    .rightsidecontyy p{
        font-size: 18px;
    }
    .conrow span{
        font-weight: bold;
        font-size: 22px;
        font-family: boldfont;
    }
    .conrow span a{
        color: black;
    }
    .conrow img{
        width: 40px;
    }
  
    .categorybnr .singleprodcuctname{
        max-width: 500px;
    }
  
    .productfullhalf{
        padding: 0;
        max-width: calc(50% - 10px);
        margin: 5px;
        margin-top: 0;
        margin: 0 auto;
        margin-bottom: 50px;
        aspect-ratio: 1 / 0.5;
        background-size: 115%;
    }
    .newpilscategorypage{
        margin: 0 !important;
        gap: 0;
        padding: 5px;
    }
    .productfullhalf .procontent{
        padding-top: 15px;
        text-decoration: none;
        color: black;
    }
    .productfullhalf  img{
        width: 315px;
        max-width: 250px;
        margin-bottom: -75px;
    }
  
  
    .mediabanersection{
        position: relative;
        padding-top: 120px;
  
    }
    .mediabanersection img{
        width: 100%;
    }
    .mediacontent{
        position: absolute;
        top: 300px;
        left: 200px;
    }
    .mediacontent h2{
        font-size: 42px;
        background: rgb(14, 18, 89);
        background: linear-gradient(80deg, rgba(14, 18, 89, 1) 16%, rgba(193, 3, 40, 1) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-family: normalfont;
    }
    .mediacontent h1{
        font-size: 52px;
        background: rgb(14, 18, 89);
        background: linear-gradient(80deg, rgba(14, 18, 89, 1) 16%, rgba(193, 3, 40, 1) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: bold;
    }
    .mediacards {
    display: flex;
    flex-direction: column;
    margin: 20px 0;
    width: calc(100% - 30px);
    }
    .mediacontents{
        padding: 20px 30px;
        background-color: #f9f9f9;
    }
    .mediacontents h2{
        font-size: 18px;
    }
    .mediacontents p{
        font-size: 14px;
    }
    .datepill{
        width: fit-content;
        background: rgb(14, 18, 89);
        background: linear-gradient(80deg, rgba(14, 18, 89, 1) 16%, rgba(193, 3, 40, 1) 100%);
        padding: 10px 30px;
        border-radius: 40px;
        color: white;
        font-size: 13px;
        margin-top: -40px;
        margin-bottom: 20px;
    }
    .mediaboxsection{
        padding: 70px 0;
    }
    .readmediabtn{
        font-weight: bold;
        color: rgba(193, 3, 40, 1);
        text-decoration: none;
        font-size: 13px;
    }
  
    .finddealersection{
        padding-top: 120px;
        position: relative;
    }
    .finddealersection img{
        width: 100%;
    }
    .finddealercontent{
        position: absolute;
    top: 300px;
    left: 12%;
    }
    .finddealercontent h2{
        font-size: 48px;
    background: rgb(14, 18, 89);
    background: linear-gradient(80deg, rgba(14, 18, 89, 1) 16%, rgba(193, 3, 40, 1) 100%);
    color: white;
    line-height: 61px;
    display: inline;
    text-transform: uppercase;
    }
    .findfoerm{
        display: flex;
        flex-direction: column;
        max-width: 500px;
        margin: 0 auto;
        margin-top: 20px;
    }
    .findfoerm input{
        padding: 10px;
        text-align: center;
    }
    .findfoerm button{
        padding: 10px;
        outline: none;
        border: none;
        background: rgb(14, 18, 89);
    background: linear-gradient(80deg, rgba(14, 18, 89, 1) 16%, rgba(193, 3, 40, 1) 100%);
    color: white;
    }
    .finddealerformcontainer h2{
        text-align: center;
        color:#6a3969;
        font-size: 22px;
    }
    .finddealerformcontainer{
        padding: 70px 0;
    }
    .mapsectionfinder{
        display: flex;
    }
    .mapleftsection{
        width: 40%;
        padding: 40px;
        background-color: #ededed;
        max-height: 600px;
        overflow-y: scroll;
    }
    .maprightsection{
        width: 60%;
    }
    .locationcard{
        background-color: white;
        padding: 20px;
        margin: 30px auto;
        border-radius: 10px;
    }
    .locationcard b{
        margin-bottom: 10px;
        display: block;
    }
    .callflex{
        display: flex;
        gap: 10px;
    }
    .callflex a{
        text-decoration: none;
        color: black;
    }
  
    .blogsectionbaner img{
        width: 100%;
        padding-top: 120px;
    }
    .blogcontentbaner{
        position: absolute;
        top: 300px;
        left: 12%;
        max-width: 800px;
    }
  
    .blogcontentbaner h2{
        font-size: 32px;
  background: rgb(14, 18, 89);
  background: linear-gradient(80deg, rgba(14, 18, 89, 1) 16%, rgba(193, 3, 40, 1) 100%);
  color: white;
  line-height: 45px;
  display: inline;
  text-transform: uppercase;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
    }
    .blogfilersection select{
        width: 100%;
        padding: 10px;
    }
    .blogfilersection{
        padding: 70px 0;
        border-bottom: 1px solid gray;
        margin-bottom: 80px;
    }
    .blogcardcontent{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.732);
    }
    .blogbox{
        position: relative;
        margin-bottom: 30px;
    }
    .blogthum{
        width: 100%;
    }
    .blogcardcontent{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 20px;
    }
    .topblogrow{
        display: flex;
        flex-direction: column;
        color: white;
    }
    .bottomblogrow{
        color: white;
    }
    .bottomblogrow h2{
        font-size: 16px;
        border-bottom: 1px solid white;
        padding-bottom: 10px;
    }
    .likesandrow{
        display: flex;
        gap: 30px;
    }
    .likesandrow span{
        display: flex;
        gap: 10px;
        align-items: center;
    }
    .paginationrow{
        display: flex;
        justify-content: center;
        margin-bottom: 40px;
        gap: 20px;
    }
    .paginationrow button.active{
        font-size: 22px;
  background: rgb(14, 18, 89);
  background: linear-gradient(80deg, rgba(14, 18, 89, 1) 16%, rgba(193, 3, 40, 1) 100%);
  color: white;
  width: 50px;
  outline: none;
  padding: 10px;
  border: none;
    }
  
    .paginationrow button{
        font-size: 22px;
  border: 1px solid gray;
  color: rgb(0, 0, 0);
  width: 50px;
  outline: none;
  padding: 10px;
  
    }
  
  
  /* @media screen and (max-width:768px) {
    .contactrow p a {
        color: black;
    }
    .contactrow {
        display: flex;
        background-color: #dd1c58;
        max-width: fit-content;
        margin: 0 auto;
        margin-top: 50px;
        gap: 20px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        background: white;
    }
  } */
  
  
  
  @media screen and (max-width:768px) {
    .dropdown_menu {
        background: white;
        width: 100%;
        z-index: 9999;
        box-shadow: none;
        display: none;
        border-top: none;
        width: 100%!important;
    }
    .dropdown_menu li {
        width: 100%;
        text-align: left;
        margin: 0;
        border-bottom: none !important;
    }
    .headerflex ul{
        display: none;
    }
    .closebtn{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
  
    .banner {
        display: flex;
        padding-top: 80px;
        flex-direction: column;
    }
    .leftsidebanner {
        width: 100%;
        padding: 30px 15px;
    }
    .banner img {
        width: 100%;
    }
  
    .contactrow {
        background-color: white;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 25px;
    gap: 4px 10px;
    }
    .contactrow p {
        font-size: 14px;
        color: #dd1c58;
        margin: 0;
        display: flex;
        align-items: center;
    }
  
    .blogsbox {
        width: 100%;
        position: relative;
    }
    .blogsbox .blogcontent {
        position: relative;
        background-color: #ecececcd;
        width: 100%;
        padding: 15px 10px;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        min-height: 100px;
        bottom: 0;
    }
    .blogcontent button {
        width: 114px;
        outline: none;
        background: linear-gradient(white, white) padding-box, linear-gradient(to right, rgba(14, 18, 89, 1) 16%, rgba(193, 3, 40, 1) 100%) border-box;
        border: 1px solid transparent;
        color: #000;
        padding: 5px 10px;
        margin-left: 20px;
        font-size: 13px;
    }
  
    .blogcontent a {
        width: 114px;
        outline: none;
        background: linear-gradient(white, white) padding-box, linear-gradient(to right, rgba(14, 18, 89, 1) 16%, rgba(193, 3, 40, 1) 100%) border-box;
        border: 1px solid transparent;
        color: #000;
        padding: 5px 10px;
        margin-left: 20px;
        font-size: 13px;
    }
    
    .bringsection {
        display: flex;
        flex-direction: column;
    }
   
    .imgbgbox img{
        width: 100%;
        transition: all 0.3s;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
        height: 100%;
  }
  
    .contentbgbox {
        color: white;
        background: rgb(14, 18, 89);
        background: linear-gradient(80deg, rgba(14, 18, 89, 1) 16%, rgba(193, 3, 40, 1) 100%);
        padding: 30px 15px;
        width: 100%;
    }
    .testimonialslider .item {
        text-align: center;
        padding: 30px 40px;
        min-height: 380px;
    }
  
    .sliderbox{
        width: 100%;
        padding: 0;
    }
    .pngboxtree {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 10px;
        max-width: 33%;
    }
    .pngboxtree img {
        background: rgb(14, 18, 89);
        background: linear-gradient(80deg, rgba(14, 18, 89, 1) 16%, rgba(193, 3, 40, 1) 100%);
        padding: 15px;
        aspect-ratio: 1 / 1;
        max-width: 75px;
        display: block;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        margin: 0 auto;
        object-fit: contain;
        overflow: visible;
    }
    .testimonialslider .item img {
        width: 80px !important;
        margin: 0 auto;
        margin-bottom: 20px;
    }
    .quote1 {
        position: absolute;
        top: 0;
        right: 0;
        width: 100px;
    }
    .quote2 {
   
        width: 100px;
    }
    .owl-next {
        position: absolute;
        width: 27px;
        height: 40px;
        background: #a7a1a1 !important;
        top: 40%;
        right: 0px;
        font-size: 22px;
        clip-path: polygon(100% 49%, 0 0, 0 100%);
    }
    .owl-prev {
        position: absolute;
        width: 27px;
        height: 40px;
        background: #a7a1a1 !important;
        top: 40%;
        left: 0;
        font-size: 22px;
        clip-path: polygon(100% 0, 0 50%, 100% 100%);
    }
    .contactrow img:nth-child(1) {
        margin-left: -5px;
        width: 20px;
    }
    .contactrow p {
        font-size: 14px;
        color: #dd1c58;
        margin: 0;
        display: flex;
        align-items: center;
    }
  
    .bannercta h3{
        font-size: 28px;
    }
    .bannercta span {
        font-size: 22px;
        color: black;
    }
    .headerflex {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        height: 60px;
    }
    .bannercta {
        background-color: white;
        font-size: 30px;
        width: fit-content;
        display: flex;
        padding: 5px 10px;
        gap: 10px;
        margin-top: 10px;
        align-items: center;
        justify-content: center;
        color: black;
        font-size: 18px;
        display: flex;
        align-items: baseline;
    }
    .leftsidebanner h1 {
        font-size: 32px;
        margin: 0;
        font-weight: bold;
    }
    .leftsidebanner p {
        font-size: 30px;
        margin-top: 5px;
        font-weight: 300;
        line-height: 33px;
    }
    .bannermainbtn {
        border: 1px solid white;
        color: white;
        width: fit-content;
        margin-top: 20px;
        padding: 10px 30px;
        font-size: 14px;
    }
  
    .logo img {
        width: 140px;
    }
    .titleone h2 {
        font-size: 22px;
        color: #6a3969;
        text-transform: uppercase;
    }
    .titleone {
        background-image: url(./images/titleguide.png);
        background-size: 198px;
        background-repeat: no-repeat;
        background-position: center;
    }
    .blogincerleft {
        width: calc(100% - 141px);
        padding-right: 10px;
    }
    .procontent h3 {
        font-size: 18px;
    }
  
    .blogcontent h3 {
        width: 100%;
        font-size: 18px;
        color: purple;
    }
    p {
        font-size: 14px;
    }
    .donwlink{
        font-size: 14px;
    }
    .contentbgbox p {
        font-size: 14px;
        max-width: 1000px;
    }
    .contentbgbox h2 {
        margin-bottom: 20px;
        font-size: 22px;
    }
    .formboxtitle h3{
      font-size: 22px;
    }
    .formboxtitle p{
        font-size: 14px;
      }
  
      .formboxtitle {
        margin-bottom: 50px;
        padding: 0 15px;
    }
  
    .formsubmitbtn {
        padding: 10px 30px;
        font-size: 14px;
        border: none;
        outline: none;
        border: 2px solid black;
        color: black;
        background-color: transparent;
        margin-top: 50px;
    }
    .formsectionformbox input, .formsectionformbox select {
        width: 95%;
        margin-top: 50px;
        margin: 10px;
        padding: 10px;
        border: none;
        border-bottom: 1px solid black;
        background: transparent;
        color: black;
        font-size: 14px;
    }
    .termscheckbox input {
        width: 50px;
        margin: 0;
        margin-right: 10px;
    }
    .mobileheader ul{
        padding: 0;
    }
    .footersection ul li a {
        text-decoration: none;
        color: gray;
        font-size: 14px;
    }
  
    .threpoints::before {
        top: 22%;
        left: 50%;
   
    }
  
    .downloadbseciton {
        padding: 60px 0;
    }
    .threpoints {
        margin-bottom: 30px;
    }
    .quicklinkoptionbox li {
        list-style: none;
        padding: 5px 0;
        border-bottom: 1px solid gray;
    }
    .quicklinkoptionbox li a {
        text-decoration: none;
        color: black;
        font-size: 14px;
    }
    .quicklinkoptionbox{
        padding: 10px;
    }
    .quicklinkitem {
        position: fixed;
        right: 0;
        top: 60%;
        width: 35px;
        cursor: pointer;
        z-index: 9999999;
    }
    .pngboxtree p{
        font-size: 10px;
    }
    .aboutusbanercontent {
        font-size: 14px !important;
        line-height: 22px !important;
    }
    .tryingdemoabouth1 {
        font-size: 32px !important;
    }
    .aboutsecondsection {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .aboutsiderightcontent {
        width: 100%;
        padding: 30px 15px;
        position: relative;
    }
    .aboutsecondsection .aboutleftimg {
        width: 100%;
    }
    .aboutgreeleft {
        padding: 30px 15px;
    }
    .aboutgreeright {
        padding: 30px 15px;
        background-color: #56ab45;
    }
    .aboutpersonsection {
        display: flex;
        flex-wrap: wrap;
    }   
    .aboutpersonleft {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 50px;
        background-color: lightgray;
    }
    .aboutpersonleft img{
        width: 100%;
    }
    .aboutpersonright {
        padding: 30px 15px;
        width: 100%;
    }
    .aboutsiderightcontent h2 {
        color: #6a3969;
        margin-bottom: 30px;
        font-size: 22px;
    }
    .aboutsiderightcontent a {
        max-width: 145px;
        margin-top: 40px;
        padding: 7px 20px;
        text-decoration: none;
        display: block;
        text-align: center;
        color: black;
        background: linear-gradient(white, white) padding-box, linear-gradient(to right, rgba(14, 18, 89, 1) 16%, rgba(193, 3, 40, 1) 100%) border-box;
        border: 1px solid transparent;
        font-size: 14px;
    }
    .aboutgreeleft h2 {
        color: #284e1f;
        font-size: 22px;
    }
  
    .aboutoutpng {
        position: absolute;
        bottom: 0;
        right: 0;
        max-width: 250px;
    }
    .aboutpersonright h2{
        font-size: 22px;
    }
    .gradentbtn{
        font-size: 14px;
    }
    .titlepera p {
        font-size: 14px;
    }
    .col-md-x {
        width: 50%;
    }
    .procbox img {
        max-width: 100px;
    }
    .procbox{
        text-align: center;
    }
    .titlepera {
        max-width: 900px;
        margin: 0 auto;
        padding: 30px 15px;
        text-align: center;
    }
    .whitebtn {
  
        margin-top: 40px!important;
        font-size: 14px;
    }
    .truecolorbanersection {
        padding-top: 80px;
    }
    .graybg .testimonialslider .item {
        min-height: 300px;
        padding: 0;
    }
    .graybg .sliderbox {
        padding: 0 0px !important;
    margin: 20px auto;
    width: 90%;
    }
    .graybg .testimonialslider .item {
        min-height: auto;
        padding: 0;
    }
    .testimonialsection {
        background-image: url(./images/testimonialbg.png);
        background-repeat: no-repeat;
        background-position: 0 320px;
        background-size: 386px;
        padding: 60px 0;
    }
    .eventcontentbox {
        position: relative;
        bottom: 0;
        background: #c3c3c3f5;
        padding: 10px;
        width:100%;
    }
    .testivideobox{
        margin-bottom: 30px;
    }
    .closebtn span{
        font-size: 14px;
    }
    .quicklinkitem span {
        display: block;
        writing-mode: vertical-lr;
        text-orientation: mixed;
        text-orientation: mixed;
        -webkit-text-orientation: mixed;
        -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: vertical-lr;
        color: white;
        position: absolute;
        top: 20%;
        left: 30%;
        font-size: 14px;
    }
    .quicklinkitem {
        position: fixed;
        right: 0;
        top: 60%;
        width: 25px;
        cursor: pointer;
        z-index: 9999999;
    }
    .videobox img {
        width: 50px;
        margin-top: 40px;
    }
  
    .mehtagroupcontentbaner{
        display: none;
    }
    
    .mehtaleftbosx {
        width: 100%;
        padding-top: 80px;
        position: relative;
    }
    .mehtapagesection2 .leftsec2 {
        width: 100%;
        padding: 30px 15px;
        color: white;
    }
    .mehtapagesection2 {
        flex-wrap: wrap;
    }
    .mehtapagesection2 .rightsec2 {
        width: 100%;
    }
    .mehtapagesection2 .leftsec2 h2 {
        font-size: 22px;
    }
    .readmores {
        max-width: fit-content;
        margin-top: 30px;
        padding: 7px 20px;
        text-decoration: none;
        display: block;
        text-align: center;
        color: white;
        border: 2px solid white;
    }
    .videoslider {
        padding: 40px 15px;
    }
    .videoslider h2 {
        margin-bottom: 40px;
        font-size: 22px;
      
    }
    .freaturesofproducts .col-md-4{
        width: 50%;
    }
    .freaturesofproducts .pngboxtree{
       max-width: 100%;
    }
    .product_bnr {
        background-image: url(./images/singleproductbaner.jpg);
        background-size: contain;
        padding: 30px 15px;
        padding-top: 55px;
        aspect-ratio: unset;
        aspect-ratio: 1 / 0.38;
        width: 100%;
    }
  
    .contentsingleright h2 {
        color: #ce154e;
        margin-bottom: 20px;
    }
    .singleprodcuctname h1 {
        font-size: 36px;
        background: rgb(14, 18, 89);
        background: linear-gradient(80deg, rgba(14, 18, 89, 1) 16%, rgba(193, 3, 40, 1) 100%);
        color: white;
        line-height: 47px;
        display: inline;
    }
    .singleprodcuctname h3 {
        font-size: 32px;
        color: #253275;
        font-weight: 400;
        font-family: normalfont;
    }
    .freaturesofproducts {
        padding: 30px 15px;
    }
    .featuretitle p {
        font-size: 14px;
        margin-bottom: 40px;
    }
    .productbanermain {
        padding-top: 80px;
    }
    .footerbnnersingleproducts .leftsidebanner {
        width: 100%;
    }
    .footerbnnersingleproducts .singleproductrightbner {
        width: 100%;
        position: relative;
    }
    .contentsingleright {
        position: absolute;
        max-width: 95%;
        top: 10%;
        left: 5%;
    }
    .footerbnnersingleproducts .leftsidebanner p {
        font-size: 16px;
        margin-top: 24px;
        font-weight: 300;
        line-height: 20px;
    }
    .featurebox {
        margin-bottom: 20px;
    }
    .nav-pills li button {
   
        font-size: 14px;
        padding: 7px;
        margin: 0;
    }
  
    .productfullhalf img {
        width: 76px;
        max-width: 76px;
        margin-bottom: -10px;
    }
    .productbox {
        margin-bottom: 10px;
  
    }
    .productfullhalf .procontent h3 {
        font-size: 14px;
        font-weight: bold;
        font-family: 'normalfont';
    }
    .nav-pills li {
        width: 100%;
        margin: 5px 0;
    }
    .newpilscategorypage {
        margin: 0 !important;
        gap: 0;
        padding: 5px;
        flex-direction: column;
    }
    .contactussection {
        padding-top: 80px;
    }
    .contactdetails {
        padding: 30px 15px;
    }
    .rightsidecontyy {
        padding: 30px 15px;
    }
    .rightsidecontyy p {
        font-size: 14px;
    }
    .conrow span {
        font-weight: 200;
        font-size: 16px;
        font-family: boldfont;
    }
    .conrow {
        margin: 10px 0;
        display: flex;
        gap: 5px;
        align-items: center;
        justify-content: flex-start;
    }
    .conrow img{
        width: 30px;;
    }
    .contactdetails iframe {
        min-height: 243px;
    }
    .finddealersection {
        padding-top: 80px;
        position: relative;
    }
    .finddealercontent h2 {
        font-size: 22px;
        background: rgb(14, 18, 89);
        background: linear-gradient(80deg, rgba(14, 18, 89, 1) 16%, rgba(193, 3, 40, 1) 100%);
        color: white;
        line-height: 38px;
        display: inline;
        text-transform: uppercase;
    }
    .finddealercontent {
        position: absolute;
        top: 95px;
        left: 5%;
    }
    .finddealerformcontainer {
        padding: 30px 15px;
    }
    .mapsectionfinder {
        display: flex;
        flex-wrap: wrap;
    }
    .mapleftsection {
        width: 100%;
        padding: 30px 15px;
        background-color: #ededed;
    }
    .maprightsection {
        width: 100%;
        padding: 10px;
    }
    .maprightsection iframe{
        height: 400px;
    }
    button, input, optgroup, select, textarea {
        font-size: 14px;
    }
    .blogsectionbaner img {
        width: 100%;
        padding-top: 80px;
    }
    .blogcontentbaner h2 {
        font-size: 22px;
        background: rgb(14, 18, 89);
        background: linear-gradient(80deg, rgba(14, 18, 89, 1) 16%, rgba(193, 3, 40, 1) 100%);
        color: white;
        line-height: 31px;
        display: inline;
        text-transform: uppercase;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .blogcontentbaner {
        position: absolute;
        top: 95px;
        left: 5%;
        max-width: 800px;
    }
    .blogfilersection {
        padding: 30px 15px;
        border-bottom: 1px solid gray;
        margin-bottom: 30px;
    }
  
    .blogfilersection .col-md-3{
        width: 50%;
        margin-bottom: 10px;
    }
    .blogfilersection select{
        font-size: 13px;
        padding: 5px;
    }
    .mediabanersection {
        position: relative;
        padding-top: 80px;
    }
    .mediacontent {
        position: absolute;
        top: 120px;
        left: 5%;
    }
    .mediacontent h1 {
        font-size: 26px;
        background: rgb(14, 18, 89);
        background: linear-gradient(80deg, rgba(14, 18, 89, 1) 16%, rgba(193, 3, 40, 1) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: bold;
    }
    .mediacontent h2 {
        font-size: 22px;
        background: rgb(14, 18, 89);
        background: linear-gradient(80deg, rgba(14, 18, 89, 1) 16%, rgba(193, 3, 40, 1) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-family: normalfont;
    }
    .mediacards {
        display: flex;
        flex-direction: column;
        margin: 20px auto;
        width: calc(100% - 0px);
    }
    .mediaboxsection {
        padding: 30px 15px;
    }
    .mediacontents {
        padding: 20px 10px;
        background-color: #f9f9f9;
    }
    .mediacontents h2 {
        font-size: 16px;
    }
    .bugetcalculatorbanner {
        display: flex;
        padding-top: 80px;
        flex-wrap: wrap;
    }
    .bugetbnrimg {
        width: 100%;
    }
    .bugetrightcontentbrn {
        width: 100%;
        padding: 30px 15px;
  
    }
    .bugetrightcontentbrn h2 {
        color: white;
        font-size: 22px;
    }
    .bugetrightcontentbrn h4 {
        color: white;
        font-size: 26px;
    }
    .lablespan {
        font-size: 12px;
    }
    label{
        font-size: 12px!important;
    }
    .contactrow p a {
        color: black;
    }
    .imgbgbox {
        overflow: hidden;
        width: 100%;
    }
    .productsslider {
        padding: 40px 0;
    }
    .hbanners {
        padding-top: 80px;
    }
  
    .gridrow {
        display: flex;
        flex-wrap: wrap;
    }
    .gridcardcarrer {
        width: 100%;
        padding: 20px;
        text-align: center;
    }
    .rightcarrerbox {
        width: 100%;
        position: relative;
    }
    .carrerendcontent {
        background: linear-gradient(90deg, rgba(14, 18, 89, .95) -10%, rgba(193, 3, 40, .95) 100%);
        color: white;
        position: relative;
        top: 17%;
        right: 0;
        max-width: 705px;
        padding: 40px 20px;
    }
    .carrerfoorm {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
    .inputboxc {
        width: calc(50% - 10px);
        position: relative;
    }
    .inputboxc span {
        position: absolute;
        top: -10px;
        background: white;
        left: 15px;
        padding: 0ppx 5px;
        color: gray;
        font-weight: 600;
        font-size: 12px;
    }
    .footerbnnersingleproducts .singleproductrightbner img{
        height: 310px;
        width: auto;
        overflow: hidden;
    }
    .footerbnnersingleproducts .singleproductrightbner{
        width: 100%;
        overflow: hidden;
    }
  
  .colornav {
    width: 145px!important;
  }
  
  
  .colornav ul li {
    padding-left: 12px!important;
  }
  
  .colornav h2 {
    padding: 15px 10px;
    font-size: 18px;
    padding-left: 12px!important;
  }
  
  .colorchart {
    padding: 10px 15px!important;
    background-color: #f2f2f2;
    width: calc(100% - 145px)!important;
    height: 100%;
    overflow-y: scroll;
    height: 737px!important;
  }
  
  .codebox {
    width: 27px!important;
  }
  
  .colorcodebox {
    width: 32.6%!important;
  
  }
  
  .eventbox {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
  }
  
  .eventbox img {
    width: 100% !important;
  }
  
  
  }
  