@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,500;0,600;0,700;0,800;0,900;1,400&family=Oswald:wght@300;400;500;600;700&family=Poppins:wght@200;300;400;500;600;700;800;900&family=Sail&display=swap');

html{
    font-size: 68.75%;
}
*, ::after, ::before {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
a, abbr, acronym, address, applet, big, blockquote, body, cite, code, dd, del, dfn, div, dl, dt, em, fieldset, font, form, h1, h2, h3, h4, h5, h6, html, iframe, img, ins, kbd, label, legend, li, object, ol, p, pre, q, s, samp, small, span, strike, strong, sub, sup, tt, ul, var {
	border: 0;
	margin: 0;
	outline: none !important;
	padding: 0;
	vertical-align: baseline;
	font-family: "DM Sans", sans-serif;
}

body {
	margin: 0;
	padding: 0;
	background: #fff;
	background-repeat: repeat-x;
	font-size:1.5rem;
	color:#272320;

}
a{
	color:inherit;
	outline: none !important;
    text-decoration: none;
}
a:hover{
    color:inherit;
    text-decoration:none;
}

.dropdown-toggle::after{
    border: none !important;
    content: "\f107";
    font-family: "fontAwesome";
    top: 4px;
    right: 0;
    position: absolute;
}

.btn:focus{
	outline: none !important;
}
ol {
	padding-left: 0;
}

ul {
	padding: 0;
	list-style: none;
    margin: 0;
}

img {
	vertical-align: top;
	max-width:100%;
	border: none;
	outline: none;
}

.btn:focus,
.form-control:focus,
.resizeselect:focus{
	box-shadow: none;
	border: none;
	outline: 0;
}
:root{
    --lightcolor:#f0720b;
    --darkcolor:#151824;
    --whitecolor:#ffffff;
    --text-color:#242f67;
}
h1, h2{
  font-family: "Anek Malayalam", sans-serif;
  
}


@media (min-width: 1200px){
.container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1190px;
}
}

header{
  padding-bottom: 2px;
  position: relative;
  z-index: 3;
  border-bottom: solid 2px #f5f5f5;
  background: var(--whitecolor);
}
.top-section01 p{
  color: var(--whitecolor);
}
.navbar .nav-item{
    margin: 0 7px;
}
.navbar-light .navbar-nav .nav-link{
    font-weight: 400;
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 400;
    color: var(--text-color);
  
}
.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show>.nav-link{
  color: var(--lightcolor);
}
.btn-get-stred1{
  font-weight: 400;
  font-family: "Kanit", sans-serif;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-color);
}
.burgar{
  font-size: 24px;
}
.btn-get-login{
  font-size: 25px;
  color: var(--lightcolor);
}
.btn-get-stred{
    background: var(--lightcolor);
    color: var(--whitecolor);
    text-transform: capitalize;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: #f0720b54 1px 10px 30px;
}



.banner-section{
  padding: 112px 0 48px;
  background-position: top center;
  background: url(../images/banner03.svg) no-repeat;
  background-size: cover;
  height: 580px;
}


.fomr .form-control {
  height: 60px;
  width: 80%;
  font-size: 18px;
  text-indent: 10px;
  border-radius: 7px 0 0 7px;
}
.btn-search{
  background: var(--lightcolor);
  height: 60px;
  width: 69px;
  font-size: 24px;
  text-align: center;
  justify-content: center;
  font-weight: 600;
  color: #fff;
  border-radius: 0 7px 7px 0;
}
.btn-search i{
  margin-right: 5px;
}
.banner-set h1{
  font-size: 50px;
  font-weight: 700;
  color: var(--text-color);
}
.banner-set h5{
  font-size: 20px;
  color: var(--text-color);
  font-weight: 600;
}
.banner-set h1 span{
  color: var(--lightcolor);
  font-weight: 800;
}
.shap-1{
  background: #FF9629;
  width: 11px;
  height: 11px;
  border-radius: 50px;
  position:absolute;
  top: -50px;
  left: 120px;
}

.shap-2{
  background: #F15F24;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  position:absolute;
  top: -100px;
  left: 150px;
}
.shap-3{
  position:absolute;
  top: -100px;
  right: 180px;
  -webkit-animation:spin 4s linear infinite;
  -moz-animation:spin 4s linear infinite;
  animation:spin 4s linear infinite;

}

.bounce {
  animation: bounce 2s ease infinite;
}
@keyframes bounce {
    70% { transform:translateY(0%); }
    80% { transform:translateY(-25%); }
    90% { transform:translateY(0%); }
    95% { transform:translateY(-7%); }
    97% { transform:translateY(0%); }
    99% { transform:translateY(-3%); }
    100% { transform:translateY(0); }
}
@keyframes pulse {
  from { transform: scale(0.8); }
  to { transform: scale(1.2); }
}

.pulse {
  animation: pulse 1s infinite ease-in-out alternate;
}

@-moz-keyframes spin { 
  100% { -moz-transform: rotate(360deg); } 
}
@-webkit-keyframes spin { 
  100% { -webkit-transform: rotate(360deg); } 
}
@keyframes spin { 
  100% { 
      -webkit-transform: rotate(360deg); 
      transform:rotate(360deg); 
  } 
}

.arrow-dot{
 
  box-sizing: border-box;
  position: relative;
  -webkit-animation: sdb10 2s infinite;
  animation: sdb10 2s infinite;
  box-sizing: border-box;
  font-size: 30px;
}

@-webkit-keyframes sdb10 {
  0% { -webkit-transform: translate(0, 0); opacity: 0;}
  40% { opacity: 1;}
  80% { -webkit-transform: translate(0, 20px); opacity: 0; }
  100% { opacity: 0; }
}
@keyframes sdb10 {
  0% { transform: translate(0, 0); opacity: 0;}
  40% { opacity: 1;}
  80% { transform: translate(0, 20px); opacity: 0;}
  100% { opacity: 0;}
}

.why-choose-div{
  background: var(--darkcolor);
  padding: 90px 0;
}
.why-choose-div h2{
  font-size: 45px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 55px;
}
.why-choose-div p{
  font-size: 18px;
  font-weight: 300;
}
.comon-numbers{
  border-bottom: solid 2px #fff;
  padding-bottom: 25px;
}
.comon-numbers svg{
  width: 40px;
  height: 40px;
  color: var(--lightcolor);
}
.comon-numbers h3{
  color: var(--whitecolor);
  font-size: 45px;
  font-family: "Anek Malayalam", sans-serif;
  font-weight: 600;
}
.comon-numbers p{
  color: #b6b6b6;
  font-weight: 600;
}
.cion{
  font-size: 45px;
  color: #b6b6b6;
}

.est-div{
  padding: 70px 0;
}
.sub-texr{
  font-size: 20px;
  color: var(--lightcolor);
}
.cm-head{
  font-size: 45px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 55px;
  color: var(--text-color);
}

.comon-lilsn{
  box-shadow: #00000014 7px 2px 28px;
  border-radius: 8px;
  padding: 26px;
  min-height: 260px;
}
.comon-lilsn h5{
  color: var(--text-color);
  font-weight: 700;
  font-family: "Anek Malayalam", sans-serif;
  font-size: 25px;
}
.comon-lilsn i{
  color: var(--lightcolor);
  font-size: 35px;
}
.btn-sera{
  background: var(--lightcolor);
  color: var(--whitecolor);
  text-transform: capitalize;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  padding: 12px 20px;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: #f0720b54 1px 10px 30px;
  display: inline-block;
}
.btn-sera svg{
  width: 18px;
  height: 18px;
  font-size: 18px;
}

.popular-topic{
  padding: 70px 0;
  background: #e6eafe;
  margin-top: 30px;
}
.sub-para{
  font-size: 18px;
  font-weight: 300;
}

.popular-topic .nav-tabs .nav-item.show .nav-link, 
.popular-topic .nav-tabs .nav-link.active{
  border: none;
  border-bottom: solid 4px var(--lightcolor);
  color: var(--lightcolor);
  background: none !important;
}
.popular-topic .nav-tabs .nav-link{
  font-size: 19px;
  font-weight: 700;
  color: var(--text-color);
  padding: 0;
  margin-right: 25px;
}

.btn-all{
  background: var(--text-color);
  font-weight: 600;
  color: var(--whitecolor) !important;
  border-radius: 8px;
  font-size: 15px;
  padding: 12px 20px;
  font-weight: 600;
  box-shadow: #242f6754 1px 10px 30px;
  transition: all 0.5s;
}
.btn-all:hover{
  background: var(--lightcolor);
  box-shadow: #f0720b54 1px 10px 30px;
}

.comon-question{
  background: var(--whitecolor);
  padding: 30px;
  border-radius: 25px;
  min-height: 200px;
}
.rating{
  color: var(--lightcolor);
}
.comon-question h5{
  font-size: 20px;
  font-weight: 700;
  color: var(--text-color);
  font-family: "Anek Malayalam", sans-serif;
}
.comon-question p{
  font-size: 15px;
  font-weight: 600;
}
.comon-question .btn{
  color: var(--lightcolor);
  font-weight: 700;
  font-size: 14px;
  text-decoration: underline;
}

.popular-topic .nav-tabs{
  border-bottom: none;
}
.browser-topic{
  padding: 70px 0;
}

.comon-subjects{
  background: var(--whitecolor);
  padding: 30px;
  border-radius: 25px;
  min-height: 164px;
  box-shadow: #00000017 1px 5px 14px;
}
.comon-subjects .iconu{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  font-size: 27px;
  line-height: 55px;
}
.comon-subjects h5{
  font-weight: 700;
  font-size: 18px;
  color: var(--text-color);
}
.redc{
  background: #fbab6e;
}
.bluec{
  background: #6b8bfb;
}
.geenc{
  background: #1fe8b7;
}

