/*-----------------------------------------------------------------------------------

    Theme Name: Preview
    Author: Bdevs
    Support: https://www.devsnews.com/support/
    Description: Preview
    Version: 1.0
	Developer: Sagor Khan Omi

-----------------------------------------------------------------------------------



/*----------------------------------------*/
/*  01. THEME DEFAULT CSS START
/*----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600;700;800&display=swap");
:root {
  /**
  @font family declaration
  */
  --bd-ff-body: 'Manrope', sans-serif;
  --bd-ff-heading: 'Manrope', sans-serif;
  --bd-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --clr-common-white: #ffffff;
  --clr-common-black: #000;
  --clr-common-placeholder: #8E8E8E;
  --clr-common-heading: #0F0E0E;
  --clr-common-body-text: #222222;
  --clr-theme-1: #5355DF;
  --clr-theme-2: #FFC961;
  --clr-text-1: #5D636A;
  --clr-text-2: #0F0E0E;
  --clr-text-3: #7C7C7C;
  --clr-bg-1: #141414;
  --clr-bg-2: #EEEEFC;
  --clr-border-1: rgba(20, 20, 20, 0.1);
  --clr-border-2: #141414;
  --clr-footer-1: #878787;
  --clr-gradient-1: linear-gradient(180deg, #C51F2C 0%, #FE5C53 100%);
  /**
  @font weight declaration
  */
  --bd-fw-normal: normal;
  --bd-fw-thin: 100;
  --bd-fw-elight: 200;
  --bd-fw-light: 300;
  --bd-fw-regular: 400;
  --bd-fw-medium: 500;
  --bd-fw-sbold: 600;
  --bd-fw-bold: 700;
  --bd-fw-ebold: 800;
  --bd-fw-black: 900;
  /**
  @font size declaration
  */
  --bd-fs-body: 16px;
  --bd-fs-p: 16px;
  --bd-fs-h1: 80px;
  --bd-fs-h2: 50px;
  --bd-fs-h3: 26px;
  --bd-fs-h4: 20px;
  --bd-fs-h5: 16px;
  --bd-fs-h6: 14px;
}

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

/*---------------------------------
    Typography css start 
---------------------------------*/
body {
  font-family: var(--bd-ff-body);
  font-size: var(--bd-fs-body);
  font-weight: normal;
  color: var(--clr-common-heading);
  line-height: 26px;
  font-weight: var(--bd-fw-medium);
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--bd-ff-heading);
  color: var(--clr-common-heading);
  margin-top: 0px;
  line-height: 1.2;
  margin-bottom: 0;
  font-weight: var(--bd-fw-bold);
  letter-spacing: 1px;
}

h1 {
  font-size: var(--bd-fs-h1);
}

h2 {
  font-size: var(--bd-fs-h2);
}

h3 {
  font-size: var(--bd-fs-h3);
}

h4 {
  font-size: var(--bd-fs-h4);
}

h5 {
  font-size: var(--bd-fs-h5);
}

h6 {
  font-size: var(--bd-fs-h6);
}

ul {
  margin: 0px;
  padding: 0px;
}

p {
  font-size: var(--bd-fs-p);
  font-weight: var(--bd-fw-normal);
  color: var(--clr-text-3);
  margin-bottom: 15px;
  line-height: 26px;
}

a {
  text-decoration: none;
}

a,
.btn,
button,
span,
svg,
p,
input,
select,
textarea,
li,
img,
svg,
.transition-3,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input {
  outline: none;
}

input[type=color] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

*::-moz-selection {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
  text-shadow: none;
}

::selection {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--clr-common-placeholder);
  opacity: 1;
  font-size: 16px;
}

*::placeholder {
  color: var(--clr-common-placeholder);
  opacity: 1;
  font-size: 16px;
}

/*----------------------------------------
   Flaction customize
-----------------------------------------*/
i[class^=flaticon-] {
  line-height: 1;
  top: 2px;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

/*----------------------------------------
   Gutter customize
-----------------------------------------*/
.g-20 {
  --bs-gutter-x: 20px;
}

/*---------------------------------
    common classes css start 
---------------------------------*/
.w-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.m-img img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.fix {
  overflow: hidden;
}

.clip-x {
  overflow-x: clip;
}

.clear {
  clear: both;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.z-index-1 {
  z-index: 1;
}

.z-index-11 {
  z-index: 11;
}

.overflow-y-visible {
  overflow-x: hidden;
  overflow-y: visible;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.include-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hr-1 {
  border-top: 1px solid rgb(232, 232, 232);
}

/*----------------------------------------
    Progress Wrap
-----------------------------------------*/
@media (max-width: 575px) {
  .progress-wrap {
    right: 15px;
    bottom: 25px;
  }
}

/*----------------------------------------
   Basic-pagaination
-----------------------------------------*/
.basic__pagination {
  padding: 40px 0 20px;
  border-top: 1px solid var(--clr-border-2);
}
.basic__pagination ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .basic__pagination ul {
    justify-content: start;
  }
}
.basic__pagination ul li {
  list-style: none;
}
.basic__pagination ul li:last-child {
  margin-left: 15px;
}
.basic__pagination ul li a {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  position: relative;
  color: var(--clr-common-white);
  right: 0;
  top: 50%;
  font-size: 14px;
  background-color: var(--clr-black-6);
  overflow: hidden;
  z-index: 5;
}
.basic__pagination ul li a:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: var(--clr-gradient-4);
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.basic__pagination ul li a:hover {
  border-color: var(--clr-theme-1);
  color: var(--clr-common-white);
}
.basic__pagination ul li a:hover::before {
  opacity: 1;
  visibility: visible;
}
.basic__pagination ul li span {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  position: relative;
  right: 0;
  top: 50%;
  font-weight: var(--bd-fw-sbold);
  font-size: 16px;
  background: var(--clr-gradient-4);
  overflow: hidden;
  color: var(--clr-common-white);
  z-index: 5;
}

/*----------------------------------------*/
/*  BACKGROUND COLOR CSS START
/*----------------------------------------*/
/*--- Background color
-----------------------------------------*/
.white-bg {
  background-color: var(--clr-common-white);
}

.black-bg {
  background-color: var(--clr-common-black);
}

.dark-bg {
  background-color: var(--clr-theme-1);
}

.grey-bg {
  background-color: var(--clr-bg-4);
}

.footer-bg {
  background-color: var(--clr-bg-footer);
}

/*----------------------------------------*/
/*  BUTTTON CSS START
/*----------------------------------------*/
.bd-btn-link {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  background-color: var(--clr-theme-1);
  line-height: 1;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 35px;
  color: var(--clr-common-white);
  border-radius: 30px;
  z-index: 55;
}
.bd-btn-link:focus {
  color: var(--clr-common-white);
}
.bd-btn-link:hover {
  color: var(--clr-common-white);
}
.bd-btn-link:hover .bd-button-icon i {
  color: var(--clr-common-white);
  transform: rotate(0deg);
}
.bd-btn-link.is-border {
  background-color: transparent;
  border: 1px solid var(--clr-common-white);
}
.bd-btn-link.is-border:hover {
  background-color: var(--clr-theme-1);
  border-color: var(--clr-theme-1);
  color: var(--clr-common-white);
}
.bd-btn-link.is-yellow {
  background-color: var(--clr-theme-2);
  color: var(--clr-common-heading);
}
.bd-btn-link.is-yellow .bd-button-icon i {
  color: var(--clr-common-heading);
}
.bd-btn-link:hover .bd-btn-anim-wrapp {
  transform: translateY(-150%);
}
.bd-btn-link:hover .bd-btn-anim-wrapp .bd-button-text:nth-child(2) {
  transform: translate(-50%, 100%);
  opacity: 1;
}
.bd-btn-link:hover .bd-button-text:nth-child(1) {
  opacity: 0;
}

.bd-btn-anim-wrapp {
  display: inline-block;
  order: 10;
}
.bd-btn-anim-wrapp .bd-button-text:nth-child(2) {
  display: inline-block;
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 80%);
  opacity: 0;
}

.bd-btn-link .bd-btn-anim-wrapp,
.bd-btn-link .bd-btn-anim-wrapp .bd-button-text {
  transition: opacity 0.6s, transform 0.8s;
  transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1);
}

