/*CSS Table Of Content Ends Here*/
:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme: #59D2F3;
  --theme2: #5AE70E;
  --theme3: #A80EE6;
  --header: #17012C;
  --text: #1E1E1E;
  --text2: #888888;
  --border: #E2E2E2;
  --border2: #434343;
  --border3: rgba(0, 0, 0, 0.20);
  --bg: #F5F5F5;
  --bg2: #F3F3F3;
  --testi-bg: #222;
  --box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
}

.theme-btn {
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  background-color: transparent;
  color: var(--header);
  font-size: 18px;
  font-weight: 500;
  padding: 18px 35px;
  transition: 0.5s ease-in-out;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  overflow: hidden;
  text-align: center;
  border-radius: 100px;
  line-height: 1;
  font-family: "Teko", sans-serif;
  border: 1px solid var(--header);
  min-width: 160px;
}
.theme-btn::after {
  content: "";
  background-color: var(--theme);
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  clip-path: circle(0% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
  z-index: -1;
}
.theme-btn i {
  margin-left: 10px;
}
.theme-btn .icon-1 {
  position: absolute;
  top: 4px;
  left: 14px;
  transition: all 0.4s ease-in-out;
}
.theme-btn .icon-2 {
  position: absolute;
  bottom: 8px;
  right: 14px;
  transition: all 0.4s ease-in-out;
}
.theme-btn:hover {
  background-color: var(--theme);
  color: var(--header);
  border: 1px solid var(--theme);
}
.theme-btn:hover::after {
  clip-path: circle(100% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
}
.theme-btn.border-white {
  border: 1px solid var(--white);
  color: var(--white);
}
.theme-btn.border-white:hover {
  color: var(--header);
  border: 1px solid var(--theme) !important;
}
.theme-btn.border-white:hover .icon-1, .theme-btn.border-white:hover .icon-2 {
  filter: brightness(0);
}
.theme-btn.border-white .icon-1, .theme-btn.border-white .icon-2 {
  filter: grayscale(100%) brightness(300%);
  transition: all 0.4s ease-in-out;
}
.theme-btn.border-white .icon-1 img, .theme-btn.border-white .icon-2 img {
  filter: grayscale(100%) brightness(300%);
  transition: all 0.4s ease-in-out;
}
.theme-btn.border-white-2 {
  border: 1px solid var(--white);
  color: var(--white);
}
.theme-btn.border-white-2::after {
  content: "";
  background-color: var(--theme2);
}
.theme-btn.border-white-2:hover {
  color: var(--header);
  border: 1px solid var(--theme2) !important;
}
.theme-btn.border-white-2:hover .icon-1, .theme-btn.border-white-2:hover .icon-2 {
  filter: brightness(0);
}
.theme-btn.border-white-2 .icon-1, .theme-btn.border-white-2 .icon-2 {
  filter: grayscale(100%) brightness(300%);
  transition: all 0.4s ease-in-out;
}
.theme-btn.border-white-2 .icon-1 img, .theme-btn.border-white-2 .icon-2 img {
  filter: grayscale(100%) brightness(300%);
  transition: all 0.4s ease-in-out;
}
.theme-btn.theme-color-2::after {
  background-color: var(--theme2);
}
.theme-btn.theme-color-2:hover {
  background-color: var(--theme2);
}
@media (max-width: 767px) {
  .theme-btn {
    padding: 20px 32px;
  }
}
@media (max-width: 575px) {
  .theme-btn {
    padding: 18px 30px;
    font-size: 14px;
  }
}

.link-btn {
  color: var(--header);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  display: inline-block;
}
.link-btn i {
  margin-left: 10px;
}
.link-btn:hover {
  color: var(--theme);
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  color: var(--text);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--text);
  outline: none;
}

input {
  color: var(--text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Teko", sans-serif;
  margin: 0px;
  padding: 0;
  color: var(--header);
  text-transform: uppercase;
  transition: all 0.4s ease-in-out;
}

h1 {
  font-size: 40px;
  font-weight: 600;
  line-height: 80%;
}

h2 {
  font-size: 32px;
  line-height: 89%;
  font-weight: 500;
}
@media (max-width: 1199px) {
  h2 {
    font-size: 70px;
    line-height: 100%;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 65px;
    line-height: 100%;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 60px;
  }
}

h3 {
  font-size: 28px;
  font-weight: 400;
}
@media (max-width: 575px) {
  h3 {
    font-size: 34px;
  }
}

h4 {
  font-size: 24px;
  font-weight: 600;
}

h5 {
  font-size: 20px;
  font-weight: 800;
}

h6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 145%;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

p {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

span {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

.footer-wrapper {
  padding-bottom: 60px;
}
.footer-wrapper .footer-wrapper-items {
  display: flex;
  justify-content: space-between;
  margin-top: -5px;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .footer-wrapper .footer-wrapper-items {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.footer-wrapper .footer-wrapper-items .footer-social-contact .contact-list li {
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: "Teko", sans-serif;
  text-decoration: underline;
  color: var(--black);
}
.footer-wrapper .footer-wrapper-items .footer-social-contact .contact-list li:not(:last-child) {
  margin-bottom: 5px;
}
@media (max-width: 1199px) {
  .footer-wrapper .footer-wrapper-items .footer-social-contact .contact-list li br {
    display: block;
  }
}
.footer-wrapper .footer-wrapper-items .footer-social-contact .social-icon {
  gap: 12px;
  margin-top: 30px;
}
.footer-wrapper .footer-wrapper-items .footer-social-contact .social-icon a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: transparent;
  color: var(--text2);
  border: 1px solid var(--text2);
  border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
}
.footer-wrapper .footer-wrapper-items .footer-social-contact .social-icon a:hover {
  background-color: var(--black);
  color: var(--white);
  border: 1px solid var(--white);
}
.footer-wrapper .footer-wrapper-items .footer-author span {
  font-size: 20px;
  font-weight: 500;
  font-family: "Teko", sans-serif;
  color: var(--text2);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
}
.footer-wrapper .footer-wrapper-items .footer-author h4 {
  font-size: 20px;
  font-weight: 500;
  text-decoration: underline;
}
.footer-wrapper .footer-wrapper-items p {
  font-size: 20px;
  font-weight: 500;
  color: var(--black);
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
  text-align: right;
}
@media (max-width: 575px) {
  .footer-wrapper .footer-wrapper-items p {
    text-align: left;
  }
}
@media (max-width: 1199px) {
  .footer-wrapper .footer-wrapper-items p br {
    display: block;
  }
}
.footer-wrapper.style-2 {
  padding-top: 60px;
  padding-bottom: 0;
}
@media (max-width: 1899px) {
  .footer-wrapper .exoplus-text img {
    width: 100%;
    height: 100%;
  }
}
.footer-wrapper.dark-text-style .footer-wrapper-items .footer-social-contact .contact-list li {
  color: var(--white);
}
.footer-wrapper.dark-text-style .footer-wrapper-items .footer-social-contact .contact-list li a {
  color: var(--white);
}
.footer-wrapper.dark-text-style .footer-wrapper-items .footer-social-contact .social-icon a:hover {
  background-color: var(--white);
  color: var(--header);
  border: 1px solid var(--white);
}
.footer-wrapper.dark-text-style .footer-wrapper-items .footer-author span {
  color: var(--text2);
}
.footer-wrapper.dark-text-style .footer-wrapper-items .footer-author h4 {
  color: var(--white);
}
.footer-wrapper.dark-text-style .footer-wrapper-items .footer-author h4 a {
  color: var(--white);
}
.footer-wrapper.dark-text-style .footer-wrapper-items p {
  color: var(--white);
}

@media (max-width: 1899px) {
  .exoplus-text img {
    width: 100%;
    height: 100%;
  }
}
.exoplus-text.style-padding {
  margin-bottom: 50px;
  display: inline-block;
}

.footer-newsletter-items {
  padding: 120px 0 60px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .footer-newsletter-items {
    padding: 100px 0 60px;
  }
}
@media (max-width: 991px) {
  .footer-newsletter-items {
    padding: 80px 0 60px;
  }
}
.footer-newsletter-items .newsletter-content {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 9;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .footer-newsletter-items .newsletter-content {
    gap: 40px;
    flex-wrap: wrap;
  }
}
.footer-newsletter-items .newsletter-content .news-cont {
  max-width: 750px;
}
.footer-newsletter-items .newsletter-content h2 {
  font-size: 100px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -3.4px;
  line-height: 1;
}
@media (max-width: 1899px) {
  .footer-newsletter-items .newsletter-content h2 {
    letter-spacing: initial;
  }
}
@media (max-width: 1399px) {
  .footer-newsletter-items .newsletter-content h2 {
    font-size: 160px;
  }
}
@media (max-width: 1199px) {
  .footer-newsletter-items .newsletter-content h2 {
    font-size: 150px;
  }
}
@media (max-width: 991px) {
  .footer-newsletter-items .newsletter-content h2 {
    font-size: 130px;
  }
}
@media (max-width: 767px) {
  .footer-newsletter-items .newsletter-content h2 {
    font-size: 100px;
  }
}
@media (max-width: 575px) {
  .footer-newsletter-items .newsletter-content h2 {
    font-size: 80px;
  }
}
.footer-newsletter-items .newsletter-content h2 span {
  font-weight: 400;
}
.footer-newsletter-items .newsletter-content p {
  font-size: 30px;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 145%;
  font-size: 18px;
  max-width: 550px;
  margin-top: 15px;
}
@media (max-width: 1399px) {
  .footer-newsletter-items .newsletter-content p {
    font-size: 28px;
    line-height: 150%;
  }
}
@media (max-width: 991px) {
  .footer-newsletter-items .newsletter-content p {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .footer-newsletter-items .newsletter-content p {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .footer-newsletter-items .newsletter-content p {
    font-size: 22px;
  }
}
.footer-newsletter-items .contact-btn {
  width: 180px;
  height: 180px;
  line-height: 180px;
  display: inline-block;
  background-color: var(--white);
  font-size: 24px;
  text-transform: uppercase;
  color: var(--header);
  text-align: center;
  font-weight: 500;
  border-radius: 50%;
  font-family: "Teko", sans-serif;
}
@media (max-width: 767px) {
  .footer-newsletter-items .contact-btn {
    width: 130px;
    height: 130px;
    line-height: 130px;
    font-size: 18px;
  }
}
.footer-newsletter-items .contact-btn img {
  display: block;
  text-align: center;
}
.footer-newsletter-items .contact-btn:hover {
  background-color: var(--theme3);
  color: var(--white);
}
.footer-newsletter-items .newsletter-items {
  margin-top: 60px;
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .footer-newsletter-items .newsletter-items {
    flex-wrap: wrap;
    gap: 50px;
  }
}
.footer-newsletter-items .newsletter-items ul {
  display: flex;
  align-items: center;
  gap: 150px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding-right: 330px;
}
@media (max-width: 1600px) {
  .footer-newsletter-items .newsletter-items ul {
    padding-right: 0;
    border: none;
  }
}
@media (max-width: 1199px) {
  .footer-newsletter-items .newsletter-items ul {
    flex-wrap: wrap;
    gap: 50px;
    padding-right: 0;
    border-right: none;
  }
}
.footer-newsletter-items .newsletter-items ul li {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}
.footer-newsletter-items .newsletter-items ul li span {
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--white);
  font-family: "Teko", sans-serif;
  display: block;
  margin-bottom: 10px;
}
.footer-newsletter-items .newsletter-items ul li br {
  display: block !important;
}
.footer-newsletter-items .newsletter-items .footer-input {
  position: relative;
  max-width: 450px;
  width: 100%;
}
.footer-newsletter-items .newsletter-items .footer-input input {
  width: 100%;
  border: none;
  background: transparent;
  color: var(--white);
  font-size: 30px;
  text-transform: uppercase;
  font-family: "Teko", sans-serif;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 20px;
}
.footer-newsletter-items .newsletter-items .footer-input input::placeholder {
  color: var(--white);
  opacity: 0.5;
}
.footer-newsletter-items .newsletter-items .footer-input .newsletter-btn {
  position: absolute;
  bottom: 30px;
  right: 0;
}

.footer-section {
  position: relative;
}
.footer-section .footer-circle-shape {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 1399px) {
  .footer-section .footer-circle-shape {
    display: none;
  }
}

a.exoplus-text {
  color: white;
}

.footer-wrapper.dark-text-style h2 {
  font-size: 300px;
}

p.copywrite_text {
  color: var(--white);
}

.widget-area h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .menu-thumb {
    display: none !important;
  }
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.header-main .main-menu ul {
  margin-bottom: 0;
}
.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 50px;
}
@media (max-width: 1899px) {
  .header-main .main-menu ul li {
    margin-inline-end: 35px;
  }
}
@media (max-width: 1600px) {
  .header-main .main-menu ul li {
    margin-inline-end: 30px;
  }
}
@media (max-width: 1399px) {
  .header-main .main-menu ul li {
    margin-inline-end: 25px;
  }
}
.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}
.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  padding: 20px 0;
  text-align: left;
  position: relative;
  text-transform: uppercase;
  transition: all 0.4s ease-in-out;
  font-family: "Teko", sans-serif;
}
.header-main .main-menu ul li a .head-icon {
  margin-left: 0;
  margin-right: 5px;
}
.header-main .main-menu ul li a i {
  margin-left: 5px;
}
.header-main .main-menu ul li a:hover {
  color: var(--theme) !important;
}

.header-main .main-menu ul li .sub-menu li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}
.header-main .main-menu ul li .sub-menu li:not(:last-child) {
  padding-bottom: 15px;
}
.header-main .main-menu ul li .sub-menu li a {
  position: relative;
  z-index: 11;
  font-size: 18px;
  font-weight: 500;
  color: var(--header);
  padding: 0 0;
  padding-bottom: 0;
  padding-top: 0;
  text-transform: uppercase;
  font-family: "Teko", sans-serif;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-main .main-menu ul li .sub-menu li a:hover {
  color: var(--white) !important;
}
.header-main .main-menu ul li .sub-menu li .sub-menu {
  left: 0;
  top: auto;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.header-main .main-menu ul li .sub-menu li:hover > a {
  color: var(--theme) !important;
}
.header-main .main-menu ul li .sub-menu li:hover > a::after {
  color: var(--theme);
}
.header-main .main-menu ul li .sub-menu li:hover > .sub-menu {
  left: 0;
  top: 100%; /* or whatever works for your menu */
  height: auto;
  width: auto;
  clip-path: none;
  white-space: normal;
}
.header-main .main-menu ul li .sub-menu li.has-dropdown > a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--theme);
}
.header-main .main-menu ul li .has-homemenu {
  width: 800px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -250px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items {
    flex-wrap: wrap;
  }
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 14px 20px;
  color: var(--white) !important;
  width: initial;
  font-size: 18px;
  text-align: center;
  background-color: var(--black);
  line-height: initial;
  justify-content: center;
  border-radius: 100px;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn::after, .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn::before {
  display: none;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  background-color: var(--white);
  color: var(--header) !important;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
.header-main .main-menu ul li:hover > a {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > a::after {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > .sub-menu, .header-main .main-menu ul li:focus-within > .sub-menu {
  left: 0;
  top: 60%; /* or whatever works for your menu */
  height: auto;
  width: auto;
  clip-path: none;
  white-space: normal;

}
.header-main .header-right {
  gap: 30px;
}
@media (max-width: 1399px) {
  .header-main .header-right {
    gap: 20px;
  }
}
@media (max-width: 1199px) {
  .header-main .header-right .header-button {
    display: none;
  }
}
.header-main .header-right .search-icon {
  color: var(--header);
  font-size: 18px;
}
.header-main .sidebar__toggle {
  cursor: pointer;
}
.header-main .sidebar__toggle .header-bar {
  position: relative;
  width: 31px;
  height: 18px;
}
.header-main .sidebar__toggle .header-bar span {
  position: absolute;
  width: 100%;
  height: 2px;
  display: inline-block;
  transition: all 0.3s;
  left: 0;
  background: var(--header);
  overflow: hidden;
}
.header-main .sidebar__toggle .header-bar span:first-child {
  top: 0;
  background: var(--header);
  left: 16px;
  width: 15px;
}
.header-main .sidebar__toggle .header-bar span:nth-child(2) {
  top: 44%;
  background: var(--header);
  width: 30px;
}
.header-main .sidebar__toggle .header-bar span:last-child {
  bottom: 0;
  background: var(--header);
  width: 15px;
}
.header-main .sidebar__toggle .header-bar.active span:first-child {
  transform: rotate(45deg) translate(3px, 9px);
}
.header-main .sidebar__toggle .header-bar.active span:nth-child(2) {
  opacity: 0;
}
.header-main .sidebar__toggle .header-bar.active span:last-child {
  transform: rotate(-45deg) translate(3px, -9px);
}
.header-main .sidebar__toggle .header-bar:hover {
  cursor: pointer;
}

.header-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
.header-1 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 1600px) {
  .header-1 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .header-1 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .header-1 .container-fluid {
    padding: 0 30px;
  }
}
.header-1 .sidebar__toggle .header-bar span {
  background: var(--header);
}
.header-1 .sidebar__toggle .header-bar span:first-child {
  background: var(--header);
}
.header-1 .sidebar__toggle .header-bar span:nth-child(2) {
  background: var(--header);
}
.header-1 .sidebar__toggle .header-bar span:last-child {
  background: var(--header);
}
.header-1.header-2 .sidebar__toggle .theme-btn {
  padding: 16px 20px;
  background-color: var(--white);
  min-width: 90px;
}
.header-1.header-2 .sidebar__toggle .theme-btn::before, .header-1.header-2 .sidebar__toggle .theme-btn::after {
  background-color: var(--theme2);
}
.header-1.header-2 .sidebar__toggle .theme-btn .icon-1 {
  position: absolute;
  top: 0px;
  left: 14px;
  transition: all 0.4s ease-in-out;
}
.header-1.header-2 p {
  text-transform: uppercase;
  font-size: 20px;
  color: #888888;
  width: 100%;
  text-align: center;
  font-family: "Teko", sans-serif;
}
@media (max-width: 1199px) {
  .header-1.header-2 p {
    display: none;
  }
}
.header-1.header-2 p a {
  color: #888888;
}
.header-1.header-3 .header-main .main-menu ul li a {
  color: var(--white);
}
.header-1.header-3 .header-main .main-menu ul li a:hover {
  color: var(--theme3) !important;
}
.header-1.header-3 .header-main .main-menu ul li .sub-menu {
  color: var(--header);
}
.header-1.header-3 .header-main .main-menu ul li .sub-menu li a {
  color: var(--header);
}
.header-1.header-3 .header-main .main-menu ul li .sub-menu li a:hover {
  color: var(--white) !important;
}
.header-1.header-3 .header-main .main-menu ul li .sub-menu li:hover > a {
  color: var(--theme3) !important;
}
.header-1.header-3 .header-main .main-menu ul li .sub-menu li:hover > a::after {
  color: var(--theme3);
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.9s;
  background-color: var(--white);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: var(--box-shadow);
}
.sticky.header-1 .logo {
  filter: brightness(0);
}
.sticky.header-1 .header-main .main-menu ul li a {
  color: var(--header);
}
.sticky.header-1 .header-main .main-menu ul li a:hover {
  color: var(--theme) !important;
}
.sticky.header-1 .header-button .theme-btn {
  background-color: var(--black);
  color: var(--white);
}
.sticky.header-1 .sidebar__toggle {
  cursor: pointer;
}
.sticky.header-1 .sidebar__toggle .header-bar span {
  background: var(--header);
}
.sticky.header-1 .sidebar__toggle .header-bar span:first-child {
  background: var(--header);
}
.sticky.header-1 .sidebar__toggle .header-bar span:nth-child(2) {
  background: var(--header);
}
.sticky.header-1 .sidebar__toggle .header-bar span:last-child {
  background: var(--header);
}
.sticky.header-2 .sidebar__toggle .theme-btn {
  background-color: var(--black);
  color: var(--white);
}
.sticky.header-2 .sidebar__toggle .theme-btn::before, .sticky.header-2 .sidebar__toggle .theme-btn::after {
  background-color: var(--theme2);
}
.sticky.header-2 .sidebar__toggle .theme-btn .icon-1 {
  filter: brightness(100);
}
.sticky.header-2 .sidebar__toggle .theme-btn .icon-2 {
  filter: brightness(100);
}
.sticky.header-2 .sidebar__toggle .theme-btn:hover {
  color: var(--header);
}
.sticky.header-2 .sidebar__toggle .theme-btn:hover .icon-1 {
  filter: brightness(0);
}
.sticky.header-2 .sidebar__toggle .theme-btn:hover .icon-2 {
  filter: brightness(0);
}
.sticky.header-3 .header-main .main-menu ul li a {
  color: var(--header);
}
.sticky.header-3 .header-main .main-menu ul li a:hover {
  color: var(--theme3) !important;
}

.offcanvas__info {
  background: var(--white) none repeat scroll 0 0;
  border-left: 2px solid var(--theme);
  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: 99999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.offcanvas__info.style-2 {
  width: 600px;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
@media (max-width: 767px) {
  .offcanvas__info.style-2 {
    width: 500px;
  }
}
@media (max-width: 575px) {
  .offcanvas__info.style-2 {
    max-width: 400px;
    width: 100%;
  }
}
.offcanvas__info.style-2 .offcanvas__content .offcanvas__close {
  position: relative;
  z-index: 9;
  width: initial;
  height: initial;
  line-height: initial;
  border-radius: initial;
  background-color: transparent;
}
.offcanvas__info.style-2 .offcanvas__content .offcanvas__close .close-btn {
  display: inline-block;
  color: var(--white);
  font-weight: 500;
  text-align: center;
  padding: 10px 20px 8px;
  background-color: var(--black);
  position: relative;
  z-index: 9;
  font-family: "Teko", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 1;
  transition: all 0.4s ease-in-out;
  border-radius: 30px;
}
.offcanvas__info.style-2 .offcanvas__content .offcanvas__close .close-btn:hover {
  color: var(--header);
  background-color: var(--theme);
}
.offcanvas__info.style-2 .offcanvas__content .offcanvas__close i {
  color: var(--white);
}
.offcanvas__info.style-2 .social-text {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  position: relative;
  z-index: 9;
  width: 100%;
}
@media (max-width: 575px) {
  .offcanvas__info.style-2 .social-text {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.offcanvas__info.style-2 .social-text li {
  padding: 18px 30px;
  text-align: center;
  width: 100%;
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
  border-radius: 4px;
}
@media (max-width: 575px) {
  .offcanvas__info.style-2 .social-text li {
    padding-bottom: 0;
  }
}
.offcanvas__info.style-2 .social-text li:not(:last-child) {
  border-right: 1px solid var(--border);
}
.offcanvas__info.style-2 .social-text li a {
  font-size: 24px;
  color: var(--header);
  font-family: "Teko", sans-serif;
  position: relative;
  border-radius: 4px;
}
.offcanvas__info.style-2 .social-text li a:hover::before {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}
.offcanvas__info.style-2::-webkit-scrollbar {
  display: none;
}

.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 {
  width: 150px;
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}
.offcanvas__wrapper .offcanvas-title {
  font-size: 32px;
  margin-bottom: 15px;
}
.offcanvas__wrapper .offcanvas__content p {
  color: var(--header);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  position: relative;
  z-index: 9;
  cursor: pointer;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--black);
}
.offcanvas__wrapper .offcanvas__content .social-icon {
  margin-top: 30px;
  gap: 10px;
  margin-bottom: 30px;
}
.offcanvas__wrapper .offcanvas__content .social-icon a {
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: transparent;
  color: var(--header);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border);
}
.offcanvas__wrapper .offcanvas__content .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact h3 {
  font-size: 32px;
  margin-bottom: 15px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li {
  font-size: 16px;
  color: var(--header);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li:not(:last-child) {
  margin-bottom: 15px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li span {
  font-weight: 600;
  color: var(--header);
  font-size: 18px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li a {
  font-size: 16px;
  color: var(--header);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: initial;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button {
  display: flex;
  align-items: center;
}
.offcanvas__wrapper .offcanvas__content .offcanvas-button {
  margin-top: 300px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1399px) {
  .offcanvas__wrapper .offcanvas__content .offcanvas-button {
    margin-top: 30px;
  }
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 350px;
  }
}
@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}
.breadcrumb-wrapper {
  position: relative;
  overflow: hidden;
  z-index: 9;
}
.breadcrumb-wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.7);
}
.breadcrumb-wrapper .page-heading {
  position: relative;
  padding: 170px 0 170px;
  z-index: 9;
  text-align: center;
}
@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading {
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    padding: 140px 0;
  }
}
.breadcrumb-wrapper .page-heading h1 {
  color: var(--white);
  font-size: 64px;
  position: relative;
  z-index: 9;
  font-weight: 700;
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 44px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items {
  display: inline-flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
  justify-content: center;
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items {
    margin-top: 15px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li {
  color: var(--white);
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
  color: var(--theme);
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a i {
  color: var(--theme);
  margin-right: 5px;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
  color: var(--white);
}

.error-content {
  text-align: center;
}
.error-content h2 {
  font-size: 80px;
  font-weight: 400;
  line-height: 1;
  color: var(--theme);
}
.error-content h3 {
  font-size: 90px;
  font-weight: 500;
  color: var(--black);
  line-height: 1;
}
@media (max-width: 575px) {
  .error-content h3 {
    font-size: 60px;
  }
}
.error-content p {
  max-width: 360px;
  margin: 0 auto 50px;
}

.header-main .main-menu ul li a {
  color: var(--header);
}

.header-main .main-menu ul li a:focus, .header-main .main-menu a:focus, a:focus, button:focus, input:focus, textarea:focus, .mean-container .mean-nav ul li a:focus {
  outline: 1px dashed !important;
}

.offcanvas__info.style-2 .offcanvas__content .offcanvas__close .close-btn:focus-within {
  color: var(--header);
  background-color: var(--theme);
}

.header-main .main-menu ul li:focus-within > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}

.header-main .main-menu ul li .sub-menu li:focus-within > .sub-menu {
  transform: translateY(1);
  visibility: visible;
  opacity: 1;
}

.logo a {
  font-size: 25px;
  text-transform: capitalize;
  font-weight: 600;
}

.blog-page-content-area a {
  text-decoration: underline;
}



body.archive .archive-page-content-area a {
  text-decoration: underline;
}
body.archive .header-main .main-menu ul li > a {
  color: var(--white);
}
body.archive .header-main .main-menu .sub-menu li a {
  color: var(--header);
}
body.archive .header-main .logo a {
  color: var(--white);
}
body.archive .header-main .sidebar__toggle .header-bar span {
  background: var(--white);
}
body.search .archive-page-content-area a {
  text-decoration: underline;
}
body.search .header-main .main-menu ul li > a {
  color: var(--white);
}
body.search .header-main .main-menu .sub-menu li a {
  color: var(--header);
}
body.search .header-main .logo a {
  color: var(--white);
}
body.search .header-main .sidebar__toggle .header-bar span {
  background: var(--white);
}
body.page .archive-page-content-area a {
  text-decoration: underline;
}
body.page .header-main .main-menu ul li > a {
  color: var(--white);
}
body.page .header-main .main-menu .sub-menu li a {
  color: var(--header);
}
body.page .header-main .logo a {
  color: var(--white);
}
body.page .header-main .sidebar__toggle .header-bar span {
  background: var(--white);
}
body.single .archive-page-content-area a {
  text-decoration: underline;
}
body.single .header-main .main-menu ul li > a {
  color: var(--white);
}
body.single .header-main .main-menu .sub-menu li a {
  color: var(--header);
}
body.single .header-main .logo a {
  color: var(--white);
}
body.single .header-main .sidebar__toggle .header-bar span {
  background: var(--white);
}

header .header-1.sticky .logo a {
  color: var(--header);
}

.widget-area a {
  text-decoration: underline;
}

.content-area a {
  text-decoration: underline;
}

.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 .mean-nav > ul .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .mean-container .mean-nav > ul .homemenu-items {
    flex-wrap: wrap;
  }
}
.mean-container .mean-nav > ul .homemenu-items .homemenu {
  position: relative;
}
@media (max-width: 1199px) {
  .mean-container .mean-nav > ul .homemenu-items .homemenu {
    max-width: 300px;
    text-align: center;
    margin: 0 auto;
    border: 1px solid var(--border);
    padding: 10px;
  }
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 12px 20px;
  color: var(--white) !important;
  width: initial;
  font-size: 16px;
  text-align: center;
  border-radius: 0;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
}

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

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: var(--header);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border) !important;
  border: none;
}
@media (max-width: 575px) {
  .mean-container .mean-nav ul li a {
    font-size: 16px;
  }
}
.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
}

.mean-container .mean-nav ul li > a > i {
  display: none;
}

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

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

.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);
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}

.mobile-menus .mean-nav {
  background: none;
  margin-top: 0;
  margin-top: 100px;
  margin-bottom: 100px;
}
.mobile-menus .mean-nav ul li a {
  font-size: 26px;
  padding: 16px 0;
}

.preloader {
  align-items: center;
  cursor: default;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}
.preloader .animation-preloader {
  z-index: 1000;
}
.preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--theme);
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .spinner {
    width: 7.5em;
    height: 7.5em;
    margin: 0 auto 1.5em auto;
  }
}
.preloader .animation-preloader .txt-loading {
  font: bold 5em "Teko", sans-serif, "Poppins", sans-serif;
  text-align: center;
  user-select: none;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 2.5em;
  }
}
.preloader .animation-preloader .txt-loading .letters-loading {
  color: var(--theme);
  position: relative;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading::before {
  animation: letters-loading 4s infinite;
  color: var(--header);
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: "Teko", sans-serif;
  position: absolute;
  top: -3px;
  transform: rotateY(-90deg);
}
.preloader p {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--theme);
}
.preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}
.preloader .loader .row {
  height: 100%;
}
.preloader .loader .loader-section {
  padding: 0px;
}
.preloader .loader .loader-section .bg {
  background-color: var(--bg);
  height: 100%;
  left: 0;
  width: 100%;
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}
.preloader.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}
.preloader.loaded .loader-section .bg {
  width: 0;
  transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

.search-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: rgba(255, 255, 255, 0.9);
}
.search-wrap .search-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.search-wrap .search-cell {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}
.search-wrap .search-field-holder {
  width: 50%;
  margin: auto;
  position: relative;
  animation: slideInUp 0.3s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search-wrap .search-field-holder {
    width: 70%;
  }
}
@media (max-width: 575px) {
  .search-wrap .search-field-holder {
    width: 80%;
  }
}
.search-wrap .main-search-input {
  width: 100%;
  height: 70px;
  border: 0;
  padding: 0 50px;
  text-transform: capitalize;
  background: transparent;
  font-size: 25px;
  color: var(--theme);
  border-bottom: 2px solid var(--theme);
  text-align: center;
  letter-spacing: 2px;
}

