@import url('https://fonts.googleapis.com/css2?family=Abel&family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --default-font: "Poppins", sans-serif;
  --heading-font: "Poppins", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #040677; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #1796d3; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #1796d3; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #1796d3; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f4f5fe;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #08005e;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #0c0091;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
  -webkit-transition: All 0.5s ease;  
    -moz-transition: All 0.5s ease;  
    -ms-transition: All 0.5s ease;  
    -o-transition: All 0.5s ease;  
    transition: All 0.5s ease;  
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 52px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #10058c;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 991px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #333;
    font-size: 13px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    text-transform: uppercase;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 25px;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #0197d2;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 999;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 991px) {
  .header .btn-get-started
{display: none;}
.navmenu ul {
    margin: 0;
    margin-top: 0px;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    margin-top: 9px;
  }
  .mobile-nav-toggle {
    color: #333;
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
.header .btn-get-started 
{display: none;}
  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    text-transform: uppercase;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--background-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--background-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 160px 0 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 88%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title div {
  color: var(--heading-color);
  margin: 0;
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
}

.hero .hero-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}



.hero .container {
  position: relative;
  z-index: 3;
}

.hero h1 {
  margin: 0 0 20px 0;
  font-size: 63px;
  font-weight: 600;
  line-height: 66px;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
}

.hero h1 span {
  color: #fff;
  font-size: 40px;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 22px;
  font-weight: 400;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

.hero .hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
}

.hero .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.6;
}

.hero .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.4;
}

.hero .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-top: 100px;
}

.about .content h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  padding: 10px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
  border-radius: 7px;
  display: inline-block;
}

.about .content h2 {
  font-weight: 700;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .icon-box {
  background-color: var(--surface-color);
  padding: 50px 40px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
}

.about .icon-box i {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.about .icon-box h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
}

.about .icon-box p {
  margin-bottom: 0;
}

.about .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .icon-boxes .col-md-6:nth-child(2) .icon-box,
.about .icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: -40px;
}

@media (max-width: 768px) {

  .about .icon-boxes .col-md-6:nth-child(2) .icon-box,
  .about .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.features .features-item i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 0;
}

.features .features-item h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .features-item h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features .features-item:hover {
  border-color: var(--accent-color);
}

.features .features-item:hover h3 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats i {
  background-color: var(--surface-color);
  color: var(--accent-color);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  width: 54px;
  height: 54px;
  font-size: 24px;
  border-radius: 50px;
  border: 2px solid var(--background-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  background-color: var(--surface-color);
  margin-top: -27px;
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 0;
}

.stats .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #4f3489;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Details Section
--------------------------------------------------------------*/
.details .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.details .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .details .features-item+.features-item {
    margin-top: 40px;
  }
}

.details .features-item h3 {
  font-weight: 700;
  font-size: 26px;
}

.details .features-item ul {
  list-style: none;
  padding: 0;
}

.details .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.details .features-item ul li:last-child {
  padding-bottom: 0;
}

.details .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.details .features-item p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
}

.testimonials:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 3;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
}

.team .member .pic {
  overflow: hidden;
  margin-bottom: 50px;
}