.pinkc{
  background: #fb6bb8;
}

.acount-puws-div{
  padding: 70px 0;
  margin-top: 50px;
  background: url(../images/sub-textr.jpg) center no-repeat;
  background-size: cover;
}
.btn-aquestion{
  background: var(--whitecolor);
  color: var(--text-color);
  font-size: 16px;
  font-weight: 800;
  border-radius: 8px;
  padding: 12px 20px;
}

.testimolas-div{
  padding: 70px 0;
}
.comon-testi{
  border-radius: 20px;
  background-color: #fff;
  border: 1px solid #e1e4e5;
  padding: 25px;
}
.user-div figure{
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 50%;
}
.user-div figure img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.user-div h5{
  font-weight: 700;
  color: var(--darkcolor);
  font-size: 18px;
}
.user-div h5 span{
  font-weight:300;
  color: var(--darkcolor);
  font-size: 14px;
  margin-top: 4px;
}
.qoute-icou{
  font-size: 45px;
  color: var(--text-color);
}
.accordion-button{
  font-size:20px;
  font-weight: 600;
  color: var(--text-color);
  
}
.accordion-button:not(.collapsed){
  background-color: var(--lightcolor);
  color: var(--whitecolor);
}

footer{
  background: var(--text-color);
  padding: 70px 0 20px 0;
}
.socli a{
  border: solid 2px #4b5585 !important;
  color: var(--whitecolor) !important;
  font-size: 20px;
  margin-right: 5px;
  padding: 8px 14px;
  border-radius: 8px;
}
.comon-ft h5{
  font-size: 22px;
  font-family: "Anek Malayalam", sans-serif;
  font-weight: 600;
}
.comon-ft a{
  color: var(--whitecolor);
  line-height: 25px;
  font-weight: 400;
  font-size: 15px;
  display: inline-block;
  width: 100%;
  margin-bottom: 10px;
  transition: all 0.5s;
}
.comon-ft a:hover{
  color: var(--lightcolor);
}
footer hr{
  background: #d9d9d9;
  margin: 0;
}

/* listing page */


.slider-bar{
  position: fixed;
  top:0;
  left: 0;
  width: 250px;
  border-right: solid 2px #e9e9f0;
  min-height: 100vh;
  padding: 30px 20px 20px 25px;
  background: var(--whitecolor);
}

.body-part01{
  padding-left: 250px;
  width: 100%;
}
.body-part01{
  /* background: #f5f4f6; */
  background: #fff;
  min-height: 100vh;
}
.top-listing-head{
  background: var(--whitecolor);
  padding:18px 20px;
}
.top-listing-head li a{
  font-size: 15px;
  font-weight: 500;
  color: var(--text-color);
  margin: 0 10px;
}
.btn-signing{
  background: var(--lightcolor);
  color: var(--whitecolor) !important;

}
.serahc-div{
  border: 1px solid #d3d9e0;
  border-radius: 9999px;
  height: 45px;
  width: 86%;
}
.serahc-div .form-control{
  border: none !important;
  height: 52px;
  background: none !important;
  font-size: 14px;
}
.serahc-div .form-control:focus::placeholder{
  color: transparent !important;
}
.serahc-div .btn{
  font-size: 18px;
}
.btn-avdanced{
  background: var(--text-color);
  color: var(--whitecolor) !important;
  font-size: 15px;
  display: inline-block;
  height: 43px;
  padding: 0 13px;
  border-radius: 8px;
  font-size: 21px;
}
.left-ser{
  width: 90%;
}
.features-body{
  padding:18px 28px;
}

.features-body .cm-head{
  font-size: 30px;
}

.pagination{
  width: 900px;
  margin:0;
}
.pagination a{
  float: left;
  list-style: none;
  margin-left: 15px;
  color: var(--text-color);
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
  text-transform: capitalize;
}
.mix{
	display: none;
}
a.jp-current{
  color: var(--lightcolor);
  border: solid 1px;
  padding: 5px 14px;
}
.categories .btn{
   border: none;
   font-size: 16px;
   font-weight: 400;
   color: #2f3e4e;
   border-radius: 0;
   padding: 12px 16px;
   text-transform: capitalize;
}
.categories .active{
  color: var(--lightcolor);
  border-bottom: solid 4px var(--lightcolor);
}
.sort-text span{
  font-size: 15px;
  width: 88px;

}
.sort-text .form-select:focus{
  box-shadow: none;

}
.sort-text .form-select{
  font-size: 16px;
  padding: 9px 18px;
  border-radius: 50px;
  font-weight:500;
  color: #4c5966;
}
.righty-divu{
  padding-top: 16px;
}
.btn-filter{
  background: var(--whitecolor);
  font-size: 16px;
  padding: 9px 18px;
  border-radius: 8px;
  border: 1px solid #ced4da;
  border-radius: 50px;
  font-weight:500;
  color: #4c5966;
}
.hands{
  font-size: 14px;
  font-weight: 700;
  color: #9ea9b5;
}
.hands i{
  font-weight: inherit;
  font-size: 17px;
}
.coon-listnks{
  padding:0;
  border-radius: 10px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  min-height: 170px;
}
.coon-listnks figure{
  border: solid 8px #e6ebef;
  height: 98px;
  border-radius: 12px;
  overflow: hidden;
  width: 116px !important;
}
.coon-listnks figure img{
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: top;
}
.pro-titel{
  font-size: 16px;
  font-weight: 700;
  color: var(--text-color);
}
.new{
  background: var(--lightcolor);
  color: var(--whitecolor);
  padding:0 8px;
  font-weight: 600;
  border-radius: 50px;

  font-size: 12px;
  font-weight: 700;
  height: 16px;
  line-height: 16px;

}
.let{
  background-color: #e2effd;
  color: var(--text-color);
  padding: 0 8px;
  border-radius: 50px;

  
  font-size: 12px;
  font-weight: 700;
  height: 16px;
  line-height: 16px;
}

/* listing details */

.listing-subheader .serahc-div{
  width: 26%;
  margin-left: 8% !important;
}

.listing-subheader .btn-get-stred1{
  font-size: 14px;
  font-weight: 700;
}
.listing-subheader .btn-get-stred{
  font-size: 16px;
  font-weight: 500;
  border-radius: 50px;
  padding: 8px 20px;
  font-family: inherit;
}
.listing-subheader{
  padding: 8px 32px;
  border-bottom:none;
  box-shadow: 0 1px 0 #d3d9e0;
}

.coon-listnks .btn-floder0{
  font-size: 15px;
  font-weight: 500;
  color: var(--text-color);
}
.btn-chome{
  font-size: 14px;
  font-weight: 500;
  color: #4c5966;
}
.coon-listnks ul li{
  font-size: 14px;
  font-weight: 400;
  color: #7a838c;
}
.body-part01{
  width: calc(100% - 300px);
  padding-left: 0;
}
.slider-bar{
  position:relative;
  width: 300px;
  top:0;
  left: 0;
  height: 100vh;
  overflow-y: auto;
  padding-top: 29px;
}
.guest-user-div .user-name{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
}
.guest-user-div .user-name img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.left-user{
  width: 69%;
  display: inline-block;
  padding-left: 15px;
}
.left-user h5{
  font-size: 16px !important;
  font-weight: 700 !important;
}
.left-user a {
  font-size: 12px;
  text-overflow: ellipsis;
  font-weight: 500;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
  color: var(--lightcolor);
}
.left-user a i{
  font-size: 16px;
}

.btn-addone{
  background: var(--text-color);
  color: var(--whitecolor) !important;
  border-radius: 50px;
  width: 100%;
  /* height: 46px; */
  font-size: 17px;
  font-weight: 700;
  margin-top: 21px;

  font-size: 16px;
  font-weight: 500;
  min-height: 40px;
  padding: 5px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-addone i{
  font-size: 14px;
}

.slider-bar .accordion-button {
  background: none !important;
  padding: 0;
  color: var(--darkcolor);
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 10px;
  border: none !important;
  padding-bottom: 18px;
}
.slider-bar .accordion-button:focus{
  box-shadow: none;
}
.slider-bar .accordion-button  span.bg01{
  margin-right: 10px;
}
.slider-bar i{
  font-size: 24px;
  color: #4c5966;
}
.btn-addone i{
  color: #fff !important;
}
.slider-bar .accordion-item{
  border: none;
}
.slider-bar h5{
  font-weight: 500;
  font-size: 14px;
}
.cm-menu{
  font-weight: 500;
  margin-bottom: 12px;
  font-size: 16px;
  display: flex !important;
  align-items: center;
}
.cm-menu span:first-child{
  margin-right: 5px;
}
.btn-adiu{
  border: solid 1px #d3d9e0 !important;
  width: 100%;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color);
  display: flex;
  justify-content: center;
  align-items: center;
}