@media (max-width: 575px) {
  .search-wrap .main-search-input {
    height: 50px;
    padding: 0 0;
    line-height: 50px;
    font-size: 18px;
  }
}
.search-wrap input.form-control,
.search-wrap input.form-control:focus {
  background-color: var(--theme);
}

input.main-search-input::placeholder {
  color: var(--theme);
  opacity: 1;
  font-size: 25px;
}

@media (max-width: 575px) {
  input.main-search-input::placeholder {
    font-size: 18px;
  }
}
.search-close {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 30px;
  color: var(--theme);
  cursor: pointer;
}

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: var(--theme);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -35px;
  margin-top: -35px;
  width: 70px;
  height: 70px;
  background-color: var(--theme);
  opacity: 0.3;
}

.cursor-outer {
  margin-left: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--theme);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  -webkit-transition: all 0.08s ease-out;
  -o-transition: all 0.08s ease-out;
  transition: all 0.08s ease-out;
}

.cursor-outer.cursor-hover {
  opacity: 0;
}

.back-to-top {
  border-radius: 50%;
  background-color: var(--theme);
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: var(--white);
  font-size: 18px;
  position: fixed;
  display: inline-block;
  z-index: 999;
  right: 30px;
  bottom: 30px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.back-to-top:hover {
  background-color: var(--header);
  color: var(--white);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
  margin-top: -7px;
}
@media (max-width: 767px) {
  .section-title {
    margin-bottom: 0;
  }
}
.section-title h6 {
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--theme);
  line-height: 1;
  font-family: "Teko", sans-serif;
  display: inline-block;
  margin-bottom: 20px;
}
.section-title h2 span {
  color: var(--theme);
}
.section-title img {
  margin-top: -10px;
  margin-right: 10px;
}
.section-title.theme-color-2 h6 {
  color: var(--theme2);
}
.section-title.theme-color-2 h2 span {
  color: var(--theme2);
}
.section-title.theme-color-3 h6 {
  font-weight: 600;
  font-size: 16px;
  background: linear-gradient(90deg, #59C5F3 0%, #FF1AF0 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-title.theme-color-3 h2 {
  color: var(--black);
}
.section-title.theme-color-3 h2 span {
  color: var(--theme3);
}

.section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 9;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .section-title-area {
    margin-bottom: 0;
  }
}
.section-title-area .section-title {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.section-title-area.bor-bottom {
  border-bottom: 1px solid var(--border);
  padding-bottom: 40px;
}
.section-title-area.bor-bottom-dark-style {
  border-bottom: 1px solid rgba(226, 226, 226, 0.2);
  padding-bottom: 40px;
}
.section-title-area .max-310 {
  max-width: 310px;
}

.center {
  text-align: center;
  margin: 0 auto;
}

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

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

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

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

.dark-section-bg {
  background-color: var(--black) !important;
}

.dark-section-bg-2 {
  background-color: #222222 !important;
}

.section-padding {
  padding: 120px 0;
}
@media (max-width: 1199px) {
  .section-padding {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
}

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