/* index page css */
@charset "utf-8";

/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Kumbh+Sans:wght@100..900&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6, ul, .ul, ol, .ol, li, p, .p {
    padding: 0;
    margin: 0;
}

.dropdown-toggle::after {
    display: none;
}

@font-face {
    font-family: 'ywsbs-icon';
    src: url('../fonts/ywsbs-icon.eot');
    src: url('../fonts/ywsbs-icon.eot#iefix') format('embedded-opentype'),
    url('../fonts/ywsbs-icon.ttf') format('truetype'),
    url('../fonts/ywsbs-icon.woff') format('woff'),
    url('../fonts/ywsbs-icon.svg#ywsbs-icon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

:root {
    /* --theme-color: #f41e1e; */
    --theme-color: #e54121;
    --text-color-primary: #F5F6F6;
    --theme-color-ultra: #ffe0da;
    --theme-color-secondary: #e54121;
    --text-color-dark: #1c1c1c;
    --heading-font:"Kanit", sans-serif;
    --headingBackground:#f41e1e;
    --theme-color-midgrey: #f7f7f7;
    --theme-color-black: #000;
    --text-color-white: #fff;
    --font48:48px;
    --font36:36px;
    --font24:24px;
    --font18:18px;
    --font16:16px;
}

.text-theme {
    color: var(--theme-color) !important;
}

.bg-theme {
    background: var(--theme-color-secondary) !important;
}


.bg-white {
    background: #fff !important;
}



html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    color: var(--text-color-dark);
    background: #fff;
    font-family: "Kumbh Sans", sans-serif;
    padding: 0;
    margin: 0;
}

a{text-decoration: none!important}



input:focus , select:focus{
    box-shadow: none !important;outline: none;
}

button:focus {
    outline: none
}


/* @media only screen and (min-width:1300px){
  .container {
    max-width: 1250px;
    margin: 0 auto;    padding: 0;
}  
} */


.commonbtn {
    position: relative;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: none;
    box-shadow: none;
    text-decoration: none;
    z-index: 2;
    vertical-align: middle;
    display: inline-block;
    border: none;
    text-align: center;
    background-color: var(--theme-color);
    color: #fff;
    font-family: var(--heading-font);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    padding: 15px 25px;
    border-radius: 30px;
    text-transform: uppercase;
}
.commonbtn:before{
    display: none;
    position: absolute;
    content: "";
    left: 3px;
    top: 0;
    width: 97%;
    height: 100%;
    background: var(--theme-color);
    border: none;
    z-index: -1;
    transition: 0.4s;
    border-radius: 10px;
    transform: skewX(-10deg);
}
.commonbtn:hover{
    color: var(--text-color-white);
    background: var(--theme-color-black);
    /* border: 1px solid var(--theme-color-secondary); */
    
    }
.commonbtn:hover:before{
    display: none;
    background: var(--text-color-dark);
}

h1,h2,h3,h4,h5,h6{font-family: var(--heading-font);}

/*========================Header======================*/
.headersec {
    background:var(--theme-color);
    padding: 8px 12px;
    -webkit-transition: background-color .3s, opacity .3s;
    -o-transition: background-color .3s, opacity .3s;
    transition: background-color .3s, opacity .3s;
    -webkit-box-shadow: 1px 1px 10px rgba(0,0,0,0.15);
    box-shadow: 1px 1px 10px rgba(0,0,0,0.15);
}
.headersec .col-md-1{ padding-right: 5px;}
.headersec .col-md-7{ padding-right: 5px;padding-left: 5px;}
.headersec .col-md-3{ padding-left: 5px;}

.logo img{
    width: auto;
    height: 100%;
    max-height:50px;
    -webkit-transition: all 0.5s ease-out;
    vertical-align: middle;
    filter: brightness(0) invert(1);
}
.logo.diffLogo img {
    position: relative;
}
.cmenu {
    height: auto;
    font-size: 13px;
    position: relative;
    font-weight: normal;
    -webkit-transition: all 0.5s ease-out;
    text-align: right;
    padding: 8px 0;
    background-color: rgba(255,255,255, .18);
    border-radius: 30px;
}
.cmenu ul {
    margin: 0;
    padding: 0;

}
.cmenu ul li {
    list-style: none;
    display: inline-block;
   
}

.cmenu ul li a {
    color: var(--text-color-white);
    padding: 5px 0;
    display: block;
    margin: 0 13px;
    font-weight: 700;
    border-radius: 0px;
    text-transform: uppercase;
    position: relative;
}
.cmenu ul li a:after{
    content: "";
    background-color: var(--text-color-white);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
    height: 3px;
    display: none;
}
.cmenu ul.diffNav li a {
    color: #fff;
}
.cmenu ul.diffNav li a:after {
    background-color: #fff;
}
.cmenu ul li:hover a:after{
    opacity: 1;
}
.cmenu ul li a.active {
    color: var(--theme-color);
}
.rmenubar,.clsebtn , .mysidenav{
    display: none;
}
.headersec.sticky {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: var(--theme-color);
    transition: all 0.3s ease-out;
    left: 0;
    right: 0;
    width: 100%;
    padding: 4px 0;

}
.carticon-mb{display: none}
.cart-icon {
    display: inline-block
}

.cart-icon strong {
    border-radius: 0;
    font-weight: bold;
    margin: .3em 0;
    border: 2px solid var(--text-color-white);
    color: var(--text-color-white);
    position: relative;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    width: 28px;
    height: 28px;
    font-size: 13px;
    line-height: 25px;
}
.cart-icon:hover strong {
    background-color: var(--text-color-black);
    color: #fff
}

.cart-icon strong:after,.cart-icon:hover strong:after {
    height: 10px
}

.cart-icon strong:after {
    -webkit-transition: height .1s ease-out;
    -o-transition: height .1s ease-out;
    transition: height .1s ease-out;
    bottom: 100%;
    margin-bottom: 0;
    margin-left: -7px;
    height: 8px;
    width: 14px;
    left: 50%;
    content: ' ';
    position: absolute;
    pointer-events: none;
    border: 2px solid var(--text-color-white);
    border-top-left-radius: 99px;
    border-top-right-radius: 99px;
    border-bottom: 0;
}
.cmenu ul.diffNav .cart-icon strong {
    border: 2px solid #fff;
    color: #fff;
}
.cmenu ul.diffNav .cart-icon strong:after {
    border: 2px solid #fff;
}
.cmenu ul.diffNav .cart-icon:hover strong {
    background-color: #fff;
    color: var(--text-color-black);
}
/*========================Banner======================*/
.bnrsec{position: relative;}
.bnrsec:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: block;
    width: 100%;
    background: url(../images/banner-bottom.png) no-repeat;
    background-size: cover;
    height: 72px;
    z-index: 1;
    bottom: 0;
}
.bnrsec .bnrimg {
    width: 100%;
    height: auto;
    max-height: 700px;
    overflow: hidden;
}
.bnrsec .bnrimg img{width: 100%;height: 100%;object-fit: cover}
.bnrsec .bnrcontent {
    position: absolute;
    left: 9%;
    top: 50%;
    transform: translateY(-50%);
}
.bnrsec .bnrcontent h1 {
    text-transform: capitalize;
    color: #fff;
    font-size: 75px;
    line-height: 80px;
    text-shadow: 0 4px 10px rgba(0,0,0,.7);
    font-weight: 700;
    letter-spacing: 0.02em;
}
.bnrsec .bnrcontent h1 span.sub-text{color: transparent;font-size: 75px;
    -webkit-text-stroke: 2px #fff;}
.bnrcontent h1 span {
    font-size: 30px;
    color: #fff;
}
/*======================Icon Box======================*/
.icontxtsec .icontxtbx img{max-height: 100px}
.icontxtsec .icontxtbx p{margin-top:5px;font-weight: 600;font-size: 16px}
/*======================Feature Box======================*/
.featuresec {
    padding: 70px 0px 90px;
    background: #ffe0da;
}
.featuresec h3 {
    color: #555;
    font-weight: 700;
    position: relative;
    font-size: 31px;
    letter-spacing: 0.1px;
    margin-bottom: 60px;
}
.featuresec h3 span {
    padding: 8px 10px;
    position: relative;
    z-index: 2;
    color: var(--text-color-dark);
    font-family: var(--heading-font);
    text-transform: capitalize;
}
.featuresec h3:before{
    content: "";
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    opacity: .1;
    background-color:rgb(85, 85, 85);
    z-index: 1;
    display: none;
}

.productbox .productimg{
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    padding: 30px 15px;
    background-color: #e54121;
    clip-path: polygon(0 0, 100% 0%, 98% 100%, 2% 100%);

}
.productcontent{
    background-color: var(--theme-color-midgrey);
    padding: 0em 0em 2em;
    text-align: left;
    border-radius: 0 0 15px 15px;
    clip-path: polygon(2% 0, 98% 0, 100% 100%, 0 100%);
}
.productbox .productimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 250px;
    margin-bottom: 0;
    margin: 0px auto;
}
.quickbtn {
    background-color: var(--text-color-black);
    color: #fff;
    text-align: center;
    padding: 5px 10px;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -50px;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s ease all;
    text-transform: uppercase;
    font-weight:600;
    font-size: 15px;
}
.quickbtn:hover{color: #fff}
.productimg .wishicon {
    font-size: 18px;
    position: absolute;
    top: -30px;
    right: 5px;
    color: #c0c0c0;
    border-radius: 50%;
    border: 1px solid #c0c0c0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease all;
}
.productbox .productimg:hover .wishicon{
    opacity: 1;
    visibility: visible;
    top: 5px;
}
/*.productbox .productimg:hover{box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2)}*/
.productimg .wishicon:hover{background: #b20000;border-color: #b20000;color: #fff}
.productbox .productimg:hover .quickbtn{
    opacity: 1;
    visibility: visible;
    bottom: 0px;
}

.featuresec p{font-size: 15px;margin-top: 8px}
.featuresec h6{font-weight: 600;font-size: 16px}

/*======================Footer======================*/
.ftsec {
    background: var(--theme-color);
    padding: 40px 0 40px;
    clear: both;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.ftsec h3 {
    color: #fff;
    font-weight: 600;
    position: relative;
    font-display: var(--heading-font);
}
.ftsec h4:after {
    content: "";
    background-color: var(--theme-color);;
    height: 3px;
    max-width: 30px;
    position: absolute;
    left: 0;
    bottom: -18px;
    width: 30px;
}
.ftsec p {
    font-size: 15px;
    line-height: 28px;
    color: #fff;
}
.ftsec p strong{font-size: 16px}
.ftsec ul{margin: 0;padding: 0}
.ftsec ul li{font-size: 16px;list-style: none;padding: 6px 0}
.fttxt{text-align: justify;}
.ftsec a {
    text-decoration: none;
    color: #fff;
}
.ftsec input[type=email] {
    border-color: rgb(145 139 139);
    color: #000000 !important;
    border-radius: 4px;
    padding: 7px 12px;
    font-size: 15px;
}
.submitbtn {
    box-shadow: inset 0 0 0 100px rgba(0,0,0,0.2);
    font-size: 15px;
    border-radius: 5px;
    color: #fff;
    text-align: center;
    width: 100%;
    padding: 8px 10px;
    border: 0;
    outline: 0;
    background: #000;
    text-transform: uppercase;
    font-weight: 600;
}
.ftbtm {
    background-color: #000;
    text-align: center;
    padding: 20px 10px;
}
.ftbtm .payment-icon {
    display: inline-block;
    opacity: .6;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
    border-radius: 5px;
    background-color: rgba(255,255,255,0.1);
    padding-bottom: 0;
    padding: 3px 5px 5px;
    margin: 3px 3px 0;

}
.footer-card-icon img{width: auto;max-height: 40px;margin:0 auto}
.ftbtm .payment-icon svg {
    vertical-align: middle;
    height: 20px;
    width: auto !important;
    fill: #FFF;
}
.productbox {
    text-align: center;
    border-radius: 15px 15px 0 0;
    background-size: cover;
    overflow: hidden;
    margin: 0;
}
.featuresec p {
    font-size: 22px;
    padding: 0 15px;
    margin-top: 11px;
    margin-bottom: 10px;
    font-weight: 500;
}










@media only screen and (max-width:820px){
/*========================Header======================*/
.headersec.sticky{position: relative;}
.carticon-mb {
    display: block;
    position: absolute;
    top: 16px;
    right: 8px;
}
.cart-icon strong{    width: 22px;
    height: 22px;    line-height: 19px;}
.headersec{padding: 10px 0px}
.bnrsec:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #0c0c0c7a;
}





.cmenu ul li:after{display: none}
.rmenubar {
    position: absolute;
    left: 8px;
    top: 14px;
    z-index: 99;
    display: block;
    font-size: 22px;
    background: transparent;
    padding:0px;
    border-radius: 0;
    -webkit-transition: all 0.5s ease-out;
}
.clsebtn svg{width: 28px;height: 28px; position: absolute;
    right: 20px;
    top: 15px;z-index: 9999;color: #000;opacity: 0;transition: 0.3s ease all;visibility: hidden; animation-name: slowup;animation-duration: 0.3s;}
    .headersec.sticky .rmenubar{top:12px;}
   
/*    .clsebtn i,.clsebtn svg {
    color: #000;
    position: absolute;
    right: 20px;
    top: 14px;
    z-index: 9999;
    display: none;
    font-size: 22px;
    border: 2px solid #000;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 27px;
}*/
    .cmenu ul.navopen .clsebtn i,.cmenu ul.navopen .clsebtn{
       display: block; 
    }
.cmenu ul.navopen .clsebtn svg {top: 14px;opacity: 1;visibility: visible;}
    .rmenubar a {
        color: var(--text-color-white) !important;
    }
    .headersec.sticky .rmenubar a{color: #000 !important}
    .headersec.sticky .commonbtn{    margin-right: 25px;}
    .rmenubar a:hover, .rmenubar a:focus {
        color: #fff !important;
    }

    .cmenu {
        padding: 18px 20px;
        background: transparent;
    }
    /*.cmenu ul {
        position: fixed;
        top: 0px;
        left: -100vw;
        width: 100vw;
        height: 100%;
        z-index: 999;
        background: #ffffff;
        overflow-y: scroll;
        font-size: 12px;
        transition: 0.5s ease all;
        opacity: 0.95;
    }
*/
    .cmenu ul {
        position: fixed;
        top: 0px;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 999;
        background: #ffffff;
        overflow-y: scroll;
        font-size: 12px;
        /*transition: 0.5s ease all;*/
        opacity: 0;
        visibility: hidden;
    }

    .cmenu ul li {
        display: block;
        padding: 0;
        font-weight: 600;
        font-size: 24px;
        margin-bottom: 5px;
    }
 

    ul.navopen {
         opacity: 0.95;
        visibility: visible;
            display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
    }
   ul.navopen li{ animation-name: slowdown;animation-duration: 0.3s;}
    .cmenu ul li ul {
        margin: 0;
        padding: 0;
        position: unset;
        z-index: 999;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        -webkit-transition: all 0.5s ease-out;
    }

    .cmenu ul li a {
        color: #666666d9 !important;
        text-align: left;
        margin-left: 0;
    }

    .cmenu ul li ul a {
        color: var(--text-color-dark);
    }

}

@media only screen and (max-width:767px){
.logo img {
    max-height: 41px;
}
.headersec .commonbtn{    padding: 8px 7px;    font-size: 13px;}
.bnrsec .bnrcontent h1,.bnrcontent h1 span{
       font-size: 16px; 
}
.commonbtn {
    font-size: 15px;
    padding: 10px 20px;
}
.bnrsec .bnrcontent {transform: unset;top: 14%;}
.bnrsec .bnrcontent h1{    font-size: 30px;
    line-height: 35px;}
.bnrsec .bnrcontent h1 span.sub-text {  font-size: 30px;}
.icontxtsec.pt-5.pb-3{padding-top:30px !important;padding-bottom:10px !important;}
.icontxtsec .icontxtbx p {    margin-top: 5px !important;    font-size: 16px;    margin-bottom: 10px;}
.featuresec h3 {font-size: 1.5rem}
.productimg .wishicon{opacity: 1;visibility: visible;top: 5px}
.productbox .productimg{    padding: 18px 15px;}
.ftsec h4{    margin: 36px 0;}
.ftsec .col-md-6:first-child h4{margin-top: 10px}
.cmenu ul li:nth-child(6){display: none}
}
@media only screen and (max-width:390px){
.headersec .commonbtn{    padding: 8px 7px;    font-size: 10px;}
}
@media only screen and (max-width:360px){
.logo img{    max-height: 38px;}
}
@media (min-width:768px) and (max-width:1024px){

.bnrsec .bnrcontent h1,.bnrcontent h1 span,.bnrcontent h1 span.sub-text{ 
    font-size:30px;
    line-height: 38px;}

.productimg .wishicon{opacity: 1;visibility: visible;top: 5px}
.ftsec .col-md-6:nth-child(3) h4,.ftsec .col-md-6:nth-child(4) h4{margin-top: 32px!important}
.logo img {max-height: 42px;}
}

@keyframes slowup {
   0%   {opacity: 0;top: 25px}
   10%  {opacity: 0.1;top: 24px}
   205%  {opacity: 0.2;top: 23px}
  30%  {opacity: 0.3;top: 22px}
  40%  {opacity: 0.4;top: 21px}
  50%  {opacity: 0.5;top: 20px}
  60%  {opacity: 0.6;top: 19px}
  70%  {opacity: 0.7;top: 18px}
  80%  {opacity: 0.8;top: 17px}
  90%  {opacity: 0.9;top: 16px}
  100% {opacity: 1;top: 15px}
}

@keyframes slowdown {
   0%   {opacity: 0;margin-top: -10px}
   10%  {opacity: 0.1;margin-top: -9px}
   205%  {opacity: 0.2;margin-top: -8px}
  30%  {opacity: 0.3;margin-top: -7px}
  40%  {opacity: 0.4;margin-top: -6px}
  50%  {opacity: 0.5;margin-top: -5px}
  60%  {opacity: 0.6;margin-top: -4px}
  70%  {opacity: 0.7;margin-top: -3px}
  80%  {opacity: 0.8;margin-top: -2px}
  90%  {opacity: 0.9;margin-top: -1px}
  100% {opacity: 1;margin-top: 0px}
}
.icontxtsec .icontxtbx.text-center {
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.1);
    padding: 50px 25px;
}
.icontxtsec .icontxtbx img {
    max-height: 120px;
    margin-right: 10px;
    margin-bottom: 20px;
    outline: 1px dashed var(--theme-color);
    outline-offset: 7px;
    border-radius: 50%;
}
.icontxtsec .icontxtbx p {
    margin-top: 5px;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-color-dark);
    font-family: var(--heading-font);
}
/* .icontxtbx.text-center.ylwbg-clr {
    background: #eeb14a;
} */
/* .icontxtbx.text-center.ylwbg-clr p {
    color: #070337;
} */
.logo a {
    color: var(--theme-color);
    /* font-size: 40px; */
}
@media only screen and (max-width:767px){
    .bnrsec .bnrcontent h1 {
        color: #fff;
    }
    .icontxtsec .icontxtbx img {
        max-height: 65px;
        margin: 0 auto;
    }
    .icontxtsec .icontxtbx.text-center{    padding: 50px 15px;}
    .icontxtsec .icontxtbx p {
        margin-top: 10px !important;
        font-size: 16px;
        margin-bottom: 10px;
        width: 100%;
    }
    .featuresec p {
        font-size: 16px;
    }
    .logo a {
        font-size: 30px;
    }
    .logo {
        padding-left: 24px;
        position: relative;
        top: -3px;
    }
    .icontxtsec .icontxtbx.text-center {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }
}
section.icontxtsec.blwheadsec {
    background: #fff;
    padding: 4rem 0 !important;
}
.productbox a.quickbtn {
    opacity: 1;
    visibility: visible;
    bottom: 0px;
    width: auto;
    position: static;
    background: #527d22;
    margin-top: 20px;
    text-align: center;
    padding: 8px 20px;
    background: #ffffff;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none !important;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 50px;
    border: 2px solid #000;
    transition: 0.5s ease-in-out;
}

.productbox a.quickbtn:hover {
    color: #ffffff;
    background: #000;
}


/* added */
.innrheader {
    position: relative;
    width: 100%;
    display: block;
    padding: 4px 0;
    border-radius: 0;
    background-color: var(--theme-color);
    box-shadow: 1px 1px 10px rgba(0, 0, 0, .1);
    
}
.footer-card-icon img{width: auto;max-height: 40px;margin:0 auto}
.banner_cst{
    width: 100%;
    height: auto;
    background: url(../images/banner-bg.png) no-repeat;
    min-height: 600px;
    background-position: center center;
    background-size: cover;
    position: relative;
    /* border-bottom: 15px solid var(--theme-color); */
}
.banner_text{
	width: 100%;
    max-width: 600px;
    position: absolute;
    left: 23%;
    top: 17%;
    /* transform: translateX(-40%); */
    /* transform: translate(-50%, -50%); */
    text-align: left;
    box-sizing: border-box;
    padding: 1em;
    color: var(--theme-color-black);
}
.banner_text h1{
    color: var(--theme-color);
	font-size: var(--font48);
    line-height: var(--font48);
}
.mid_pic_cont{
	background-color: var(--theme-color);
    padding: 4em 0;
    clip-path: polygon(0 25%, 100% 0%, 100% 100%, 0 100%);
    margin-top: -70px;
}
.mid_pic_cont h3{
	font-size: var(--font48);
    color: #fff;
}
.mid_pic_cont p{
	font-size: var(--font18);
	text-align: left;
	max-width: 700px;
	margin: 0px auto;
	padding-top: 0.5em;
    color: var(--text-color-white);
}
.mid_pic{

}
.mid_pic_cnt{

}
.mid_pic_cnt h5{
    color: var(--text-color-white);
    font-size: var(--font24);
}
.rts-service-areah2-im-3 .image-area {
    position: relative;
    margin-bottom: 120px;
    margin-top: 30px;
  }
  @media only screen and (max-width: 479px) {
    .rts-service-areah2-im-3 .image-area {
      margin-bottom: 0px;
    }
  }
  .rts-service-areah2-im-3 .image-area .ratio-area {
      position: absolute;
      top: 86px;
      left: 30px;
  }
  @media only screen and (max-width: 479px) {
    .rts-service-areah2-im-3 .image-area .ratio-area {
      top: 30px;
      left: 30px;
    }
  }
  .rts-service-areah2-im-3 .image-area .ratio-area .ratio {
    color: #fff;
    margin-bottom: 0px;
    font-size: 40px;
    font-weight: 700;
  }
  .rts-service-areah2-im-3 .image-area .ratio-area span {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
  }
  @media only screen and (max-width: 479px) {
    .rts-service-areah2-im-3 .image-area .ratio-area span {
      font-size: 16px;
    }
  }
  .rts-service-areah2-im-3 .image-area img {
    border-radius: 20px;
  }
  .rts-service-areah2-im-3 .image-area img.two {
    position: absolute;
    z-index: 5;
    top: -10%;
    left: 40%;
    animation: jump-1 5s linear infinite;
  }
  .rts-service-areah2-im-3 .image-area img.three {
    position: absolute;
    left: 18%;
    top: 38%;
  }
  @media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .rts-service-areah2-im-3 .image-area img.three {
      width: 85%;
    }
  }
  .rts-service-areah2-im-3.eight .title-area.service-h2.service::after {
    content: "01";
  }
/*jump animation */
@keyframes jump-1 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jump-2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jump-3 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.rts-section-gap {
    padding: 60px 0 100px 0;
}
.rts-section-gap .about-img {
    box-shadow: -30px 30px 0px #e54121;
    border-radius: 15px;
    margin: 0 auto;
    display: block;
}
.mid_pic_cnt h5 img{
    height: 80px;
    
}
.mid_left img{
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.mid_nd{
    background: var(--theme-color-midgrey);
    padding: 4em 0;
}
.mid_right{
    
    
}
.mid_right_cont{
    background: var(--text-color-white);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding: 3em;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.mid_right_cont h5{
    color: var(--theme-color);
    font-size: var(--font36);
    line-height: var(--font36);
}
.mid_right_cont p{
    color: var(--theme-color);
    font-size: var(--font16);
    line-height: var(--font24);
    padding-top: 1em;
}

.mid_right_cont ul{
    margin: 0;
    padding: 0;
    margin-top: 1em;
}
.mid_right_cont ul li{
    list-style: none;
    color: var(--theme-color-black);
    padding-bottom: 0.2em;
    position: relative;
    padding-left: 2em;
    
}
.mid_right_cont ul li:after{
    position: absolute;
    left: 0;
    top: 0;
    font-family: FontAwesome;
    content: "\f00c";
    
}

.cmenu2 ul li{
    text-align: right;
    
}
.cmenu2 ul li a{
    color: var(--text-color-white);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    
}
.prod_heading{
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.4em 1em;
    z-index: 2;
    color: var(--theme-color);
    font-size: var(--font18);
    text-align: center;
}
/* slidre */
#products .slick-prev,
#products .slick-next {
	display: inline-block;
	position: absolute;
	bottom: -60px;
	background: var(--theme-color);
	color: #fff;
	border-radius: 5px;
	z-index: 999;
	width: 45px;
	height: 45px;
	border: 0;
	outline: 0;
	font-size: 0;
}

#products .slick-prev {
	left: 35%;
}

#products .slick-prev::after {
	content: "\f104";
	font-size: 30px;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	font-family: 'FontAwesome';
	z-index: 9999;
	color: #fff;
	top: 50%;
	transform: translateY(-50%);
	font-weight: 600;
}