.bd-button-icon {
  flex-grow: 0;
  order: 5;
}
.bd-button-icon i {
  color: var(--clr-common-white);
  transform: rotate(45deg);
  position: relative;
  top: 2px;
  transition: opacity 0.6s, transform 0.8s;
  transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1);
}

.bd-button-content-wrapper {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  transform: translateY(-1px);
}

.bd-btn-link.btn-border {
  background-color: transparent;
  border: 1px solid var(--clr-common-white);
}
.bd-btn-link.btn-border:hover {
  background-color: var(--clr-common-heading);
  border-color: var(--clr-common-heading);
}

.bd-btn-link.btn-black {
  background: var(--clr-common-heading);
}

.bd-btn-link.btn-dark:hover.bd-btn-link.btn-dark .bd-button-icon i {
  color: var(--clr-common-white);
}

[class*=primary]:hover {
  -webkit-box-shadow: 0 20px 40px 0 rgba(83, 85, 223, 0.4);
  -moz-box-shadow: 0 20px 40px 0 rgba(83, 85, 223, 0.4);
  -ms-box-shadow: 0 20px 40px 0 rgba(83, 85, 223, 0.4);
  -o-box-shadow: 0 20px 40px 0 rgba(83, 85, 223, 0.4);
  box-shadow: 0 20px 40px 0 rgba(83, 85, 223, 0.4);
}

[class*=btn-dark]:hover {
  -webkit-box-shadow: 0 24px 40px 0 rgba(15, 14, 14, 0.3);
  -moz-box-shadow: 0 24px 40px 0 rgba(15, 14, 14, 0.3);
  -ms-box-shadow: 0 24px 40px 0 rgba(15, 14, 14, 0.3);
  -o-box-shadow: 0 24px 40px 0 rgba(15, 14, 14, 0.3);
  box-shadow: 0 24px 40px 0 rgba(15, 14, 14, 0.3);
}

[class*=btn-black]:hover {
  -webkit-box-shadow: 0 24px 40px 0 rgba(15, 14, 14, 0.3);
  -moz-box-shadow: 0 24px 40px 0 rgba(15, 14, 14, 0.3);
  -ms-box-shadow: 0 24px 40px 0 rgba(15, 14, 14, 0.3);
  -o-box-shadow: 0 24px 40px 0 rgba(15, 14, 14, 0.3);
  box-shadow: 0 24px 40px 0 rgba(15, 14, 14, 0.3);
}

[class*=is-yellow]:hover {
  -webkit-box-shadow: 0 24px 40px 0 rgba(255, 201, 97, 0.4);
  -moz-box-shadow: 0 24px 40px 0 rgba(255, 201, 97, 0.4);
  -ms-box-shadow: 0 24px 40px 0 rgba(255, 201, 97, 0.4);
  -o-box-shadow: 0 24px 40px 0 rgba(255, 201, 97, 0.4);
  box-shadow: 0 24px 40px 0 rgba(255, 201, 97, 0.4);
}