.slider-bar::-webkit-scrollbar-thumb:hover,
.infomation-tabs::-webkit-scrollbar-thumb:hover,
.min-height::-webkit-scrollbar-thumb:hover,
.total-chats::-webkit-scrollbar-thumb:hover {
  background: var(--text-color);
 }
 .slider-bar::-webkit-scrollbar,
 .infomation-tabs::-webkit-scrollbar,
 .min-height::-webkit-scrollbar,
 .total-chats::-webkit-scrollbar  {
  width: 6px;
 }
 
 
 
 /* Track */
 
 .slider-bar::-webkit-scrollbar-track,
 .infomation-tabs::-webkit-scrollbar-track,
 .min-height::-webkit-scrollbar-track,
 .total-chats::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
 }
 
 
 
 /* Handle */
 
 .slider-bar::-webkit-scrollbar-thumb,
 .infomation-tabs::-webkit-scrollbar-thumb,
 .min-height::-webkit-scrollbar-thumb,
 .total-chats::-webkit-scrollbar-thumb   {
  background: var(--text-color);
  border-radius: 10px;
 }
 
 
 
 /* Handle on hover */
 
 .slider-bar::-webkit-scrollbar-thumb:hover,
 .infomation-tabs::-webkit-scrollbar-thumb:hover,
 .min-height::-webkit-scrollbar-thumb:hover,
 .total-chats::-webkit-scrollbar-thumb:hover {
  background: var(--text-color);
 }

 .navbar-brand img{
  width: 80%;
 }

 .listing-subheader .navbar-light .navbar-nav .nav-link{
  font-size: 14px;
  font-weight: 700;
  color: #4c5966;
 }

 /* listing details */

 .listing-details .slider-bar{
  width: 87px;
 }
 .listing-details .user-name{
   display: inline-block;
 }
 .listing-details .btn-addone{
  font-size: 16px;
  font-weight: 500;

  height: 47px;
  width: 47px;
  padding: 0;
 }
 .listing-details .menus-al a span:last-child{
  display: none;
 }
 .listing-details .cm-menu{
  justify-content: center;
 }
 .listing-details .cm-menu span{
  margin-right: 0;
 }
 .listing-details .accordion-button span:last-child{
  display: none;
 }
 .listing-details .accordion-button::after{
  display: none;
 }
 .listing-details .slider-bar h5{
  display: none;
 }

 .listing-details .slider-bar .accordion-button span.bg01 {
  margin-right: 0;
}
.listing-details .slider-bar{
  padding: 93px 11px 20px 25px;
}
.listing-details .slider-bar .accordion-button{
  padding: 0;
  display: flex;
  justify-content: center;
  padding-bottom: 22px;
}

.listing-details .body-part01{
  width: calc(100% - 87px);
}
.infomation-tabs{
  padding-left: 15px;
  border: 1px solid #d3d9e0;
  width: 380px;
  height: 100vh;
  padding-top: 16px;
  padding-right: 14px;
  overflow-x: auto;
  overflow-y: auto;
  background: var(--whitecolor);
}
.listing-details .body-part01 .features-body{
  width: calc(100% - 380px);
}
.quest-sdiv{

}
.infomation-tabs .top-h{
  font-size: 18px;
  font-weight: 500;
  color: var(--lightcolor);
  border-bottom: solid 1px #efefef;
  padding-bottom: 10px;
}

.infomation-tabs .qu-titels{
  color: #0a0a0a;
  font-size: 18px;
  font-weight: 700;
}
.quest-sdiv p{
  font-size: 14px;
  color: #2f3e4e;
}
p.cores{
  font-size: 16px;
  font-weight: 500;
}
a.cat-titel{
  font-size: 16px;
  font-weight: 500;
  color: var(--lightcolor);
}
.btn-tools{
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  color: #4c5966;
}
.usinvert{
  color: #2f3e4e;
}
.univercity-titels{
  color: var(--lightcolor);
  font-size: 16px;
  font-weight: 500;
}

.show_hide{
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  min-height: 40px;
  padding: 8px 20px;
  background-color: #fff;
  box-shadow: inset 0 0 0 1px #d3d9e0 !important;
  color: #4c5966;
  width: 100%;
}
.tcontent h5{
  font-weight: 400;
  font-size: 14px;
}
.tcontent a{
  font-size: 14px;
  font-weight: 700;
  color: var(--lightcolor);
}
.tcontent a:hover,
.univercity-titels:hover{
  text-decoration: underline;
}

.crecond-div h3{
  font-size: 16px;
  font-weight: 500;
}

.crecond-div .coon-listnks figure{
  border-radius: 8px;
  height: 60px !important;
  padding: 4px;
  width: 64px !important;
  border-width: 6px !important;
}
.crecond-div .pro-titel{
  font-size: 14px;
}
.liked{
  font-size: 12px;
  font-weight: 500;
}
.liked i{
  color: var(--lightcolor);
}
.comon-list  p{
  color: #7a838c;
  font-size: 13px;
}
.comon-list  p > a{
  color: var(--lightcolor);
  font-weight: 700;
}
.comon-list h3{
  font-size: 16px;
  font-weight: 500;
}
.cm-file{
  font-size: 14px;
  font-weight: 700;
  color: var(--lightcolor);
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  width: 100%;
}
.cm-file i{
  margin-right: 5px;
}
.min-height{
  height: 100vh;
  overflow: auto;
}

.btn-downalo{
  background: var(--lightcolor);
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  min-height: 40px;
  padding: 8px 20px;
  color: var(--whitecolor) !important;
}

.btn-alid{
  background: var(--whitecolor);
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  min-height: 40px;
  padding: 8px 20px;
  color: var(--darkcolor) !important;
  box-shadow: inset 0 0 0 1px #d3d9e0 !important;
}

.btn-like2,
.btn-like1{
  background: var(--whitecolor);
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  min-height: 40px;
  padding: 8px 20px;
  color: var(--darkcolor) !important;
  box-shadow: inset 0 0 0 1px #d3d9e0 !important;
  display: inline-block;
  width: 112px;
}

.btn-save{
  background: var(--whitecolor);
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  min-height: 40px;
  padding: 8px 20px;
  color: var(--darkcolor) !important;
  box-shadow: inset 0 0 0 1px #d3d9e0 !important;
}
.btn-share{
  background: var(--whitecolor);
  box-shadow: inset 0 0 0 1px #d3d9e0 !important;
  border-radius: 50%;
    font-size: 16px;
    font-weight: 500;
    height: 40px;
    width: 40px;
}

.cm-videer{
  border-radius: 14.14px;
  border: 1px solid #e6ebef;
}

.listing-details{
  overflow: hidden;
  height: 100vh;
}

/* plans */

.plans {
  padding-top: 7px;
}
.cm-tls{
  font-size: 16px;
  font-weight: 700;
  color: var(--text-color);
}
.sub{
  font-size: 14px;
  font-weight: 500;
}

.pricing-table{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: min(1600px, 100%);
  margin: auto;
}