#products .slick-next {
	right: 35%;
}

#products .slick-next::after {
	content: "\f105";
	font-weight: 600;
	font-size: 30px;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	font-family: 'FontAwesome';
	top: 50%;
	transform: translateY(-50%);
}

.slick-slide {
	display: none;
	float: left;
	height: 100%;
	min-height: 1px;
	margin: 0 10px;
}

.slick-initialized .slick-slide {
	margin: 0 10px;
}

/* lir */


/* added  */


@media only screen and (max-width: 1024px) {
   
    .banner_cst{
        min-height: 400px;
        background-position: center center;
        background-size: cover;
        position: relative;
        /* border-bottom: 15px solid var(--theme-color); */
    }
	
    

}
@media only screen and (max-width: 820px) {
    .ftsec {
        padding: 30px 15px;
    }
    .rts-service-areah2-im-3 .image-area img.two {
        max-width: 60%;
        top: 20%;
        left: 40%;
    }
    .rts-service-areah2-im-3 .image-area img.three {
        left: 18%;
        top: 61%;
        max-width: 60%;
    }
    .rts-section-gap {
        padding: 50px 15px;
    }
    .footer-two-single-wized {
        margin-bottom: 15px;
    }
   .mid_pic_cont {
        padding: 4em 0 1em;
    }
    .mid_pic_cont h3 {
        font-size: var(--font36);
    }
	.mid_pic_cnt{
        margin-top: 1.5em;
    }
    .mid_nd {
        background: var(--theme-color-midgrey);
        padding: 3em 0;
    }
    .banner_text {
        width: 100%;
        max-width: 500px;
        position: absolute;
        left: 2%;
        top: unset;
        bottom: 35%;
    }
    .banner_text h1 {
        
        font-size: var(--font36);
    }
    .banner_text p {
        display: none;
    }
    .topbottom_bar{
        height: 0px;
    }
    .cmenu2{
        display: none;
    }
    .top_bar{
        height: 50px;
    }
}