.team .member .member-info {
  background-color: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: -50px;
  left: 20px;
  right: 20px;
  padding: 20px 15px;
  overflow: hidden;
  transition: 0.5s;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  bottom: 0;
  left: 0;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member .social {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.team .member .social a:hover {
  color: var(--accent-color);
}

.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 40px 40px;
  height: 100%;
  border-radius: 15px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  color: var(--accent-color);
  font-size: 48px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 0;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  font-weight: 500;
}

.pricing .description {
  font-size: 14px;
}

.pricing .cta-btn {
  border: 1px solid var(--default-color);
  color: var(--default-color);
  display: block;
  text-align: center;
  padding: 10px 35px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
  margin-top: 20px;
  margin-bottom: 6px;
}

.pricing .cta-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul li:last-child {
  padding-bottom: 0;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .featured {
  position: relative;
}

.pricing .featured .popular {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 4px 15px 6px 15px;
  margin: 0;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
}

.pricing .featured .cta-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 17px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 22px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}
/*---------banner img------*/
.bannar-shape-1 .n-1 {
  left: 5%;
  top: 80px;
}
.bannar-shape-1 .n-2 {
  top: 400px;
  left: 20%;
}
.bannar-shape-1 .n-3 {
  top: 70px;
  left: 35%;
}
.bannar-shape-1 .n-4 {
  top: 150px;
  left: 47%;
}
.bannar-shape-1 .n-5 {
  top: 600px;
  left: 30%;
}
.bannar-shape-1 .n-6 {
  top: 430px;
  left: 52%;
}
.bannar-shape-1 .n-8 {
  right: 6%;
  top: -80px;
}
.ml1 {
  font-weight: 900;
  font-size: 3.5em;
}

.ml1 .letter {
  display: inline-block;
  line-height: 1em;
  font-size: 30px;
  text-transform: capitalize!important;
}

.ml1 .text-wrapper {
  position: relative;
  display: inline-block;
  padding-top: 0.1em;
  padding-right: 0.05em;
  padding-bottom: 0.15em;
}

.ml1 .line {
  opacity: 0;
  position: absolute;
  left: 0;
  height: 3px;
  width: 100%;
  background-color: #1796d3;
  transform-origin: 0 0;
}

.ml1 .line1 { top: 0; }
.ml1 .line2 { bottom: 0; }
.btn-get-started
{
  font-weight: 600;
  font-size: 15px;
  background-color: #4f3489;
  color: #fff!important;
  text-decoration: none;
  border-radius: 4px;
  padding: 16px 30px;
  text-transform: uppercase;
}
.trin-trin
{
    animation-name: trin;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.icon-phone
{
    
    display: inline-block;
}

@keyframes trin {

    from {
        transform:rotate3d(0, 0, 1, 0deg);
    }
    20%, 32%, 44%, 56%, 68% {
        transform: rotate3d(0, 0, 1, 0deg);
    }
    23%, 35%, 47%, 59%, 71% {
        transform: rotate3d(0,0,1,15deg);
    }
    26%, 38%, 50%, 62%, 74% {
        transform: rotate3d(0,0,1,0deg);
    }
    29%, 41%, 53%, 65%, 77% {
        transform: rotate3d(0,0,1,-15deg);
    }
    80% {
        transform:rotate3d(0, 0, 1, 0deg);
    }

}
/*================== Next Plan Card =================*/
.social-plan {
  padding-bottom: 120px;
}

.social-plan-body {
  padding: 70px 0;
  box-shadow: 0px 15px 50px rgba(78, 127, 255, 0.4);
}
.q-d-blue {
  background-color: #2D4C9F;
}
.social-plan-body .section-heading h3, .social-plan-body .section-heading p {
}
.social-plan-body .social-plan-wrraper .row div .card {
  max-width: 315px;
}
.social-plan-body .social-plan-wrraper .row div .card .card-body img {
  margin: 36px 0 24px 0;
}
.social-plan-body .social-plan-wrraper .row div .card .card-body h4, .social-plan-body .social-plan-wrraper .row div .card .card-body a {
 
}
.social-plan-body .social-plan-wrraper .row div .card .card-body p {
  line-height: 19.36px;
  margin: 16px 0 32px 0;
}

.has_line {
  position: relative;
  transform: translateY(44px);
  width: 100%;
  height: 2px;
  background: #eaeaee;
  bottom: 19px;
}
.text_line {
  text-align: center;
  padding: 0 10px;
  font-size: 2rem;
  position: relative;
  background: white;
  width: max-content;
  position: relative;
  font-weight: 600;
  color: #4f3489;
  text-transform: uppercase;
}
.brands .company-item img
{
  padding: 10px;
  width: 100%;
  height: 70px;
  object-fit: contain;
  border: 1px solid #eaeaea;
  object-position: center;
    -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.brands .company-item img:hover
{
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}
.service-block {
  position:relative;
  margin-bottom:30px
}
.service-block .inner-box {
  position:relative;
  text-align:center;
  margin-top:40px;
  padding:70px 40px 35px;
  border-radius:10px;
  background-color:#fff;
  transition:all .3s ease
}
.service-block .inner-box:hover {
  box-shadow:0 10px 30px rgba(0,0,0,.05)
}
.service-block .inner-box:hover .icon-box {
  transform:scale(-1) rotate(180deg);
  border-color:var(--theme-color1)
}
.service-block .inner-box .icon-box {
  position:absolute;
  left:50%;
  top:-40px;
  margin-left:-40px;
  width:80px;
  height:80px;
  text-align:center;
  line-height:78px;
  border-radius:50%;
  border:1px solid #e3e3e3;
  background-color:#fff;
  font-size:42px;
  color:#4f3489;
  transition:all .3s ease
}
.service-block .inner-box .title {
  color:#4f3489;
  margin-bottom:20px;
  text-transform: uppercase;
}
.service-block .inner-box .title a
{
   color:#4f3489;
}
.service-block .inner-box .title:hover {
  color:var(--theme-color1)
}
.service-block .inner-box .text {
  margin-bottom:25px
}
.service-block .inner-box .read-more {
  font-size:var(--body-font-size);
  line-height:22px;
  color:#1697d3;
  font-weight:600;
  letter-spacing:.8px;
  transform:all .3s ease
}
.service-block .inner-box .read-more i {
  margin-left:10px
}
.service-block .inner-box .read-more:hover {
  color:#4f3489
}

@media (max-width:991.98px) {
  .fun-fact-section.pull-down .bg {
    display:none
  }
}
.counter-block {
  position:relative;
  margin-bottom:50px
}
.counter-block .inner {
  position:relative;
  transition:all .3s ease
}
.counter-block .inner:hover .icon {
  background-color:#fff;
  color:var(--bg-theme-color1);
  border-radius:50%
}
.counter-block .content {
  padding-left:100px;
  position:relative
}
@media (max-width:575.98px) {
  .counter-block .content {
    padding-left:0;
    text-align:center
  }
}
.counter-block .icon {
  position:absolute;
  left:0;
  top:0;
  top:5px;
  display:flex;
  align-items:center;
  justify-content:center;
  height:80px;
  width:80px;
  color:#fff;
  background-color:#4179cc;
  font-size:48px;
  border-radius:5px;
  transition:all .3s ease
}
@media (max-width:575.98px) {
  .counter-block .icon {
    position:relative;
    display:inline-flex;
    margin-bottom:20px
  }
}
.counter-block .count-box {
  margin-bottom:10px
}
.counter-block .count-box,
.counter-block .count-box .count-text {
  font-size:48px;
  line-height:58px;
  font-weight:600;
 color: #fff;
}
.counter-block .counter-title {
  font-size:var(--body-font-size);
  line-height:22px;
  font-weight:400;
  color:#fff;
  font-family:var(--text-font)
}
.bg-pattern-1 {
  background-image:url(../images/pattern-1.7d733ff3.png)
}
.fun-fact-section {
  position: relative;
  padding: 120px 0 70px;
    padding-bottom: 70px;
  background-color: #4f3489;
}
.bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
}
.main-footer {
  position:relative;
background:#45297f;
}
.main-footer .bg {
  background-size:auto
}
@media (max-width:767.98px) {
  .main-footer .bg {
    opacity:.1
  }
}
.main-footer .footer-bg-1 {
  background-image:url(../images/footer-bg-1.93f8f104.png);
  background-color:#101a29;
  background-position:0 100%;
  background-size: contain;
}

.main-footer .widgets-section {
  position:relative;
  padding:100px 0 10px
}
.main-footer .footer-column {
  position:relative;
  margin-bottom:50px
}
.main-footer .footer-widget {
  position:relative
}
.main-footer .widget-title {
  position:relative;
  color:#fff;
  margin-bottom:30px;
  text-transform: uppercase;
  font-size: 18px;
}
.main-footer .widget-content {
  position:relative
}
.main-footer .widget-content .text {
  color:var(--theme-color-light)
}
.user-links,
.user-links li {
  position:relative
}
.user-links li {
  padding-left:30px;
  font-size:var(--body-font-size);
  line-height:32px;
  color:#fff;
  font-weight:400;
  margin-bottom:10px
}

.user-links li:last-child {
  margin-bottom:0
}
.user-links li a {
  position:relative;
  display:inline-block;
  color:inherit;
  transition:all .3s ease
}
.user-links li a:hover {
  color:#fff
}
.user-links li a:before {
  position:absolute;
  left:0;
  bottom:3px;
  width:0;
  height:1px;
  background-color:var(--bg-theme-color1);
  content:"";
  transition:all .3s ease
}
.user-links li a:hover:before {
  width:100%
}
.user-links.style-two li {
  padding-left:0
}
.user-links.style-two li:before {
  display:none
}
.user-links.style-three li {
  padding-left:25px
}
.user-links.style-three li:before {
  color:var(--theme-color1);
  content:"\f00c"
}
.user-links.style-four li {
  padding-left:20px
}
.user-links.style-four li:before {
  content:"\f105"
}
.user-links.two-column {
  display:flex;
  flex-wrap:wrap
}
.user-links.two-column li {
  width:50%;
  flex:0 0 50%
}
.recent-post {
  position:relative;
  margin-bottom:30px
}
.recent-post:last-child {
  margin-bottom:0
}
.recent-post .inner {
  position:relative;
  padding-left:100px;
  min-height:80px
}
.recent-post .inner:hover .post-thumb img {
  opacity:.7
}
.recent-post .inner .post-thumb {
  position:absolute;
  left:0;
  top:0;
  height:80px;
  width:80px;
  border-radius:5px;
  overflow:hidden
}
.recent-post .inner .post-thumb img {
  width:100%;
  object-fit:cover;
  transition:all .3s ease
}
.recent-post .inner .post-info {
  display:flex;
  align-items:center;
  color:var(--theme-color-light);
  line-height:30px;
  margin-bottom:5px
}
.recent-post .inner .post-info i {
  font-size:12px;
  margin-right:10px;
  color:var(--theme-color1)
}
.recent-post .inner .post-title {
  color:var(--theme-color-light);
  letter-spacing:-.8px;
  margin-bottom:0
}
.subscribe-form,
.subscribe-form .form-group {
  position:relative
}
.subscribe-form .form-group input[type=email],
.subscribe-form .form-group input[type=text] {
  position:relative;
  display:block;
  height:72px;
  width:100%;
  font-size:var(--body-font-size);
  line-height:32px;
  color:var(--theme-color-light);
  padding:20px 30px;
  background:transparent;
  border:1px solid #333f4d;
  border-radius:10px;
  transition:all .3s ease
}
.subscribe-form .form-group input[type=email]::placeholder,
.subscribe-form .form-group input[type=text]::placeholder {
  color:#fff
}
.subscribe-form .form-group .theme-btn {
  position:absolute;
  right:0;
  top:0;
  padding:20px 30px;
  line-height:32px;
  border-radius:0 10px 10px 0;
  display:flex;
  align-items:center;
  justify-content:center
}
@media (max-width:767.98px) {
  .subscribe-form .form-group .theme-btn {
    position:relative;
    width:100%;
    border-radius:10px;
    line-height:20px;
    margin-top:20px
  }
}
.footer-bottom {
  position:relative;
  border-top:1px solid #5b33b1;
  padding:30px 0
}
.footer-bottom .inner-container {
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap
}
@media (max-width:991.98px) {
  .footer-bottom .inner-container {
    flex-direction:column
  }
}
.footer-bottom .copyright-text {
  position:relative;
  margin-bottom:0;
  color:hsla(0,0%,100%,.7)
}
@media (max-width:991.98px) {
  .footer-bottom .copyright-text {
    order:3;
    text-align:center;
    margin-top:30px
  }
}
.footer-bottom .copyright-text a {
  color:inherit
}
.footer-bottom .copyright-text a:hover {
  color:#fff
}
.footer-bottom .footer-nav {
  position:relative;
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end
}
@media (max-width:575.98px) {
  .footer-bottom .footer-nav {
    flex-direction:column
  }
}
.footer-bottom .footer-nav li {
  font-size:var(--body-font-size);
  line-height:32px;
  color:hsla(0,0%,100%,.7);
  margin-left:30px
}
.footer-bottom .footer-nav li:first-child {
  margin-left:0
}
@media (max-width:575.98px) {
  .footer-bottom .footer-nav li {
    margin:0 30px!important;
    text-align:center
  }
}
.footer-bottom .footer-nav li a {
  color:inherit
}
.footer-bottom .footer-nav li a:hover {
  color:var(--theme-color-light)
}
@media (max-width:1199.98px) {
  .footer-style-one .bg {
    background-image:none
  }
}
.footer-style-one .about-widget .logo {
  position:relative;
  top:-20px;
  margin-bottom:10px
}
@media (max-width:767.98px) {
  .footer-style-one .about-widget .logo {
    top:0
  }
}
.footer-style-one .about-widget .text {
  margin-bottom:20px
}
.footer-style-one .links-widget {
  padding-left:50px;
  margin-bottom:50px
}
@media (max-width:1199.98px) {
  .footer-style-one .links-widget {
    padding-left:0
  }
}
@media (max-width:575.98px) {
  .footer-style-two .bg {
    display:none
  }
}
.footer-style-two .newsletter-widget .widget-title {
  margin-bottom:45px
}
.footer-style-two .contact-info-outer {
  display:flex;
  flex-wrap:wrap
}
.footer-style-two .contact-info-outer .contact-info-box {
  margin-right:80px;
  margin-top:50px
}
.footer-style-two .contact-info-outer .contact-info-box .widget-title {
  padding-left:40px;
  margin-bottom:10px
}
.footer-style-two .contact-info-outer .contact-info-box .widget-title .icon {
  position:absolute;
  left:0;
  top:0;
  height:30px;
  width:30px;
  line-height:30px;
  text-align:center;
  border-radius:50%;
  background-color:var(--bg-theme-color1);
  font-size:14px
}
.footer-style-two .contact-info-outer .contact-info-box .user-links {
  padding-left:40px
}
.footer-style-two .contact-info-outer .contact-info-box .user-links li {
  margin-bottom:5px
}
.footer-style-two .links-widget {
  padding-left:80px
}
@media (max-width:1199.98px) {
  .footer-style-two .links-widget {
    padding-left:0
  }
}
.footer-style-two .blog-widget .recent-post {
  padding-bottom:20px;
  border-bottom:1px solid #333f4d;
  margin-bottom:20px
}
.footer-style-two .blog-widget .recent-post:last-child {
  padding-bottom:0;
  border-bottom:0;
  margin-bottom:0
}
.footer-style-two .footer-bottom {
  border-top:0;
  padding:0
}
.footer-style-two .footer-bottom .inner-container {
  padding:30px 0;
  border-top:1px solid #333f4d
}
.footer-style-three .widgets-section {
  padding-top:80px
}
.footer-style-three .about-widget-two {
  position:relative;
  background-color:var(--theme-color-light);
  border-top:3px solid var(--theme-color1);
  border-radius:10px;
  padding:30px 40px 40px;
  text-align:center
}
.footer-style-three .about-widget-two .logo {
  display:inline-block;
  margin-bottom:10px
}
.footer-style-three .about-widget-two .text {
  position:relative;
  color:var(--theme-color2);
  margin-bottom:40px
}
.footer-style-three .links-widget {
  padding-left:40px
}
@media (max-width:991.98px) {
  .footer-style-three .links-widget {
    padding-left:0
  }
}
.footer-style-three .newsletter-widget {
  padding-right:30px;
  margin-left:-30px
}
@media (max-width:991.98px) {
  .footer-style-three .newsletter-widget {
    padding-right:0;
    margin-left:0
  }
}
.footer-style-three .footer-bottom {
  border-top:0;
  padding:0
}
.footer-style-three .footer-bottom .inner-container {
  padding:30px 0;
  border-top:1px solid #333f4d
}
.contact-list-two {
  position:relative
}
.contact-list-two .contact-info {
  position:relative;
  padding-left:42px;
  min-height:30px;
  margin-bottom:30px
}
.contact-list-two .contact-info:last-child {
  margin-bottom:0
}
.contact-list-two .contact-info .icon {
  position:absolute;
  left:0;
  top:0;
  height:30px;
  width:30px;
  line-height:30px;
  text-align:center;
  border-radius:50%;
  overflow:hidden;
  color:var(--theme-color-light)
}
.contact-list-two .contact-info .icon:after {
  position:absolute;
  left:0;
  top:0;
  height:100%;
  width:100%;
  background-color:var(--theme-color1);
  content:"";
  opacity:.1
}
.contact-list-two .contact-info .title {
  font-weight:500;
  font-size:20px;
  line-height:28px;
  letter-spacing:-.8px;
  font-family:var(--title-font);
  color:var(--theme-color-light)
}
.contact-list-two .contact-info .text,
.contact-list-two .contact-info .text a {
  color:var(--theme-color-light)
}
.subscribe-form-two {
  position:relative
}
.subscribe-form-two .text {
  color:var(--theme-color-light);
  margin-bottom:20px
}
.subscribe-form-two .form-group {
  position:relative
}
.subscribe-form-two .form-group input[type=email],
.subscribe-form-two .form-group input[type=text] {
  position:relative;
  display:block;
  height:72px;
  width:100%;
  font-size:var(--body-font-size);
  line-height:22px;
  color:var(--theme-color-light);
  padding:20px;
  background:hsla(0,0%,100%,.1);
  border-radius:10px;
  transition:all .3s ease
}
.subscribe-form-two .form-group input[type=email]::placeholder,
.subscribe-form-two .form-group input[type=text]::placeholder {
  color:#fff
}
.subscribe-form-two .form-group .theme-btn {
  margin-top:10px;
  width:100%
}
.footer-style-four.pull-up .widgets-section {
  padding-top:210px;
  margin-top:-120px
}
.footer-style-four .widgets-section {
  padding-bottom:20px
}
.footer-style-four .about-widget .logo {
  margin-top:-10px;
  margin-bottom:18px
}
.footer-style-four .about-widget .text {
  color:var(--theme-color-light);
  margin-bottom:30px
}
.footer-style-four .about-widget .subscribe-form-three {
  margin-bottom:40px;
  max-width:350px
}
.footer-style-four .contact-widget {
  padding-left:60px
}
@media (max-width:1199.98px) {
  .footer-style-four .contact-widget {
    padding-left:0
  }
}
.footer-style-four .links-widget {
  padding-left:60px
}
@media (max-width:1199.98px) {
  .footer-style-four .links-widget {
    padding-left:0
  }
}
.footer-style-four .newsletter-widget {
  padding-right:30px;
  margin-left:-30px
}
@media (max-width:1199.98px) {
  .footer-style-four .newsletter-widget {
    margin-left:0;
    padding-right:0
  }
}
.footer-style-four .recent-post .inner .post-info {
  font-size:14px
}
.contact-list-three {
  position:relative
}
.contact-list-three .contact-info {
  position:relative;
  padding-left:80px;
  min-height:60px;
  margin-bottom:20px
}
.contact-list-three .contact-info:last-child {
  margin-bottom:0
}
.contact-list-three .contact-info .icon {
  position:absolute;
  left:0;
  top:0;
  height:60px;
  width:60px;
  line-height:60px;
  text-align:center;
  font-size:24px;
  border-radius:5px;
  background:hsla(0,0%,100%,.05);
  overflow:hidden;
  color:var(--theme-color-light)
}
.contact-list-three .contact-info .title {
  font-weight:500;
  font-size:20px;
  line-height:28px;
  letter-spacing:-.8px;
  font-family:var(--title-font);
  color:var(--theme-color-light)
}
.contact-list-three .contact-info .text {
  color:var(--theme-color-light);
  line-height:24px
}
.contact-list-three .contact-info .text a {
  color:var(--theme-color-light)
}
.contact-list-three .contact-info .text:hover a {
  color:var(--theme-color1)
}
.footer-style-five .widgets-section {
  padding-bottom:20px
}
.footer-style-five .about-widget .logo {
  margin-top:-25px;
  margin-bottom:30px
}
.footer-style-five .about-widget .text {
  color:#e3e3e3;
  margin-bottom:40px
}
.footer-style-five .blog-widget {
  padding-left:50px
}
@media (max-width:1199.98px) {
  .footer-style-five .blog-widget {
    padding-left:0
  }
}
.footer-style-five .recent-post .inner .post-info {
  font-size:14px
}
.footer-style-five .footer-bottom .footer-nav li a {
  color:hsla(0,0%,100%,.5)
}
.footer-style-five .footer-bottom .footer-nav li a:hover {
  color:var(--theme-color-light)
}
.footer-style-five .footer-bottom .copyright-text {
  color:hsla(0,0%,100%,.5)
}
.footer-style-five .footer-bottom .copyright-text a:hover {
  color:var(--theme-color-light)
}
.contact-list-four {
  position:relative
}
.contact-list-four .contact-info {
  position:relative;
  padding-left:80px;
  min-height:60px;
  margin-bottom:25px
}
.contact-list-four .contact-info:last-child {
  margin-bottom:0
}
.contact-list-four .contact-info .icon {
  position:absolute;
  left:0;
  top:0;
  height:60px;
  width:60px;
  line-height:60px;
  text-align:center;
  font-size:24px;
  border-radius:10px;
  background:var(--bg-theme-color1);
  overflow:hidden;
  color:var(--theme-color-light)
}
.contact-list-four .contact-info .title {
  position:relative;
  top:-5px;
  display:block;
  color:var(--theme-color-light);
  margin-bottom:5px
}
.contact-list-four .contact-info .text {
  color:var(--theme-color-light);
  line-height:22px
}
.contact-list-four .contact-info .text a {
  color:var(--theme-color-light)
}
.contact-list-four .contact-info .text:hover a {
  color:var(--theme-color1)
}
.contact-list-four.style-two .contact-info {
  margin-bottom:20px
}
.contact-list-four.style-two .icon {
  border-radius:5px;
  overflow:hidden;
  background-color:transparent
}
.contact-list-four.style-two .icon:after {
  position:absolute;
  left:0;
  top:0;
  height:100%;
  width:100%;
  opacity:.1;
  background-color:var(--bg-theme-color1);
  content:""
}
.contact-list-four.style-two .title {
  top:0;
  font-size:20px;
  font-weight:500;
  line-height:28px;
  letter-spacing:-.8px;
  font-family:var(--title-font)
}
.subscribe-form-three,
.subscribe-form-three .form-group {
  position:relative
}
.subscribe-form-three .form-group input[type=email],
.subscribe-form-three .form-group input[type=text] {
  position:relative;
  display:block;
  height:60px;
  width:100%;
  font-size:var(--body-font-size);
  line-height:30px;
  color:var(--theme-color2);
  padding:20px 30px;
  background:var(--theme-color-light);
  border-radius:5px;
  transition:all .3s ease
}
.subscribe-form-three .form-group input[type=email]::placeholder,
.subscribe-form-three .form-group input[type=text]::placeholder {
  color:var(--theme-color2)
}
.subscribe-form-three .form-group .theme-btn {
  position:absolute;
  right:0;
  top:0;
  padding:15px 5px;
  width:60px;
  height:60px;
  line-height:30px;
  text-align:center;
  border-radius:0 5px 5px 0
}
.subscribe-form-three .form-group .theme-btn:before {
  border-radius:0 5px 5px 0
}
.subscribe-form-three .form-group .theme-btn i {
  margin-left:0
}
.footer-style-six .widgets-section {
  padding-bottom:10px
}
.footer-style-six .about-widget .logo {
  margin-top:-25px;
  margin-bottom:30px
}
.footer-style-six .about-widget .text {
  color:#e3e3e3;
  margin-bottom:30px
}
.footer-style-six .about-widget .widget-title {
  margin-bottom:10px
}
.footer-style-six .links-widget {
  padding-left:40px
}
@media (max-width:1199.98px) {
  .footer-style-six .links-widget {
    padding-left:0
  }
}
.footer-style-six .location-widget .map-image {
  margin-bottom:30px
}
.contact-list-five {
  position:relative
}
.contact-list-five li {
  position:relative;
  color:#f2f3f5;
  margin-bottom:5px
}
.contact-list-five li:last-child {
  margin-bottom:0
}
.contact-list-five li a {
  color:inherit
}
.contact-list-five li a:hover {
  color:var(--theme-color-light)
}
.footer-style-seven .widgets-section {
  padding-top:80px;
  padding-bottom:40px
}
.footer-style-seven .subscribe-form-four {
  max-width:765px;
  margin:0 auto 77px
}
.footer-style-seven .about-widget .logo {
  margin-top:-15px;
  margin-bottom:30px
}
.footer-style-seven .about-widget .text {
  color:#e3e3e3;
  margin-bottom:40px
}
.footer-style-seven .about-widget .social-icon-two li a {
  background-color:hsla(0,0%,89%,.1)
}
.footer-style-seven .links-widget {
  padding-left:40px;
  padding-right:30px
}
@media (max-width:1199.98px) {
  .footer-style-seven .links-widget {
    padding-left:0;
    padding-right:0
  }
}
.footer-style-seven .contact-widget {
  margin-left:-50px;
  padding-right:50px
}
@media (max-width:1199.98px) {
  .footer-style-seven .contact-widget {
    margin-left:0;
    padding-right:0
  }
}
.footer-style-seven .recent-post .inner {
  padding-left:110px
}
.footer-style-seven .recent-post .post-info i {
  font-size:14px
}
.subscribe-form-four {
  position:relative
}
.subscribe-form-four .form-group {
  position:relative;
  border:1px solid hsla(0,0%,100%,.2);
  border-radius:10px;
  padding:10px
}
.subscribe-form-four .form-group input[type=email],
.subscribe-form-four .form-group input[type=text] {
  position:relative;
  display:block;
  height:70px;
  width:100%;
  font-size:var(--body-font-size);
  line-height:30px;
  color:var(--theme-color-light);
  padding:20px 30px;
  background:transparent;
  border-radius:5px;
  transition:all .3s ease
}
@media (max-width:575.98px) {
  .subscribe-form-four .form-group input[type=email],
  .subscribe-form-four .form-group input[type=text] {
    background-color:hsla(0,0%,100%,.1)
  }
}
.subscribe-form-four .form-group input[type=email]::placeholder,
.subscribe-form-four .form-group input[type=text]::placeholder {
  color:var(--theme-color-light)
}
.subscribe-form-four .form-group .theme-btn {
  position:absolute;
  right:10px;
  top:10px;
  padding:20px 30px;
  line-height:30px;
  text-align:center;
  min-width:200px
}
@media (max-width:575.98px) {
  .subscribe-form-four .form-group .theme-btn {
    position:relative;
    right:0;
    top:0;
    width:100%;
    margin-top:10px
  }
}
.contact-list-six {
  position:relative
}
.contact-list-six li {
  position:relative;
  color:#f2f3f5;
  border:1px solid hsla(0,0%,100%,.2);
  padding:10px 26px 10px 46px;
  border-radius:10px;
  margin-bottom:20px
}
.contact-list-six li:last-child {
  margin-bottom:0
}
.contact-list-six li a {
  color:inherit
}
.contact-list-six li a:hover {
  color:var(--theme-color1)
}
.contact-list-six li i {
  position:absolute;
  left:0;
  top:10px;
  width:46px;
  text-align:center
}
.footer-style-eight .widgets-section {
  padding-top:80px;
  padding-bottom:0
}
.footer-style-eight .widget-title {
  margin-bottom:40px
}
.footer-style-eight .widget-title:before {
  position:absolute;
  left:0;
  bottom:-10px;
  width:40px;
  border-bottom:2px solid var(--theme-color1);
  content:""
}
.footer-style-eight .about-widget .logo {
  margin-top:-15px;
  margin-bottom:30px
}
.footer-style-eight .about-widget .text {
  color:#e3e3e3;
  margin-bottom:30px
}
.footer-style-eight .subscribe-widget {
  margin-right:-20px;
  padding-left:20px
}
@media (max-width:1199.98px) {
  .footer-style-eight .subscribe-widget {
    margin-right:0;
    padding-left:0
  }
}
.footer-style-eight .subscribe-widget .text {
  margin-bottom:20px
}
.footer-style-eight .contact-widget {
  padding-left:35px
}
@media (max-width:1199.98px) {
  .footer-style-eight .contact-widget {
    padding-left:0
  }
}
.footer-style-eight .insta-gallery {
  max-width:400px
}
.subscribe-form-five,
.subscribe-form-five .form-group {
  position:relative
}
.subscribe-form-five .form-group input[type=email],
.subscribe-form-five .form-group input[type=text] {
  position:relative;
  display:block;
  height:50px;
  width:100%;
  font-size:var(--body-font-size);
  line-height:30px;
  color:var(--theme-color2);
  padding:10px 30px;
  background:var(--theme-color-light);
  border-radius:10px;
  transition:all .3s ease
}
.subscribe-form-five .form-group input[type=email]::placeholder,
.subscribe-form-five .form-group input[type=text]::placeholder {
  color:var(--theme-color2)
}
.subscribe-form-five .form-group .theme-btn {
  position:absolute;
  right:0;
  top:0;
  width:50px;
  height:50px;
  padding:10px;
  line-height:30px;
  border-radius:10px;
  text-align:center;
  background-color:var(--theme-color-light);
  color:var(--theme-color1)
}
.subscribe-form-five .form-group .theme-btn:hover {
  color:var(--theme-color2)
}
.contact-list-seven {
  position:relative
}
.contact-list-seven li {
  position:relative;
  padding-left:35px;
  margin-bottom:20px
}
.contact-list-seven li,
.contact-list-seven li a {
  color:var(--theme-color-light)
}
.contact-list-seven li i {
  position:absolute;
  left:0;
  top:0;
  font-size:18px;
  color:var(--theme-color1)
}
.insta-gallery {
  position:relative;
  margin:0 -7px
}
.insta-gallery .image {
  position:relative;
  float:left;
  width:33.3333%;
  padding:0 7px;
  margin-bottom:14px
}
.insta-gallery img {
  display:block;
  width:100%;
  border-radius:5px
}
.insta-gallery a {
  position:relative;
  display:block
}
.insta-gallery a:hover:after,
.insta-gallery a:hover:before {
  transform:scale(1)
}
.insta-gallery a:before {
  left:0;
  top:0;
  height:100%;
  width:100%;
  background:var(--bg-theme-color1);
  opacity:.8;
  content:"";
  border-radius:5px
}
.insta-gallery a:after,
.insta-gallery a:before {
  position:absolute;
  transform:scale(0);
  transition:all .3s ease
}
.insta-gallery a:after {
  height:20px;
  width:20px;
  left:50%;
  top:50%;
  margin-left:-10px;
  margin-top:-10px;
  content:"\f0b2";
  text-align:center;
  line-height:20px;
  font-size:20px;
  color:var(--theme-color-light);
  font-family:Font Awesome\ 6 Pro
}
.insta-gallery.style-two {
  margin:0 -15px
}
.insta-gallery.style-two .image {
  padding:0 15px;
  margin-bottom:30px
}
.insta-gallery.style-two .image a {
  border-radius:10px;
  overflow:hidden
}
.footer-style-nine .widgets-section {
  padding-bottom:10px
}
.footer-style-nine .about-widget .logo {
  margin-bottom:30px
}
.footer-style-nine .about-widget .text {
  color:#e3e3e3;
  margin-bottom:33px
}
.footer-style-nine .links-widget {
  padding-left:90px
}
@media (max-width:1199.98px) {
  .footer-style-nine .links-widget {
    padding-left:0
  }
}
.footer-style-nine .contact-widget .list-style-one {
  flex-direction:column
}
.footer-style-nine .contact-widget .list-style-one li {
  margin-bottom:10px
}
.footer-style-ten .widgets-section {
  padding-bottom:30px
}
.footer-style-ten .about-widget .logo {
  margin-top:-25px;
  margin-bottom:20px
}
.footer-style-ten .about-widget .text {
  color:#e3e3e3;
  margin-bottom:40px
}
.footer-style-ten .about-widget .subscribe-form-two {
  max-width:360px
}
.footer-style-ten .about-widget .subscribe-form-two .form-group {
  position:relative
}
.footer-style-ten .about-widget .subscribe-form-two .form-group input[type=email],
.footer-style-ten .about-widget .subscribe-form-two .form-group input[type=text] {
  background-color:transparent;
  border:1px solid #333f4d;
  border-radius:10px;
  padding-left:30px
}
.footer-style-ten .about-widget .subscribe-form-two .theme-btn {
  line-height:32px;
  padding:20px 30px;
  margin-top:20px
}
.footer-style-ten .links-widget {
  padding-left:90px
}
@media (max-width:1199.98px) {
  .footer-style-ten .links-widget {
    padding-left:0
  }
}
.footer-style-ten .contact-widget .list-style-one {
  flex-direction:column
}
.footer-style-ten .contact-widget .list-style-one li {
  margin-bottom:10px
}
.footer-style-eleven .widgets-section {
  padding-bottom:10px
}
.footer-style-eleven .about-widget .logo {
  margin-bottom:20px
}
.footer-style-eleven .about-widget .text {
  color:#e3e3e3;
  margin-bottom:25px
}
.footer-style-eleven .about-widget .list-style-one {
  flex-direction:column
}
.footer-style-eleven .about-widget .list-style-one li {
  margin-bottom:10px
}
.footer-style-eleven .links-widget {
  padding-left:50px
}
@media (max-width:1199.98px) {
  .footer-style-eleven .links-widget {
    padding-left:0
  }
}
.footer-style-eleven .blog-widget .widget-title {
  margin-bottom:35px
}
.footer-style-eleven .recent-post .inner .post-info {
  line-height:1em;
  margin-bottom:10px
}
.footer-style-eleven .footer-bottom {
  border-top:0;
  background-color:hsla(0,0%,100%,.05)
}
.footer-style-twelve .widgets-section {
  padding-top:70px;
  padding-bottom:30px
}
.footer-style-twelve .about-widget {
  padding-right:20px
}
.footer-style-twelve .about-widget .logo {
  margin-bottom:20px
}
.footer-style-twelve .about-widget .text {
  color:#e3e3e3;
  margin-bottom:30px
}
.footer-style-twelve .about-widget .info-btn {
  position:relative;
  display:block;
  padding-left:52px
}
.footer-style-twelve .about-widget .info-btn .icon {
  position:absolute;
  left:0;
  top:15px;
  font-size:32px;
  line-height:1em;
  text-align:center;
  color:var(--theme-color1);
  transition:all .3s ease
}
.footer-style-twelve .about-widget .info-btn small {
  display:block;
  font-size:100%;
  color:var(--theme-color-light);
  margin-bottom:10px
}
.footer-style-twelve .about-widget .info-btn strong {
  font-size:20px;
  line-height:28px;
  font-weight:500;
  letter-spacing:-.8px;
  color:var(--theme-color-light);
  font-family:var(--title-font)
}
.footer-style-twelve .about-widget .info-btn:hover {
  color:var(--theme-color1)
}
.footer-style-twelve .about-widget .info-btn:hover .icon {
  transform:scaleX(-1);
  background-color:var(--bg-theme-color2)
}
.footer-style-twelve .contact-widget {
  padding-left:60px;
  padding-right:60px
}
@media (max-width:1199.98px) {
  .footer-style-twelve .contact-widget {
    padding-left:0;
    padding-right:0
  }
}
.footer-style-twelve .contact-widget .text {
  margin-bottom:15px
}
.footer-style-twelve .contact-widget .list-style-one {
  flex-direction:column
}
.footer-style-twelve .contact-widget .list-style-one li {
  margin-bottom:10px
}
.footer-style-twelve .newsletter-widget .text {
  margin-bottom:20px
}
.footer-style-twelve .newsletter-widget .subscribe-form-five {
  margin-bottom:40px
}
.footer-style-twelve .newsletter-widget .subscribe-form-five .theme-btn {
  background-color:var(--bg-theme-color1);
  color:var(--theme-color-light)
}
.footer-style-twelve .newsletter-widget .social-icon-one {
  margin-left:20px
}
.footer-style-twelve .newsletter-widget .social-icon-one li {
  margin-right:20px
}
.footer-style-twelve .newsletter-widget .social-icon-one li a {
  color:var(--theme-color1)
}
.footer-style-twelve .newsletter-widget .social-icon-one li a:hover {
  color:var(--theme-color-light)
}
.footer-style-thirteen {
  background-color:var(--theme-color-light)
}
.footer-style-thirteen .widgets-section {
  padding-top:120px;
  padding-bottom:20px
}
.footer-style-thirteen .widgets-section .widget-title {
  color:var(--theme-color2)
}
.footer-style-thirteen .about-widget {
  padding-right:20px
}
.footer-style-thirteen .about-widget .logo {
  margin-bottom:20px
}
.footer-style-thirteen .about-widget .text {
  margin-bottom:40px
}
.footer-style-thirteen .links-widget {
  padding-left:40px
}
@media (max-width:1199.98px) {
  .footer-style-thirteen .links-widget {
    padding-left:0
  }
}
.footer-style-thirteen .links-widget .user-links li {
  margin-bottom:7px
}
.footer-style-thirteen .links-widget .user-links li a {
  color:var(--text-color)
}
.footer-style-thirteen .contact-widget {
  margin-left:-20px;
  padding-right:40px
}
@media (max-width:1199.98px) {
  .footer-style-thirteen .contact-widget {
    margin-left:0
  }
}
.footer-style-thirteen .contact-widget .text {
  margin-bottom:15px;
  color:var(--text-color)
}
.footer-style-thirteen .contact-widget .list-style-one {
  flex-direction:column
}
.footer-style-thirteen .contact-widget .list-style-one li {
  margin-bottom:10px;
  color:var(--text-color)
}
.footer-style-thirteen .contact-widget .list-style-one li a {
  color:var(--text-color)
}
.footer-style-thirteen .recent-post .inner .post-info {
  line-height:1em;
  margin-bottom:10px;
  color:var(--text-color)
}
.footer-style-thirteen .recent-post .inner .post-title {
  color:var(--theme-color2)
}
.footer-style-thirteen .footer-bottom {
  border-top:1px solid #e3e3e3;
  background-color:transparent
}
.footer-style-thirteen .footer-bottom .copyright-text,
.footer-style-thirteen .footer-bottom .footer-nav li a {
  color:var(--text-color)
}
.footer-style-fourteen .widgets-section {
  padding-top:90px;
  padding-bottom:30px
}
.footer-style-fourteen .widgets-section .widget-title {
  padding-bottom:10px
}
.footer-style-fourteen .widgets-section .widget-title:before {
  position:absolute;
  left:0;
  bottom:0;
  width:96px;
  height:0;
  border-bottom:1px solid var(--theme-color-light);
  content:""
}
.footer-style-fourteen .about-widget .logo {
  margin-top:-15px;
  margin-bottom:30px
}
.footer-style-fourteen .about-widget .text {
  color:#e3e3e3;
  margin-bottom:40px
}
.footer-style-fourteen .links-widget {
  padding-left:70px
}
@media (max-width:1199.98px) {
  .footer-style-fourteen .links-widget {
    padding-left:0
  }
}
.footer-style-fourteen .contact-widget {
  margin-left:-10px
}
.footer-style-fourteen .insta-gallery {
  max-width:400px
}
.footer-style-fifteen.pull-up .widgets-section {
  padding-top:240px;
  margin-top:-125px
}
.footer-style-fifteen .widgets-section {
  padding-top:70px;
  padding-bottom:50px
}
.footer-style-fifteen .about-widget {
  padding-right:20px
}
.footer-style-fifteen .about-widget .logo {
  margin-bottom:20px
}
.footer-style-fifteen .about-widget .text {
  color:#e3e3e3;
  margin-bottom:30px
}
.footer-style-fifteen .links-widget {
  padding-left:40px
}
@media (max-width:1199.98px) {
  .footer-style-fifteen .links-widget {
    padding-left:0
  }
}
.footer-style-fifteen .contact-widget {
  max-width:260px
}
.footer-style-fifteen .contact-widget .info-btn {
  position:relative;
  display:block;
  padding-left:60px;
  margin-bottom:20px
}
.footer-style-fifteen .contact-widget .info-btn .icon {
  position:absolute;
  left:0;
  top:15px;
  font-size:42px;
  line-height:1em;
  text-align:center;
  color:var(--theme-color1);
  transition:all .3s ease
}
.footer-style-fifteen .contact-widget .info-btn small {
  display:block;
  font-size:100%;
  color:var(--theme-color-light);
  margin-bottom:5px
}
.footer-style-fifteen .contact-widget .info-btn strong {
  color:var(--theme-color-light);
  font-family:var(--title-font)
}
.footer-style-fifteen .contact-widget .info-btn:hover {
  color:var(--theme-color1)
}
.footer-style-fifteen .contact-widget .info-btn:hover .icon {
  transform:scaleX(-1);
  background-color:var(--bg-theme-color2)
}
.footer-style-fifteen .contact-widget .text {
  margin-bottom:30px
}
.footer-style-fifteen .contact-widget .theme-btn {
  width:100%
}
.footer-style-fifteen .footer-bottom {
  background-color:hsla(0,0%,100%,.05);
  border-top:0
}
.social-icon-two {
  position:relative;
  display:flex
}
.social-icon-two li {
  position:relative;
  margin-right:10px;
  list-style: none;
}
.social-icon-two li:last-child {
  margin-right:0
}
.social-icon-two li a {
  position:relative;
  display:block;
  height:40px;
  width:40px;
  line-height:40px;
  border-radius:5px;
  text-align:center;
  font-size:var(--body-font-size);
  color:#fff;
  background-color:#5b33b1;
  transition:all .3s ease
}
.social-icon-two li a i,
.social-icon-two li a span {
  position:relative
}
.social-icon-two li a:before {
  position:absolute;
  left:0;
  top:0;
  height:100%;
  width:100%;
  transform:scale(0);
  background-color:#4179cd;
  content:"";
  transition:all .3s ease;
  border-radius:5px
}
.social-icon-two li a:hover {
  color:#fff
}
.social-icon-two li a:hover:before {
  transform:scale(1)
}
.social-icon-two.center {
  justify-content:center
}
.social-icon-two.rounded li a,
.social-icon-two.rounded li a:before {
  border-radius:50%
}
.social-icon-two.light li a {
  background-color:var(--theme-color-gray);
  color:var(--theme-color1)
}
.social-icon-two.colored li a,
.social-icon-two.light li a:hover {
  background-color:var(--theme-color1);
  color:var(--theme-color-light)
}
.social-icon-two.colored li a:hover {
  background-color:var(--theme-color-light);
  color:var(--theme-color-light)
}
.list-style-one.style-two li {
  color:var(--theme-color-light);
  margin-right:0
}
.list-style-one.style-two li:last-child:after {
  display:none
}
.list-style-one.style-two li:after {
  width:1px;
  height:28px;
  margin-left:20px;
  margin-right:24px;
  background:#67687a;
  content:""
}
.list-style-one.style-two li a {
  color:var(--theme-color-light)
}
.list-style-one.style-two li i {
  color:var(--theme-color-light);
  font-size:18px
}
.list-style-two {
  position:relative;
  margin-bottom:30px
}
.list-style-two li {
  position:relative;
  font-size:16px;
  color:#fff;
  font-weight:500;
  padding-left:25px;
  letter-spacing:-.8px;
  margin-bottom:10px;
  list-style: none;
}
.list-style-two li,
.list-style-two li i {
  line-height:28px;
  transition:all .3s ease
}
.list-style-two li i {
  position:absolute;
  left:0;
  top:0;
  color:var(--theme-color1);
  font-size:var(--body-font-size)
}
.list-style-two li a {
  display:inline-block;
  font-weight:inherit;
  transition:all .3s ease
}
.list-style-two li a:hover {
  color:var(--theme-color1)
}
.list-style-two.light li {
  color:#fff;
}
.list-style-two.light li a {
  color:inherit
}
.list-style-two.two-column {
  display:flex;
  flex-wrap:wrap
}
.list-style-two.two-column li {
  width:50%;
  flex:0 0 50%;
  padding-right:20px
}
@media (max-width:767.98px) {
  .list-style-two.two-column li {
    width:100%;
    flex:0 0 100%
  }
}
.bd-custom-container {
  max-width: 1730px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}
.bd-section-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-theme-1);
  position: relative;
  display: inline-block;
  line-height: 1;
}