.pricing-card{
  flex: 1;
  max-width: 360px;
  background-color: #fff;
  margin: 20px 10px;
  cursor: pointer;
  overflow: hidden;
  color: #2d2d2d;
  transition: .3s linear;
  border: solid 1px #ededed;
  border-radius: 10px;
  height: 482px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.bg-pri{
  background: var(--text-color) !important;
}
.pricing-card-header{
  background-color: #f0720b;
  display: inline-block;
  color: #fff;
  padding: 9px 22px 12px 22px;
  border-radius: 0 0 20px 20px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  transition: .4s linear;
  position: absolute;
  top: 0;
  right: 20px;
}



.price{
  font-size: 38px;
  color: var(--text-color);
  margin: 24px 0;
  font-weight: 700;
  transition: .2s linear;
}

.price sup, .price span{
  font-size: 16px;
  font-weight: 700;
}
.pricing-card p{
  font-size: 16px;
  font-weight: 400;
}


.pricing-card li{
  font-size: 16px;
  padding: 10px 0;
  text-transform: uppercase;
}

.order-btn{
  display: inline-block;
  margin-bottom: 40px;
  margin-top: 25px;
  color: var(--whitecolor);
  background: var(--lightcolor);
  padding:10px 20px;
  border-radius: 80px;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  transition: .3s linear;
}

.order-btn:hover{
  background-color: var(--text-color);
  color: #fff;
}

.list05 h4{
  font-size: 18px;
  font-weight: 700;
  color: var(--text-color);
}
.list05 ul li{
  font-size: 15px;
  text-transform: capitalize;
  line-height: 20px;
  font-size: 15px;
  text-transform: capitalize;
  line-height: 23px;
  margin-bottom: 8px;
  padding: 0;
  display: flex;
  align-items: start;
}
.list05 ul li i{
  color: var(--lightcolor);
  font-size: 20px;
  margin-right: 8px;
}
@media screen and (max-width:1100px){
  .pricing-card{
    flex: 50%;
  }
}

.offer-price .pricing-card-header{
   background: red;
}

.listing-main{
  overflow: hidden;
  height: 100vh;
}

.features-body{

}
.cm-videer{
  height: 100vh;
}
.cm-videer iframe{
  width: 100%;
  height: 600px;
}


.pdfobject-container { height: 500px; border: 1px solid #ccc; }

/* home */

.home-main .headiering-steps{
  padding-top: 70px;
}
.home-main .headiering-steps .cm-head{
  font-size: 18px;
  font-weight: 700;
}
.account-chomes{
  background-color: #f6f7fb;
  border-radius: 12px;
  color: #2f3e4e;
  display: flex;
  padding: 16px;
  height: 170px;
  align-items: center;
  padding-top: 21px;
}
.account-chomes h5{
  font-size: 16px;
  font-weight: 500;
}
.account-chomes .btn{
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  min-height: 40px;
  padding: 8px 20px;
  background: var(--lightcolor);
  color: var(--whitecolor);
}
.items-com1 .img-pico{
  border-radius: 20px;
  height: 148px;
  padding: 12px;
  background: #e6ebef;
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.items-com1 .img-pico figure{
  height: 126px;
  overflow: hidden;
  display: inline-block;
  border-radius: 10px;
}
.items-com1 .img-pico img{
  border-radius: 10px;
}
.items-com1 .img-pico p{
  position: absolute;
  right: 0;
  bottom: 0;
  padding:5px 12px;
  background: #e6ebef;
}


.content-duy .tites{
  font-weight: 500;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  overflow-wrap: break-word;
  text-overflow: ellipsis;
  white-space: normal;
  height: 70px;
  font-size: 16px;
  color: var(--lightcolor);
}
.content-duy .css-text{
  color: #9ea9b5;
  display: -webkit-box;
  font-size: 14px;
  margin: 8px 0;
  overflow: hidden;
  overflow-wrap: break-word;
  text-overflow: ellipsis;
  width: 100%;
}
.content-duy .btn{
  background-color: #f6f7fb;
  color: #2f3e4e;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  min-height: 32px;
  width: 100%;
  padding: 8px 16px;
  box-shadow: inset 0 0 0 1px #d3d9e0;
}

.con-head{
  font-size: 18px;
  font-weight: 700;
  line-height: 110%;
  margin: 0 0 12px;
}

.items-com1:hover .btn{
  background: var(--lightcolor);
  color: var(--whitecolor) !important;
}

.comon-listing-tabs{
  margin-bottom: 50px;
}

.items-nt{
  border-radius: 20px;
  height: 100%;
  min-height: 222px;
  padding: 16px;
  background: var(--lightcolor);
  position: relative;
}
.items-nt .btn{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  width: 84%;
  margin: auto;
}
.items-nt .tabu,
.items-nt .tites{
  color: var(--whitecolor);
  font-weight: 700;
 
}

/* .items-nt .tites{
  font-size: 14px !important;
} */

/* .items-nt .content-duy .css-text a{
  font-size: 12px !important;
} */

.items-nt .content-duy .tites{
   height: auto;
}
.items-nt .content-duy ul li a{
  font-size: 12px ;
  color: var(--whitecolor);
}
.items-nt .content-duy .btn{
  box-shadow: none !important;
  font-size: 13px;
}
.linke i{
  color: green;
}
.trading-div{
  background: #d4dbff !important;
}
.trading-div .btn{
  background: var(--text-color);
}

.items-nt:hover .btn{
  background: var(--text-color);
}
.account-chomes figure{
  width: 15%;
  display: inline-block;
}

/* chat  */

.rt-search{
  border: 1px solid #d3d9e0;
  border-radius: 9999px;
  height: 45px;
  width: 45%;
  padding-left: 15px;
  padding-right: 8px;
}
.rt-search .form-control{
  border: none !important;
  background: none;
  font-size: 16px;
}
.rt-search .form-control:focus::placeholder{
  color: transparent;
}
.rt-search .btn{
  font-size: 20px;
}

.group-chat{
  background: #fff;
  border: 1px solid #d3d9e0;
  border-radius: 20px;
  display: inline-block;
  font-weight: 400;
  padding: 20px 16px;
  width: 100%;
}
.group-chat h6{
  color: var(--text-color);
  font-size: 14px;
  font-weight: 500;
}
.group-chat h6 i{
  font-size: 18px;
}
.group-chat h5{
  color: var(--lightcolor);
  font-size: 16px;
  font-weight: 700;
}
.cou-user{
  width: 45px;
  height: 45px;
  overflow: hidden;
  border-radius: 50%;
  border: solid 1px #fff;
  box-shadow:#0000000d 1px 2px 10px;
}
.group-chat p{
  font-size: 14px;
}
.cou-user img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cou-user:last-child{
  margin-left: -15px;
}

/* chat details */

.top-chart-head{
  padding-top: 68px;
}
.close-ts{
  font-size: 25px;
  margin-right: 20px;
}
.names-div h4{
  font-size: 18px;
  color: var(--lightcolor);
  font-weight: 700;
}
.names-div li{
  color: #9ea9b5;
  font-size: 15px;
  font-weight: 500;
}

.body-chats{
  background: #f6f7fb;
  height: 75%;
  overflow-x: hidden;
  overflow-y: auto;
}
.total-chats{
  height: 85%;
  overflow-x: hidden;
  overflow-y: auto;
}
.user{
  width: 60px;
  height: 60px;
  display: inline-block;
  border-radius: 50%;
  overflow: hidden;
}
.user img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.text-box01::before{
  position: absolute;
  left: -14px;
  top: 0;
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  /* background: #fff; */
  border-right: solid 14px #fff;
  border-top: 11px solid transparent;
  border-bottom: solid 11px transparent;
}
.text-box01 h5{
  font-size: 13px;
  font-weight: 700;
}
.text-box01 p{
  font-size: 14px;
  color: #4c5966;
  font-weight: 500;
  margin-top: 5px;
}
.btn-1{
  font-size: 14px;
  font-weight: 700;
  color: var(--lightcolor);
}
.group-chats-btn span{
  font-size: 14px;
  font-weight: 500;
}

.chat-input-box{
  background: #fff;
  border-radius: 50px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 21px;
  display: inline-block;
  width: 96%;
  height: 70px;
  margin: auto;
  border: solid 1px #e9e9e9;
  padding-left: 15px;
}
.chat-input-box .form-control{
  height: 70px;
  font-size: 15px;
  border: none !important;
  background: none !important;
}
.chat-input-box .form-control:focus::placeholder{
  color: transparent;
}
.btn-mesg{
  border: solid 1px var(--text-color);
  border-radius: 50px;
  width: 40px;
  height: 40px;
  font-size: 18px;
  text-align: center;
  display: table;
  padding-right: 4px;
  color: var(--text-color);
}
.btn-mesg:hover{
  background: var(--lightcolor);
  color: var(--whitecolor) !important;
  border-color: var(--lightcolor) !important;
}

.reply-box {
  margin-left: 8%;
  width: 92%;
  margin-top: 11px;
}
.own-user{
  width: 60px;
  height: 60px;
  display: inline-block;
  border-radius: 50%;
  overflow: hidden;
  background: var(--text-color);
  color: var(--whitecolor);
  text-transform: uppercase;
  text-align: center;

}
.own-user h5{
  font-size: 35px;
  line-height: 60px;
}

.reply-box-chats{
  display: none;
  margin-bottom: 10px;
}
.reply-box-chats .form-control{
  height: 50px;
  resize: none;
  border: none;
  font-size: 14px;
}
.reply-box-chats .form-control:focus::placeholder{
  color: transparent;;
}
.send-btn{
  background: var(--lightcolor);
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  color: var(--whitecolor) !important;
}
.send-btn2{
  background: var(--darkcolor);
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  color: var(--whitecolor) !important;
}

.chats-indide{
  display: none;
}
.links-chat{
  cursor: pointer;
}

/* modal */

.comu-modal .modal-title{
  font-size: 26px;
  font-weight: 700;
  color: var(--text-color);
}
.comu-modal .modal-content{
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, .14);
}
.comu-modal .modal-header,
.comu-modal .modal-footer{
  padding: 0;
  border: none !important;
}

.search-div-modal{
  border: 1px solid #d3d9e0;
  height: 40px;
  border-radius: 50px;
  padding-left: 8px;
  padding-right: 5px;
}
.search-div-modal .form-control{
  border: none !important;
  background: none !important;
}
.search-div-modal .btn-search05{
  font-size: 18px;
}
.comon-course{
  background: #f7f7f7;
  padding: 16px;
  border-radius: 15px;
}

.comon-course .ciou{
  padding: 12px;
  font-size: 26px;
  color: var(--lightcolor);
}
.comon-course h5{
  font-size: 15px;
  font-weight: 700;
  color: var(--lightcolor);
}
.comon-course ul{
  margin-top: 8px;
}
.comon-course li{
  font-size: 14px;
  font-weight: 500;
  margin-right: 10px;
}
.btn-searc{
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  min-height: 40px;
  padding: 8px 20px;
  background: var(--lightcolor);
  color: var(--whitecolor);
}
.btn-secondary01{
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  min-height: 40px;
  padding: 8px 20px;
  background-color: #f1f7fe;
    color: var(--darkcolor);
}

.mobile-menu-div .close-menu {
  background: none !important;
  border: none !important;
}
.mobile-menu-sec li a, .mobile-menu-sec li .dropdown .btn {
  text-decoration: none;
  color: #212529;
  padding: 10px 5px 10px 10px;
  display: block;
  background: #f7f7f7;
  margin-bottom: 8px;
  width: 100%;
  text-align: left;
}
.active-m a {
  background-color: #f0720b !important;
  color: #fff !important;
}
.side-media {
  list-style-type: none;
  margin-top: 15px;
  display: flex;
}
.side-media li {
  margin: 0 10px 0 0;
}
.side-media li a {
  background: #181818;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  display: inline-block;
}


/* login */

.com-div-md {
  background: #fff;
  padding-top: 25px;
  padding-bottom: 25px;
}
.login-div-modal .close {
  transform: none;
  position: absolute;
  right: 6px;
  top: 7px;
  border: none;
  background: none;
  font-size: 29px;
  background: var(--lightcolor);
  border-radius: 50px;
  width: 35px;
  height: 35px;
  display: grid;
  align-content: center;
}
.login-modal-pn .form-control {
  border: none;
  font-size: 15px;
  background: #f3f3f3;
  height: 45px;
  margin-bottom: 20px;
}
.com-div-md h5 {
  font-weight: 600;
  color: var(--darkcolor);
  font-size: 35px;
}

.login-div-modal .modal-content, .login-div-modal .modal-header {
  background: none;
  border: none;
}
.login-modal-pn {
  padding: 10px 40px 30px 40px;
}
.login-div-modal .close svg {
  color: #fff !important;
  width: 24px;
  height: 24px;
  margin: auto;
  display: table;
}
.continue-bn {
  background: var(--lightcolor);
  color: #fff !important;
  font-weight: 400;
  width: 100%;
  display: inline-block;
  box-shadow: 0 20px 30px 0 rgba(172, 172, 172, .4);
  text-transform: capitalize;
  font-style: normal;
  letter-spacing: 1px;
  font-size: 16px;
  height: 45px;
  line-height: 31px;
  transition: all .5s;
}
.continue-bn:hover{
  background: var(--text-color);
}

.com-div-md p a {
  text-transform: capitalize;
  font-style: normal;
  font-weight: 600;
  color: var(--lightcolor);
  transition: all .5s;
  cursor: pointer;
}
.w-95{
  width: 92%;
}



/* landing */

.landing-baner.banner-section{
  min-height: 500px;
  padding-top: 60px;
  margin-top:0;
  background: rgb(240,114,11);
background: radial-gradient(circle, rgba(240,114,11,1) 0%, rgba(204,97,9,1) 97%);
height: auto;
padding-bottom: 0;
}

.landing-baner.banner-section h2{
	font-size: 75px;
	font-family: "Anek Malayalam", sans-serif;
	text-transform: capitalize;
	font-weight: 800;
	color: var(--whitecolor);
}
.landing-baner.banner-section h2::before{
	position: absolute;
	bottom: -6px;
	left: 0;
	width: 70px;
	height: 3px;
	content: "";
	border-radius: 10px;
	background: var(--whitecolor);
}
.landing-baner.banner-section h2::after{
	position: absolute;
	content: "";
	right: 28%;
    top: 32%;
	background: url(../images/line-pic.png) no-repeat;
	width: 48px;
	height: 51px;
}
.landing-baner.banner-section p{
	font-size: 17px;
	color: var(--darkcolor);
	font-weight: 500;
}
.shape-ico{
	position: absolute;
	right: 0;
	bottom: 0;
}
.tabsg-form thead{
	background: var(--lightcolor);
}
.tabsg-form th{
	padding: 14px;
	color: var(--whitecolor);
}
.picu{
	position: relative;
	z-index: 2;
	margin-top: -55px;
}
.wow{
	position: absolute;
	top:0;
	left: 0;
    -webkit-animation: action 1s infinite  alternate;
    animation: action 1s infinite  alternate;
}
.circle {
	width: 55px;
    height: 55px;
    position: absolute;
    top: 10px;
    left: -3px;
    right: 0;
	bottom: 0;
	border-radius: 50%;
	background-color: #33cc33;
	margin: auto;
	transform: scale(1, 1);
  }
.circle.pulse {
	-webkit-animation-timing-function: ease;
			animation-timing-function: ease;
	-webkit-animation: pulse 2s infinite;
			animation: pulse 2s infinite;
			background-color: #e66b07;
  }

  .iconsu {
    width: 59px;
    height: 66px;
}

  span.icu05 {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 49px;
  }
  .get-btn h6{
	color: var(--whitecolor);
	font-size: 22px;
	margin-left: 12px !important;
    margin-top: 11px !important;
	text-align: left;
  }
  .get-btn h6 span{
	font-size: 15px;
	color: var(--darkcolor);
  }
  
  .landing-baner.banner-section::before{
	position: absolute;
	content: "";
	left: 0;
	top:0;
	width: 809px;
	min-height: 100%;
	background: url(../images/bng.png) no-repeat;
	background-size: contain;
  }
  .landing-baner.banner-section .container{
	position: relative;
	z-index: 3;
  }

  .top-rex-parts{
	padding: 70px 0;
  }

  .comon-heading-text h6{
	text-transform: uppercase;
	color: var(--lightcolor);
	font-family: "Poppins", sans-serif;
	margin-bottom: 11px;
	font-size: 16px;
    letter-spacing: 2px;

  }
  .comon-heading-text h2{
    font-family: "Anek Malayalam", sans-serif;
	font-weight: 800;
	font-size: 39px;
	color: var(--darkcolor);
  }

  .top-rex-parts li {
    border: solid 2px #f5f8fa;
    color: var(--darkcolor);
	padding: 13px 23px;
    font-size: 15px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    width: 80%;
  }
  .top-rex-parts li i{
	font-size: 20px;
  }
  .top-rex-parts li span{
	margin-right: 10px;
  }
  .form-section{
	background: #f8f9fc;
	padding: 35px;
	border: solid 2px #f3f4fa;
  }
  .form-section .form-control{
	height: 50px;
	border: solid 2px #f3f4fa;
	font-size: 14px;
    font-weight: 500;
    color: var(--darkcolor);
    text-indent: 10px;

  }
  .form-section .form-control::placeholder{
	color: var(--darkcolor);
  }
  .form-section .form-select{
    height: 50px;
	border: solid 2px #f3f4fa;
	font-size: 14px;
    font-weight: 500;
	color: var(--darkcolor);
	padding-left: 18px;
	
  }
  .df{
	height: 50px;
	border: solid 2px #f3f4fa;
	font-size: 14px;
    font-weight: 500;
	color: var(--darkcolor);
	padding-left: 18px;
	background: var(--whitecolor);
	padding-top: 10px;

  }
  
  .df .form-control{
	height: auto;
	border: none;
  }
  .btn-submit{
	height: 50px;
	font-size: 15px;
    font-weight: 600;
    color: var(--whitecolor);
	background: var(--lightcolor);
	width: 100%;
	text-transform: uppercase;
  }
  .btn-submit i{
	margin-left: 5px;
	font-weight: 500;
  }
  .btn-submit:hover{
	background: var(--darkcolor);
	color: var(--whitecolor) !important;
  }
  .top-rex-parts hr{
	background: #bbb;
	margin: 50px 0;
  }
  .btn-remore{
	font-size: 16px;
	font-weight: 600;
	padding: 0;
  }
  .img-pox-part{
	height: 328px;
	border-radius: 8px;
	width: 95%;
	overflow: hidden;
	box-shadow:#0000000f 1px 11px 15px;
  }
  .cover-img{
	object-fit: cover;
	width: 100%;
	height: 100%;
  }
  .btn-remore i{
	color: var(--lightcolor);
  }
  .testimonsal{
	background: var(--darkcolor);
	padding: 28px 0;
  }
  .services-parts{
	background: var(--lightcolor);
	padding: 70px 0;
  }
  .testimonsal figure{
	width: 85px;
	height: 85px;
	border-radius: 50px;
	overflow: hidden;

  }
  .testimonsal figure img{
	object-fit: cover;
	width: 100%;
	height: 100%;
  }
  .testimonsal h5{
	font-size: 18px;
	font-weight: 400;
	width: 90%;
	line-height: 25px;
	margin-top: 8px;
	display: flex;
	align-items: start;
  }
  .testimonsal .owl-nav{
    position: absolute;
    left: 41%;
    bottom: 30px;
  }
  .owl-prev span{
	display: none;
  }
  .owl-prev::after{
	position: absolute;
	content: "";
	left: 0;
	top:0;
  }
  .testimonsal i{
	color: yellow;
  }
  .testimonsal .lri-text i{
	font-size: 20px;
  }
  .testimonsal span.ico8 i{
	color: var(--lightcolor) !important;
	font-size: 35px;
    margin-right: 13px;
  }
  .iuy {
    height: 26px;
    display: inline-block;
    color: var(--whitecolor);
	text-align: center;
	font-size: 37px;
    font-weight: lighter;
    line-height: 32px;
    position: relative;
  }
  .comon-s-div h5::after{
	position: absolute;
    left: 0;
    content: "";
    width: 90%;
    height:2px;
    border-radius: 5px;
    bottom: -10px;
	background: var(--lightcolor);
  }
  .comon-s-div h5{
	font-size: 17px;
	width: 100%;
	position: relative;
	font-family: "Poppins", sans-serif;
  }
  .comon-s-div p{
	margin-top: 25px !important;
	font-size: 15px;
    color: #ffba80;
    font-weight: 300;
  }
  .aqite-doiv{
	overflow: hidden;
  }
  .figures-part{
	height: 700px;
	overflow: hidden;
  }
  .comon-stesps figure {
    width: 56px;
    margin-bottom: 16px;
  }
  .comon-stesps h5{
	font-size: 20px;
	font-weight: 700;
	font-family: "Poppins", sans-serif;
	color: var(--darkcolor);
  }
  .comon-stesps p{
	font-size: 15px;
	color: #959595;
	margin-top: 8px;
  }
  .tables-setion{
	background: #f7f7f7;
	padding: 70px 0;
  }
  .occurs-section{
	background: #fff;
	padding: 70px 0;
  }
  .items-filters{
	min-height: 400px;
	border-radius: 11px;
  }
  .items-filters figure{
	height: 400px;
	border-radius: 11px;
  }
  .items-filters img{
	border-radius: 11px;
	transform: scale(1);
	transition: all 0.5s;
  }
  .items-filters:hover img{
	transform: scale(1.1);
  }
  .img-boxs{
	position: absolute;
	bottom: 0;
    left: 0;
	padding: 25px 10px;
	min-height: 140px;
	border-radius: 11px;
	background: rgb(0,0,0);
	
background: linear-gradient(179deg, rgba(0,0,0,0.0984768907563025) 0%, rgba(0,0,0,0.9304096638655462) 97%);
  }
  .img-boxs p{
	color: #bbb;
	font-size: 14px;
	margin-top: 8px;
  }
  .img-boxs h5{
	font-size: 18px;
  }
  .dark-occurs-section{
	background: var(--darkcolor);
	padding: 70px 0;
  }
  .items-cstions{
	background: #3d3558;
	min-height: 191px;
    width: 100%;
    padding: 25px;
    border: solid 2px #4e456a;
  }
  .items-cstions h5{
	font-size: 22px;
	font-weight: 500;
	font-family: "Poppins", sans-serif;
	display: flex;
	align-items: baseline;
  }
  .items-cstions h5 i{
	font-weight: 300;
	margin-right: 10px;
	font-size: 30px;
	color: var(--lightcolor);
  }
  .right-img{
	position: absolute;
	right: 0;
	top:72%;
	max-width: 40%;
	transform: translateY(-75%);
  }
  .items-cstions p{
	color: #bbb;
	font-size: 15px;
	font-weight: 300;
	margin-top: 10px;
  }
  .testimonials-reviews{
	padding: 70px 0;
  }
  .slier-ts .text-inside{
	background: #f8f9fc;
    padding: 35px;
    border: solid 2px #f3f4fa;
	position: relative;
	
  }
  .slier-ts .text-inside p{
	padding-left: 15px;
  }
  .slier-ts .text-inside p i{
	position:absolute;
	top:15px;
	left: 15px;
  }
  .slier-ts h5{
	font-size: 19px;
	color: var(--darkcolor);
  }
  .slier-ts .text-inside i{
	font-size: 35px;
	color: var(--lightcolor);
  }
  .slier-ts h5 span{
	color: var(--lightcolor);
	font-size: 14px;
	font-weight: 400;
  }
  .form-submit-section{
	background: #271b4c;
	padding: 30px 0;
  }
  .btn-comon{
	background: var(--lightcolor);
	color: var(--whitecolor);
	font-size: 16px;
	padding: 12px 25px;
	border-radius: 11px;
	transition: all 0.5s;
  }
  .btn-comon:hover{
	background: var(--whitecolor);
	color: var(--darkcolor);
  }
  .form-submit-section p{
	color: #847e95;
  }
  footer{
	padding: 50px 0 20px 0;
	background: var(--darkcolor);
  }
  footer p{
	color: #847e95;
  }
  .logow img{
	width: 50%;
	filter: brightness(0) invert(1);
  }
  .rigth-socli a{
	color: var(--whitecolor);
	transition: all 0.5s;
	padding:0 6px;
	font-size: 20px;
  }
  .rigth-socli a:hover{
	color: var(--lightcolor);
  }
  .comon-list-ft h5{
	color: var(--whitecolor);
	font-family: "Poppins", sans-serif;
	font-size: 19px;
	margin-bottom: 15px;
  }
  .comon-list-ft li a{
	color: #847e95;
	font-size: 16px;
	transition: all 0.5s;
	line-height: 39px;
	display: inline-block;
  }
  .comon-list-ft li a:hover{
	color: var(--lightcolor);
  }
  .tabsg-form{
	border: solid 2px #fff;
  }
  .tabsg-form .dt-container{
	padding: 20px;
  }
  .tabsg-form td{
	font-size: 18px;
	font-weight: 700;
	padding-left: 15px;
  }
  .tabsg-form td,
  .tabsg-form th{
	text-align: center;
  }
  .table>:not(:last-child)>:last-child>* {
    border-bottom-color: currentColor;
    text-align: center !important;
  }

  table.dataTable th.dt-type-numeric, table.dataTable th.dt-type-date, table.dataTable td.dt-type-numeric, table.dataTable td.dt-type-date {
    text-align: center !important;
}

  .input-field{
	position: absolute;
    left: 23%;
    top: 33px;
  }
  .tabsg-form .form-select{
	height: 40px;
  }
  div.dt-container div.dt-length select {
    width: auto;
    display: inline-block;
    margin-right: 0.5em;
    height: 40px;
    font-size: 15px;
    /* width: 66px; */
}
  .dt-paging{
	display: none;
  }
  div.dt-container div.dt-search input {
    margin-left: 0.5em;
    display: inline-block;
    width: auto;
    height: 43px;
    width: 300px !important;
    margin-bottom: 14px;
}
  .services-parts .mj-pic{
    height: 540px;
  }
  .comon-s-div.d-inline-block.w-100 {
    background: #e16704;
    padding: 20px;
    min-height: 250px;
}
  
.tabsg-new{
	background: #fbfbfb;
	padding: 60px 0;
}
.tabsg-new .table{
	background: #fff;
	
}
.tabsg-new .tah{
	max-height:450px;
	overflow-y: auto;
}
.tabsg-new .table thead{
	background: var(--lightcolor);
}
.tabsg-new .table thead th{
	color: var(--whitecolor);
	padding: 16px;
}
.tabsg-new .table td{
	padding: 16px;
	color: var(--darkcolor);
	font-weight: 600;
	font-size: 17px;
}
.tabsg-new .table td del{
	color: #bbb;
}
.sp-links .comon-s-div.d-inline-block.w-100 {
    background: #e16704;
    padding: 20px;
    min-height: 208px;
	display: grid;
	align-content: center;
}
.sp-links .mj-pic {
    height: 450px;
}
.sp-links .comon-s-div h5::after{
	display: none;
}
.faq-section{
	padding: 70px 0;
	background: #f8f9fc;
}

.accordion-button{
	font-size:15px;
	font-weight: 600;
	color: var(--darkcolor);
	padding: 15px 25px;
}
.accordion-button i{
	font-weight: lighter;
	font-size: 25px;
	margin-right: 10px;
}
.accordion-button:not(.collapsed) {
    color: var(--darkcolor);
    background-color: var(--lightcolor);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.sde-sider{
	padding: 70px 0;
}
footer hr{
	background: #bbb;
}
.body-part01 {
  width: calc(100% - 300px);
  padding-left: 0;
}
.bg-nes{
  background: var(--text-color);
  color: var(--whitecolor);
}
.new-color-bg{
  background: var(--lightcolor);
  border-color: #ffba82 !important;
  padding: 40px;
  min-height: 469px;
  display: grid;
  align-content: center;
}
.new-color-bg .text-success {
  color: #00e15a !important;
}
.new-color-bg h5,
.new-color-bg h4{
  font-size: 25px;
}
.whats-apps h4{
  font-size: 20px;
}
.topl-text{
  line-height: 41px;
}
.hover-o{
  transform: scale(1);
  transition: all 0.5s;
}
.hover-o:hover{
  transform: scale(1.1);
}
.btn-typeo2 i{
  font-size: 22px;
}

/* plans page */
.topi-p h5{
  font-size: 20px;
  font-weight: 600;
  color: var(--lightcolor);
}
.topi-p p{
  font-weight: 700;
  color: var(--text-color);
}
.topi-p h2{
  font-weight: 700;
  font-size: 45px;
  color: var(--text-color);
}
.topi-p h2  small{
  font-weight: 600;
}
.topi-p h2 sub{
  position: relative;
  top: -3px;
  font-size: 24px;
}



/* dashboard css */

.notific-btn{
  font-size: 20px;
  font-weight: 400;
  border: solid 1px #bbbbbb36;
  border-radius: 7px;
}
.dropd-wnals button{
  background: #fff;
  border: none;
}
.dropd-wnals button .pic-user{
  width: 45px;
  height: 45px;
  overflow: hidden;
  display: inline-block;
  border-radius: 50px;
}
.dropd-wnals button .pic-user .cover-img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.namesd{
  font-size: 14px;
}
.dropd-wnals .dropdown-menu{
  min-width: 14rem;
}
.dropd-wnals .dropdown-item{
  font-size: 14px;
  border-bottom: dashed 1px #f1f1f1;
  padding:8px 12px;
  transition: all 0.5s;
}
.dropd-wnals .dropdown-item:hover{
  background: var(--lightcolor);
  color: var(--whitecolor);
}
.dropd-wnals li:last-child .dropdown-item{
  border-bottom:none !important;
}

.new-bgc{
  background: #f8f9fb;
}
.new-bgc .body-part01{
  background: none !important;
}

.admins-slider h5{
  text-transform: uppercase;
  padding-left: 25px;
}
.admins-slider hr{
  background: #bbb;
}
.admins-slider .cm-menu i{
  margin-right: 8px;
}
.admins-slider .cm-menu{
  padding-left: 25px;
  position: relative;
}

.admins-slider .cm-menu span:last-child{
  font-size: 15px;
}


.admins-slider i{
   color: var(--darkcolor);
}
.admins-slider{
  width: 241px;
  padding-left: 0;
  padding-right: 0;
}
.active-menu{
  color: var(--lightcolor);
}
.active-menu i{
  color: var(--lightcolor);
}
.admins-slider .active-menu::after{
  position: absolute;
  left: 0;
  top:0;
  content: "";
  width: 5px;
  height: 100%;
  background: var(--lightcolor);
}
.right-bd-admin{
  width: calc(100% - 241px);
}
.wlcomset{
  background: #5d35ff url(../images/shpng.png) center no-repeat;
  background-size: contain;
  height: 180px;
  border-radius: 14px;
  display: grid;
  align-content: center;
  padding-left: 30px;
  overflow: hidden;
  position: relative;
  box-shadow: #5d35ff38 3px 8px 15px;
}
.wlcomset h2{
  font-size: 25px;
}
.wlcomset p{
  color: #aad0ff;
}
.wlcomset img{
  position: absolute;
  right: 0;
  top: -60px;
  width: 40%;
}
.btn-explores{
  background: var(--whitecolor);
  color: var(--text-color);
  width: 150px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  padding: 8px 0;
}


@keyframes growProgressBar {
  0%, 33% { --pgPercentage: 0; }
  100% { --pgPercentage: var(--value); }
}

@property --pgPercentage {
  syntax: '<number>';
  inherits: false;
  initial-value: 0;
}

div[role="progressbar"] {
  --size: 12rem;
  --fg: #369;
  --bg: #def;
  --pgPercentage: var(--value);
  animation: growProgressBar 3s 1 forwards;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: 
    radial-gradient(closest-side, white 80%, transparent 0 99.9%, white 0),
    conic-gradient(var(--fg) calc(var(--pgPercentage) * 1%), var(--bg) 0)
    ;
  font-family: Helvetica, Arial, sans-serif;
  font-size: calc(var(--size) / 5);
  color: var(--fg);
}

div[role="progressbar"]::before {
  counter-reset: percentage var(--value);
  content: counter(percentage) '%';
}

.comon-dashboards{
  box-shadow: #eeecf9 1px 20px 25px;
  height: 162px;
  border-radius: 12px;
  padding: 19px 25px;
}
.comon-dashboards h5{
  font-size: 18px;
  font-weight: 700;
  color: var(--text-color);
}
.red-bgh{
  background: #fdefef;
  color: #ff3943;
}
.comon-ocui{
  width: 50px;
  height: 50px;
  display: grid;
  align-content: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  font-size: 24px;
}
.item_bar{
  position: relative;
  background: #efefef;
  width: 100%;
  height: 11px;
  border-radius: 5px;
}
.progress {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
height: 11px;
margin: 0;
  background-color: var(--lightcolor);
  transition: width 100ms ease;
}
.red-bgh-div .progress{
  background-color: #ff3943;
}
.item_value.cell.shrink.float-start {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-color);
}
.item_label.cell.auto.float-end {
  font-size: 13px;
  margin-top: 10px;
}
.coiu{
  position: absolute;
  font-size: 25px;
  right: 10px;
  top: 20px;
  color: green;
}
.greend-vic-div .progress{
  background-color: #00ab25;
}
.greend-vic{
  background: #dbf5ec;
  color: #00ab25;
}
.blue-vc{
  background: #e7f3f8;
  color: #5d35ff;
}
.comon-tabsd{
  box-shadow: #eeecf9 1px 20px 25px;
  border-radius: 12px;
  padding: 19px 25px;
}
.comon-tabsd h5{
  font-size: 18px;
  font-weight: 700;
  color: var(--text-color);
}
.comon-tabsd .all-btn{
  font-weight: 600;
  color: var(--lightcolor);
  font-size: 15px;
  text-decoration: underline;
}
table.table.dataTable.table-striped > tbody > tr:nth-of-type(2n+1) > * {
  box-shadow: none !important;
}
table.table.dataTable.table-striped > tbody > tr:nth-of-type(1n+2) > * {
  box-shadow: none !important;
}
.table-striped>tbody>tr:nth-of-type(even){
  box-shadow:inset 0 0 0 9999px #f9f9f9;
}
.table.dataTable th{
  font-weight: 500;
  font-size: 15px;
  padding: 12px ;

}
.table.dataTable td{
  font-size: 14px;
}
.table.dataTable thead{
  background: #f9f9f9;
}
.comon-notic{
  border: solid 1px #e9e9e9;
  border-radius: 12px;
  height: 100px;
  background: #fdfdfd;
  padding:13px 20px 8px 20px;
}
.comon-notic h6{
  font-size: 15px;
  font-weight: 600;
  color: var(--text-color);
}
.comon-notic p{
  font-size: 14px;
}
.comon-notic p.date{
  font-size: 14px;
  color: var(--lightcolor);
}
.comon-tabsd .dt-info{
  display: none;
}
.comon-tabsd h5 small{
  font-weight: 400;
  font-size: 13px;
}
.prifle-smin figure{
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: #00000017 1px 8px 20px;
}
.cover-img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.prifle-smin p{
  color: var(--lightcolor);
}
.enms-text{
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #fdeed4;
  color: #ffa300;
  font-size: 18px;
  text-align: center;
  line-height: 36px;
  margin-right: 12px;
}
.com-vaficoantion h5{
  font-size: 14px;
}
.com-vaficoantion h5 a{
  font-size: 13px;
  color: var(--lightcolor);
  font-weight: 400;
  margin-top: 2px;
}
.img-blogs{
  width:60px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;
}
.col-mons-ser{
  border: solid 1px #e9e9e9;
  border-radius: 12px;
  height: 80px;
  background: #fdfdfd;
  padding:8px 20px 8px 8px;
}
.col-mons-ser h5{
  font-size: 15px;
}
.col-mons-ser p{
  font-size: 14px;
  color: var(--lightcolor);
}
.del{
  position: absolute;
  right: 15px;
  top:8px;
  font-size: 22px;
}

.blued-divuy .progress {
  background-color: #5128f5;
}

.comiut-tabs .nav-pills .nav-link{
  color: var(--text-color);
  font-weight: 600;
}
.comiut-tabs .nav-pills .nav-link.active, 
.comiut-tabs .nav-pills .show>.nav-link{
  background: var(--lightcolor);
  color: var(--whitecolor);
}
.btn-edit{
  font-size: 14px;
  font-weight: 600;
}

.comiut-tabs .table>:not(:last-child)>:last-child>* {
  border-bottom-color: currentColor;
  text-align: left !important;
}

/* 07-09-2024 */
.cmd-forms .form-control{
  height: 45px;
  border-radius: 10px;
  font-size: 14px;
  text-indent: 10px;
  box-shadow: #0000000f 1px 2px 0px;
  border: solid 1px #bbbbbb2e;
}
.cmd-forms .form-group label{
  margin-bottom: 4px;
}
.cmd-forms hr{
  background: #bbb;
}
.btn-submits{
  background: var(--lightcolor);
  color: var(--whitecolor) !important;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 12px;
}
.btn-submits:hover{
  background: var(--text-color);
}
.comons-notics{
  height: 80px;
  display: grid;
  align-content: center;
  box-shadow: #eeecf9 1px 20px 25px;
  border-radius: 12px;
  padding: 0 20px 0 25px ;
  margin-bottom: 20px;
}
.iuicons{
  background: #f9faf5;
  border-radius: 12px;
  width: 45px;
  height: 45px;
  color: var(--text-color);
  justify-content: center;
  text-align: center;
  line-height: 42px;
  background: #fdefef;

}
.iuicons i{
  font-size: 22px;
  color: #ff3943;
}
.comons-notics h5{
  font-size: 16px;
  color: var(--text-color);
  font-weight: 600;
}
.comons-notics h5 small{
  font-weight: 400;
  color: #bbb;
  margin-top: 5px;
}
.comons-notics:nth-child(even) .iuicons{
  background: #dbf5ec;
  color: #00ab25;
}
.comons-notics:nth-child(even) .iuicons i{
  color: #00ab25;
}
.help-apge-ban{
 padding: 32px 0 88px;
 height: 310px;
}
.faqu-se-list .accordion-button{
  padding: 0px 26px;
  font-size: 18px;
}
.forms-divu{
  padding: 70px 0;
  background: #fff;
}

.forms-divu .form-control{
  height: 45px;
  border-radius: 10px;
  font-size: 14px;
  text-indent: 10px;
  box-shadow: #0000000f 1px 2px 0px;
  border: solid 1px #bbbbbb2e;
}
.fomst{
  height: 150px !important;
  resize: none;
}
.faqu-se-list .accordion-item{
  margin: 15px 0;
}
.slide-b-menus .form-check{
  padding-left: 49px;
  margin-left: 0;
  margin-bottom: 10px;
}
.slide-b-menus .form-check .form-check-label{
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color);
}

.cart-page-div .infomation-tabs{
  width: 850px;
  background: #f8f9fa !important;
}
.cart-page-div .body-part01 .features-body{
  width: calc(100% - 850px);
  background: #fff !important;
}

.comon-items-cart {
  display: flex;
  align-items: center;
  margin-bottom:26px;
  padding-bottom: 25px;
  flex-wrap: wrap;
  box-shadow: #efefef 1px 2px 30px;
  padding: 20px;
  background: #fff;
  justify-content: space-between;
  border-radius: 12px;
}
.comon-items-cart .left-section-div {
  display: flex;
  align-items: flex-start;
  width: 67%;
}
.comon-items-cart .left-section-div figure {
  width: 150px;
  height: 137px;
  overflow: hidden;
  margin: 0;
  display: grid;
  align-content: center;
  border: solid 4px #bbbbbb26;
  border-radius: 10px;
}
.comon-items-cart .left-section-div figure img{
  object-position: top;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.comon-items-cart .left-section-div .products-cart1 {
  padding-left: 25px;
  padding-top: 12px;
  width: 70%;
}
.cm-head2{
  font-size: 25px;
  font-weight: 700;
}
.cm-head2 span{
  font-size: 18px;
  font-weight: 300;
}
.total-count-div h4 {
  font-weight: 700;
  font-size: 25px;
}
.comon-items-cart .left-section-div .products-cart1 h5 {
  color: var(--text-color);
  font-weight: 600;
  font-size: 17px;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.total-count-div .promo-code1 .btn {
  background: var(--lightcolor);
  color: #fff;
  margin-top: 10px;
  padding: 10px 28px;
  font-weight: 500;
  font-size: 16px;
}
.comon-items-cart .left-section-div .products-cart1 ul li span:first-child {
  width:136px;
  display: inline-block;
  color: var(--lightcolor);
}
.total-count-div .pay-listy li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: capitalize;
  border-bottom: dashed 1px #ebebeb;
  margin-bottom: 15px;
  padding-bottom: 9px;
}
.total-count-div .btncheck-btn {
  background: var(--lightcolor);
  color: #fff;
  display: inline-block;
  width: 100%;
  padding: 10px 28px;
  font-weight: 500;
  font-size: 16px;
}
.total-count-div h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.total-count-div h3 span:last-child {
  font-weight: 700;
  color: var(--lightcolor);
}
.comon-items-cart .crat-linl-pay h4 {
  color: var(--lightcolor);
  font-weight: 700;
  font-size: 25px;
}
.promo-code1 .form-control{
  height: 45px;
  font-size: 14px;
}
.comon-items-cart .crat-linl-pay h4 span {
  text-decoration: line-through;
  color: #bbb;
  font-size: 16px;
  font-weight: 400;
}
.remove-btn{
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
}
.comon-steps-div .form-group{
  margin-bottom: 20px;
}
.comon-steps-div .form-group label{
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-color);
}
.comon-steps-div .form-control, .comon-steps-div .form-select {
  font-weight: 300;
  height: 45px !important;
  color: #888;
  background-color: #fff;
  border: none;
  font-size: 16px;
  border-radius: 10px;
  box-shadow: #0000000f 1px 2px 0px;
  border: solid 1px #bbbbbb2e;
}
.paymeny .form-check-label figure img {
  width: 32px;
}
.paymeny .form-check {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.paymeny .form-check .form-check-input {
  width: 16px;
  height: 16px;
  margin-right: 9px;
}
.end-date, .cvv {
  display: flex;
  place-items: center;
}
.cvv .form-control {
  width: 60%;
  margin-right: 8px;
}
.checkout-table thead {
  background: #f6f7fb;
}
.small-list-anm h5 {
  font-size: 14px;
}

.ceck-out-right-div .domn-list figure {
  height: 40px;
  width: 40px;
  overflow: hidden;
  display: inline-block;
  border: solid 2px #bbbbbb4d;
  border-radius: 8px;
}

.prt-div .coon-listnks {
  padding: 0;
  border-radius: 10px;
  margin-bottom: 30px;
  border: solid 1px #bbbbbb29;
  padding: 15px;
  overflow: hidden;
}


@media(max-width:1180px){
.figures-part {
    height:860px;
    overflow: hidden;
}
.comon-heading-text h2{
	font-size: 35px;
}
.slider-bar{
  width: 260px;
}
.body-part01 {
  width: calc(100% - 260px);
  padding-left: 0;
}
.coon-listnks figure{
  width: 100% !important;
}

}
@media(max-width:910px){
	.banner-section::before{
		width: 100%;
	}
	.figures-part {
		height: 750px;
		overflow: hidden;
	}
	.banner-section h2,
  .landing-baner.banner-section h2{
		font-size: 45px;
		text-align: center;
	}
	.banner-section p{
		text-align: center;
	}
	.banner-section h2::after{
		display: none;
	}
	.banner-section h2::before{
		left: 0;
		right: 0;
		margin: auto;
	}
	.picu {
		position: relative;
		z-index: 2;
		margin-top: 0;
		margin: auto;
        text-align: center;
        display: block;
	}
	.get-btn{
		justify-content: center;
	}
	.top-rex-parts li{
		width: 100%;
	}
	.form-section{
		margin-top: 20px;
	}
	
	
	
	.right-img{
		display: none;
	}
	
  .body-part01 {
    width: calc(100% - 0px);
    padding-left: 0;
  }
  .slider-bar{
    position: fixed;
    transform: translateX(-300px);
  }
  .infomation-tabs{
    position: fixed;
    transform: translateX(-380px);
    z-index: 55;
  }
  .features-body {
    padding: 18px 18px;
  }
  .features-body .cm-head {
    font-size: 25px;
  }
  .btn-typeo{
    font-size: 25px;
    color: var(--text-color);
  }
  .listing-details .body-part01 .features-body {
    width: calc(100% - 0px);
  }
  .btn-alid{
    margin-bottom: 15px;
  }

  .input-field {
    position: relative;
    left: 0;
    top: 33px;
  }
  .landing-baner.banner-section::before{
    display: none;
  }
  .landing-baner.banner-section h2::after{
    display: none;
  }
}
@media(max-width:768px){
	.banner-section::before{
		width: 100%;
	}
	.comon-heading-text h2{
		font-size: 30px;
	}
  .coon-listnks figure {
    width: 116px !important;
  }
	
}
@media(max-width:668px){
	.banner-section::before{
		width: 100%;
	}
	.comon-s-div.d-inline-block.w-100 {
		background: #0f9f19;
		padding: 20px;
		min-height: auto;
	}
	.services-parts .mj-pic{
		height: auto;
	}
	.testimonsal figure {
		width: 215px;
		height: 86px;
		border-radius: 50px;
		overflow: hidden;
	}
}
@media(max-width:480px){
	.banner-section::before{
		width: 100%;
	}
	.comon-s-div.d-inline-block.w-100 {
		background: #0f9f19;
		padding: 20px;
		min-height: auto;
	}
	.services-parts .mj-pic{
		height: auto;
	}
	.items-slidert{
		display: inline-block !important;
	}
	.items-slidert .text-box-10{
		padding-left: 0 !important;
	}
	.testimonsal figure {
        width: 85px;
        height: 86px;
        border-radius: 50px;
        overflow: hidden;
    }
}
.mobile-menu-sec li a, .mobile-menu-sec li .dropdown .btn {
    text-decoration: none;
    color: #212529;
    padding: 10px 5px 10px 10px;
    display: block;
    background: #f7f7f7;
    margin-bottom: 8px;
    width: 100%;
    text-align: left;
}
.side-media li a {
    background: #181818;
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    display: inline-block;
}
.side-media {
    list-style-type: none;
    margin-top: 15px;
    display: flex;
}
.side-media li {
    margin: 0 10px 0 0;
}
.mobile-menu-div .close-menu svg {
    width: 30px;
    height: 30px;
}
.mobile-menu-div .close-menu {
    background: none !important;
    border: none !important;
}
.active-m a {
    background-color: var(--lightcolor) !important;
    color: #fff !important;
}

.open-sidebars{
  transform: translateX(0);
}

.close-btn{
  position: absolute;
  right: 9px;
  top: 69px;
}
.close-btn i{
  font-size: 34px;
  color: var(--text-color);
}

.close-btn2{
  position: absolute;
  right: 9px;
  top: 69px;
}
.close-btn2 i{
  font-size: 34px;
  color: var(--text-color);
}
.open-sidebars2{
  transform: translateX(0);
}

.cart-dropdown-ne {
  width: 310px !important;
  border: none;
  top: 120%;
  z-index: 4;
  right: 0 !important;
  left: inherit !important;
  opacity: 0;
  transition: .15s ease-in;
  visibility: hidden;
  display: block;
}
.right-linksj .dropdown:hover .cart-dropdown-ne {
  visibility: visible;
  opacity: 1;
}
.products-sm-pic {
  margin-left: 0 !important;
}
.cart-dropdown-ne .comon-cart-ps .products-sm-pic figure {
  height: 60px;
  width: 60px;
  overflow: hidden;
  margin: 0;
  border: solid 1px #f1f1f1;
  display: grid;
  align-items: center;
  padding: 5px;
}
.cart-ps-details a {
  font-size: 16px;
}
.cart-ps-details h6 {
  font-size: 14px;
  color: var(--lightcolor);
}
.cart-dropdown-ne .comon-cart-ps {
  padding: 15px 19px 14px;
  margin: 0;
  border-bottom: solid 1px #ebebeb;
  width: 100%;
  display: inline-block;
}
.min-cats ul{
  list-style-type: none;
}
.nouy {
  width: 18px;
  height: 18px;
  background: red;
  display: inline-block;
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  right: 14px;
  position: relative;
  top: -6px;
  text-align: center;
  line-height: 18px;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
}
.cart01 {
  width: 39px;
  display: inline-block;
  background: #f9f9f9;
  padding: 7px;
  border-radius: 50%;
  height: 39px;
  line-height: 26px;
  font-size: 18px;
}
@-webkit-keyframes action {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

@keyframes action {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

@-webkit-keyframes pulse {
	0% {
	  transform: scale(1, 1);
	}
	25% {
	  transform: scale(1, 1);
	}
	50% {
	  transform: scale(1.2, 1.2);
	}
	100% {
	  transform: scale(1, 1);
	}
  }
  
  @keyframes pulse {
	0% {
	  transform: scale(1, 1);
	}
	25% {
	  transform: scale(1, 1);
	}
	50% {
	  transform: scale(1.2, 1.2);
	}
	100% {
	  transform: scale(1, 1);
	}
  }
  .ribbon a, .ribbon a:visited, .ribbon a:active, .ribbon a:hover {
    display: block;
    padding: 1px 0;
    height: 24px;
    line-height: 24px;
    color: inherit;
    text-align: center;
    text-decoration: none;
    font-family: 'Cabin Condensed', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    -moz-text-shadow: 0 0 10px rgba(0, 0, 0, 0.31);
    -webkit-text-shadow: 0 0 10px rgba(0, 0, 0, 0.31);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.31);
  }

  span.pic-user {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    overflow: hidden;
    display: inline-block;
   }
.btn-cart{
 background: var(--lightcolor);
 color: var(--whitecolor) !important;
transition: 0.5s all;
}
.btn-cart:hover{
  background: var(--darkcolor);
  color: var(--whitecolor) !important;
  }
  
  
.ribbon.blue {
  background: #09e;
}
.ribbon.right {
  right: -42px;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.ribbon {
  position: absolute;
  top: 42px;
  width: 200px;
  padding: 1px 0;
  background: #000;
  color: #eee;
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.n-cart{
  padding: 12px 16px;
  font-size: 14px;
  text-transform: uppercase;
  /* margin-right: 15px; */
  /* position: relative; */
  /* right: 60px; */
}