/* CSS Index
-----------------------------------
1. NAV BAR
2. BANNER
3. ABOUT US
4. WHY CHOOSE US
5. SERVICES
6. FUN FACTS
7. TAB SHOWCASE 
8. OUR TEAM
9. BLOG POST
10- TESTIMONIAL
11- Contact Us
12- FOOTER
*/

@import url("https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700&family=Pacifico&family=Poppins:wght@400;500&display=swap");

* {
  margin: 0px;
  padding: 0px;
  border: 0px;
  font-style: inherit;
  font-variant: inherit;
  font-stretch: inherit;
  font-size: inherit;
  line-height: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
  font-family: "Pacifico", cursive;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #fff;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 24px;
  margin: 0px;
  padding: 0px;
  background: linear-gradient(90deg, #254272, #531a1a);
}

ol,
ul {
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700 !important;
  font-family: "Jost", sans-serif;
}

img {
  height: auto;
  max-width: 100%;
}

a:hover {
  text-decoration: none !important;
  
}

/*-------------------------------------------------*/
/* BANNER
/*-------------------------------------------------*/

.banner {
  width: 100%;
  padding: 120px 0 20px 0;
  float: left;
  position: relative;
  overflow: hidden;
  height: 100%;
  /* background: #fff; */
}

.banner::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background: linear-gradient(356deg, #133dff, #201d1d);
  background-size: cover;
  opacity: 0;
  z-index: -1;
}

.ani-top {
  position: absolute;
  content: "";
  background: url(../images/icons/bitcoin-01.png);
  right: 0;
  top: 40px;
  width: 100px;
  height: 100px;
  animation: align-itms 10s infinite linear;
  background-size: cover;
}

@keyframes align-itms {
  0% {
    left: -136px;
  }

  50% {
    left: 12%;
  }

  100% {
    left: -70px;
  }
}

.banner .ban-lhs {
  float: left;
  width: 100%;
  padding: 0;
  position: relative;
  z-index: 3;
  transform: translateX(50%);
  transition: all 0.5s ease;
  opacity: 0;
}

.banner .ban-lhs.ani1 {
  transform: translateX(0);
  transition: all 0.5s ease;
  opacity: 1;
  transition-delay: 0.5s;
}

.ban-lhs h1 {
  font-weight: 700 !important;
  font-size: 70px;
  line-height: 83px;
  display: inline-block;
  text-transform: capitalize;
  padding: 0 0 20px 0;

  position: relative;
}

.ban-lhs h1::before {
  position: absolute;
  content: "";
  background: url(../images/icons/2.svg);
  top: -29px;
  left: -55px;
  background-size: cover;
  width: 88px;
  height: 63px;
  z-index: -1;
}

.ban-lhs p {
  font-size: 16px;
  padding: 0 47px 0 7px;
  border-left: 1px solid #d3c7c7;
  margin: 0 0 0 0;
  line-height: 25px;
}

.banner .ban-rhs {
  float: left;
  padding: 0 0px 0px 150px;
  width: 45%;
  position: relative;
  z-index: 1;
}

.banner .ban-rhs::before {
  position: absolute;
  content: "";
  left: 82px;
  background: url("../images/3.png") 0% 0% / cover;
  width: 100%;
  height: 82%;
  top: -24px;
  z-index: -1;
}

.banner .ban-rhs::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background: url(../images/icons/11.png);
  background-size: cover;
  width: 100px;
  height: 120px;
  z-index: 4;
}

.ban-inn {
  float: left;
  width: 100%;
  display: flex;
  align-items: center;
}

.ban-img {
}
.ban-img img {
  animation: move 4.8s infinite linear;
  transition: all 0.5s ease;
  animation-delay: 1s;
}

