html {
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  overflow-x: hidden !important;
}

:root {
  --thm-font: "Playfair Display", serif;
  --thm-color: #0322cb;
  --thm-color-sec: #ffca0a;
  --thm-black: #18191c;
  --thm-text: #686a6f;
  --default-color: #fff;
  --font-theme: "Poppins", sans-serif;
}

li,
ul {
  list-style: none;
}

a:active,
a:focus,
a:hover,
a:visited,
button:active {
  text-decoration: none;
  outline: 0;
  color: var(--thm-color-sec);
}

a {
  text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--thm-font);
  margin: 0;
  padding: 0;
}

h2 {
  line-height: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 40px;
}

p {
  font-family: var(--font-theme);
  margin: 0;
  padding: 0;
  line-height: 1.8rem;
  font-size: 1rem;
}

.section {
  padding: 100px 0;
}

.error {
  color: red !important;
}

.thm-btn-primary {
  position: relative;
  text-align: center;
  background: #c1ef00;
  border-color: #c1ef00;
  color: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  font-weight: 700;
  text-transform: uppercase;

  ::after {
    content: "";
    width: 27px;
    height: 24px;
    position: absolute;
    right: 12px;
    background: url(../images/ar_black.png) no-repeat scroll right center;
    margin: auto;
    bottom: 0;
    top: 0;
  }
}

.thm-btn-primary:hover .btn-curve {
  opacity: 1;
  right: 0;
  width: 100%;
  -webkit-transform: skewX(0);
  transform: skewX(0);
}

.thm-btn-primary:hover {
  color: var(--default-color);
}

.thm-btn-primary .btn-curve {
  position: absolute;
  right: -15px;
  top: 0;
  width: 26px;
  height: 100%;
  background: var(--thm-color-sec);
  opacity: 0.2;
  z-index: 0;
  -webkit-transform: skewX(-22deg);
  transform: skewX(-22deg);
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.thm-btn-primary .btn-title {
  position: relative;
  z-index: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: block;
  line-height: 30px;
  padding: 0.8em 2em;
  letter-spacing: 0.1em;
  color: var(--thm-black);
  letter-spacing: 0.1em;
  font-size: 18px;
  font-family: var(--thm-font);
}

.hero-btns {
  gap: 20px;
}

.theme_btn2 {
  position: relative;
  padding: 1.3em 2em;
  outline: 0;
  border: 1.7px solid var(--default-color);
  background: var(--thm-black);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 15px;
  overflow: hidden;
  transition: 0.2s;
  border-radius: 15px;
  cursor: pointer;
  font-weight: 700;
  display: block;
  font-family: var(--thm-font);
}

.theme_btn2:hover {
  box-shadow: 0 0 10px var(--thm-color-sec), 0 0 25px #b39f30, 0 0 50px #f5e021;
  transition-delay: 0.6s;
  color: #fff;
}

.theme_btn2 span {
  position: absolute;
}

.theme_btn2 span:first-child {
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e99b34);
}

.theme_btn2:hover span:first-child {
  left: 100%;
  transition: 0.7s;
}

.theme_btn2 span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c47c1e);
}

.theme_btn2:hover span:nth-child(3) {
  right: 100%;
  transition: 0.7s 0.35s;
}

.theme_btn2 span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #ffb14a);
}

.theme_btn2:hover span:nth-child(2) {
  top: 100%;
  transition: 0.7s 0.17s;
}

.theme_btn2 span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #945809);
}

.theme_btn2:hover span:nth-child(4) {
  bottom: 100%;
  transition: 0.7s 0.52s;
}

