/*----------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
html {
  height: 100%;
}

a {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  color: #000;
}
a:hover, a:focus {
  text-decoration: none;
  outline: none;
  color: #0000fe;
}

body {
  line-height: 26px;
  font-size: 16px;
  height: 100%;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #000000;
}

:focus {
  outline: none;
}

.row {
  --bs-gutter-x: 30px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-weight: 700;
}

h1 a,
h2 a,
h3 > a,
h4 a,
h5 a,
h6 a {
  color: #000;
}

video {
  max-width: 100%;
}

table tr td p:last-child {
  margin-bottom: 0;
}

pre[class*=language-] > code {
  border-left: 5px solid brand_color_rgba(0.8);
}

.form-check {
  position: relative;
  display: block;
}

/** === Scrollbar === **/
::-webkit-scrollbar {
  width: 10px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #fff;
}

::-webkit-scrollbar-thumb {
  background: #999999;
  border-radius: 30px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/** === Predefined Global Classes === **/
.bold {
  font-weight: 700;
}

.medium {
  font-weight: 500;
}

.regular {
  font-weight: 400;
}

button:focus {
  outline: none;
}

/** === List style === **/
ul.list-style {
  margin-bottom: 2rem;
}

ul.list-style li {
  margin-bottom: 0.5rem;
  list-style-type: circle;
}

ul.list-style li:last-child {
  margin-bottom: 0;
}

/*----------------------------------------*/
/*   Back To Top Button CSS
/*----------------------------------------*/
#back-to-top {
  display: inline-block;
  background: #0000fe;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50%;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

#back-to-top::after {
  content: "2";
  font-family: eleganticons;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}

#back-to-top:hover {
  cursor: pointer;
}

#back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.slick-dots li.slick-active button {
  background-color: #0000fe;
  height: 18px;
  width: 18px;
}
.slick-dots li.slick-active button::after {
  transform: scale(1);
}
.slick-dots li button {
  width: 15px;
  height: 15px;
  padding: 0px;
  background-color: rgba(0, 0, 254, 0.3);
  border-radius: 50%;
  position: relative;
  transition: all 0.2s ease-in-out;
}
.slick-dots li button::before {
  display: none;
}
.slick-dots li button::after {
  content: "";
  height: 28px;
  width: 28px;
  border-radius: 50%;
  top: -6px;
  left: -6px;
  transform: scale(0);
  position: absolute;
  z-index: 1;
  border: 1px solid #0000fe;
  transition: all 0.2s ease-in-out;
}

/*---------------------------------------------------- */
/*----------------------------------------------------*/
/*================= header area css ===============*/
.navbar {
  position: fixed;
  border: 0;
  border-radius: 0;
  padding: 14px 0;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 10;
  background-color: transparent;
  transition: all 0.2s linear;
  background-color: #0000fe;
}
.navbar.sticky {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  top: 0;
}

.menu > .nav-item {
  padding-bottom: 34px;
  padding-top: 34px;
  transition: all 0.3s linear;
}
.menu > .nav-item.header_logo {
  width: 132px;
  position: relative;
}
@media (max-width: 991px) {
  .menu > .nav-item.header_logo {
    display: none;
  }
}
.menu > .nav-item.header_logo .navbar-brand {
  position: absolute;
  top: -16px;
  left: 0;
}
.menu > .nav-item > .nav-link {
  font-family: "Open Sans";
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  color: #f4f4f4;
  padding: 0;
  position: relative;
  line-height: 20px;
  text-transform: uppercase;
}
.menu > .nav-item > .nav-link:after {
  display: none;
}
.menu > .nav-item > .nav-link::before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -6px;
  background: #fff;
  transition: width 0.2s linear;
}
@media (max-width: 991px) {
  .menu > .nav-item > .nav-link::before {
    display: none;
  }
}
.menu > .nav-item.active .nav-link:before {
  transform: scaleX(1);
  opacity: 1;
  width: 100%;
}
.menu > .nav-item:hover .nav-link:before {
  transform: scaleX(1);
  opacity: 1;
  width: 100%;
}
.menu > .nav-item + .nav-item {
  margin-left: 100px;
}
.menu .mobile_dropdown_icon {
  display: none;
}