/*----------------------------------------*/
/* OFFCANVAS CSS START
/*----------------------------------------*/
.offcanvas__close button {
  height: 45px;
  width: 45px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-common-heading);
  font-size: 18px;
  background-color: var(--clr-theme-2);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.offcanvas__close button i {
  color: var(--clr-common-heading);
}
.offcanvas__info {
  background: none var(--clr-bg-2) repeat scroll 0 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
@media (max-width:450px) {
  .offcanvas__info {
    width: 100%;
  }
}
.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.offcanvas__logo a img {
  max-width: 180px;
}
@media (max-width:450px) {
  .offcanvas__logo a img {
    max-width: 150px;
  }
}
.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}
.offcanvas__top {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--clr-border-1);
}
.offcanvas__color {
  margin-bottom: 40px;
}
.offcanvas__color h5 {
  font-size: 22px;
  margin-bottom: 15px;
}
.offcanvas__color input {
  display: none;
}
.offcanvas__color label {
  width: 100%;
  height: 60px;
  background-color: var(--clr-theme-1);
}
.offcanvas__color label:hover {
  cursor: pointer;
}
.offcanvas__color-2 label {
  background-color: var(--bd-theme-1);
}
.offcanvas__search {
  position: relative;
}
.offcanvas__search input {
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding-right: 20px;
  background: transparent;
  border: none;
  outline: none;
  border-bottom: 1px solid var(--clr-border-1);
  font-size: 16px;
  color: var(--clr-common-heading);
}
.offcanvas__search input::placeholder {
  color: var(--clr-common-heading);
}
.offcanvas__search input:focus {
  border-color: var(--clr-common-heading);
}
.offcanvas__search button {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 16px;
  color: var(--clr-common-heading);
}
.offcanvas__search button:hover {
  color: var(--clr-theme-1);
}
.offcanvas__text p {
  margin-bottom: 25px;
}
.offcanvas__contact h4 {
  font-size: 22px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: var(--bd-fw-bold);
  color: var(--clr-common-white);
}
.offcanvas__contact ul li:not(:last-child) {
  margin-bottom: 20px;
}
.offcanvas__contact ul li:hover i {
  color: var(--clr-common-white);
  border-color: var(--clr-theme-1);
  background-color: var(--clr-theme-1);
}
.offcanvas__contact-icon i {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  text-align: center;
  border: 1px solid var(--clr-border-1);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  overflow: hidden;
  color: var(--clr-common-white);
  position: relative;
  z-index: 5;
}
.offcanvas__contact-text a {
  font-size: 16px;
  font-weight: 500;
  color: var(--clr-common-white);
}
.offcanvas__contact-text a:hover {
  color: var(--clr-theme-1);
}
.offcanvas__social {
  margin-bottom: 30px;
}
.offcanvas__social ul li {
  display: inline-block;
}
.offcanvas__social ul li:not(:last-child) {
  margin-right: 5px;
}
.offcanvas__social ul li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--clr-border-1);
  color: var(--clr-common-white);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 5;
  background-color: transparent;
}
.offcanvas__social ul li a:hover {
  color: var(--clr-common-white);
  border: 1px solid var(--clr-theme-1);
  background-color: var(--clr-theme-1);
}
.offcanvas__notification-icon a {
  font-size: 14px;
  color: var(--clr-common-heading);
  position: relative;
}
.offcanvas__notification-icon a .notification-count {
  position: absolute;
  top: -4px;
  right: -13px;
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 22px;
  font-size: 12px;
  font-weight: 600;
  background-color: var(--clr-theme-1);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  color: var(--clr-common-heading);
  text-align: center;
}
.offcanvas__notification-text p {
  margin-bottom: 0;
  font-weight: 500;
  color: var(--clr-common-heading);
  font-size: 14px;
}
.offcanvas__notification-text p .notification-number {
  color: var(--clr-theme-1);
}
.offcanvas__notification-text p a {
  color: var(--clr-theme-1);
}
.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: var(--clr-common-black);
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.offcanvas__overlay.overlay-open {
  opacity: 0.5;
  visibility: visible;
}
.offcanvas .signin-area.open {
  opacity: 0.6;
  visibility: visible;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.sidebar__toggle {
  cursor: pointer;
}

@media (max-width: 992px) {
  .app__offcanvas-overlay.overlay-open {
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 10;
  }
}

/*----------------------------------------*/
/*  SECTION TITLE CSS START
/*----------------------------------------*/
.section__title {
  font-size: 50px;
  line-height: 1.2;
  font-weight: var(--bd-fw-bold);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section__title {
    font-size: 45px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .section__title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section__title {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .section__title {
    font-size: 32px;
  }
}
@media (max-width:450px) {
  .section__title {
    font-size: 28px;
  }
}

.section__subtitle {
  margin-bottom: 15px;
  padding-left: 20px;
}
.section__subtitle span {
  position: relative;
  font-size: 18px;
}
.section__subtitle span:before {
  position: absolute;
  content: "";
  background: var(--clr-theme-2);
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  left: -20px;
  width: 10.85px;
  height: 10.85px;
}

.section__title-wrapper.is-white .section__title {
  color: var(--clr-common-white);
}
.section__title-wrapper.is-white .section__subtitle span {
  color: var(--clr-common-white);
}

/*----------------------------------------*/
/*  ANIMATION CSS START
/*----------------------------------------*/
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
/*----------------------------------------*/
/*  Populer animation
/*----------------------------------------*/
@-webkit-keyframes circleMove {
  0% {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes circleMove {
  0% {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes imageMove1 {
  0% {
    -webkit-transform: translateX(-50%) rotate(0deg);
  }
  to {
    -webkit-transform: translateX(-50%) rotate(-360deg);
  }
}
@keyframes imageMove1 {
  0% {
    -webkit-transform: translateX(-50%) rotate(0deg);
  }
  to {
    -webkit-transform: translateX(-50%) rotate(-360deg);
  }
}
@-webkit-keyframes imageMove2 {
  0% {
    -webkit-transform: translateX(-50%) rotate(-60deg);
  }
  to {
    -webkit-transform: translateX(-50%) rotate(-420deg);
  }
}
@keyframes imageMove2 {
  0% {
    -webkit-transform: translateX(-50%) rotate(-60deg);
  }
  to {
    -webkit-transform: translateX(-50%) rotate(-420deg);
  }
}
@-webkit-keyframes imageMove3 {
  0% {
    -webkit-transform: translateX(-50%) rotate(-120deg);
  }
  to {
    -webkit-transform: translateX(-50%) rotate(-480deg);
  }
}
@keyframes imageMove3 {
  0% {
    -webkit-transform: translateX(-50%) rotate(-120deg);
  }
  to {
    -webkit-transform: translateX(-50%) rotate(-480deg);
  }
}
@-webkit-keyframes imageMove4 {
  0% {
    -webkit-transform: translateX(-50%) rotate(-180deg);
  }
  to {
    -webkit-transform: translateX(-50%) rotate(-540deg);
  }
}
@keyframes imageMove4 {
  0% {
    -webkit-transform: translateX(-50%) rotate(-180deg);
  }
  to {
    -webkit-transform: translateX(-50%) rotate(-540deg);
  }
}
@-webkit-keyframes imageMove5 {
  0% {
    -webkit-transform: translateX(-50%) rotate(-240deg);
  }
  to {
    -webkit-transform: translateX(-50%) rotate(-600deg);
  }
}
@keyframes imageMove5 {
  0% {
    -webkit-transform: translateX(-50%) rotate(-240deg);
  }
  to {
    -webkit-transform: translateX(-50%) rotate(-600deg);
  }
}
@-webkit-keyframes imageMove6 {
  0% {
    -webkit-transform: translateX(-50%) rotate(-300deg);
  }
  to {
    -webkit-transform: translateX(-50%) rotate(-660deg);
  }
}
@keyframes imageMove6 {
  0% {
    -webkit-transform: translateX(-50%) rotate(-300deg);
  }
  to {
    -webkit-transform: translateX(-50%) rotate(-660deg);
  }
}
.movingX {
  -webkit-animation: movingX 35s linear infinite;
  animation: movingX 35s linear infinite;
}

@-webkit-keyframes movingX {
  0% {
    -webkit-transform: translateX(0) rotateY(0deg);
    transform: translateX(0) rotateY(0deg);
  }
  50% {
    -webkit-transform: translateX(calc(100vw - 100%));
    transform: translateX(calc(100vw - 100%));
  }
  51% {
    -webkit-transform: translateX(calc(100vw - 100%)) rotateY(180deg);
    transform: translateX(calc(100vw - 100%)) rotateY(180deg);
  }
  100% {
    -webkit-transform: translateX(0) rotateY(180deg);
    transform: translateX(0) rotateY(180deg);
  }
}
@keyframes movingX {
  0% {
    -webkit-transform: translateX(0) rotateY(0deg);
    transform: translateX(0) rotateY(0deg);
  }
  50% {
    -webkit-transform: translateX(calc(100vw - 100%));
    transform: translateX(calc(100vw - 100%));
  }
  51% {
    -webkit-transform: translateX(calc(100vw - 100%)) rotateY(180deg);
    transform: translateX(calc(100vw - 100%)) rotateY(180deg);
  }
  100% {
    -webkit-transform: translateX(0) rotateY(180deg);
    transform: translateX(0) rotateY(180deg);
  }
}
/*----------------------------------------*/
/*  Float Bob X Animation Css
/*----------------------------------------*/
@-webkit-keyframes float-bob-y {
  0% {
    transform: translateY(-15px);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(-15px);
  }
}
@keyframes float-bob-y {
  0% {
    transform: translateY(-15px);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(-15px);
  }
}
.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

/*======================================
click-pulse animation
========================================*/
@-webkit-keyframes click-pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgb(255, 255, 255);
  }
  70% {
    -webkit-box-shadow: 0 0 0 60px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes click-pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 60px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
/*======================================
Marquee animation
========================================*/
@-webkit-keyframes marquee {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@keyframes marquee {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@-webkit-keyframes marquee2 {
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  from {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@keyframes marquee2 {
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  from {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
/*======================================
spin animation
========================================*/
@keyframes spin {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
/*======================================
Button icon hover animation
========================================*/
@keyframes iconltr {
  49% {
    -webkit-transform: translateX(30%);
    -moz-transform: translateX(30%);
    -ms-transform: translateX(30%);
    -o-transform: translateX(30%);
    transform: translateX(30%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(-30%);
    -moz-transform: translateX(-30%);
    -ms-transform: translateX(-30%);
    -o-transform: translateX(-30%);
    transform: translateX(-30%);
  }
  51% {
    opacity: 1;
  }
}
/*----------------------------------------*/
/* Preloader CSS START
/*----------------------------------------*/
#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  inset-inline-start: 0;
  top: 0;
  background-color: #fff;
  z-index: 999;
}

.sk-three-bounce {
  margin: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: white;
}

.sk-three-bounce .sk-child {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: var(--clr-theme-1);
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
  animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
}

.sk-three-bounce .sk-bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.sk-three-bounce .sk-bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

.sk-three-bounce.style_2.sk-three-bounce .sk-child {
  background-color: var(--clr-theme-1);
}

@-webkit-keyframes sk-three-bounce {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes sk-three-bounce {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/*----------------------------------------*/
/*  MEAN MENU CSS START
/*----------------------------------------*/
/* Mean menu customize */
.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: var(--clr-text-1);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  text-transform: capitalize;
}
.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}
.mean-container .mean-nav ul li a:hover {
  color: var(--clr-common-heading);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
  border: 1px solid var(--clr-border-1) !important;
  height: 30px;
  width: 30px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-common-heading);
  line-height: 30px;
  top: 0;
  font-weight: 400;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.mean-container .mean-nav ul li a.mean-expand:hover {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
}

.mean-container .mean-nav ul li > a > i {
  display: none;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.mean-container .mean-nav ul li > a.mean-expand i {
  display: inline-block;
}

.mean-container .mean-nav > ul > li:first-child > a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked {
  color: var(--clr-common-white);
  background-color: var(--clr-theme-1);
  border-color: var(--clr-theme-1) !important;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

/*----------------------------------------*/
/*  HEADER CSS START
/*----------------------------------------*/
.header__transparent {
  position: absolute;
  left: 0;
  margin: auto;
  width: 100%;
  z-index: 99;
}

.sticky {
  position: fixed !important;
  top: 0;
  background: var(--clr-common-white);
  z-index: 800;
  right: 0;
  left: 0;
  width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-box-shadow: 0 0 60px 0 rgba(53, 57, 69, 0.15);
  -moz-box-shadow: 0 0 60px 0 rgba(53, 57, 69, 0.15);
  -ms-box-shadow: 0 0 60px 0 rgba(53, 57, 69, 0.15);
  -o-box-shadow: 0 0 60px 0 rgba(53, 57, 69, 0.15);
  box-shadow: 0 0 60px 0 rgba(53, 57, 69, 0.15);
  animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
}
.sticky.header__area .content__box {
  margin-top: 0;
}

.header__action .bd-btn-link {
  height: 50px;
  padding: 0 25px;
}

.header__area .container {
  max-width: 1480px;
}
.header__area .content__box {
  margin-top: 20px;
  padding: 0px 20px;
  border-radius: 120px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  background-color: var(--clr-common-white);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .header__area .content__box {
    padding: 18px 15px;
    border-radius: 0 0 40px 40px;
    margin-top: 0;
  }
}
.header__grid {
  display: grid;
  grid-template-columns: 20% auto 20%;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .header__grid {
    grid-template-columns: auto auto;
  }
}
.header__logo img {
  min-width: 147px;
}
@media (max-width:450px) {
  .header__logo img {
    max-width: 147px;
  }
}
.header__right {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 75px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header__right {
    gap: 40px;
  }
}

.main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-right: 30px;
}
.main-menu ul li:last-child {
  margin-right: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .main-menu ul li {
    margin-right: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-menu ul li {
    margin-right: 30px;
  }
}
.main-menu ul li a {
  display: inline-block;
  font-size: 16px;
  color: var(--clr-text-1);
  font-weight: var(--bd-fw-sbold);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  text-transform: capitalize;
  line-height: 1;
  padding: 34px 0;
  display: block;
}
.main-menu ul li .submenu {
  position: absolute;
  top: 120%;
  left: 0;
  width: 220px;
  padding: 15px 0;
  padding-bottom: 15px;
  background: var(--clr-common-white);
  border-top: 3px solid var(--clr-theme-1);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
  -moz-box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
  -ms-box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
  -o-box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
  box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
  visibility: hidden;
  opacity: 0;
  z-index: 50;
}
.main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
}
.main-menu ul li .submenu li.has-dropdown > a::after {
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -moz-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  -o-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}
.main-menu ul li .submenu li > a {
  width: 100%;
  display: block;
  padding: 10px 25px;
  text-transform: capitalize;
  color: var(--clr-common-heading);
  font-weight: var(--bd-fw-medium);
  position: relative;
}
.main-menu ul li .submenu li > a::after {
  right: 30px;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -moz-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  -o-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}
.main-menu ul li .submenu li > a::before {
  display: none;
}
.main-menu ul li .submenu li .submenu {
  left: 120%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.main-menu ul li .submenu li:hover > a {
  color: var(--clr-theme-1);
}
.main-menu ul li .submenu li:hover > a::after {
  color: var(--clr-theme-1);
  -webkit-transform: translateY(-6px) rotate(45deg);
  -moz-transform: translateY(-6px) rotate(45deg);
  -ms-transform: translateY(-6px) rotate(45deg);
  -o-transform: translateY(-6px) rotate(45deg);
  transform: translateY(-6px) rotate(45deg);
}
.main-menu ul li .submenu li:hover > a::before {
  left: 0;
  right: auto;
  width: 100%;
}
.main-menu ul li .submenu li:hover > .submenu {
  left: 100%;
  visibility: visible;
  opacity: 1;
}
.main-menu ul li:hover > a {
  color: var(--clr-common-heading);
}
.main-menu ul li:hover > .submenu {
  top: 100%;
  visibility: visible;
  opacity: 1;
}

.bar-icon {
  width: 36px;
  height: 24px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.bar-icon span {
  width: 100%;
  height: 2px;
  background: #141414;
  display: inline-block;
}
.bar-icon span:nth-child(2) {
  margin-left: 20px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.bar-icon span:nth-child(3) {
  margin-left: 10px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.bar-icon:hover span:nth-child(2) {
  margin-left: 10px;
}
.bar-icon:hover span:nth-child(3) {
  margin-left: 0;
}

/*----------------------------------------*/
/*  BANNER CSS START
/*----------------------------------------*/
.banner__height {
  overflow-x: clip;
  padding-top: 260px;
  padding-bottom: 770px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) and (max-width: 1600px) {
  .banner__height {
    padding-top: 250px;
    padding-bottom: 600px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .banner__height {
    padding-top: 200px;
    padding-bottom: 120px;
  }
}
.banner-bg {
  position: relative;
  z-index: 1;
}
.banner-bg::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #5355DF;
  z-index: -1;
}
.banner__shape-wrapper .shape-1 {
  position: absolute;
  left: -84.5px;
  top: 27%;
  animation: spin 10s infinite linear;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner__shape-wrapper .shape-1 {
    max-width: 150px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner__shape-wrapper .shape-1 {
    top: 37%;
    max-width: 130px;
  }
}
@media (max-width: 575px) {
  .banner__shape-wrapper .shape-1 {
    display: none;
  }
}
.banner__shape-wrapper .shape-2 {
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .banner__shape-wrapper .shape-2 {
    display: none;
  }
}
.banner__shape-wrapper .shape-3 {
  position: absolute;
  width: 514px;
  height: 513px;
  left: 50%;
  top: 171px;
  background: #FFC961;
  opacity: 0.2;
  filter: blur(150px);
  transform: translateX(-50%);
}
.banner__title {
  position: relative;
  font-size: 80px;
  color: var(--clr-common-white);
  line-height: 1.2;
  margin-top: -30px;
  text-transform: capitalize;
  font-weight: var(--bd-fw-bold);
}
.banner__title .highlight {
  color: var(--clr-theme-1);
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .banner__title {
    font-size: 75px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner__title {
    font-size: 66px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner__title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner__title {
    font-size: 55px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner__title {
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  .banner__title {
    font-size: 38px;
  }
}
@media (max-width:450px) {
  .banner__title {
    font-size: 32px;
  }
}
.banner__title-wrapper {
  position: relative;
  z-index: 5;
}

.title__shape {
  position: absolute;
  top: -10%;
  left: -2%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .title__shape {
    top: -10px;
    left: -30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .title__shape {
    left: -10px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .title__shape {
    display: none;
  }
}

.btn__groupe {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px 30px;
}

.btn__shape {
  position: absolute;
  right: 13%;
  top: 30%;
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .btn__shape {
    right: 0%;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .btn__shape {
    display: none;
  }
}

.banner__slider-active .swiper-wrapper {
  align-items: end;
}

.swiper.banner__slider-active {
  overflow: visible;
}
.swiper.banner__slider-active .swiper-wrapper {
  transition-timing-function: linear !important;
  -webkit-transition-timing-function: linear !important;
}

.banner__slider-area {
  position: relative;
  margin-top: -656px;
}
.banner__slider-area:before {
  position: absolute;
  content: "";
  height: 70px;
  width: 100%;
  box-shadow: 0px -40px 40px rgba(0, 0, 0, 0.1);
  bottom: -70px;
  left: 0;
  z-index: 555;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) and (max-width: 1600px) {
  .banner__slider-area {
    margin-top: -476px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .banner__slider-area {
    display: none;
  }
}

.banner__slider-thumb img {
  width: 100%;
}

.banner__slider-thumb {
  height: 630px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) and (max-width: 1600px) {
  .banner__slider-thumb {
    height: 450px;
  }
}

.banner__slider-item {
  padding: 3px 20px 0px 20px;
  background: var(--clr-bg-2);
}

.banner__slider-active .swiper-wrapper .swiper-slide:nth-child(2n) .banner__slider-thumb {
  height: 567px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) and (max-width: 1600px) {
  .banner__slider-active .swiper-wrapper .swiper-slide:nth-child(2n) .banner__slider-thumb {
    height: 367px;
  }
}

/*----------------------------------------*/
/*  FEATUREAS CSS START
/*----------------------------------------*/
.features__area {
  padding-top: 115px;
  padding-bottom: 120px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .features__area {
    padding: 80px 0;
  }
}

.features__list-area {
  padding: 120px 0;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .features__list-area {
    padding: 85px 0;
  }
}

.features__list-title {
  font-size: 20px;
  text-transform: capitalize;
}
@media (max-width:450px) {
  .features__list-title {
    font-size: 18px;
  }
}

.features__list {
  display: grid;
  grid-template-columns: auto auto auto;
  border-left: 1px solid var(--clr-border-1);
  border-top: 1px solid var(--clr-border-1);
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .features__list {
    grid-template-columns: auto;
  }
}

.features__list-content {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 40px 60px;
  border-right: 1px solid var(--clr-border-1);
  border-bottom: 1px solid var(--clr-border-1);
}
@media (max-width: 575px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .features__list-content {
    padding: 35px 30px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .features__list-content {
    justify-content: center;
  }
}

.features__title {
  margin-bottom: 20px;
  color: var(--clr-common-white);
}

.features__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .features__wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .features__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .features__wrapper {
    grid-template-columns: auto;
  }
}

.features__content > p {
  color: #EEEEEE;
}

.features__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 356px;
  padding: 30px 30px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: 5;
}
.features__item::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: -1;
}
.features__item::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: linear-gradient(190deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
  opacity: 0;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: -1;
}
.features__item:hover {
  background: var(--clr-common-white);
}
.features__item:hover .features__icon {
  transform: translateY(-3px) translate3d(0, -3px, 0);
}
.features__item:hover::after {
  opacity: 0;
}
.features__item:hover::before {
  opacity: 1;
}
.features__item:hover .features__content > p {
  color: var(--clr-text-3);
}
.features__item:hover .features__title {
  color: var(--clr-common-heading);
}
.features__item:hover .features__tag.green span {
  background: rgba(12, 115, 184, 0.2);
  color: rgb(12, 115, 184);
}
.features__item:hover .features__tag.purple span {
  color: rgb(137, 18, 252);
  background: rgba(136, 18, 252, 0.2);
}
.features__item:hover .features__tag.lilac span {
  color: rgb(205, 103, 153);
  background: rgba(205, 102, 153, 0.2);
}
.features__item:hover .features__tag.lime span {
  background: rgba(52, 168, 83, 0.2);
  color: rgb(52, 168, 83);
}
.features__item:hover .features__tag.red span {
  color: rgb(255, 30, 90);
  background: rgba(255, 30, 90, 0.2);
}
.features__item:hover .features__tag.red-2 span {
  color: rgb(227, 82, 45);
  background: rgba(227, 76, 38, 0.2);
}
.features__item:hover .features__tag.lemon span {
  background: rgba(136, 206, 2, 0.2);
  color: rgb(82, 124, 1);
}
.features__item:hover .features__tag.green-dark span {
  background: rgba(0, 128, 255, 0.2);
  color: rgb(0, 128, 255);
}
.features__item:hover .features__icon.lilac {
  background: rgba(205, 102, 153, 0.2);
}
.features__item:hover .features__icon.purple {
  background: rgba(136, 18, 252, 0.2);
}
.features__item:hover .features__icon.green {
  background: rgba(12, 115, 184, 0.2);
}
.features__item:hover .features__icon.lime {
  background: rgba(52, 168, 83, 0.2);
}
.features__item:hover .features__icon.red {
  background: rgba(255, 30, 90, 0.2);
}
.features__item:hover .features__icon.red-2 {
  background: rgba(227, 76, 38, 0.2);
}
.features__item:hover .features__icon.green-dark {
  background: rgba(0, 128, 255, 0.2);
}

.features__icon {
  margin-bottom: 25px;
  transform: translate3d(0, 0, 0);
  -webkit-transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
  -moz-transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
  -ms-transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
  -o-transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
  transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
  height: 70px;
  width: 70px;
  background: var(--clr-common-white);
  line-height: 67px;
  text-align: center;
  border-radius: 50%;
}

.features__tag span {
  padding: 4px 10px;
  background: var(--clr-common-white);
  border-radius: 30px;
  font-size: 14px;
  color: var(--clr-common-heading);
}
.features__tag:hover.green span {
  background: rgba(12, 115, 184, 0.2);
  color: rgb(12, 115, 184);
}
.features__tag:hover.purple span {
  color: rgb(137, 18, 252);
  background: rgba(136, 18, 252, 0.2);
}
.features__tag:hover.lilac span {
  color: rgb(205, 103, 153);
  background: rgba(205, 102, 153, 0.2);
}
.features__tag:hover.lime span {
  background: rgba(52, 168, 83, 0.2);
  color: rgb(52, 168, 83);
}
.features__tag:hover.red span {
  color: rgb(255, 30, 90);
  background: rgba(255, 30, 90, 0.2);
}
.features__tag:hover.lemon span {
  background: rgba(136, 206, 2, 0.2);
  color: rgb(82, 124, 1);
}
.features__tag:hover.green-dark span {
  background: rgba(0, 128, 255, 0.2);
  color: rgb(0, 128, 255);
}

/*----------------------------------------*/
/*  DEMO CSS START
/*----------------------------------------*/
.home__content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 5px;
}
.home__content-title {
  font-size: 20px;
  text-transform: capitalize;
  font-weight: var(--bd-fw-bold);
}
@media (max-width:450px), only screen and (min-width: 768px) and (max-width: 991px) {
  .home__content-title {
    font-size: 20px;
  }
}
.home__inner {
  border: 1px solid var(--clr-border-1);
  padding: 10px 20px 0 20px;
  margin-bottom: 30px;
}
.home__item-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 30px;
  max-width: 1785px;
  margin: 0 auto;
  padding: 0 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .home__item-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .home__item-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.home__item-number {
  font-size: 22px;
  font-weight: var(--bd-fw-bold);
}
.home__content-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 20px;
}
.home__content-inner:hover .home__item-link {
  background-color: var(--clr-theme-2);
  border-color: var(--clr-theme-2);
}
.home__dot {
  line-height: 1;
  margin-bottom: 7px;
  white-space: nowrap;
}
.home__dot span {
  height: 7px;
  width: 7px;
  display: inline-block;
  background: #DFDFDF;
  border-radius: 50%;
}

.home__thumb img {
  width: 100%;
}

.inner__page-area {
  padding-top: 115px;
  padding-bottom: 115px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .inner__page-area {
    padding-top: 85px;
    padding-bottom: 85px;
  }
}

.inner__slide-thumb {
  padding-top: 130%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  position: relative;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .inner__slide-thumb {
    padding-top: 90%;
  }
}
.inner__slide-thumb a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.inner__page-active .inner__slide-item:nth-child(2n+1) .inner__slide-thumb {
  padding-top: 136%;
}

.inner__slide {
  padding: 7px 17px 17px;
  border: 1px solid var(--clr-border-1);
  margin-bottom: 20px;
  background-color: var(--clr-common-white);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.inner__slide:hover {
  background: var(--clr-theme-1);
  border-color: var(--clr-theme-1);
}

.inner__slider-pagination {
  margin-bottom: -85px;
}
.inner__slider-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
  background: transparent;
  opacity: 1;
  border: 1px solid #141414;
}
.inner__slider-pagination .swiper-pagination-bullet-active {
  background: var(--clr-theme-1);
  border-color: var(--clr-theme-1);
}

@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1400px) and (max-width: 1600px) {
  .inner__pages-navigation {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
  }
}
.inner__pages-navigation button {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--clr-border-1);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1400px) and (max-width: 1600px) {
  .inner__pages-navigation button {
    position: sticky;
    transform: inherit;
  }
}
.inner__pages-navigation button:hover {
  border-color: var(--clr-theme-1);
  background: var(--clr-theme-1);
}
.inner__pages-navigation button:hover svg * {
  fill: var(--clr-common-white);
}
.inner__pages-navigation button:hover i {
  color: var(--clr-common-white);
}

.inner__pages-button-prev {
  left: -80px;
}

.inner__pages-button-next {
  right: -80px;
}

.demo__click {
  width: 96px;
  height: 96px;
  display: inline-block;
  background: var(--clr-common-white);
  text-align: center;
  line-height: 95px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.1);
  animation: click-pulse 1.5s infinite linear;
}
.demo__click-bg {
  position: absolute;
  top: -47px;
  left: -14px;
}
.demo__install-content {
  margin-left: 90px;
  margin-top: 65px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .demo__install-content {
    margin-top: 0;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .demo__install-content {
    margin-left: 0;
  }
}
.demo__install-icon {
  position: relative;
  margin-bottom: 65px;
}
.demo__install-thumb {
  padding: 10px 15px;
  background: var(--clr-common-white);
  -webkit-box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.15);
  -o-box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.15);
}
.demo__shape-1 {
  position: absolute;
  top: -40px;
  left: -120px;
  z-index: -1;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .demo__shape-1 {
    display: none;
  }
}
.demo__shape-2 {
  position: absolute;
  bottom: -60px;
  right: -50px;
  z-index: -1;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .demo__shape-2 {
    display: none;
  }
}

.demo__slider-area {
  padding-top: 115px;
  padding-bottom: 120px;
  background-color: #141414;
  position: relative;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .demo__slider-area {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.demo__slider-area::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #141414 0%, rgba(20, 20, 20, 0) 100%);
}

.demo__slide-thumb img {
  width: 100%;
}

.home__demo-area {
  padding-top: 65px;
  padding-bottom: 115px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .home__demo-area {
    padding-top: 30px;
    padding-bottom: 80px;
  }
}

.home__thumb {
  height: 500px;
  background-position: top;
  transition: all 2.3s;
  background-size: 100%;
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  position: relative;
}

.home__thumb > a {
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}

.home__thumb span {
  -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-50%);
  padding: 20px 30px;
  background: #fff;
  color: #222;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  width: 215px;
  right: 0;
  margin: auto;
  border-radius: 30px;
  z-index: 2;
}

.home__thumb:hover span {
  visibility: visible;
  opacity: 1;
}

.home__thumb > a::before {
  background: #936dd5;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 0.3s;
  z-index: 1;
}

.demo-wrapper:hover .home__thumb > a::before {
  opacity: 0.6;
}

.demo__item {
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  background: var(--clr-common-white);
  box-shadow: 0px 10px 20px rgba(3, 4, 28, 0.08);
  padding: 0 15px;
  border: 1px solid var(--clr-border-1);
  border-bottom: 0;
}
.demo__item-bullet {
  line-height: 1;
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #E9E9EF;
  margin-bottom: 2px;
  margin-top: 11px;
}
.demo__thumb {
  overflow: hidden;
  background: #F2F2F2;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.demo__thumb:hover {
  background-color: var(--clr-theme-1);
}
.demo__thumb img {
  border-radius: 6px;
  width: 100%;
}
.demo__title h4 {
  font-size: 20px;
  margin-top: 20px;
}
@media (max-width:450px) {
  .demo__title h4 {
    font-size: 18px;
  }
}
.demo__title h4 a:hover {
  color: var(--clr-theme-1);
}
.demo__title a:hover {
  color: var(--tp-theme-1);
}
.demo__tag {
  font-size: 13px;
  line-height: 10px;
}
.demo__content {
  padding-top: 18px;
  padding-bottom: 25px;
}

/*----------------------------------------*/
/*  EXPLORE CSS START
/*----------------------------------------*/
.explore__wrapper {
  background: var(--clr-bg-2);
  padding: 45px 50px 50px;
  position: relative;
  z-index: 5;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .explore__wrapper {
    padding: 45px 30px 50px;
  }
}

.explore__pages {
  display: inline-flex;
  align-content: center;
  background: var(--clr-theme-2);
  flex-wrap: wrap;
}
@media (max-width:450px) {
  .explore__pages {
    flex-direction: column;
    width: 100%;
    padding: 20px 0;
    text-align: center;
  }
}

.explore__thumb {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .explore__thumb {
    width: 40%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .explore__thumb {
    width: 45%;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .explore__thumb {
    display: none;
  }
}

.explore__item > p {
  margin-bottom: 162px;
  max-width: 300px;
  color: #353535;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .explore__item > p {
    max-width: 100%;
    margin-bottom: 60px;
  }
}

.explore__content {
  padding: 9px 25px;
}
.explore__content:not(:first-child) {
  border-left: 1px solid var(--clr-border-1);
}
@media (max-width:450px) {
  .explore__content:not(:first-child) {
    border-left: 0;
  }
}
.explore__content h3 {
  font-size: 32px;
  line-height: 1;
  color: #0F0E0E;
}
.explore__content span {
  font-size: 14px;
}

.explore__title {
  font-size: 26px;
  margin-bottom: 20px;
}

.explore__test {
  padding: 45px 50px 50px;
  border: 1px solid var(--clr-border-1);
}
@media (max-width: 575px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .explore__test {
    padding: 45px 30px 50px;
  }
}

.explore__test > p {
  margin-bottom: 45px;
  color: #353535;
}

/*----------------------------------------*/
/*  Description CSS START
/*----------------------------------------*/
.theme__description-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--clr-theme-1);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .theme__description-grid {
    grid-template-columns: auto;
  }
}

.title__inner {
  display: flex;
  align-items: start;
  gap: 15px;
}

.theme__description-item {
  padding: 35px 60px 30px 60px;
}
.theme__description-item:not(:last-child) {
  border-right: 1px solid var(--clr-border-1);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px) {
  .theme__description-item {
    padding: 35px 30px 30px 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .theme__description-item {
    border-bottom: 1px solid var(--clr-border-1);
    border-right: 1px solid var(--clr-border-1);
  }
  .theme__description-item:nth-child(2) {
    border-right: 0;
  }
  .theme__description-item:last-child {
    border-bottom: 0;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .theme__description-item {
    border-bottom: 1px solid var(--clr-border-1);
  }
  .theme__description-item:not(:last-child) {
    border-right: 0;
  }
  .theme__description-item:last-child {
    border-bottom: 0;
  }
}

.theme__description-content > p {
  margin-bottom: 0;
}

.title__inner .title {
  color: var(--clr-common-white);
  margin-bottom: 18px;
}
@media (max-width: 575px) {
  .title__inner .title br {
    display: none;
  }
}

.title__inner .text p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

/*----------------------------------------*/
/* PROMOTION CSS START
/*----------------------------------------*/
.promotion__area {
  padding-top: 145px;
  padding-bottom: 145px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .promotion__area {
    padding-top: 75px;
    padding-bottom: 75px;
  }
}

.promotion__item {
  border: 1px solid var(--clr-border-1);
  padding: 45px 50px 50px;
}
@media (max-width:450px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .promotion__item {
    padding: 35px 30px 30px;
  }
}

.header__element ul li {
  list-style: none;
  filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.1));
}
.header__element ul li:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .header__element ul li {
    width: 100% !important;
  }
}
.header__element ul li:nth-child(1) {
  width: 75%;
}
.header__element ul li:nth-child(2) {
  width: 80%;
}
.header__element ul li:nth-child(3) {
  width: 85%;
}
.header__element ul li:nth-child(4) {
  width: 90%;
}
.header__element ul li:nth-child(5) {
  width: 95%;
}
.header__element ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promotion__content span {
  color: var(--clr-theme-1);
}
.promotion__content h3 {
  margin-bottom: 20px;
  font-size: 26px;
}
@media (max-width:450px) {
  .promotion__content h3 {
    font-size: 22px;
  }
}
.promotion__content > p {
  margin-bottom: 40px;
  max-width: 330px;
  font-size: 18px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .promotion__content > p {
    max-width: 100%;
  }
}

.footer__element ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 40px;
}
.footer__element ul li {
  list-style: none;
}
.footer__element ul li img {
  width: 100%;
}

/*----------------------------------------*/
/*  ELEMENTS CSS START
/*----------------------------------------*/
.elements__area {
  padding-bottom: 90px;
  padding-top: 115px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .elements__area {
    padding-bottom: 55px;
    padding-top: 90px;
  }
}

.elements__item {
  width: 177px;
  display: inline-flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 10px 0;
  padding: 16px 20px;
  background: var(--clr-common-white);
  box-shadow: 0px 10.7708px 26.9271px rgba(0, 0, 0, 0.07);
}
.elements__item span {
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--clr-text-3);
}

/*----------------------------------------*/
/*  DEVICE CSS START
/*----------------------------------------*/
.device__content-wrapper {
  padding-right: 130px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .device__content-wrapper {
    padding-right: 30px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .device__content-wrapper {
    padding-right: 0px;
  }
}

.device__friendly-area {
  padding-top: 115px;
  padding-bottom: 110px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .device__friendly-area {
    padding-top: 80px;
    padding-bottom: 70px;
  }
}

.device__content p {
  margin-bottom: 50px;
  color: #4D4D4D;
}

.device__thumb-wrapper {
  position: relative;
}

.device__thumb-wrapper:before {
  position: absolute;
  width: 472.68px;
  height: 472.68px;
  background: linear-gradient(180deg, rgba(83, 85, 223, 0.33) 0%, rgba(255, 201, 97, 0.17) 100%);
  mix-blend-mode: normal;
  transform: rotate(90deg);
  content: "";
  border-radius: 50%;
  z-index: -1;
  right: 0;
  bottom: -15%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .device__thumb-wrapper:before {
    width: 450.68px;
    height: 450.68px;
    bottom: -25%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .device__thumb-wrapper:before {
    width: 450.68px;
    height: 450.68px;
    bottom: -19%;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .device__thumb-wrapper:before {
    width: 350.68px;
    height: 350.68px;
    bottom: -16%;
  }
}
@media (max-width:450px) {
  .device__thumb-wrapper:before {
    width: 292.68px;
    height: 292.68px;
  }
}

.device__thumb {
  max-width: 600px;
}

/*----------------------------------------*/
/*  LAYOUT CSS START
/*----------------------------------------*/
.layout__area {
  padding-bottom: 120px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .layout__area {
    padding-bottom: 80px;
  }
}
.layout__area .layout__wrapper:before {
  background: var(--clr-bg-2);
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.layout__wrapper {
  position: relative;
  padding: 45px 46px 105px;
  overflow: hidden;
  background-size: 75%;
  background-repeat: no-repeat;
  background-position: right;
  height: 465px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .layout__wrapper {
    padding: 45px 30px 50px;
  }
}
@media (max-width:450px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .layout__wrapper {
    padding: 35px 30px 35px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .layout__wrapper {
    margin-bottom: 50px;
  }
}

.animation__thumb {
  height: 351px;
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
}

.animation__content {
  margin-bottom: 50px;
  max-width: 290px;
}
.animation__content h3 {
  font-size: 26px;
  margin-bottom: 20px;
}
.animation__content h3 span {
  color: #527C01;
}
.animation__content p {
  margin-bottom: 30px;
  color: #353535;
}

.layout__wrapper-2 {
  height: 465px;
  position: relative;
  padding: 30px 30px;
  border: 1px solid rgba(20, 20, 20, 0.1);
}
@media (max-width: 575px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .layout__wrapper-2 {
    padding: 50px 30px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .layout__wrapper-2 {
    background-image: none !important;
  }
}

.layout__shape-3 {
  position: absolute;
  top: 50px;
  right: 50px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .layout__shape-3 {
    top: auto;
  }
}

.layout__content h3 {
  margin-bottom: 15px;
}

.layout__thumb {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
}
.layout__thumb img {
  width: 100%;
}

.layout__content p {
  margin-bottom: 30px;
}

.animation__thumb {
  right: 0;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}
@media (max-width:450px) {
  .animation__thumb {
    top: 70%;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .animation__thumb {
    top: 70%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .animation__thumb {
    top: 40%;
  }
}

/*----------------------------------------*/
/*  FOOTER CSS START
/*----------------------------------------*/
.footer__title {
  font-size: 80px;
  line-height: 1.2;
  text-transform: capitalize;
  color: var(--clr-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer__title {
    font-size: 75px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer__title {
    font-size: 66px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer__title {
    font-size: 60px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .footer__title {
    font-size: 40px;
  }
}
@media (max-width:450px) {
  .footer__title {
    font-size: 38px;
  }
}
.footer__title .highlight {
  color: var(--clr-theme-2);
}
.footer__overlay {
  position: relative;
  z-index: 5;
  background: var(--clr-theme-1);
}
.footer__overlay::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(180deg, #5355DF 17.41%, rgba(83, 85, 223, 0.8) 100%);
}
.footer__shpae {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

.footer__content > p {
  color: var(--clr-common-white);
  max-width: 603px;
  margin: 0 auto;
  margin-bottom: 55px;
  font-size: 18px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer__content > p {
    margin-bottom: 35px;
  }
}

.footer__area {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .footer__area {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

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