@import url('https://fonts.googleapis.com/css2?family=Livvic:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    /*border: 1px solid red;*/
}
:root{
    --primary-font: "Poppins", sans-serif;
    --secondary-font: "Livvic", sans-serif;
    --primary-color: #f48830;
    --secondary-color: #f48830;
    --third-color: #187a19;
}
html{overflow-x: hidden;}
body{
    overflow-x: hidden;
}
body::-webkit-scrollbar{
    width: 5px;
    background: #000;
}
body::-webkit-scrollbar-thumb{
    background: #f5f5f5;
}
a{text-decoration: none;color: #000; display: block;}
ul{padding: 0; margin: 0; list-style-type: none;}
p,h1,h2,h3,h4,h5,h6{margin: 0;}
h2 i{
    color: var(--third-color);
}
input[type='number']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}
.tagline{font-size: 16px;font-weight: 400;text-transform: uppercase;letter-spacing: 1px;margin: 0 0 10px;display: inline-block;color: #000000;}
.tagline img{width: 30px;margin-right: 10px;}
.msgbox{
    position: fixed;
    bottom: 0px;
    z-index: 99;
    width: auto;
    left: 50%;
    transform: translateX(-50%);
    transition: .3s linear;
    opacity: 0;
    pointer-events: none;
}
.msgbox.active{
    bottom: 20px;
    opacity: 1;
    pointer-events: auto;
}
.msgbox .loading-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    background: var(--third-color);
    border-radius: 3px;
}
.msgbox .loading-wrapper .loading_span{
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    display: inline-block;
    border-radius: 50px;
    border-top: 1px solid transparent;
    animation: circle .5s linear infinite;
}
@keyframes circle{
    0%{transform: rotate(0deg);}
    100%{transform: rotate(360deg);}
}
.msgbox .loading-wrapper p{
    font-size: 15px;
}
.msgbox .alertdiv{
    background: var(--third-color);
    padding: 12px  20px;
    text-align: center;
    border-radius: 5px;
}
.msgbox .alertdiv:before{
    content: "";
    width: 100%;
    height: 3px;
    background: var(--secondary-color);
    position: absolute;
    bottom: 0;
    left: 0;
    transform-origin: left;
}
.msgbox .alertdiv.active:before{
    animation: lineless 1.5s linear;
}
@keyframes lineless {
    100%{transform: scaleX(0);}
}
.msgbox .alertdiv.success{}
.msgbox .alertdiv.failed{}
.msgbox .alertdiv p{color: #fff;margin: 0;font-size: 18px;letter-spacing: .5px;font-family: var(--secondary-font);}
.msgbox .alertdiv p i{margin-right: 5px; color: var(--secondary-color);}
.msgbox .alertdiv.success p{}
.msgbox .alertdiv.failed p{}
.padd0{padding: 0;}

.pagebtn{
    background: var(--secondary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-weight: 300;
    color: #ffffffe0;
    letter-spacing: .5px;
    position: relative;
    z-index: 1;
    height: 50px;
    transition: .3s linear;
    text-transform: uppercase;
    border-radius: 20px 5px 20px 5px;
}
.pagebtn:hover{
    background: #fff;
}

.maintitle{
    text-align: center;
    margin: 0 0 50px;
}
.maintitle h2{
    padding: 0 0 20px;
    font-size: 36px;
    color: var(--third-color);
    font-family: var(--secondary-font);
    letter-spacing: .5px;
    position: relative;
    z-index: 1;
    margin: 0 0 20px;
    font-weight: 600;
}
.maintitle h2:before{
    content: "";
    width: 100px;
    border-bottom: 2px solid var(--third-color);
    display: inline-block;
    margin: 20px 0 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.maintitle p{
    font-weight: 300;
    font-size: 14px;
    letter-spacing: .5px;
    width: 70%;
    margin: auto;
}

.breadcrumb-page{
    background: url('../images/breadcrumb.webp');
    background-size: cover;
    position: relative;
    z-index: 1;
}
.breadcrumbbox{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20% 0 30px;
    flex-direction: column;
    gap: 15px;
}
.breadcrumb-page:before{
    content: "";
    width: 100%;
    height: 100%;
    background: #f488302e;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.breadcrumbbox h3{
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: var(--secondary-font);
    color: #fff;
    font-size: 26px;
}
.breadcrumbbox ul{
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgb(255 255 255 / 10%);
}
.breadcrumbbox ul li{
    font-size: 14px;
    font-weight: 400;
    display: flex;
    gap: 5px;
    align-items: center;
    color: #fff;
    letter-spacing: .5px;
    color: var(--secondary-color);
}
.breadcrumbbox ul li:not(:last-child):after{
    content: "/";
    color: #fff;
}
.breadcrumbbox ul li a{color: #fff;}



header{position: fixed;width: 100%;z-index: 999;left: 0;top: 0; transition: .3s linear;}
header.fixed{
    background: #000;
    transition: .3s linear;
}
.weblogo{
    margin: 5px 0;
}
.weblogo img{width: 180px;}

.menubox{
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
}
.menubox .menulist{
    position: relative;
    z-index: 1;
}
.menubox .menulist:not(:first-child):after{
    content: "";
    width: 1px;
    height: 15px;
    position: absolute;
    top: 50%;
    left: -14px;
    transform: translateY(-50%);
    background: rgb(255 255 255 / 40%);
    display: none;
}
.menubox .menulist .menulink{
    font-size: 14px;
    font-weight: 300;
    padding: 36px 0;
    color: #fff;
    letter-spacing: .5px;
}
.menubox .menulist{}
.menubox .menulist .searchicon{color: #fff; margin-right: 15px;}
.menubox .menulist .searchicon:hover{color: var(--secondary-color);}
.submenu{position: absolute;top: 100%;background: #fff;min-width: 200px;z-index: 99999999999999;left: 50%;transform: translate(-50%, 20px);transition: .3s linear;padding: 10px 20px;border-radius: 2px;opacity: 0;visibility: hidden;pointer-events: none;border-radius: 10px;}
.menulist:hover .submenu{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}
.submenu .sublist{
    padding: 5px 0;
}
.submenu .sublist .sublink{
    font-size: 14px;
    font-weight: 400;
    transition: .3s linear;
    color: #000;
    white-space: nowrap;
}
.submenu .sublist .sublink:hover{
    color: var(--secondary-color);
}
.submenu:before{
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    top: -5px;
    left: 50%;
    border-radius: 3px;
    transform: translateX(-50%) rotate(45deg);
    background: #fff;
}

.consultbox{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
}
.consultbox .consultbtn{
    background: var(--secondary-color);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px 20px 5px 20px;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    transition: .3s linear;
    letter-spacing: .5px;
}
.consultbox .consultbtn:hover{
    color: #000;
    background: #fff;
}

.mobheader{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
}
.moblogo{}
.moblogo img{width: 120px;}
.mobheader-right{
    display: flex;
    align-items: center;
    gap: 15px;
}
.mobheader-right a{
    color: #fff;
    font-size: 32px;
}

.mobmenu{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    transition: .3s linear;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}
.mobmenu.active{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    left: 0;
}
.mobilemenuinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 200px;
    height: 100%;
    z-index: 999;
    background: var(--primary-color);
    border-right: 1px solid var(--primary-color);
    transition: .3s linear;
}
.mobmenu .mobmenuclose{
    color: var(--bs-white);
    position: absolute;
    right: 10px;
    top: 10px;
}
.mobmenubox{}
.mobmenulist{
}
.mobmenulink{
    font-size: 15px;
    color: #fff;
    font-weight: 500;
    letter-spacing: .5px;
    padding: 10px 15px;
    border-bottom: 1px solid #ffa75f;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .3s linear;
}
.mobmenulink:hover{
    color: #fff;
}
.mobsubmenu{
    background: #ff9845;
    display: none;
}
.mobsublist{}
.mobsublink{
    padding: 10px 15px;
    border-bottom: 1px solid var(--primary-color);
    color: #fff;
    font-size: 14px;
    letter-spacing: .8px;
    font-weight: 300;
}
.mobsublink:hover{
    color: #fff;
}
.shadow-wrapper{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgb(0 0 0 / 40%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .2s linear;
}
.shadow-wrapper.active{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.sidecart{
    position: fixed;
    top: 50%;
    right: -610px;
    height: calc(100% - 40px);
    transform: translateY(-50%);
    z-index: 9999;
    background: var(--primary-color);
    border: 1px solid #666;
    width: 600px;
    border-radius: 20px;
    transition: .3s linear;
    padding: 20px;
}
.sidecart.active{
    right: 10px;
}
.sidecart .sidecart-close{
    color: #fff;
    font-size: 20px;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 99;
    transition: .3s linear;
}
.sidecart .sidecart-close:hover{
    color: var(--secondary-color);
}

.empty-cart{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.empty-cart .carticon{
    color: #fff;
    font-size: 24px;
    position: relative;
    z-index: 1;
}
.empty-cart .carticon div{
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 13px;
    width: 20px;
    height: 20px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
}
.empty-cart .cartempty-title{
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    margin: 15px 0;
}
.empty-cart .continue{
}
.empty-cart .continue:hover{
}

.sidecart-header{border-bottom: 1px solid var(--forth-color);padding: 0 0 10px;height: 12%;}
.sidecart-header h3{
    color: var(--secondary-color);
    font-size: 22px;
    font-weight: 600;
    font-family: var(--secondary-font);
}
.sidecart-header span{
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--text1-color);
}

.sidecart-products{
    height: calc(100% - 12% - 27%);
    overflow: auto;
}
.sidecart-products::-webkit-scrollbar{
    width: 5px;
    background-color: #222;
}
.sidecart-products::-webkit-scrollbar-thumb{
    background: var(--primary-color);
}
.sidecart-products .box{
    display: flex;
    gap: 15px;
    padding: 10px 0;
}
.sidecart-products .box figure{
    margin: 0;
}
.sidecart-products .box figure img{
    width: 70px;
}
.sidecart-products .box .content{position: relative;z-index: 1;width: 100%;flex-basis: 100%;}
.sidecart-products .box .content h4{
    font-size: 17px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 5px;
    position: relative;
    z-index: 1;
    font-family: var(--secondary-font);
    width: 80%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.sidecart-products .box .content h4:after{
    content: "";
}
.sidecart-products .box:hover .content h4:after{
    width: 100%;
}
.sidecart-products .box .content .pricebox{}
.sidecart-products .box .content .pricebox .newprice{
    color: var(--text-color);
    font-weight: 500;
    margin-right: 10px;
    font-size: 14px;
}
.sidecart-products .box .content .pricebox .oldprice{
    text-decoration: line-through;
    color: var(--text1-color);
    font-weight: 500;
    font-size: 14px;
}
.sidecart-products .box .content .pricebox .off{
    display: none;
}
.sidecart-products .box .content .qty-n-remove{
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}
.sidecart-products .box .content .qty-n-remove .sidecart-qty{
    width: 40px;
    height: 40px;
    background: var(--forth-color);
    outline: none;
    border: 1px solid #5e748252;
    text-align: center;
    color: #fff;
    border-radius: 3px;
    font-weight: 500;
}
.sidecart-products .box .content .qty-n-remove .sidecart-qty::-webkit-outer-spin-button,
.sidecart-products .box .content .qty-n-remove .sidecart-qty::-webkit-inner-spin-button{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}
.sidecart-products .box .content .qty-n-remove .sidecart-remove{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 3px;
    transition: .3s linear;
}
.sidecart-products .box .content .qty-n-remove .sidecart-remove:hover{
    background: var(--third-color);
}

.sidecart-footer{
    /* background: red; */
    padding: 15px 0;
    height: 27%;
}
.sidecart-total{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 15px;
    border-bottom: 1px solid var(--third-color);
    margin: 0 0 20px;
}
.sidecart-total span{
    color: var(--text-color);
    font-size: 18px;
}
.sidecart-total span:nth-child(1){}
.sidecart-total span:nth-child(2){}
.sidecart-actbtns{
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}
.sidecart-actbtns .actbtn{
    width: 50%;
}




.searchpanel{
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    transform: scaleY(0);
    transform-origin: bottom;
    z-index: 9999;
    transition: .3s linear;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #07273c85;
}
.searchpanel.active{
    transform: scaleY(1);
}
.searchpanel .searchpanelclose{
    color: #fff;
    font-size: 20px;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 99;
    transition: .3s linear;
}
.searchpanel .searchpanelclose:hover{
    color: var(--secondary-color);
}
.searchpanel form{
    width: 50%;
    display: flex;
    align-items: center;
}
.searchpanel form input{
    flex-basis: 94%;
    height: 50px;
    padding: 10px 15px;
    outline: none;
    border: none;
    background: var(--third-color);
    color: #fff;
}
.searchpanel form input::placeholder{
    color: #fff;
    font-size: 15px;
    letter-spacing: 0.5px;
    font-weight: 300;
}
.searchpanel form button{
    flex-basis: 6%;
    height: 50px;
    outline: none;
    border: none;
    background: var(--secondary-color);
    color: #fff;
}
.searchpanel form button:hover{}

.sliderwidget{
    position: relative;
    z-index: 0;
    background: url('../images/banner1.webp');
    background-size: cover;
    
    height: 110vh;
}
.sliderwidget > img{width: 100%;}
.sliderwidget .overlaywidget{
    padding: 140px 0 0;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.sliderwidget .leftwidget{padding: 50px 0 0;}
.sliderwidget .leftwidget h3{
    color: var(--secondary-color);
    font-family: var(--secondary-font);
}
.sliderwidget .leftwidget h1{
    color: #ffffffe0;
    font-family: var(--secondary-font);
    font-size: 48px;
    line-height: 1.1;
    padding: 0 0 10px;
    font-weight: 700;
}
.sliderwidget .leftwidget p{
    color: #ffffffe0;
    font-weight: 300;
    padding-right: 70px;
}
.sliderwidget .leftwidget a{
    margin: 40px 0 0;
}
.sliderwidget .leftwidget a:hover{
    color: #000;
}
.sliderwidget .leftwidget a:hover:after,
.sliderwidget .rightwidget{
    position: relative;
    z-index: 1;
    height: 100%;
}
.sliderwidget .rightwidget > img{
    
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35%;
}
.rightwidget .outercircle{
    width: 80%;
    aspect-ratio: 1/1;
    border: 8px solid #ffffff24;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 25s linear infinite;
}
@keyframes rotate {
    0%{transform: translate(-50%, -50%) rotate(0deg);}
    100%{transform: translate(-50%, -50%) rotate(360deg);}
}
.rightwidget .outercircle img{
    background: -webkit-linear-gradient(-45deg, var(--secondary-color) 0%, var(--primary-color) 50%, var(--third-color) 99%  );
    border-radius: 50%;
    padding: 5px;
    width: 55px;
    position: absolute;
}
.rightwidget .outercircle img.as1{
    top: 90%;
    right: 20%;
    animation: rotate5 25s linear infinite;
}
.rightwidget .outercircle img.as2{top: 80%;left: 8%; animation: rotate5 25s linear infinite;}
.rightwidget .outercircle img.as3{top: 55%;right: -5%; animation: rotate5 25s linear infinite;}
.rightwidget .outercircle img.as4{top: 25%;left: -2%; animation: rotate5 25s linear infinite;}
.rightwidget .outercircle img.as5{ animation: rotate5 25s linear infinite;}
.rightwidget .outercircle img.as6{
    top: 15%;
    left: 85%; animation: rotate5 25s linear infinite;
}
.rightwidget .outercircle img.as10{top: -5%;left: 36%; animation: rotate5 25s linear infinite;}
@keyframes rotate5 {
    0%{transform:  rotate(360deg);}
    100%{transform:  rotate(0deg);}
}

.rightwidget .outercircle .innercircle{
    width: 70%;
    aspect-ratio: 1 / 1;
    border: 8px solid #ffffff24;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* animation: rotate2 50s linear infinite;
    }
    @keyframes rotate2 {
    0%{transform: translate(-50%, -50%) rotate(0deg);}
    100%{transform: translate(-50%, -50%) rotate(360deg);} */
}
.rightwidget .outercircle .innercircle img{position: absolute; }
.rightwidget .outercircle .innercircle img.as7{
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    animation: rotate3 25s linear infinite;
}
.rightwidget .outercircle .innercircle img.as8{
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    animation: rotate3 25s linear infinite;
}
.rightwidget .outercircle .innercircle img.as9{
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    animation: rotate4 25s linear infinite;
}
.rightwidget .outercircle .innercircle img.as11{
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    animation: rotate4 25s linear infinite;
}

@keyframes rotate3 {
    0%{transform: translateX(-50%) rotate(360deg);}
    100%{transform: translateX(-50%) rotate(0deg);}
}
@keyframes rotate4 {
    0%{transform: translateY(-50%) rotate(360deg);}
    100%{transform: translateY(-50%) rotate(0deg);}
}

.aboutwidget{
    padding: 50px 0px;
}

.aboutimages{}
.aboutimages .imgbox{
    width: 80%;
    background: #000;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}
.aboutimages .imgbox:before,
.aboutimages .imgbox:after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 30px;
    left: 30px;
    border-radius: 20px;
}
.aboutimages .imgbox:before{
    background: var(--secondary-color);
    z-index: -1;
}
.aboutimages .imgbox:after{
    border: 2px solid var(--secondary-color);
    
}
.aboutimages .imgbox img{
    width: 100%;
    background: #000;
    border-radius: 20px;
}
.imgbox .namewidget{
    transform: translate(60px, 10px);
}
.imgbox .namewidget span{color: var(--third-color);text-transform: uppercase;font-weight: 500;font-size: 14px;letter-spacing: .5px;display: block;}
.imgbox .namewidget h3{color: #fff;line-height: 1;display: inline;font-family: var(--secondary-font);letter-spacing: .5px;font-weight: 500;}
.rightaboutwidget{}
.rightaboutwidget h3{
    color: var(--third-color);
    position: relative;
    z-index: 1;
    margin: 0 0 20px;
    font-weight: 700;
    font-family: var(--secondary-font);
}
.rightaboutwidget h3:after{
    content: "";
    width: 100px;
    height: 2px;
    background: var(--secondary-color);
    display: block;
    margin: 10px 0 0;
}
.rightaboutwidget span{font-size: 25px; font-weight: 600; line-height: 1.2; margin: 0 0 10px; display: inline-block;}
.rightaboutwidget p{
    font-weight: 300;
    padding: 0 0 10px;
    letter-spacing: .5px;
}
.rightaboutwidget a{
    margin: 30px 0 0;
}
.rightaboutwidget a:hover{
    background: var(--primary-color);
}
.futurehold{background: #f69a29;padding: 50px 0; overflow: hidden;}
.futurehold .maintitle{}
.futurehold .maintitle h2{
}
.futurehold .maintitle h2:before{
    border-color: var(--third-color);
}
.futurehold .maintitle p{
    color: #fff;
    font-size: 15px;
}

.futureholdbox{
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 0;
}
.futureholdbox:before{
    content: "";
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--third-color);
}
.futureholdbox figure{}
.futureholdbox figure img{
    width: 70px;
}
.futureholdbox .content{}
.futureholdbox .content h3{font-size: 20px;font-weight: 600;font-family: var(--secondary-font);margin: 0 0 10px;color: #000;}
.futureholdbox .content p{
    font-size: 14px;
    color: #fff;
    font-weight: 400;
}
.futurehold .gridbox:nth-child(4) .futureholdbox:nth-child(1),
.futurehold .gridbox:nth-child(2) .futureholdbox:nth-child(1){margin: 0 0 50px;}
.futurehold .gridbox:nth-child(3) .futureholdbox{padding: 0;}
.futurehold .gridbox:nth-child(3) .futureholdbox::before{display: none;}
.futurehold .gridbox:nth-child(3) .futureholdbox figure{overflow: hidden;}
.futurehold .gridbox:nth-child(3) .futureholdbox figure img{
    width: 100%;
    animation: circle 10s linear infinite;
}

@keyframes circle{
    0%{transform: rotate(0deg);}
    100%{transform: rotate(360deg);}
}

.asknow{
    padding: 60px 0;
}
.asknow .maintitle{text-align: start;}
.asknow .maintitle h2{}
.asknow .maintitle h2:before{left: 0; transform: translateX(0);}
.asknow .maintitle p{
    width: 100%;
}

.asknow{}
.asknow form{}
.asknow form .fields{
    margin: 0 0 20px;
}
.asknow form .fields label{
    font-family: var(--secondary-font);
    font-weight: 600;
    font-size: 15px;
    padding: 0 0 5px;
}
.asknow form .fields textarea,
.asknow form .fields select,
.asknow form .fields input{
    border: 1px solid #ddd;
    padding: 10px;
    width: 100%;
    outline: none;
}
.asknow form .fields select:focus,
.asknow form .fields input:focus{
}
.asknow form .fieldsbtn{}
.asknow form .fieldsbtn button{
    outline: none;
    border: none;
}
.asknow form .fieldsbtn button:hover{
    background: var(--primary-color);
}
.asknow .consultationmsg{}
.asknow .consultationmsg p{
    padding: 10px;
    margin: 10px 0 0;
    font-size: 15px;
    border-radius: 3px;
    letter-spacing: .5px;
}
.asknow .consultationmsg p.success{
    background: #00800021;
    color: green;
}
.asknow .consultationmsg p.failed{
    background: #ff00001a;
    color: red;
}

.asknow-right{}
.asknow-right img{width: 100%;}


.booksession{
    padding: 60px 0;
    background: #f4883017;
}
.booksession .maintitle{text-align: start;}
.booksession .maintitle h2{}
.booksession .maintitle h2:before{left: 0; transform: translateX(0);}
.booksession .maintitle p{
    width: 100%;
}
.booksession-left{
    display: flex;
    flex-wrap: wrap;
    gap: 4%;
}
.booksession-left .innerbox{
    width: 48%;
    padding: 20px;
    background: #ffffff;
    margin: 0 0 20px;
    border-radius: 10px 0 10px 0;
    box-shadow: 0 3px 10px -5px rgb(0 0 0 / 15%);
}
.booksession-left .innerbox img{
    width: 35px;
    margin: 0 0 10px;
}
.booksession-left .innerbox h4{
    font-size: 20px;
    margin: 0 0 10px;
    color: var(--secondary-color);
}
.booksession-left .innerbox p{
    font-size: 14px;
}
.booksession-right{
    padding: 20% 0 0;
}
.booksession-right img{width: 100%;}




.choosewidget{
    background: url('../images/choosebg.webp');
    background-size: cover;
    padding: 50px 0;
}
.choosewidget .maintitle{}
.choosewidget .maintitle h2{}
.choosewidget .maintitle p{}



.reviewwidget{
    padding: 50px 0 80px;
    background: #000;
}
.reviewwidget .maintitle{}
.reviewwidget .maintitle h2{color: #fff;}
.reviewwidget .maintitle h2:before{border-bottom: 2px solid #fff;}
.reviewwidget .maintitle p{
    color: #fff;
}
.reviewbox{
    background: #f69a29;
    padding: 25px;
    text-align: center;
    position: relative;
    z-index: 1;
    margin: 0 10px;
    border-radius: 20px 0 20px 0;
    background: #222;
}
.reviewbox .reviewinfo{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 0 20px;
}

.reviewbox .icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 70px;
    z-index: -1;
    color: #5e748224;
}
.reviewbox figure{
    width: 50px;
    aspect-ratio: 1/1;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0;
    z-index: 1;
}
.reviewbox figure img{
    width: 30px;
}
.reviewbox .content{
    text-align: start;
    width: calc(100% - 70px);
}
.reviewbox .content .name{
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
}
.reviewbox .content .date{
    font-size: 13px;
    color: #fff;
}
.reviewbox > p{
    font-weight: 300;
    color: #111;
    letter-spacing: .5px;
    font-size: 14px;
    color: #999;
}

.reviewwidget .slick-dots{
    left: 50%;
    transform: translateX(-50%);
    bottom: -60px;
    width: auto;
    display: flex;
    justify-content: end;
    align-items: end;
    border-radius: 50px;
    gap: 5px;
}
.reviewwidget .slick-dots li{
    width: 18px;
    height: 6px;
    background: #fff;
    border-radius: 6px;
    display: block;
    transition: .2s linear;
}
.reviewwidget .slick-dots li.slick-active{
    background: var(--secondary-color);
}
.reviewwidget .slick-dots li button{
    display: none;
}




.blogswidget{
    padding: 50px 0;
    overflow: hidden;
}
.blogswidget .maintitle{}
.blogswidget .maintitle h2{}
.blogswidget .maintitle p{}

.blogbox{
    margin: 0 8px 20px;

}
.blogbox figure{margin: 0; position: relative; overflow: hidden;}
.blogbox figure .blogcat{
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 12px 15px;
    background: #f29828;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}
.blogbox figure img{width: 100%; transition: .3s linear;}
.blogbox:hover figure img{
    transform: scale(1.05);
}
.blogbox .blogcat{}
.blogbox .content{padding: 10px 0 0;}
.blogbox .content span{
    color: var(--text-color);
    font-size: 15px;
    font-weight: 300;
    margin: 0 0 10px;
    display: inline-block;
}
.blogbox .content span i{
    font-size: 18px;
    color: var(--secondary-color);
    margin-right: 5px;
}
.blogbox .content h3{
    font-family: var(--secondary-font);
    font-size: 22px;
    letter-spacing: .5px;
    position: relative;
    z-index: 1;
    margin: 0 0 20px;
    font-weight: 500;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
}

.blogbox .content p{
    color: var(--text-color);
    font-size: 14px;
    line-height: 24px;
    font-weight: 300;
}
.blogbox .content .viewblogbtn{
    margin: 20px 0 0;
    padding: 10px 0;
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
    z-index: 1;
    transition: .3s linear;
}
.blogbox .content .viewblogbtn:before,
.blogbox .content .viewblogbtn:after{
    content: "";
    width: 100%;
    height: 2px;
    background: #eee;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.blogbox .content .viewblogbtn:after{
    width: 15%;
    background: var(--secondary-color);
    transition: .3s linear;
}
.blogbox .content .viewblogbtn:hover:after{width: 100%;}
.blogbox .content .viewblogbtn i{}
.blogbox .content .viewblogbtn:hover i,
.blogbox .content .viewblogbtn:hover{
    color: var(--third-color);
}
.latestblogs .title {margin: 10px 0px;}

footer{
    position: relative;
    /* z-index: 1; */
    padding: 50px 0 0;
    background: #031d2e;
    background: #000;
}

footer .footerlogo{}
footer .footerlogo .flogolink{
    margin: 0 0 20px;
}
footer .footerlogo .flogolink img{width: 70%;}
footer .footerlogo p{color: #fff;font-weight: 300;padding-right: 40px;}
footer .footerlogo .social{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 25px 0 0;
}
footer .footerlogo .social a{
    width: 35px;
    height: 35px;
    color: #fff;
    line-height: 35px;
    text-align: center;
    border-radius: 50px;
    transition: .3s linear;
    background: var(--primary-color);
}
footer .footerlogo .social a:hover{
    color: #fff;
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}
.continfo{
    width: 100%;
}
.continfo a{
    margin: 0 0 25px;
}
.continfo a span{
    display: block;
}
.continfo a span i{}
.continfo a span:nth-child(1){
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin: 0 0 5px;
}
.continfo a span:nth-child(2){
    font-size: 14px;
    color: #fff;
    font-weight: 300;
    letter-spacing: .5px;
    word-wrap: break-word;
}
.continfo a span:nth-child(2):hover{
    color: #fff;
}
footer .footerbox{
    display: flex;
    align-items: start;
    flex-wrap: wrap;
}
footer .footerbox h3{
    flex-basis: 100%;
    font-size: 20px;
    letter-spacing: 1.5px;
    margin: 0 0 20px;
    color: #fff;
    font-family: var(--secondary-font);
    position: relative;
    /* z-index: 1; */
    margin: 0 0 30px;
}
footer .footerbox h3:before{
    content: "";
    width: 100px;
    border-bottom: 2px solid var(--secondary-color);
    position: absolute;
    bottom: -15px;
}
footer .footerbox ul{
    flex-basis: 50%;
}
footer .footerbox ul li{
    padding: 0 0 10px;
}
footer .footerbox ul li a{
    transition: .3s linear;
    color: #fff;
    font-weight: 300;
    letter-spacing: .5px;
    font-size: 14px;
    white-space: nowrap;
}
footer .footerbox ul li a:hover{
    color: var(--secondary-color);
}
footer .copyright{
    text-align: center;
    background: #f48830;
    padding: 20px 10px;
}
footer .copyright p{
    color: #fff;
    font-weight: 300;
}
footer .copyright a{
    display: inline-block;
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    transition: .3s linear;
}
footer .copyright a:hover{
    text-decoration: line-through;
}






.productpage{
    background: var(--primary-color);
    padding: 50px 0;
}
.productleft{
}
.productleft > img{
    width: 100%;
}
.productleft .imgs{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 15px 0 0;
    overflow: auto;
}
.productleft .imgs::-webkit-scrollbar{
    height: 5px;
}
.productleft .imgs::-webkit-scrollbar-thumb{
    background: var(--secondary-color);
    height: 3px;
}
.productleft .imgs img{
    width: 23%;
    cursor: pointer;
    transition: .3s linear;
}
.productright{}
.productright h3{
    color: #fff;
    font-family: var(--secondary-font);
}
.productright .price{}
.productright .newprice{
    color: var(--secondary-color);
    font-size: 25px;
}
.productright .oldprice{
    color: var(--text1-color);
    text-decoration: line-through;
}
.productright .skucode{}
.productright p{
    color: #fff;
    font-size: 15px;
    font-weight: 300;
}
.productright .is_stock{
    color: green;
    margin: 10px 0;
    display: inline-block;
}
.productright .quantity{
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
}
.productright  p{}
.productright .actionqty{
    display: flex;
    align-items: center;
    background: var(--forth-color);
}
.productright label{
    width: 50px;
    height: 50px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    font-size: 20px;
}
.productright input{
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    outline: none;
    text-align: center;
    color: #fff;
    border-right: 1px solid #ffffff14;
    border-left: 1px solid #ffffff14;
}
.productright input::-webkit-outer-spin-button,
.productright input::-webkit-inner-spin-button{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;

}
.productright .productactionbtn{
    display: flex;
    align-items: center;
    gap: 40px;
    padding-left: 15px;
    padding-top: 15px;
}
.productright .productactionbtn .actbtn{
    color: #fff;
    font-weight: 300;
    transition: .3s linear;
}
.productright .productactionbtn .addcart{}
.productright .productactionbtn .addwishlist{}
.productright .productactionbtn .addwishlist:hover{
    color: var(--secondary-color);
}

.prodesc-widget{padding: 100px 0 50px;}
.prodescbox{}
.prodescbox-header{background: var(--forth-color);padding: 0 30px;display: flex;align-items: center;gap: 40px;}
.prodescbox-header .prodesc-link{
    font-size: 15px;
    color: var(--text-color);
    position: relative;
    z-index: 1;
    padding: 25px 0;
    transition: .3s linear;
}
.prodescbox-header .prodesc-link:before{
    content: "";
    width: 100%;
    height: 3px;
    background: var(--secondary-color);
    position: absolute;
    bottom: 15px;
    transform-origin: center;
    transform: scaleX(0);
    transition: .3s linear;
}
.prodescbox-header .prodesc-link:hover:before,
.prodescbox-header .prodesc-link.active:before{
    transform: scaleX(1);
}
.prodescbox-header .prodesc-link.active,
.prodescbox-header .prodesc-link:hover{
    color: var(--secondary-color);
}
.prodesc-body{}
.prodesc-tab{
    padding: 30px 0 0;
    display: none;
}
.prodesc-tab.desc{}
.prodesc-tab.desc h3{
    margin: 30px 0 10px;
    color: var(--secondary-color);
    font-family: var(--secondary-font);
}
.prodesc-tab.desc p{
    color: var(--text-color);
    font-weight: 300;
    font-size: 15px;
}
.prodesc-tab.review{}
.prodesc-tab.active{
    display: block;
}
.prodesc-tab.review h4{color: var(--secondary-color);font-family: var(--secondary-font);font-size: 26px;font-weight: 500;}
.prodesc-tab.review span{
    color: var(--secondary-color);
    font-weight: 400;
    font-size: 15px;
}
.prodesc-tab.review .subtitle{
    color: var(--text-color);
    font-weight: 300;
}
.prodesc-tab.review .putratings{}
.prodesc-tab.review .putratings .rate {padding: 20px 0 10px;display: flex;gap: 18px;flex-direction: row-reverse;justify-content: start;}
.prodesc-tab.review .putratings .rate:not(:checked) > input {
    position:absolute;
    top:-9999px;
}
.prodesc-tab.review .putratings .rate:not(:checked) > label {
    width:1em;
    overflow:hidden;
    white-space:nowrap;
    cursor:pointer;
    font-size: 30px;
    color: var(--text1-color);
    line-height: 1;
}
.prodesc-tab.review .putratings .rate:not(:checked) > label:before {
    content: "\f586";
    font-family: 'bootstrap-icons';
}
.prodesc-tab.review .putratings .rate > input:checked ~ label {
    color: var(--secondary-color);    
}
.prodesc-tab.review .putratings .rate:not(:checked) > label:hover,
.prodesc-tab.review .putratings .rate:not(:checked) > label:hover ~ label {
    color: var(--secondary-color);
}
.prodesc-tab.review .putratings .rate > input:checked + label:hover,
.prodesc-tab.review .putratings .rate > input:checked + label:hover ~ label,
.prodesc-tab.review .putratings .rate > input:checked ~ label:hover,
.prodesc-tab.review .putratings .rate > input:checked ~ label:hover ~ label,
.prodesc-tab.review .putratings .rate > label:hover ~ input:checked ~ label {
    color: var(--text-color);
}
.prodesc-tab.review form{}
.prodesc-tab.review form .fields{
    margin: 0 0 20px;
}
.prodesc-tab.review form .fields :is(textarea, input){
    background: var(--forth-color);
    border: none;
    outline: none;
    padding: 15px;
    border-radius: 5px;
    color: var(--text-color);
    font-weight: 400;
}
.prodesc-tab.review form .fields :is(textarea, input)::placeholder{
    color: var(--text1-color);
}
.prodesc-tab.review form .fields :is(textarea, input):focus{
    box-shadow: none;
}
.prodesc-tab.review form .fields textarea{}
.prodesc-tab.review form .fields input{}
.prodesc-tab.review form .fields-btn{
    padding-left: 15px;
}
.prodesc-tab.review form .fields-btn button{
    outline: none;
    border: none;
}

.product-related{
    padding: 50px 0;
}
.product-related .maintitle{}
.product-related .maintitle h3{}
.product-related .maintitle p{}
.product-related .probox{
    margin: 0 10px;
}
.product-related .slick-dots{
    left: 50%;
    transform: translateX(-50%);
    bottom: -60px;
    width: auto;
    display: flex;
    justify-content: end;
    align-items: end;
    border-radius: 50px;
    gap: 10px;
}
.product-related .slick-dots li{
    width: 10px;
    height: 10px;
    background: var(--third-color);
    border-radius: 6px;
    display: block;
    transition: .2s linear;
}
.product-related .slick-dots li.slick-active{
    background: var(--secondary-color);
}
.product-related .slick-dots li button{
    display: none;
}

.cart-container{
    padding: 50px 0;
}
.cartbox{
    border: 1px solid var(--forth-color);
}
.cartbox-header{
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--forth-color);
}
.cartbox-header span{
    color: var(--text-color);
    font-weight: 600;
    text-align: start;
    flex-basis: 20%;
}
.cartbox-header span:nth-child(1){
    flex-basis: 30%;
}
.cartbox-header span:nth-child(2){
}
.cartbox-header span:nth-child(3){
}
.cartbox-header span:nth-child(4){
}
.cartbox-header span:nth-child(5){
    flex-basis: 10%;
}
.cartbox-body{
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 1px solid var(--forth-color);
}
.cartbox-body div{flex-basis: 20%;}
.cartbox-body div:nth-child(1){
    flex-basis: 30%;
}
.cartbox-body div:nth-child(2){
}
.cartbox-body div:nth-child(3){
}
.cartbox-body div:nth-child(4){
}
.cartbox-body div:nth-child(5){
    flex-basis: 10%;
}
.cartbox-body .product{
    display: flex;
    align-items: center;
    gap: 15px;
}
.cartbox-body .product img{width: 60px;}
.cartbox-body .product h3{font-family: var(--secondary-font); color: var(--text-color);}
.cartbox-body .price{}
.cartbox-body .price span{
    color: var(--text-color);
}
.cartbox-body .qty{}
.cartbox-body .qty input{
    width: 40px;
    height: 40px;
    text-align: center;
    background: var(--forth-color);
    outline: none;
    border: none;
    color: #fff;
}
.cartbox-body .qty input::-webkit-outer-spin-button,
.cartbox-body .qty input::-webkit-inner-spin-button{
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}
.cartbox-body .total{}
.cartbox-body .total span{
    color: var(--text-color);
}
.cartbox-body .action{}
.cartbox-body .action a{
    font-size: 13px;
    color: var(--secondary-color);
    letter-spacing: .5px;
    transition: .3s linear;
}
.cartbox-body .action a:hover{
    color: var(--text-color);
}
.coupon-n-total{
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: 20px;
    flex-wrap: wrap;
}
.couponbox{
    flex-basis: 80%;
}
.couponbox form{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.couponbox form .fields{
    position: relative;
    z-index: 1;
}
.couponbox form .fields .couponcode{background: var(--third-color);font-size: 20px;letter-spacing: 15px;font-weight: 600;color: #fff;padding: 13px 20px 13px 30px;outline: 1px dashed var(--text1-color);outline-offset: -5px;text-align: center;display: inline-block;display: flex;}
.couponbox form .fields input{
    height: 50px;
    padding: 10px;
    border: 1px solid var(--forth-color);
    background: var(--forth-color);
    outline: none;
    color: #fff;
}
.couponbox form .fields-btn{
    padding-left: 25px;
}
.couponbox form .fields-btn button{
    border: none;
    outline: none;
}
.couponbox form .fields .errcoupon{
    position: absolute;
    bottom: -22px;
    left: 0;
    z-index: 9;
}
.couponbox form .fields .errcoupon p{
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.2px;
}
.coupon-n-total .total{
    flex-basis: 20%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.coupon-n-total .total div{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.coupon-n-total .total div:last-child{
    border-top: 1px solid var(--forth-color);
    padding-top: 10px;
    margin-top: 10px;
}
.coupon-n-total .total span{
    color: #fff;
}
.coupon-n-total .total span:nth-child(1){font-weight: 400;}
.coupon-n-total .total span:nth-child(2){
    font-weight: 200;
}
.cart-action{
    padding: 40px 0 0 15px;
}
.cart-action a{}


.checkout-widget{
    padding: 50px 0;
}
.checkoutleft{}
.checkoutlogin{
    background: var(--forth-color);
    padding: 15px;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.checkoutlogin h3{
    color: var(--text-color);
    font-size: 20px;
    letter-spacing: 1px;
}
.checkoutlogin a{
    font-size: 15px;
    color: var(--secondary-color);
    font-weight: 600;
}

.checkoutlogin{}
.checkoutlogin-actbtn{
    text-align: center;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.checkoutlogin-actbtn .loginbtn{}
.checkoutlogin-actbtn .or{
    color: var(--text1-color);
    margin-left: 20px;
    font-weight: 600;
}
.checkoutlogin-actbtn .guestlogin{
    color: var(--text-color);
    font-weight: 300;
    transition: .3s linear;
}
.checkoutlogin-actbtn .guestlogin:hover{
    color: var(--secondary-color);
}

.checkoutright{
    background: var(--forth-color);
    padding: 20px;
}
.checkouttotal{}
.checkoutproduct{
    display: flex;
    align-items: start;
    gap: 15px;
    border-bottom: 1px solid #5e74823b;
    padding: 0 0 6px;
    margin: 6px 0 0;
}
.checkoutproduct .icon{
    border: 1px solid var(--text1-color);
}
.checkoutproduct .icon img{width: 50px;}
.checkoutproduct .content{}
.checkoutproduct .content h4{
    color: var(--text-color);
    font-family: var(--secondary-font);
    font-size: 18px;
}
.checkoutproduct .content span{
    color: var(--text-color);
    font-weight: 300;
    font-size: 15px;
}
.checkouttotal .totals{
    padding: 10px 0 0;
}
.checkouttotal .totals .box{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.checkouttotal .totals .box span{
    color: var(--text-color);
    font-weight: 300;
}
.checkouttotal .totals .box:last-child{
    border-top: 1px solid var(--text1-color);
    padding: 10px 0 0;
    margin: 10px 0 0;
}

.contactus-widget{
    padding: 60px 0 80px;
}
.contactus-widget .maintitle{}
.contactus-widget .maintitle h2{font-size: 32px;}
.contactus-widget .maintitle p{width: 100%;}
.contleft{background: #f69a29;height: 100%;padding: 50px;border-radius: 10px;}
.contleft .title{text-align: start;display: block; padding: 0 0 30px;}
.contleft .title span{color: var(--third-color);}
.contleft .title h2{
    font-size: 26px;
    color: #fff;
}
.contleft .title p{width: 100%;}

.contleft .continfo{
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
.contleft .continfo .infobox{
    display: flex;
    align-items: center;
    gap: 20px;
}
.contleft .continfo .infobox .icon{
    width: 65px;
    aspect-ratio: 1/1;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    border-radius: 50%;
}
.contleft .continfo .infobox .icon:before{
    content: "";
    width: 115%;
    height: 115%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px dashed #ffffff;
    border-radius: 50%;
}
.contleft .continfo .infobox:hover .icon:before{
    animation: controtate 8s linear infinite;
}
@keyframes controtate{
    100%{transform: translate(-50%, -50%) rotate(360deg);}
}
.contleft .continfo .infobox .icon i{
    font-size: 24px;
    color: var(--third-color);
}
.contleft .continfo .infobox .content{}
.contleft .continfo .infobox .content span{
    display: block;
    color: var(--text-color);
    font-size: 14px;
}
.contleft .continfo .infobox .content span:nth-child(1){
    font-family: var(--secondary-font);
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
}
.contleft .continfo .infobox .content span:nth-child(2){
    color: #111;
    font-size: 18px;
}
.contright{position: relative;z-index: 1;}
.contright{}
.contright .title{
    padding: 0 0 20px;
}
.contright .title h2{
    font-size: 22px;
    color: var(--third-color);
    font-weight: 600;
}
.contright .title p{
    font-size: 14px;
    color: #212529;
}
.contright form{}

.contright form .fields{
    margin: 0 0 30px;
}
.contright form .fields label{
    font-size: 14px;
    margin: 0 0 5px;
    color: var(--text-color);
    font-weight: 300;
    letter-spacing: .5px;
}
.contright form .fields :is(textarea, input, select){
    background-color: transparent;
    border: 1px solid #5e748229;
    outline: none;
    border-radius: 0;
    color: var(--text-color);
    padding: 15px;
    width: 100%;
}
.contright form .fields :is(textarea, input, select)::placeholder{
    color: #666;
    font-weight: 300;
    letter-spacing: .5px;
}
.contright form .fields :is(textarea, input):focus{
    box-shadow: none;
}
.contright form .fields textarea{}
.contright form .fields input{}
.contright form .fields-btn{
}
.contright form .fields-btn button{
    border: none;
    outline: none;
}
.contright form .fields-btn button:hover{
    background: green;
}
.contmap{
    padding: 40px 0 0;
}
.contmap iframe{width: 100%;height: 300px;}



.our-approach{}
.our-approach .maintitle{text-align: start;}
.our-approach .maintitle h2{}
.our-approach .maintitle h2:before{
    left: 0;
    transform: translateX(0);
}
.approachleft{}
.approachleft .maintitle{
    margin: 0;
}
.approachleft .maintitle h2{}
.approachleft .content{
    padding: 0 0 20px;
}
.approachleft .content p{
    padding: 0 0 20px;
    text-align: justify;
}
.approachleft .content ul{
    padding: 0 0 20px;
}
.approachleft .content ul li{
    text-align: justify;
}
.approachleft .content ul li:before{
    content: "\f132";
    font-family: 'bootstrap-icons';
    font-weight: 700;
    color: var(--secondary-color);
    margin-right: 5px;
    transform: translateY(3px);
    display: inline-block;
}

.approachright{}
.approachright .innerbox{
    border: 1px solid #ddd;
    padding: 20px;
    margin: 0 0 20px;
}
.approachright .innerbox h3{
    font-family: var(--secondary-font);
    font-weight: 500;
    font-size: 22px;
    padding: 0 0 10px;
}
.approachright .innerbox p{}
.approachright .innerbox p:before{
    content: "\f6b0";
    font-family: 'bootstrap-icons';
    font-size: 25px;
    transform: translateY(5px);
    display: inline-block;
    color: var(--secondary-color);
}


.newswidget{
    padding: 40px 0;
}
.newswidget .maintitle{}
.newswidget .maintitle h2{}
.newswidget .maintitle p{
    width: 100%;
    text-align: justify;
    font-size: 15px;
    font-weight: 400;
}
.newswidget .newsblog{
    background: #fff;
    padding: 10px 10px 0;
    border-radius: 10px;
    box-shadow: 0 0 15px 2px rgb(0 0 0 / 15%);
    margin: 0 0 20px;
}
.newswidget .newsblog figure{
    margin: 0;
    overflow: hidden;
    border-radius: 10px;
}
.newswidget .newsblog figure img{
    width: 100%;
    transition: .3s linear;
}
.newswidget .newsblog figure img{
    transform: scale(1.07);
}
.newswidget .newsblog .content{
    padding: 15px 10px;
}
.newswidget .newsblog .content h3{
    font-size: 18px;
    padding: 0 0 10px;
    font-weight: 500;
    line-height: 1.3;
}
.newswidget .newsblog .content p{
    font-size: 14px;
    color: #777;
}
.newswidget .newsblog .content .innercontent{
    padding: 15px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.newswidget .newsblog .content .innercontent .date{
    font-size: 13px;
    font-weight: 500;
    color: #888;
}
.newswidget .newsblog .content .innercontent .readmore{
    font-size: 14px;
    background: linear-gradient(45deg, #ed842f, #187c19);
    line-height: 1;
    display: block;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 3px 8px -3px rgb(0 0 0 / 50%);
    transition: .3s linear;
}
.newswidget .newsblog .content .innercontent .readmore:hover{
    background: linear-gradient(45deg, #187c19, #ed842f);
}


.serviceswidget{padding: 40px 0;}
.serviceswidget .maintitle{}
.serviceswidget .maintitle h2{}
.serviceswidget .maintitle p{
    width: 100%;
    text-align: justify;
    font-size: 15px;
    font-weight: 400;
}
.serviceswidget .serviceleft figure{
    margin: 0;
}
.serviceswidget .serviceleft figure img{
    width: 100%;
    border-radius: 10px;
}
.serviceswidget .serviceright{
    position: relative;
    z-index: 1;
}
.serviceswidget .serviceright h3{
    font-size: 32px;
    font-family: var(--secondary-font);
    font-weight: 600;
    padding: 0 0 10px;
}
.serviceswidget .serviceright p{
    font-size: 16px;
    padding: 0 0 10px;
    line-height: 1.3;
}
.serviceswidget .serbox .content .icon{
    background: #000;
    width: 70px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    position: absolute;
    z-index: 1;
    top: -15%;
    left: 5%;
    box-shadow: 0 0 5px -2px #000;
} 
.serviceswidget .serbox .content .icon img{
    width: 40px;
}
.alertfixed{
    position: fixed;
    bottom: 0px;
    left: 50%;
    width: 98%;
    transform: translateX(-50%);
    text-align: center;
}