
/*color*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
:root {
    --base-color-1: #e71615;
    --gredient :linear-gradient(90deg,rgba(181, 0, 0, 1) 0%, rgb(255, 60, 0) 2%, rgba(231, 22, 21, 1) 13%, rgb(218, 7, 7) 70%, rgb(255, 60, 0) 100%);
    --gredient-2 :    linear-gradient(90deg, rgb(255, 60, 0) 100%, rgb(218, 7, 7) 66%, rgba(231, 22, 21, 1) 33%, rgb(255, 60, 0) 0%, rgba(181, 0, 0, 1) 0%);

    --blue: #3F83F5;
    --red: #e71615;
    --green: #2DAD52;
    --yellow: #ffd900;
    --l-gray: #f6f8f3;
    --dark-text-c: #1d3301;
    --color-d: #3E3B44;
    --color-w: #FFFFFF;
    --color-w-trans: #ffffffdc;
    --dark-gray: #141317;
    --black: #000000;
    --trans: all 100ms ease-in;

    /* product */
/* Sarvottam Besan */
--sarvottam-besan-base: #f14b03;
--sarvottam-besan-secondary: #ff8902;
--sarvottam-besan-gradient: radial-gradient(circle, #ff8902 0%, #f74d04 100%);

/* Sarvottam Rice - Pink Pack */
--sarvottam-rice-pink-base: #802a86;
--sarvottam-rice-pink-secondary: #b457a9;
--sarvottam-rice-pink-gradient: radial-gradient(circle, #b457a9 0%, #802a86 100%);

/* Sarvottam Rice - Blue Pack */
--sarvottam-rice-blue-base: #1f2c74;
--sarvottam-rice-blue-secondary: #4670c6;
--sarvottam-rice-blue-gradient: radial-gradient(circle, #4670c6 0%, #1f2c74 100%);

/* Sarvottam Atta */
--sarvottam-atta-base: #a01212;
--sarvottam-atta-secondary: #e54848;
--sarvottam-atta-gradient: radial-gradient(circle, #e54848 0%, #a01212 100%);

  /* Sunflower Oil (Orange-Red + Yellow) */
  --sarvottam-sunflower-base: #c53500;       /* Burnt Orange / Red-Orange */
  --sarvottam-sunflower-secondary: #eb7719;  /* Sunny Yellow */
  --sarvottam-sunflower-gradient: radial-gradient(circle, #eb7719 0%, #c53500 100%);

  /* Rice Bran Oil (Green + Yellow) */
  --sarvottam-ricebran-base: #1d7c28;        /* Leafy Green */
  --sarvottam-ricebran-secondary: #64a01f;   /* Warm Yellow */
  --sarvottam-ricebran-gradient: radial-gradient(circle, #64a01f 0%, #1d7c28 100%);

  /* Soybean Oil (Golden Yellow) */
  --sarvottam-soybean-base: #bb6606;         /* Brownish Gold */
  --sarvottam-soybean-secondary: #f7ae11;    /* Light Buttery Yellow */
  --sarvottam-soybean-gradient: radial-gradient(circle, #f1a500 0%, #bb6606 100%);

}

html {
    scroll-behavior: smooth;
  }
footer a, footer p{ font-weight: 300;}
/*font*/
@font-face {
    font-family: 'gxi';
    src: url(../fonts/gxi.woff);
}


.t-red {
    color: var(--red)
}

.t-green {
    color: var(--green);
}

.t-yellow {
    color: var(--yellow);
}

.t-white {
    color: var(--color-w);
}
.t-blue {
    color: var(--blue);
}

.text-box{
    background-color: var(--color-w);
    border-radius: 10px;
    padding:50px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.text-box h3{
    margin-block-start: 0px;
}

.t-darkgray{ color: var(--color-d);}
.t-darkgreen{ color: var(--dark-text-c);}
.t-deepgray{ color: var(--dark-gray);}
.bg-dwhite{ background-color: var(--l-gray) !important;
background-image:none !important;
}
.bg-greenwhite{ background-color:#f6f8f3;}

.bg-white{ background-color: var(--color-w);}

.animate-img{
animation: myAnim 10s ease 0s infinite alternate-reverse both;
transform-origin: center bottom;
}
@keyframes myAnim {
	0% {
		animation-timing-function: ease-in;
		opacity: 1;
		transform: rotate(10deg);
	}

	24% {
		opacity: 1;
	}

	40% {
		animation-timing-function: ease-in;
		transform: rotate(5deg);
	}

	65% {
		animation-timing-function: ease-in;
		transform: rotate(7deg);
	}

	82% {
		animation-timing-function: ease-in;
		transform: rotate(4deg);
	}

	93% {
		animation-timing-function: ease-in;
		transform: rotate(2deg);
	}

	25%,
	55%,
	75%,
	87%,
	98% {
		animation-timing-function: ease-out;
		transform: rotate(0deg);
	}

	100% {
		animation-timing-function: ease-out;
		opacity: 1;
		transform: rotate(0deg);
	}
}
.animate-img2{
    animation: myAniml 10s ease 0s infinite alternate-reverse both;
    transform-origin: center bottom;
    }
    .c-orgin{
  
        transform-origin: center center !important;
        }
    @keyframes myAniml {
        0% {
            animation-timing-function: ease-in;
            opacity: 1;
            transform: rotate(-10deg);
        }
    
        24% {
            opacity: 1;
        }
    
        40% {
            animation-timing-function: ease-in;
            transform: rotate(-5deg);
        }
    
        65% {
            animation-timing-function: ease-in;
            transform: rotate(-7deg);
        }
    
        82% {
            animation-timing-function: ease-in;
            transform: rotate(-4deg);
        }
    
        93% {
            animation-timing-function: ease-in;
            transform: rotate(-2deg);
        }
    
        25%,
        55%,
        75%,
        87%,
        98% {
            animation-timing-function: ease-out;
            transform: rotate(0deg);
        }
    
        100% {
            animation-timing-function: ease-out;
            opacity: 1;
            transform: rotate(0deg);
        }
    }

    body{background: #f6f8f3; }
body,
div,
p,
a,
h1,
h2,
h3,
h4,
h5 {
    font-family: 'Montserrat', sans-serif;
}
p{
    margin-block-start: 0.5em;
    margin-block-end: 0.5em;
}
h1,
h2,
h3,
h4,
h5 {
    margin-block: 10px 0px;
    line-height: 1.1;
}
.btn-whatsapp{
    background-color: #004b34c7;
        backdrop-filter: blur(20px);
        border: 1px solid #0000000e;
        height: 70px;
        width: 70px;
        text-align: center;
        display: inline-block;
        border-radius: 100%;
        position: fixed;
        bottom: 20px;
        z-index: 20;
        right: 20px;
        transition: var(--trans);
        line-height: 68px;
        font-size: 30px;
        color: #fff;
}
.btn-whatsapp:hover{
    background-color: var(--green);
    color: var(--color-w);
}

.justify {
    text-align: justify;
}

p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-d);
}

.buttons {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 25px;
    border-radius: 6px;
    transition: var(--trans);
    position: relative;
    overflow: hidden;
    margin-right: 10px;
}

.buttons span {
    position: relative;
    z-index: 2;
}

.buttons::after,
.buttons::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 6px;
    top: 0;
    z-index: 1;
    transition: all 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
}

.tumbanils{
    text-align: center;
    background-color:  #fff;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    transition: all 600ms cubic-bezier(0.075, 0.82, 0.165, 1);
}

.sub-menu-heading{
font-size: 25px;
margin-bottom: 15px;
font-weight: 600;
text-align: center;
display: flex;
color:var(--color-d);
align-items: center;
justify-content: center;
}

.sub-menu-heading span{
display: inline-block;
padding: 8px 20px;
border: 1px solid #00000011;
border-radius: 30px;
}
.sub-menu-heading::after, .sub-menu-heading::before {
    content: url('data:image/svg+xml,<svg id="object" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><defs><style> .cls-1{fill:%233d3b44;} .cls-2{fill:none;} </style></defs><path class="cls-1" d="M19.74,38.98h0c3.76-4.58,2.36-11.48-2.92-14.17-2.91-1.48-6.91-2.79-12.42-3.57,0,0,15.58,4.43,15.34,17.73Z"/><path class="cls-1" d="M19.74.82h0c3.76,4.58,2.36,11.48-2.92,14.17-2.91,1.48-6.91,2.79-12.42,3.57,0,0,15.58-4.43,15.34-17.73Z"/><path class="cls-1" d="M33.9,23.22h0c-.72.34-1.53.45-2.31.29l-17.96-3.61,17.96-3.61c.78-.16,1.59-.06,2.31.29h0c2.79,1.34,2.79,5.31,0,6.65Z"/><rect class="cls-2" width="40" height="40"/></svg>');
    display: inline-block;
    height: 40px;
    opacity: 0.5;
    width: 40px;
    overflow: hidden;
    transform: scale(0.65); /* Adjust the scale value to control size */
    transform-origin: center; /* Ensures scaling happens from the center */
}
.sub-menu-heading::before {
    transform: scale(0.65) rotate(180deg); 
}
.tumbanils span.skew{
    top: -13px;
}
.w-100{
    width: 100%;
}

.heighlight{
    background: var(--sarvottam-ricebran-base);
    color: var(--color-w);
    padding: 3px 13px;
    font-weight: 600;
    border-radius: 4px;
    font-style: italic;
width: fit-content;
}

.center{
    margin-left: auto;
    margin-right: auto;
}

.sunflower-page .heighlight{background: var(--sarvottam-sunflower-base);}
.soybean-page .heighlight{background: var(--sarvottam-soybean-base);}
.atta-page .heighlight{background: var(--sarvottam-atta-base);}
.rice-page .heighlight{background: var(--sarvottam-rice-pink-base);}
.besan-page .heighlight{background: var(--sarvottam-besan-base);}

.sunflower-page header{ background-color: var(--sarvottam-sunflower-base);}
.soybean-page header{ background-color: var(--sarvottam-soybean-base);}
.atta-page header{ background-color: var(--sarvottam-atta-base);}
.rice-page header{ background-color: var(--sarvottam-rice-pink-base);}
.besan-page header{ background-color: var(--sarvottam-besan-base);}

.boldLink img{ transition: all 600ms cubic-bezier(0.075, 0.82, 0.165, 1); margin-right: 10px; max-width:60px; transform: scale(0.96);}

.boldLink:hover .tumbanils h4{ color: var(--l-gray);}
.boldLink:hover .tumbanils b{ color: var(--l-gray);}
.boldLink:hover img{ transform: scale(1.02);}

.boldLink:hover .tumbanils.besan {
    background: var(--sarvottam-besan-gradient);
  }
  
  .boldLink:hover .tumbanils.rice-pink {
    background: var(--sarvottam-rice-pink-gradient);
  }
  
  .boldLink:hover .tumbanils.rice-blue {
    background: var(--sarvottam-rice-blue-gradient);
  }
  
  .boldLink:hover .tumbanils.atta {
    background: var(--sarvottam-atta-gradient);
  }
  
  .boldLink:hover .tumbanils.sunflower {
    background: var(--sarvottam-sunflower-gradient);
  }
  
  .boldLink:hover .tumbanils.ricebran {
    background: var(--sarvottam-ricebran-gradient);
  }
  
  .boldLink:hover .tumbanils.soybean {
    background: var(--sarvottam-soybean-gradient);
  }

.tumbanils h4 b{ font-size: 24px; color:var(--base-color-1);}
.tumbanils h4{font-weight: 400; font-size: 16px;}
.buttons.black {
    background-color: var(--dark-gray);
    color: var(--color-w);
}
.buttons.yellow {
    background-color: var(--yellow);
    color: var(--dark-gray);
}
.buttons.white {
    background-color: var(--color-w);
    color: var(--dark-gray);
}


.buttons.outline {
    border: 2px solid var(--color-w);
    color: var(--color-w);
}

.buttons:hover {
    background-color: var(--red);
    color: var(--color-w);
    border-color: var(--green);
}

.buttons:hover::after {
    right: 0%;
    transition-delay: 0.4s;
}

.buttons:hover::before {
    right: 0%;
    transition-delay: 0.2s;
}

i.icon {
    font-family: 'gxi';
    font-style: normal;
}

/*preFixed*/

/*head*/
header {
    padding: 8px 0px 0px 0px;
    background-color: #348c26;
    background-image: url('../img/leaf.webp');
    background-position: top center;
    background-size: auto 100%;
    background-position: center top;
    background-repeat: no-repeat;
    position: fixed;
    width: 100%;
    z-index: 100;
    top: 0;
    z-index: 900;
    transition: var(--trans);
}
.sunflower-page header{ background-color: var(--sarvottam-sunflower-base);}
.soybean-page header{ background-color: var(--sarvottam-soybean-base);}
.atta-page header{ background-color: var(--sarvottam-atta-base);}
.rice-page header{ background-color: var(--sarvottam-rice-pink-base);}
.besan-page header{ background-color: var(--sarvottam-besan-base);}

.sticky {
    padding: 5px 0px 0px 0px;

}

.contact header{ 
    background-color: #fafafac7;
   
}

header .logo {
    max-width: 230px;
    width: 100%;
    transition: var(--trans);
 
}

header.sticky .logo {
    max-width: 208px;
}
header .container{ z-index: 3; position: relative;}

.menubutton {
    height: 27px;
    z-index: 4;
    position: relative;
    background: transparent;
    text-align: center;
    border: 0;
    vertical-align: middle;
    display:none;
}
.menubutton span {
    display: block;
    height: 1px;
    width: 21px;
    position: relative;
    transition: all .3s ease-in-out;
    background-color: #ffffff;
    margin: 5px auto;
}
.menubutton.opened span:first-child {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.menubutton.opened{
    height: 30px;
    width: 30px;
    border-radius: 100%;
    background: #ffffff;
}
.menubutton.opened span{
    background-color: #003332;
    width: 14px;
}
.menubutton.opened span:nth-child(2) {
    visibility: hidden;
    height: 0;
}
.menubutton.opened span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.menubutton.opened span {
    margin: -1px auto auto;
}

.main-nav {
    list-style: none;
    display: flex;
    justify-content: end;
    align-items: center;
    margin-block-end: 0;
    margin-block-start: 10px;
}

.main-nav .mainmenu {
    line-height: unset !important;
}
.icon-mob{display: none;}

.main-nav .mainmenu .links,
.submenu {

    background: #ffffff1f;

    border-radius: 8px;
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    padding: 10px 12px;
    margin: 0px 2px;
    font-weight: 700;
    transition: var(--trans);
}

span.skew{
background-color:var(--red) ;
color: var(--color-w);
position: absolute;
padding: 0px 4px 2px;
font-size: 10px;
font-weight: 500;
transform: skewX(-15deg) rotate(-6deg);
top: -5px;
box-shadow: 1px 1px 0px 0px #000;
}
span.skew span{
    display: block;
    transform: skewX(7.5deg);
}

.submenu {
    cursor: default;
    transition: var(--trans);
}

.main-nav .mainmenu .links:hover {
    background-color:var(--l-gray);
    color: var(--dark-text-c);
}

.submenu:hover {
    border-radius: 8px 8px 0px 0px;
    background-color:var(--l-gray);
    color: var(--dark-text-c);
}

.submenubox {
    position: absolute;
    list-style: none;
    padding: 40px 0px;
    background-color:var(--l-gray);
   background-size: cover;
   background-position: center center;
    width: calc(100% - 100px);
    max-width: 1080px;
  margin-left: -540px;
  left: 50%;
    visibility: hidden;
    border-radius: 25px;
    transition: var(--trans);
    margin-top: 50px;
    opacity: 0;
}


.submenubox.submenubox2 {
    text-align: center;
    padding: 25px 25px;
    width: 300px;
    left: inherit;
    margin-left: -75px;
    right: inherit;
    border-radius: 12px;
    margin-top: 50px;
    opacity: 0;
}
.submenubox.submenubox2.submenubox3 {
 
    margin-left: unset;
    right: 0;
    margin-right: -20px;

}
.submenubox.submenubox2.submenubox3 a{
    margin: 5px 0px;
    background-color: white;
    padding:5px 0px;
    padding-bottom: 2px;
    transition: var(--trans);
    transform: scale(1.0);
}
.submenubox.submenubox2.submenubox3 a:hover{
    transform: scale(1.05);
}
.submenubox.submenubox2.submenubox3{ max-width: 200px;}
.submenubox.submenubox2.submenubox3 a img{ max-width: 100px;}
.submenubox.submenubox2 a{
    display: block;
    margin: 5px 0px;
    padding: 15px 30px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 5px;
    transition: var(--trans);
  }
  .submenubox.submenubox2 a:hover{
  background-color: var(--yellow);
  color: var(--red);
  }
  .submenubox.submenubox2.submenubox3 a:hover{
    background-color:var(--color-w);
    }

.submenucontent{  display: flex;
    list-style: none;
    text-align: left;
    gap: 10px;
    align-items: flex-start;
    padding: 0;
    justify-content: center;}

.submenu:hover .submenubox {
    visibility: visible;
    margin-top: 10px;
    opacity: 1;
}

.submenubox li .submenulink {
    width: fit-content;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 15px;
    padding-left: 0px;
    border-radius:0px 50px 50px 0px;
    display: flex;
    align-items: baseline;
}
.submenubox li .submenulink i{font-size: 12px;}
.boldLink:hover h4{ color: var(--red);}

.submenubox li .submenulink:hover {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.submenubox li h4 {
    margin-top: 5px;
    margin-bottom: 10px;
    color: var(--dark-text-c);
}


.tumbanils img{
max-height: 300px;
width: 60%;
}
.tumbanils h4{
  position: relative;  
}
/*banner*/

.banner {
    min-height:700px;
    height: 100dvh;
    padding-top: 50px;
    width: 100%;
    background-color: var(--l-gray);
    display: flex;
    align-items: center;
}

.banner-item{position: relative;}
.overlay-banner{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #003332;
    background: linear-gradient(90deg, rgba(0, 51, 50, 1) 0%, rgba(95, 134, 40, 0.22) 100%);
    z-index: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.overlay-banner h2 {
    font-size: 45px;
    color: #fff;
}
.overlay-banner p{
    color: #fff;
    opacity: 0.8;
}
.overlay-banner h2 span.gr {
    background: -webkit-linear-gradient(left, #ffd319, #ffde00, #e6ae03, #ffda42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: hue 25s infinite linear;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}
.overlay-banner h2 span.spn21{
    font-size: 35px;
}
.op2.banner {
    padding-top:20px;
}

.corosel-bnr{
    margin-top:73px;
    line-height: 0;
padding-left: 0px;
padding-right: 00px;
}
.corosel-bnr .inner-page{
border-radius: 25px;
background-color: #348c26;
padding: 50px 50px;
}

.corosel-bnr .inner-page.bg-yellow{
    background:url(../img/bg/yellow-bg.svg);
    background-size:cover;
    background-position: center center;
    background-repeat: no-repeat;    
}
#owl-carousel-3{
    border-radius: 0px;
    overflow: hidden;
}
.banner-product{
    padding: 30px 0px;
    margin-bottom: 15px;
}
.banner-product img{
    transition: var(--trans);
    border-radius: 10px;
    width: 100%;
    transform: scale(1.0);
}
.banner-product img:hover{
    transform: scale(1.03);
}

.pagebg4{background-image:url(../img/custom-webdev.webp);background-size: cover; background-position: right bottom;}


.orng{background-image:url(../img/bg-orng.svg);background-size: cover; background-position: left top;}
.purple{background-image:url(../img/bg-purple.svg);background-size: cover; background-position: left top;}
.blue-green{background-image:url(../img/bg-blue-green.svg);background-size: cover; background-position: left top;}
.brown{background-image:url(../img/brown.svg);background-size: cover; background-position: left top;}
.b-white{background-image:url(../img/b-white.svg);background-size: cover; background-position: left top;}
.y-green{background-image:url(../img/y-green.svg);background-size: cover; background-position: left top;}

.dmarketing{ background-image:url(../img/digitalMarketing.webp); background-size: cover; background-position: right bottom;}
.webdvlpmnt{background-image:url(../img/webDvlmpnt.webp); background-size: cover; background-position: right bottom;}

.appDevlopDev{background-image:url(../img/appDevlopDev.webp); background-size: cover; background-position: right bottom;}

.graphicsDesigns{background-image:url(../img/graphicsDesigns.webp); background-size: cover; background-position: right bottom;}

.lgraybg{background-color: var(--l-gray) !important;}

/* claipart */
.backflower-main{
    position: absolute;
    width: 100%;
    height: 100%;
    top: -50px;
}
.backflower-main svg{
   width:75%;
   margin-left: auto;
   margin-right: auto;
}
.transparent{
    fill: #ffffff00;
}
.backflower{
    fill:var(--sarvottam-ricebran-base); 
    opacity:0.10 ;
    animation: rotadess 30s linear infinite;
    transform-origin: center center;
}
.sunflower-page .backflower{
    fill:var(--sarvottam-sunflower-base); 
}
.soybean-page .backflower{
    fill:var(--sarvottam-soybean-base); 
}
.atta-page .backflower{
    fill:var(--sarvottam-atta-base); 
}
.rice-page .backflower{
    fill:var(--sarvottam-rice-pink-base); 
}
.besan-page .backflower{
    fill:var(--sarvottam-besan-base); 
}

.cls-1 {
    fill: #61bf19;
}

.cls-2 {
    fill: #ffd400;
}

.cls-3 {
    fill: #348c26;
}

.sunflower-page .cls-3{
    fill: var(--sarvottam-sunflower-base);
}
.sunflower-page .cls-1{
    fill: var(--sarvottam-sunflower-secondary);
}

.soybean-page .cls-3{
    fill: var(--sarvottam-soybean-base);
}
.soybean-page .cls-1{
    fill: var(--sarvottam-soybean-secondary);
}

/* Atta Page */
.atta-page .cls-3 {
    fill: var(--sarvottam-atta-base);
}
.atta-page .cls-1 {
    fill: var(--sarvottam-atta-secondary);
}

/* Rice Page */
.rice-page .cls-3 {
    fill: var(--sarvottam-rice-pink-base);
}
.rice-page .cls-1 {
    fill: var(--sarvottam-rice-pink-secondary);
}

/* besan page */
.besan-page .cls-3 {
    fill: var(--sarvottam-besan-base);
}
.besan-page .cls-1 {
    fill: var(--sarvottam-besan-secondary);
}

/* claipart */
.whitetrans .cls-1 {
    fill: #ffffff9f;
}

.whitetrans  .cls-2 {
    fill: #ffffff36;
}
.white-bg .cls-3 {
    fill: #ffffff !important;
}

.ptch-base-white .cls-3{ fill: var(--l-gray); }

.top-patch{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

.element{ position: absolute;  width:1px; height: 1px;  overflow: visible;   display: flex;
    justify-content: end;
    align-items: center;  }
.element.right-element{ right: 0; bottom: 0;}
.element.left-element{ left: 0; bottom: 0;   justify-content: start;}
.element.top-elementa{ bottom:unset !important; top: 0;}
.bg-greenwhite{ z-index:10; }

.element div {
    width: 125px;
    min-width: 125px;
    height: 250px;
    display: flex;
    justify-content: start;
    align-items: center;
    overflow: hidden;
}

.element.left-element div{
    justify-content: end; 
    border-radius: 0% 100% 100% 0%;
}

.element img{
    width: 250px;
    min-width: 250px;
    height: auto;

}


.top-patch-bottom{
    position: relative;
    line-height: 0;
}
.op-patch-bottom .cls-3{
    fill: var(--l-gray);
}
header .top-patch{
    top: 100%;
    line-height: 0;
}

.banner .contactbox h2{
    text-align: left;
    font-size: 23px;
    margin-block: 0;
    margin-bottom: 20px;
}
.banner  .contactbox p {
    font-size: 16px;
    line-height: 1.3;
    margin: 0;
}

.bnr-text .itext {
    font-style: normal;
    font-size: 35px;
    font-weight: 500;
    color: var(--dark-gray);
}

.bnr-text h1 {
    font-size: 69px;
    color: var(--dark-gray);
    margin-block-start: 0.1rem;
    margin-block-end: 1.8rem;
    line-height: 1;
    margin-bottom: 25px;
}
.op2 .abtpage h1{
    font-size: 50px;
}

.list-style-1{
    list-style: none;
    padding-left: 0px;
    line-height: 1;
}
.list-style-1 div{ margin-top: 5px;}
.list-style-2{
    list-style:disc;
    padding-left: 15px; 
}
.serbnr .bnr-text h1 {
    font-size: 50px;
    line-height: 1.1;
}

.serbnr .bnr-text .itext {
    font-size: 24px;
    font-weight: 600
}

.op2 .bnr-text p {
    color: var(--dark-gray);
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.serbnr .bnr-text p {
    font-size: 18px;
}

.bnrimg {
    position: relative;
    text-align: center;
}
.brrabt{
    position: relative !important;
    mix-blend-mode: hard-light;
}

.bnr-text a {
    margin-right: 15px;
}

.bnrimg img {
    z-index: 2;
    position: relative;
    margin: 0px 40px;
    min-height: 100%;
}
.groupImage-main{ width:80%; position: relative; z-index: 2;}
.groupImage-main img{ width: 100% !important;}
.serbnr .bnrimg img {
    width: 95%;
    max-width: 824px;
    margin: 0;
}
.bnrimg::before,
.serbnr .bnrimg::after {
    content: '';
    position: absolute;
    bottom: -30px;
    z-index: 1;
    right: -70px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 59%);
    transform-origin: bottom;
    transform: rotate3d(1, 0, 0, 78deg);
}
.bnrimg::before {  width: calc(100% + 150px);
    padding-top: calc(100% + 150px);  right: 0px;   right: -40px;}

.serbnr .bnrimg::before {
    right: 0px;
    bottom: -110px;
    width: 100% !important;
    padding-top: 100% !important;
}
.serbnr.abtpage .bnrimg::before{
 right: 0%;
 bottom:-60px;
 width: 80% !important;
 padding-top:80% !important;
}
.blend{mix-blend-mode: hard-light;}
.serbnr .bnrimg::after {
    transform: unset;
    margin: 0;
    background-color: var(--base-color-1);
    right: 50%;
    margin-right: -35%;
    width: 70%;
    padding-top: 70%;
}
.abtpage.serbnr .bnrimg::after{
display: none;
}
.abtpage.serbnr .bnrimg img{width: 80%; position: absolute; right: 0; top: 0px;}
.abtpage.serbnr .bnrimg{ display: flex; justify-content: flex-end;}
.about-ovelay{ 
  height: 100%;
  width:80%;
  display: flex;
  justify-content: center;
}
.serbnr.abtpage .about-ovelay img{width: fit-content; position: relative;  max-width: 399px; }

.bold {
    font-weight: 700;
    display: block;
    margin: 5px 0px;
    padding: 5px 10px;
    width: fit-content;
}

.line1 {
    font-size: 34px;
    background-color: var(--color-d);
    color: var(--color-w);
}

.line2 {
    font-size: 69px;
    background-color: var(--base-color-1);
    color: var(--color-d);
}


/*carosel*/
.carosel {

    padding: 40px 0px;
}

.carosel .owl-item {
    text-align: center;
}

.carosel .owl-item img {
    display: unset !important;
    max-width: 134px;
}

.carosel.op2 {
    padding-top: 100px;
}

/*common formate*/
.small-text {
    font-size: 20px;
    font-weight: 700;
}

.heading {
    font-size: 40px;
    font-weight: 700;
}

.bottomline {
    border: 0;
    margin: 15px 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}



.homeabout:hover .aboutimg-1 img,
.homeabout:hover .aboutimg-3 img {
    transform: scale(1.1);
    transition: var(--trans);
}

.aboutimg-1,
.aboutimg-3 {
    flex: 0 0 auto;
    max-width: 50%;
    border-radius: 20px;
    overflow: hidden;
    line-height: 0;
    position: relative;
}
.aboutimg-1::after,
.aboutimg-3::after {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    mix-blend-mode: hard-light;
}
.aboutimg-1::after {
    background-color: var(--base-color-1);
}
.aboutimg-3::after {
    background-color: var(--blue);
}
.aboutimg-2 {
    width: 0px;
    z-index: 3;
    display: flex;
    justify-content: center;
}
.aboutimg-2 img {
    width: fit-content;
}
.aboutimg-3 img,
.aboutimg-1 img {
    width: 100%;
}

.boxyframe{
    background-color: var(--color-w);
    border-radius:20px;
    padding:50px;
}

/*optherpage...........................*/

.optherpage .homeabout {
    background-color: var(--l-gray);
    padding: 70px 0px;
}

.ser-detail img {
    width: 95%;
}
.quicklinks ::marker {
    font-size: 26px;
}
.quicklinks ul{
    padding-left: 25px;
    list-style: circle;}

/*quicklinks...........................*/

.quicklinks {
    background:var(--gredient);

    padding: 80px 0px;
}
.quicklinks.yellowbg{ background-image: none; background-color: #ffaf01 ;}
.quicklinks.orangebg{ background-image: url(../img/custom-webdev.webp);}
.quicklinks.greybg{ background-image: url(../img/custom-wd2.png);}

.quicklinks.whitebg{ background-image: none;  background-color: var(--color-w); }

.ser-list .heading2{
    margin-block: 0px;}
.ser-list .heading2, .ser-list h3{ color: var(--dark-gray);}
.ser-list .heading2{ font-size: 40px; margin-bottom: 40px; text-align: center;}
.ser-list p{ margin-block: 10px; }
.ser-type-list{ padding: 10px 20px; padding-left: 0px; border-radius: 10px; }
.ser-type-list i.sd{ font-size: 40px; margin-right: 10px;}
.ser-type-list h3{font-size: 27px; margin-block-start: 5px;}
.qlink {
    max-width: 600px;
    margin: 20px 0px;
    padding: 0px 0px 0px 30px;
    position: relative;
}

.qlink::after,
.qlink::before {
    content: '';
    position: absolute;
    left: 0;
}

.qlink::after {
    background-color: #FFCF00;
    height: 15px;
    width: 15px;
    border-radius: 100%;
    top: 10px;
}

.qlink::before {
    border-left: 1px solid;
    border-bottom: 1px solid;
    border-color: var(--base-color-1);
    width: 30px;
    height: calc(100% - 50px);
    top: 25px;
    left: 7px;
}

.qlink h4 {
    font-size: 30px;
    color: var(--color-w);
    font-weight: 600;
}

.qlink h4 span {
    color: var(--yellow);
}

.qlink a {
    margin-top: 30px;
}

.qlink:nth-child(2) {
    align-self: flex-end;
}

.circle {
  height: 500px;
  width: 500px;
  background-image: url('../img/palakPaneer.webp');
  background-size: 100% auto;
  background-position: center center;
  border-radius: 100%;
}
.circle.imbg-2{  background-image: url('../img/kitchen.webp');}
.circle img {
    width: 68%;
}

.half-section{ padding: 50px; border-radius: 10px;}

.heading2 {
    font-size: 30px;
    color: var(--color-w);
}

.heading2 span {
    font-size: 27px;
}

.quicklinks.yellowbg .heading2 {color: var(--dark-gray);}
.ser-type {
    color: var(--l-gray);
    padding: 40px 50px 0px 0px;
}

.ser-type h3 {
    margin-top: 0px;
    font-size: 24px;
}

.ser-type i {
    display: block;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    background-color: rgba(0, 0, 0, 0.1);
    font-size: 30px;
    margin-right: 20px;
    border-radius: 5px;
    color: var(--base-color-1);
}

.ser-type p {
    margin-block: 5px 0px;
    color: var(--color-w);
}
.quicklinks.yellowbg .ser-type p, .quicklinks.yellowbg .ser-type i, .quicklinks.yellowbg .ser-type h3{color: var(--dark-gray);}

.mandala{
    position: absolute;
    top: 0;
    overflow: hidden;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-35px);
}

.mandala img{ max-width: 100%; opacity: 0.3; animation: rotadess 30s linear infinite;}

@keyframes rotadess{
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }



  .products-details h3{
   font-size: 30px;
   color: var(--dark-text-c);
  }

  .soybean-page .mobile { 
    background-color: var(--sarvottam-soybean-base); 
  }
  
  .sunflower-page .mobile { 
    background-color: var(--sarvottam-sunflower-base); 
  }
  
  .besan-page .mobile { 
    background-color: var(--sarvottam-besan-base); 
  }
  
  .atta-page .mobile { 
    background-color: var(--sarvottam-atta-base); 
  }
  
  .rice-page .mobile { 
    background-color: var(--sarvottam-rice-pink-base); 
  }

  .products-details h5, .h5{ font-weight: 600;  color:var(--color-d); font-size: 20px;  }

  .soybean-page .mobile{ background-color: var(--sarvottam-soybean-base);}

  .soybean-page .products-details h3, 
  .soybean-page h1.heading, 
  .soybean-page .box-content h4, 
  .soybean-page .cooking h4, 
  .soybean-page .certificate h4, 
  .soybean-page .quickbuy span {
    color: #452500;
  }
.besan-page .products-details h3, 
  .besan-page h1.heading, 
  .besan-page .box-content h4, 
  .besan-page .cooking h4, 
  .besan-page .certificate h4, 
  .besan-page .quickbuy span {
    color: #551900;
  }

  .rice-page .products-details h3, 
  .rice-page h1.heading, 
  .rice-page .box-content h4, 
  .rice-page .cooking h4, 
  .rice-page .certificate h4, 
  .rice-page .quickbuy span {
    color: #4b154f;
  }
  
.atta-page .products-details h3, .atta-page h1.heading, .atta-page .box-content h4, .atta-page .cooking h4, .atta-page .certificate h4, .atta-page .quickbuy span {color: #550809; }
  .sunflower-page .products-details h3, .sunflower-page h1.heading, .sunflower-page .box-content h4, .sunflower-page .cooking h4, .sunflower-page .certificate h4, .sunflower-page .quickbuy span{color: #381002; }
  

/* steps */
.stepsec {
   line-height: 1.2;
   margin-top: 20px;
   position: relative;
   border-radius: 20px;

}
.stepss{
    padding: 20px 30px;
    font-size: 16px;
    font-weight: 500;
    background-color: var(--color-w);
    height: 100%;
    border-radius:10px;
    display: flex;
    align-items: center;
}
.box-title{

    display: flex;
    align-items: center;
}

.box-content{    padding: 20px 30px;
    background-color: var(--color-w);
    border-radius:10px;
    height: 100%;
}
.box-content h4, .cooking h4, .certificate h4{ margin-top: 0px; color: var(--dark-text-c); font-size: 24px;}
.cooking.whychoose h4{
    font-size: 20px;
}
.box-content ul{
    padding-left: 15px;
    margin-top: 10px;
}
.step-icons{
    width: 60px;
    min-width: 60px;
    height: 60px;
    border-radius: 100%;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sarvottam-ricebran-gradient);
}

.sunflower-page .step-icons{
    background: var(--sarvottam-sunflower-gradient);  
}
.soybean-page .step-icons{
    background: var(--sarvottam-soybean-gradient);  
}
.atta-page .step-icons {
    background: var(--sarvottam-atta-gradient);  
}

.rice-page .step-icons {
    background: var(--sarvottam-rice-pink-gradient);  
}

.besan-page .step-icons {
    background: var(--sarvottam-besan-gradient);  
}


.step-icons img{width: 35px;}

.certificate .step-icons{
  background: var(--color-w) !important;  
  box-shadow: 0px 0px 20px  #00000010 !important;
}
.certificate .step-icons img{
width: 100%;
border-radius: 100%;
}
.certificate p{ line-height: 1.2; margin-block-start: 5px !important;}

.certificate h4{
    font-size: 20px;
    font-weight: 600;
}
.certificate p{ margin-block: 0;}

.cooking .stepss{
    background-color: transparent;
    padding: 15px 20px;
    border: 1px solid #00000011;
}
.package{
    text-align: center;
    border-bottom: 1px solid #00000011;
    height: 100%;
    position: relative;
}
.package img{
width:90%;
max-width: 300px;
}
.package span{
display: block;
line-height: 1.3;
font-weight: 600;
margin-top: 10px;
border-radius:30px;
margin-left: auto;
margin-right: auto;
color: var(--dark-text-c);
padding: 10px 30px;
width: fit-content;
font-size: 18px;
background:var(--yellow);
}

.cooking .stepss p{
line-height: 1.1;
margin-block-end: 0px;
}

.quickbuy{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    line-height: 1.3;
}
.quickbuy a{
    display: block;
    margin: 5px 5px;
    background-color: var(--color-w);
    padding: 5px 15px;
    box-shadow: 0px 0px 20px  #00000010;
    border-radius: 8px;
    transition: var(--trans);
    line-height: 0px;
}
.quickbuy a:hover{
transform: scale(1.05);
}
.quickbuy span{
    display: block;
    margin: 5px;
    font-size: 20px;
    font-weight: 700;
    margin-right: 15px;
    color: var(--dark-text-c);
}
.quickbuy a img{
    max-width: 120px;
}

/*quicknav...........................*/
.qnav {
    padding: 60px 0px;
    background-color: var(--l-gray);
}

.b-icon {
    height: 100px;
   min-width: 100px;
    border-radius: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    font-size: 55px;
}



.qnavtxt span {
    color: var(--dark-gray);
    font-size: 21px;
    font-weight: 600;
    text-transform: uppercase;
}

.qnavtxt h1 {
    font-size: 50px;
    line-height: 1;
    margin-block: 0px;
}

.qnav a:hover h1,
.qnav a:hover .b-icon i {
    color: var(--green) !important;
}

/*feedback...........................*/

.feedback {
    padding-top: 50px;
    background-image: url('../img/red-background.svg');
    background-size: cover;
    background-position: center center;
    line-height: 0;
}

.feedback-img {
    position: relative;
}

.feedback-img .circle {
    width:85%;
    height: unset;
    margin: auto;
    padding-top: 85%;
   margin-bottom: 70px;

}

.circle-img {
   
    width: 100%;
    bottom: 0;
    height: 0px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.circle-img img {
    max-width: 65%;
}

.feedback-con{padding-bottom:70px;}

.feedback-footer .flexGrow-1 {
    min-height: 60px;
}

/* oil start */
.kadahi{
    position: relative;
}
.kadahi p{
margin-bottom: 0px;
}
.kadahi div, .g1{
    display: flex;
    align-items:flex-end;
    justify-content: end;
    height: 0px;
}
.g1{
align-items: start;
position: relative;
z-index: 2;

}
.g1 img{
   margin-right: 98px;
}
.faloil{
position: absolute; top: 566px; background:url('../img/oil/reapeater-bg.png'); z-index: 200; 
 width: 13px;
background-size: 100% auto;
background-repeat:  repeat-y;
right: 189px;
}

img.extra{
    width: 21px;
    height: 204px;
    margin-left: -5px;
    position:fixed;
    right: 186px;
    z-index: 900;

}
/* oil end */

.feedback-footer h3 {
    font-size: 27px;
    color: var(--base-color-1);
    margin-top: 0px;
    margin-bottom: 15px;
}

.feedback-footer span {
    font-size: 20px;
    color: var(--color-w);
    font-weight: 500;
}

#owl-carousel-2 .owl-nav {
    position: absolute;
    bottom: -70px;
}
#owl-carousel-2.abtcarosel{ position:relative; }

#owl-carousel-2 .owl-nav .owl-prev,
#owl-carousel-2 .owl-nav .owl-next {
    width: 60px;
    height: 30px;
    background-color: var(--color-w);
    color: var(--red);
    border-radius: 15px;
    margin-right: 15px;
    font-size: 30px;
    transition: var(--trans);
}

#owl-carousel-2 .owl-nav span {
    transform: translateY(-2px);
    display: block;
}


#owl-carousel-2 button:hover {
    background-color: var(--base-color-1) !important;
}

/*footer...........................*/
footer {
    padding: 60px 0px;
    font-weight: 500;
    padding-bottom: 0;
    background-color: #fff;
}

.qtext {
    font-size: 24px;
    line-height: 1.8;
}

.footnav {
    text-align: left;
}

.footnav a {
    font-size: 14px;
    margin:0px 0px;
    width: fit-content;
    padding: 5px 0px;
    display: block;
    transform: var(--trans);
    text-align: left;
}
.social{text-align: center; display: flex;  padding: 15px 0px; }

footer h4, .footnav h4 a{margin-block: 5px 5px; font-size: 16px;}

.social a{
    margin-right: 5px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    font-size: 22px;
    border: 1px solid #0000001a;
    transform: var(--trans);
    border-radius: 25px;
    text-align: center;
    background-color: var(--color-w);
}

.kadahi p{
padding: 15px 0px 30px 0px;
background-color: #348c26;
margin: 0px;
color: var(--l-gray);
}
.sunflower-page .kadahi p{
    background-color: var(--sarvottam-sunflower-base);
}
.soybean-page .kadahi p{
    background-color: var(--sarvottam-soybean-base);
}

.atta-page .kadahi p {
    background-color: var(--sarvottam-atta-base);
}

.rice-page .kadahi p {
    background-color: var(--sarvottam-rice-pink-base);
}

.besan-page .kadahi p {
    background-color: var(--sarvottam-besan-base);
}

.abtgxi {
    font-size: 16px;
    padding-top: 30px;
}

.footnav a:hover {
color: var(--red);
}

.social a:nth-child(1):hover {
    border-color: #4267B2;
    background-color: #4267B2;
    color: #fff;
}

.social a:nth-child(2):hover {
    border-color: #C13584;
    background-color: #C13584;
    color: #fff;
}

.social a:nth-child(3):hover {
    border-color: #1DA1F2;
    background-color: #1DA1F2;
    color: #fff;
}

.social a:nth-child(4):hover {
    border-color: #0077b5;
    background-color: #0077b5;
    color: #fff;
}

.mobile {
    width: 250px;
    height: 380px;
    border-radius: 30px;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    background: var(--base-color-1);
    border: 8px solid var(--dark-gray);
    margin-right: 30px;
}


.mobile img {
    width: 100%;
}

.whatsapp {
    position: relative;
    z-index: 2;
}

.whatsapp a {
    background-color: var(--color-w);
    display: block;
    text-align: center;
    padding: 25px 0px;
    border-radius: 0px 0px 20px 20px;
    font-weight: bold;
    font-size: 31px;
    color: var(--green);
    z-index: 2;
    position: relative;
    transition: var(--trans);
}

.whatsapp a i {
    font-weight: 400;
}

.whatsapp::before {
    content: '';
    position: absolute;
    background-color: var(--color-w);
    top: -25px;
    left: 50%;
    margin-left: -28px;
    height: 60px;
    width: 60px;
    border-radius: 10px;
    transform: rotate(45deg);
    transition: var(--trans);
}

.whatsapp:hover::before {
    background-color: var(--green);
}

.whatsapp:hover a {
    background-color: var(--green);
    color: var(--color-w);
}

/*.................................................scroll...........................*/
.wpb_animate_when_almost_visible {
    opacity: 0;
    transform-origin: bottom;
    transition: all 1000ms cubic-bezier(0, 1.47, .99, 1.5);
}

.tran-left {
    transform: translateX(-100px);
}

.tran-right {
    transform: translateX(100px);
}

.wpb_start_animation {
    opacity: 1;
    transform: translateX(0px);
}

/*..........records...........................*/
.records {
    height: 0px;
    position: relative;
    z-index: 5;
}

.records-box {
    background-color: var(--color-w);
    color: var(--color-d);
    box-shadow: 5px 5px 19px rgba(0, 0, 0, 0.06);
    width: 60%;
    border-radius: 14px;
    padding: 30px 10px;
}

.records-box h2 {
    font-size: 40px;
    margin-block: 0px;
}

.records-box p {
    font-size: 18px;
    line-height: 1;
    font-weight: 600;
    margin-block: 0;
    margin-block-start: 5px;
}

.records-box div, .con-foot div {
    position: relative;
    flex-grow: 3;
}

.records-box div::after, .con-foot div::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    height: 100%;
}

.records-box div:nth-last-child(1):after,
 .con-foot div:nth-last-child(1):after {
    display: none;
}

/*..........steps..........................*/
.steps {
    background-color: var(--color-w);
    padding: 80px 0px;
}

.steps h2 {
    color: var(--dark-gray);
    margin-block-start: 0px;
    margin-block-end: 40px;
}
.steps h3.heading2{
    margin-block:10px;
    margin-block-start: 30px;
    color: var(--dark-gray);
}

.steps h2 span {
    font-size: 30px;
}
.offer h3{font-size: 18px; font-weight: 600; color: var(--color-d) !important;}
.stp-img {
    min-width: 210px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 122px;
    border-radius: 14px;
    background: var(--color-w);
    border: 1px solid var(--color-d);
}
.stp-num {
    position: relative;
    z-index: 1;
}
.stepbox{ position: relative;}
.stepbox::before {
    position: absolute;
    content: "";
    width: 1px;
    background-color: #3e3b442b;
    height: calc(100% - 0px);
    top: 0px;
    left: 25px;
}
.vertical.stepbox::before {

    content: "";
    width: 100%;
    height: 1px;
    top: 25px;
    left: 0px;
}
.stepbox .flex{margin-bottom: 20px;}

.row-5 .flex{   max-width:20%}

.vertical.stepbox .flex{margin-bottom: 0px;}

.stepbox .flex:nth-last-child(1){
    margin-bottom: 0px;
}
.vertical.stepbox .flex{flex-direction: column;}

.stp-num-con {
    position: relative;
    z-index: 2;
    min-width: 50px;
    height: 50px;
    line-height: 48px;
    font-size: 25px;
    font-weight: 700;
    text-align: center;
    border: 1px solid var(--color-d);
    border-radius: 100%;
 margin-right: 30px;
    background-color: var(--color-w);
}
.steps.yellowbg .stp-num-con{ background-color: #ffaf01;}

.vertical.stepbox .stp-num-con{ max-width: 50px;  margin: auto;  margin-bottom: 40px;   }
.vertical.stepbox .stp-cont {
    padding-left: 0px;
}

.stp-num::after,
.stp-num::before {
    content: '';
    position: absolute;
}

.stp-num::after {
    width: 60px;
    right: 0;
    border-bottom: 1px solid var(--color-d);
    top: 50%;
}

.stp-num::before {
    right: -3px;
    height: 10px;
    width: 10px;
    border-radius: 100%;
    background-color: var(--color-d);
    top: 50%;
    margin-top: -5px;
}

.vertical.stepbox .stp-num::before {
    right:50%;
    margin-right: -5px;
    top:calc( 50% + 30px);
   
}

.vertical.stepbox .stp-num::after{
  height: 30px;
  width: 1px;
    right:unset;
    left:50%;
    border-bottom:unset;
    border-left: 1px solid var(--color-d);
    top: 50px;
}
.stp-cont{
    padding-left: 20px;
}
.vertical.stepbox .stp-cont p{ text-align: justify;
    text-align-last: center;}
    .vertical.stepbox .stp-cont h3{ 
text-align: center;}
.stp-cont p{margin-block: 5px 0px;}
.stp-cont h3{font-size: 24px; color: var(--red); margin-block: 0px 0px;}
.vertical.stepbox .stp-cont h3{ color: var(--dark-gray); font-size: 27px;}

.steps.yellowbg .stp-cont h3{ color: var(--dark-gray);}
.steps.yellowbg .stp-cont p{ color: var(--dark-gray);}

.form{
    padding: 80px 0px;
    background-color: var(--l-gray);
}

::placeholder {
    color: var(--color-d);
    opacity: 1; 
  }
  :-ms-input-placeholder { 
    color: var(--color-d);
  }
  ::-ms-input-placeholder {
    color: var(--color-d);
  }
form{padding:30px 0px 0px 0px;}
.form .heading2{color: var(--dark-gray);}
.form .heading2{color: var(--dark-gray);}
.form h4{font-weight: 600; font-size: 20px;}
form p{font-weight: 600; font-size: 22px;}
.main-inputs input, .main-inputs select, .main-inputs textarea {
    display: block;
    width: 100%;
    margin: 0px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #00000036;
    padding:5px 0px;
    font-weight: 500;
    color: var(--dark-gray);
    transition: var(--trans);
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 30px;
}
.main-inputs input:focus-visible, .main-inputs select:focus-visible, .main-inputs textarea:focus-visible{
    outline: unset;
    border-bottom-color: #000000ee;
}
.main-inputs .buttons{
  width: fit-content !important;
  padding: 10px 50px;

}
.main-inputs .buttons:hover{ border-color: var(--dark-gray); background-color: var(--dark-gray);}
.main-inputs .buttons::after, .main-inputs .buttons::before{ display: none;}
.position-r input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }
  .position-r{ position: relative; padding-left: 30px; margin-left: 50px;}
  
  /* Create a custom radio button */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
 border: 1px solid #1413174f;
    border-radius: 50%;
  }
  
  /* On mouse-over, add a grey background color */
  .position-r:hover input ~ .checkmark {
    border: 1px solid var(--color-d);
  }
  
  /* When the radio button is checked, add a blue background */
  .position-r input:checked ~ .checkmark {
    border: 1px solid var(--dark-gray);
  }
  
  /* Create the indicator (the dot/circle - hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the indicator (dot/circle) when checked */
  .position-r input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the indicator (dot/circle) */
  .position-r .checkmark:after {
       top:6px;
      left: 6px;
      width: 11px;
      height: 11px;
      border-radius: 50%;
      background: var(--dark-gray);
  }

/*................aboutPage...........................*/

.got-here {
    padding: 70px 0px;
    background-color: var(--l-gray);
}
.got-here p {
    font-size: 1.1vw;
    margin-block: 5px 0px;

}
.got-here h3{    FONT-SIZE: 24px;
    line-height: 1.0; }
.got-here .row{margin-top: 50px;}
.got-here .heading2{
color:var(--color-d);
font-size: 40px;
}
.got-here .heading2 span{
    font-size: 45px;
}
.got-here img{width:95%; border-radius: 0px;}

.dotline,  .dotlineleft{position: relative;}
.dotline::after, .dotline::before,  .dotlineleft::after,  .dotlineleft::before{ 
content: ''; position: absolute;
 }
 .dotline::after{
width: 50%; height: calc(45% + 50px); left:calc(100% + 15px); top: 50%;
border-top: 2px dotted var(--color-d);
border-right: 2px dotted var(--color-d);
border-top-right-radius: 100px;
 }
 .dotline::before {
     border: 2px solid var(--color-d);
     border-left: none;
     border-top: none;
     height: 15px;
     width: 15px;
     transform: rotate(45deg);
     top: calc(95% + 40px);
     left: calc(150% + 6px);
 }
 .dotlineleft::after{
    width: 50%; height: calc(50% + 10px); left:calc(-50% + 15px); top: 50%;
    border-top: 2px dotted var(--color-d);
    border-left: 2px dotted var(--color-d);
    border-top-left-radius: 100px;

     }
     .dotlineleft::before {
         border: 2px solid var(--color-d);
         border-left: none;
         border-top: none;
         height: 15px;
         width: 15px;
         transform: rotate(45deg);
         top: calc(100% + 0px);
         left: calc(-50% + 9px);
     }
    .bold-text{font-size:2vw; color: var(--color-w); line-height: 1.4;}
    .plane{ height: 1px;}
    .plane img{width: 100%; max-width: 400px;}
    .bolds{font-weight: 600; font-size: 22px; }
     .w-68{max-width:68%;}
     .delights{background-color: var(--color-w);}
     .delights img{ width: 100%;}
     .delights{padding:0px 0px 30px 0px; border-radius: 10px; height: 100%;}
     .delights h4{ text-align: center; font-size: 14px; line-height: 1.3; font-weight: 600; margin-block: 0px 0px; padding: 0px 30px;}
     .vision{ padding: 70px 0px;}
     .vision .plane{ display: flex; justify-content: center; align-items:flex-end;}
     .vision img{width: max-content;}
    .spotlight{
        padding: 70px 0px; background-color: var(--l-gray);
    }
    .got-here.spotlight .row .row{margin-top: 25px; padding-bottom: 40px;}
    .award .text-center{position: relative;}
    .award .text-center::after{
        content: '';
        position: absolute;
        bottom: -46px;
        z-index: 1;
        right:0px;
        margin-left: auto;
        margin-right: auto;
        border-radius: 100%;
        width: 100%;
        padding-top: 100%;
        background: radial-gradient(circle, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 59%);
        transform-origin: bottom;
        transform: rotate3d(1, 0, 0, 78deg);
    }
    .award h2{ font-size: 40px; color: var(--red); line-height: 1.3; }
    .award img{width:90% !important; margin: auto; border-radius: 15px;}
    .award p{font-size: 18px;}
    #owl-carousel-2.abtcarosel .owl-nav{
        width: calc(100% + 200px);
        left: -100px;
        top: 50%; 
        margin-top: -30px;
        bottom: unset;
        display: flex;
        justify-content: space-between;
      }
      #owl-carousel-2.abtcarosel .owl-prev, #owl-carousel-2.abtcarosel .owl-next {
        height: 60px; border-radius: 100%;
        font-size: 60px;
        margin-right: 0px;
        line-height: 60px;
        background-color: #ffffff00;
        color: var(--dark-gray);
      }


   /* table grid */
.grids {
    overflow: auto;
    border-radius: 8px;
  }
  .table-grid {
    line-height: 1.4;
    display: grid;
    grid-template-columns: 1fr 2fr 2fr; /* 3 columns now */
    background: #fff;
    border: 0px solid #ccc;
    overflow: hidden;

  }
  .table-grid div {
    border-bottom: 1px solid #00000018;
    border-right: 1px solid #00000018; /* add right border */
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  /* Header styling: first 3 divs */
  .table-grid div:nth-child(-n+3) {
    background: var(--sarvottam-ricebran-gradient);
    font-weight: 600;
    color: var(--l-gray);
    font-size: 18px;
  }
  
  /* Attribute name styling */
  .table-grid .cs {
    background: #ffffff;
    font-weight: bold;
    color: #333;
  }
  
     .sunflower-page .table-grid div:nth-child(-n+3) {
        background: var(--sarvottam-sunflower-gradient);
     }
     .soybean-page .table-grid div:nth-child(-n+3) {
        background: var(--sarvottam-soybean-gradient);
     }
     .atta-page .table-grid div:nth-child(-n+3) {
        background: var(--sarvottam-atta-gradient);
    }
    
    .rice-page .table-grid div:nth-child(-n+3) {
        background: var(--sarvottam-rice-pink-gradient);
    }
    
    .besan-page .table-grid div:nth-child(-n+3) {
        background: var(--sarvottam-besan-gradient);
    }
  

      .table-grid div:nth-child(3n) {
        border-right: none;
      }

/*...Clients...........................*/
      .clients{
        background-color: var(--l-gray);
        padding-top:200px;
      }
      .clients .hight{
        height: 0px;
      }
      .client-list{
        padding: 80px 0px;
      }
      .clients .b-icon{ background-color: var(--color-w);
       border: 1px solid #00000018;
    }
      .client-list img{ margin: auto; width: 100%; max-width: fit-content;}
      .client-list .row.multiple div{text-align: center;}
      .careers-page
      .row.multiple div{text-align: unset;}
/*...career...........................*/

.client-list.careers{
    background-color: var(--l-gray);
  }
  .careers-page .qnavtxt h1{
    text-shadow: 0px 0px 38px #fafafa;
  }
    .careers-page .clients .hight{
    height: 1px;
    background-color: #ededed;
}
.careers .flex{
padding: 15px 0px;
}
.careers .flex{
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    .careers .flex{flex-wrap: wrap;}

    .careers .flex h2{font-size: 35px; margin-bottom: 10px;}
    .careers .flex p{ font-size: 20px;
        margin-block:0px;margin-bottom: 15px;
    }
    .careers .flex:nth-last-child(1){
        border-bottom: none; padding-bottom: 0px;
    }
    
    /*.......CTA....................*/
    .call-to-action {padding: 60px 0px;}
    .call-to-action .bold-text{color: var(--color-d); margin-bottom: 20px;}
    
    /*........FAQs........................*/
    .question {
        font-weight: bold;
        margin-bottom: 5px;
        cursor: pointer;
      }
      .answer {
        margin-bottom: 20px;
        display: none;
      }
      .plus {
        display: inline-block;
        width: 10px;
        height: 10px;
        margin-right: 5px;
        transition: transform 0.3s ease;
      }
      .plus.collapsed {
        transform: rotate(45deg);
      }
        
      /*...contact...........................*/

    .contact-us{
        height:100vh;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        height:calc(100vh - 80px);
        margin-top: 80px;
    
      }
      .contact-us iframe{ position: absolute; width: 100%;
     border: none;
     height:calc(100vh - 80px);
    }
      .contact-us .container{
position: relative; z-index: 2;

      }
      
      .contactbox{width: 100%; 
        backdrop-filter: blur(30px);
--webkit-backdrop-filter: blur(30px);
background-color: rgb(255 255 255 / 88%);
padding: 40px;
border-radius: 25px;
border: 1px solid rgba(0, 0, 0, 0.1);
    }
    .contact-info h3{
    font-size: 35px;
    margin-bottom: 10px;
    }
    .contact-info a{
        display: flex;
        align-items: center;
        padding-bottom:5px;
        border-bottom:1px solid rgba(0, 0, 0, 0.1);
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
    .contact-info i{height: 40px; min-width: 40px;
         border-radius:100% ;
        line-height:35px;
        text-align: center;
        color: var(--blue);
        border:1px solid rgba(0, 0, 0, 0.1);
        margin-right: 10px;
        font-size: 24px;
        }
        .contact-info a:hover{
            color: var(--blue);
        }   
    .contactform{
padding-top: 0px;
    }
    .contactbox h1{ font-size: 30px;}
    .contactbox p{font-size: 16px; line-height: 1.3;}
    .contactform .main-inputs input, .contactform .main-inputs select, .contactform .main-inputs textarea {
        display: block;
        width: 100%;
        background-color: #fff;
        border: none;
        font-weight: 400;
        border: 1px solid rgba(62, 59, 68, 0.07);
        padding: 10px 15px;
        margin-bottom: 15px;
        color: var(--dark-gray);
        transition: var(--trans);
        font-size: 16px;
        border-radius: 3px;
    }
    .contactform .main-inputs .sendarrow{
        font-family: 'gxi';
        width: 60px;
height: 60px;
background: #2dad52;
border: 0;
border-radius: 100%;
margin-left: auto;
color: var(--color-w);
font-size: 25px;
margin-top: -30px;
margin-right: 15px;
transition: var(--trans);
    }
    .contactform .main-inputs .sendarrow:hover{
        background-color: var(--base-color-1);
        color: var(--dark-gray);
    }
    .contactform .main-inputs textarea{
        margin-bottom:0px ;
    }
    .contactbox b{font-weight: 700; line-height: 1.5; font-size: 20px; color: var(--blue); display: block; text-align: center;}
    .contactbox a{ display: block; line-height: 1.5; text-align: center;}
    .contactbox a:hover{color: var(--green);}
    .adress{
        padding: 15px; background-color: var(--color-w);
    }
    .flexes-wraper{
        border-bottom: 1px solid #00000011;
    }
    .flexes{
        margin:8px;
        border-radius: 5px;
        position: relative;
        margin-bottom: 0px;
    }
    .flexes h4{
        height: fit-content;
        border-radius: 18px 0px 18px 18px;
        writing-mode: vertical-rl;
        background-color: var(--base-color-1);
        padding: 15px 10px;
        margin-block: 0px;
        font-weight: 700;
        font-size: 16px;
        color: var(--dark-gray);
 z-index: 2;
margin-bottom: 30px;
    }
    .flexes::before, .flexes h4::after{
   content: ''; position: absolute;
    }
   .flexes h4::after{
height:15px;
width: 15px;
top: calc(100% - 7px); 
background-color:var(--green);
border-radius: 100%;
   }
   .flexes::before{
width: 1px; height: 100%;
top: 0; left: 19px;
background-color: #00000011;
   }

    .flexes p{margin-block-start: 0px; padding:15px 15px;
    background-color: var(--color-w);
    height: fit-content; 
    border-radius: 0px 18px 18px 18px;
    }

/*.................................................responsive...........................*/


@media only screen and (max-width: 1440px) {

    header .logo {
        max-width: 160px; }

        header.sticky .logo {
            max-width: 160px; }

    .banner {
        min-height: unset;
    }

    .bnr-text .itext {
        font-size: 2vw;
    }

    .bnr-text h1 {
        font-size: 3vw;
    }

    .bnr-text p {
        font-size: 16px;
    }

    .bnrimg img {
        max-width: 350px;
    }

    .bnrimg::before {
        right: -35px;
        width: calc(100% + 100px);
        padding-top: calc(100% + 100px);
    }

    .line1 {
        font-size: 2vw;
        text-wrap: nowrap;
    }

    .line2 {
        font-size: 3vw;
    }
    .buttons{font-size: 16px;}
 
    .serbnr .bnr-text h1 {
        font-size: 4vw;
        line-height: 1.1;
    }
    .groupImage-main {
        width: 100%;
        position: relative;
    }
    .serbnr.abtpage .bnrimg::before {
        bottom:-40px;
        width: 100% !important;
        padding-top: 100% !important;
    }
    .row.multiple.w-68{
        max-width: 75%;
    }
    .vision img {
        width: 60%;
        max-width: 100%;
    }
    .vision {
        padding: 40px 0px;
    }
    .vision .bold-text {
        font-size: 3vw;
        margin-block: 0px;
    }

    .corosel-bnr {
        margin-top: 60px;
    }
}
@media screen and (max-width: 1200px) {

   /* header */
   nav{
    background-color:#338c26;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.10);
position: fixed;
left:-170px;
width:150px;
height: 100%;
top: 0;
transition:all 500ms cubic-bezier(0.075, 0.82, 0.165, 1) ;
}

   .sunflower-page nav{background-color:var(--sarvottam-sunflower-base);}
   .rice-page nav{background-color:var(--sarvottam-rice-pink-base);}
   .atta-page nav{background-color:var(--sarvottam-atta-base);}
   .soybean-page nav{background-color:var(--sarvottam-soybean-base);}
   .besan-page nav{background-color:var(--sarvottam-besan-base);}

nav .main-nav{
    display: block;
    padding: 0;
    width:100%;
    text-align: left;
    margin: 66px 0px;
}
nav.active{left:0px;}

.main-nav .mainmenu .links,  .submenu{ display: block; padding: 10px 15px; border-radius: 0px;}
.main-nav .mainmenu:hover{ transition: var(--trans);
background-color: var(--l-gray);
}
.mainmenu{ width: 100%;
    border-radius: 0px;
    border-bottom: 1px solid hwb(0 100% 0% / 0.08); font-size: 14px;}
    .mainmenu:nth-child(1){   border-top: 1px solid hwb(0 100% 0% / 0.08); font-size: 14px;}
.submenubox {
position: fixed;
width: calc(100% - 150px);
max-width: 200px;
padding:0px 0px;
background-color: var(--l-gray);
left: 150px;
margin: unset;
letter-spacing: unset;
height: 100%;
top: 0;
overflow: auto;
visibility: hidden;
border-radius: 0px;
transition: var(--trans);
margin-top: 0px;
opacity: 0;
}


.submenubox.submenubox2 {
    text-align: center;
    padding: 15px 15px;
    padding-top: 66px;

    width: 300px;
    left: inherit;
    margin-left: unset;
    right: inherit;
    left: 150px;
    max-width: 200px;
    border-radius: 0px;
    margin-top: unset;
    opacity: 0;
}


.sub-menu-heading::after, .sub-menu-heading::before {
   height: 30px;
    width: 30px;
    transform: scale(0.45);
}
.sub-menu-heading::before {
    transform: scale(0.45) rotate(180deg);
}

.sub-menu-heading{
    justify-content: start;
}

.boldLink img{
    max-width: 40px;
    margin-right: 5px;
}
.tumbanils h4 b{
    font-size: 18px;
    color: var(--base-color-1);
}
.tumbanils h4{font-size: 12px;}
.tumbanils{    padding: 7px 13px; margin: 2px 0px; border-radius: 5px;}
.sub-menu-heading span {
    padding: 8px 13px;
}
.sub-menu-heading.mt-20px{
 margin-top: 10px;
}
.sub-menu-heading {
    max-width: 200px;
    justify-content: center;
    margin-top: 66px;
    font-size: 16px; margin-bottom: 10px;}
.submenu:hover{border-radius: 0px;}

.submenu:hover .submenubox{margin-top: 0px;}
.submenu .submenubox .container {
    width: calc(100% - 0px);
}
.submenucontent{
    padding-left: 15px;
  flex-direction: column;
  justify-content: start;
  height: auto !important;
    margin: 0px 0px;
    gap: 0px;
    overflow: auto;
}
.submenubox li .submenulink {
    width: fit-content;
    font-size: 12px;
    font-weight: 500;
    padding: 3px 5px;
    padding-left: 0px;
    border-radius: 0px 15px 15px 0px;
    padding-right: 10px;
    display: flex;
    align-items: baseline;
}
header {
    padding: 5px 0px;
}
.submenubox li{width: fit-content;}
.icon-mob{display:unset;}
.icon-serv{display: none;}

.main-nav .mainmenu .links, .submenu {
    margin: 0px 0px;
}
.submenubox li h4 {
    margin-top:10px;
    margin-bottom: 5px;
}
.submenu:hover .submenubox {
    visibility: visible;
}
.main-nav .mainmenu .links, .submenu  {
   background-color: transparent;
}
header{backdrop-filter:unset !important;}
header .container{width: calc(100% - 30px);}

    header .logo {
        max-width: 176px;
        position: relative;
        z-index: 2;
    }
    header.sticky .logo {
        max-width: 150px;
    }
    .mobihead{     display: flex;
        justify-content: space-between;
        width: 100%;
        align-items: center;}
    .menubutton{ display: inline-block;}
    .main-nav .mainmenu .links, .submenu {
        font-size: 12px !important;
        padding: 15px 10px;
        font-weight: 500;
        margin: 0px 0px;
    }
    .submenu:hover .submenubox {

        margin-top: 0px;
    }
    
}

@media only screen and (max-width: 992px) {
    .row-5 .flex{   max-width:100%}

    .serbnr .bnr-text .itext {
        font-size: 3vw;
        font-weight: 600;
    }
    .banner .contactbox h2{
        font-size:18px;
        margin-bottom: 8px;
    }
    .banner .contactbox p {
        font-size: 14px;
        line-height: 1.2;
    }
    .contactbox {
        margin-top: 30px;
        padding: 25px;
        border-radius: 15px;
    }

    .bottomline {
        margin: 10px 0px;
    }

    .op2.banner {
        padding-top: 21px;
    }
    .serbnr .bnr-text p {
        font-size: 14px;
    }
    .serbnr .bnr-text h1 {
        font-size: 3.2vw;
        line-height: 1.1;
    }
    .buttons{font-size: 14px;}
 


    header .logo {
        max-width: 120px;
    }
    .bnr-text p {
        font-size: 14px;
    }
    header.sticky .logo {
        max-width: 120px;
        transform: translateY(5px);
    }

    .bnrimg img {
        max-width:200px;
    }

    .bnrimg::before {
        right: -35px;
        width: calc(100% + 100px);
        padding-top: calc(100% + 100px);
    }

    .corosel-bnr {
        margin-top: 50px;
    }

    .mobile {
        width: 147px;
        height: 225px;
        border-radius: 14px;
        border: 5px solid var(--dark-gray);
    }
    .social {
        padding: 6px 0px;
    }
    .social a {
        margin-right: 2px;
        height: 35px;
        width: 35px;
        font-size: 15px;
    }

    .whatsapp a {
        padding: 15px 0px;
        border-radius: 0px 0px 9px 9px;
        font-size:20px;
    }
    .whatsapp::before {
        top: -13px;
        margin-left: -18px;
        height: 40px;
        width: 40px;
        border-radius: 10px;
    }

    .row.aic.feedback-res{ align-items: flex-end;}
    .feedback-res .circle-img img {
        max-width: 95%;
    }
    .got-here {
        padding: 40px 0px;
    }
    .got-here .heading2 {
        font-size: 27px;
        margin-block:0px;
    }
    .got-here .heading2 span {
        font-size: 30px;
    }
    .got-here img {
        width: 100%;
        border-radius: 10px;
    }
    .got-here p {
        font-size: 2.1vw;
        line-height: 1.4;
    }
    .got-here .row {
        margin-top: 25px;
    }
    .dotline::after, .dotlineleft::after {
        width: 0%;
        height: calc(50% + 21px);
        left: calc(0% + 0px);
        top: 50%;
        border-top: 0px dotted var(--color-d);
        border-left: 1px dotted var(--color-d);
        border-right: 0px dotted var(--color-d);
        border-top-right-radius: 0px;
    }
    .dotline::before, .dotlineleft::before {
        top: calc(100% + 15px);
        left: calc(0% + -5px);
        border: 1px solid var(--color-d);
        border-left: none;
        border-top: none;
        height: 10px;
        width: 10px
    }
    .dotlineleft::after{ left: calc(100% + 0px);}
    .dotlineleft::before{ left: calc(100% + -5px);}

    .quicklinks.responsive {
        padding: 30px 0px;
    }
    .quicklinks.responsive .bold-text{
        font-size: 2.5vw;
    }
    #owl-carousel-2.abtcarosel .owl-nav {
        width: calc(100% + 0px);
        left: -0px;
        top:unset;
        margin-top: -30px;
        bottom: unset;
        justify-content:space-around;
    }
    .award h2 {
        font-size: 27px;
        color: var(--red);
        line-height: 1.3;
    }
    .heading {
        font-size: 27px;
    }
    p {
        font-size: 14px;
    }
    .small-text {
        font-size: 18px;
    }
    .flexes-wraper{
        border-left: 1px solid #00000011;
        border-bottom: none;
        flex-direction: column;
    }
    .flexes{
        margin:0px;
        padding-left: 20px;
        border-radius: 5px;
        flex-direction: column;
        position: relative;
        margin-bottom:15px;
    }
    .flexes:nth-last-child(1){  margin-bottom:0px;}
    .flexes h4{
        width: fit-content;
        border-radius:18px 18px 0px 0px;
        writing-mode:unset;
        padding: 10px 15px;
        margin-block: 0px;
        font-size: 16px;
margin-bottom:0px;
    }
    .flexes::before, .flexes h4::after{
   content: ''; position: absolute;
    }
   .flexes h4::after{
top: 30px; 
left: -8px;
   }
   .flexes::before{
width:20px; height:1px;
top:37px; left:0px;
   }
.flexes p{margin-block-start: 0px; padding:15px 15px;
    background-color: var(--color-w);
    border-radius: 0px 18px 18px 18px;
    }


    .vertical.stepbox::before {
        width: 1px;
        height:100%;
        top: 0px;
        left: 40px;
    }
    .vertical.stepbox .flex{margin-bottom: 20px;}
    
    .vertical.stepbox .flex:nth-last-child(1){
        margin-bottom: 0px;
    }

    .vertical.stepbox .flex{flex-direction: row; align-items: center;}
    
    .vertical.stepbox .stp-num-con{ max-width: 50px;  margin-bottom: 0px; margin-right: 40px;   }
    .vertical.stepbox .stp-cont {
        padding-left: 0px;
    }

    .vertical.stepbox .stp-num::before {
        right:15px;
        margin-right: -5px;
        top:50%;
       
    }
    .vertical.stepbox .stp-num::after{
      height: 1px;
      width: 30px;
        right:unset;
        left:50%;
        border-bottom:1px solid var(--color-d);
        border-left: unset;
        top: 25px;
    }

    .vertical.stepbox .stp-cont p, .vertical.stepbox .stp-cont h3{ 
        text-align-last: unset; text-align: left;}
}

@media only screen and (max-width: 768px) {

    .element img {
        width: 120px;
        min-width: 120px;
    }
    .element div {
        width: 60px;
        min-width: 60px;
        height: 120px;
    ;
        justify-content: start;
        align-items: center;
        overflow: hidden;
    }

    .package img {
        width: 90%;
        max-width: 200px;
    }
    .backflower-main svg {
        width:100%;
    }
    .package span {
        padding: 8px 20px;
        font-size:15px;
    }
    .careers .flex {
        padding: 10px 0px;
    }
    .clients{padding-top:100px;}
    .client-list {
        padding: 40px 0px;
    }
    .contactbox {
        margin-top: 0px;
    }
    .contactbox h1 {
        font-size: 20px;
    }
    .contact-info h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

.careers .flex h2 {
    font-size: 22px;
    margin-bottom: 5px;
}
.careers .flex p {
    font-size: 16px;
}
/* form services*/
.groupImage-main .contactform .main-inputs input, 
.groupImage-main .contactform .main-inputs select, 
.groupImage-main .contactform .main-inputs textarea {
  
    font-weight: 400;
    padding: 6px 6px;
    margin-bottom: 2px;
    font-size: 14px;
    border-radius: 3px;
}
.groupImage-main .contactform .main-inputs .sendarrow {
    width: 35px;
    height: 35px;
    border-radius:3px;
    font-size: 18px;
    margin-top: -21px;
}
    .ser-type h3 {
        font-size: 20px;
    }
    .ser-type i{
        margin-right: 10px;
    }
    .optherpage .homeabout {
        padding: 50px 0px;
    }
    .banner .container{ flex-wrap: wrap-reverse;}

    .abtgxi {
        font-size: 14px;
        padding-top: 30px;
    }


        .aagaye{display: flex;
            position: absolute;
            justify-content: center;
            flex-wrap: wrap;
            left: 0;
            margin: 0px 40px;
            z-index: 2;
            transform-origin: center;
            transform: skewX(17deg) rotatez(-9deg);
            margin-top: -182px;
        }
        .aagaye .bold{ font-size:3.9vw; margin: 0px;}
        .btn-whatsapp {
            height: 50px;
            width: 50px;
            bottom: 15px;
            z-index: 20;
            right: 15px;
            line-height: 48px;
            font-size: 24px;}
        .banner {
           min-height: 100dvh;
           height: auto;
            padding-top: inherit;
            padding: 30px 0px;
            background-color: var(--l-gray);
        }
        .bnr-text .itext {
            font-size: 16px;
           margin: 10px 0px;
        }
        .bnr-text h1 {
            font-size: 27px;
            margin-bottom: 10px;
            margin-top: 10px;
        }
        .bnrimg::before {
            right: 0px;
            width: calc(100% + 0px);
        }
       /* carosel */
        .carosel{
        background-color: var(--color-w);
        padding: 20px 0px;}

        .carosel .owl-item div{ padding: 0px 8px;}

        /* common */
        .heading {
            font-size: 27px;
           
        }
        p {
            font-size: 14px;
            line-height: 1.6;
        }

  /* homeAbout */
        .small-text {
            font-size: 16px;
            display: block;
            margin-block-start: 10px;
        }
        .aboutimg-2 img {
            width:160px;
        }
        /* quicklinks */

        .quicklinks {
            padding: 40px 0px;
        }
        .wraping{flex-wrap: wrap-reverse;}
        .circle{width: 230px;
            height:230px;
            margin: auto;
        }
        .circle img {
            width: 65%;
        }
        .quicklink-img{ width: 100%;}
        .qlink h4 {
            font-size: 16px;
        }
        .qlink h4 span{
            font-weight: 700;
        }
        .qlink a {
            margin-top: 10px;
        }
        .qlink::before {
            height: calc(100% - 70px);
            top: 33px;
            left: 0;
        }
        .qlink::after {
            top: 27px;
            left: -6px;
        }
        .qlink {
            margin: 5px 0px;
            padding: 15px 15px 15px 21px;
            backdrop-filter: blur(10px);
            border-radius: 12px;
            z-index: 2;
        }
        .quicklinks .d-column{ margin-top: -60px;}

        /* qnav */

        .qnav {
            padding: 20px 0px;
        }
        .b-icon {
            height: 60px;
            min-width: 60px;
            font-size: 30px;
        }
        .qnavtxt span {
            font-size: 14px;
        }
        .qnavtxt h1 {
            font-size: 27px;
        }
        .qnavtxt {
            margin-left: 10px;
        }

        /* feedback */
        .row.aic.feedback-res{flex-wrap: wrap-reverse;}
        
        .feedback-res .circle-img img {
            max-width: 40%;
        }
        .feedback-img .circle {
            width: 50%;
            height: unset;
            padding-top: 50%;
        
        }
        .feedback-img .circle {
            margin-left: auto;
            margin-right: auto;
        }
        .feedback-footer h3 {
            font-size: 20px;
        }
        .feedback-footer span {
            font-size: 16px;
        }
        /*.................................................scroll...........................*/
.wpb_animate_when_almost_visible {
    opacity: 0;
    transform-origin: bottom;
    transition: all 1000ms cubic-bezier(0, 1.47, .99, 1.5);
}

.tran-left {
    transform: translate(0px, -15px);
  
   
}

.tran-right {
    transform: translate(0px, 15px);
}

.wpb_start_animation {
    opacity: 1;
    transform: translate(0px, 0px);
}

 /* -------------- footer ----------- */
.mob{ width: 100%;}
.mobile{margin: auto;}

footer .flex{ flex-wrap: wrap-reverse;}
footer .flex .mobile {
margin-block: 30px 5px ;
}
footer {
    padding: 17px 0px;
    font-weight: 500;
    padding-bottom: 0px;
}

.social {
    justify-content: center;
    padding-bottom: 15px;
}

 /* -------------- about page ----------- */
 .qnavtxt span {
    font-size: 14px;
}
.serbnr.abtpage .bnrimg::before {
    bottom: -20px;
}
.serbnr .bnr-text h1 {
    font-size: 6vw;
    margin-block-start: 4px;
}
.serbnr.abtpage .bnr-text{
    padding-top: 14px;
}
.op2.banner{
    padding-bottom: 50px;
}
.records-box h2 {
    font-size: 20px;
}
.records-box p {
    font-size: 10px;
}
.records-box {
    width: 90%;
    border-radius: 10px;
    padding: 10px 10px;
}
.records-box div{
    padding: 0px 10px;
}
.carosel.op2 {
    padding-top: 50px;
}
.row.multiple.w-68{
    max-width: 100%;
}
.steps{ padding: 40px 0px;}
.stp-cont {
    padding-left: 0px;
}
.stp-num::after {
    right: 20px;
}
.stp-num::before {
    right: 11px;
}
.stepbox .flex.aic{align-items: flex-start;}
.form {
    padding: 40px 0px;
}
.form h4 {
    font-size: 16px;
}
.main-inputs input, .main-inputs select, .main-inputs textarea {
    font-size: 12px;
    margin-bottom: 10px;
}
form p {
    font-size:16px;
    margin-block-start: 5px;
    margin-block-end: 5px;
}
form .col.flex{
    flex-wrap: wrap;
}
form .col.flex label{ font-size:12px;}
.position-r {
    position: relative;
    padding-left: 30px;
    margin-left: 0px;
    margin-right: 15px;
    margin-bottom: 15px;
    margin-top: 10px;
}
form {
    padding: 15px 0px 0px 0px;
}
.call-to-action {
    padding: 40px 0px;
}


header.sticky .logo {
    transform: translateY(2px);
}
}


@media (max-width: 575.98px) {
    .text-box{
        padding: 20px;
    }

    .table-grid div {
        padding: 5px 6px;
        font-size: 12px;

      }
      .table-grid div:nth-child(-n+3){
        font-size: 14px;
      }

    .quickbuy span{
        width: 100%;
    }
    .quickbuy a {
        padding: 5px 5px;
    }
    .quickbuy a img{
        max-width: 70px;
    }
    .package img {
        width: 90%;
        max-width: 200px;
    }
    .backflower-main svg {
        width:85%;
    }
    .package span {
   margin-bottom: 50px;
    }
    .products-details .mb-60px{ margin-bottom: 0px;}

    .bold-text {
        font-size: 4vw;
    }
.got-here .row:nth-child(2){
    margin-top: 15px;
}
.got-here .row {
    margin-top: 60px;
}
.got-here .row p{text-align: center; font-size: 3.5vw; margin-block-start: 5px;}
.got-here .row h3{text-align: center; font-size: 3.8vw; margin-block-start: 10px; }


.dotline::after, .dotlineleft::after {
    height: calc(0% + 21px);
    left: calc(50% + 0px);
    top: 100%;
}
.dotline::before{ left: calc(50% + -5px);}
.dotlineleft::before {
    left: calc(50% + -5px);
}

.quicklinks.responsive .bold-text{
    font-size: 3.5vw;
}
.row.multiple.w-68{
    max-width:100%;
}
.w-68{max-width: 100%;}
.bolds {
    font-weight: 600;
    font-size: 16px;
}
.steps h2 {
    margin-block-end: 10px;
}
.vision {
    padding: 40px 0px;
}
.vision .bold-text {
    font-size: 3.5vw;
}
.vision img {
    width: 80%;
    max-width: 100%;
}

.award img {
    width: 100% !important;
}
.award h2 {
    padding: 0px 30px;
    font-size: 20px;
    text-align: center;
    margin-top: 20px;
}
.award p {
    font-size: 14px;
    padding: 0px 30px;
}
.serbnr .bnr-text .itext {
    font-size: 4vw;
    font-weight: 600;
}
.stp-cont h3 {
    font-size: 16px;
}
.ser-type h3 {
    font-size: 18px;
}
.ser-list .heading2 {
    font-size: 27px;
    margin-bottom:0px;
    text-align: left;
}
.ser-type-list h3 {
    font-size: 20px;
    margin-block-start: 5px;
}
}