@media only screen and (max-width: 767px) {
  .banner_cst{        
        background-position: center center;
        background-size: cover;
        position: relative;
        /* border-bottom: 15px solid var(--theme-color); */
    }
    .featuresec h3 {
        margin-bottom: 30px;
    }
}



@media only screen and (max-width: 600px) {
	.dt-text{
		margin-top: 1.5em;
	}
}

.footer-two-single-wized .contact-info-1 {
    display: flex;
    align-items: center;
    margin-top: 18px;
    margin-bottom: 18px;
}
.footer-two-single-wized .contact-info-1 .icon i {
    position: relative;
    z-index: 1;
    font-size: 14px;
    color: var(--theme-color);
}
.footer-two-single-wized .contact-info-1 .icon i::after {
    position: absolute;
    content: "";
    z-index: -1;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    box-shadow: 0px 9px 18px rgba(24, 16, 16, 0.05);
    height: 35px;
    width: 35px;
}
.footer-two-single-wized .contact-info-1 .disc {
    display: flex;
    flex-direction: column;
    margin-left: 30px;
    color: #fff;
}
.footer-two-single-wized .contact-info-1 .disc span {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}
.footer-two-single-wized .contact-info-1 .disc a {
    color: #fff;
    font-weight: 400 !important;
    font-size: 14px;
    transition: 0.3s;
    word-break: break-word;
}

.cont_heading h5 {
    font-size: var(--font48);
    color: var(--theme-color);
    text-transform: uppercase;
    text-align: left;
}

.cont_txt {
    background: var(--text-color-dark);
    padding: 1em;
}

.cont_txt ul li {
    list-style: none;
    padding-left: 2em;
    color: var(--theme-color);
    text-align: left;
    margin-bottom: 1.0em;
    position: relative;
}

.terms-content h3{margin-top: 25px;margin-bottom: 18px;}

.terms-content p strong{margin:10px 0;display: block;}