@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Parkinsans:wght@300..800&display=swap");
:root {
  --common-color:#fff;
  --dark-color:#CAF0FF;
  --green:#2ED573;
  --heading-color:#084B61;
  --common-color-blacck:#060524;
  --logo-color:#01ABF3;
  --color_2: #55acee;
  --color_3: #3b5998;
  --color_4: #37a953;
}

select {
  outline: none;
}

:focus {
  outline: 0;
}

input[type=search]::-webkit-search-cancel-button {
  display: none;
}

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

body {
  font-size: 1rem;
  color: #000;
  font-size: 1rem;
  margin-right: 0.625rem;
  text-decoration: none;
  font-weight: 500;
  font-family: inter;
}

input:focus {
  outline: none;
}

h1 {
  color: var(--heading-color);
  font-family: "Parkinsans";
}

p {
  font-family: "inter";
}

h2 {
  color: var(--heading-color);
  font-family: "Parkinsans";
  font-size: 30px;
}

h4 {
  color: var(--heading-color);
  font-family: "Parkinsans";
}

h3 {
  color: var(--heading-color);
  font-family: "Parkinsans";
}

h4 {
  color: var(--heading-color);
  font-family: "Parkinsans";
}

h5 {
  color: var(--heading-color);
  font-family: "Parkinsans";
}

h6 {
  color: var(--heading-color);
  font-family: "Parkinsans";
}

html {
  margin: 0;
}
html li,
html ol {
  list-style: none;
}
html input:focus,
html textarea:focus,
html select:focus {
  outline: none;
}
html a,
html a:hover {
  text-decoration: none;
}
html ul {
  margin: 0;
}
html li {
  margin: 0;
  padding: 0;
}
html img {
  max-width: 100%;
}

::-webkit-scrollbar {
  width: 5px;
  background-color: #F9F9F9;
}

::-webkit-scrollbar-thumb {
  background-color: #36B9FF;
  width: 3px;
}

h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

button:focus {
  outline: none !important;
}

.sticky {
  position: fixed;
  width: 100%;
  background: #fff;
  z-index: 9;
}

.menu-part {
  padding: 10px 0;
}
.menu-part ul li {
  display: inline-block;
}
.menu-part ul li .dashprofpic {
  width: 41px;
  height: 41px;
  border-radius: 50%;
  -o-object-fit: c;
     object-fit: c;
}
.menu-part ul li a {
  color: #222;
  font-size: 14px;
  font-weight: 400;
  line-height: 27px;
  font-family: "inter";
  padding: 10px;
  position: relative;
  padding-left: 17px;
}
.menu-part ul li a:hover {
  color: #0484bd;
}
.menu-part ul li .btn_acc {
  padding: 10px 20px;
  border-radius: 10px;
  color: var(--common-color);
  background: var(--logo-color);
  font-weight: 500;
  transition: all 0.4s ease;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
}
.menu-part ul li .btn_acc:hover {
  background: var(--common-color);
  color: #000;
}
.menu-part ul li a.mplace {
  background: #1fbe1a !important;
  font-weight: 700 !important;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
  color: #fff;
}
.menu-part ul li a.mplace:hover {
  color: #1fbe1a !important;
  background: #fff !important;
}
.menu-part ul li .btn_login {
  padding: 10px 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
  border-radius: 10px;
  margin-right: 10px;
  transition: all 0.4s ease;
}
.menu-part ul li .btn_login:hover {
  background: var(--logo-color);
  color: var(--common-color);
}
.menu-part ul li.dropdown ul.dp-menu {
  display: block;
  border: transparent;
  right: 0;
  left: auto;
  border-radius: 0;
  transition: all 0.3s ease-in-out;
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  background-color: #fff;
  padding: 20px 0;
  min-width: 240px;
  left: 0;
  margin-bottom: 0;
  margin-top: 17px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}
.menu-part ul li.dropdown ul.dp-menu li {
  width: 100%;
}
.menu-part ul li.dropdown ul.dp-menu li a {
  margin: 0;
  padding: 10px;
  font-weight: 400;
  transition: all 0.5s ease-in-out;
}
.menu-part ul li.dropdown ul.dp-menu li a:hover {
  padding-left: 15px;
  background: #0484bd;
  color: #fff;
}
.menu-part ul li.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.banner {
  text-align: center;
  margin: auto;
  width: 100%;
  padding: 6rem 0;
  justify-content: center;
}
.banner h1 {
  font-size: 44px;
  margin: 0 0 30px;
}
.banner h1 span {
  border-right: 0.05em solid;
  animation: caret 1s steps(100);
  animation: 1s blink step-end infinite;
  margin-left: 5px;
  color: var(--heading-color);
}
.banner .search {
  text-align: right;
}
.banner .search form.searchform {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 50px;
}
.banner .search form.searchform ::-moz-placeholder#s {
  font-size: 21px;
  color: #000;
  font-weight: 500;
}
.banner .search form.searchform ::placeholder#s {
  font-size: 21px;
  color: #000;
  font-weight: 500;
}
.banner .search form.searchform input[type=search] {
  width: 100%;
  border: transparent;
  height: 60px;
  padding: 10px;
  border-radius: 50px;
  padding-left: 45px;
}
.banner .search form.searchform select {
  height: 50px;
  border: transparent;
  padding: 5px 5px 5px 10px;
  font-size: 17px;
  color: var(--common-color-blacck);
}
.banner .search form.searchform button[type=submit] {
  position: absolute;
  right: 30px;
  color: var(--heading-color);
  font-size: 24px;
  background: transparent;
  border: transparent;
  width: 20px;
  height: 20px;
  top: 7px;
}
.banner .search form.searchform .fa-search {
  position: absolute;
  left: 20px;
  right: 20px;
  color: var(--heading-color);
  font-size: 24px;
}
.banner .search .hero__categories__tags {
  text-align: center;
  margin-top: 40px;
}
.banner .search .hero__categories__tags li {
  list-style: none;
  display: inline-block;
  margin-right: 5px;
}
.banner .search .hero__categories__tags li a {
  font-size: 20px;
  padding: 8px 33px;
  display: block;
  border: 1px solid #ebebeb;
  margin-bottom: 0;
  color: #969696;
  border-radius: 50px;
  font-weight: 500;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
}
.banner .search .hero__categories__tags li a.active {
  background: #EDEDED;
}

.about {
  position: relative;
  padding: 60px 0;
}
.about h2 {
  font-weight: 700;
  max-width: 446px;
  margin-bottom: 30px;
}
.about p {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 30px;
}
.about a.link.buy-link {
  padding: 10px 20px;
  border-radius: 10px;
  transition: all 0.4s ease;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
  background: var(--logo-color);
  color: var(--common-color);
  font-weight: 500;
  border: none;
  font-size: 18px;
}
.about a.link.sell-link {
  border-radius: 10px;
  transition: all 0.4s ease;
  background: var(--common-color);
  color: #000;
  padding: 10px 20px;
  box-shadow: 1px 1px 0 1px;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
  font-weight: 500;
  font-size: 18px;
}
.about a.link.sell-link:hover {
  background: var(--logo-color);
  color: var(--common-color);
}
.about a.link {
  border: 1px solid #fff;
  vertical-align: middle;
  padding: 15px 20px;
  width: 210px;
  text-align: center;
  color: #555;
  font-size: 18px;
  letter-spacing: 0.2px;
  border-radius: 50px;
  margin-right: 20px;
  margin-top: 30px;
}
.about a.link:hover {
  background: var(--common-color);
  color: var(--common-color-blacck);
}
.about .vblovk {
  position: relative;
}
.about .vblovk img.abtimg {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 308px;
}
.about .vblovk img.play-btn {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  justify-content: center;
  align-items: center;
  bottom: 0;
}

.platform-insight {
  background: var(--dark-color);
  text-align: center;
  border-radius: 25px;
  padding: 30px;
}
.platform-insight h2 {
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.platform-insight h3 {
  font-size: 56px;
  line-height: 78px;
}
.platform-insight p {
  font-size: 20px;
  line-height: 30px;
  color: #0F1234;
  margin: 0 auto 40px;
  max-width: 612px;
}
.platform-insight .box2 {
  border-right: 0 !important;
}
.platform-insight .box3 {
  border-bottom: none !important;
}
.platform-insight .box1 {
  cursor: pointer;
  place-items: center;
  border-right: 2px solid var(--logo-color);
  border-bottom: 2px solid var(--logo-color);
  padding: 32px 40px;
  min-height: 180px;
  transition: all 0.4s ease;
  max-height: 180px;
}
.platform-insight .box1 h2 {
  font-size: 25px;
  line-height: 50px;
}
.platform-insight .box1 p {
  font-size: 18px;
  line-height: 25px;
  color: #0F1234;
  margin: 0 auto 40px;
  max-width: 612px;
}
.platform-insight .box1:hover {
  background: linear-gradient(90deg, rgb(54, 185, 255) 0%, rgb(95, 230, 156) 45%), rgb(115, 103, 210) 100%;
}
.platform-insight .box1:first-child {
  border-left: none;
}

.product {
  padding: 60px 0;
  text-align: center;
}
.product h2 {
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.product p {
  font-size: 20px;
  line-height: 30px;
  color: #0F1234;
  margin: 0 auto 40px;
  max-width: 800px;
}
.product .nav-sidebar {
  justify-content: center;
  display: flex;
  margin: 0 0 30px;
}
.product .nav-sidebar ul.nav.tabs li a {
  color: #222;
  font-size: 14px;
  font-weight: 400;
  line-height: 27px;
  font-family: "inter";
  border: 1px solid;
  padding: 10px;
  position: relative;
  padding-left: 17px;
  padding: 10px 20px;
  border-radius: 10px;
  margin-right: 10px;
  transition: all 0.4s ease;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
  /* color: #fff; */
}
.product .nav-sidebar ul.nav.tabs li a.active {
  background: var(--dark-color);
  color: var(--common-color-blacck);
  padding: 10px 20px;
  border: 1px solid #000;
}
.product .nav-sidebar ul.nav.tabs li a.active:hover {
  background: var(--dark-color);
  color: var(--common-color-blacck);
  border: 1px solid #000;
}
.product .nav-sidebar ul.nav.tabs li a:hover {
  background: var(--dark-color);
  color: var(--common-color-blacck);
}
.product #loadMore {
  text-align: center;
  margin-top: 35px;
}
.product #loadMore a.bshow {
  transition: all 0.4s ease;
  padding: 10px 20px;
  border-radius: 10px;
  color: var(--common-color);
  background: var(--logo-color);
  font-weight: 500;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
  border: none;
}
.product #loadMore a.bshow:hover {
  background: var(--common-color);
  color: var(--common-color-blacck);
}
.product a.bshow {
  padding: 10px 20px;
  border-radius: 10px;
  color: var(--common-color);
  background: var(--logo-color);
  transition: all 0.4s ease;
  font-weight: 500;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
  border: none;
}
.product a.bshow:hover {
  background-color: var(--common-color);
  color: var(--common-color-blacck);
}
.product .contact_block {
  border-radius: 21px;
  text-align: center;
  margin-bottom: 2rem;
  cursor: pointer;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 10px;
}
.product .contact_block img.shape-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  max-height: 80px;
  border-bottom-right-radius: 20px;
}
.product .contact_block h2 {
  font-family: "inter";
  text-align: left;
  font-weight: 700;
}
.product .contact_block .head {
  text-align: center;
  display: flex;
  margin-bottom: 36px;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.product .contact_block .head img {
  width: 24px;
  height: 21px;
  -o-object-fit: cover;
     object-fit: cover;
}
.product .contact_block .head a.ts {
  background: #199855;
  text-decoration: none;
  color: #fff;
  transition: all 0.4s ease;
  padding: 4px 16px;
  border-radius: 20px;
}
.product .contact_block .item {
  display: flex;
  justify-content: space-between;
  text-align: left;
  align-items: center;
  margin-right: 5px;
  border-top: 2px solid #E8E8E8;
  padding: 1.875rem 0;
}
.product .contact_block .item ul li {
  display: inline-block;
  margin-right: 14px;
}
.product .contact_block .item ul li p {
  margin-bottom: 0;
  text-align: left;
  font-size: 1rem;
}
.product .contact_block .item ul li p span {
  font-size: 1.063rem;
  font-weight: 500;
  text-align: left;
  display: block;
}

.clients {
  padding: 60px 0;
  background: rgba(153, 238, 255, 0.431372549);
}
.clients h2 {
  text-transform: capitalize;
  text-align: center;
  max-width: 500px;
  margin: 0 auto 60px;
  font-weight: 700;
}
.clients .img-wrap {
  background: #fff;
  padding: 2.125rem;
  margin: 0.625rem;
  height: 100px;
}
.clients .owl-nav {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 50px;
  margin: auto;
  bottom: 0;
}
.clients .owl-nav button.owl-next {
  float: right;
  margin-right: -20px;
}
.clients .owl-nav .fa {
  font-size: 35px;
  color: #000;
}
.clients .owl-nav button.owl-prev {
  float: left;
  margin-left: -20px;
}

.testimonials {
  padding: 60px 0;
  text-align: center;
}
.testimonials h2 {
  font-weight: 700;
  margin-bottom: 1.875rem;
  text-align: center;
  text-transform: capitalize;
}
.testimonials a.test-btn {
  padding: 10px 20px;
  border-radius: 10px;
  border: 2px solid #4262FF;
  background: #fff;
  font-weight: 500;
  font-size: 15px;
  color: #4262FF;
  border-radius: 50px;
  display: table;
  margin: 0 auto 50px;
}
.testimonials .pro_slider3 .owl-nav {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 50px;
  margin: auto;
  bottom: 0;
}
.testimonials .pro_slider3 .owl-nav button.owl-next {
  float: right;
  margin-right: -20px;
}
.testimonials .pro_slider3 .owl-nav .fa {
  font-size: 35px;
  color: #000;
}
.testimonials .pro_slider3 .owl-nav button.owl-prev {
  float: left;
  margin-left: -20px;
}
.testimonials .pro_slider3 .testbox {
  padding: 30px;
  margin: 5px;
  text-align: left;
}
.testimonials .pro_slider3 .testbox .imgwrap h2 {
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  box-shadow: 4px 9px 16px -7px rgba(0, 0, 0, 0.1);
  margin: 0 0 20px;
  padding: 10px;
}
.testimonials .pro_slider3 .testbox p {
  font-size: 18px;
  text-align: justify;
  color: #050038;
  opacity: 0.6;
  max-height: 160px;
  min-height: 160px;
  overflow: hidden;
}
.testimonials .pro_slider3 .testbox .foot {
  display: flex;
  width: 100%;
  align-items: center;
}
.testimonials .pro_slider3 .testbox .foot .post-img {
  height: 70px;
  overflow: hidden;
  border-radius: 6px;
  display: flex;
  align-items: center;
  float: left;
  margin-right: 20px;
}
.testimonials .pro_slider3 .testbox .foot .post-img img {
  border-radius: 50%;
  height: 70px !important;
  width: 70px;
  -o-object-fit: c;
     object-fit: c;
}
.testimonials .pro_slider3 .testbox .foot .rcblog-info h4 a {
  color: var(--heading-color);
  font-size: 20px;
  overflow: hidden;
}
.testimonials .pro_slider3 .testbox .foot .rcblog-info h5 {
  color: var(--heading-color);
  font-size: 14px;
  opacity: 0.6;
  overflow: hidden;
}
.testimonials .pro_slider3 .owl-nav {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 50px;
  margin: auto;
  bottom: 0;
}
.testimonials .pro_slider3 .owl-nav button.owl-next {
  float: right;
  margin-right: -20px;
}
.testimonials .pro_slider3 .owl-nav .fa {
  font-size: 35px;
  color: #000;
}
.testimonials .pro_slider3 .owl-nav button.owl-prev {
  float: left;
  margin-left: -20px;
}

.innerbanner {
  position: relative;
}
.innerbanner img.ban-botin {
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 2;
}
.innerbanner .item img {
  max-height: 470px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  min-height: 470px;
  object-fit: cover;
}
.innerbanner .item .bantext {
  position: absolute;
  left: 50%;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
}
.innerbanner .item .bantext h1 {
  margin: 0 0 1rem;
  font-size: 4rem;
  margin-bottom: 30px;
  color: var(--common-color);
  text-align: center;
  font-style: normal;
  font-weight: 700;
}
.innerbanner .item .bantext p {
  font-size: 20px;
  color: #fff;
  margin-bottom: 30px;
}
.innerbanner .item .bantext a {
  padding: 10px 20px;
  border-radius: 10px;
  color: var(--common-color);
  background: var(--logo-color);
  font-weight: 500;
  transition: all 0.4s ease;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
}
.innerbanner .item .bantext a:hover {
  background: var(--common-color);
  color: var(--common-color-blacck);
}

.aboutussec {
  padding: 60px 0;
}
.aboutussec .row:nth-child(odd) {
  flex-direction: row-reverse;
}
.aboutussec .row:nth-child(odd) [class*=col-]:first-child {
  text-align: right;
}
.aboutussec h2 {
  font-size: 30px;
  text-align: center;
  margin: 0 0 45px;
}
.aboutussec h3 {
  font-size: 30px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--heading-color);
}
.aboutussec p {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 30px;
  font-family: "inter";
}
.aboutussec img {
  width: 504px;
  height: 489px;
  -o-object-fit: cover;
     object-fit: cover;
}
.aboutussec a {
  padding: 12px 60px;
  background: var(--logo-color);
  border-radius: 10px;
  color: var(--common-color);
  position: relative;
  transition: all 0.4s ease;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
}
.aboutussec a:hover {
  color: var(--common-color-blacck);
  background: var(--common-color);
}

.counter {
  color: var(--common-color-blacck);
  padding: 30px 0;
  text-align: center;
  font-family: "inter";
  font-size: 18px;
}
.counter span {
  display: block;
  font-family: "Parkinsans";
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 500;
}

.webelieve {
  padding: 60px 0;
}
.webelieve h2 {
  font-size: 30px;
  margin-bottom: 30px;
  text-align: center;
}
.webelieve .boxwrap {
  background: rgba(153, 238, 255, 0.431372549);
  padding: 30px;
}
.webelieve .boxwrap .believebox {
  padding: 10px;
  margin: 0 0 15px;
  display: flex;
}
.webelieve .boxwrap .believebox h3 {
  font-size: 20px;
}
.webelieve .boxwrap .believebox .post-img {
  width: 110px;
  overflow: hidden;
  float: left;
  margin-right: 10px !important;
}
.webelieve .boxwrap .believebox .info h3 {
  font-size: 20px;
}
.webelieve .boxwrap .believebox .info p {
  font-size: 15px;
  text-align: justify;
  color: #050038;
  opacity: 0.6;
  font-family: "inter";
  /* max-height: 160px; */
  /* min-height: 160px; */
  overflow: hidden;
}