.theme_btn2:active {
  background: #af7200;
  background: linear-gradient(to top right, #ffb14a, #945809);
  color: #fdb226;
  box-shadow: 0 0 8px #ffbb00, 0 0 8px #ffa600, 0 0 8px #ffae00;
  transition: 0.1s;
}

.theme_btn2:active
  span:first-child
  span:nth-child(2)
  span:nth-child(2)
  span:nth-child(2) {
  transition: none;
  transition-delay: none;
}

header {
  .top-bar {
    color: var(--default-color);
    position: relative;
    padding: 10px 0;
    width: 100%;
  }

  .top-bar:before {
    content: "";
    position: absolute;
    left: 0;
    width: 90%;
    height: 100%;
    background: #0322cb;
    top: 0;
    right: 0;
    margin: 0 auto;
    border-radius: 0 0 80px 80px;
  }

  .social-top {
    position: relative;
    z-index: 1;
  }

  i {
    color: var(--default-color);
    margin-right: 10px;
    font-size: 18px;
    transition: 0.3s;
  }

  .contact-top {
    position: relative;
    z-index: 1;
    color: var(--default-color);

    i {
      color: var(--thm-color-sec);
      margin-right: 10px;
      font-size: 18px;
      transition: 0.3s;
    }

    a {
      color: var(--default-color);
      transition: 0.3s;

      &:hover {
        color: var(--thm-color-sec);
      }
    }
  }
}

.banner-section {
  justify-content: center;
  padding: 8em 0;
  width: 100%;
  background: url("../images/banner.jpg") no-repeat scroll right center #000;
  background-size: cover;
  text-align: center;
  position: relative;

  .banner-title {
    font-size: 77px;
    color: #fff;
    margin: 20px 0 40px 0;
    line-height: 82px;
    font-weight: 500;
  }

  .banner-content {
    text-align: center;
    color: var(--default-color);
  }

  .banner-subtitle {
    color: #c1ef00;
    font-size: 34px;
    font-style: italic;
  }

  .banner-text {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: -0.2px;
    line-height: 42px;
  }

  ul {
    margin: 0 30px;
  }
}

.main-hero {
  &:after {
    content: "";
    background: url("../images/banner_thumb.png") no-repeat scroll center top;
    position: absolute;
    width: 395px;
    height: 503px;
    right: 10px;
    bottom: -67px;
    z-index: 1;
  }
}

.banner-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;

  li {
    text-align: center;
    display: flex;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    font-family: "Merriweather", serif;
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
  }

  li::before {
    content: "";
    width: 20px;
    height: 20px;
    background: url(../images/check-mark.png) no-repeat scroll left center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}

.about-hero {
  background: url(/assets/images/banner.jpg) no-repeat;
  background-size: cover;
  color: white;
  min-height: 600px;
}

.about-section {
  background: #eceff3;
  padding-bottom: 0;
  padding-top: 120px;

  .about-icon-text h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #222;
  }

  .about-media img {
    border-radius: 12px;
    max-width: 100%;
  }

  .about-content {
    p {
      font-size: 18px;
      color: #343434;
      line-height: 31px;
    }

    .thm-btn-primary {
      background: var(--thm-black);
    }

    .thm-btn-primary .btn-title {
      color: var(--default-color);
    }

    .thm-btn-primary {
      ::after {
        filter: brightness(100) invert(1);
      }
    }
  }

  .about-icon-text {
    position: absolute;
    width: 184px;
    text-align: center;
    background: var(--thm-color-sec);
    padding: 50px 0;
    border-radius: 90px;
    left: -30px;
    bottom: 70px;
    box-shadow: 0 0 40px #00000063;
    flex-direction: column;

    h4 {
      font-size: 25px;
      text-transform: capitalize;
      margin-top: 5px;
      margin-bottom: 0;
    }
  }
}

h2 {
  line-height: 1.3;
  font-size: 50px;
  color: #181839;
  position: relative;
  font-weight: 600;
  padding-bottom: 20px;
  margin-bottom: 30px;
  background: url(../images/bar.png) no-repeat scroll left bottom;
  letter-spacing: -0.2px;
}

h3 {
  font-size: 26px;
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.serv_item {
  font-size: 18px;
  padding-right: 30px;
}

.service-card {
  h3:before {
    content: "";
    position: absolute;
    left: -20px;
    width: 70px;
    height: 70px;
    background: #c1ef00;
    border-radius: 50%;
    z-index: -1;
    top: -6px;
  }
}

.services-image {
  .rounded {
    border-radius: 0 100px 100px !important;
  }
}

.item-2 h3:before {
  background: #c8c7fe;
}

.item-3 h3:before {
  background: #f8ddba;
}

.item-4 h3:before {
  background: #acf0ff;
}

.item-5 h3:before {
  background: var(--thm-color-sec);
}

.main-cta {
  padding: 80px 0;
  clear: both;
  position: relative;

  &:before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 80%;
    background: url(../images/servbg.jpg) no-repeat scroll center top #121b2c;
    bottom: 0;
    top: 0;
    margin: auto;
    z-index: -0;
    background-size: cover;
  }

  .service-card-blue {
    min-height: 550px;
    background: #0c3767;
    border-radius: 50px;
    padding: 50px;
    width: 100%;
    margin-top: 30px;
    background-size: cover;

    h4 {
      margin-bottom: 20px;
      position: relative;
      margin-top: 0;
      color: var(--thm-color-sec);
      font-size: 32px;
      font-weight: bold;
    }

    p {
      font-size: 18px;
      color: var(--default-color);
    }
  }

  .box-purple {
    background: #513c77;
  }
}