@keyframes move {
  0% {
    filter: drop-shadow(1px 0 0 #fff) drop-shadow(-1px 0 #fff)
      drop-shadow(0 1px 0 #fff) drop-shadow(0 -1px 0 #fff)
      drop-shadow(-3px -3px 0 #fff) drop-shadow(0px 0px 0 #fff)
      drop-shadow(-10px 0px 0 #fff) drop-shadow(-0px -0px 0 #fff);
  }
}

.group-img {
  display: flex;
  float: left;
  margin-top: 50px;
  align-items: center;
}
.group-img img {
  width: 120px;
}
.group-img span {
  font-weight: 500;
}

.group-img i {
  font-weight: 600;
  font-size: 20px;
}

/*-------------------------------------------------*/
/* brands
/*-------------------------------------------------*/
.brand {
  float: left;
  width: 100%;
  margin: 60px 0 0 0;
}

.brand-inner {
  overflow: hidden;
  float: left;
  width: 100%;
}

.brand-inner li {
  display: inline-block;
}

.brand-inner li .brand-img {
  width: 120px;
  filter: invert(1);
}

.brand-inner button {
  display: none !important;
}

/*-------------------------------------------------*/
/* ABOUT US
/*-------------------------------------------------*/

.about-us {
  float: left;
  width: 100%;
  position: relative;
  padding-top: 120px;
  padding-bottom: 140px;
  overflow: hidden;
}

.rotate-shapes span {
  bottom: -16px;
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  left: 100px;
  background: #ff9800;
  animation: rotate 10s infinite linear;
  border-radius: 5px;
  z-index: 1;
}

.rs1 span {
  left: auto;
  right: 51px;
}

.about-us::after {
  position: absolute;
  content: "";
  background: url(../images/shapes/14.png);
  animation: animationFramesThree 11s infinite linear alternate;
  background-size: cover;
  width: 40px;
  height: 40px;
  top: 10%;
  left: 30%;
}

.about-content {
  float: left;
  width: 48%;
  padding-right: 52px;
  position: relative;
}

.abt-benefits h3 {
  float: left;
  font-size: 36px;
  line-height: 46px;
  margin: 0;
}

.abt-benefits p {
  margin: 0;
  padding: 24px 0 24px 0;
  display: inline-block;
}

.abt-benefits b {
  font-weight: 600;
  font-size: 15px;
  margin: 0 6px;
}

.abt-benefits {
  float: left;
  padding-right: 20px;
}

.abt-benefits ul {
  padding: 0;
  margin: 0;
}

.abt-benefits li {
  float: left;
  width: 50%;
  position: relative;
  margin-bottom: 10px;
}

.abt-benefits i {
  float: left;
  margin: 7px 12px 0 0;
  color: #ff9800;
  display: none;
}

.abt-benefits h4 {
  float: left;
  font-weight: 500 !important;
  font-size: 16px;
  margin: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 16px;
  margin-left: 10px;
}

.abt-benefits h4::before,
.abt-benefits h4::after {
  position: absolute;
  content: "";
  left: 0;
  width: 8px;
  height: 1.8px;
  background: #fff;
}

.abt-benefits h4::after {
  width: 5px;
  height: 5px;
  border-radius: 50px;
  left: -10px;
}

.abt-student {
  float: left;
  width: 100%;
  margin-top: 24px;
  position: relative;
}

.abt-benefits h6 {
  float: left;
  font-weight: 500;
  border-bottom: 1px solid #e4dddd;
  padding: 24px 0 27px 0;
  font-size: 15px;
}

.abt-student img {
  float: left;
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: 50%;
}

.abt-name-det {
  float: left;
  width: 80%;
  padding: 15px 0 0 15px;
}

.abt-name-det .abt {
  font-size: 13px;
  float: left;
  margin: -10px 0 0 0;
}

.abt-name-det h5 {
  font-size: 18px;
  float: left;
  width: 100%;
}

.abt-student-img {
  float: left;
  width: 52%;
  position: relative;
  transition: all 0.5s ease;
}

.abt-student-img img {
  position: absolute;
  width: 250px;
  height: 275px;
  object-fit: cover;
  z-index: 2;
  border-radius: 2px;
  filter: grayscale(0.2);
  transition: all 0.4s ease;
}

.abt-student-img .student-img {
  left: 30px;
  top: -25px;
}

.abt-student-img .student-img:hover {
  transform: translateX(-10px);
}

.abt-student-img .student-img1 {
  right: 0;
  top: 70px;
  width: 290px;
  height: 430px;
}

.abt-student-img .student-img1:hover {
  transform: translateX(10px);
}

.abt-student-img .student-img2 {
  bottom: -6px;
  left: 30px;
}

.abt-student-img .student-img2:hover {
  transform: translateX(-10px);
}

/*-------------------------------------------------*/
/* services-box  and why choose us
/*-------------------------------------------------*/
.services-box {
  float: left;
  width: 100%;
  position: relative;
  padding-bottom: 100px;
}
.services-box::before,
.services-box::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: url(../images/background/2.svg);
  background-size: cover;
  width: 173px;
  height: 188px;
}
.services-box::after {
  top: auto;
  bottom: 0;
  transform: scaley(-1) translateX(-10px);
}
.services button {
  display: none !important;
}

.services-box-inner {
  float: left;
  width: 43%;
  padding: 35px;
  text-transform: capitalize;
  border-radius: 15px;
  overflow: hidden;
  z-index: 1;
  position: relative;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin: 15px;
}

.services-box-inner::after {
  content: "";
  position: absolute;
  height: 2px;
  bottom: 3px;
  left: 0;
  right: 0;
  transition: transform 0.3s ease-in-out;
  background: #3f3f80;
  transform: scalex(0);
  transform-origin: right;
  height: 100%;
  z-index: -1;
}

.services-box-inner:hover::after {
  transform: scalex(1);
  transform-origin: left;
}

.services-box i {
  color: #ff7425;
  font-size: 30px;
  background: linear-gradient(45deg, #2627fa, #ff544f 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-box-inner h4 {
  margin: 20px 0 15px 0;
  font-weight: 500 !important;
  font-size: 20px;
}

.services-box-inner p {
  font-size: 14px;
  padding: 10px 0 10px 0;
  /* color: #000; */
}

.bottom-box {
  display: flex;
  border-top: 1px solid #6c2228;
  padding-top: 20px;
  align-items: center;
}

.bottom-box a {
  text-decoration: none;
  position: relative;
  width: 100%;
  color: #fff;
}

.bottom-box img {
  width: 16px;
  height: 16px;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 5px;
}

.fun-fact-inner {
  float: left;
  width: 100%;
  position: relative;
  padding: 20px;
}
.fun-fact-inner::before,
.fun-fact-inner::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(45deg, #8b1fb700, #45f882, #654fff05);
  width: 100%;
  height: 1px;
}
.fun-fact-inner::after {
  top: auto;
  bottom: 0;
}
.why-choose-box .services-box-inner:first-child {
  border-left: 2px solid #ffce22;
}
.why-choose-box .services-box-inner:nth-child(2) {
  border-left: 2px solid #8f6bf6;
}
.why-choose-box .services-box-inner:nth-child(3) {
  border-left: 2px solid #63eaa9;
}
.why-choose-box .services-box-inner:last-child {
  border-left: 2px solid #ff5c5c;
}

/*-------------------------------------------------*/
/*search top
/*--------------------------------------------------*/
.top-cl-fun {
  z-index: -10;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  background: #333;
  transition: all 0.7s ease;
  box-shadow: 0 1px 6px 0 #0a0a0a29;
  visibility: hidden;
  height: 100vh;
  padding: 0 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transform: translateY(-100%);
}

.top-cl-fun.act {
  z-index: 100;
  visibility: visible;
  transform: translateY(0%);
}

.top-search {
  color: #fff;
  position: relative;
  width: 100%;
}

.top-search .sub-button {
  outline: none;
  background: no-repeat;
  position: absolute;
  bottom: 20px;
  right: 16px;
  text-align: center;
  transform: scale(1.5);
}

.top-search input {
  background: none;
  padding: 0 40px 0 40px;
  border-radius: 0;
  font-size: 14px;
  border: 0;
  font-weight: 300;
  width: 100%;
  height: 65px;
  font-size: 15px;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 5px;
}

.top-search input::placeholder {
  color: #fff;
}

.top-cl-fun span {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 20px;
  background: #fff;
  height: 40px;
  width: 40px;
  border: 1px solid #999;
  text-align: center;
  line-height: 37px;
  border-radius: 50%;
  cursor: pointer;
  color: #3f51b5;
}

.top-search .sub-button .se-icon {
  color: #fff;
  background: none;
  transform: none;
}

/*-------------------------------------------------*/
/* SIDE BAR
/*-------------------------------------------------*/

.side-bar {
  position: fixed;
  background: #fff;
  padding: 40px;
  text-transform: capitalize;
  box-shadow: 0 0 90px 0 rgb(0 0 0 / 10%);
  top: 0;
  transition: all 1s ease;
  right: -500px;
  width: 400px;
  overflow: hidden;
  overflow-y: auto;
  height: 100vh;
  transition: all 0.5s ease;
  z-index: 1000;
}

.side-bar-im {
  width: 100%;
  margin-bottom: 25px;
}

.side-bar-im img {
  width: 150px;
  height: auto;
  display: inline-block;
  margin-bottom: 25px;
}

.side-bar-im h3,
.side-bar-blg-post h3,
.side-panel-con h3 {
  margin-bottom: 18px;
  width: 100%;
  letter-spacing: -0.5px;
  font-size: 20px;
  display: inline-block;
  font-weight: 600;
  position: relative;
  color: #000;
}

.side-panel-con a {
  background: none;
  text-decoration: none;
}

.side-bar-blg-post h3 {
  margin-bottom: 0;
}

.side-bar-im p {
  font-size: 13px;
  line-height: 22px;
  float: left;
  padding-bottom: 30px;
  margin: 0;
  color: #000;
}

.side-bar-blg-post {
  float: left;
  width: 100%;
  padding: 30px 0 30px 0;
  border-top: 1px solid #c9c9daf5;
}

.popu-news img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  float: left;
  margin-top: 6px;
}

.side-bar-blg-post,
.blg-post-content {
  float: left;
  width: 65%;
  padding-top: 10px;
}

.side-bar-blg-post {
  width: 100%;
  padding-top: 30px;
}

.blg-post-content b {
  color: #3d02a8;
}

.side-panel-con {
  padding-top: 0;
  display: inline-block;
}

side-panel-con ul {
  margin: 0;
  padding: 0;
}

.side-panel-con li {
  float: left;
  list-style-type: none;
  display: block;
  padding: 0px 0 15px 0;
  width: 100%;
}

.side-panel-con i {
  color: rgb(240 64 55 / 86%);
  margin-right: 15px;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 16px;
  height: 35px;
  width: 35px;
  background: rgba(240, 64, 55, 0.1);
  text-align: center;
  line-height: 34px;
  border-radius: 50%;
}

.side-panel-con li:nth-child(2) i,
.abt-why-booking ul li:nth-child(2) i {
  color: rgb(82 211 253);
  background: rgba(82, 211, 253, 0.1);
}

.side-panel-con li:nth-child(3) i,
.abt-why-booking ul li:nth-child(3) i {
  color: rgb(23 194 152);
  background: rgba(23, 194, 152, 0.1);
}

.side-panel-con span {
  font-size: 14px;
  text-transform: initial;
  padding-top: 4px;
  color: #000;
}

.side-bar-im i {
  position: absolute;
  right: 40px;
  top: 40px;
  text-align: center;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 20px;
  line-height: 30px;
  transition: all 0.6s ease;
  background: red;
}

.side-bar-im i:hover {
  transition: all 0.6s ease;
  background: #055dfd;
  color: #fff;
}

.side-panel-con li:nth-child(4) i,
.contact-info-lhs ul li:nth-child(2) i {
  background: #ece8fd;
  color: #8067f0;
}

.contact-info-lhs ul li:nth-child(1) i {
  background: #f4dfdd;
  color: #ee4a62;
}

.side-bar.act {
  right: 0;
}

.contact-following ul {
  display: flex !important;
}

.contact-following i {
  width: 40px !important;
  height: 40px !important;
  font-size: 16px !important;
  line-height: 38px !important;
  margin-right: 30px;
  background: #e8e9f1 !important;
}
/*-------------------------------------------------*/
/* NAV
/*-------------------------------------------------*/

.nav {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  padding: 18px 0px;
  z-index: 99;
}

.nav.act {
  box-shadow: rgb(0 0 0 / 33%) 0px 0px 20px -10px;
  background: #fff;
  z-index: 99;
  position: fixed;
}

.nav.act a {
  color: #000;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.logo img {
  max-width: 150px;
  filter: invert(1);
}

.nav-inner .menu {
  width: 100%;
}

.menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px;
}

.menu li {
  padding: 0px 20px;
  position: relative;
}

.menu a {
  font-weight: 500;
  font-size: 16px;
  position: relative;
  z-index: 1;
  text-decoration: unset;
  display: inline-block;
  text-transform: capitalize;
  transition: all 0.5s ease;
  color: #fff;
}

.menu a:hover {
  color: #ff7425 !important;
  text-decoration: none;
}

.menu a::before {
  content: "";
  position: absolute;
  height: 2px;
  bottom: 3px;
  left: 0;
  right: 0;
  transition: transform 0.3s ease-in-out;
  background: #ff7425;
  transform: scalex(0);
  transform-origin: right;
}

.menu a:hover::before {
  transform: scalex(1);
  transform-origin: left;
}

.menu ul li:first-child {
  display: none;
}

.menu span {
  display: none;
}

.nav-inner .side-bar-right {
  display: flex;
  justify-content: space-between;
}

.side-bar-right i {
  font-size: 12px;
  color: #fff;
  background: #1b0c0f;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
}

.comm-heading {
  display: inline-block !important;
  position: relative;
  margin-bottom: 20px;
}

.comm-heading span:before {
  z-index: -1;
  position: absolute;
  content: "";
  bottom: 8px;
  left: 0;
  width: 30px;
  height: 7px;
  z-index: -1;
  background: url(../images/icons/heading.svg);
  background-size: cover;
  filter: invert(1);
}

.comm-heading span {
  text-transform: initial;
  font-size: 19px;
  letter-spacing: 0.5px;
  font-weight: 400;
  position: relative;
  z-index: 1;
  color: #101948;
  color: #fff;
  display: inline-block;
  padding-left: 15px;
  text-transform: lowercase;
  padding-left: 36px;
  font-family: "Pacifico", cursive;
}

.comm-heading h2 {
  display: block;
  padding: 15px 0 15px 0;
  margin-bottom: 0;
}

.inn img {
  width: 60px;
  height: 60px;
  position: absolute;
  margin: 0 0 0 10px;
}

.comm-btn {
  position: relative;
  text-transform: capitalize;
  margin: 65px 0 0 0;
  float: left;
  width: 100%;
}

.comm-btn a {
  padding: 23px 62px;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  position: relative;
  border-radius: 50px;
  transition: all 0.5s ease;
  background: #45f882;
}

.comm-btn a:hover {
  background: #3c3ddc;
  text-decoration: none;
  color: #fff;
}

.comm-btn .bg-none:after {
  display: none;
}

.comm-btn .bg-none:before {
  display: none;
}

.comm-btn .add-btn {
  background: none;
  padding: 0;
  color: #fff;
  font-weight: 500;
  border: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 32px;
  border: 1px dashed #000;
}

.comm-btn .add-icon {
  line-height: 50px;
  background: none;
  left: 4px;
}

.menu-bar {
  display: none;
}

.menu-bar i {
  color: #fff;
  background: #2250fc;
  padding: 5px 7px;
  text-align: center;
  font-size: 18px;
  border-radius: 3px;
  font-weight: 200;
  float: left;
  cursor: pointer;
}

/*-------------------------------------------------*/
/* fun facts start
/*-------------------------------------------------*/

.fun-fact {
  position: relative;
  width: 100%;
  float: left;
  text-align: center;

  margin-top: -100px;
}

.fun-fact-inner li {
  float: left;
  width: 25%;
  padding: 30px;
  position: relative;
}
.fun-fact-inner li::after {
  position: absolute;
  content: "";
  background: linear-gradient(45deg, #8b1fb700, #45f581, #654fff05);
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
}
.fun-fact-inner li:last-child:after {
  background: none;
}

.number {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-transform: capitalize;
}

.number i {

  font-size: 25px;
}

.number span {
  font-size: 30px;
 
  margin: 7px 0 10px 0;
  font-weight: 600;
}

.number h4 {
  font-size: 16px;

  font-weight: 500 !important;
  text-transform: uppercase;
}


.fun-fact::before {
  position: absolute;
  content: "";
  top: 0;

  background-size: cover;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  filter: inherit;
  background-position: center;
  
}

.rating {
  width: 100%;
  padding: 22px 0 2px 0;
}

.number-rating ul {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.number-rating li {
  text-align: center;
}

.number-rating i {
  display: block;
  font-size: 37px;
  font-weight: 600;
  color: #342487;
}

.number-rating span {
  color: #555;
}

.comm-btn i {
  color: #8067f0;
  font-size: 32px;
  border-radius: 50%;
  margin: 30px 10px 0 4px;
  position: relative;
  width: 80px;
  height: 80px;
  text-align: center;
  line-height: 79px;
  background: rgb(247 248 253);
}

.services {
  float: left;
  width: 100%;
  padding: 0 0 200px 0;
  position: relative;
  overflow: hidden;
}

.ser-inner {
  text-transform: capitalize;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding-right: 10%;
  display: flex;
  padding-left: 10%;
}

.ser-inner h2 {
  display: inline-block;
  margin: 0 0 14px 0;
  font-size: 43px;
  letter-spacing: -1px;
}

.ser-inner p {
  padding-right: 30px;
  line-height: 29px;
  padding-bottom: 10px;
}

.services-rhs {
  width: 100%;
  position: relative;
  float: left;
  height: 100%;
}

.services-det:before {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background: #7fffd4;
  height: 0;
  left: 0;
  transition: all 0.5s ease;
}

.services-det::after {
  position: absolute;
  content: "";
  background: url(../images/icons/paint.png);
  bottom: -50px;
  right: -50px;
  width: 68px;
  height: 74px;
  background-size: cover;
  transform: scale(-1);
  transition: all 0.5s ease;
}

.services-det:hover::before {
  height: 100%;
  top: 0;
  bottom: auto;
}

.services-det:hover::after {
  bottom: -10px;
  right: -10px;
}

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.services-rhs ul {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}

.services-rhs li {
  float: left;
  padding: 15px;
}

.services-det {
  position: relative;
  width: 100%;
  border-radius: 15px;
  text-transform: capitalize;
  float: left;
  padding: 44px 40px 43px 40px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e8d8d8;
  overflow: hidden;
}

.services-det i {
  width: 50px;
  height: 50px;
  position: absolute;
  right: 30px;
  top: 30px;
  background: #45f882;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 600;
  font-size: 16px;
  flex-direction: column;
  padding-top: 8px;
}
.services-det span {
  color: #000;
  margin-top: -10px;
  font-size: 16px;
}
.services-det h3 {
  position: relative;
  font-size: 15px;
  color: #fff;
  background: linear-gradient(45deg, #2627fa, #ff544f 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.services-det h4 {
  margin: 0;
  display: block;
  padding: 5px 0 15px 0;
  position: relative;
  font-weight: 500 !important;
  font-size: 32px;
  color: #000;
}

.services-det p {
  font-size: 14px;
  position: relative;
  padding-bottom: 15px;
  color: #000;
}

.road-map-list {
  float: left;
  width: 100%;
  padding: 15px 0 0 0;
  border-top: 1px solid #cfd7ec;
}
.road-map-list i {
  display: block;
  position: relative;
  background: none;
  width: auto;
  height: auto;
  color: #000;
  font-weight: 400;
  top: 0;
  right: 0;
  margin-bottom: 4px;
}
.road-map-list span {
  color: #000;
  margin: 0 0 0 7px;
  font-size: 15px;
}

/*-------------------------------------------------*/
/* our-team
/*-------------------------------------------------*/

.our-team {
  float: left;
  width: 100%;
  position: relative;
  padding: 120px 0 120px 0;
  text-align: center;
  overflow: hidden;
}

.team-inner {
  float: left;
  width: 100%;
}

.team-member {
  position: relative;
  width: 100%;
  z-index: 9;
  float: left;
  transition: all 0.5s ease;
}

.team-member:hover {
  transform: translateX(-10px);
  transition: all 0.5s ease;
}

.team-member:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  top: 0;
  left: 0;
  animation: rotate 4s infinite linear;
  z-index: 99;
  background: url(../images/icons/bitcoin-01.png);
  background-size: contain;
}

.team-img {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  width: 100%;
}

.team-img:hover::after {
  transform: translateY(-20px) scale(1.7);
  transition: all 0.5s ease;
}

.team-img::after {
  position: absolute;
  content: "";
  background: url(../images/background/1.png);
  background-size: cover;
  width: 200px;
  height: 200px;
  z-index: -1;
  transform: translateY(0) scale(0);
  transition: all 0.5s ease;
}

.team-img:hover {
  transition: all 0.5s ease;
}

.team-img::before {
  position: absolute;
  content: "";
  bottom: 110px;
  right: -17px;
  background: url(../images/icons/ethereum-02.png);
  transition: all 0.5s ease;
  animation: rotate 4s infinite linear;
  width: 20px;
  height: 20px;
  z-index: 3;
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
  background-size: cover;
}

.team-member:hover .team-img .team-det {
  transform: scale(1);
  transition: all 0.5s ease;
  transition-delay: 0.4s;
}

.team-img img {
  width: 100%;
  float: left;
  height: 250px;
  object-fit: cover;
  border-radius: 0 100px 100px 100px;
}

.team-img .team-det {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.5s ease;
  transition-delay: 0.4s;
  transform: scale(0);
}

.team-name {
  width: 100%;
  padding: 20px 0 0 0;
  position: relative;
  float: left;
}

.team-name h5 {
  margin-bottom: 0;
}

.team-name span {
  text-transform: uppercase;
  font-size: 14px;
  display: inline-block;
  margin: 10px 0 12px 0;
}

.team-radius:before {
  border-radius: 5px;
}

.radius {
  border-radius: 5px !important;
}

.comm-mani-heading {
  margin-bottom: 40px;
  text-transform: capitalize;
  padding-right: 9px;
  font-size: 43px;
  line-height: 50px;
  position: relative;
}

.blog-post {
  float: left;
  width: 100%;
  position: relative;
  padding: 0 0 120px 0;
  overflow: hidden;
}

.post-left {
  width: 100%;
  position: relative;
  height: 100%;
}

.post-left img {
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.post-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 50px;
  color: #fff;
}

.post-content a,
.post-content-1 a {
  background: #ff3385;
  color: #fff;
  padding: 2px 6px;
  border-radius: 2px;
  text-transform: uppercase;
  display: inline-block;
  font-size: 13px;
}

.post-content h2 {
  color: #fff;
  display: inline-block;
  padding: 25px 0 0 0;
}

.comments {
  float: left;
  width: 100%;
}

.comments ul {
  display: flex;
  padding: 0;
  margin: 0;
}

.comments li {
  padding: 0 9px;
}

.comments span {
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
}

.comments i {
  color: #fff;
}

.comments b {
  color: #fff;
  font-weight: 500;
}

.post-right {
  position: relative;
}

.post-right ul li:nth-child(2) .post-content-1 a {
  background: #0073ff;
}

.post-right ul li:nth-child(3) .post-content-1 a {
  background: #3dd800;
}

.post-right li {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.small-img {
  width: 100%;
  height: 100%;
}

.small-img img {
  border-radius: 2px;
}

.post-content-1 a {
  float: left;
  background: #ffaf25;
}

.post-content-1 h3 {
  display: block;
  width: 100%;
  float: left;
  font-size: 19px;
  line-height: 24px;
  margin: 18px 0 18px 0;
}

.post-content-1 {
  width: 100%;
  position: relative;
  padding: 0 0 0 15px;
  float: left;
}

.full-width {
  position: relative;
  width: 100%;
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.full-width:before {
  position: absolute;
  content: "";
}

.comments-c-change span {
  color: #fff;
  margin-left: -7px;
}

.comments-c-change b {
  font-weight: 400;
  color: #fff;
}


.followers {
  width: 100%;
  float: left;
}

.followers ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.followers li {
  padding: 0 20px;
  border-right: 1px solid #ddd;
}

.followers i {
  color: #fff;
}

.followers ul li:last-child {
  border-right: 0;
}

.align-items-center {
  width: 100%;
  text-align: center;
}

/*-------------------------------------------------*/
/* CONTACT US
/*-------------------------------------------------*/

.contact-us {
  position: relative;
  padding: 100px 0 0 0;
  /* display: none; */
  background: #fff;
  overflow: hidden;
}

.con-det {
  text-transform: capitalize;
  width: 100%;
  float: left;
  padding-right: 30px;
}

.con-det h2,
.contact-det h3 {
  font-size: 40px;
  letter-spacing: -2px;
  color: #000;
}

.con-det p {
  margin: 20px 0 25px 0;
  color: #000;
}

.contact-form {
  float: left;
  width: 100%;
}

.contact-form ul {
  padding: 0;
  margin: 0;
}

.contact-form li {
  margin: 0 0 25px 0;
  float: left;
  width: 100%;
}

.contact-form ul li:last-child {
  border: 0;
}

.contact-form input {
  float: left;
  width: 100%;
  border: 1px solid #b9afaf;
  padding: 15px 15px 15px 15px;
  border-radius: 5px;
}

.contact-form .sub-btn {
  text-transform: uppercase;
  padding: 15px;
  border-radius: 50px;
  letter-spacing: 2px;
  margin-top: 15px;
  border: 1px solid #eee;
  background: #eeee;
}

.shapes-group {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}

.shapes-group .sh1 {
  position: absolute;
  bottom: 79px;
  left: 0;
  background: url(../images/background/3.png);
  background-size: cover;
  width: 400px;
  height: 207px;
  z-index: 0;
  opacity: 0.4;
}

.contact-following {
  float: left;
  margin-top: 20px;
}

.contact-map {
  position: relative;
  float: left;
  width: 100%;
}

.contact-map iframe {
  width: 100%;
  height: 300px;
  position: relative;
  pointer-events: none;
  margin-bottom: -7px;
  margin-top: 40px;
}

.contact-map iframe.clicked {
  pointer-events: auto;
  z-index: 1;
}

.contact-info-lhs {
  text-transform: capitalize;
}

.contact-info-lhs h2,
.contact-info-rhs h3 {
  font-size: 39px;
  line-height: 46px;
  letter-spacing: -1.5px;
  margin: 0 0 15px 0;
  position: relative;
  text-transform: initial;
  display: inline-block;
  position: relative;
  color: #000;
}

.contact-info-lhs h2:before {
  bottom: -6px;
  transform: rotate(2deg);
}

.contact-info-rhs h3:before {
  bottom: -5px;
  transform: rotate(2deg);
}

.contact-banner a:hover {
  color: #055dfd;
  transition: all 0.4s ease;
}

.contact-info-lhs p {
  font-size: 14px;
  line-height: 28px;
  font-weight: 400;
  margin: 0 0 22px 0;
  color: #000;
}

.contact-info-lhs ul {
  padding: 0;
  margin: 0;
}

.contact-info-lhs li {
  float: left;
  width: 100%;
  color: #000;
  margin: 15px 0;
}

.contact-info-lhs i {
  float: left;
  background: #ddf5e6;
  height: 60px;
  width: 60px;
  text-align: center;
  border-radius: 50%;
  color: #1cbe59;
  font-size: 24px;
  line-height: 57px;
}

.contact-info-lhs ul li:nth-child(2) i {
  font-size: 30px;
}

.contact-info-lhs span {
  display: inline-block;
  padding: 8px 0 0 20px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.6px;
  color: #000;
}

.contact-info-rhs {
  padding: 0 40px;
  position: relative;
}

/*-------------------------------------------------*/
/*  FOOTER
/*-------------------------------------------------*/
.footer {
  float: left;
  width: 100%;
  padding: 140px 0 120px 0;
  background: #35364c;
  overflow: hidden;
  position: relative;
}

.footer-1 {
  float: left;
  width: 100%;
  text-transform: capitalize;
  position: relative;
}

.footer-1:before {
  position: absolute;
  content: "";
  bottom: 0;
  width: 103px;
  height: 125px;
  right: 0;
  background: url(../images/icons/43.png);
}

.log-det {
  float: left;
}

.log-det img {
  width: 140px;
  object-fit: cover;
  float: left;
  filter: invert(1);
}

.log-det p {
  font-size: 14px;
  line-height: 24px;
  width: 100%;
  float: left;
  margin: 25px 0 25px 0;
  color: #fff;
}

.log-det .fm {
  float: left;
  width: 100%;
  padding: 0 30px 0 0;
}

.log-det input {
  border: 1px solid #999;
  color: #fff;
  padding: 10px 10px 10px 30px;
  width: 80%;
  border-radius: 30px 0 0 30px;
  float: left;
  font-size: 14px;
  height: 50px;
}

.log-det .sb-btn {
  float: left;
  width: 20%;
  outline: none;
  background: #3c3ddc;
  transition: all 0.4s ease;
  height: 50px;
  border-radius: 0 30px 30px 0;
  text-align: center;
  transition: all 0.4s ease;
}

.log-det .sb-btn:hover {
  background: #fd7e14;
  transition: all 0.4s ease;
}

.log-det i {
  font-size: 16px;
  color: #fff;
  margin-top: 4px;
}

.foo-deati {
  float: left;
}

.foo-deati h2,
.add-deati h2 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
}

.foo-deati a {
  text-decoration: none;
  display: block;
  font-size: 15px;
  padding: 0 0 15px 0;
  position: relative;
  background: none;
  color: #fff;
  transition: all 0.4s ease;
}

.foo-deati a:hover {
  font-weight: 500;
  padding-left: 20px;
  transition: all 0.4s ease;
  color: #fff;
  padding-left: 18px;
  text-decoration: none;
}

.foo-deati a:before {
  position: absolute;
  content: "";
  left: -1px;
  top: 10px;
  transition: all 0.4s ease;
}

.foo-deati a:hover:before {
  left: 5px;
  transition: all 0.4s ease;
  width: 9px;
  background: #fff;
  height: 1px;
}

.add-deati {
  float: left;
}

.follow-us {
  position: absolute;
  right: 35px;
  bottom: 65px;
}

.follow-us ul {
  margin: 0 auto;
  display: table;
}

.follow-us li {
  margin: 2px 0 2px 9px;
  transform: scale(0);
  transition: all 0.4s ease;
}

.follow-us li.act {
  transition: all 0.4s ease;
  transform: scale(1);
}

.follow-us a {
  display: inline-block;
  background: none;
}

.footer-text span {
  color: #fff;
}

.side-panel-con {
  display: inline-block;
}

side-panel-con ul {
  margin: 0;
  padding: 0;
}

.side-panel-con li {
  float: left;
  list-style-type: none;
  display: block;
  padding: 0px 0 15px 0;
  display: flex;
  width: 100%;
}

.side-panel-con i {
  color: rgb(240 64 55 / 86%);
  margin-right: 15px;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 16px;
  height: 35px;
  width: 35px;
  background: rgba(240, 64, 55, 0.1);
  text-align: center;
  line-height: 34px;
  border-radius: 50%;
}

.side-panel-con li:nth-child(2) i,
.abt-why-booking ul li:nth-child(2) i {
  color: rgb(82 211 253);
  background: rgba(82, 211, 253, 0.1);
}

.side-panel-con li:nth-child(3) i,
.abt-why-booking ul li:nth-child(3) i {
  color: rgb(23 194 152);
  background: rgba(23, 194, 152, 0.1);
}

/*-------------------------------------------------*/
/*  COPY RIGHT
/*-------------------------------------------------*/

.cpy-right-top {
  width: 100%;
  float: left;
  background: #35364c;
}

.cpy-right {
  float: left;
  width: 100%;
  border-top: 1px solid #727070;
  padding: 40px 0 20px 0;
}

.cpy-right h3 {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
}

.cpy-right .c-arrow {
  font-size: 16px;
  font-style: normal;
  display: inline-block;
  position: relative;
  top: 1px;
}

.cpy-right a {
  margin: 0 2px;
  text-decoration: none;
  font-size: 13px;
  background: none;
  color: var(--primary);
  font-weight: 300;
  color: #fff !important;
}

.cpy-right ul li:last-child {
  width: 20%;
}

.privacy {
  float: right;
}

.privacy a {
  text-decoration: none;
  font-size: 13px;
  margin-right: 10px;
}

.footer-follow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 12px;
  position: relative;
  top: 4px;
}

.footer-follow li {
  float: left;
  width: auto;
  padding: 0 7px;
}

.footer-follow i {
  float: left;
  font-size: 13px;
  border: 1px solid #b9b9b9;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-follow i:hover {
  background: #3c3ddc;
  transition: all 0.4s ease;
  color: #fff;
  border: 1px solid #3c3ddc;
}

.cpy {
  float: left;
  padding: 0 6px;
}

.mb h5 {
  margin-bottom: 20px;
  color: #fff;
}

.showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  height: 100%;
}

.showcase ul li img {
  width: 40px;
  filter: invert(1);
}

.showcase ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.showcase span {
  cursor: pointer;
  transition: all 0.5s ease;
  display: inline-block;
}

.showcase .act2 {
  padding: 8px 15px;

  background-size: cover;

  background: #45f882;

  border-radius: 10px;
}

.tab-showcase {
  width: 100%;
  display: flex;
  padding: 40px 0 0 0;
}

.tab-showcase.act4 {
  display: block;
}

.case-img {
  position: relative;
  width: 100%;
  z-index: 1;
}

.case-img:hover img {
  padding: 5px;
  transition: all 0.5s ease;
}

.case-img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #45f882;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
  z-index: -1;
  border-radius: 5px;
}

.case-img:hover::before {
  transition: all 0.5s ease;
  transform: translateX(-10px) translateY(-10px);
}

.case-img img {
  border-radius: 5px;
  transition: all 0.5s ease;
  height: 300px;
  width: 100%;
  object-fit: cover;
}

.case-img:hover .project-one-hover {
  transform: rotateX(0deg) translateX(6px);
  transition: all 0.5s ease;
}

.project-one-hover {
  position: absolute;
  bottom: 0;
  background: #000;
  left: 0;
  padding: 25px 25px 25px 40px;

  width: 90%;
  transform: rotateX(90deg);
  transition: all 0.5s ease;
}

.project-one-hover a {
  position: relative;
  z-index: 1;
  color: #fff;
}

.project-one-hover b {
  font-size: 13px;
  display: block;
  color: #fff;
  position: relative;
  z-index: 1;
}

.work-showcase {
  padding: 100px 0 160px 0;
  width: 100%;
  float: left;
  position: relative;
  overflow: hidden;
}

.tab-showcase-main {
  width: 100%;
  float: left;
  display: none;
}

.tab-showcase-main.act4 {
  display: block;
}

/*-------------------------------------------------*/
/* BLOG-DETAILS
/*-------------------------------------------------*/
.commen-banner {
  float: left;
  width: 100%;
  background: url(../images/banner/2.jpg);
  position: relative;
  padding: 250px 0 150px 22px;
  background-size: cover;
  background-position: center;
}

.commen-banner:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #ff000070;
}

.banner-inner h3 {
  color: #fff;
  font-size: 50px;
}

.popu-news img {
  width: 120px;
  height: 120px;
  border-radius: 15px;
  object-fit: cover;
}

.banner-inner a {
  color: #fff !important;
  margin-right: 10px;
  text-decoration: none;
  display: inline-block;
}

.banner-inner .add {
  text-decoration: underline;
  color: #39f45d;
}

.banner-inner {
  position: relative;
  color: #fff;
}

.blog-deatiles {
  float: left;
  width: 100%;
  padding: 120px 0;
  position: relative;
}

.blg-lhs {
  padding-right: 40px;
}

.blg-rhs {
  padding-left: 30px;
}

.blog-det-inn {
  border: 0;
  padding: 0;
  position: relative;
}

.blog-meta i {
  color: #777;
  font-size: 13px;
  padding: 0 12px;
  border-right: 1px solid #c3afaf;
}

.blog-meta i:last-child {
  border-right: 0;
}

.blog-det-inn h3 {
  padding: 15px 129px 18px 0;
  font-size: 33px;
  letter-spacing: -1px;
  text-transform: inherit;
  line-height: 44px;
}

.blog-det-inn h6 {
  display: inline-block;
  text-transform: capitalize;
}

.blog-det-inn b {
  font-size: 12px;
  font-weight: 400;
  padding: 0 5px;
}

.packages-overview {
  padding: 0;
  overflow: visible;
}

.blg-inn-content {
  float: left;
  width: 100%;
}

.overview-txt {
  padding: 0;
  margin-top: -5px;
}

.blg-inn-content-im {
  position: relative;
}

.blg-inn-content-im img {
  width: 100%;
  border-radius: 3px;
  margin-bottom: 30px;
  object-fit: cover;
  height: 100%;
}

.blg-inn-content p {
  display: inline-block;
  font-size: 14px;
  line-height: 1.8;
  text-transform: capitalize;
  margin: 0;
  padding: 0 0 40px 0;
}

.blg-inn-content .arrows {
  color: #e2e6ff;
  padding: 0 10px;
  position: absolute;
  right: 25px;
  bottom: -30px;
  font-size: 90px;
}

.blg-inn-content .au-name {
  text-transform: capitalize;
  color: #666;
  position: absolute;
  left: 89px;
  bottom: 30px;
  font-size: 15px;
  font-style: normal;
}

.blg-inn-content .au-name:before {
  position: absolute;
  content: "";
  background: #243bbb;
  height: 3px;
  width: 30px;
  bottom: 11px;
  left: -38px;
}

.blg-inn-content .bl-in-test {
  background: #f7f7f7;
  font-size: 18px;
  padding: 45px 50px 70px 50px;
  position: relative;
  font-weight: 600;
  margin: 0 0 35px 0;
  overflow: hidden;
  line-height: 30px;
  border-left: 3px solid #3f51b5;
  border-radius: 5px 0 0 5px;
  color: #000;
}

.blg-inn-auther {
  float: left;
  width: 100%;
  position: relative;
  margin: 20px 0 40px 0;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 40px;
}

.auther-in-im {
  float: left;
  width: 25%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.auther-in-im img {
  width: 100%;
  height: 189px;
  position: relative;
  object-fit: cover;
  float: left;
  border-radius: 5px;
}

.auther-in-txt {
  width: 75%;
  float: left;
  padding: 35px 20px 35px 30px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}

.auther-in-txt h3 {
  display: inline-block;
  letter-spacing: -1px;
  text-transform: capitalize;
  font-size: 22px;
}

.auther-in-txt p {
  font-size: 14px;
  line-height: 26px;
  margin: 10px 0;
}

.auther-in-txt a {
  text-decoration: none;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-block;
  background: none;
}

.auther-in-txt i {
  position: relative;
  font-size: 15px;
  color: #999;
  top: 0;
  left: 0;
  margin: 0 12px;
  transition: all 0.4s ease;
}

.auther-in-txt i:hover {
  color: #007bff;
  transition: all 0.4s ease;
}

.blg-inn-content h4 {
  float: left;
  padding-bottom: 3px;
  width: 100%;
  font-size: 25px;
  letter-spacing: -1px;
  text-transform: inherit;
}

.blg-in-comment {
  float: left;
  width: 100%;
  margin-top: 10px;
  overflow: hidden;
  position: relative;
}

.blg-in-comment h2 {
  padding-bottom: 28px;
  font-size: 22px;
  position: relative;
}

.blg-in-comment ul {
  padding: 0;
  margin: 0;
}

.blg-in-comment li {
  width: 100%;
  margin: 0 0 35px 0;
  float: left;
  position: relative;
}

.blg-in-comment input,
.blg-in-comment textarea {
  float: left;
  width: 100%;
  padding: 22px 20px 22px 52px;
  font-size: 14px;
  font-weight: 400;
  border-radius: 15px;
  transition: all 0.5s ease;
  background: #eee;
}

.blg-in-comment i {
  position: absolute;
  left: 26px;
  top: 24px;
  color: #c6c0c0;
}

.blg-in-comment .blg-in-submit {
  border: 0;
  border-radius: 50px;
  color: #000;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.5s ease;
  padding: 20px 70px;
  width: auto;
  border: none;
  margin-top: 5px;
  background: #45f882;
}

.blg-in-comment .blg-in-submit:hover {
  transition: all 0.6s ease;
  background: #fd7e14;
  border: none;
}

.blg-in-comment ul li:nth-child(1),
.blg-in-comment ul li:nth-child(2) {
  width: 50%;
  float: left;
  padding-right: 35px;
}

.blg-in-comment ul li:nth-child(2) {
  padding-right: 0;
}

.blg-in-comment ul li:nth-child(4) textarea {
  width: 100%;
  padding: 35px 15px 150px 52px;
  transition: all 0.5s ease;
}

.abt-author .authore-media {
  position: relative;
  right: 0;
  bottom: 0;
  margin-top: 5px;
}

.top {
  top: 38px !important;
}

.auther-comment {
  float: left;
  width: 100%;
  text-transform: capitalize;
  padding: 0 0 25px 0;
}

.auther-comment .au-comm-box:last-child {
  border: 0;
}

.auther-comm-1 {
  padding-top: 60px;
}

.auther-comment h2 {
  display: inline-block;
  letter-spacing: -1px;
  font-size: 25px;
  font-weight: 500;
}

.au-comm-box {
  float: left;
  padding: 30px 0 30px 0;
  border-bottom: 1px solid #eee9e9;
  display: flex;
  align-items: center;
}

.au-img {
  float: left;
}

.au-img img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.au-comm-text {
  float: left;
  width: 82%;
  padding: 8px 0 0 20px;
  position: relative;
}

.au-comm-text h3 {
  font-size: 18px;
  line-height: 28px;
  display: inline-block;
  font-weight: 500;
}

.au-comm-text span {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  /* color: #666; */
  padding: 3px 0;
  display: inline-block;
  width: 100%;
}

.au-comm-text p {
  margin: 0;
  font-size: 14px;
  float: left;
}

.au-comm-text i {
  position: absolute;
  right: 0;
  top: 7px;
  display: inline-block;
  padding: 6px;
  border-radius: 50px;
  color: #645555;
  font-size: 13px;
}

.au-comm-text b {
  font-size: 13px;
  margin-left: 8px;
  display: inline-block;
  font-weight: 400;
}

.blg-search {
  float: left;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.blg-search input {
  background: #f7f7f7;
  border-radius: 5px 0 0 5px;
  padding: 16px 40px 10px 25px;
  font-size: 14px;
  border: 1px solid #f3e8e8;
  float: left;
}

.blg-search .blg-sear-btn {
  float: left;
  background: #3c3ddc;
  border-radius: 0 5px 5px 0;
  outline: none;
  width: 70px;
  height: 49px;
}

.blg-search .blg-sear-btn i {
  position: relative;
  left: 0;
  margin-right: 0;
  line-height: 46px;
  color: #fff;
}

.popu-news {
  float: left;
  width: 100%;
  margin-top: 45px;
  position: relative;
}

.blg-headline {
  padding: 0;
}

.m-a-top {
  margin-top: 10px;
}

.latest-news {
  margin-top: 0;
}

.comm-head {
  font-size: 16px;
  letter-spacing: -1px;
  display: inline-block;
  margin: 0;
  position: relative;
  width: 100%;
}

.tags-head {
  padding-bottom: 10px;
}

.popu-news ul {
  padding: 0;
  margin: 0;
}

.popu-news li {
  width: 100%;
  float: left;
  padding: 20px 0;
  border-bottom: 1px solid #e5d5d5;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
}

.popu-news li:hover .blg-post-content h3 {
  color: #3c3ddc;
  transition: all 0.5s ease;
}

.popu-news ul li:nth-child(3) {
  border: 0;
}

.blg-post-content {
  padding: 0 0 0 22px;
}

.blg-post-content a {
  color: #8a8c93;
  font-size: 12px;
  text-decoration: none;
  float: left;
  background: none;
  font-weight: 500;
  padding-bottom: 7px;
  width: 100%;
}

.blg-post-content h3 {
  font-size: 15px;
  line-height: 22px;
  transition: all 0.5s ease;
  font-weight: 500;
}

.blg-post-content span {
  margin-left: 0;
  font-size: 12px;
  color: #8a8c93;
}

.blg-post-content i {
  margin: 0 12px 0 0;
}

.Categories,
.help {
  float: left;
  width: 100%;

  margin: 35px 0 0 0;
  padding: 35px 35px 20px 35px;
  border: 1px solid;
}

.help {
  position: sticky;
  background: url(../images/places/9.jpg) no-repeat;
  background-size: cover;
  border-radius: 5px;
  color: #fff;
  padding: 35px 35px 15px 35px;
  margin-top: 40px;
  top: 65px;
}

.Categories ul {
  padding: 0;
  margin: 0;
}

.Categories li {
  float: left;
  width: 100%;
  position: relative;
  transition: all 0.4s ease;
  border-bottom: 1px solid #e7d7d7;
  padding: 15px 0;
}

.Categories li:hover a {
  border-bottom: 1px solid #3c3ddc;
  transition: all 0.4s ease;
}

.Categories li:hover i {
  transition: all 0.4s ease;
  background: #3c3ddc;
  color: #fff;
}

.Categories ul li:last-child {
  border: 0;
}

.Categories a {
  font-size: 15px;
  text-decoration: none;
  transition: all 0.4s ease;
  text-transform: capitalize;
  z-index: 2;
  top: 30px;
  left: 20px;
  background: none;
  float: left;
  color: #fff;
}

.Categories i {
  transition: all 0.4s ease;
  font-size: 14px;
  font-style: normal;
  float: right;
  background: #fff;
  width: 22px;
  height: 22px;
  text-align: center;
  border-radius: 50%;
  color: #000;
}

.m-b {
  margin-bottom: 30px;
}

.tags {
  float: left;
  width: 100%;
  margin-top: 55px;
}

.tags a {
  color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  text-decoration: none;
  text-transform: capitalize;
  margin: 10px 11px 2px -4px;
  display: inline-block;
  font-size: 13px;
  padding: 3px 8px;
  transition: all 0.5s ease;
  background: none;
}

.tags a:hover {
  background: #3c3ddc;
  transition: all 0.5s ease;
  color: #fff;
}

.tags-share {
  display: flex;
  width: 100%;
  text-transform: capitalize;
  padding: 0 0 40px 0;
  border-bottom: 1px solid #eee;
}

.tag-lhs {
  flex-basis: 70%;
}

.tag-lhs span,
.tag-share span {
  font-weight: 500;
}

.tag-lhs .point {
  padding: 3px 15px;
  background: #f5f5f5;
  margin: 0 8px;
  color: #000;
  font-weight: 500;
  border-radius: 3px;
  text-decoration: none;
}

.tag-lhs .point:hover {
  background: #3c3ddc;
  color: #fff;
}

.tag-share {
  display: flex;
  align-items: flex-end;
  justify-content: end;
  flex-basis: 30%;
}

.tag-share a {
  font-size: 19px;
  color: #afb2bb;
  margin: 0 8px;
  background: none;
}

.tag-share a :hover {
  color: #3c3ddc;
}

.pointer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

/*-------------------------------------------------*/
/* FAQ  
/*-------------------------------------------------*/

.faq {
  float: left;
  width: 100%;
  padding-bottom: 100px;
  position: relative;
}

.faq-rhs {
  float: left;
  width: 100%;
  border-radius: 8px;
  text-transform: capitalize;
  position: relative;
}

.faq-rhs:before {
  background: #00bcd4;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  left: 84%;
  bottom: -99px;
  animation: move 10s infinite linear;
}

.faq-rhs:after {
  top: -100px;
  background: none;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  z-index: 0;
  left: 28em;
  animation: full 5.8s infinite linear;
}

.faq-rhs ul {
  padding: 0;
  margin: 0;
}

.faq-rhs ul li {
  margin: 4px 0 12px 0;
  padding: 20px;
  float: left;
  width: 100%;
  border-bottom: 1px solid #f1e8e8;
  position: relative;
  background: rgb(245 250 250 / 98%);
  border-left: 3px solid #00bcd4;
  box-shadow: 0 3px 30px 0 #f1ecec36;
  transition: all 0.3s ease;
  z-index: 1;
  text-align: left;
}

.faq-rhs ul li:hover {
  box-shadow: 0px 8px 40px 0px rgb(0 48 31 / 10%);
  background: #fff;
  transition: all 0.3s ease;
}

.faq-rhs ul li:hover h3 {
  transition: all 0.6s ease;
  color: #ff5722;
}

.faq-rhs ul li h3 {
  font-size: 19px;
  cursor: pointer;
  line-height: 35px;
  padding-right: 10px;
  transition: all 0.5s ease;
  position: relative;
  color: #000;
  margin: 0;
}

.faq-rhs li h3:before {
  width: 4px;
  height: 20px;
  position: absolute;
  content: "";
  right: 18px;
  top: 10px;
  background: #3f51b5;
}

.faq-rhs ul li h3:after {
  position: absolute;
  content: "";
  right: 10px;
  top: 18px;
  background: #3f51b5;
  width: 20px;
  height: 4px;
}

.faq-rhs ul li h3.act:before {
  display: none;
}

.faq-rhs p {
  font-size: 15px;
  font-weight: 400;
  color: #777;
  display: none;
  line-height: 30px;
  padding-top: 5px;
}

.faq-rhs ul li:last-child {
  border: none;
  margin-bottom: 0;
  border-left: 3px solid #00bcd4;
}

.faq-img {
  float: left;
  width: 100%;
  margin-top: 95px;
}

.faq-img img {
  width: 100%;
  height: 100%;
  position: relative;
}

.faq-img:before {
  position: absolute;
  content: "";
  bottom: -30px;
  right: auto;
  background: url(../images/icons/c1.png);
  height: 200px;
  width: 200px;
  background-size: 16px;
  border-radius: 50%;
  animation: move 8s infinite linear;
}

.faq .comm-heading {
  margin: 0 0 -51px 0;
}

.faq::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  background: url(../images/background/2.png);
  background-size: cover;
  width: 100%;
  height: 267px;
  right: 0;
}

/*-------------------------------------------------*/
/* collect wallet 
/*-------------------------------------------------*/

.collect-wallet {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
  overflow-y: auto;
  padding-top: 200px;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 99;
  border-radius: 10px;
  transform: scaley(0);
  transition: all 0.5s ease;
}
.collect-wallet.act {
  transform: scaley(1);
  transition: all 0.5s ease;
}
.collect-inner {
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 50px;
  width: 500px;
  overflow-y: auto;
  border-radius: 10px;
  position: relative;
}
.collect-inner i {
  position: absolute;
  top: 40px;
  right: 40px;
  color: red;
  display: inline-block;
  font-size: 23px;
  cursor: pointer;
}

.collect-inner li {
  margin: 13px 0;
}
.collect-inner div {
  position: relative;
  background: rgba(0, 0, 0, 0.05);
  margin: 15px 0;
  padding: 15px;
  display: flex;
  align-items: center;
}

.input1 {
  width: 100%;
  border: 1px solid;
  padding: 10px;
  border: 1px solid #000;
}
.btn-submit {
  background: red;
  padding: 10px 30px;
  text-align: center;
  width: 100%;
}

.show-itmes {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #000;
}

.inner-collections img {
  width: 30px;
  height: 30px;
  margin: 0 0 0 -17px;
}
.collect-inner h3 {
  color: #000;
  text-align: center;
}

.input1::placeholder {
  color: #fff;
}

.inner-collections label {
  margin: 0 0 0 14px;
  font-weight: 500;
}
.bg-none {
  background: none !important;
  padding: 0 !important;
}