.keepus {
  padding: 30px 0;
}
.keepus h2 {
  font-size: 30px;
  margin-bottom: 20px;
  text-align: center;
}
.keepus img {
  height: 176px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.keepus .b1 {
  border-radius: 28px;
  border-bottom-right-radius: 0;
}
.keepus .b3 {
  border-radius: 28px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.keepus .b2 {
  border-radius: 28px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.keepus .txt {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
  font-family: "inter";
}

footer {
  background: rgba(154, 226, 255, 0.3803921569);
  padding: 24px;
}
footer p {
  line-height: 35px;
  align-items: center;
  display: flex;
  width: 100%;
}
footer p i.fa {
  font-size: 30px;
  margin-right: 10px;
  align-items: center;
}
footer .footertop {
  border-bottom: 2px solid rgba(10, 9, 46, 0.4);
  margin: 0 0 20px;
  padding-top: 20px;
}
footer .footertop h5 {
  font-size: 18px;
  color: var(--heading-color);
  font-weight: 500;
}
footer .footertop p img {
  margin-right: 5px;
}
footer .footertop .col-lg-4 {
  border-right: 2px solid rgba(10, 9, 46, 0.4);
}
footer .footertop .col-lg-4:last-child {
  border-right: 0px solid rgba(10, 9, 46, 0.4);
}
footer h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 20px;
}
footer h3 {
  font-size: 18px;
  font-weight: 700;
}
footer .sec1 {
  margin-bottom: 16px;
}
footer .sec1 li a {
  color: #002233;
  font-size: 15px;
  line-height: 30px;
  letter-spacing: 0.02em;
  transition: all 0.4s ease;
}
footer .sec1 li a:hover {
  color: var(--logo-color);
}
footer .social-media {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}
footer .social-media li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  line-height: 0;
  margin-bottom: 20px;
}
footer .social-media li .fa {
  background: #fff;
  color: var(--heading-color);
  width: 45px;
  height: 45px;
  border: 2px solid var(--heading-color);
  border-radius: 50%;
  text-align: center;
  line-height: 42px;
  transition: all 0.3s ease;
  font-size: 21px;
}
footer .social-media .fa:hover {
  transition: all 0.3s ease;
}
footer .social-media .fa.fa-twitter:hover {
  color: var(--color_2);
  border: 2px solid #55acee;
}
footer .social-media .fa.fa-facebook:hover {
  color: #3b5998;
  border: 2px solid #3b5998;
}
footer .social-media .fa.fa-linkedin:hover {
  color: #0077B5;
  background: var(--common-color);
  border: 2px solid #0077B5;
}
footer .social-media .fa.fa-youtube:hover {
  color: red;
  background: var(--common-color);
  border: 2px solid red;
}
footer .social-media .fa.fa-instagram:hover {
  color: #F501A1;
  background: var(--common-color);
  border: 2px solid #F501A1;
}
footer .social-media .fa.fa-pinterest:hover {
  color: #E60023;
  background: var(--common-color);
  border: 2px solid #E60023;
}
footer .social-media .fa.fa-snapchat:hover {
  color: #FFFC00;
  background: var(--common-color);
  border: 2px solid #FFFC00;
}
footer .social-media .fa.fa-tumblr-square:hover {
  color: #36465D;
  background: var(--common-color);
  border: 2px solid #36465D;
}
footer .sec2 li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  line-height: 0;
  margin-bottom: 20px;
}
footer .sec2 li a {
  display: flex;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  border: 1px solid var(--heading-color);
  overflow: hidden;
  background: var(--common-color);
  font-size: 18px;
}
footer .form-subscribe .form-control {
  border: none;
  outline: none;
  height: 46px;
}
footer .form-subscribe .btn {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background: var(--heading-color);
  border-color: var(--heading-color);
  transition: all 0.4s ease;
  height: 46px;
}
footer .form-subscribe .btn i.fa.fa-send-o {
  color: #fff;
}
footer .footer-bottom {
  border-top: 1px solid var(--common-color-blacck);
  margin-top: 35px;
  padding-top: 35px;
  color: #002233;
  position: relative;
}
footer .footer-bottom a.btnhelp {
  position: absolute;
  top: -24px;
  transition: all 0.4s ease;
  right: 0;
  padding: 10px 20px;
  box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.2), 0px 2px 7px rgba(0, 0, 0, 0.19);
  border-radius: 50px;
  background: var(--logo-color);
  color: var(--common-color);
  padding: 10px 20px;
}
footer .footer-bottom a.btnhelp:hover {
  background: var(--common-color);
  color: var(--common-color-blacck);
}
footer .footer-bottom ul li {
  display: inline-block;
  margin-left: 10px;
}
footer .footer-bottom ul li a {
  text-align: right;
  color: #000;
  text-decoration: none;
}
footer .footer-bottom ul li a:hover {
  color: var(--logo-color);
}

.meetteam {
  padding: 60px 0;
  text-align: center;
}
.meetteam h2 {
  font-weight: 700;
  margin-bottom: 1.875rem;
  text-align: center;
  text-transform: capitalize;
}
.meetteam a.test-btn {
  padding: 10px 20px;
  border-radius: 10px;
  border: 2px solid #4262FF;
  background: #fff;
  font-weight: 500;
  font-size: 15px;
  color: #4262FF;
  border-radius: 50px;
  display: table;
  margin: 0 auto 50px;
}
.meetteam .team .owl-nav {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 50px;
  margin: auto;
  bottom: 0;
}
.meetteam .team .owl-nav button.owl-next {
  float: right;
  margin-right: -20px;
}
.meetteam .team .owl-nav .fa {
  font-size: 35px;
  color: #000;
}
.meetteam .team .owl-nav button.owl-prev {
  float: left;
  margin-left: -20px;
}
.meetteam .team .foot {
  display: flex;
  align-items: center;
  text-align: left;
}
.meetteam .team .foot .post-img {
  overflow: hidden;
  border-radius: 6px;
  display: flex;
  align-items: center;
  float: left;
  margin-right: 20px;
}
.meetteam .team .foot .post-img img {
  max-height: 180px;
  height: 100%;
  border-radius: 60px;
  -o-object-fit: cover;
     object-fit: cover;
}
.meetteam .team .foot .rcblog-info h4 a {
  color: var(--heading-color);
  font-size: 20px;
  overflow: hidden;
}
.meetteam .team .foot .rcblog-info h5 {
  color: var(--heading-color);
  font-size: 14px;
  opacity: 0.6;
  overflow: hidden;
}
.meetteam .team .owl-nav {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 50px;
  margin: auto;
  bottom: 0;
}
.meetteam .team .owl-nav button.owl-next {
  float: right;
  margin-right: -20px;
}
.meetteam .team .owl-nav .fa {
  font-size: 35px;
  color: #000;
}
.meetteam .team .owl-nav button.owl-prev {
  float: left;
  margin-left: -20px;
}

.contact {
  padding: 60px 0;
}
.contact h1 {
  margin: 0 0 20px;
  color: #050038;
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.contact p {
  font-size: 1.25rem;
  line-height: 1.875rem;
  color: #0F1234;
  margin: 0 auto 2.5rem;
  max-width: 38.25rem;
}
.contact .contact-box {
  border-radius: 1.25rem;
  background: #ffffff;
  width: 100%;
  box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.2), 0 6px 1.25rem 0 rgba(0, 0, 0, 0.19);
  padding: 1.25rem 0;
}
.contact .contact-box .contleft {
  background: rgba(154, 226, 255, 0.4784313725);
  border-radius: 0.625rem;
  text-align: left;
  position: relative;
  height: 100%;
  padding: 20px;
}
.contact .contact-box .contleft h2 {
  margin: 0 0 2.5rem;
  color: #050038;
  text-align: left;
  font-size: 1.875rem;
  font-weight: 500;
  margin-bottom: 1.875rem;
}
.contact .contact-box .contleft p {
  font-size: 15px;
  line-height: 1.875rem;
  color: #0F1234;
}
.contact .contact-box .contleft img.contactbg {
  position: absolute;
  /* top: 0; */
  right: 0;
  bottom: 0;
  min-height: 120px;
  max-height: 120px;
}
.contact .contact-box .contleft ul {
  margin-top: 3.75rem;
}
.contact .contact-box .contleft ul li a {
  color: #000;
  font-size: 18px;
  line-height: 50px;
  transition: all 0.4s ease;
}
.contact .contact-box .contleft ul li a:hover {
  color: var(--logo-color);
}
.contact .contact-box .contleft .sec2 li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  line-height: 0;
}
.contact .contact-box .contleft .sec2 li a {
  display: flex;
  width: 35px;
  height: 35px;
  border: #fff;
  background: #d2cec9;
  background: #152340;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  overflow: hidden;
  color: #1c1b22;
  color: #fff;
  font-size: 18px;
}
.contact .contact-box .contleft .sec2 li a:hover {
  background: var(--common-color);
  color: var(--heading-color);
}
.contact .contact-box form .selectoptions {
  background: #fff;
  display: flex;
  align-items: center;
  width: 100%;
  color: #000;
  font-weight: 500;
  font-size: 14px;
  border-radius: 12px;
}
.contact .contact-box form .selectoptions .mainwrapper {
  display: block;
  position: relative;
  padding-left: 23px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 15px;
  padding-right: 10px;
  -moz-user-select: none;
  -webkit-user-select: none;
          user-select: none;
}
.contact .contact-box form .selectoptions .mainwrapper input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.contact .contact-box form .selectoptions .mainwrapper input:checked ~ .checkmark {
  background-color: #fff;
}
.contact .contact-box form .selectoptions .mainwrapper input:checked ~ .checkmark:after {
  display: block;
}
.contact .contact-box form .selectoptions .mainwrapper:hover input ~ .checkmark {
  background-color: #fff;
}
.contact .contact-box form .selectoptions .mainwrapper .checkmark:after {
  top: 5px;
  left: 5px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #040C59;
  right: 0;
  bottom: 0;
}
.contact .contact-box form .checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid #000;
}
.contact .contact-box form .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.contact .contact-box form input::-moz-placeholder {
  opacity: 0; /* Hides the placeholder text */
}
.contact .contact-box form input::placeholder {
  opacity: 0; /* Hides the placeholder text */
}
.contact .contact-box form textarea {
  height: 100px;
  resize: none;
  width: 100%;
  border: transparent;
  border-bottom: 1px solid #8D8D8D;
}
.contact .contact-box form textarea:focus, .contact .contact-box form input:focus {
  outline: none;
}
.contact .contact-box form .chekbx {
  font-weight: 400 !important;
}
.contact .contact-box form .chekbx a {
  text-decoration: none;
  color: var(--common-color-blacck);
}
.contact .contact-box form label {
  display: block;
  color: #000;
  font-size: 0.938rem;
  font-weight: 500;
}
.contact .contact-box form h6 {
  display: block;
  color: #000;
  font-size: 0.938rem;
  font-weight: 500;
  margin-bottom: 20px;
  font-family: "inter";
  margin-bottom: 20px;
}
.contact .contact-box form input:focus {
  outline: none;
}
.contact .contact-box form .form-control {
  width: 100%;
  padding: 0.625rem 0;
  border: transparent;
  border-bottom: 1px solid #8D8D8D;
  height: 2.813rem;
  border-radius: 0;
  background-color: transparent;
  color: #515151;
  margin-bottom: 0.938rem;
}
.contact .contact-box form input::-moz-placeholder {
  color: #555555;
}
.contact .contact-box form input::placeholder {
  color: #555555;
}
.contact .contact-box form input[type=checkbox] {
  margin-right: 5px;
  width: 15px;
  height: 15px;
}
.contact .contact-box form .checking {
  display: flex;
  align-items: center;
  width: 100%;
}
.contact .contact-box form .checking label {
  display: block;
  color: #000;
  font-weight: 500;
  margin: 0;
}
.contact .contact-box form .btn {
  padding: 8px 20px;
  background: var(--logo-color);
  border-radius: 0.625rem;
  color: var(--common-color);
  position: relative;
  display: table;
  transition: all 0.4s ease;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
  margin-left: auto;
}
.contact .contact-box form .btn:hover {
  background: var(--common-color);
  color: var(--common-color-blacck);
}
.contact .contact-box form .btn:hover {
  opacity: 0.9;
}

.loginformmain .welbut {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.loginformmain .welbut .skipbtn {
  background: var(--common-color);
  color: var(--heading-color);
  padding: 10px 0;
  font-style: italic;
  border-radius: 10px;
  margin-right: 10px;
  transition: all 0.4s ease;
  font-weight: 500;
  z-index: 5;
  border: 1px solid var(--heading-color);
  display: flex;
  width: 20%;
  justify-content: center;
  align-items: center;
}
.loginformmain .bredcum {
  margin: 20px 0;
  width: 20%;
}
.loginformmain .bredcum ul {
  margin: 0;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
  padding: 10px 10px;
}
.loginformmain .bredcum ul li {
  background: var(--common-color);
  transition: all 0.4s ease;
  display: inline-block;
}
.loginformmain .bredcum ul li a {
  color: var(--heading-color);
  font-size: 1rem;
  font-style: normal;
  line-height: 1rem;
  text-transform: capitalize;
}
.loginformmain h1 {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 15px;
}
.loginformmain .logfrm {
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  margin-bottom: 20px;
  border-radius: 20px;
}
.loginformmain .logfrm h2 {
  font-size: 30px;
  font-weight: 700;
}
.loginformmain .logfrm h2 span {
  display: block;
  color: var(--heading-color);
  font-size: 15px;
  font-weight: 400;
  font-family: "inter";
  margin: 10px 0;
}
.loginformmain .logfrm form select#sgender {
  width: 100%;
  height: 100%;
}
.loginformmain .logfrm form .input-group.eye {
  position: relative;
}
.loginformmain .logfrm form input.form-control {
  border: none;
  border-radius: 0;
  border-bottom: 1px solid;
  border-top: 1px solid;
  color: var(--common-color-blacck);
  border-left: 1px solid;
  border-right: 1px solid;
  height: 39px;
  font-size: 14px;
  border-radius: 10px;
  width: 100%;
  padding: 5px 15px;
}
.loginformmain .logfrm form a {
  text-decoration: none;
  color: var(--common-color-blacck);
}
.loginformmain .logfrm button#btnToggle {
  background: transparent;
  color: var(--common-color-blacck);
  border: none;
  padding: 0 10px;
  position: absolute;
  right: 0;
  top: 8px;
}
.loginformmain .logfrm .checking {
  display: flex;
  align-items: center;
  width: 100%;
}
.loginformmain .logfrm .checking label {
  display: block;
  color: #000;
  font-weight: 400;
  margin-top: 5px;
  font-size: 15px;
  margin-left: 4px;
}
.loginformmain .logfrm button.btn {
  padding: 8px 20px;
  background: var(--logo-color);
  border-radius: 0.625rem;
  margin-bottom: 15px;
  color: var(--common-color);
  position: relative;
  display: table;
  transition: all 0.4s ease;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
  margin-left: auto;
  display: block;
  width: 100%;
}
.loginformmain .logfrm button.btn:hover {
  background: var(--common-color);
  color: var(--common-color-blacck);
}
.loginformmain .logfrm a.flink {
  display: block;
  font-weight: 500;
  width: 100%;
  text-align: center;
  margin: 0 0 15px;
}
.loginformmain .logfrm .logfooter {
  text-align: center;
  width: 100%;
}
.loginformmain .logfrm .logfooter h6 {
  overflow: hidden;
}
.loginformmain .logfrm .logfooter i.fa.fa-google {
  color: #EA4335;
  font-size: 25px;
  margin-top: 30px;
}
.loginformmain .logfrm .logfooter .logfoot li {
  display: inline-block;
}
.loginformmain .logfrm .logfooter .logfoot li a {
  font-size: 13px;
}

/***** SINGLE BLOG PAGE ****************/
.blog-cont2 {
  padding: 40px 0;
}
.blog-cont2 .single-post h1 {
  font-size: 35px;
  line-height: 50px;
  font-weight: 600;
}
.blog-cont2 .single-post p::empty {
  display: none;
}
.blog-cont2 .single-post h2 {
  font-size: 25px;
}
.blog-cont2 .single-post h3 {
  font-size: 20px;
}
.blog-cont2 .single-post h4 {
  font-size: 18px;
}
.blog-cont2 .single-post h5 {
  font-size: 16px;
}
.blog-cont2 .single-post h6 {
  font-size: 14px;
}
.blog-cont2 .single-post ul {
  margin-left: 25px;
}
.blog-cont2 .single-post ul li {
  margin: 0 0 10px;
  list-style-type: disc;
  font-size: 14px;
  padding-left: 10px;
  line-height: 28px;
}
.blog-cont2 .single-post ol {
  margin-left: 25px;
}
.blog-cont2 .single-post ol li {
  margin: 0 0 10px;
  list-style-type: decimal;
  font-size: 14px;
  line-height: 28px;
}
.blog-cont2 .single-post ol li ol li {
  list-style-type: circle;
}
.blog-cont2 .single-post p {
  font-size: 14px;
  line-height: 30px;
  text-align: justify;
}
.blog-cont2 .single-post .innerimg {
  margin-bottom: 16px;
  width: 100%;
}
.blog-cont2 .single-post .awrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 20px;
}
.blog-cont2 .single-post .awrap .author {
  overflow: hidden;
  display: flex;
}
.blog-cont2 .single-post .awrap .author .author-image {
  float: left;
  margin-right: 10px;
  overflow: hidden;
}
.blog-cont2 .single-post .awrap .author .author-image img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-cont2 .single-post .awrap .author .desc h3 {
  font-size: 20px;
}
.blog-cont2 .single-post .awrap .author .desc h3 span {
  display: block;
  font-size: 14px;
  margin-top: 10px;
  font-weight: 400;
  color: var(--common-color-blacck);
}
.blog-cont2 .single-post .awrap .author .desc h6 {
  font-size: 14px;
  font-weight: 400;
  color: var(--common-color-blacck);
}
.blog-cont2 .single-post .awrap .catdesc h4 {
  font-size: 25px;
  font-weight: 500;
  text-align: right;
  text-transform: uppercase;
}
.blog-cont2 .single-post .authorbox {
  display: flex;
  padding: 20px 40px;
  border-radius: 30px;
  background: var(--dark-color);
  align-items: center;
  margin: 0 0 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
}
.blog-cont2 .single-post .authorbox img {
  margin-right: 20px;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}