.custom-section {
  position: relative;
  z-index: 1;

  .book-title {
    margin-top: 30px;

    p {
      font-size: 24px;
      color: #fff;
      max-width: 100%;
    }
  }

  .cta-box {
    background: url("../images/cta-bg.png") no-repeat scroll center top;
    padding: 50px 50px 80px 100px;
    width: 100%;
    background-size: contain;
    min-height: 442px;

    h2 {
      font-size: 60px;
      line-height: 60px;
      font-weight: bold;
      color: #010b3e;
      margin-bottom: 20px;
    }

    p {
      font-size: 18px;
      max-width: 60%;
      font-weight: 500;
      color: #010b3e;
      position: relative;
      line-height: 34px;
    }

    strong {
      font-size: 38px;
      text-transform: uppercase;
      font-family: "Poppins", sans-serif;
      background: #fff;
      padding: 0px 7px;
      letter-spacing: normal;
      position: absolute;
      right: 50px;
      line-height: 41px;
      font-weight: 500;
      box-shadow: 8px 8px 0 #00000038;
    }
  }

  .thm-btn-primary {
    background: var(--thm-black);
  }

  .thm-btn-primary .btn-title {
    color: var(--default-color);
  }

  .thm-btn-primary {
    ::after {
      filter: brightness(100) invert(1);
    }
  }

  .theme_btn2 {
    background: transparent;
    color: var(--thm-black);
    border: 1.7px solid var(--thm-black);
  }
}