.header-sidebar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 45px 0;
  background-color: #eff4e7;
  justify-content: end;
  transform: rotate(-90deg);
  position: absolute;
  left: 60px;
  top: calc(100vh + 60px);
  width: 100vh;
  transform-origin: left;
}
.header-sidebar .social-link {
  display: flex;
  font-size: 18px;
  font-weight: 400;
  line-height: 21.56px;
  letter-spacing: 0.04em;
  gap: 20px;
  align-items: center;
  color: #0000fe;
  position: relative;
}
.header-sidebar .contact-no {
  font-size: 18px;
  font-weight: 700;
  line-height: 21.56px;
  letter-spacing: 0.04em;
  color: #0000fe;
  border-left: 1px solid #b1b083;
  padding: 5px 0;
  padding-left: 20px;
}

.navbar-toggler {
  padding-left: 0;
  outline: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}

.hamburger {
  height: 100%;
  width: 100%;
  display: block;
}
.hamburger span {
  width: 0%;
  height: 2px;
  position: relative;
  top: 0;
  left: 0;
  margin: 4px 0;
  display: block;
  background: #fff;
  border-radius: 3px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.hamburger span:nth-child(1) {
  transition-delay: 0s;
}
.hamburger span:nth-child(2) {
  transition-delay: 0.125s;
}
.hamburger span:nth-child(3) {
  transition-delay: 0.2s;
}

.menu_toggle {
  width: 22px;
  height: 22px;
  position: relative;
  cursor: pointer;
  display: block;
}
.menu_toggle .hamburger {
  position: absolute;
}
.menu_toggle .hamburger-cross {
  position: absolute;
  height: 100%;
  width: 100%;
  transform: rotate(45deg);
  display: block;
}
.menu_toggle .hamburger-cross span {
  display: block;
  background: #fff;
  border-radius: 3px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.menu_toggle .hamburger-cross span:nth-child(1) {
  height: 100%;
  width: 2px;
  position: absolute;
  top: 0;
  left: 10px;
  transition-delay: 0.3s;
}
.menu_toggle .hamburger-cross span:nth-child(2) {
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  top: 10px;
  transition-delay: 0.4s;
}

.collapsed .menu_toggle .hamburger span {
  width: 100%;
}
.collapsed .menu_toggle .hamburger span:nth-child(1) {
  transition-delay: 0.3s;
}
.collapsed .menu_toggle .hamburger span:nth-child(2) {
  transition-delay: 0.4s;
}
.collapsed .menu_toggle .hamburger span:nth-child(3) {
  transition-delay: 0.5s;
}
.collapsed .menu_toggle .hamburger-cross span:nth-child(1) {
  height: 0%;
  transition-delay: 0s;
}
.collapsed .menu_toggle .hamburger-cross span:nth-child(2) {
  width: 0%;
  transition-delay: 0.2s;
}

/*---------------------------------------------------- */
.banner-area {
  padding: 100px 0 50px 0;
  margin-top: 120px;
}
.banner-area h1 {
  font-family: "Inter";
  font-weight: 700;
  font-size: 39.92px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #0000fe;
  position: relative;
  margin-bottom: 40px;
  display: inline-block;
  text-align: center;
  z-index: 1;
}
.banner-area h1::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  height: 8px;
  background-image: url(../img/trendline.png);
  z-index: -1;
}
.banner-area h2 {
  font-family: "Open Sans";
  font-weight: 400;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: 0%;
  text-align: center;
  color: #0b2110;
  max-width: 840px;
  margin: auto;
}
.banner-area .banner-slider {
  padding-bottom: 40px;
  margin-top: 60px;
}
.banner-area .banner-slider .slick-slide {
  padding: 0 8px;
}

.feature-area {
  position: relative;
  background-color: #0000fe;
  color: #fff;
}
.feature-area .feature-shape {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.feature-area .feature-content {
  padding: 81px 54px 81px 0;
}
.feature-area .feature-content h2 {
  font-family: "Open Sans";
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  margin-bottom: 34px;
}
.feature-area .feature-content p {
  font-family: "Open Sans";
  font-weight: 300;
  font-size: 24px;
  line-height: 35px;
  letter-spacing: 0%;
  text-align: justify;
}
.feature-area .feature-content p span {
  color: #ffd035;
  font-weight: 700;
}
.feature-area .feature-content p strong {
  font-weight: 700;
}
@media (min-width: 992px) {
  .feature-area .feature-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 50vw;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .feature-area .feature-image img {
    width: 100%;
    height: 100%;
    display: none;
  }
  .feature-area .feature-item.right-aligned .feature-content {
    padding: 81px 0 81px 54px;
  }
  .feature-area .feature-item.right-aligned .feature-image {
    left: inherit;
    right: 0;
  }
}

.theme-btn {
  display: inline-block;
  position: relative;
  color: #0b2110;
  padding: 11px 17px;
  z-index: 1;
  transition: none;
  border: 1px solid #0b2110;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0px;
  border-radius: 8px;
  text-align: center;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}
.theme-btn:hover {
  background-color: #0000fe;
  color: #fff;
}
.theme-btn i {
  margin-left: 5px;
}

.pricing-area {
  padding: 78px 0;
}
.pricing-area h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 105px;
}
.pricing-area .single-pricing-item {
  border: 1px solid #c1c1c1;
  text-align: center;
  padding: 54px 24px;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.pricing-area .single-pricing-item:hover {
  border-color: #0000fe;
  background: rgba(0, 0, 254, 0.0509803922);
}
.pricing-area .single-pricing-item.recommended {
  border-color: #0000fe;
  box-shadow: 0px 0px 4px 0px rgba(24, 59, 86, 0.0509803922);
  background: rgba(0, 0, 254, 0.0509803922);
}
.pricing-area .single-pricing-item.recommended .theme-btn {
  background-color: #0000fe;
  color: #fff;
}
.pricing-area .single-pricing-item.recommended .info {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #ffffff;
  padding: 16px 0;
  text-align: center;
  background-color: #0000fe;
  position: absolute;
  top: -24px;
  left: -1px;
  right: -1px;
  z-index: 1;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.pricing-area .single-pricing-item h4 {
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  margin-bottom: 12px;
  color: #0b2110;
}
.pricing-area .single-pricing-item p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #2e3630;
}
.pricing-area .single-pricing-item .price-status {
  display: flex;
  align-items: center;
  color: #0b2110;
  padding: 13px 0;
  justify-content: center;
  margin-bottom: 40px;
  margin-top: 40px;
}
.pricing-area .single-pricing-item .price-status .currency {
  font-size: 24px;
}
.pricing-area .single-pricing-item .price-status .price {
  font-weight: 600;
  font-size: 40px;
  line-height: 100%;
}
.pricing-area .single-pricing-item .price-status .period {
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  margin-left: 8px;
}

.wp-connect-area {
  background-image: url(../img/wp-connect.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #0b2110;
  padding: 75px 0;
}
.wp-connect-area .connect-box {
  padding: 50px 74px;
  background-color: rgba(254, 254, 254, 0.9);
  border-radius: 8px;
  max-width: 650px;
  margin: auto;
}
.wp-connect-area h3 {
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 9px;
}
.wp-connect-area p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  margin-bottom: 35px;
}
.wp-connect-area p span {
  color: #0000fe;
}
.wp-connect-area a {
  display: inline-block;
  font-weight: 600;
  font-size: 32px;
  line-height: 180%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  border-radius: 8px;
  width: 100%;
  background-color: #4bae61;
  color: #fff;
}
.wp-connect-area a i {
  margin-right: 10px;
}

.footer-area {
  background-color: #0000fe;
  padding: 78px 0 45px 0;
  display: flex;
  justify-content: center;
  gap: 41px;
}
.footer-area .social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  flex-direction: column;
}
.footer-area .social-icon a {
  height: 61px;
  width: 61px;
  border-radius: 50%;
  background-color: #fff;
  line-height: 61px;
  text-align: center;
  color: #0000fe;
  font-size: 36px;
}
.footer-area label {
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
  margin-bottom: 15px;
}

.develop {
  background-color: #0000fe;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: .7em
}

.develop a{
  color:#ffd035;
}

/*# sourceMappingURL=style.css.map */