.blog-cont2 .single-post .authorbox .desc h2 {
  font-size: 25px;
  font-family: "inter";
}
.blog-cont2 .single-post .authorbox .desc h5 {
  font-size: 14px;
  font-family: "inter";
  color: var(--common-color-blacck);
}
.blog-cont2 .single-post .authorbox .desc h3 {
  font-size: 25px;
  text-decoration: underline;
  font-family: "Inter";
}
.blog-cont2 .single-post .authorbox .desc p {
  font-size: 14px;
  line-height: 25px;
}
.blog-cont2 .widget_text {
  margin-bottom: 30px;
}
.blog-cont2 .widget_text .title {
  background: rgba(217, 244, 255, 0.5294117647);
  padding: 12px;
}
.blog-cont2 .widget_text .title h3 {
  font-size: 20px;
  line-height: 26px;
  color: var(--heading-color);
  margin: 0;
}
.blog-cont2 .widget_text.sec1 {
  padding: 0;
  text-align: center;
  background: transparent;
}
.blog-cont2 .widget_text.sec1 form {
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
}
.blog-cont2 .widget_text.sec1 input[type=search] {
  border: 1px solid rgba(1, 171, 243, 0.5882352941);
  width: 100%;
  padding: 10px;
  height: 50px;
}
.blog-cont2 .widget_text.sec1 button.submit {
  border: transparent;
  padding: 12px 20px;
  position: absolute;
  top: 0;
  right: 0;
  background: transparent;
  border-radius: 50px;
  font-size: 18px;
  color: var(--logo-color);
}
.blog-cont2 .widget_text.sec2 {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
  padding: 10px 0;
}
.blog-cont2 .widget_text.sec2 ::-webkit-scrollbar {
  display: none;
}
.blog-cont2 .widget_text.sec2 ul {
  min-height: auto;
  max-height: 23.375rem;
  overflow-y: scroll;
}
.blog-cont2 .widget_text.sec2 li {
  padding: 15px;
}
.blog-cont2 .widget_text.sec2 li .post-img {
  float: left;
  width: 100px;
  height: 100%;
  margin-right: 10px;
  overflow: hidden;
}
.blog-cont2 .widget_text.sec2 li .post-img img {
  width: 100px;
  height: 75px;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-cont2 .widget_text.sec2 li .cnpblog-info {
  overflow: hidden;
}
.blog-cont2 .widget_text.sec2 li .cnpblog-info h4 a {
  color: #000000;
  font-weight: 500;
  font-family: "inter";
  font-size: 14px;
}
.blog-cont2 .widget_text.sec2 li .cnpblog-info h5 {
  font-size: 12px;
  color: #000;
  font-weight: 400;
  text-transform: uppercase;
}
.blog-cont2 .widget_text.sec3 {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
}
.blog-cont2 .widget_text.sec3 ::-webkit-scrollbar {
  display: none;
}
.blog-cont2 .widget_text.sec3 ul {
  padding: 15px;
  min-height: auto;
  max-height: 23rem;
  overflow-y: scroll;
}
.blog-cont2 .widget_text.sec3 ul li {
  position: relative;
  padding: 10px 0;
  border-bottom: 1px solid #0daeea;
}
.blog-cont2 .widget_text.sec3 ul li:last-child {
  border-bottom: none;
}
.blog-cont2 .widget_text.sec3 ul li a {
  font-size: 14px;
  text-decoration: none;
  color: var(--common-color-blacck);
  font-weight: 300;
  display: block;
  font-family: "inter";
}
.blog-cont2 .widget_text.sec3 ul li a:hover {
  color: var(--logo-color);
}
.blog-cont2 .widget_text.sec4 {
  background: rgba(217, 244, 255, 0.5294117647);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
  text-align: center;
  padding: 25px;
}
.blog-cont2 .widget_text.sec4 h2 {
  font-size: 25px;
  text-align: center;
  font-family: "inter";
  margin: 0 0 15px;
}
.blog-cont2 .widget_text.sec4 p {
  line-height: 25px;
  font-size: 14px;
}
.blog-cont2 .widget_text.sec4 input.form-control {
  margin-bottom: 15px;
  border: navajowhite;
}
.blog-cont2 .widget_text.sec4 button.btn {
  display: table;
  padding: 12px 40px;
  font-size: 14px;
  background: var(--logo-color);
  color: var(--common-color);
  border-radius: 10px;
  width: 100%;
  font-weight: 500;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
  transition: all 0.4s ease;
}
.blog-cont2 .widget_text.sec4 button.btn:hover {
  background: var(--common-color);
  color: var(--common-color-blacck);
}

/***** SINGLE BLOG PAGE ****************/
.cat-blog {
  padding: 30px 0;
}
.cat-blog p {
  font-size: 14px;
  line-height: 30px;
  text-align: justify;
}
.cat-blog .subscribe {
  background: #D9F4FF;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
}
.cat-blog .subscribe h2 {
  font-size: 20px;
  text-align: center;
  font-family: "inter";
  margin-top: 20px;
  text-transform: uppercase;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
}
.cat-blog .subscribe form.ctf1 {
  padding: 10px 0;
}
.cat-blog .subscribe form.ctf1 .btn_acc {
  padding: 10px 20px;
  border-radius: 10px;
  color: var(--common-color);
  background: var(--logo-color);
  width: 100%;
  font-weight: 500;
  transition: all 0.4s ease;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
}
.cat-blog .subscribe form.ctf1 label {
  display: block;
  color: #000;
  font-size: 0.938rem;
  font-weight: 500;
}
.cat-blog .subscribe form.ctf1 .form-control {
  width: 100%;
  padding: 0.625rem 0;
  border: transparent;
  border-bottom: 1px solid #8D8D8D;
  height: 20px;
  border-radius: 0;
  width: 100%;
  background-color: transparent;
  color: #515151;
  margin-bottom: 0.938rem;
}
.cat-blog .first-sec {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.cat-blog .first-sec h1 {
  font-size: 35px;
  line-height: 50px;
  font-weight: 600;
  margin: 0;
}
.cat-blog .first-sec form select {
  background: #D9F4FF;
  border: none;
  width: 100%;
  padding: 10px;
  height: 50px;
}
.cat-blog .widget_text.sec1 {
  padding: 0;
  text-align: center;
  background: transparent;
}
.cat-blog .widget_text.sec1 form {
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
}
.cat-blog .widget_text.sec1 input[type=search] {
  border: 1px solid rgba(1, 171, 243, 0.5882352941);
  width: 100%;
  padding: 10px;
  height: 50px;
}
.cat-blog .widget_text.sec1 button.submit {
  border: transparent;
  padding: 12px 20px;
  position: absolute;
  top: 0;
  right: 0;
  background: transparent;
  border-radius: 50px;
  font-size: 18px;
  color: var(--logo-color);
}

.catlist .categorylistings {
  margin: 0 0 30px;
}
.catlist .categorylistings h6 {
  font-size: 16px;
  font-weight: 500;
}
.catlist .categorylistings .catbox .mainbg {
  width: 100%;
  max-height: 190px;
  min-height: 190px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.catlist .categorylistings .catdesc {
  margin-top: -8%;
}
.catlist .categorylistings .catdesc img.autpic {
  width: 56px;
  height: 56px;
  border-radius: 50px;
  margin-bottom: 20px;
  margin-left: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}
.catlist .categorylistings .catdesc p:empty {
  display: none !important;
}
.catlist .categorylistings .catdesc h2 {
  font-size: 20px;
  line-height: 30px;
  color: var(--heading-color);
}
.catlist .categorylistings .catdesc h2 a {
  text-decoration: none;
  color: var(--heading-color);
}
.catlist .categorylistings .catdesc h4 {
  font-size: 14px;
}
.catlist .categorylistings .catdesc p {
  font-size: 14px;
  line-height: 30px;
  text-align: justify;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: #212529 !important;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.catlist .categorylistings .catdesc .auther {
  display: flex;
  align-items: center;
  width: 100%;
  color: #000;
}
.catlist .categorylistings .catdesc .auther span {
  margin: 0 4px;
}
.catlist .categorylistings .catdesc .auther i {
  margin: 0 10px;
  color: #000;
}
.catlist .categorylistings .catdesc .auther i:first-child {
  margin-left: 0;
  margin-right: 5px;
}
.catlist .categorylistings .catdesc .auther h4 {
  color: var(--common-color-blacck);
  margin: 0;
}

.write {
  padding: 30px 0;
}
.write h4 {
  font-size: 18px;
  font-weight: 400;
}
.write img {
  width: 100%;
  height: 540px;
  -o-object-fit: cover;
     object-fit: cover;
}
.write h1 {
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.write p {
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
}

.content {
  padding: 30px 0;
}
.content img {
  width: 100%;
  height: 540px;
  -o-object-fit: cover;
     object-fit: cover;
}
.content h2 {
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.content .contentwrap {
  margin-bottom: 20px;
  transition: cubic-bezier(0.19, 1, 0.22, 1);
  padding: 10px;
}
.content .contentwrap:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
}
.content .contentwrap .cyan {
  background: #C9EBE9 !important;
}
.content .contentwrap .cyan i {
  color: #4A79FF !important;
}
.content .contentwrap .purple {
  background: #EAE1F9 !important;
}
.content .contentwrap .purple i {
  color: #9160EF !important;
}
.content .contentwrap .greenpeanut {
  background: #C9EBE9 !important;
}
.content .contentwrap .greenpeanut i {
  color: #18CBB5 !important;
}
.content .contentwrap .orange {
  background: #F8E9CC !important;
}
.content .contentwrap .orange i {
  color: #FCC41D !important;
}
.content .contentwrap .author {
  display: flex;
  align-items: center;
}
.content .contentwrap .author .author-image {
  width: 65px;
  background: #FDE1E4;
  color: #FD3444;
  text-align: center;
  padding: 20px;
  font-size: 20px;
  margin-right: 15px;
  height: 65px;
}
.content .contentwrap .author .author-image i {
  font-size: 25px;
}
.content .contentwrap .author h4 {
  font-size: 20px;
  font-weight: 600;
  font-family: inter;
}
.content .contentwrap .author p {
  font-size: 18px;
  margin: 0;
  font-weight: 400;
  font-family: inter;
}

.topics {
  text-align: center;
  padding: 50px 0;
}
.topics h2 {
  text-align: center;
  margin: 0 0 30px;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.topics p {
  font-size: 18px;
  max-width: 900px;
  line-height: 30px;
  margin: 0 auto 40px;
}
.topics .contentwrap {
  border-radius: 21px;
  text-align: center;
  margin-bottom: 2rem;
  cursor: pointer;
  position: relative;
  padding: 40px 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 4px;
}
.topics .contentwrap:hover {
  box-shadow: 0px 7px 40px 2pxx rgba(0, 0, 0, 0.2);
}
.topics .contentwrap .seo {
  background: #fcebe1;
  color: #f4525d !important;
}
.topics .contentwrap .digitalmarketing {
  background: #EAE1F9 !important;
  color: #3E34FD !important;
}
.topics .contentwrap .uiux {
  background: #c9ebe9 !important;
  color: #5681f5 !important;
}
.topics .contentwrap .link-building {
  background: #d7e8fc !important;
  color: #3894f7 !important;
}
.topics .contentwrap .ppc {
  background: #f8e9cc !important;
  color: #f3ca2b !important;
}
.topics .contentwrap .content-marketing {
  background: #FDE1E4;
  color: #FD3444 !important;
}
.topics .contentwrap .seotools {
  background: #d7e8fc !important;
  color: #468eee !important;
}
.topics .contentwrap .siteoptimize {
  background: #eae1f9 !important;
  color: #8650f5 !important;
}
.topics .contentwrap .author {
  display: block;
  align-items: center;
  justify-content: center;
}
.topics .contentwrap .author .author-image {
  text-align: center;
  margin-bottom: 20px;
}
.topics .contentwrap .author .author-image i {
  font-size: 20px;
  padding: 20px;
  border-radius: 10px;
}
.topics .contentwrap .author h4 {
  font-size: 20px;
  font-family: inter;
  font-weight: 700;
}
.topics .contentwrap .author p {
  font-size: 15px;
  font-weight: 400;
  margin: 0;
  font-family: inter;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.iner {
  background: #D9F4FF;
  padding: 40px 0;
  text-align: center;
}
.iner h2 {
  margin: 0 0 20px;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.iner p {
  font-size: 18px;
  max-width: 900px;
  line-height: 30px;
  margin: auto;
}

.bullet {
  padding: 30px 0;
}
.bullet ul li {
  margin-bottom: 20px;
}
.bullet ul li .points {
  position: relative;
  padding: 20px;
  border-radius: 5px;
  font-size: 18px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
}
.bullet ul li .points img.bpoints {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}

.neverpublish {
  text-align: center;
  padding: 50px 0;
}
.neverpublish h2 {
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.neverpublish .block {
  margin-bottom: 30px;
}
.neverpublish .block .contentwrap {
  border-radius: 21px;
  height: 100%;
  cursor: pointer;
  position: relative;
  height: 100%;
  padding: 50px 40px 50px 40px;
  border-style: solid;
  border-width: 0px 0px 2px 0px;
  border-color: #05be00;
  border-radius: 0px 0px 30px 0px;
  max-height: 360px;
  min-height: 360px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 4px;
  overflow: hidden;
}
.neverpublish .block .contentwrap .previously {
  background: #d7e6fc;
  color: #3882d7 !important;
}
.neverpublish .block .contentwrap .lawed {
  background: #e8e0fa !important;
  color: #896ac2 !important;
}
.neverpublish .block .contentwrap .ack {
  background: #feebe2 !important;
  color: #d15c61 !important;
}
.neverpublish .block .contentwrap .duplicate {
  background: #e8e0fa !important;
  color: #9c77e7 !important;
}
.neverpublish .block .contentwrap .xcess {
  background: #d7e6fc !important;
  color: #1a7eed !important;
}
.neverpublish .block .contentwrap .author-image {
  text-align: left;
  margin-bottom: 20px;
}
.neverpublish .block .contentwrap .author-image i {
  font-size: 20px;
  padding: 20px;
}
.neverpublish .block .contentwrap h4 {
  font-size: 20px;
  font-family: inter;
  text-align: left;
  line-height: 30px;
  margin-bottom: 20px;
  font-weight: 700;
}
.neverpublish .block .contentwrap p {
  font-size: 15px;
  font-weight: 400;
  font-family: inter;
  text-align: left;
  line-height: 30px;
}
.neverpublish .block .border {
  border-color: var(--logo-color) !important;
  border-style: solid !important;
  border-width: 0px 0px 2px 0px !important;
  border-radius: 0px 0px 30px 0px !important;
}

.getstart {
  padding: 40px 0;
}
.getstart h2 {
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.getstart a {
  text-decoration: none;
  color: #000;
}
.getstart p {
  font-size: 18px;
  font-weight: 400;
  font-family: inter;
  line-height: 25px;
}
.getstart .btn_login {
  padding: 10px 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
  border-radius: 10px;
  margin-right: 10px;
  transition: all 0.4s ease;
  margin-top: 28px;
  display: inline-block;
}
.getstart .btn_login:hover {
  background: var(--logo-color);
  color: var(--common-color);
}
.getstart .contentwrap {
  border-radius: 21px;
  text-align: center;
  margin-bottom: 2rem;
  cursor: pointer;
}
.getstart .contentwrap .author {
  display: flex;
  align-items: center;
  text-align: left;
  border-bottom: 1px solid #000000;
}
.getstart .contentwrap .author .author-image i {
  font-size: 24px;
  margin-bottom: 1rem;
}
.getstart .contentwrap .author .desc {
  margin-left: 15px;
}
.getstart .contentwrap .author .desc h4 {
  font-size: 18px;
  font-family: inter;
}
.getstart .contentwrap .author .desc p {
  font-size: 15px;
  font-weight: 400;
  font-family: inter;
}
.getstart .ctwrap {
  background: rgba(154, 226, 255, 0.3803921569);
  padding: 30px;
  border-radius: 20px;
}
.getstart .leftocnt {
  padding: 30px;
}
.getstart h2 {
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.getstart .ctf1 label {
  display: block;
  color: #000;
  font-size: 0.938rem;
  font-weight: 500;
}
.getstart .ctf1 textarea {
  height: 65px;
  resize: none;
  width: 100%;
  border: transparent;
  background: transparent;
  border-bottom: 1px solid #8D8D8D;
}
.getstart .ctf1 input:focus {
  outline: none;
}
.getstart .ctf1 .form-control {
  width: 100%;
  padding: 0.625rem 0;
  border: transparent;
  border-bottom: 1px solid #8D8D8D;
  height: 40px;
  border-radius: 0;
  background-color: transparent;
  color: #515151;
  margin-bottom: 0.938rem;
}
.getstart .ctf1 input::-moz-placeholder {
  color: #555555;
}
.getstart .ctf1 input::placeholder {
  color: #555555;
}
.getstart .ctf1 .btn {
  padding: 10px 20px;
  background: var(--logo-color);
  border-radius: 0.625rem;
  color: var(--common-color);
  position: relative;
  display: table;
  transition: all 0.4s ease;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
}
.getstart .ctf1 .btn:hover {
  background: var(--common-color);
  color: var(--common-color-blacck);
}
.getstart .ctf1 .btn:hover {
  opacity: 0.9;
}

.blogsearchlisting {
  text-align: center;
  margin: auto;
  width: 100%;
  padding: 6rem 0;
  justify-content: center;
}
.blogsearchlisting h1 {
  font-size: 44px;
  margin: 0 0 30px;
}
.blogsearchlisting h1 span {
  border-right: 0.05em solid;
  animation: caret 1s steps(100);
  animation: 1s blink step-end infinite;
  margin-left: 5px;
  color: var(--heading-color);
}
.blogsearchlisting .search {
  text-align: right;
}
.blogsearchlisting .search form.searchform {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 50px;
}
.blogsearchlisting .search form.searchform ::-moz-placeholder#s {
  font-size: 21px;
  color: #000;
  font-weight: 500;
}
.blogsearchlisting .search form.searchform ::placeholder#s {
  font-size: 21px;
  color: #000;
  font-weight: 500;
}
.blogsearchlisting .search form.searchform input[type=search] {
  width: 100%;
  border: transparent;
  height: 60px;
  padding: 10px;
  border-radius: 50px;
  padding-left: 45px;
}
.blogsearchlisting .search form.searchform select {
  height: 50px;
  border: transparent;
  padding: 5px 5px 5px 10px;
  font-size: 17px;
  color: var(--common-color-blacck);
}
.blogsearchlisting .search form.searchform .fa-search {
  position: absolute;
  left: 18px;
  color: var(--heading-color);
  font-size: 24px;
}
.blogsearchlisting .search form.searchform button[type=submit] {
  color: var(--heading-color);
  top: 0;
  width: 2.5rem;
  border: none;
  bottom: 0;
  color: var(--heading-color);
  font-size: 22px;
  background: transparent;
  padding-right: 10px;
}

.bloglistingcat {
  padding: 30px 0;
}
.bloglistingcat .blogcatlink {
  padding-bottom: 5px;
  width: 100%;
  border-bottom: 1px solid #000;
  overflow: hidden;
  display: inline-block;
  align-items: center;
  height: 30px;
}
.bloglistingcat .blogcatlink li {
  display: inline-block;
  overflow: hidden;
}
.bloglistingcat .blogcatlink li a {
  text-decoration: none;
  overflow: hidden;
  color: var(--common-color-blacck);
  font-family: "inter";
  padding: 10px;
}
.bloglistingcat .blogcatlink li a:hover {
  color: var(--logo-color);
}

.blogmainlist {
  padding: 30px 0;
}
.blogmainlist h2 {
  font-size: 35px;
  font-family: "inter";
  cursor: pointer;
  font-weight: 700;
}
.blogmainlist h2 a {
  text-decoration: none;
  color: var(--heading-color);
}
.blogmainlist .nav-sidebar {
  margin: 0 0 30px;
}
.blogmainlist .nav-sidebar ul.nav.tabs li a {
  color: #222;
  font-size: 14px;
  font-weight: 400;
  line-height: 27px;
  font-family: "inter";
  border-bottom: 2px solid var(--heading-color);
  padding: 10px;
  position: relative;
  padding-left: 17px;
  padding: 10px 20px;
  margin-right: 10px;
  /* box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px; */
  border: transparent;
}
.blogmainlist .nav-sidebar ul.nav.tabs li a.active {
  /* background: var(--dark-color); */
  color: var(--common-color-blacck);
  padding: 10px 20px;
  color: var(--heading-color);
  border-bottom: 2px solid var(--heading-color);
}
.blogmainlist .nav-sidebar ul.nav.tabs li a.active:hover {
  color: var(--heading-color);
  border-bottom: 2px solid var(--heading-color);
}
.blogmainlist .nav-sidebar ul.nav.tabs li a:hover {
  color: var(--heading-color);
  border-bottom: 2px solid var(--heading-color);
}
.blogmainlist .categorylistings {
  margin: 0 0 30px;
}
.blogmainlist .categorylistings h6 {
  font-size: 16px;
  font-weight: 500;
}
.blogmainlist .categorylistings .catbox .mainbg {
  width: 100%;
  max-height: 190px;
  height: 100%;
  min-height: 190px;
  -o-object-fit: cover;
     object-fit: cover;
}
.blogmainlist .categorylistings .catdesc {
  margin-top: -8%;
}
.blogmainlist .categorylistings .catdesc img.autpic {
  width: 56px;
  height: 56px;
  border-radius: 50px;
  margin-bottom: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: 5px;
}
.blogmainlist .categorylistings .catdesc p:empty {
  display: none !important;
}
.blogmainlist .categorylistings .catdesc h2 {
  font-size: 20px;
  line-height: 30px;
  color: var(--heading-color);
}
.blogmainlist .categorylistings .catdesc h4 {
  font-size: 14px;
}
.blogmainlist .categorylistings .catdesc p {
  font-size: 14px;
  line-height: 30px;
  text-align: justify;
  color: #212529;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.blogmainlist .categorylistings .catdesc .auther {
  display: flex;
  align-items: center;
  width: 100%;
  color: #212529;
}
.blogmainlist .categorylistings .catdesc .auther span {
  margin: 0 4px;
}
.blogmainlist .categorylistings .catdesc .auther i {
  margin: 0 10px;
  text-decoration: none;
  color: #212529;
}
.blogmainlist .categorylistings .catdesc .auther i:first-child {
  margin-left: 0;
  margin-right: 5px;
}
.blogmainlist .categorylistings .catdesc .auther h4 {
  color: #212529;
  margin: 0;
}

.popularblog {
  padding-bottom: 30px;
}
.popularblog .vi {
  scroll-behavior: smooth;
  border-left: 1px solid rgba(0, 0, 0, 0.5215686275);
  height: 500px;
  overflow: scroll;
}
.popularblog ::-webkit-scrollbar {
  display: none;
}
.popularblog .blogwrap {
  text-align: center;
}
.popularblog .blogwrap img {
  width: 100%;
  margin-bottom: 20px;
  min-height: 280px;
  -o-object-fit: cover;
  object-fit: cover;
  max-height: 280px;
}
.popularblog .blogwrap h2 {
  text-transform: capitalize;
  text-align: center;
}
.popularblog .blogwrap h2 a {
  text-decoration: none;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}
.popularblog .blogwrap h6 {
  font-weight: 400;
  margin-bottom: 20px;
}
.popularblog .blogwrap p {
  font-size: 15px;
}
.popularblog .tabs {
  display: grid;
}
.popularblog ul.tab-header {
  border-bottom: 3px solid #084b61;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.popularblog ul.tab-header li {
  width: 49%;
  text-align: center;
}
.popularblog ul.tab-header li.active {
  background: #084b61;
  color: #fff;
  /* display: flex; */
  align-items: center;
  text-align: center;
  padding: 6px;
  text-align: center;
}
.popularblog ul.tab-header li.hover {
  background: #084b61;
  color: #fff;
}
.popularblog .tab-content .active {
  display: flex !important;
  opacity: 1 !important;
  transition: opacity 0.15s linear;
}
.popularblog .tab-content .tab-inner {
  display: none;
  opacity: 0;
  transition: opacity 0.15s linear;
}
.popularblog ul.tab-header {
  padding: 0;
  text-align: center;
  border-bottom: 3px solid #084b61;
}
.popularblog .tab-content {
  padding: 10px;
  border-top: 0px;
}
.popularblog .latestpost li h6 {
  font-size: 14px;
  font-weight: 400;
}
.popularblog .latestpost li h2 {
  font-size: 15px;
  line-height: 25px;
  cursor: pointer;
}
.popularblog .latestpost li h2 p {
  padding: 0;
  font-size: 15px;
  line-height: 25px;
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 12px;
  color: var(--heading-color);
}
.popularblog .latestpost li h2 p a {
  text-decoration: none;
  color: var(--heading-color);
}
.popularblog .latestpost li h2 a {
  text-decoration: none;
  color: var(--heading-color);
}
.popularblog .latestpost li p {
  font-size: 12px;
  color: #B3A8A8;
}

.pbogcategory {
  padding: 30px 0;
  background: rgba(154, 226, 255, 0.3803921569);
}
.pbogcategory h2 {
  text-decoration: none;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  margin-bottom: 30px;
  font-size: 30px;
  font-family: "inter";
}
.pbogcategory .wrap {
  position: relative;
  background: var(--common-color);
}
.pbogcategory .wrap .imgbox {
  position: relative;
}
.pbogcategory .wrap .imgbox img {
  max-height: 184px;
  min-height: 184px;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  width: 100%;
}
.pbogcategory .wrap .imgbox h4 {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 8px;
  color: var(--common-color);
  padding: 10px;
  background: #2c241d;
  width: 50px;
  text-align: center;
  background: var(--heading-color);
}
.pbogcategory .wrap .imgbox h4 span {
  display: block;
  font-size: 15px;
  color: var(--common-color);
}
.pbogcategory .wrap .description {
  padding: 25px;
}
.pbogcategory .wrap .description h2 {
  font-size: 20px;
  line-height: 30px;
}
.pbogcategory .wrap .description p {
  font-size: 13px;
}
.pbogcategory .wrap .description a.btn_login {
  padding: 10px 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
  border-radius: 10px;
  text-decoration: none;
  margin-right: 10px;
  text-align: center;
  background: var(--logo-color);
  color: var(--common-color);
  display: block;
  transition: all 0.4s ease;
}
.pbogcategory .wrap .description a.btn_login:hover {
  color: var(--common-color-blacck);
  background: var(--common-color);
}

.catdetailsmain {
  padding: 40px 0;
}
.catdetailsmain h3 {
  font-weight: 700;
  font-family: "inter";
  font-size: 30px;
}
.catdetailsmain h2 {
  font-weight: 700;
  font-family: "inter";
  font-size: 2.5rem;
}
.catdetailsmain ul {
  margin-left: 25px;
}
.catdetailsmain ul li {
  margin: 0 0 10px;
  list-style-type: disc;
  color: #7D7D7D;
  font-size: 15px;
  padding-left: 10px;
}
.catdetailsmain p {
  color: #717171;
  font-size: 18px;
  line-height: 25px;
}

.allcategoriesmain {
  padding: 40px 0;
}
.allcategoriesmain h1 {
  font-weight: 700;
  font-family: "inter";
  margin-bottom: 30px;
}
.allcategoriesmain .contact_block {
  border-radius: 21px;
  text-align: center;
  margin-bottom: 2rem;
  cursor: pointer;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 20px;
}
.allcategoriesmain .contact_block img.shape-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  max-height: 80px;
  border-bottom-right-radius: 20px;
}
.allcategoriesmain .contact_block h2 {
  font-family: "inter";
  text-align: left;
  font-weight: 700;
  margin: 0 0 30px;
}
.allcategoriesmain .contact_block .cathead {
  text-align: center;
  display: flex;
  margin-bottom: 36px;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.allcategoriesmain .contact_block .cathead img {
  width: 29px;
  height: 26px;
  -o-object-fit: cover;
     object-fit: cover;
}
.allcategoriesmain .contact_block .cathead a.ts {
  background: #199855;
  text-decoration: none;
  color: #fff;
  transition: all 0.4s ease;
  padding: 4px 16px;
  border-radius: 20px;
}
.allcategoriesmain .contact_block .item {
  display: flex;
  justify-content: space-between;
  text-align: left;
  align-items: center;
  margin-right: 5px;
  border-top: 2px solid #E8E8E8;
  padding: 1.875rem 0;
}
.allcategoriesmain .contact_block .item ul li {
  display: inline-block;
  margin-right: 6px;
}
.allcategoriesmain .contact_block .item ul li p {
  margin-bottom: 0;
  text-align: left;
  font-size: 1rem;
}
.allcategoriesmain .contact_block .item ul li p span {
  font-size: 1.063rem;
  font-weight: 500;
  text-align: left;
  display: block;
}

.bloglistingcategorylist {
  padding: 40px 0;
}
.bloglistingcategorylist .blogcontent h2 {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 500;
  font-family: "inter";
}
.bloglistingcategorylist .blogcontent img {
  margin-bottom: 15px;
  max-height: 182px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  min-height: 182px;
}
.bloglistingcategorylist .blogcontent h3 {
  font-size: 20px;
}
.bloglistingcategorylist .blogcontent h3 a {
  text-decoration: none;
  color: var(--heading-color);
}
.bloglistingcategorylist ul {
  margin-top: 20px;
}
.bloglistingcategorylist ul li {
  border-top: 1px solid #000;
  padding: 17px 0;
}
.bloglistingcategorylist ul li a {
  text-decoration: none;
  font-size: 14px;
  color: var(--common-color-blacck);
}

.contentmarketing {
  background: rgba(154, 226, 255, 0.3803921569);
  padding: 40px 0;
}
.contentmarketing h2 {
  font-size: 30px;
  margin: 0 0 20px;
  font-weight: 700;
}
.contentmarketing .line {
  border-bottom: 1px solid var(--common-color-blacck);
  width: 100%;
  margin: 30px 0;
}
.contentmarketing ul li {
  border-bottom: 1px solid #000;
  padding: 20px 0;
}
.contentmarketing ul li:first-child {
  padding-top: 0;
}
.contentmarketing ul li:last-child {
  border-bottom: 0px solid #000;
}
.contentmarketing ul li a {
  text-decoration: none;
  font-size: 14px;
  color: var(--common-color-blacck);
}
.contentmarketing img {
  margin-bottom: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  min-height: 291px;
  max-height: 291px;
}
.contentmarketing h3 {
  font-weight: 700;
  color: var(--heading-color);
  text-decoration: none;
  font-size: 30px;
  font-family: "inter";
}
.contentmarketing h3 a {
  text-decoration: none;
  color: var(--heading-color);
}

.newsletter {
  padding: 40px 0;
}
.newsletter .new {
  padding: 20px;
  position: relative;
  background: rgba(154, 226, 255, 0.3803921569);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.newsletter .new img.bgnews {
  position: absolute;
  right: 0;
  bottom: 0;
}
.newsletter .new .post-img {
  float: left;
  height: 100%;
  margin-right: 10px;
  overflow: hidden;
}
.newsletter .new .cnpblog-info h4 {
  font-weight: 700;
  font-size: 30px;
}
.newsletter .new .cnpblog-info p {
  font-size: 15px;
  color: var(--heading-color);
}
.newsletter .new .cnpblog-info h2 {
  font-weight: 700;
  font-size: 30px;
}
.newsletter .new .cnpblog-info form input.form-control {
  border: none;
}
.newsletter .new .cnpblog-info form .btn {
  padding: 8px 20px;
  background: var(--logo-color);
  border-radius: 0.625rem;
  color: var(--common-color);
  position: relative;
  display: table;
  transition: all 0.4s ease;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
}
.newsletter .new .cnpblog-info form .btn:hover {
  background: var(--common-color);
  color: var(--common-color-blacck);
}
.newsletter .new .cnpblog-info form input[type=checkbox] {
  margin-right: 5px;
}
.newsletter .new .cnpblog-info form .checking {
  display: flex;
  align-items: center;
  width: 100%;
}
.newsletter .new .cnpblog-info form .checking label {
  display: block;
  color: #000;
  margin: 0;
}
.newsletter .new .cnpblog-info form .checking label a {
  text-decoration: none;
  color: #000;
}

section.terms {
  padding: 60px 0;
}
section.terms h1 {
  font-size: 30px;
  color: var(--heading-color);
  font-weight: 600;
}
section.terms p {
  font-size: 14px;
  line-height: 30px;
  text-align: justify;
}
section.terms a {
  color: var(--heading-color);
  text-decoration: underline;
  font-weight: 600;
}
section.terms h2 {
  font-size: 18px;
  font-weight: 600;
}
section.terms h3 {
  font-size: 15px;
  margin-top: 20px;
}
section.terms ul {
  margin-left: 25px;
}
section.terms ul li {
  margin: 0 0 10px;
  list-style-type: lower-alpha;
  font-size: 15px;
  padding-left: 10px;
  text-align: justify;
  line-height: 28px;
}
section.terms ul li strong {
  color: var(--heading-color);
}
section.terms ol li {
  margin: 0 0 10px;
  list-style-type: disc;
  font-size: 15px;
  line-height: 28px;
}
section.terms ol li ol li {
  list-style-type: circle;
}
section.terms ol.list2 li {
  list-style-type: circle;
}

.myaccount .dashleft {
  background: var(--common-color);
  padding: 35px;
}
.myaccount .dashleft .dashlik li {
  display: block;
  width: 100%;
}
.myaccount .dashleft .dashlik li a.bell {
  background: #FF0000 !important;
  font-weight: 700 !important;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
  color: #fff !important;
  border: 1px solid #FF0000 !important;
  position: relative;
}
.myaccount .dashleft .dashlik li a.bell:hover {
  color: #FF0000 !important;
  background: #fff !important;
  border: 1px solid #FF0000 !important;
}
.myaccount .dashleft .dashlik li a.bell span.notif-count {
  position: absolute;
  background: #ffffff;
  color: #ff0000;
  min-width: 18px;
  min-height: 18px;
  border-radius: 20px;
  font-size: 10px;
  text-align: center;
  line-height: 17px;
  z-index: 9;
  border: 1px solid #ff0000;
}
.myaccount .dashleft .dashlik li a.mplace {
  background: #1fbe1a !important;
  font-weight: 700 !important;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
  color: #fff;
  border: 1px solid #1fbe1a !important;
}
.myaccount .dashleft .dashlik li a.mplace:hover {
  color: #1fbe1a !important;
  background: #fff !important;
  border: 1px solid #1fbe1a !important;
}
.myaccount .dashleft .dashlik li a {
  color: var(--common-color-blacck);
  font-size: 14px;
  font-weight: 400;
  line-height: 27px;
  font-family: "inter";
  border-radius: 18px;
  margin-bottom: 10px;
  text-align: center;
  display: block;
  width: 100%;
  position: relative;
  border: none;
  background: #F2F4F7;
  padding: 14px 20px;
  transition: all 0.4s ease;
}
.myaccount .dashleft .dashlik li a i {
  margin-right: 5px;
}
.myaccount .dashleft .dashlik li a:hover {
  color: var(--common-color);
  background: var(--logo-color);
}
.myaccount .dashleft .nav-sidebar {
  justify-content: center;
}
.myaccount .dashleft .nav-sidebar ul.nav.tabs li.fast {
  margin-left: 0 !important;
}
.myaccount .dashleft .nav-sidebar ul.nav.tabs li {
  margin-left: 10px;
}
.myaccount .dashleft .nav-sidebar ul.nav.tabs li a {
  color: var(--common-color-blacck);
  font-size: 14px;
  font-weight: 400;
  line-height: 27px;
  font-family: "inter";
  border-radius: 18px;
  margin-bottom: 10px;
  text-align: center;
  display: block;
  width: 100%;
  position: relative;
  border: none;
  background: #F2F4F7;
  padding: 14px 26px;
  transition: all 0.4s ease;
}
.myaccount .dashleft .nav-sidebar ul.nav.tabs li a.active {
  background: var(--logo-color);
  color: var(--common-color);
}
.myaccount .dashleft .nav-sidebar ul.nav.tabs li a.active:hover {
  background: var(--logo-color);
  color: var(--common-color);
}
.myaccount .dashleft .nav-sidebar ul.nav.tabs li a:hover {
  background: var(--logo-color);
  color: var(--common-color);
}
.myaccount .dashright {
  background: #F9F9F9;
  overflow: hidden;
  padding: 35px;
}
.myaccount .dashright .allprof h1 {
  font-size: 30px;
  font-family: "inter";
  color: var(--common-color-blacck);
  margin-bottom: 30px;
}
.myaccount .dashright .allprof h1 span {
  display: block;
  font-size: 15px;
}
.myaccount .dashright .allprof .orange {
  background: rgba(1, 171, 243, 0.3411764706) !important;
}
.myaccount .dashright .allprof .orangeback {
  background: #00adee !important;
}
.myaccount .dashright .allprof .upload {
  background: #2B67F6 !important;
}
.myaccount .dashright .allprof .wh {
  background: #fff !important;
}
.myaccount .dashright .allprof .wh i {
  color: #2B67F6 !important;
}
.myaccount .dashright .allprof ul li a {
  text-decoration: none;
}
.myaccount .dashright .allprof ul li a .contentwrap {
  background: rgba(6, 190, 3, 0.17);
  margin-bottom: 30px;
  transition: cubic-bezier(0.19, 1, 0.22, 1);
  border-radius: 10px;
  padding: 10px;
}
.myaccount .dashright .allprof ul li a .contentwrap:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
}
.myaccount .dashright .allprof ul li a .contentwrap .w {
  color: #fff !important;
}
.myaccount .dashright .allprof ul li a .contentwrap .author {
  display: flex;
  align-items: center;
}
.myaccount .dashright .allprof ul li a .contentwrap .author .author-image {
  width: 65px;
  background: #2ED573;
  color: #ffffff;
  text-align: center;
  padding: 20px;
  font-size: 20px;
  margin-right: 15px;
  height: 65px;
  border-radius: 18px;
}
.myaccount .dashright .allprof ul li a .contentwrap .author .author-image i {
  font-size: 25px;
}
.myaccount .dashright .allprof ul li a .contentwrap .author h4 {
  font-size: 20px;
  font-weight: 600;
  font-family: inter;
  color: var(--common-color-blacck);
}
.myaccount .dashright .allprof ul li a .contentwrap .author p {
  font-size: 15px;
  margin: 0;
  font-weight: 400;
  font-family: inter;
  color: #000;
}
.myaccount .dashright .allprof .prfsec .profilemainban {
  width: 100%;
  max-height: 400px;
  height: 100%;
}
.myaccount .dashright .allprof .prfsec .prfimg {
  margin-top: -65px;
  padding: 0 20px;
  background: var(--common-color);
}
.myaccount .dashright .allprof .prfsec .prfimg .circle {
  position: relative;
  width: 130px;
  height: 130px;
}
.myaccount .dashright .allprof .prfsec .prfimg .circle img {
  width: 130px;
  height: 130px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 5px solid #fff;
}
.myaccount .dashright .allprof .prfsec .prfimg .circle .p-image {
  position: absolute;
  right: 0;
  bottom: 0;
}
.myaccount .dashright .allprof .prfsec .prfimg .p-image input.file-upload {
  display: none;
}
.myaccount .dashright .allprof .prfsec .prfimg .profileimahe {
  height: 130px;
  width: 130px;
  border-radius: 50px;
}
.myaccount .dashright .allprof .prfsec .prfimg h2 {
  font-size: 25px;
  font-family: "inter";
  margin: 20px 0;
}
.myaccount .dashright .allprof .prfsec .prfimg h2 a {
  text-decoration: none;
  color: var(--heading-color);
}
.myaccount .dashright .allprof .prfsec .prfimg .profilebuyer {
  padding: 15px 30px;
  background: #ffffff;
  font-size: 15px;
  align-items: center;
  justify-content: space-between;
  margin: 0;
}
.myaccount .dashright .allprof .prfsec .prfimg .profilebuyer label {
  margin: 10px 10px 0px 0;
}
.myaccount .dashright .allprof .prfsec .prfimg .profilebuyer input[type=text] {
  width: 100%;
  padding: 0.625rem 0;
  border: transparent;
  border-bottom: 1px solid #8D8D8D;
  border-radius: 0;
  background-color: transparent;
  color: #515151;
}
.myaccount .dashright .allprof .prfsec .prfimg .profilebuyer input[type=email] {
  border-radius: 0;
  width: 100%;
  padding: 0.625rem 0;
  border: transparent;
  border-bottom: 1px solid #8D8D8D;
  /* height: 2.813rem; */
  /* border-radius: 0; */
  background-color: transparent;
  color: #515151;
  margin-bottom: 0.938rem;
}
.myaccount .dashright .allprof .prfsec .prfimg .profilebuyer input[type=number] {
  width: 100%;
  padding: 0.625rem 0;
  border: transparent;
  border-bottom: 1px solid #8D8D8D;
  /* height: 2.813rem; */
  /* border-radius: 0; */
  background-color: transparent;
  color: #515151;
  margin-bottom: 0.938rem;
}
.myaccount .dashright .allprof .prfsec .prfimg .profilebuyer .btn-acc {
  padding: 10px 20px;
  border-radius: 10px;
  color: var(--common-color);
  background: var(--logo-color);
  font-weight: 500;
  transition: all 0.4s ease;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
}
.myaccount .dashright .allprof .prfsec .prfimg .profilebuyer .btn-acc:hover {
  background: var(--common-color);
  color: var(--common-color-blacck);
}
.myaccount .dashright .allprof .prfsec .prfimg .pro-preview {
  background: var(--common-color);
}
.myaccount .dashright .allprof .prfsec .prfimg .pro-preview .personinfor {
  padding: 15px 30px;
  font-size: 15px;
  margin: 0 0 20px;
}
.myaccount .dashright .allprof .prfsec .prfimg .pro-preview .personinfor .col-lg-6.col-md-6.pnm {
  margin: 0 0 10px;
}
.myaccount .dashright .allprof .prfsec .prfimg .pro-preview h2 {
  padding: 15px 30px;
  background: #D9F4FF;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
}
.myaccount .dashright .allprof .prfsec .prfimg .pro-preview h2 span a {
  text-decoration: none;
  color: var(--heading-color);
}
.myaccount .dashright .allprof .prfsec .prfimg .pro-preview h2 span a i {
  margin-right: 5px;
}
.myaccount .dashright .allprof .prfsec .prfimg .pro-preview table {
  padding: 15px 30px;
  background: #ffffff;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
}
.myaccount .dashright .allprof .prfsec .prfimg .pro-preview table td {
  padding-right: 10px;
  font-size: 15px;
  margin-bottom: 20px;
  padding-bottom: 18px;
}
.myaccount .dashright .allprof .prfsec .prfimg .buyerprofiletable {
  background: #D9F4FF;
  width: 100%;
  margin-bottom: 20px;
  width: 100%;
  margin-top: 10px;
}
.myaccount .dashright .allprof .prfsec .prfimg .buyerprofiletable h2 {
  padding: 15px 30px;
  background: #D9F4FF;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
}
.myaccount .dashright .allprof .prfsec .prfimg .buyerprofiletable form {
  position: relative;
}
.myaccount .dashright .allprof .prfsec .prfimg .buyerprofiletable form input[type=search] {
  border: 1px solid rgba(1, 171, 243, 0.5882352941);
  width: 100%;
  padding: 10px;
  height: 40px;
}
.myaccount .dashright .allprof .prfsec .prfimg .buyerprofiletable form button.submit {
  border: transparent;
  padding: 12px 20px;
  position: absolute;
  top: 0;
  right: 0;
  background: transparent;
  border-radius: 50px;
  font-size: 15px;
  color: var(--common-color-blacck);
}
.myaccount .dashright .allprof .prfsec .prfimg .buyerprf-table {
  background: var(--common-color);
  margin: 0 0 40px;
  width: 100%;
  margin: 0 0 40px;
  border-collapse: collapse;
  /* width: auto; */
  table-layout: auto;
}
.myaccount .dashright .allprof .prfsec .prfimg .buyerprf-table tbody {
  border-radius: 5px;
  font-size: 16px;
  border-radius: 0;
  background: var(--common-color);
  overflow-y: initial;
  overflow: auto;
  border-collapse: separate;
  align-items: center;
  overflow-x: auto;
  display: table-footer-group;
  overflow-y: scroll;
  display: block;
  max-height: 50vh;
  height: 100%;
  border-bottom: 2px solid #084b61;
}
.myaccount .dashright .allprof .prfsec .prfimg .buyerprf-table tbody tr {
  background: var(--common-color);
}
.myaccount .dashright .allprof .prfsec .prfimg .buyerprf-table tbody tr .buyhead {
  font-weight: 700;
}
.myaccount .dashright .allprof .prfsec .prfimg .buyerprf-table tbody tr td {
  width: 30%;
}
.myaccount .dashright .allprof .prfsec .prfimg .buyerprf-table tbody tr td .pbtn {
  display: flex;
  align-items: center;
  padding: 5px;
  border-radius: 12px;
  border: 2px solid var(--heading-color);
  font-size: 14px;
  justify-content: center;
  width: 160px;
  font-weight: 500;
  text-decoration: none;
  color: var(--heading-color);
  margin: 15px 0;
}
.myaccount .dashright .allprof .prfsec .prfimg .buyerprf-table tbody tr td h3 a {
  font-size: 15px;
  color: #084b61;
}
.myaccount .dashright .allprof .prfsec .prfimg .buyerprf-table tbody tr td .iconlist {
  display: flex;
  align-items: center;
  width: 100%;
}
.myaccount .dashright .allprof .prfsec .prfimg .buyerprf-table tbody tr td .iconlist a.mbox {
  background: #01ABF3;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
  color: var(--common-color);
  display: flex;
  align-items: center;
  padding: 5px;
  font-weight: 500;
  border-radius: 12px;
  font-size: 14px;
  margin-right: 10px;
  justify-content: center;
}
.myaccount .dashright .allprof .prfsec .prfimg .buyerprf-table tbody tr td .iconlist i.fa.fa-eye {
  color: #084B61;
  margin-right: 10px;
}
.myaccount .dashright .allprof .prfsec .prfimg .buyerprf-table tbody tr td .iconlist i.fa.fa-trash {
  color: red;
}
.myaccount .dashright .allprof .prfsec .prfimg .buyerprf-table tbody tr td .iconlist:second-child {
  border: 1px solid #000;
}
.myaccount .dashright .allprof .prfsec .prfimg .buyerprf-table tbody tr td .user {
  display: flex;
  align-items: center;
  padding: 5px;
  border-radius: 12px;
  border: 2px solid var(--heading-color);
  font-size: 14px;
  justify-content: center;
  width: 160px;
  margin: 15px 0;
  font-weight: 500;
}
.myaccount .dashright .allprof .prfsec .prfimg .buyerprf-table tbody tr th {
  background: var(--common-color);
  font-size: 15px;
  color: var(--heading-color);
  padding: 15px 0;
  width: 28%;
}
.myaccount .dashright .allprof .proflidashfom {
  padding: 15px;
}
.myaccount .dashright .allprof .proflidashfom label {
  display: block;
  color: #000;
  font-size: 0.938rem;
  font-weight: 500;
}
.myaccount .dashright .allprof .proflidashfom .form-control {
  width: 100%;
  padding: 0.625rem 0;
  border: transparent;
  border-bottom: 1px solid #8D8D8D;
  height: 2.813rem;
  border-radius: 0;
  background-color: transparent;
  color: #515151;
  resize: none;
  margin-bottom: 0.938rem;
}
.myaccount .dashright .allprof .proflidashfom .btn {
  padding: 8px 20px;
  background: var(--logo-color);
  border-radius: 0.625rem;
  color: var(--common-color);
  position: relative;
  display: table;
  transition: all 0.4s ease;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
  margin-left: auto;
}
.myaccount .dashright .allprof .proflidashfom .btn:hover {
  background: var(--common-color);
  color: var(--common-color-blacck);
}
.myaccount .dashright .allprof .tableprfile {
  padding: 0 20px;
}
.myaccount .dashright .allprof .tableprfile .t-header {
  color: var(--heading-color);
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid #084b61;
}
.myaccount .dashright .allprof .tableprfile tr {
  color: var(--heading-color);
  border-bottom: 1px solid #084b61;
  padding: 16px 0;
}
.myaccount .dashright .allprof .tableprfile tr td .user {
  display: flex;
  align-items: center;
  padding: 5px;
  border-radius: 12px;
  border: 2px solid var(--heading-color);
  font-size: 14px;
  justify-content: center;
  width: 160px;
  margin: 15px 0;
}
.myaccount .dashright .allprof .tableprfile tr td .buyprice {
  border: 2px solid var(--heading-color);
  padding: 5px;
  border-radius: 5px;
}
.myaccount .dashright .allprof .tableprfile tr td i.fa.fa-eye {
  color: #084B61;
}
.myaccount .dashright .allprof .tableprfile tr td a.mbox {
  background: rgba(154, 226, 255, 0.3803921569);
  color: var(--heading-color);
  display: flex;
  align-items: center;
  padding: 5px;
  font-weight: 500;
  border-radius: 12px;
  font-size: 14px;
  justify-content: center;
}
.myaccount .dashright .changepw img.profilemainban {
  width: 100%;
}
.myaccount .dashright .changepw h2 {
  font-size: 25px;
  font-family: "inter";
  margin: 20px 0;
}
.myaccount .dashright .changepw .form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  border: 1px solid rgba(1, 171, 243, 0.4);
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  /* border: 1px solid #ced4da; */
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.myaccount .dashright .changepw button.btn.btn-acc {
  padding: 8px 20px;
  background: var(--logo-color);
  border-radius: 0.625rem;
  color: var(--common-color);
  position: relative;
  display: table;
  transition: all 0.4s ease;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
}
.myaccount .dashright .changepw button.btn.btn-acc:hover {
  background: var(--common-color);
  color: var(--common-color-blacck);
}
.myaccount .dashright .wishlistsection {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
  width: 100%;
  margin-top: 10px;
}
.myaccount .dashright .wishlistsection h1 {
  font-size: 30px;
  font-family: "inter";
}
.myaccount .dashright .wishlistsection form {
  position: relative;
}
.myaccount .dashright .wishlistsection form input[type=search] {
  border: 1px solid rgba(1, 171, 243, 0.5882352941);
  width: 100%;
  padding: 10px;
  height: 45px;
}
.myaccount .dashright .wishlistsection form button.submit {
  border: transparent;
  padding: 12px 20px;
  position: absolute;
  top: 0;
  right: 0;
  background: transparent;
  border-radius: 50px;
  font-size: 14px;
  color: var(--common-color-blacck);
}
.myaccount .dashright .table-responsive .wislst {
  width: 100%;
}
.myaccount .dashright .table-responsive .wislst tbody {
  border-radius: 5px;
  font-size: 16px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
  margin: 0 0 20px;
  background: var(--common-color);
  overflow-y: initial;
  overflow: auto;
  border-left: 4px solid #084b61;
  border-collapse: separate;
  align-items: center;
  /* height: 10vh; */
  overflow-x: auto;
  display: table-footer-group;
  overflow-y: scroll;
  display: block;
  max-height: 50vh;
  height: 100%;
}
.myaccount .dashright .table-responsive .wislst tbody h2 a {
  font-size: 20px;
  color: var(--heading-color);
  text-decoration: none;
  margin-bottom: 20px;
}
.myaccount .dashright .table-responsive .wislst tbody .btn-acc {
  color: var(--heading-color);
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  border: none;
  background: transparent;
}
.myaccount .dashright .table-responsive .wislst tbody td {
  padding: 15px;
  width: 20%;
}
.myaccount .dashright .table-responsive .wislst tbody td .user {
  display: flex;
  align-items: center;
  padding: 5px;
  border-radius: 12px;
  border: 2px solid var(--heading-color);
  font-size: 14px;
  justify-content: center;
  width: 170px;
}
.myaccount .dashright .table-responsive .wislst tbody td .user img {
  max-width: 17px;
  min-height: 17px;
  border-radius: 50px;
}
.myaccount .dashright .table-responsive .wislst tbody td .iconlist {
  display: flex;
  align-items: center;
  width: 100%;
}
.myaccount .dashright .table-responsive .wislst tbody td .iconlist a.mbox {
  background: #01ABF3;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
  color: var(--common-color);
  display: flex;
  align-items: center;
  padding: 5px;
  font-weight: 500;
  border-radius: 12px;
  font-size: 14px;
  margin-right: 10px;
  justify-content: center;
}
.myaccount .dashright .table-responsive .wislst tbody td .iconlist i.fa.fa-eye {
  color: #084B61;
  margin-right: 10px;
}
.myaccount .dashright .table-responsive .wislst tbody td .iconlist i.fa.fa-trash {
  color: red;
}
.myaccount .dashright .table-responsive .wislst tbody td .iconlist:second-child {
  border: 1px solid #000;
}
.myaccount .multistepform {
  padding: 20px;
  border: 1px solid #07bf03;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
  background: var(--common-color);
}
.myaccount .multistepform h2 {
  font-size: 30px;
  margin: 0 0 15px;
  text-align: left;
}
.myaccount .multistepform p {
  text-align: left;
}
.myaccount .multistepform #progressbar {
  margin-bottom: 30px;
  overflow: hidden;
  color: lightgrey;
  margin: auto;
  align-items: center;
  display: flex;
  justify-content: center;
}
.myaccount .multistepform .progress {
  display: none;
}
.myaccount .multistepform .button-form {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 15px;
}
.myaccount .multistepform .button-form a.btn-acc {
  padding: 10px 20px;
  border-radius: 10px;
  color: var(--common-color);
  background: var(--logo-color);
  font-weight: 500;
  transition: all 0.4s ease;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
}
.myaccount .multistepform .button-form a.xls {
  background: #07bf03;
}
.myaccount .multistepform .content p {
  font-size: 15px;
}
.myaccount .multistepform .content ul {
  display: flex;
  flex-wrap: wrap;
  padding: 7px;
  margin: 12px 0;
  border-radius: 5px;
  border: 1px solid #a6a6a6;
}
.myaccount .multistepform .content ul li {
  color: #333;
  margin: 4px 3px;
  list-style: none;
  border-radius: 5px;
  background: #F2F2F2;
  padding: 5px 8px 5px 10px;
  border: 1px solid #e3e1e1;
}
.myaccount .multistepform .content ul li i {
  height: 20px;
  width: 20px;
  color: #808080;
  margin-left: 8px;
  font-size: 12px;
  cursor: pointer;
  border-radius: 50%;
  background: #dfdfdf;
  justify-content: center;
}
.myaccount .multistepform .content ul input {
  flex: 1;
  padding: 5px;
  border: none;
  outline: none;
  font-size: 16px;
}
.myaccount .multistepform .form-group label span {
  color: red;
}
.myaccount .multistepform .form-control {
  border: 1px solid rgba(1, 171, 243, 0.5882352941);
  width: 100%;
  padding: 10px;
  height: 45px;
}
.myaccount .multistepform textarea {
  border: 1px solid rgba(1, 171, 243, 0.5882352941);
  width: 100%;
  padding: 10px;
  height: 60px;
  border-radius: 0.25rem;
  resize: none;
}
.myaccount .multistepform textarea.deta {
  height: 170px !important;
}
.myaccount .multistepform .checking {
  display: flex;
  align-items: center;
  width: 100%;
}
.myaccount .multistepform .checking input[type=checkbox] {
  margin-right: 5px;
  width: 15px;
  height: 15px;
}
.myaccount .multistepform .checking label {
  display: block;
  color: #000;
  font-weight: 400;
  margin: 0;
}
.myaccount .multistepform .checking label a {
  text-decoration: none;
  color: #000;
}
.myaccount .multistepform select {
  border: 1px solid rgba(1, 171, 243, 0.5882352941);
  width: 100%;
  padding: 10px;
  height: 45px;
}
.myaccount .multistepform .fileUpload {
  background: #01abf3;
  border-radius: 15px;
  color: #fff;
  font-size: 1em;
  font-weight: bold;
  /* margin: 1.25em auto; */
  overflow: hidden;
  padding: 0.875em;
  position: relative;
  text-align: center;
  /* width: 120px; */
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 10px;
  color: var(--common-color);
  background: var(--logo-color);
  font-weight: 500;
  transition: all 0.4s ease;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
}
.myaccount .multistepform .fileUpload:hover, .myaccount .multistepform .fileUpload:active, .myaccount .multistepform .fileUpload:focus {
  cursor: pointer;
}
.myaccount .multistepform .fileUpload input.upload {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
  width: 148px;
  height: 46px;
  cursor: pointer;
}
.myaccount .multistepform input[type=file] {
  position: fixed;
  right: 100%;
  bottom: 100%;
}
.myaccount .multistepform .custom-file-upload {
  border: 1px solid #ccc;
  display: inline-block;
  padding: 6px 12px;
  cursor: pointer;
}
.myaccount .multistepform label {
  position: relative;
}
.myaccount .multistepform label .tooltips {
  position: relative;
  display: inline-block;
  margin-left: 5px;
}
.myaccount .multistepform label .tooltips .tooltiptexts {
  visibility: hidden;
  width: 120px;
  padding: 10px;
  background: rgba(46, 213, 115, 0.6784313725);
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}
.myaccount .multistepform label .tooltips:hover .tooltiptexts {
  visibility: visible;
}

.guestprofi {
  padding: 40px 0;
}
.guestprofi .profilemainban {
  width: 100%;
  max-height: 278px;
  height: 100%;
  border-radius: 20px;
}
.guestprofi .prfsec {
  margin-top: -20px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.guestprofi .prfsec .prfimg {
  display: flex;
  align-items: center;
  padding: 8px 0;
}
.guestprofi .prfsec .prfimg .circle {
  position: relative;
  width: 130px;
  height: 130px;
}
.guestprofi .prfsec .prfimg .circle img {
  width: 130px;
  height: 130px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}
.guestprofi .prfsec .prfimg .circle .p-image {
  position: absolute;
  right: 0;
  bottom: 0;
}
.guestprofi .prfsec .prfimg .circle .p-image input.file-upload {
  display: none;
}
.guestprofi .prfsec .prfimg .prfdetailswrap {
  margin-left: 10px;
}
.guestprofi .prfsec .prfimg .prfdetailswrap h2 {
  font-size: 25px;
  font-family: "inter";
  margin: 0;
  color: var(--common-color-blacck);
}
.guestprofi .prfsec .prfimg .prfdetailswrap p {
  font-size: 15px;
  margin: 0;
}
.guestprofi .prfsec .prfimg .prfdetailswrap span {
  margin: 0;
  font-size: 12px;
  color: rgba(3, 3, 3, 0.45);
}
.guestprofi .prfsec .prfimg .prfdetailswrap ul li {
  display: inline-block;
  margin: -7px;
}
.guestprofi .prfsec .prfimg .prfdetailswrap ul li a img {
  width: 23px;
  height: 23px;
  border: 2px solid #fff;
  border-radius: 50%;
}
.guestprofi .prfsec .guestdesc ul li {
  display: inline-block;
}
.guestprofi .prfsec .guestdesc ul li a {
  color: #222;
  font-size: 14px;
  font-weight: 400;
  line-height: 27px;
  font-family: "inter";
  position: relative;
}
.guestprofi .prfsec .guestdesc ul li a:hover {
  color: #0484bd;
}
.guestprofi .prfsec .guestdesc ul li .btn_login {
  color: var(--common-color);
  background: var(--logo-color);
  padding: 10px 20px;
  border-radius: 10px;
  transition: all 0.4s ease;
}
.guestprofi .prfsec .guestdesc ul li .btn_login:hover {
  background: var(--logo-color);
  color: var(--common-color);
}
.guestprofi .prfsec .guestdesc ul li.dropdown ul.dp-menu {
  display: block;
  border: transparent;
  right: 0;
  left: auto;
  border-radius: 0;
  transition: all 0.3s ease-in-out;
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  background-color: transparent;
  padding: 20px 0px;
  /* min-width: 110px; */
  right: 0px;
  color: var(--common-color);
  margin-bottom: 0;
  margin-top: 7px;
  transition: all 0.3s ease-in-out;
  /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15); */
  text-align: left;
}
.guestprofi .prfsec .guestdesc ul li.dropdown ul.dp-menu li {
  width: 100%;
  background: red;
  /* padding-left: 15px; */
  color: #fff;
  margin: 0;
  /* padding: 10px; */
  font-weight: 400;
  transition: all 0.5s ease-in-out;
  BOX-SHADOW: rgba(0, 0, 0, 0.35) 0px 2px 7px;
}
.guestprofi .prfsec .guestdesc ul li.dropdown ul.dp-menu li a {
  color: #fff;
  margin: 0;
  padding: 10px;
  font-weight: 400;
  transition: all 0.5s ease-in-out;
}
.guestprofi .prfsec .guestdesc ul li.dropdown ul.dp-menu li a:hover {
  background: red;
  color: #fff;
}
.guestprofi .prfsec .guestdesc ul li.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.guestdetails {
  padding: 40px 0;
}
.guestdetails nav.nav-sidebar {
  border: 1px solid #EBEBEE;
  padding: 15px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 5PX;
  border-radius: 10px;
}
.guestdetails nav.nav-sidebar li {
  margin-right: 15px;
  text-align: center;
}
.guestdetails nav.nav-sidebar li a.active {
  background: #01abf3;
  color: #fff;
}
.guestdetails nav.nav-sidebar li a {
  padding: 10px 30px;
  /* box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px; */
  border-radius: 10px;
  margin-right: 10px;
  transition: all 0.4s ease;
  color: #000;
  background: #F2F4F7;
  width: 100%;
  display: block;
  /* margin-right: 10px; */
}
.guestdetails .guesttab {
  margin-top: 20px;
}
.guestdetails .guesttab .ta {
  border: 1px solid #EBEBEE;
  padding: 15px;
}
.guestdetails .guesttab .leftprf {
  border: 1px solid #EBEBEE;
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0.26) 0px 2px 5px;
  border-radius: 10px;
  border-radius: 10px;
}
.guestdetails .guesttab .leftprf .leftcont {
  padding: 15px;
  border-radius: 15px;
  text-align: left;
}
.guestdetails .guesttab .leftprf .leftcont .pro-preview {
  border: 1px solid #EBEBEE;
  border-radius: 15px;
  padding: 14px;
}
.guestdetails .guesttab .leftprf .leftcont .pro-preview h2 {
  font-size: 25px;
}
.guestdetails .guesttab .leftprf .leftcont .pro-preview h3 {
  font-size: 20px;
}
.guestdetails .guesttab .leftprf .leftcont .pro-preview h4 {
  font-size: 18px;
}
.guestdetails .guesttab .leftprf .leftcont .pro-preview h5 {
  font-size: 16px;
}
.guestdetails .guesttab .leftprf .leftcont .pro-preview h6 {
  font-size: 14px;
}
.guestdetails .guesttab .leftprf .leftcont .pro-preview ul {
  margin-left: 25px;
}
.guestdetails .guesttab .leftprf .leftcont .pro-preview ul li {
  margin: 0 0 10px;
  list-style-type: disc;
  font-size: 14px;
  padding-left: 10px;
  line-height: 28px;
}
.guestdetails .guesttab .leftprf .leftcont .pro-preview ol {
  margin-left: 25px;
}
.guestdetails .guesttab .leftprf .leftcont .pro-preview ol li {
  margin: 0 0 10px;
  list-style-type: decimal;
  font-size: 14px;
  line-height: 28px;
}
.guestdetails .guesttab .leftprf .leftcont .pro-preview ol li ol li {
  list-style-type: circle;
}
.guestdetails .guesttab .leftprf .leftcont .pro-preview p {
  font-size: 15px;
}
.guestdetails .guesttab .leftprf .leftcont .pro-preview .profilebuyer input[type=text] {
  width: 100%;
  padding: 0.625rem 0;
  border: transparent;
  border-bottom: 1px solid #8D8D8D;
  border-radius: 0;
  background-color: transparent;
  color: #515151;
}
.guestdetails .guesttab .leftprf .leftcont .pro-preview form textarea {
  height: 60px;
  resize: none;
  width: 100%;
  border-bottom: 1px solid #8D8D8D;
}
.guestdetails .guesttab .leftprf .leftcont .pro-preview form select {
  width: 100%;
  height: 100%;
}
.guestdetails .guesttab .leftprf .leftcont .pro-preview form input.form-control {
  width: 100%;
  padding: 0.625rem 0;
  border: transparent;
  border-bottom: 1px solid #8D8D8D;
  border-radius: 0;
  background-color: transparent;
  color: #515151;
  margin: 0 0 15px;
}
.guestdetails .guesttab .leftprf .leftcont .pro-preview form label {
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 15px;
  color: var(--heading-color);
}
.guestdetails .guesttab .leftprf .leftcont .pro-preview form .btn-acc {
  padding: 10px 20px;
  border-radius: 10px;
  color: var(--common-color);
  background: var(--logo-color);
  font-weight: 500;
  font-size: 12px;
  transition: all 0.4s ease;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
}
.guestdetails .guesttab .leftprf .leftcont .pro-preview h2 {
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 15px;
}
.guestdetails .guesttab .leftprf .leftcont .pro-preview h2 a {
  font-size: 13px;
  background: #F0EFFA;
  padding: 10px;
  border-radius: 15px;
  color: #000;
}
.guestdetails .guesttab .buyerprf-table {
  background: var(--common-color);
  margin: 0 0 40px;
  width: 100%;
  margin: 0 0 40px;
  border-collapse: collapse;
  /* width: auto; */
  table-layout: auto;
}
.guestdetails .guesttab .buyerprf-table tbody {
  border-radius: 5px;
  font-size: 16px;
  border-radius: 0;
  background: var(--common-color);
  overflow-y: initial;
  overflow: auto;
  border-collapse: separate;
  align-items: center;
  overflow-x: auto;
  height: 100%;
  border-bottom: 2px solid #084b61;
}
.guestdetails .guesttab .buyerprf-table tbody tr {
  background: var(--common-color);
}
.guestdetails .guesttab .buyerprf-table tbody tr h2 {
  text-decoration: none;
  color: #084b61;
  font-size: 25px;
  font-family: "inter";
  margin: 20px 0;
}
.guestdetails .guesttab .buyerprf-table tbody tr h2 a {
  text-decoration: none;
  color: #084b61;
}
.guestdetails .guesttab .buyerprf-table tbody tr .buyhead {
  font-weight: 700;
}
.guestdetails .guesttab .buyerprf-table tbody tr td {
  width: 10%;
  padding: 10px 0;
}
.guestdetails .guesttab .buyerprf-table tbody tr td .pbtn {
  display: flex;
  align-items: center;
  padding: 5px;
  border-radius: 12px;
  border: 2px solid var(--heading-color);
  font-size: 14px;
  justify-content: center;
  width: 160px;
  font-weight: 500;
  text-decoration: none;
  color: var(--heading-color);
  margin: 15px 0;
}
.guestdetails .guesttab .buyerprf-table tbody tr td h3 a {
  font-size: 15px;
  color: #084b61;
}
.guestdetails .guesttab .buyerprf-table tbody tr td .iconlist {
  display: flex;
  align-items: center;
  width: 100%;
}
.guestdetails .guesttab .buyerprf-table tbody tr td .iconlist a.mbox {
  background: #01ABF3;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
  color: var(--common-color);
  display: flex;
  align-items: center;
  padding: 5px;
  font-weight: 500;
  border-radius: 12px;
  font-size: 14px;
  margin-right: 10px;
  justify-content: center;
}
.guestdetails .guesttab .buyerprf-table tbody tr td .iconlist i.fa.fa-eye {
  color: #084B61;
  margin-right: 10px;
}
.guestdetails .guesttab .buyerprf-table tbody tr td .iconlist i.fa.fa-edit {
  margin-right: 10px;
}
.guestdetails .guesttab .buyerprf-table tbody tr td .iconlist i.fa.fa-trash {
  color: red;
}
.guestdetails .guesttab .buyerprf-table tbody tr td .iconlist:second-child {
  border: 1px solid #000;
}
.guestdetails .guesttab .buyerprf-table tbody tr td .user {
  display: flex;
  align-items: center;
  padding: 5px;
  border-radius: 12px;
  border: 2px solid var(--heading-color);
  font-size: 14px;
  justify-content: center;
  width: 160px;
  margin: 15px 0;
  font-weight: 500;
}
.guestdetails .guesttab .buyerprf-table tbody tr th {
  background: var(--common-color);
  font-size: 15px;
  color: var(--heading-color);
  padding: 15px 0;
}

.maintable {
  text-align: center;
  margin: auto;
  width: 100%;
  padding: 6rem 0;
  justify-content: center;
}
.maintable h1 {
  font-size: 44px;
  margin: 0 0 30px;
}
.maintable h1 span {
  border-right: 0.05em solid;
  animation: caret 1s steps(100);
  animation: 1s blink step-end infinite;
  margin-left: 5px;
  color: var(--heading-color);
}
.maintable .search {
  text-align: right;
}
.maintable .search form.searchform {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 50px;
}
.maintable .search form.searchform ::-moz-placeholder#s {
  font-size: 21px;
  color: #000;
  font-weight: 500;
}
.maintable .search form.searchform ::placeholder#s {
  font-size: 21px;
  color: #000;
  font-weight: 500;
}
.maintable .search form.searchform input[type=search] {
  width: 100%;
  border: transparent;
  height: 60px;
  padding: 10px;
  border-radius: 50px;
  padding-left: 45px;
}
.maintable .search form.searchform select {
  height: 50px;
  border: transparent;
  padding: 5px 5px 5px 10px;
  font-size: 17px;
  color: var(--common-color-blacck);
}
.maintable .search form.searchform button[type=submit] {
  bottom: 0;
  padding-right: 10px;
  position: absolute;
  right: 34px;
  color: var(--heading-color);
  font-size: 24px;
  background: transparent;
  border: transparent;
  width: 20px;
  height: 20px;
  top: 7px;
}
.maintable .search form.searchform button[type=submit] .fa-search {
  right: 10px;
  color: var(--heading-color);
  font-size: 15px;
  background: #084b61;
  padding: 15px;
  border-radius: 50%;
  color: #fff;
}

.maincat .catall {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #D9F4FF;
  padding: 15px 30px;
}
.maincat .catall .maintablecategory {
  font-size: 15px;
  align-items: center;
  display: flex;
  border-radius: 10px;
}
.maincat .catall .maintablecategory li {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 10px;
  border-radius: 10px;
}
.maincat .catall .maintablecategory li a {
  text-decoration: none;
  color: var(--heading-color);
  font-size: 15px;
}
.maincat .catall .maintablecategory li a i {
  margin-right: 5px;
  display: block;
  width: 100%;
}
.maincat .catall form select {
  border: 1px solid rgba(1, 171, 243, 0.5882352941);
  width: 100%;
  font-size: 14px;
}

.faq-sec {
  padding: 40px 0;
}
.faq-sec h2 {
  font-size: 30px;
  line-height: 39px;
  color: var(--heading-color);
  margin: 0 0 30px;
}
.faq-sec .faq-accordion-item {
  border: 1px solid #05c000;
  padding: 5px;
  margin: 0 0 15px;
  border-radius: 15px;
}
.faq-sec .faq-accordion-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 10px;
}
.faq-sec .faq-accordion-title h3 {
  font-weight: 500;
  font-size: 16px;
  color: #222222;
  margin: 0;
}
.faq-sec .faq-accordion-content {
  display: none;
}
.faq-sec .faq-accordion-content p {
  font-size: 16px;
  line-height: 30px;
  color: #222222;
  margin: 5px 0 0;
  padding: 10px;
}
.faq-sec .faq-accordion-title.active .fas {
  transform: rotate(180deg);
}

.tablefilt {
  padding: 30px 0;
}
.tablefilt .sidebar {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
  border-radius: 10px;
  padding: 20px 10px;
}
.tablefilt .sidebar .checking {
  display: flex;
  align-items: center;
  width: 100%;
}
.tablefilt .sidebar .checking input[type=checkbox] {
  margin-right: 5px;
  width: 15px;
  height: 15px;
}
.tablefilt .sidebar .sidebox .heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.tablefilt .sidebar .sidebox .heading h3 {
  font-size: 14px;
  margin: 0;
}
.tablefilt .sidebar .sidebox .heading span input {
  font-size: 13px;
  border: none;
  color: var(--logo-color);
  padding: 0;
  outline: none;
  background: transparent;
}
.tablefilt .sidebar .sidebox .sidebarform .buttongroup {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F2F4F7;
  border-radius: 15px;
}
.tablefilt .sidebar .sidebox .sidebarform .buttongroup a.ybtn {
  background: #01abf3;
  padding: 3px 22px;
  border-radius: 15px;
  color: #fff;
  display: flow-root;
  width: 49%;
  text-align: center;
}
.tablefilt .sidebar .sidebox .sidebarform .buttongroup a.nbtn {
  background: #F2F4F7;
  padding: 3px 22px;
  border-radius: 15px;
  color: #000;
  display: inline-block;
  /* box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px; */
  width: 49%;
  text-align: center;
}
.tablefilt .sidebar .sidebox .sidebarform label {
  font-size: 14px;
  font-family: "Inter";
  font-weight: 600;
  margin-top: 10px;
}
.tablefilt .sidebar .sidebox .sidebarform .form-control {
  border: 1px solid rgba(1, 171, 243, 0.5882352941);
  width: 100%;
  font-size: 14px;
}
.tablefilt .sidebar .sidebox .sidebarform select {
  font-size: 12px;
  margin-bottom: 10px;
}
.tablefilt .web {
  padding: 15px;
  background: #D9F4FF;
  font-size: 14px;
  align-items: center;
  display: flex;
  border-radius: 10px;
  font-weight: 700;
}
.tablefilt .web p {
  margin: 0;
  color: #084b61;
}
.tablefilt .main-table {
  background: var(--common-color);
  margin: 0 0 40px;
  border-collapse: collapse;
  table-layout: auto;
  width: 100%;
}
.tablefilt .main-table tbody {
  border-radius: 5px;
  font-size: 16px;
  border-radius: 0;
  background: var(--common-color);
  overflow-y: initial;
  overflow: auto;
  border-collapse: separate;
  align-items: center;
  overflow-x: auto;
  display: table-footer-group;
  overflow-y: scroll;
  display: block;
  max-height: 50vh;
  height: 100%;
  border-bottom: 2px solid #084b61;
}
.tablefilt .main-table tbody tr {
  padding: 5px;
  padding-top: 11px;
}
.tablefilt .main-table tbody tr .buyhead {
  font-weight: 700;
}
.tablefilt .main-table tbody tr .ts {
  width: 20% !important;
}
.tablefilt .main-table tbody tr .ts1 {
  width: 8% !important;
}
.tablefilt .main-table tbody tr .ts2 {
  width: 8% !important;
}
.tablefilt .main-table tbody tr .ts3 {
  width: 8% !important;
}
.tablefilt .main-table tbody tr .ts4 {
  width: 8% !important;
}
.tablefilt .main-table tbody tr .ts5 {
  width: 15% !important;
}
.tablefilt .main-table tbody tr .ts6 {
  width: 12% !important;
}
.tablefilt .main-table tbody tr .ts7 {
  width: 15% !important;
}
.tablefilt .main-table tbody tr .ts8 {
  /* width: 6% !important; */
  float: right !important;
}
.tablefilt .main-table tbody tr td.tss {
  width: 16% !important;
}
.tablefilt .main-table tbody tr td.tss1 {
  width: 8% !important;
  padding-left: 19px;
}
.tablefilt .main-table tbody tr td.tss2 {
  width: 7% !important;
}
.tablefilt .main-table tbody tr td.tss3 {
  width: 7% !important;
}
.tablefilt .main-table tbody tr td.tss4 {
  width: 6% !important;
}
.tablefilt .main-table tbody tr td.tss5 {
  width: 12% !important;
}
.tablefilt .main-table tbody tr td.tss6 {
  width: 11% !important;
  padding-left: 23px;
}
.tablefilt .main-table tbody tr td.tss7 {
  width: 13% !important;
  padding-left: 13px;
}
.tablefilt .main-table tbody tr td.tss8 {
  /* width: 6% !important; */
  /* float: right !important; */
}
.tablefilt .main-table tbody tr th {
  background: var(--common-color);
  font-size: 15px;
  color: var(--heading-color);
  padding: 15px 0;
}
.tablefilt .main-table tbody tr td {
  width: 28%;
  padding: 5px;
  padding-top: 11px;
}
.tablefilt .main-table tbody tr td h2 {
  display: flex;
  align-items: center;
  margin: 0;
}
.tablefilt .main-table tbody tr td h2 a {
  text-decoration: none;
  color: var(--heading-color);
}
.tablefilt .main-table tbody tr td h2 i {
  margin: 5px;
}
.tablefilt .main-table tbody tr td h2 i.fa.fa-check-circle {
  color: #01abf3;
  font-size: 15px;
}
.tablefilt .main-table tbody tr td h2 i.fa.fa-heart-o {
  font-size: 15px;
}
.tablefilt .main-table tbody tr td h2 i.fa-heart.fa {
  color: red;
  font-size: 15px;
}
.tablefilt .main-table tbody tr td .pbtn {
  display: flex;
  align-items: center;
  padding: 5px;
  border-radius: 12px;
  border: 2px solid var(--heading-color);
  font-size: 14px;
  justify-content: center;
  width: 160px;
  font-weight: 500;
  text-decoration: none;
  color: var(--heading-color);
  margin: 15px 0;
}
.tablefilt .main-table tbody tr td h3 a {
  font-size: 15px;
  color: #084b61;
}
.tablefilt .main-table tbody tr td .iconlist {
  display: flex;
  align-items: center;
  width: 100%;
}
.tablefilt .main-table tbody tr td .iconlist a.mbox {
  background: #01ABF3;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
  color: var(--common-color);
  display: flex;
  align-items: center;
  padding: 5px;
  font-weight: 500;
  border-radius: 12px;
  font-size: 14px;
  margin-right: 10px;
  justify-content: center;
}
.tablefilt .main-table tbody tr td .iconlist i.fa.fa-eye {
  color: #084B61;
  margin-right: 10px;
}
.tablefilt .main-table tbody tr td .iconlist:second-child {
  border: 1px solid #000;
}
.tablefilt .main-table tbody tr td .user {
  display: flex;
  align-items: center;
  width: 160px;
}
.tablefilt .main-table tbody tr td .user .usermain {
  display: flex;
  align-items: center;
  padding: 5px;
  border-radius: 12px;
  border: 2px solid var(--heading-color);
  font-size: 14px;
  justify-content: center;
  width: 160px;
  margin: 15px 0;
  margin-right: 5px;
  font-weight: 500;
}
.tablefilt .main-table tbody tr td .user .usermain img {
  height: 17px;
  width: 17px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 1px;
}
.tablefilt .main-table tbody tr td .user i.fa.fa-check-circle {
  color: #01abf3;
  font-size: 15px;
}
.tablefilt .main-table tbody tr th {
  background: var(--common-color);
  font-size: 15px;
  color: var(--heading-color);
  padding: 15px 0;
  width: 28%;
}

.chatinterface {
  position: relative;
  width: 100%;
  background-color: #fff;
  border-radius: 0.3rem;
  padding: 20px;
  min-height: calc(100% - 1rem);
}
.chatinterface h2 {
  font-size: 25px;
  font-family: "inter";
  color: var(--heading-color);
  font-weight: 700;
  border-bottom: 1px solid;
  padding-top: 22px;
  margin-top: 5px;
  padding-bottom: 11px;
  margin-bottom: 13px;
}
.chatinterface h2 span.cont {
  color: #fff;
  background: red;
  padding: 10px;
  border-radius: 15px;
  display: none;
  font-size: 10px;
  position: absolute;
  top: 0;
}
.chatinterface .search {
  width: 100%;
  margin: 0 auto;
  overflow-y: scroll;
  background-color: #fff;
  padding: 0 10PX;
  height: 540PX;
}
.chatinterface form {
  position: relative;
}
.chatinterface input[type=search] {
  width: 100%;
  padding: 10px 42px;
  margin-bottom: 20px;
  background: #F7F7FD;
  border: none;
  border-radius: 15px;
}
.chatinterface button.submit {
  border: transparent;
  padding: 12px 20px;
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
  border-radius: 50px;
  font-size: 14px;
  color: #000;
}
.chatinterface ul.chatleftlist {
  display: block;
}
.chatinterface ul.chatleftlist li.mainlin {
  border: transparent !important;
}
.chatinterface ul.chatleftlist li {
  margin: 0 0 10px;
  border-bottom: 1px solid #76767C;
}
.chatinterface ul.chatleftlist li:last-child {
  border: none;
}
.chatinterface ul.chatleftlist li a:hover {
  background: var(--logo-color);
}
.chatinterface ul.chatleftlist li a .contentwrap {
  background: #F7F7FD;
  border-radius: 15px;
  margin-bottom: 20px;
  transition: cubic-bezier(0.19, 1, 0.22, 1);
  border-radius: 10px;
  padding: 10px;
}
.chatinterface ul.chatleftlist li a .contentwrap .author {
  display: flex;
  align-items: center;
}
.chatinterface ul.chatleftlist li a .contentwrap .author .author-image img {
  height: 51px;
  width: 51px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.chatinterface ul.chatleftlist li a .contentwrap .author .desc {
  margin-left: 5px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.chatinterface ul.chatleftlist li a .contentwrap .author .desc h4 {
  font-size: 16px;
  font-weight: 700;
  font-family: inter;
  color: var(--common-color-blacck);
  margin-bottom: 0;
}
.chatinterface ul.chatleftlist li a .contentwrap .author .desc p {
  font-size: 12px;
  margin: 0;
  font-weight: 400;
  font-family: inter;
  color: #76767C;
}
.chatinterface .chatwrap {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
  border-radius: 10px;
  height: 100%;
  position: relative;
}
.chatinterface .chatwrap ul.chatleftlist {
  display: block;
}
.chatinterface .chatwrap ul.chatleftlist li {
  margin: 0 0 10px;
  border-bottom: 1px solid #76767C;
}
.chatinterface .chatwrap ul.chatleftlist li a:hover {
  background: var(--logo-color);
}
.chatinterface .chatwrap ul.chatleftlist li a .mainimg {
  background: #D9F4FF !important;
  color: var(--heading-color) !important;
}
.chatinterface .chatwrap ul.chatleftlist li a .contentwraps {
  background: #F7F7FD;
  border-radius: 15px;
  margin-bottom: 20px;
  transition: cubic-bezier(0.19, 1, 0.22, 1);
  border-radius: 10px;
  padding: 10px;
}
.chatinterface .chatwrap ul.chatleftlist li a .contentwraps .author {
  display: flex;
  align-items: center;
}
.chatinterface .chatwrap ul.chatleftlist li a .contentwraps .author .author-image img {
  height: 51px;
  width: 51px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.chatinterface .chatwrap ul.chatleftlist li a .contentwraps .author .desc {
  margin-left: 5px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.chatinterface .chatwrap ul.chatleftlist li a .contentwraps .author .desc h4 {
  font-size: 16px;
  font-weight: 700;
  font-family: inter;
  color: var(--common-color-blacck);
}
.chatinterface .chatwrap ul.chatleftlist li a .contentwraps .author .desc p {
  font-size: 12px;
  margin: 0;
  font-weight: 400;
  font-family: inter;
  color: #76767C;
}
.chatinterface .chatwrap .chat {
  width: 100%;
  padding: 15px 30px;
  margin: 0 auto;
  overflow-y: scroll;
  background-color: #fff;
  transform: rotate(180deg);
  direction: rtl;
  border-radius: 5px;
  font-size: 16px;
  border-radius: 0;
  background: var(--common-color);
  overflow-y: initial;
  overflow: auto;
  border-collapse: separate;
  align-items: center;
  overflow-x: auto;
  display: table-footer-group;
  overflow-y: scroll;
  display: block;
  max-height: 450px;
  height: 100%;
}
.chatinterface .chatwrap .chat__wrapper {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
}
.chatinterface .chatwrap .chat__message {
  font-size: 18px;
  padding: 10px 20px;
  border-radius: 25px;
  color: #000;
  background-color: #e6e7ec;
  width: 50%;
  position: relative;
  margin: 15px 0;
  font-family: "inter";
  word-break: break-all;
  transform: rotate(180deg);
  direction: ltr;
}
.chatinterface .chatwrap .chat__message .date {
  font-size: 12px;
  text-align: right;
}
.chatinterface .chatwrap .chat__message:after {
  content: "";
  width: 20px;
  height: 12px;
  display: block;
  background-image: url("https://stageviewcincyshakes.firebaseapp.com/icon-gray-message.e6296433d6a72d473ed4.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: -2px;
  left: -5px;
}
.chatinterface .chatwrap .chat__message-own {
  color: #fff;
  margin-right: auto;
  background-color: var(--heading-color);
  width: 50%;
}
.chatinterface .chatwrap .chat__message-own:after {
  width: 19px;
  height: 13px;
  left: inherit;
  right: -5px;
  background-image: url("https://stageviewcincyshakes.firebaseapp.com/icon-blue-message.2be55af0d98ee2864e29.png");
}
.chatinterface .chatwrap .chat__message-own .date {
  font-size: 12px;
  text-align: right;
}
.chatinterface .chatwrap .chat__form {
  padding: 10px;
  position: absolute;
  bottom: 0;
  width: 100%;
}
.chatinterface .chatwrap .chat__form form {
  display: flex;
  align-items: center;
  padding: 10px;
  position: relative;
}
.chatinterface .chatwrap .chat__form input {
  background: #F7F7FD;
  padding: 10px;
  border: none;
  height: 40px;
  border-radius: 10px;
  padding: 25px;
  width: 100%;
}
.chatinterface .chatwrap .chat__form button {
  padding: 12px 15px;
  border-radius: 10px;
  color: var(--common-color);
  border: none;
  background: var(--heading-color);
  font-weight: 500;
  right: 20px;
  display: inline-block;
  transition: all 0.4s ease;
  margin-left: 5px;
}
.chatinterface .chatwrap .chat__form button:hover {
  font-weight: bold;
}

.cat-blogdetails {
  padding: 30px 0;
}
.cat-blogdetails .first-sec {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.cat-blogdetails .first-sec h1 {
  font-size: 35px;
  line-height: 50px;
  font-weight: 600;
  margin: 0;
}
.cat-blogdetails .first-sec form select {
  background: #D9F4FF;
  border: none;
  width: 100%;
  padding: 10px;
  height: 50px;
}
.cat-blogdetails p {
  font-size: 14px;
  line-height: 30px;
  text-align: justify;
}
.cat-blogdetails .widget_text.sec1 {
  padding: 0;
  text-align: center;
  background: transparent;
}
.cat-blogdetails .widget_text.sec1 form {
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
}
.cat-blogdetails .widget_text.sec1 form input[type=search] {
  border: 1px solid rgba(1, 171, 243, 0.5882352941);
  width: 100%;
  padding: 10px;
  height: 50px;
}
.cat-blogdetails .widget_text.sec1 form button.submit {
  border: transparent;
  padding: 12px 20px;
  position: absolute;
  top: 0;
  right: 0;
  background: transparent;
  border-radius: 50px;
  font-size: 18px;
  color: var(--logo-color);
}
.cat-blogdetails .vi {
  scroll-behavior: smooth;
  height: 340px;
  overflow-y: scroll;
}
.cat-blogdetails .tabs {
  display: grid;
}
.cat-blogdetails ul.tab-header {
  border-bottom: 3px solid #084b61;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cat-blogdetails ul.tab-header li {
  width: 49%;
  text-align: center;
}
.cat-blogdetails ul.tab-header li.active {
  background: #084b61;
  color: #fff;
  /* display: flex; */
  align-items: center;
  text-align: center;
  padding: 6px;
  text-align: center;
}
.cat-blogdetails ul.tab-header li.hover {
  background: #084b61;
  color: #fff;
}
.cat-blogdetails .tab-content .active {
  display: flex !important;
  opacity: 1 !important;
  transition: opacity 0.15s linear;
}
.cat-blogdetails .tab-content .tab-inner {
  display: none;
  opacity: 0;
  transition: opacity 0.15s linear;
}
.cat-blogdetails ul.tab-header {
  padding: 0;
  text-align: center;
  border-bottom: 3px solid #084b61;
}
.cat-blogdetails .tab-content {
  padding: 10px 0;
  border-top: 0px;
}
.cat-blogdetails .latestpost li h6 {
  font-size: 16px;
  font-weight: 400;
}
.cat-blogdetails .latestpost li h2 {
  font-size: 15px;
  line-height: 25px;
}
.cat-blogdetails .latestpost li p {
  font-size: 12px;
  color: #B3A8A8;
}

.allcategoriesdetails {
  padding: 40px 0;
}
.allcategoriesdetails .isthalf {
  position: relative;
  margin: 0 0 1rem;
}
.allcategoriesdetails .isthalf .contact_block {
  z-index: 6;
  border-radius: 21px;
  text-align: center;
  margin-bottom: 2rem;
  cursor: pointer;
  position: relative;
  padding: 20px;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1);
  background: var(--common-color);
}
.allcategoriesdetails .isthalf .contact_block:hover {
  opacity: 0;
  z-index: 4;
}
.allcategoriesdetails .isthalf .contact_block img.shape-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  max-height: 80px;
  border-bottom-right-radius: 20px;
}
.allcategoriesdetails .isthalf .contact_block .heading {
  text-align: center;
  display: flex;
  margin-bottom: 36px;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.allcategoriesdetails .isthalf .contact_block .heading a.ts {
  background: #199855;
  text-decoration: none;
  color: #fff;
  transition: all 0.4s ease;
  padding: 4px 16px;
  border-radius: 20px;
}
.allcategoriesdetails .isthalf .contact_block h2 {
  font-family: "inter";
  text-align: left;
  font-weight: 700;
  font-size: 25px;
  margin: 0 0 20px;
}
.allcategoriesdetails .isthalf .contact_block .item {
  display: flex;
  justify-content: space-between;
  text-align: left;
  align-items: center;
  margin-right: 5px;
  border-top: 2px solid #E8E8E8;
  padding: 1.875rem 0;
}
.allcategoriesdetails .isthalf .contact_block .item ul li {
  display: inline-block;
  margin-right: 9px;
}
.allcategoriesdetails .isthalf .contact_block .item ul li p {
  margin-bottom: 0;
  text-align: left;
  font-size: 1rem;
}
.allcategoriesdetails .isthalf .contact_block .item ul li p span {
  font-size: 1.063rem;
  font-weight: 500;
  text-align: left;
  display: block;
}
.allcategoriesdetails .isthalf .prd2.hide {
  min-height: auto;
  max-height: 23.375rem;
  overflow-y: scroll;
  border-radius: 21px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 1rem;
  color: var(--common-color-blacck);
  z-index: 5;
  position: absolute;
  left: 0;
  top: 0;
  padding: 10px;
  text-transform: capitalize;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  transition: background-color 1.5s ease-out;
  text-align: left;
  justify-content: center;
  background: #CAF0FF;
  width: 100%;
  height: 100%;
}
.allcategoriesdetails .isthalf .prd2.hide::-webkit-scrollbar {
  display: none;
}
.allcategoriesdetails .isthalf .prd2.hide:hover {
  z-index: 7;
}
.allcategoriesdetails .isthalf .prd2.hide ul {
  margin-bottom: 20px;
}
.allcategoriesdetails .isthalf .prd2.hide ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #000;
  padding: 9px 0;
}
.allcategoriesdetails .isthalf .prd2.hide ul li span {
  font-weight: 700;
}
.allcategoriesdetails .isthalf .prd2.hide a.booking {
  padding: 6px 36px;
  background: #fff;
  color: #000;
  width: 100%;
  border-radius: 5px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
  display: inline-block;
}

.sellerprof h1 {
  font-size: 30px;
  font-family: "inter";
  color: var(--common-color-blacck);
  margin-bottom: 30px;
}
.sellerprof h1 span {
  display: block;
  font-size: 15px;
}
.sellerprof .orange {
  background: rgba(1, 171, 243, 0.3411764706) !important;
}
.sellerprof .orangeback {
  background: #00adee !important;
}
.sellerprof .upload {
  background: #2B67F6 !important;
}
.sellerprof .wh {
  background: #fff !important;
}
.sellerprof .wh i {
  color: #2B67F6 !important;
}
.sellerprof ul li a {
  text-decoration: none;
  color: #212529;
  display: block;
  font-size: 14px;
  text-decoration: none;
  color: var(--deep-color);
  margin-left: -1px;
  border: none;
  line-height: 2;
  font-weight: 500;
}
.sellerprof ul li a .contentwrap {
  background: rgba(6, 190, 3, 0.17);
  margin-bottom: 30px;
  transition: cubic-bezier(0.19, 1, 0.22, 1);
  border-radius: 10px;
  padding: 10px;
}
.sellerprof ul li a .contentwrap:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
}
.sellerprof ul li a .contentwrap .w {
  color: #fff !important;
}
.sellerprof ul li a .contentwrap .author {
  display: flex;
  align-items: center;
}
.sellerprof ul li a .contentwrap .author .author-image {
  width: 65px;
  background: #2ED573;
  color: #ffffff;
  text-align: center;
  padding: 20px;
  font-size: 20px;
  margin-right: 15px;
  height: 65px;
  border-radius: 18px;
  line-height: 20px;
}
.sellerprof ul li a .contentwrap .author .author-image i {
  font-size: 25px;
}
.sellerprof ul li a .contentwrap .author h4 {
  font-size: 20px;
  font-weight: 600;
  font-family: inter;
  color: var(--common-color-blacck);
}
.sellerprof ul li a .contentwrap .author p {
  font-size: 15px;
  margin: 0;
  font-weight: 400;
  font-family: inter;
  color: #000;
}
.sellerprof .table thead th {
  color: #084b61;
  background: var(--common-color);
  font-size: 15px;
  color: var(--heading-color);
  border: none;
}
.sellerprof .table td {
  vertical-align: top;
  border-top: 0px solid #dee2e6;
  color: var(--heading-color);
}
.sellerprof .table td .iconlist {
  display: flex;
  align-items: center;
}
.sellerprof .table i.fa.fa-eye {
  color: #084B61;
  margin-right: 10px;
}
.sellerprof .table i.fa.fa-edit {
  color: var(--heading-color);
  margin-right: 10px;
}
.sellerprof .table i.fa.fa-bell {
  color: #ff0000;
  margin-right: 10px;
}
.sellerprof .table span.apr {
  color: #1fbe1a;
  font-weight: 700;
}
.sellerprof .table span.rj {
  color: #ff0000;
  font-weight: 700;
}
.sellerprof .table-striped tbody tr:nth-of-type(odd) {
  background: #d9f4ff !important;
}
.sellerprof .prfsec .profilemainban {
  width: 100%;
  max-height: 400px;
  height: 100%;
}
.sellerprof .prfsec .prfimg {
  margin-top: -65px;
  padding: 0 20px;
  background: var(--common-color);
}
.sellerprof .prfsec .prfimg .circle {
  position: relative;
  width: 130px;
  height: 130px;
}
.sellerprof .prfsec .prfimg .circle img {
  width: 130px;
  height: 130px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 5px solid #fff;
}
.sellerprof .prfsec .prfimg .circle .p-image {
  position: absolute;
  right: 0;
  bottom: 0;
}
.sellerprof .prfsec .prfimg .p-image input.file-upload2 {
  display: none;
}
.sellerprof .prfsec .prfimg .profileimahe {
  height: 130px;
  width: 130px;
  border-radius: 50px;
}
.sellerprof .prfsec .prfimg h2 {
  font-size: 25px;
  font-family: "inter";
  margin: 20px 0;
}
.sellerprof .prfsec .prfimg h2 a {
  text-decoration: none;
  color: var(--heading-color);
}
.sellerprof .prfsec .prfimg .profilebuyer {
  padding: 15px 30px;
  background: #ffffff;
  font-size: 15px;
  align-items: center;
  justify-content: space-between;
  margin: 0;
}
.sellerprof .prfsec .prfimg .profilebuyer label {
  margin: 10px 10px 0px 0;
}
.sellerprof .prfsec .prfimg .profilebuyer input[type=text] {
  width: 100%;
  padding: 0.625rem 0;
  border: transparent;
  border-bottom: 1px solid #8D8D8D;
  border-radius: 0;
  background-color: transparent;
  color: #515151;
}
.sellerprof .prfsec .prfimg .profilebuyer input[type=email] {
  border-radius: 0;
  width: 100 .sellerprof .prfsec .prfimg .profilebuyer input[type=email];
  padding: 0.625rem 0;
  border: transparent;
  border-bottom: 1px solid #8D8D8D;
  /* height: 2.813rem; */
  /* border-radius: 0; */
  background-color: transparent;
  color: #515151;
  margin-bottom: 0.938rem;
}
.sellerprof .prfsec .prfimg .profilebuyer input[type=number] {
  width: 100%;
  padding: 0.625rem 0;
  border: transparent;
  border-bottom: 1px solid #8D8D8D;
  /* height: 2.813rem; */
  /* border-radius: 0; */
  background-color: transparent;
  color: #515151;
  margin-bottom: 0.938rem;
}
.sellerprof .prfsec .prfimg .profilebuyer .btn-acc {
  padding: 10px 20px;
  border-radius: 10px;
  color: var(--common-color);
  background: var(--logo-color);
  font-weight: 500;
  transition: all 0.4s ease;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
}
.sellerprof .prfsec .prfimg .profilebuyer .btn-acc:hover {
  background: var(--common-color);
  color: var(--common-color-blacck);
}
.sellerprof .prfsec .prfimg .seller-preview {
  background: var(--common-color);
}
.sellerprof .prfsec .prfimg .seller-preview .personinfor {
  padding: 15px 30px;
  font-size: 15px;
  margin: 0 0 20px;
}
.sellerprof .prfsec .prfimg .seller-preview .personinfor .col-lg-6.col-md-6.pnm {
  margin: 0 0 10px;
}
.sellerprof .prfsec .prfimg .seller-preview h2 {
  padding: 15px 30px;
  background: #D9F4FF;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
}
.sellerprof .prfsec .prfimg .seller-preview h2 span a {
  text-decoration: none;
  color: var(--heading-color);
}
.sellerprof .prfsec .prfimg .seller-preview h2 span a i {
  margin-right: 5px;
}
.sellerprof .prfsec .prfimg .seller-preview table {
  padding: 15px 30px;
  background: #ffffff;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
}
.sellerprof .prfsec .prfimg .seller-preview table td {
  padding-right: 10px;
  font-size: 15px;
  margin-bottom: 20px;
  padding-bottom: 18px;
}
.sellerprof .prfsec .prfimg .buyerprofiletable {
  background: #D9F4FF;
  width: 100%;
  margin-bottom: 20px;
  width: 100%;
  margin-top: 10px;
}
.sellerprof .prfsec .prfimg .buyerprofiletable h2 {
  padding: 15px 30px;
  background: #D9F4FF;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
}
.sellerprof .prfsec .prfimg .buyerprofiletable form {
  position: relative;
}
.sellerprof .prfsec .prfimg .buyerprofiletable form input[type=search] {
  border: 1px solid rgba(1, 171, 243, 0.5882352941);
  width: 100%;
  padding: 10px;
  height: 40px;
}
.sellerprof .prfsec .prfimg .buyerprofiletable form button.submit {
  border: transparent;
  padding: 12px 20px;
  position: absolute;
  top: 0;
  right: 0;
  background: transparent;
  border-radius: 50px;
  font-size: 15px;
  color: var(--common-color-blacck);
}
.sellerprof .prfsec .prfimg .buyerprf-table {
  background: var(--common-color);
  margin: 0 0 40px;
  width: 100%;
  margin: 0 0 40px;
  border-collapse: collapse;
  /* width: auto; */
  table-layout: auto;
}
.sellerprof .prfsec .prfimg .buyerprf-table tbody {
  border-radius: 5px;
  font-size: 16px;
  border-radius: 0;
  background: var(--common-color);
  overflow-y: initial;
  overflow: auto;
  border-collapse: separate;
  align-items: center;
  overflow-x: auto;
  display: table-footer-group;
  overflow-y: scroll;
  display: block;
  max-height: 50vh;
  height: 100%;
  border-bottom: 2px solid #084b61;
}
.sellerprof .prfsec .prfimg .buyerprf-table tbody tr {
  background: var(--common-color);
}
.sellerprof .prfsec .prfimg .buyerprf-table tbody tr .buyhead {
  font-weight: 700;
}
.sellerprof .prfsec .prfimg .buyerprf-table tbody tr td {
  width: 30%;
}
.sellerprof .prfsec .prfimg .buyerprf-table tbody tr td .pbtn {
  display: flex;
  align-items: center;
  padding: 5px;
  border-radius: 12px;
  border: 2px solid var(--heading-color);
  font-size: 14px;
  justify-content: center;
  width: 160px;
  font-weight: 500;
  text-decoration: none;
  color: var(--heading-color);
  margin: 15px 0;
}
.sellerprof .prfsec .prfimg .buyerprf-table tbody tr td h3 a {
  font-size: 15px;
  color: #084b61;
}
.sellerprof .prfsec .prfimg .buyerprf-table tbody tr td .iconlist {
  display: flex;
  align-items: center;
  width: 100%;
}
.sellerprof .prfsec .prfimg .buyerprf-table tbody tr td .iconlist a.mbox {
  background: #01ABF3;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
  color: var(--common-color);
  display: flex;
  align-items: center;
  padding: 5px;
  font-weight: 500;
  border-radius: 12px;
  font-size: 14px;
  margin-right: 10px;
  justify-content: center;
}
.sellerprof .prfsec .prfimg .buyerprf-table tbody tr td .iconlist i.fa.fa-eye {
  color: #084B61;
  margin-right: 10px;
}
.sellerprof .prfsec .prfimg .buyerprf-table tbody tr td .iconlist i.fa.fa-trash {
  color: red;
}
.sellerprof .prfsec .prfimg .buyerprf-table tbody tr td .iconlist:second-child {
  border: 1px solid #000;
}
.sellerprof .prfsec .prfimg .buyerprf-table tbody tr td .user {
  display: flex;
  align-items: center;
  padding: 5px;
  border-radius: 12px;
  border: 2px solid var(--heading-color);
  font-size: 14px;
  justify-content: center;
  width: 160px;
  margin: 15px 0;
  font-weight: 500;
}
.sellerprof .prfsec .prfimg .buyerprf-table tbody tr th {
  background: var(--common-color);
  font-size: 15px;
  color: var(--heading-color);
  padding: 15px 0;
  width: 28%;
}
.sellerprof .proflidashfom {
  padding: 15px;
}
.sellerprof .proflidashfom label {
  display: block;
  color: #000;
  font-size: 0.938rem;
  font-weight: 500;
}
.sellerprof .proflidashfom .form-control {
  width: 100%;
  padding: 0.625rem 0;
  border: transparent;
  border-bottom: 1px solid #8D8D8D;
  height: 2.813rem;
  border-radius: 0;
  background-color: transparent;
  color: #515151;
  resize: none;
  margin-bottom: 0.938rem;
}
.sellerprof .proflidashfom .btn {
  padding: 8px 20px;
  background: var(--logo-color);
  border-radius: 0.625rem;
  color: var(--common-color);
  position: relative;
  display: table;
  transition: all 0.4s ease;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
  margin-left: auto;
}
.sellerprof .proflidashfom .btn:hover {
  background: var(--common-color);
  color: var(--common-color-blacck);
}
.sellerprof .tableprfile {
  padding: 0 20px;
}
.sellerprof .tableprfile .t-header {
  color: var(--heading-color);
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid #084b61;
}
.sellerprof .tableprfile tr {
  color: var(--heading-color);
  border-bottom: 1px solid #084b61;
  padding: 16px 0;
}
.sellerprof .tableprfile tr td .user {
  display: flex;
  align-items: center;
  padding: 5px;
  border-radius: 12px;
  border: 2px solid var(--heading-color);
  font-size: 14px;
  justify-content: center;
  width: 160px;
  margin: 15px 0;
}
.sellerprof .tableprfile tr td .buyprice {
  border: 2px solid var(--heading-color);
  padding: 5px;
  border-radius: 5px;
}
.sellerprof .tableprfile tr td i.fa.fa-eye {
  color: #084B61;
}
.sellerprof .tableprfile tr td a.mbox {
  background: rgba(154, 226, 255, 0.3803921569);
  color: var(--heading-color);
  display: flex;
  align-items: center;
  padding: 5px;
  font-weight: 500;
  border-radius: 12px;
  font-size: 14px;
  justify-content: center;
}

.resellerprof h1 {
  font-size: 30px;
  font-family: "inter";
  color: var(--common-color-blacck);
  margin-bottom: 30px;
}
.resellerprof h1 span {
  display: block;
  font-size: 15px;
}
.resellerprof .orange {
  background: rgba(1, 171, 243, 0.3411764706) !important;
}
.resellerprof .orangeback {
  background: #00adee !important;
}
.resellerprof .upload {
  background: #2B67F6 !important;
}
.resellerprof .wh {
  background: #fff !important;
}
.resellerprof .wh i {
  color: #2B67F6 !important;
}
.resellerprof ul li a {
  text-decoration: none;
  color: #212529;
  display: block;
  font-size: 14px;
  text-decoration: none;
  color: var(--deep-color);
  margin-left: -1px;
  border: none;
  line-height: 2;
  font-weight: 500;
}
.resellerprof ul li a .contentwrap {
  background: rgba(6, 190, 3, 0.17);
  margin-bottom: 30px;
  transition: cubic-bezier(0.19, 1, 0.22, 1);
  border-radius: 10px;
  padding: 10px;
}
.resellerprof ul li a .contentwrap:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
}
.resellerprof ul li a .contentwrap .w {
  color: #fff !important;
}
.resellerprof ul li a .contentwrap .author {
  display: flex;
  align-items: center;
}
.resellerprof ul li a .contentwrap .author .author-image {
  width: 65px;
  background: #2ED573;
  color: #ffffff;
  text-align: center;
  line-height: 20px;
  padding: 20px;
  font-size: 20px;
  margin-right: 15px;
  height: 65px;
  border-radius: 18px;
}
.resellerprof ul li a .contentwrap .author .author-image i {
  font-size: 25px;
}
.resellerprof ul li a .contentwrap .author h4 {
  font-size: 20px;
  font-weight: 600;
  font-family: inter;
  color: var(--common-color-blacck);
}
.resellerprof ul li a .contentwrap .author p {
  font-size: 15px;
  margin: 0;
  font-weight: 400;
  font-family: inter;
  color: #000;
}
.resellerprof .table thead th {
  color: #084b61;
  background: var(--common-color);
  font-size: 15px;
  color: var(--heading-color);
  border: none;
}
.resellerprof .table td {
  vertical-align: top;
  border-top: 0px solid #dee2e6;
  color: var(--heading-color);
}
.resellerprof .table td .iconlist {
  display: flex;
  align-items: center;
}
.resellerprof .table i.fa.fa-eye {
  color: #084B61;
  margin-right: 10px;
}
.resellerprof .table i.fa.fa-edit {
  color: var(--heading-color);
  margin-right: 10px;
}
.resellerprof .table i.fa.fa-bell {
  color: #ff0000;
  margin-right: 10px;
}
.resellerprof .table span.apr {
  color: #1fbe1a;
  font-weight: 700;
}
.resellerprof .table span.rj {
  color: #ff0000;
  font-weight: 700;
}
.resellerprof .table-striped tbody tr:nth-of-type(odd) {
  background: #d9f4ff !important;
}
.resellerprof .prfsec .profilemainban {
  width: 100%;
  max-height: 400px;
  height: 100%;
}
.resellerprof .prfsec .prfimg {
  margin-top: -65px;
  padding: 0 20px;
  background: var(--common-color);
}
.resellerprof .prfsec .prfimg .circle {
  position: relative;
  width: 130px;
  height: 130px;
}
.resellerprof .prfsec .prfimg .circle img {
  width: 130px;
  height: 130px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 5px solid #fff;
}
.resellerprof .prfsec .prfimg .circle .p-image {
  position: absolute;
  right: 0;
  bottom: 0;
}
.resellerprof .prfsec .prfimg .p-image input.file-upload3 {
  display: none;
}
.resellerprof .prfsec .prfimg .profileimahe {
  height: 130px;
  width: 130px;
  border-radius: 50px;
}
.resellerprof .prfsec .prfimg h2 {
  font-size: 25px;
  font-family: "inter";
  margin: 20px 0;
}
.resellerprof .prfsec .prfimg h2 a {
  text-decoration: none;
  color: var(--heading-color);
}
.resellerprof .prfsec .prfimg .profilebuyer {
  padding: 15px 30px;
  background: #ffffff;
  font-size: 15px;
  align-items: center;
  justify-content: space-between;
  margin: 0;
}
.resellerprof .prfsec .prfimg .profilebuyer label {
  margin: 10px 10px 0px 0;
}
.resellerprof .prfsec .prfimg .profilebuyer input[type=text] {
  width: 100%;
  padding: 0.625rem 0;
  border: transparent;
  border-bottom: 1px solid #8D8D8D;
  border-radius: 0;
  background-color: transparent;
  color: #515151;
}
.resellerprof .prfsec .prfimg .profilebuyer input[type=email] {
  border-radius: 0;
  width: 100 .resellerprof .prfsec .prfimg .profilebuyer input[type=email];
  padding: 0.625rem 0;
  border: transparent;
  border-bottom: 1px solid #8D8D8D;
  /* height: 2.813rem; */
  /* border-radius: 0; */
  background-color: transparent;
  color: #515151;
  margin-bottom: 0.938rem;
}
.resellerprof .prfsec .prfimg .profilebuyer input[type=number] {
  width: 100%;
  padding: 0.625rem 0;
  border: transparent;
  border-bottom: 1px solid #8D8D8D;
  /* height: 2.813rem; */
  /* border-radius: 0; */
  background-color: transparent;
  color: #515151;
  margin-bottom: 0.938rem;
}
.resellerprof .prfsec .prfimg .profilebuyer .btn-acc {
  padding: 10px 20px;
  border-radius: 10px;
  color: var(--common-color);
  background: var(--logo-color);
  font-weight: 500;
  transition: all 0.4s ease;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
}
.resellerprof .prfsec .prfimg .profilebuyer .btn-acc:hover {
  background: var(--common-color);
  color: var(--common-color-blacck);
}
.resellerprof .prfsec .prfimg .reseller-preview {
  background: var(--common-color);
}
.resellerprof .prfsec .prfimg .reseller-preview .personinfor {
  padding: 15px 30px;
  font-size: 15px;
  margin: 0 0 20px;
}
.resellerprof .prfsec .prfimg .reseller-preview .personinfor .col-lg-6.col-md-6.pnm {
  margin: 0 0 10px;
}
.resellerprof .prfsec .prfimg .reseller-preview h2 {
  padding: 15px 30px;
  background: #D9F4FF;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
}
.resellerprof .prfsec .prfimg .reseller-preview h2 span a {
  text-decoration: none;
  color: var(--heading-color);
}
.resellerprof .prfsec .prfimg .reseller-preview h2 span a i {
  margin-right: 5px;
}
.resellerprof .prfsec .prfimg .reseller-preview table {
  padding: 15px 30px;
  background: #ffffff;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
}
.resellerprof .prfsec .prfimg .reseller-preview table td {
  padding-right: 10px;
  font-size: 15px;
  margin-bottom: 20px;
  padding-bottom: 18px;
}
.resellerprof .prfsec .prfimg .buyerprofiletable {
  background: #D9F4FF;
  width: 100%;
  margin-bottom: 20px;
  width: 100%;
  margin-top: 10px;
}
.resellerprof .prfsec .prfimg .buyerprofiletable h2 {
  padding: 15px 30px;
  background: #D9F4FF;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
}
.resellerprof .prfsec .prfimg .buyerprofiletable form {
  position: relative;
}
.resellerprof .prfsec .prfimg .buyerprofiletable form input[type=search] {
  border: 1px solid rgba(1, 171, 243, 0.5882352941);
  width: 100%;
  padding: 10px;
  height: 40px;
}
.resellerprof .prfsec .prfimg .buyerprofiletable form button.submit {
  border: transparent;
  padding: 12px 20px;
  position: absolute;
  top: 0;
  right: 0;
  background: transparent;
  border-radius: 50px;
  font-size: 15px;
  color: var(--common-color-blacck);
}
.resellerprof .prfsec .prfimg .buyerprf-table {
  background: var(--common-color);
  margin: 0 0 40px;
  width: 100%;
  margin: 0 0 40px;
  border-collapse: collapse;
  /* width: auto; */
  table-layout: auto;
}
.resellerprof .prfsec .prfimg .buyerprf-table tbody {
  border-radius: 5px;
  font-size: 16px;
  border-radius: 0;
  background: var(--common-color);
  overflow-y: initial;
  overflow: auto;
  border-collapse: separate;
  align-items: center;
  overflow-x: auto;
  display: table-footer-group;
  overflow-y: scroll;
  display: block;
  max-height: 50vh;
  height: 100%;
  border-bottom: 2px solid #084b61;
}
.resellerprof .prfsec .prfimg .buyerprf-table tbody tr {
  background: var(--common-color);
}
.resellerprof .prfsec .prfimg .buyerprf-table tbody tr .buyhead {
  font-weight: 700;
}
.resellerprof .prfsec .prfimg .buyerprf-table tbody tr td {
  width: 30%;
}
.resellerprof .prfsec .prfimg .buyerprf-table tbody tr td .pbtn {
  display: flex;
  align-items: center;
  padding: 5px;
  border-radius: 12px;
  border: 2px solid var(--heading-color);
  font-size: 14px;
  justify-content: center;
  width: 160px;
  font-weight: 500;
  text-decoration: none;
  color: var(--heading-color);
  margin: 15px 0;
}
.resellerprof .prfsec .prfimg .buyerprf-table tbody tr td h3 a {
  font-size: 15px;
  color: #084b61;
}
.resellerprof .prfsec .prfimg .buyerprf-table tbody tr td .iconlist {
  display: flex;
  align-items: center;
  width: 100%;
}
.resellerprof .prfsec .prfimg .buyerprf-table tbody tr td .iconlist a.mbox {
  background: #01ABF3;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
  color: var(--common-color);
  display: flex;
  align-items: center;
  padding: 5px;
  font-weight: 500;
  border-radius: 12px;
  font-size: 14px;
  margin-right: 10px;
  justify-content: center;
}
.resellerprof .prfsec .prfimg .buyerprf-table tbody tr td .iconlist i.fa.fa-eye {
  color: #084B61;
  margin-right: 10px;
}
.resellerprof .prfsec .prfimg .buyerprf-table tbody tr td .iconlist i.fa.fa-trash {
  color: red;
}
.resellerprof .prfsec .prfimg .buyerprf-table tbody tr td .iconlist:second-child {
  border: 1px solid #000;
}
.resellerprof .prfsec .prfimg .buyerprf-table tbody tr td .user {
  display: flex;
  align-items: center;
  padding: 5px;
  border-radius: 12px;
  border: 2px solid var(--heading-color);
  font-size: 14px;
  justify-content: center;
  width: 160px;
  margin: 15px 0;
  font-weight: 500;
}
.resellerprof .prfsec .prfimg .buyerprf-table tbody tr th {
  background: var(--common-color);
  font-size: 15px;
  color: var(--heading-color);
  padding: 15px 0;
  width: 28%;
}
.resellerprof .proflidashfom {
  padding: 15px;
}
.resellerprof .proflidashfom label {
  display: block;
  color: #000;
  font-size: 0.938rem;
  font-weight: 500;
}
.resellerprof .proflidashfom .form-control {
  width: 100%;
  padding: 0.625rem 0;
  border: transparent;
  border-bottom: 1px solid #8D8D8D;
  height: 2.813rem;
  border-radius: 0;
  background-color: transparent;
  color: #515151;
  resize: none;
  margin-bottom: 0.938rem;
}
.resellerprof .proflidashfom .btn {
  padding: 8px 20px;
  background: var(--logo-color);
  border-radius: 0.625rem;
  color: var(--common-color);
  position: relative;
  display: table;
  transition: all 0.4s ease;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 7px;
  margin-left: auto;
}
.resellerprof .proflidashfom .btn:hover {
  background: var(--common-color);
  color: var(--common-color-blacck);
}
.resellerprof .tableprfile {
  padding: 0 20px;
}
.resellerprof .tableprfile .t-header {
  color: var(--heading-color);
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid #084b61;
}
.resellerprof .tableprfile tr {
  color: var(--heading-color);
  border-bottom: 1px solid #084b61;
  padding: 16px 0;
}
.resellerprof .tableprfile tr td .user {
  display: flex;
  align-items: center;
  padding: 5px;
  border-radius: 12px;
  border: 2px solid var(--heading-color);
  font-size: 14px;
  justify-content: center;
  width: 160px;
  margin: 15px 0;
}
.resellerprof .tableprfile tr td .buyprice {
  border: 2px solid var(--heading-color);
  padding: 5px;
  border-radius: 5px;
}
.resellerprof .tableprfile tr td i.fa.fa-eye {
  color: #084B61;
}
.resellerprof .tableprfile tr td a.mbox {
  background: rgba(154, 226, 255, 0.3803921569);
  color: var(--heading-color);
  display: flex;
  align-items: center;
  padding: 5px;
  font-weight: 500;
  border-radius: 12px;
  font-size: 14px;
  justify-content: center;
}/*# sourceMappingURL=style.css.map */