.our-work {
  .circle-genre {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    list-style: none;
    padding: 0;

    ::before {
      content: "";
      position: absolute;
      left: 0;
      width: 50%;
      height: 65%;
      background: var(--thm-color-sec);
      z-index: -1;
      right: 0;
      margin: auto;
      bottom: 0;
      top: 0;
    }
  }

  .circle-item {
    flex: 1 1 45%;
    display: flex;
    justify-content: center;
  }

  .circle-bg {
    border: 10px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 282px;
    height: 280px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    text-align: center;
    font-weight: bold;
    transition: 0.3s;
    font-size: 30px;
    font-family: "Playfair Display", serif;
  }

  .circle-bg:hover {
    background: #8066b3;
    color: #fff;
  }

  .auto-bio {
    background: linear-gradient(
      45deg,
      rgba(83, 162, 185, 1) 0%,
      rgba(25, 39, 60, 1) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#53a2b9', endColorstr='#19273c', GradientType=1);
    padding: 60px 60px 20px;
    width: 100%;
    border-radius: 0 80px 80px;

    h3 {
      color: var(--thm-color-sec);
      font-size: 43px;
    }

    p {
      color: #fff;
      font-size: 22px;
      max-width: 82%;
      margin-bottom: 20px;
    }
  }

  .head-style {
    p {
      font-size: 18px;
      max-width: 90%;
      margin-bottom: 40px;
      margin-top: 30px;
    }
  }
}

.process-section {
  background: url(../images/processbg.jpg) no-repeat scroll center top #f3f5f8;
  text-align: center;
  background-size: cover;

  h2 {
    background-position: center bottom;
  }

  .process-item {
    position: relative;

    h3 {
      font-size: 72px;
      font-weight: bold;
      text-align: initial;
      line-height: 82px;
      color: #c1ef00;
      font-family: var(--thm-font);
    }

    &:after {
      content: "";
      position: absolute;
      right: -40px;
      width: 78px;
      height: 27px;
      background: url(../images/arrowsdn.png) no-repeat scroll right top;
      top: 70px;
      z-index: 1;
    }
  }
}

.portfolio-section {
  background: url(../images/pat-left.png) no-repeat scroll left bottom,
    url(../images/pat-right.png) no-repeat scroll right top #f3e5d0;
  padding-bottom: 0;
  padding-top: 120px;

  .container:before {
    content: "";
    position: absolute;
    left: 0%;
    width: 100%;
    height: 100%;
    background: #f8f3ed;
    top: 0;
    border-radius: 80px;
    z-index: 0;
  }

  .book-item {
    img {
      width: 100%;
    }
  }

  .book-stand {
    position: relative;
    width: 115%;
    left: -7%;
    margin: 0 auto;
  }

  .bookSlider-wrapper {
    position: relative;

    .swiper-pagination {
      bottom: -30px;
    }

    .swiper-button-prev {
      left: -60px;
    }

    .swiper-button-next {
      right: -60px;
    }

    .swiper-button-next,
    .swiper-button-prev {
      color: var(--thm-black) !important;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: 2px solid;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
      font-weight: 800;
      font-size: 22px;
    }

    .swiper-pagination-bullet-active {
      background: var(--thm-color-sec);
    }
  }

  .count-item {
    margin-top: 20px;
    border-radius: 40px;
    border: 2px solid #756752;
    padding: 30px 30px;
    background: linear-gradient(
      45deg,
      rgba(255, 255, 255, 1) 35%,
      rgba(250, 183, 170, 1) 100%
    );

    h4 {
      font-size: 68px;
      color: #46346a;
    }
  }

  .c2 {
    background: linear-gradient(
      45deg,
      rgba(255, 255, 255, 1) 35%,
      rgba(228, 244, 173, 1) 100%
    );
  }

  .c3 {
    background: linear-gradient(
      45deg,
      rgba(255, 255, 255, 1) 35%,
      rgba(205, 187, 248, 1) 100%
    );
  }

  .c4 {
    background: linear-gradient(
      45deg,
      rgba(255, 255, 255, 1) 35%,
      rgba(254, 227, 105, 1) 100%
    );
  }
}

.author-story {
  position: relative;
  color: var(--default-color);
  background: url(../images/bluebg.jpg) no-repeat scroll right center #151f34;
  background-size: cover;
  padding: 80px 0;

  &:before {
    content: "";
    position: absolute;
    left: 30px;
    width: 188px;
    height: 248px;
    background: url(../images/icon-pin.png) no-repeat scroll left top;
    bottom: 70px;
  }
}

.profit-section {
  position: relative;
  background: url(../images/cmp_right.png) no-repeat scroll right top;
  padding: 100px 0 0;

  &:before {
    content: "";
    background: url(../images/aud_shd.png) no-repeat scroll left top;
    background-size: contain;
    width: 295px;
    height: 295px;
    position: absolute;
    top: 40%;
    left: 11%;
  }

  .profit-blue {
    background: linear-gradient(
      135deg,
      rgba(10, 24, 123, 1) 1%,
      rgba(6, 16, 83, 1) 100%
    );
    border-radius: 30px;
    padding: 64px 60px;
    width: 100%;
    height: 98%;

    h4 {
      font-size: 30px;
      color: var(--default-color);
      margin-bottom: 0;
      font-family: "Playfair Display", serif;
      line-height: 47px;

      span {
        color: var(--thm-color-sec);
      }
    }
  }

  .profit-logos {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;

    .profit-logo {
      padding: 40px;
      width: 100%;
      position: relative;
      height: 100%;
      border-radius: 30px;
      overflow: hidden;
      max-width: 32.33%;
      background-color: white !important;
      border: 1px solid #ddd;
      text-align: center;
      min-height: 175px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 10px;
    }
  }

  .form-secret-box {
    color: var(--default-color);
    margin-top: 50px;
    background: url(../images/canform.jpg) no-repeat scroll left top #29296e;
    padding: 40px 60px;
    border-radius: 50px;
    width: 100%;
    box-shadow: 20px 20px 0px #c3f000;
    margin-bottom: -80px;
    z-index: 2;
    position: relative;

    h2 {
      font-size: 60px;
      background: url(../images/bar.png) no-repeat scroll center bottom;
      padding-bottom: 0px;
      margin-bottom: 0px;
    }
  }

  .form-wrapper {
    h2 {
      display: none;
    }

    .form-control {
      height: 50px;
      border-radius: 30px;
      margin-bottom: 20px;
      font-size: 15px;
      padding-left: 20px;
    }

    .leadform {
      display: flex;
      gap: 20px;
      flex-direction: column;

      .form-inputs {
        flex-direction: row;
        display: flex;
        justify-content: space-between;
      }

      .cta-form {
        width: 33%;
      }

      .form-msg {
        display: flex;
        justify-content: space-between;

        .cta-msg {
          width: 69%;
        }

        .btn-for-cta {
          width: 30% !important;
          height: 50px;
          border-radius: 30px;
          background: #c3f000;
          padding: 0 !important;
        }

        .thm-btn-primary .btn-title {
          padding: 0 0;
        }
      }
    }
  }
}

.our-faqs {
  background: linear-gradient(
    to bottom,
    rgba(1, 3, 16, 1) 0%,
    rgba(5, 27, 165, 1) 100%
  );
  margin-bottom: 20px;
  z-index: 1;
  padding-bottom: 0;
  padding-top: 150px;
  box-shadow: 0px 20px 0 #3147d3;

  .swiper-slide {
    padding-top: 30px;
    margin-top: 40px;
    background: url(../images/coma.png) no-repeat scroll left top;
    color: var(--default-color);

    h6 {
      color: var(--thm-color-sec);
      font-size: 23px;
      font-family: var(--font-theme);
    }
  }

  .accordion {
    background: #333e53;
    padding: 50px;
    width: 100%;
    border-radius: 0 50px 50px;
    margin-bottom: -90px;
    margin-top: 40px;

    h2 {
      background: transparent;
      padding-bottom: 0;
      margin-bottom: 0;
    }
  }

  .accordion-header {
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0.03);
  }

  .accordion-button:not(.collapsed),
  .accordion-button {
    color: var(--default-color);
    background-color: #151f34;
    line-height: normal;
    padding: 20px;

    h5 {
      font-size: 15px;
    }
  }

  .accordion-body {
    padding: 1.25rem;
    background: #151f34;
    font-size: 14px;
  }

  .accordion-button:focus {
    box-shadow: var(--thm-color);
  }

  .accordion-flush > .accordion-item > .accordion-collapse {
    padding: 1.25rem;
    background: #151f34;
    border-radius: 30px;
    border-radius: 0;
    color: var(--default-color);
  }

  .swiper-button-prev {
    right: 60px;
  }

  .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    left: auto;
  }

  .swiper-button-next,
  .swiper-button-prev {
    padding: 20px;
    border: 1px solid var(--thm-color-sec);
    border-radius: 50%;
    top: 25px;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 15px;
    color: var(--thm-color-sec);
  }
}