.bd-section-title {
  font-size: 60px;
  line-height: 1.16;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .bd-section-title {
    font-size: 44px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .bd-section-title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .bd-section-title {
    font-size: 46px;
  }
}
@media (max-width: 767px) {
  .bd-section-title {
    font-size: 36px;
  }
}

.bd-section-title-wrapper p {
  font-size: 16px;
  line-height: 1.75;
}
@media (max-width: 767px) {
  .bd-section-title-wrapper p br {
    display: none;
  }
}
/*----------------------------------------*/
/*  04. About
/*----------------------------------------*/
.bd-about-img {
  position: relative;
  z-index: 1;
}
.bd-about-img .bd-about-seconday-img {
  position: absolute;
  top: 50px;
  right: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .bd-about-img .bd-about-seconday-img {
    right: 0px;
  }
}
@media (max-width: 575px) {
  .bd-about-img .bd-about-seconday-img {
    display: none;
  }
}

.bd-about-shape-box {
  position: relative;
}
.bd-about-shape-box .bd-about-shape {
  position: absolute;
}
.bd-about-shape-box .bd-about-shape-1 {
  bottom: 40px;
  left: -60px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .bd-about-shape-box .bd-about-shape-1 {
    left: -220px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .bd-about-shape-box .bd-about-shape-1 {
    display: none;
  }
}
.bd-about-shape-box .bd-about-shape-2 {
  top: 49%;
  left: 8.5%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .bd-about-shape-box .bd-about-shape-2 {
    top: 25%;
    left: auto;
    right: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .bd-about-shape-box .bd-about-shape-2 {
    display: none;
  }
}
.bd-about-shape-box .bd-about-shape-3 {
  margin-left: 20px;
  margin-top: -20px;
  -webkit-animation: hero-circle-1 6s linear 0s infinite alternate;
  -moz-animation: hero-circle-1 6s linear 0s infinite alternate;
  -o-animation: hero-circle-1 6s linear 0s infinite alternate;
  animation: hero-circle-1 6s linear 0s infinite alternate;
}
@media (max-width: 575px) {
  .bd-about-shape-box .bd-about-shape-3 {
    display: none;
  }
}
.bd-about-shape-box .bd-about-shape-4 {
  margin-left: 40px;
  margin-top: 12px;
  animation-duration: 2.5s;
  -webkit-animation: hero-thumb-animation 4s linear infinite alternate;
  -moz-animation: hero-thumb-animation 4s linear infinite alternate;
  -o-animation: hero-thumb-animation 4s linear infinite alternate;
  animation: hero-thumb-animation 4s linear infinite alternate;
}
.bd-about-shape-box .bd-about-shape-5 {
  bottom: -140px;
  left: 220px;
  animation-duration: 2.5s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  animation-name: hero-bounce;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .bd-about-shape-box .bd-about-shape-5 {
    left: 130px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .bd-about-shape-box .bd-about-shape-5 {
    left: 200px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .bd-about-shape-box .bd-about-shape-5 {
    display: none;
  }
}
.bd-about-shape-box .bd-about-shape-6 {
  bottom: -40px;
  left: -46px;
  z-index: -1;
  -webkit-animation: hero-dot-1 2s linear 0s infinite alternate;
  -moz-animation: hero-dot-1 2s linear 0s infinite alternate;
  -o-animation: hero-dot-1 2s linear 0s infinite alternate;
  animation: hero-dot-1 2s linear 0s infinite alternate;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .bd-about-text.pt-95 {
    padding-top: 0px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .bd-about-text.pt-95 {
    padding-top: 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .bd-about-text.pt-95 {
    padding-top: 115px;
  }
}
@media (max-width: 575px) {
  .bd-about-text.pt-95 {
    padding-top: 50px;
  }
}
.tittles h1
{text-transform: uppercase; font-weight: 600; font-size: 30px; margin-bottom: 20px}
.tittles h1 span
{font-size: 18px;}
.grid {
  position: absolute;
  height: 100%;
  weight: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  top: 0;
  left: 0;
}

.grid-svg {
  height: 80%;
  width: 80%;
  position: relative;
  z-index: 1;
}

.blur {
  height: 22rem;
  width: 22rem;
  background-color: var(--primary);
  filter: blur(100px);
  border-radius: 100px;
  z-index: 0;
  position: absolute;
  right: 0;
}
:root {

  --background: hsl(0, 0%, 7%);
  --primary: hsl(199, 89%, 58%);
}
.counter-block .counter
{font-size: 3rem; font-weight: 600; color: #fff}
/*======================== Seo Form ====================*/
.seo-form-text {
  margin-top: 100px;
}
.seo-form-text p {
  max-width: 470px;
}
.seo-form-text .seo-call svg {
  margin-right: 10px;
}

.seo-form {
  background: url("../images/f-bg.jpg") no-repeat;
  background-size: cover;
  background-position: right;
}
.seo-form .form-bg-img {
}

.form-wr {
  padding: 50px;
}
.form-wr h5 {
  margin-bottom: 32px;
}
.form-wr h6 {
  font-weight: 700;
}
.form-wr .form-control {
  max-width: 100%;
  height: 50px;
  margin-bottom: 32px !important;
  padding-left: 40px;
}
.form-wr svg {
  top: 18px;
  left: 15px;
}
.form-wr button {
  width: 100% !important;
}

@media (min-width: 992px) {
  .form-wr {
    margin-top: 40px;
    margin-left: auto;
  }
}
@media (max-width: 991.98px) {
  .form-wr {
    margin-top: 40px;
  }
}
@media (max-width: 450px) {
  .form-wr {
    padding: 35px 25px;
  }
}
@media (max-width: 767.98px) {
  form .seo-form-container {
    padding: 0;
  }
}
.q-radius-10 {
  border-radius: 10px !important;
}
.q-white {
  background-color: #fff;
}
.q-border-color {
  background-color: #EEEEEE;
}
.subcriber-from-wr {
  padding: 100px 0;
  margin-top: -250px;
}
.subcriber-from-wr .subscriber-form {
  max-width: 610px;
  margin-top: 43px;
}
.subcriber-from-wr .subscriber-form .input-form {
  max-width: 400px;
  width: 100%;
}
.subcriber-from-wr .subscriber-form .input-form .subscriber-input {
  width: 100%;
  height: 54px;
  background: transparent;
  padding: 0 20px 0 45px;
  border: solid 1px var(--white);
}
.subcriber-from-wr .subscriber-form .input-form .subscriber-input:focus {
  outline: none;
}
.subcriber-from-wr .subscriber-form .input-form .subscriber-input::-moz-placeholder {
  color: var(--white);
}
.subcriber-from-wr .subscriber-form .input-form .subscriber-input::placeholder {
  color: var(--white);
}
.subcriber-from-wr .subscriber-form .input-form svg {
  left: 20px !important;
  top: 21px;
}

@media (max-width: 767.98px) {
  .subcriber-from-wr .subscriber-form .input-form {
    margin-bottom: 25px;
  }
  .subcriber-from-wr .subscriber-form .input-form svg {
    left: 30px !important;
  }
}
.sticky {  
  position: fixed;  
  width: 100%;  
  left: 0;  
  top: 0;  
  z-index: 100;  
  border-top: 0;  
  box-shadow: 0 8px 6px -6px rgba(0,0,0,.4);
  -webkit-transition: All 0.5s ease;  
    -moz-transition: All 0.5s ease;  
    -ms-transition: All 0.5s ease;  
    -o-transition: All 0.5s ease;  
    transition: All 0.5s ease;  
    background: #fff;
}  
.why-choose-us-two {
  position:relative;
  padding:120px 0 70px
}
.why-choose-us-two::before {
  position:absolute;
  right:0;
  top:0;
  height:100%;
  width:50%;
  background-repeat:no-repeat;
  background-position:center right;
  background-image:url(../images/shape.png);
  content:""
}
.why-choose-us-two .sec-title {
  margin-bottom:50px
}
.why-choose-us-two .sec-title .text {
  max-width:505px;
  margin-top:20px
}
.why-choose-us-two .content-column {
  position:relative;
  margin-bottom:40px;
  z-index:1
}
.why-choose-us-two .content-column .inner-column {
  position:relative;
  padding-left:70px
}
.why-choose-us-two .image-column {
  position:relative;
  margin-bottom:35px
}
.why-choose-us-two .image-column .inner-column {
  position:relative;
  margin-right:-10px
}
.why-choose-us-two .image-column .image-box {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex
}
.why-choose-us-two .image-column .image-box .image-1 {
  position:relative;
  margin-right:20px;
  margin-bottom:0
}
.why-choose-us-two .image-column .image-box .image-1::before {
  position:absolute;
  top:-10px;
  left:-10px;
  height:100%;
  width:150px;
  background-color:#4f3489;
  content:"";
  z-index:-1;
  border-radius:10px
}
.why-choose-us-two .image-column .image-box .image-1 img {
  border-radius:10px
}
.why-choose-us-two .image-column .image-box .image-2 {
  position:relative;
  margin-bottom:0
}
.why-choose-us-two .image-column .image-box .image-2::before {
  position:absolute;
  bottom:-10px;
  right:-10px;
  height:100%;
  width:150px;
  background-color:var(--bg-theme-color2);
  content:"";
  z-index:-1;
  border-radius:10px
}
.why-choose-us-two .image-column .image-box .image-2 img {
  border-radius:10px
}
.why-choose-us-two .image-column .image-box .logo {
  position:absolute;
  left:204px;
  top:185px
}
.feature-block-six {
  position:relative;
  padding-bottom:50px;
  border-bottom:1px solid #dcdce0;
  margin-bottom:50px
}
.feature-block-six:last-child {
  margin-bottom:0
}
.feature-block-six .inner-box {
  position:relative;
  padding-left:120px
}
.feature-block-six .inner-box:hover .icon {
  color:var(--theme-color1);
  -webkit-transform:scaleX(-1);
  transform:scaleX(-1)
}
.feature-block-six .inner-box:hover .icon:after {
  right:20px
}
.feature-block-six .icon {
  position:absolute;
  left:0;
  top:20px;
  font-size:64px;
  line-height:1em;
  color:#4f3489;
  -webkit-transition:all 300ms ease;
  transition:all 300ms ease
}
.feature-block-six .icon:after {
  position:absolute;
  left:40px;
  top:20px;
  height:44px;
  width:44px;
  background-color:#eaeaea;
  content:"";
  z-index:-1;
  -webkit-transition:all 300ms ease;
  transition:all 300ms ease
}
.feature-block-six .title {
  font-weight:800;
  margin-bottom:10px;
  letter-spacing:.01em
}
.feature-block-six .text {
  color:#6a6a6a
}
.mobile-call
{display: none;}
@media only screen and (max-width: 1199px) {
  .hero h1
  {font-size: 45px; line-height: 50px}
  .hero h1 span {
  color: #fff;
  font-size:20px!important;
;
}
}
@media only screen and (max-width: 992px) {
  .hero h1
  {font-size: 25px; line-height: 30px; text-align: center;}
  .hero h1 span {
  color: #fff;
  font-size:20px!important;
;
}
.hero .btn-get-started
{ justify-content:center; margin: 30px auto;}
}
@media only screen and (max-width: 769px) {
  .hero h1
  {font-size: 45px; line-height: 50px; text-align: center;}
  .hero h1 span {
  color: #fff;
  font-size:20px!important;
;
}
.hero .btn-get-started
{ justify-content:center; margin: 30px auto;}
.subcriber-from-wr h2
{font-size: 1.7rem!important}
.subcriber-from-wr h2 small
{font-size: 16px!important}
.subcriber-from-wr .btn-get-started
{display: block; margin: 10px 30px;}
.mobile-call
{position: fixed; z-index: 99; bottom: 0; display: inline-block!important; width: 100%;}
.mobile-call .btn-get-started
{width: 100%!important; background: #fff; color: #4f3489!important; display: block; text-align: center; border-radius: 0px}
.footer-bottom {
  position:relative;
  border-top:1px solid #5b33b1;
  padding:30px 0;
  padding-bottom: 100px;
}
}