.before-footer {
  background: url(../images/creambg.jpg) no-repeat scroll right top #faf5ed;

  h2 {
    font-size: 40px;
  }

  .form-control {
    background: #fff;
    color: #767676;
    font-size: 14px;
    height: 44px;
    margin-bottom: 11px;
  }

  li {
    margin-bottom: 10px;
    padding-left: 40px;
    position: relative;

    &:before {
      content: "";
      position: absolute;
      left: 0;
      width: 25px;
      height: 23px;
      background: url(../images/check-mark-gr.png) no-repeat scroll left top;
    }
  }

  .form-inputs {
    display: flex;
    justify-content: space-between;
  }
}

.copy-rights {
  background: #53a2b9;

  p {
    font-size: 12px;
    color: var(--default-color);
  }

  a {
    font-size: 13px;
    color: var(--default-color);
  }
}

.disclaimer {
  background-color: var(--thm-black);
  h3 {
    font-size: 18px;
    color: var(--thm-color-sec);
    font-family: var(--thm-font);
  }
  p {
    font-size: 12px;
    color: var(--default-color);
    line-height: 20px;
  }
}

.generic-modal {
  display: none;
  background: url(/assets/images/popup-bg.png) no-repeat transparent;
  width: 800px;
  height: 70%;
  align-items: center;
  .rates {
    padding: 4px 0px;
    font-weight: normal;
    margin: 8px;
    background-color: #0f9982;
    border-radius: 30px;
    text-align: center;
  }
  .f-button.is-close-btn {
	position: absolute;
	top: 10px !important;
	right: 30px !important;
	background-color: #f53230;
	color: white;
	border-radius: 50%;
  }
  i {
    display: none;
  }
  .form-wrapper {
    h2 {
      display: none !important;
    }
  }
  .form-control {
    font-size: 14px;
    margin-bottom: 10px;
  }
  textarea {
	min-height: 40px !important;
  }
  .thm-btn-primary {
	border-radius: 30px;
	.btn-title {
		padding: 10px 10px !important;
		line-height: normal;
		font-size: 14px;
	}
    ::after {
      display: none !important;
      background: none !important;
    }
  }
}
