
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Ubuntu",  sans-serif;
}

: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: #5f687b; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #10bc69; /* 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: #5f687b;  /* The default color of the main navmenu links */
  --nav-hover-color: #10bc69; /* 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: #5f687b; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #10bc69; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}


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

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #10bc69;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #14eb83;
  --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: "Open Sans", sans-serif;
}

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: #181818;
  font-family: "Open Sans", sans-serif;
}

/* 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);
  }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: var(--default-color);
    padding: 15px 0;
    position: absolute;
    background-color: transparent;
    top: 10px;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all .5s ease 0s;
}

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

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
	color: var(--contrast-color);
    background: #a19fff;
    font-size: 18px;
    padding: 12px 25px;
    margin: 0 0 0 15px;
    border-radius: 10px;
    transition: 0.3s;
    width: 150px;
    text-align: center;
}
.header .white-button {
	color: #000;
    background: #fff;
}
.header .white-button:hover {
	color: #fff;
    background: #a19fff;
}
.header .btn-getstarted:hover,
.header .btn-getstarted:focus {
	color: var(--contrast-color);
    background: #a19fff;
    font-size: 18px;
    padding: 12px 25px;
    margin: 0 0 0 15px;
    border-radius: 10px;
    transition: 0.3s;
    width: 150px;
    text-align: center;
}



@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

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

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

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

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

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

  .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: 99;
    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;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
    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);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .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;
  }

  .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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    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: #171717;
  font-size: 14px;
  position: relative;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 50px;
}

.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(--surface-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: 50px;
}

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

.footer .footer-top {
  padding-top: 50px;
}

.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 20%);
  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 {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.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 {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

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

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

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

.footer .copyright {
    padding: 15px 0;
    border-top: 1px solid
 color-mix(in srgb, #ffffff, #00000000 80%);
}

.footer .copyright p {
    margin-bottom: 0;
    color: #fff;
    font-size: 15px;
}

.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: #a19fff;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  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;
  bottom: 15px;
}

/*--------------------------------------------------------------
# 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 {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

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

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

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

.page-title .breadcrumbs 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);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
section#services {
    background-color: #f6f6f6;
}
.section-title {
  text-align: center;
  padding: 30px 0;
  margin-bottom: 30px;
  position: relative;
}

.section-title h2 {
    font-size: 50px;
    font-weight: bold;
    text-transform: capitalize;
    margin-bottom: 20px;
    padding-bottom: 0;
    position: relative;
    z-index: 2;
}

#services .our-services span {
    position: inherit;
    top: inherit;
    color: #a19fff;
    z-index: 1;
    font-weight: 400;
    font-size: 50px;
}
#services .our-services p {
    font-size: 18px;
    font-weight: 400;
    padding: 0px 18%;
}

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 50px;
  line-height: 1;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.trademark-registration {
    margin-bottom: 0px;
}
.featured-services .trademark-registration span {
    position: inherit;
    top: inherit;
    color: #a19fff;
    z-index: 1;
    font-weight: 400;
    font-size: 50px;
}
.trademark-registration p {
    font-size: 18px;
    font-weight: 400;
}



@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 70vh;
    position: relative;
    padding: 200px 0 60px 0;
    display: flex;
    align-items: center;
    background-image: url(../../assets/img/banner-image-home.jpg)  ;

    background-position: center;
        background-repeat: no-repeat;
    background-size: cover;
    
}
@media (max-width: 767px) {
    .amazon-regis{
        background-image: url('../../assets/img/banner-image-mobile.jpg') ;
        background-position: 62% center;
    }
}

.hero h1 {
    margin: 0;
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
    color: #fff;
    font-family: "Open Sans", sans-serif;
    padding-right: 20px;
}
.hero h1 span {
    color: #a19fff;
}
.hero p {
    color: #fff;
    margin: 15px 0 15px 0;
    font-size: 18px;
}
ul.banner-lisitng {
    padding: 0px;
	list-style: none;
}
.banner-lisitng li {
    color: #fff;
    display: block;
    font-size: 1rem;
    line-height: 1.4;
    padding: 6px 0 0px 20px;
    margin-bottom: 10px;
    position: relative;
}
.banner-lisitng li i {
    color: #a19fff;
    padding-right: .8rem;
    font-size: 22px;
	position: absolute;
    left: 0px;
    top: 6px;
}
.banner-lisitng li span {
    display: inline;
}
.hero .btn-get-started {
    color: var(--contrast-color);
    background: #a19fff;
    font-family: var(--heading-font);
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 18px 28px 18px 28px;
    border-radius: 10px;
    transition: 0.5s;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    line-height: 20px;
    width: 170px;
    text-align: center;
}

.hero .btn-get-started:hover {
  color: #000;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .live-chat {
    color: #000;
    background: #fff;
	
}
.hero .live-chat:hover {
    color: #fff;
    background: #a19fff;
	
}

.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;
}


.form-background {
    background-color: #8f8dfdc2;
    padding: 30px 30px 0px 30px;
    border-top-left-radius: 65px;
    border-bottom-right-radius: 65px;
}
button.submit-now {
    color: var(--contrast-color);
    background: #a19fff;
    font-family: var(--heading-font);
    font-weight: 400;
    font-size: 17px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 15px 15px 15px 15px;
    border-radius: 10px;
    transition: 0.5s;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    line-height: 20px;
    width: 160px;
    text-align: center;
    border: 1px solid #fff;
}
.form-control::placeholder {
    font-size: 14px;
}
p.form-banner-discount {
    margin: 0px 0px 10px;
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    font-family: "Open Sans", sans-serif;
    padding-right: 20px;
    text-align: center;
}

@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;
  }
}

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

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




/*--------------------------------------------------------------
# Trusted Businesses Section
--------------------------------------------------------------*/
.logo-slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.logo-slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.logo-slide {
  flex: 0 0 25%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
.logo-slide img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}
	



/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
section#logo-business {
    padding-top: 40px;
    padding-bottom: 0px;
    background-color: #f6f6f6;
}
.featured-services {
  --surface-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding-top: 0;
}

.featured-services .service-item {
    background-color: transparent !important;
    padding: 10px 30px;
    transition: all ease-in-out 0.4s;
    height: 100%;
}
section#logo-business h2 {
    margin-bottom: 0px;
}

.featured-services .service-item .icon {
  margin-bottom: 20px;
}

.featured-services .service-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: 0.3s;
}

.featured-services .service-item h4 {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 28px;
    color: #181818;
}


.featured-services .service-item .title-name{
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 28px;
    color: #181818;
    font-family: "Open Sans", sans-serif;
        margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}


.featured-services .service-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

.featured-services .service-item p {
    line-height: 30px;
    font-size: 17px;
    margin-bottom: 0;
    font-weight: 400;
    color: #181818;
    padding: 0px 20px;
}
a.get-started-button {
    color: var(--contrast-color);
    background: #a19fff;
    font-family: var(--heading-font);
    font-weight: 400;
    font-size: 17px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 18px 28px 18px 28px;
    border-radius: 10px;
    transition: 0.5s;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    line-height: 20px;
    width: 200px;
    text-align: center;
}
.featured-services .service-item:hover {
  transform: translateY(-10px);
}

.featured-services .service-item:hover h4 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

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

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

.about-meta {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}	
.section-title .about-meta {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
    text-align: left;
    font-size: 20px;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
  padding-top: 0;
}

.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--accent-color);
  font-weight: 700;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
    background-color: var(--surface-color);
    text-align: center;
    border: 1px solid
 color-mix(in srgb, var(--default-color), transparent 85%);
    padding: 80px 20px;
    transition: border ease-in-out 0.3s;
    height: 100%;
    background-image: url(../../assets/img/service-img1.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}
.services .service-item img {
    width: 100%;
}
.services .service-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services .service-item .icon i {
  color: var(--contrast-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

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

.services .service-item:hover h3 {
  color: var(--accent-color);
}

.services .service-item:hover .boxs-titles {
  color: var(--accent-color);
}



.service-box {
    position: relative;
    height: auto;
    background-size: 100% 100%;
    background-position: center;
    border-radius: 0px;
    overflow: hidden;
    transition: transform 0.3s ease;
    width: 100%;
	}
	.service-background {
		width: 100%;
	}

    .service-box:hover {
      transform: translateY(-5px);
    }

    .service-overlay {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: #8f8dfdc2;
		color: #fff;
		opacity: 0;
		transition: opacity 0.4s ease;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
		padding: 20px;
		border-top-right-radius: 65px;
		border-bottom-left-radius: 65px;
	}
	.overlay-left {
		border-top-right-radius: 0px;
		border-bottom-left-radius: 0px;
		border-top-left-radius: 65px;
		border-bottom-right-radius: 65px;
	}

    .service-box:hover .service-overlay {
      opacity: 1;
    }

    .service-overlay i {
      font-size: 40px;
      margin-bottom: 15px;
    }

    .service-overlay h3 {
		font-size: 28px;
		color: #fff;
		margin: 15px 0px;
		font-weight: bold;
	}
	
	 .service-overlay .boxs-titles{
	color: #fff;
	margin: 15px 0px;
	font-weight: bold;
    font-family: "Open Sans", sans-serif;
    /*font-size: 1.75rem;*/
    /*margin-top: 0;*/
    /*margin-bottom: .5rem;*/
    font-weight: 500;
    line-height: 1.2;

}

    .service-overlay p {
      font-size: 18px;
    }
    
    

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  margin: 0 10px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-item {
  position: relative;
}

.portfolio .portfolio-item .portfolio-info {
  background-color: color-mix(in srgb, var(--surface-color), transparent 10%);
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}






/*--------------------------------------------------------------
# Our Packages Section
--------------------------------------------------------------*/
section#pricing {
    background-image: url(../../assets/img/packages-banner.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.pricing .budget-friendly span {
    position: inherit;
    top: inherit;
    color: #fff;
    z-index: 1;
    font-weight: 400;
    font-size: 50px;
}
.budget-friendly p {
    font-size: 18px;
}
.pricing .budget-friendly h2, .pricing .budget-friendly p {
    color: #fff;
}
p.dollar-amount {
    align-items: center;
    color: #282828;
    display: flex;
    font-size: 2.625rem;
    font-weight: 700;
    gap: 6px;
    justify-content: center;
    margin: 0;
}
p.dollar-amount del {
    color: #282828;
    font-size: 1.85rem;
}
p.dollar-amount span {
    font-size: 1rem;
    font-weight: 700;
}

.pricing .pricing-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}	
.pricing .pricing-card {
    height: 100%;
    padding: 2rem;
    background: var(--surface-color);
    border-radius: 0px;
    transition: all 0.3s ease;
    position: relative;
    border-top-right-radius: 60px;
    border-bottom-left-radius: 60px;
    padding-bottom: 20%;
}
.packages-button {
    position: absolute;
    bottom: 10px;
    left: 0px;
    right: 0px;
    margin: 30px 0px;
}
.pricing .premium-plan {
    border-top-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
}
.pricing .pricing-card h3 {
    margin-bottom: 0rem;
    text-align: center;
    color: #a19fff;
    z-index: 1;
    font-weight: bold;
    font-size: 45px;
    margin-top: 20px;
}
.pricing .pricing-card .price {
    margin-bottom: 0.5rem;
}
.pricing .pricing-card .price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
    line-height: 1;
}
.pricing .pricing-card .price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}
.pricing .pricing-card .price .period {
    font-size: 1rem;
    color: 
 color-mix(in srgb, var(--default-color), transparent 40%);
}
.pricing .pricing-card .description {
    margin-bottom: 1.5rem;
    font-size: 17px;
}
.pricing .pricing-card h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}
.pricing .pricing-card .features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}
.pricing .pricing-card .features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-weight: 500;
}
.pricing .pricing-card .features-list li img {
    margin-right: 8px;
}
.pricing .pricing-card .features-list li i {
    color: var(--accent-color);
    margin-right: 0.75rem;
    font-size: 1.25rem;
}	
.pricing .pricing-card .btn.btn-primary {
    background: #a19dfa;
    border: none;
    color: var(--contrast-color);
    font-size: 18px;
}
.pricing .pricing-card .btn {
    width: 50%;
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
    border-radius: 10px;
    margin: 0px auto;
}
.pricing .pricing-card.popular {
    border-top-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
}
.pricing .pricing-card .popular-badge {
    position: absolute;
    top: 0px;
    right: 0px;
    transform: translateX(0%);
    background: #282828;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0;
    font-size: 16px;
    font-weight: 400;
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.08);
    border-bottom-left-radius: 10px;
}

.pricing .pricing-card .price {
    margin-bottom: 1.5rem;
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
section#testimonials {
    padding: 30px 0;
}
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.swiper-wrapper .swiper-slide {
    padding-top: 50px;
}
.testimonials .testimonial-item {
    box-sizing: content-box;
    min-height: 300px;
    position: relative;
    text-align: center;
    background-color: #f6f6f6;
    padding-top: 12%;
}
.testimonial-item .review-profile {
    position: absolute;
    top: -50px;
    margin: 0px auto;
    right: 0px;
    left: 0px;
}
.testimonials .testimonials-heading span {
    position: inherit;
    top: inherit;
    color: #a19fff;
    z-index: 1;
    font-weight: 400;
    font-size: 50px;
}
.testimonials .testimonials-heading p {
    padding: 0px 18%;
    font-size: 18px;
    font-weight: 400;
}
.testimonials .testimonial-item .testimonial-img {
    width: 100px;
    border-radius: 50%;
    margin: 0px 0 0 0px;
    position: relative;
    z-index: 2;
    border: 6px solid var(--background-color);
}

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

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

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
	color: color-mix(in srgb, #000000, 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 {
    margin: 0 15px 0 15px;
    padding: 20px 20px 10px 20px;
    background: transparent;
    position: relative;
    border-radius: 6px;
    position: relative;
    z-index: 1;
    font-size: 17px;
    font-weight: 400;
    color: #181818;
}

.testimonial-item .review-user {
    align-items: center;
}
.testimonial-item .review-user i {
    color: 	#ffa534;
    display: inline-block;
    gap: 8rem;
    font-size: 20px;
}
.testimonial-item .review-user p {
    font-size: 22px;
    color: #a19fff;
    font-family: var(--heading-font) !important;
    margin: 10px 0px 5px 0px;
    padding: 8px 20px 5px 20px;
    font-weight: 600;
    width: 100%;
    background-color: transparent;
}
.testimonial-item .review-user p span {
    color: #8c8c8c;
    display: block;
    font-size: .8rem;
    font-weight: 400;
}



.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: var(--background-color);
  opacity: 1;
  border: 1px solid #a19fff;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #a19fff;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 60px 0;
  position: relative;
  clip-path: inset(0);
}
.call-to-action .call-action-inner span {
    position: inherit;
    top: inherit;
    color: #a19fff;
    z-index: 1;
    font-weight: 700;
    font-size: 40px;
    text-transform: capitalize;
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 0;
    position: relative;
    z-index: 2;
    margin-top: 5px;
}

.call-to-action p {
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    color: #444444;
    font-size: 18px;
    font-weight: 400;
}

.call-to-action .cta-btn {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 30px;
    border-radius: 10px;
    transition: 0.5s;
    margin: 20px 10px;
    border: 2px solid #a19fff;
    color: var(--contrast-color);
    background-color: #a19fff;
}

.call-to-action .cta-btn:hover {
    background: color-mix(in srgb, #ffffff 90%, white 15%);
    color: #000;
}
.talk-to-Consultant .white-button {
    background-color: #fff;
    color: #000;
}
.talk-to-Consultant .white-button:hover {
    background-color: #a19dfa;
    color: #fff;
}




/*--------------------------------------------------------------
# FAQ's Section
--------------------------------------------------------------*/

section#faqs {
    background-image: url(../../assets/img/fars-background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.faqs-sub-heading .about-meta {
    color: #fff;
    font-size: 33px;
}
.faqs-sub-heading h2 {
    font-size: 35px;
    margin: 15px 0px 0px 0px;
    color: #fff;
}
.faq-container {
    max-width: 800px;
    margin: auto;
    counter-reset: faq-counter;
    background-color: #ffffff;
    padding: 40px;
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
}

.faq-item {
    background: #fff;
    margin-bottom: 0px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    border-left: 0;
    border-right: 0;
    border-top: 0;
}

.faq-question {
    position: relative;
    padding: 15px 50px 15px 40px;
    cursor: pointer;
    font-weight: 600;
    background-color: transparent;
    color: #000;
    transition: color 0.3s ease;
    font-size: 20px;
}
.faq-item:Last-child {
    border: 0;
}

.faq-question::before {
  counter-increment: faq-counter;
  content: counter(faq-counter) ".";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #000000;
  font-weight: bold;
}

.faq-question::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #fff;
    padding: 4px 8px;
    background-color: #d7d5d5;
    border-radius: 50%;
    height: 30px;
    width: 30px;
}

.faq-item.active .faq-question {
  color: #007BFF; 
}
.faq-item.active .faq-question::after {
    content: "\f106";
    background-color: #a19fff;
}

.faq-answer {
  padding: 15px 20px;
  display: none;
  border-top: 1px solid #ddd;
  background-color: #fff;
  text-align: left;
}



/*--------------------------------------------------------------
# Expert Legal Guidance Section
--------------------------------------------------------------*/
section#about {
    background-color: #f6f6f6;
}
.legal-guidences {
    width: 100%;
}
.trade-registration {
    padding-left: 40px;
}
.trade-registration .about-meta {
    color: #a19dfa;
    font-weight: 400;
    margin-bottom: 0rem;
    display: inline-block;
    font-size: 50px;
}
.about-trade .trade-registration h3 {
    font-size: 45px;
    font-weight: 700;
    line-height: 55px;
}
.trade-registration p {
    color: #303030;
    font-size: 17px;
    line-height: 35px;
}











/*--------------------------------------------------------------
# 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;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  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 {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.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: var(--surface-color);
  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%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

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

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}









/*--------------------------------------------------------------
# Media QUery Section
--------------------------------------------------------------*/
@media only screen and (min-width: 100px) and (max-width: 1399px) { 
	.hero h1 {
		font-size: 35px;
		line-height: 40px;
	}
	p.form-banner-discount {
		font-size: 30px;
		padding-right: 0px;
	}
	.form-background {
		padding: 30px 30px 30px 30px;
	}
	.overlay-left {
		border-top-left-radius: 60px;
		border-bottom-right-radius: 60px;
	}
	.featured-services .service-item {
		padding: 10px 10px;
	}
	.featured-services .service-item p {
		padding: 0px 0px;
	}
	p.dollar-amount {
		font-size: 2rem;
	}
	p.dollar-amount span {
		font-size: 0.9rem;
	}
	.about-trade .trade-registration h3 {
		font-size: 38px;
	}
	
}



@media only screen and (min-width: 100px) and (max-width: 1024px) { 
	p.form-banner-discount {
        font-size: 26px;
    }
	.hero {
		min-height: 0vh;
		padding: 180px 0 60px 0;
	}
	#services .our-services span, .featured-services .trademark-registration span, .pricing .budget-friendly span, .testimonials .testimonials-heading span {
		font-size: 40px;
	}
	.section-title h2 {
		font-size: 40px;
	}
	.pricing .pricing-card h3 {
		font-size: 35px;
	}
	.packages-button {
		bottom: -10px;
	}
	.trade-registration .about-meta {
		font-size: 40px;
	}
	.about-trade .trade-registration h3 {
        font-size: 30px;
        line-height: 38px;
    }
	.faqs-sub-heading .about-meta {
		font-size: 26px;
	}
	.faqs-sub-heading h2 {
		font-size: 28px;
		margin: 10px 0px 0px 0px;
	}
	.testimonials .testimonial-item {
		min-height: 230px;
		padding-top: 5%;
	}
}



@media only screen and (min-width: 100px) and (max-width: 912px) {
	.hero h1 {
        font-size: 40px;
    }
	#services .our-services span, .featured-services .trademark-registration span, .pricing .budget-friendly span, .testimonials .testimonials-heading span {
        font-size: 30px;
    }	
	.section-title h2 {
        font-size: 33px;
    }
	.call-to-action h3 {
		font-size: 33px;
	}
	.trade-registration .about-meta {
        font-size: 30px;
    }
    .footer-mail{
        text-align: right;
    }
    .footer-contant{
        text-align: right;
    }
    
    .sm-tabs {
     gap: 10px;
    }
    
    .service-overlay p {
    font-size: 16px;
}
    
    .imgbox1{
     border-radius: 50%;
    overflow: hidden;
    right: 0% !important;
        top: 47.5%;
        left: 50% !important;
        z-index: 99;
        width: 150px !important;
        height: 156px !important;
    }
    
     .imgbox {
         width: 150px!important ;
    height: 150px !important;
    border-radius: 50%;
    overflow: hidden;
        bottom: -12px !important;
        right: 50% !important;
        z-index: 99;
    }
    
  .imgbox2 {
       width: 150px!important ;
    height: 150px !important;
   overflow: hidden;
        margin: 0 auto 0;
        position: absolute;
        bottom: 36% !important;
        left: 0px !important;
        right: 50% !important;
        z-index: 999;
}
    
    .pro-box .brd-top {
        width: 160px !important;
        height: 170px !important;
        bottom: -80px !important;
    }
	
}



@media only screen and (min-width: 100px) and (max-width: 540px) {
	header#header .navbar-header {
    display: block !important;
    }
    .header .btn-getstarted, .header .btn-getstarted:focus {
        font-size: 16px;
        width: 100px;
        float: right;
        margin: 10px 15px 10px 0;
    }
	
	.logo img {
		width: 85%;
	}
	.form-background {
        width: 90%;
        margin: 0px auto;
    }
	.hero {
        padding: 150px 0 0px 0;
    }
	.hero h1 {
        font-size: 33px;
    }
	.section-title {
		padding: 15px 0;
	}
	#services .our-services p {
		padding: 0px 5%;
	}
	
	.footer-about img {
    width: 100% !important;
}
}


@media only screen and (min-width: 100px) and (max-width: 430px) { 
	.logo img {
		width: 100%;
	}
    .header .btn-getstarted, .header .btn-getstarted:focus {
        font-size: 16px;
        width: 100px;
        float: right;
    }
	.hero h1 {
        font-size: 24px;
    }
	.section-title h2 {
        font-size: 28px;
    }
	#services .our-services span, .featured-services .trademark-registration span, .pricing .budget-friendly span, .testimonials .testimonials-heading span {
        font-size: 26px;
    }
	.trademark-registration h2 {
		padding: 0px 10px;
	}
	.call-to-action .call-action-inner span {
		font-size: 30px;
	}
	.call-to-action h3 {
        font-size: 28px;
    }
	.trade-registration .about-meta {
        font-size: 26px;
    }
	.about-trade .trade-registration h3 {
        font-size: 28px;
        line-height: 38px;
    }
	.testimonials-heading h2 {
		padding: 0px 20px;
	}
	.faq-container {
		padding: 30px;
	}

}

@media only screen and (min-width: 100px) and (max-width: 430px) { 
	.trade-registration {
		padding-left: 10px;
	}
	.testimonials .testimonials-heading p {
		padding: 0px 5%;
	}
	.faqs-sub-heading .about-meta {
        font-size: 24px;
    }
	.section-title h2 {
        font-size: 26px;
    }

}

  /*trade mark registration  ----------------------------------------------- */


.stripe {
    padding: 50px 0;
    position: relative;
}
.bgc-iGray7 {
    background-color: #f3f3f3;
}

.about-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}


    .about-box .btn-area {
        margin-top: auto;
    }

    .about-box h2 {
        margin-bottom: 30px;
    }

    .about-box p {
        font-family: "Manrope", sans-serif;
        line-height: 1.5;
        font-weight: 500;
        font-size: calc(14px + (18 - 14) * (100vw - 320px) / (1920 - 320));
    }


@media (max-width: 991px) {
    .about-box {
        padding-bottom: 40px;
    }
}


.about-box h2 {
    margin-bottom: 30px;
    color: #fff;
    font-weight: 500;
}
.about-box p {
 
    line-height: 1.5;
    font-weight: 500;
    color: #fff;

}
.about-box.sty1 h2{
    color:#000;
}
.about-box.sty1 p {
    color: #000;
}

cl-black {
    color: #000;
}
@media (max-width: 400px) {
    .btn-area .btn {
        margin-bottom: 20px;
    }
}

.ht-33 {
    height: 33.33%;
    padding-bottom: 25px;
}

    .ht-33:last-child {
        padding-bottom: 0;
    }

@media (max-width: 1600px) {
    .ht-33 {
        padding-bottom: 18px;
    }
}

@media (max-width: 1199px) {
    .ht-33 {
        padding-top: 15px;
        padding-bottom: 0;
    }
}




.award-box {
    background-color: #fff;
    padding: 40px 50px 25px;
    position: relative;
    border-radius: 20px;
    height: 100%;
}

    .award-box h4 {
        color: #03c7e0;
    }

    .award-box ul {
        position: relative;
        padding-bottom: 25px;
    }

        .award-box ul:before {
            position: absolute;
            left: -50px;
            bottom: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background-color: #03c7e0;
            content: "";
        }

        .award-box ul li:last-child {
            margin-bottom: 0;
        }

    .award-box li {
        font-size: calc(14px + (18 - 14) * (100vw - 320px) / (1920 - 320));
        color: #000;
        line-height: 1.2;
        margin-bottom: 24px;
        position: relative;
        padding-left: 45px;
        font-weight: 500;
    }

        .award-box li .icon {
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            margin: auto;
            width: 31px;
            height: 31px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            border: solid 2px #e0e0e0;
            border-radius: 8px;
            color: #03c7e0;
        }

            .award-box li .icon i {
                font-size: calc(11px + (12 - 11) * (100vw - 320px) / (1920 - 320));
            }

    .award-box.sty1 {
        padding: 27px 50px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

        .award-box.sty1 h5 {
            font-size: calc(16px + (20 - 16) * (100vw - 320px) / (1920 - 320));
            font-weight: 800;
            line-height: 1;
        }
        
        .award-box.sty1 .text-legal {
    font-size: calc(16px + (20 - 16) * (100vw - 320px) / (1920 - 320));
    font-weight: 800;
     color: #181818;
    font-family: "Open Sans", sans-serif;
    font-size: 1.25rem;
    margin-top: 0;
    margin-bottom: .5rem;
    /*font-weight: 500;*/
    line-height: 1.2;
    
}



        .award-box.sty1 p {
            font-size: calc(13px + (16 - 13) * (100vw - 320px) / (1920 - 320));
            font-weight: 500;
            margin-bottom: 0;
        }

        .award-box.sty1:before {
            position: absolute;
            left: 0;
            bottom: 0;
            top: 0;
            height: 70%;
            margin: auto;
            width: 4px;
            background-color: #03c7e0;
            content: "";
        }

@media (max-width: 1600px) {
    .award-box.sty1 {
        padding: 27px 30px;
    }
}

@media (max-width: 1199px) {
    .award-box {
        padding: 35px 35px 25px;
    }

        .award-box ul:before {
            left: -35px;
        }
}
.mt-30,
.mtb-30 {
    margin-top: 30px;
}

@media (max-width: 991px) {
    .offer-sec .mt-30 {
        margin-top: inherit;
    }
}

.mt-3,
.my-3 {
    margin-top: 1rem !important;
}
.btn.btn-primary {
    /* background-color: #03c7e0 !important; */
    background-color: #ffc107 !important;
    border-color: transparent !important;
    border: 0;
    color: #000;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border-radius: 15px;
}


  /*trade mark registration end  ----------------------------------------------- */
  
  
  
  	

.top-plans h3 {
    color: #000;
}

.top-plans .top-heading {
    padding-bottom: 60px;
    margin-bottom: 60px;
}

.top-plans .container {
    position: relative;
}

.top-plans .title-sep {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}

    .top-plans .title-sep:before {
        position: absolute;
        left: 20%;
        height: 1px;
        width: 27%;
        top: 0;
        bottom: 0;
        margin: auto;
        background-color: #e8e8e8;
        content: "";
    }

    .top-plans .title-sep:after {
        position: absolute;
        right: 20%;
        height: 1px;
        width: 27%;
        top: 0;
        bottom: 0;
        margin: auto;
        background-color: #e8e8e8;
        content: "";
    }

@media (max-width: 767px) {
    
    .copyright-banner{
         background-repeat:no-repeat;
    }
    .hero{
        background-repeat:no-repeat;
    }
    .top-plans h2 {
        margin-bottom: 20px;
    }

    .top-plans .top-heading {
        /*padding-bottom: 40px;*/
        padding-bottom: 0;
        margin-bottom: 20px;
    }
    .top-plans .title-sep {
        display: none;
    }
    .link-widget h5 {
        margin: 20px 0 0 0;
    }
    .hide-on-mobile {
        display: none;
    }
}
.top-plans {
    /* padding-bottom: 60px; */
    /* margin-bottom: 120px; */
}

@media (max-width: 575px) {


.imgbox {
        /*display: none;*/
        bottom: -5px !important;
        width: 80px !important;
        height: 80px !important;
    }
.top-plans {
        margin-bottom: 0;
    }

  .process-bar {
        display: none;
    }

   .pro-box .brd-top {
        width: 100px !important;
        height: 100px !important;
        bottom: -35px !important;
    }
    /*.pro-box .brd-top {
        display: none;
    }*/

    .pro-box {
        padding: 30px 20px;
        height: auto;
        width: 100%;
        padding: 40px 20px 70px !important;
    }
}




  .process-bar {
                border-bottom: 2px dashed #000;
                display: flex;
                align-items: center;
                justify-content: center;
                position: relative;
                margin: 50px auto 50px;
                z-index: 1;
            }

                .process-bar .process-step:hover {
                    background-color: #ffc107;
                    color:#000;
                }

    .process-bar .process-step {
        background-color: #000;
        border-radius: 50%;
        width: 80px;
        height: 80px;
        color: #fff;
        font-size: calc(20px + (39 - 20) * (100vw - 320px) / (1920 - 320));
        margin: 0 auto;
        font-family: "Manrope", sans-serif;
        font-weight: 600;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: -40px;
        left: 13%;
        right: auto;
        z-index: 2;
        transition: all .3s ease-in-out;
    }

        .process-bar .process-step.sty1 {
            right: 0;
            left: 0;
        }

        .process-bar .process-step.sty2 {
            right: 13%;
            left: auto;
        }





  .process-bar .process-step:hover {
                    background-color: #ffc107;
                    color:#000;
                }

    .process-bar .process-step {
        background-color: #000;
        border-radius: 50%;
        width: 80px;
        height: 80px;
        color: #fff;
        font-size: calc(20px + (39 - 20) * (100vw - 320px) / (1920 - 320));
        margin: 0 auto;
        font-family: "Manrope", sans-serif;
        font-weight: 600;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: -40px;
        left: 13%;
        right: auto;
        z-index: 2;
        transition: all .3s ease-in-out;
    }

        .process-bar .process-step.sty1 {
            right: 0;
            left: 0;
        }

        .process-bar .process-step.sty2 {
            right: 13%;
            left: auto;
        }


@media (max-width: 991.98px) {
   /*.pro-box .brd-top {*/
   /*     width: 135px !important;*/
   /*     height: 135px !important;*/
   /*     bottom: -80px !important;*/
   /* }*/
    .pro-box {
        padding: 40px 20px 35px !important;
    }
    .cta-bt-form {
        width: 95% !important;
    }
/*.pro-box .brd-top {*/
/*        width: 135px !important;*/
/*        height: 135px !important;*/
/*        bottom: -80px !important;*/
/*    }*/


   /*.imgbox {*/
   /*     width: 125px !important;*/
   /*     height: 125px !important;*/
   /*     bottom: -57px !important;*/
   /*     right: 49% !important;*/
   /* }*/
    
   /*  .imgbox1 {*/
   /*     width: 125px !important;*/
   /*     height: 125px !important;*/
        /* bottom: -57px !important; */
    /*    right: 0% !important;*/
    /*    top: 55%;*/
    /*    left: 50% !important;*/
    /*    z-index: 99;*/
    /*}*/
    
    /* .imgbox2 {*/
    /*    width: 125px !important;*/
    /*    height: 125px !important;*/
        /* bottom: -19px !important; */
        /*right: 50% !important;*/
        /*top: 55%;*/
        /* padding-bottom: 0px; */
    /*}*/
    
    .col-lg-4.col-md-6.mb-sm-5.space {
    padding-bottom: 26px;
}


}

.imgbox {
    border-radius: 50%;
    width: 183px;
    height: 183px;
    overflow: hidden;
    margin: 0 auto 0;
    position: absolute;
    bottom: -69px;
    left: 0;
    right: 0;
}
.imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}





.pro-box {
    background-color: #fff;
    border-radius: 20px;
    height: 100%;
    padding: 60px 65px 50px;
    -webkit-box-shadow: 10px 10px 45px -5px rgba(182, 182, 182, 0.5);
    box-shadow: 10px 10px 45px -5px rgba(182, 182, 182, 0.5);
    position: relative;
}

    .pro-box .icon {
        position: relative;
        margin-bottom: 12px;
    }

        .pro-box .icon i {
            font-size: calc(40px + (60 - 40) * (100vw - 320px) / (1920 - 320));
            z-index: 1;
            color: #03c7e0;
        }

    .pro-box .count {
        color: #fff;
        font-weight: 700;
        font-size: calc(75px + (148 - 75) * (100vw - 320px) / (1920 - 320));
        text-shadow: #b6b6b6 0 0 3px, #b6b6b6 0 0 3px;
        position: absolute;
        right: -50px;
        top: -50px;
        margin: auto;
        font-family: "Manrope", sans-serif;
        z-index: 1;
        line-height: 0.8;
    }

    .pro-box h4 {
        margin-bottom: 10px;
        font-weight: 700;
    }

    .pro-box p {
        font-size: calc(13px + (20 - 13) * (100vw - 320px) / (1920 - 320));
        margin: 0;
        font-family: "Manrope", sans-serif;
    }

@media (max-width: 1600px) {
    .pro-box {
        padding: 60px 45px 50px;
    }

        .pro-box .count {
            right: -35px;
            top: -35px;
        }
}

@media (max-width: 991px) {
    .pro-box {
        padding: 40px 30px 40px;
    }

        .pro-box .count {
            right: -20px;
            top: -20px;
            font-size: calc(65px + (85 - 65) * (100vw - 320px) / (1920 - 320));
        }
}



.pro-box {
    background-color: #fff;
    border-radius: 20px;
    height: 100%;
    padding: 40px 20px 110px;
    box-shadow: 0px 20px 35px rgba(0, 0, 0, 0.16);
    position: relative;
    margin: 20px auto;
    text-align: center;
    display: block;
    width: 350px;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

    .pro-box:hover {
        background-color: #03c7e0;
    }

    .pro-box h3 {
        font-size: calc(20px + (25 - 20) * (100vw - 320px) / (1920 - 320));
        margin: 0;
        font-family: "Manrope", sans-serif;
        font-weight: 600;
    }
    
        .pro-box .card-titles {
        font-size: calc(20px + (25 - 20) * (100vw - 320px) / (1920 - 320));
        margin: 0;
        font-family: "Manrope", sans-serif;
        font-weight: 600;
    }

    .pro-box:hover h3 {
        color: #fff;
    }

    .pro-box p {
        font-size: calc(14px + (18 - 14) * (100vw - 320px) / (1920 - 320));
        margin: 0;
        font-family: "Manrope", sans-serif;
        font-weight: 300;
        color: #000;
        padding: 10px 0 0;
    }

    .pro-box:hover p {
        color: #fff;
    }



.pro-box .brd-top {
    background: #a19fff;
    display: block;
    width: 216px;
    height: 216px;
    border-radius: 50%;
    position: absolute;
    bottom: -100px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.pro-box:hover .brd-top {
    background: #fff;
}
/*legal section starat comprehensive*/







@media (max-width: 991px) {
    .content-sec .top-title h3 {
        letter-spacing: 0;
    }
}

.legal-sec .top-title {
    margin-bottom: 70px;
}

.legal-sec p {
    font-size: calc(13px + (18 - 13) * (100vw - 320px) / (1920 - 320));
    line-height: 1.8;
    font-family: "Manrope", sans-serif;
}

.legal-sec .left-box {
    margin-top: 20px;
    height: 100%;
}
@media (max-width: 575px) {
    .legal-sec .ht-33 {
        height: auto;
    }
}


.legal-sec .slick-dots {
    bottom: 5px;
}

.content-sec .top-title h3 {
    font-size: calc(22px + (54 - 22) * (100vw - 320px) / (1920 - 320));
    color: #000;
    font-weight: 900;
    line-height: normal;
    margin: 0 0 10px 0;
    letter-spacing: -2.5px;
}




.legal-content .img-box img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.legal-content .content-box {
    padding: 38px;
}

/*.legal-content p {
    font-size: calc(12px + (16 - 12) * (100vw - 320px) / (1920 - 320));
    font-family: "Manrope", sans-serif;
}*/
.legal-sec p {
    font-size: calc(12px + (16 - 12) * (100vw - 320px) / (1920 - 320));
    line-height: 1.5;
}

.legal-content .para-trade {
    font-family: "Manrope", sans-serif;
}

.legal-content.sty1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: auto;
}

    .legal-content.sty1 p {
        font-size: calc(13px + (18 - 13) * (100vw - 320px) / (1920 - 320));
    }

    .legal-content.sty1 .img-box {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .legal-content.sty1 .content-box {
        padding: 42px 38px 100px;
    }

@media (max-width: 1199px) {
    .legal-content.sty1 .content-box {
        padding-bottom: 50px;
    }
}

@media (max-width: 1600px) {
    .legal-content .content-box {
        padding: 25px 38px;
    }
}

@media (max-width: 575px) {
    .legal-content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}




.legal-content {
    border: solid 1px #b6b6b6;
    height: 100%;
    min-height: 760px;
    position: relative;
    cursor: pointer;
}

@media (max-width: 767px) {
    .legal-content {
        height: 560px;
        min-height: inherit;
        margin: 0 0 20px 0;
    }
    .imgbox,.imgbox1, .imgbox2{
        display:none;
    }
}

.legal-content:after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 35%;
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,0.0) 0%, rgba(3,199,244,1) 57%);
    content: "";
}
.legal-content.sty1:after{
    display:none;
}
.legal-content .img-box {
    max-width: 100%;
    height: 100%;
    display: flex;
}

@media (max-width: 575px) {
    .legal-content .img-box {
        max-width: 100%;
        flex: 0 0 100%;
    }
}

.legal-content.sty2 .img-box {
    max-width: 250px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 250px;
    flex: 0 0 250px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.legal-content.sty2:after{
    display:none;
}
.legal-content.sty2 {
    border: solid 1px #b6b6b6;
    display: flex;
    height: 100%;
    min-height: auto;
    position: inherit;
}
    .legal-content.sty2 .content-box {
        padding: 38px;
        position:relative;
        top:0;
        left:0;
    }
    .legal-content.sty2 h5{
        color:#000;
    }
.legal-content.sty2 .content-box p {
    color: #000;
}
    .legal-content .img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: grayscale(1);
    }

.legal-content:hover .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0);
}

.legal-content .content-box {
    padding: 35px 25px;
    position: absolute;
    left: 0;
    z-index: 1;
    bottom: 0;
}
a.legal-content {
    display: block;
}
a.legal-content .content-box {
    padding: 35px 25px;
    position: absolute;
    left: 0;
    z-index: 1;
    bottom: 0;
}

.legal-content .content-box p{
    /*color:#fff;*/
}

.legal-content .para-trade{
    font-family: "Manrope", sans-serif;
    /*color: #fff;*/
    font-size: calc(15px + (22 - 15) * (100vw - 320px) / (1920 - 320));
    font-weight: 900;
}

.legal-content.sty1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: auto;
    min-height:auto;
}
    .legal-content.sty1 .content-box{
        position:relative;
    }
    .legal-content.sty1 .content-box .para-trade {
        color: #000;
    }
    .legal-content.sty1 .content-box p {
        color: #000;
    }

    .legal-content.sty1 p {
        font-size: calc(13px + (18 - 13) * (100vw - 320px) / (1920 - 320));
    }

    .legal-content.sty1 .img-box {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .legal-content.sty1 .content-box {
        padding: 42px 38px 100px;
    }

@media (max-width: 1199px) {
    .legal-content.sty1 .content-box {
        padding-bottom: 50px;
    }
}

@media (max-width: 1600px) {
    .legal-content .content-box {
        padding: 25px 38px;
    }
}

@media (max-width: 575px) {
    .legal-content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}


@media (max-width: 1600px) {
    .legal-content {
        min-height: 710px;
    }
}
@media (max-width: 1500px) {
    .legal-content {
        min-height: 620px;
    }
    a.legal-content .content-box {
        padding: 35px 15px 10px 15px;
    }
}
@media (max-width: 1350px) {
    .legal-content {
        min-height: 530px;
    }
        .legal-content:after {
            height: 45%;
        }
}
@media (max-width: 991px) {
    .legal-content:after {
        height: 35%;
    }
}


.btn.btn-primary {
    /* background-color: #03c7e0 !important; */
    background-color: #a19fff !important;
    border-color: transparent !important;
    border: 0;
    color: #000;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border-radius: 15px;
}

/**********************banner -amamzin registry********************/


.banner.main-banner {
    
    
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #000;
    
    width: 100%;
    min-height: 70vh;
    position: relative;
    padding: 200px 0 60px 0;
    display: flex;
    align-items: center;
    
;
}


@media (max-width: 1600px) {
    .banner.main-banner {
        /*height: 100vh;*/
        height: auto;
        padding: 120px 0 80px;
    }
}

.banner.main-banner .sm-content {
    color: #fff;
    font-size: calc(14px + (26 - 14) * (100vw - 320px) / (1920 - 320));
    margin-bottom: 25px;
}

.banner.main-banner h1 span {
    /*background-color: #fff;*/
    color: #03c7e0;
    padding-left: 10px;
    padding-right: 10px;
}

@media (max-width: 991px) {
    .banner.main-banner {
        height: auto;
        padding: 70px 0 60px;
    }

        .banner.main-banner .ht-100 {
            height: auto;
        }
}

.banner.main-banner.sty1 {
    height: 500px;
}

    .banner.main-banner.sty1 .fflex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

@media (max-width: 991px) {
    .banner.main-banner.sty1 {
        height: auto;
    }
}

.banner.main-banner.sty2 {
    height: auto;
    /*padding: 100px 0 60px;*/
    padding: 60px 0;
}

    .banner.main-banner.sty2 .fflex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

@media (max-width: 991px) {
    .banner.main-banner.sty2 {
        padding: 0 0 80px;
        height: auto;
    }
}

@media (max-width: 1600px) {
    .banner.main-banner {
        padding: 120px 0 80px;
    }
}

@media (max-width: 1199px) {
    /*.banner.main-banner {
        padding: 90px 0 0;
    }*/
    .pro-box {
        width: auto !important;
        padding: 40px 20px 100px;
    }
}

@media (max-width: 991px) {
    .banner.main-banner {
        padding: 120px 0 80px;
    }
}

.banner.inner-banner {
    height: calc(60vh - 30px);
    padding: 160px 0 60px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}





.banner {
    padding: 100px 0 60px;
    position: relative;
    height: 500px;
}

.banner-content h1 {
    margin-bottom: 40px;
}

.banner-content p {
    margin-bottom: 25px;
}

@media (max-width: 1600px) {
    .banner-content p {
        margin-bottom: 5px;
    }
}

@media (max-width: 1600px) {
    .banner-content h1 {
        margin-bottom: 40px;
    }
}

.banner .banner-form {
    background-color: #fff;
    border-radius: 20px;
    padding: 35px 30px 50px;
    width: 97%;
    margin-left: auto;
    position: relative;
}

@media (max-width: 1199px) {
    .banner .banner-form {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .banner .banner-form {
        padding: 35px 20px 50px;
    }
}

.banner .banner-form h4 {
    color: #0e2258;
    font-size: calc(18px + (24 - 18) * (100vw - 320px) / (1920 - 320));
    margin-bottom: 20px;
    line-height: 1;
    font-family: "Manrope", sans-serif;
}

.banner .banner-form p {
    color: #686868;
    font-size: calc(14px + (20 - 14) * (100vw - 320px) / (1920 - 320));
    line-height: 1.2;
}

.banner .banner-form i {
    position: absolute;
    left: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: calc(16px + (18 - 16) * (100vw - 320px) / (1920 - 320));
    color: #03c7e0;
}

    .banner .banner-form i.ic-014 {
        font-size: calc(24px + (26 - 24) * (100vw - 320px) / (1920 - 320));
    }

.banner .banner-form .form {
    position: relative;
}

.banner .banner-form .form-btn {
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: -100px;
}
.banner .banner-form .form-btn .btn {
    background-color: #ffc107 !important;
    border-color: #ffc107 !important;
    color:  #000;
}
.banner .banner-form .form-btn .btn:hover {
    background-color: #03c7e0 !important;
    border-color: #03c7e0 !important;
}

    @media (max-width: 1600px) {
        .banner .banner-form .form-btn {
        bottom: -80px;
    }
    
}

@media (max-width: 1199px) {
    .banner .banner-form .form-btn {
        left: 5%;
        right: 5%;
    }
}

@media (max-width: 360px) {
    .banner .banner-form .form-btn {
        left: 10%;
        right: 10%;
    }
}

.banner .banner-form:before {
    position: absolute;
    width: 108%;
    height: 108%;
    border-radius: 20px;
    border: solid 1px #fff;
    left: -4%;
    top: -4%;
    content: "";
}

@media (max-width: 991px) {
    .banner .banner-form:before {
        display: none;
    }
}

@media (max-width: 991px) {
    .banner .banner-form:before {
        left: -2%;
        width: 104%;
    }
}

.banner.main-banner {
    height: calc(100vh - 30px);
    padding: 160px 0 60px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #000;
}

@media (max-width: 1600px) {
    .banner.main-banner {
        /*height: 100vh;*/
        height: auto;
        padding: 120px 0 80px;
    }
}

.banner.main-banner .sm-content {
    color: #fff;
    font-size: calc(14px + (26 - 14) * (100vw - 320px) / (1920 - 320));
    margin-bottom: 25px;
}

.banner.main-banner h1 span {
    /*background-color: #fff;*/
    color: #03c7e0;
    padding-left: 10px;
    padding-right: 10px;
}

@media (max-width: 991px) {
    .banner.main-banner {
        height: auto;
        padding: 70px 0 60px;
    }

        .banner.main-banner .ht-100 {
            height: auto;
        }
}

.banner.main-banner.sty1 {
    height: 500px;
}

    .banner.main-banner.sty1 .fflex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

@media (max-width: 991px) {
    .banner.main-banner.sty1 {
        height: auto;
    }
}

.banner.main-banner.sty2 {
    height: auto;
    /*padding: 100px 0 60px;*/
    padding: 60px 0;
}

    .banner.main-banner.sty2 .fflex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

@media (max-width: 991px) {
    .banner.main-banner.sty2 {
        padding: 0 0 80px;
        height: auto;
    }
}

@media (max-width: 1600px) {
    .banner.main-banner {
        padding: 120px 0 80px;
    }
}

@media (max-width: 1199px) {
    /*.banner.main-banner {
        padding: 90px 0 0;
    }*/
    .pro-box {
        width: auto !important;
        padding: 40px 20px 100px !important;
    }
}

@media (max-width: 991px) {
    .banner.main-banner {
        padding: 120px 0 80px;
    }
}

.banner.inner-banner {
    height: calc(60vh - 30px);
    padding: 160px 0 60px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

@media (max-width: 1600px) {
    .banner.inner-banner {
        height: 60vh;
    }
}

.banner.inner-banner .sm-content {
    color: #fff;
    font-size: calc(14px + (26 - 14) * (100vw - 320px) / (1920 - 320));
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .banner.inner-banner {
        height: auto;
        padding: 70px 0 60px;
    }

        .banner.inner-banner .ht-100 {
            height: auto;
        }
}

@media (max-width: 1600px) {
    .banner.inner-banner {
        padding: 90px 0 30px;
    }
}

@media (max-width: 1199px) {
    .banner.inner-banner {
        padding: 90px 0 0;
    }
}

@media (max-width: 991px) {
    .banner.inner-banner {
        padding: 120px 0 80px;
    }
}

.banner.inner-banner .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .banner-content {
        margin: 50px 0 0;
        text-align: center;
    }
}

.banner-list li {
    color: #fff;
    position: relative;
    padding-left: 15px;
}

    .banner-list li:before {
        content: "";
        position: absolute;
        width: 7px;
        height: 7px;
        background-color: #03c7e0;
        left: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }



card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem;
    border-radius: calc(0.25rem - 1px);
}





.defaultOverlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    width: 100%;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.2);
}

.banner.main-banner .overlay {
    opacity: 0.5;
}
.overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #363636;
    mix-blend-mode: multiply;
}

.is-mbttShow .header .defaultOverlay,
.is--menu .header .defaultOverlay {
    opacity: 1;
    visibility: visible;
    pointer-events: inherit;
}

.c-popup .overlay {
    display: block;
    height: 100%;
    width: 100%;
    background: transparent;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: -1;
}
.c-popup.popup--open .overlay {
    background: rgba(0, 0, 0, 0.6);
}





.ht-100 {
    height: 100%;
}

.minht-100 {
    height: 100%;
}

.maxht-100 {
    height: 100%;
}

.calcht-100 {
    height: calc(100% - 20px);
}



@media (max-width: 991px) {
    .banner.main-banner {
        height: auto;
        padding: 70px 0 60px;
    }

        .banner.main-banner .ht-100 {
            height: auto;
        }
}

@media (max-width: 991px) {
    .banner.inner-banner {
        height: auto;
        padding: 70px 0 60px;
    }

        .banner.inner-banner .ht-100 {
            height: auto;
        }
}




.banner-content h1 {
    margin-bottom: 40px;
}

.banner-content p {
    margin-bottom: 25px;
}

@media (max-width: 1600px) {
    .banner-content p {
        margin-bottom: 5px;
    }
}

@media (max-width: 1600px) {
    .banner-content h1 {
        margin-bottom: 40px;
    }
}


@media (max-width: 991px){

    .banner-content {
        margin: 40px 0 0;
    }
    .banner-content h1 {
        margin-bottom: 15px;
    }
}


.font-weight-bold {
    font-weight: 700 !important;
}

.font-weight-bolder {
    font-weight: bolder !important;
}






.bullets {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-left: 0rem;
}

    .bullets li {
        color: #fff;
        font-weight: 500;
        line-height: 2;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        max-width: 48%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
        flex: 0 0 48%;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-top: 12px;
        margin-bottom: 12px;
        border: #fff solid 1px;
        border-radius: 12px;
        padding: 15px 20px;
        font-size: calc(14px + (20 - 14) * (100vw - 320px) / (1920 - 320));
        -webkit-transition: all 0.35s ease;
        transition: all 0.35s ease;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

        .bullets li .icon-box {
            display: -webkit-inline-box;
            display: -ms-inline-flexbox;
            display: inline-flex;
            width: 52px;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            margin-right: 15px;
            color: #03c7e0;
            font-size: calc(28px + (36 - 28) * (100vw - 320px) / (1920 - 320));
        }

@media (max-width: 1600px) {
    .bullets li .icon-box {
        width: 30px;
        font-size: calc(26px + (30 - 26) * (100vw - 320px) / (1920 - 320));
    }
}

@media (max-width: 1199px) {
    .bullets li .icon-box {
        width: 35px;
        margin-right: 6px;
    }
}

@media (max-width: 991px) {
    .bullets li .icon-box {
        width: 45px;
    }
}

.bullets li .content-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    line-height: 1.3;
    font-family: "Manrope", sans-serif;
}

@media (max-width: 991px) {
    .bullets li .content-box {
        max-width: 75%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
    }
}

@media (max-width: 767px) {
    .bullets li .content-box {
        text-align: left;
        margin-bottom: 0;
    }
}

@media (max-width: 1600px) {
    .bullets li {
        margin-bottom: 15px;
        margin-top: 15px;
        font-size: calc(14px + (18 - 14) * (100vw - 320px) / (1920 - 320));
    }
}

@media (max-width: 991px) {
    .bullets li {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .bullets li {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 10px;
        margin-top: 10px;
    }
}

.bullets li:hover {
    background-color: #fff;
    color: #000;
}

    .bullets li:hover i {
        color: #03c7e0;
    }

@media (max-width: 1199px) {
    .bullets li {
        padding: 15px 14px;
    }
}

@media (max-width: 991px) {
    .bullets {
        /*margin-bottom: 30px;*/
        margin-bottom: 0;
    }
}



  .bullets li .icon-box {
            display: -webkit-inline-box;
            display: -ms-inline-flexbox;
            display: inline-flex;
            width: 52px;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            margin-right: 15px;
            color: #03c7e0;
            font-size: calc(28px + (36 - 28) * (100vw - 320px) / (1920 - 320));
        }

@media (max-width: 1600px) {
    .bullets li .icon-box {
        width: 30px;
        font-size: calc(26px + (30 - 26) * (100vw - 320px) / (1920 - 320));
    }
}

@media (max-width: 1199px) {
    .bullets li .icon-box {
        width: 35px;
        margin-right: 6px;
    }
}

@media (max-width: 991px) {
    .bullets li .icon-box {
        width: 45px;
    }
}





.form-group {
    margin-bottom: 1rem;
}
.form-group {
    margin-bottom: 20px;
    position: relative;
}

@media (max-width: 1199px) {
    .form-group {
        margin-bottom: 10px;
    }
    
}
   .form-inline .form-group {
        display: -ms-flexbox;
        display: -webkit-box;
        display: flex;
        -ms-flex: 0 0 auto;
        -webkit-box-flex: 0;
        flex: 0 0 auto;
        -ms-flex-flow: row wrap;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-flow: row wrap;
        -ms-flex-align: center;
        -webkit-box-align: center;
        align-items: center;
        margin-bottom: 0;
    }
/*c-popup .form-group input {*/
/*    background-color: transparent !important;*/
/*    border: 1px solid #eee;*/
/*    color: #000;*/
/*}*/

    .c-popup .form-group input::-webkit-input-placeholder {
        color: #000 !important;
    }

    .c-popup .form-group input:-ms-input-placeholder {
        color: #000 !important;
    }

    .c-popup .form-group input::-ms-input-placeholder {
        color: #000 !important;
    }

    .c-popup .form-group input::placeholder {
        color: #000 !important;
    }

    .c-popup .form-group input.error-field {
        border-color: red;
    }
.ic-6:before {
    /* content: "\e905"; */
}

ic-28:before {
    content: "\e919";
}

.ic-27:before {
    content: "\e91a";
}

.ic-15:before {
    content: "\e90d";
}

.ic-1:before {
    content: "\e900";
}

.ic-2:before {
    content: "\e901";
}

.ic-3:before {
    content: "\e902";
}

.ic-4:before {
    content: "\e903";
}

.ic-5:before {
    content: "\e904";
}

.ic-6:before {
    /* content: "\e905"; */
}

.ic-7:before {
    /* content: "\e906"; */
}

.ic-8:before {
    content: "\e907";
}

.ic-9:before {
    content: "\e908";
}

.ic-10:before {
    content: "\e909";
}

.ic-11:before {
    content: "\e90a";
}

.ic-12:before {
    content: "\e90b";
}

.ic-13:before {
    content: "\e90c";
}

.ic-16:before {
    content: "\e90e";
}

.ic-17:before {
    content: "\e90f";
}

.ic-18:before {
    content: "\e910";
}

.ic-19:before {
    content: "\e911";
}

.ic-20:before {
    content: "\e912";
}

.ic-21:before {
    content: "\e913";
}

.ic-22:before {
    content: "\e914";
}

.ic-23:before {
    content: "\e915";
}

.ic-24:before {
    content: "\e916";
}

.ic-25:before {
    content: "\e917";
}

.ic-26:before {
    content: "\e918";
}

.ic-29:before {
    content: "\e91b";
}
.ic-30:before {
    content: "\e927";
}
.ic-31:before {
    content: "\e928";
}

.bullets li:hover {
    background-color: #fff;
    color: #000;
}


       /*Safeguard Your Creative Work Today!*/
       
       
       
.stripe-4 {
    /* padding: 120px 0; */
    position: relative;
}

@media (max-width: 1600px) {
    .stripe-4 {
        /* padding: 80px 0; */
    }
    
}

@media (max-width: 991px) {
    .stripe-4 {
        padding: 40px 0;
    }
}


registered-sec {
    padding: 0;
}




.registered-box {
    padding: 50px;
    background-size: cover;
    background-repeat: no-repeat;
}

@media (max-width: 575px) {
    .registered-box {
        padding: 20px;
    }
}

.registered-box p {
    /*color: #fff;*/
}

.registered-box .btn {
    border: solid 1px #fff;
    padding-left: 50px;
    padding-right: 50px;
    border-radius: 15px;
    background-color: #ffc107 !important;
    border-color: transparent !important;
    color: #000;
}
    .registered-box .btn.btn-primary:after {
        background-color: rgb(255, 255, 255) !important;
        border-color: rgb(255, 255, 255) !important;
    }

.registered-box .btn:hover {
    border: solid 1px #fff;
    color: #000;
}

.registered-box h3 {
    font-size: calc(18px + (43 - 18) * (100vw - 320px) / (1920 - 320));
    color: #000;
}
h3.cl-white {
    color: #fff;
}


.registered-box .head-register {
    font-size: calc(18px + (43 - 18) * (100vw - 320px) / (1920 - 320));
    color: #000;
}

.head-register{
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
    font-size: 1.75rem;
}


btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

 

@media (max-width: 991px) {
    .offer-sec .mt-30 {
        margin-top: inherit;
    }
}

.mt-30,
.mtb-30 {
    margin-top: 30px;
}


.mt-3,
.my-3 {
    margin-top: 1rem !important;
}
       
/*.bgc-iPrimary {*/
/*    background-color: #03c7e0 !important;*/
/*}       */
.registered-box h3 {
    font-size: calc(18px + (43 - 18) * (100vw - 320px) / (1920 - 320));
    color: #000;
}
       
.btn {
    font-size: calc(12px + (18 - 12) * (100vw - 320px) / (1920 - 320));
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    padding: 15px 15px;
    border-radius: 0;
    text-align: center;
}

.sec-btn {
    margin-top: 80px;
}


@media (max-width: 991px) {
    .logo img {
        max-width: 110px;
    }
}


/*copyright banner******************************************************************************/

.copyright-banner {
    width: 100%;
    min-height: 70vh;
    position: relative;
    padding: 200px 0 60px 0;
    display: flex;
    align-items: center;
    background-image: url('../../assets/img/copyright-registration-banner.png');
    background-position: center;
}


@media only screen and (min-width: 100px) and (max-width: 540px) {
    .copyright-banner {
        padding: 150px 0 0px 0;
    }
}

@media only screen and (min-width: 100px) and (max-width: 1024px) {
    .copyright-banner {
        min-height: 0vh;
        padding: 180px 0 60px 0;
      
        background-image: url('../../assets/img/banner-copyright-mobile.png') ;
        
    
       
    }
}

.copyright-banner h1 {
    margin: 0;
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
    color: #fff;
    font-family: "Open Sans", sans-serif;
    padding-right: 20px;
}
.copyright-banner h1 span {
    color: #a19fff;
}
.copyright-banner p {
    color: #fff;
    margin: 15px 0 15px 0;
    font-size: 18px;
}


.copyright-banner .btn-get-started {
    color: var(--contrast-color);
    background: #a19fff;
    font-family: var(--heading-font);
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 18px 28px 18px 28px;
    border-radius: 10px;
    transition: 0.5s;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    line-height: 20px;
    width: 170px;
    text-align: center;
}

.copyright-banner .btn-get-started:hover {
  color: #000;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.copyright-banner .live-chat {
    color: #000;
    background: #fff;
	
}


.copyright-banner .live-chat:hover {
    color: #fff;
    background: #a19fff;
	
}

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

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

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

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

.copyright-banner .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
@media (max-width: 640px) {
  .copyright-banner h1 {
    font-size: 28px;
    line-height: 36px;
  }

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

  .copyright-banner .btn-get-started,
  .copyright-banner .btn-watch-video {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
    .copyright-banner{
        background-image: url('../../assets/img/copyright-mobile.png') ;
    }
}
@media only screen and (min-width: 100px) and (max-width: 1399px) { 
	.copyright-banner h1 {
		font-size: 35px;
		line-height: 40px;
	}
	}
	
	@media only screen and (min-width: 100px) and (max-width: 912px) {
	.copyright-banner h1 {
        font-size: 40px;
    }
	}
	
	@media only screen and (min-width: 100px) and (max-width: 540px) {
	.copyright-banner h1 {
        font-size: 33px;
    }
	}
	
	@media only screen and (min-width: 100px) and (max-width: 430px) { 
	
	.copyright-banner h1 {
        font-size: 24px;
    }
	}
	.copyright-banner{
	    background-repeat:no-repeat;
	        background-size: cover;
	}
	
/*trade-mark registration 	*******************************************/


.trade-mark-regis {
    width: 100%;
    min-height: 70vh;
    position: relative;
    padding: 200px 0 60px 0;
    display: flex;
    align-items: center;
    background-image: url('../../assets/img/banner-image.jpg');
    background-position: center;
}


@media only screen and (min-width: 100px) and (max-width: 540px) {
    .trade-mark-regis {
        padding: 150px 0 0px 0;
    }
}

@media only screen and (min-width: 100px) and (max-width: 1024px) {
    .trade-mark-regis {
        min-height: 0vh;
        padding: 180px 0 60px 0;
      
        background-image: url('../../assets/img/trademark-tablet.jpg') ;
        
    
       
    }
}

.trade-mark-regis h1 {
    margin: 0;
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
    color: #fff;
    font-family: "Open Sans", sans-serif;
    padding-right: 20px;
}
.trade-mark-regis h1 span {
    color: #a19fff;
}
.trade-mark-regis p {
    color: #fff;
    margin: 15px 0 15px 0;
    font-size: 18px;
}


.trade-mark-regis .btn-get-started {
    color: var(--contrast-color);
    background: #a19fff;
    font-family: var(--heading-font);
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 18px 28px 18px 28px;
    border-radius: 10px;
    transition: 0.5s;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    line-height: 20px;
    width: 170px;
    text-align: center;
}

.trade-mark-regis .btn-get-started:hover {
  color: #000;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.trade-mark-regis .live-chat {
    color: #000;
    background: #fff;
	
}


.trade-mark-regis .live-chat:hover {
    color: #fff;
    background: #a19fff;
	
}

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

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

.trade-mark-regis .btn-watch-video:hover {
  color: var(--accent-color);
}

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

.trade-mark-regis .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
@media (max-width: 640px) {
  .trade-mark-regis h1 {
    font-size: 28px;
    line-height: 36px;
  }

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

  .trade-mark-regis .btn-get-started,
  .trade-mark-regis .btn-watch-video {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
    .trade-mark-regis{
        background-image: url('../../assets/img/trademark-phone.png') ;
    }
}
@media only screen and (min-width: 100px) and (max-width: 1399px) { 
	.trade-mark-regis h1 {
		font-size: 35px;
		line-height: 40px;
	}
	}
	
	@media only screen and (min-width: 100px) and (max-width: 912px) {
	.trade-mark-regis h1 {
        font-size: 40px;
    }
	}
	
	@media only screen and (min-width: 100px) and (max-width: 540px) {
	.trade-mark-regis h1 {
        font-size: 33px;
    }
	}
	
	@media only screen and (min-width: 100px) and (max-width: 430px) { 
	
	.trade-mark-regis h1 {
        font-size: 24px;
    }
	}
	.trade-mark-regis{
	    background-repeat:no-repeat;
	        background-size: cover;
	}

/*amazon registration********************************************************************	*/

.amazon-regis {
    width: 100%;
    min-height: 70vh;
    position: relative;
    padding: 200px 0 60px 0;
    display: flex;
    align-items: center;
    background-image: url('../../assets/img/banner-image-amazon.png');
    background-position: center;
}


@media only screen and (min-width: 100px) and (max-width: 540px) {
    .amazon-regis {
        padding: 150px 0 0px 0;
    }
}

@media only screen and (min-width: 100px) and (max-width: 1024px) {
    .amazon-regis {
        min-height: 0vh;
        padding: 180px 0 60px 0;
      
        background-image: url('../../assets/img/banner-image-amazon-tablet.png') ;
       
    }
    
 .service-overlay p {
    font-size: 13.5px;
}

.sm-package-button {
    display: inline-block;
    background-color: #a19fff;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    text-decoration: none;
    width: 100%;
}
}

.amazon-regis h1 {
    margin: 0;
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
    color: #fff;
    font-family: "Open Sans", sans-serif;
    padding-right: 20px;
}
.amazon-regis h1 span {
    color: #a19fff;
}
.amazon-regis p {
    color: #fff;
    margin: 15px 0 15px 0;
    font-size: 18px;
}


.amazon-regis .btn-get-started {
    color: var(--contrast-color);
    background: #a19fff;
    font-family: var(--heading-font);
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 18px 28px 18px 28px;
    border-radius: 10px;
    transition: 0.5s;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    line-height: 20px;
    width: 170px;
    text-align: center;
}

.amazon-regis .btn-get-started:hover {
  color: #000;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.amazon-regis .live-chat {
    color: #000;
    background: #fff;
	
}


.amazon-regis .live-chat:hover {
    color: #fff;
    background: #a19fff;
	
}

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

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

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

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

.amazon-regis .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
@media (max-width: 640px) {
  .amazon-regis h1 {
    font-size: 28px;
    line-height: 36px;
  }

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

  .amazon-regis .btn-get-started,
  .amazon-regis .btn-watch-video {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
    .amazon-regis{
        background-image: url('../../assets/img/banner-image-phone.png') ;
    }
}
@media only screen and (min-width: 100px) and (max-width: 1399px) { 
	.amazon-regis h1 {
		font-size: 35px;
		line-height: 40px;
	}
}
	
@media only screen and (min-width: 100px) and (max-width: 912px) {
	.amazon-regis h1 {
        font-size: 40px;
    }
}
	
@media only screen and (min-width: 100px) and (max-width: 540px) {
	.amazon-regis h1 {
        font-size: 33px;
    }
}
	
@media only screen and (min-width: 100px) and (max-width: 430px) { 
	.amazon-regis h1 {
        font-size: 24px;
    }
}
	
	
	.amazon-regis{
	    background-repeat:no-repeat;
	        background-size: cover;
	}
	
    a.smf-logo img {
         width: 81%; 
    }





.imgbox1 {
    border-radius: 50%;
    width: 183px;
    height: 183px;
    overflow: hidden;
    margin: 0 auto 0;
    position: absolute;
    bottom: -70px;
    left: 0px;
    right: 67%;
}
.imgbox2 {
    border-radius: 50%;
    width: 183px;
    height: 183px;
    overflow: hidden;
    margin: 0 auto 0;
    position: absolute;
    bottom: -70px;
    left: 0px;
    right: -67%;
    z-index:999;
}

.modal-header p#consultationModalLabel {
    color: #fff;
    padding: 0px 0px 0px;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 0px;
    line-height: 1.2;
    font-family: var(--heading-font);
}
#consultationForm .form-group label {
    font-size: 16px;
    text-align: center;
    margin-bottom: 0px;
    padding: 0px 10px;
    margin-top: 8px;
    color: var(--heading-color);
    font-family: var(--heading-font);
    line-height: 1.2;
    font-weight: 500;
}
#consultationForm .form-group .form-control {
    display: block;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    transition: border-color .15s 
ease-in-out, box-shadow .15s 
ease-in-out;
    outline: 0;
    border: 1px solid #e8a646;
    border-radius: 35px;
    width: 100%;
}
div#consultationModal {
    margin-top: 5%;
    padding-top: 3%;
}
.modal-header button.close {
    background-color: #f9a234;
    font-size: 22px;
    border-radius: 50%;
    opacity: 1;
    top: -8px;
    position: absolute;
    right: -10px;
}

/*--------------------------------------------------------------
# Model Box 30-Day Money Back Guarantee Section
--------------------------------------------------------------*/
.modal-header #moneyBackModalLabel {
    color: #fff;
    padding: 18px 0px 0px;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 0px;
    line-height: 1.2;
    font-family: var(--heading-font);
}







/*
modal
*/
.modal-header {
    background-color: #a19fff;
    border-radius: 72px 10px 0 0;
    background-image: url(../images/model-head-bg.png);
    background-size: 100% 100%;
}
.modal-header button.btn-close {
    background-color: #a19fff;
    font-size: 22px;
    border-radius: 50%;
    opacity: 1;
    top: -8px;
    position: absolute;
    right: -10px;
    /* color: white !important; */
}
.running-project-arrows {
  top: 98%;
}
.modal-content {
  border-radius: 85px 0px;
  background-color: white;
}
div#exampleModal {
  z-index: 99999;
}
.whatsapp-icon-fixed {
  position: fixed;
  bottom: 30px;
  left: 5px;
  z-index: 9999;
}

.contact-form-inputs {
  text-align: center;
}
.contact-form-inputs input:hover {
  color: var(--c1);
}

#exampleModalLabel {
    font-size: 28px;
    color: #ffffff;
    text-align: center;
    line-height: 35px;
    margin-bottom: 10px;
    padding: 0px 5%;
}

.modal-header .modal-box-header .gurantee-result {
    font-size: 14px;
    text-align: center;
    color: #fff;
    padding: 0px 15%;
}

.modal-content .modal-body {
    background: transparent;
    background-image: url(../images/model-body-bg.png);
    background-size: 100% 100%;
    padding: 4% 5% 8% 5%;
}

.contact-form-input input, .contact-form-input textarea {
    transition: all 0.5s;
    outline: 0;
    border: 1px solid #e8a646;
    border-radius: 35px;
}

.contact-form-input input {
    padding: 11px 10px;
    outline: 0;
    margin-top: -7px;
    margin-bottom: 10px;
    border: 0;
    width: 100%;
}

.contact-form-inputs input {
    padding: 9px 60px;
    font-size: 17px;
    color: #f1f1f1;
    background: #a19fff;
    border-radius: 8px;
    transition: all .5s;
    border: none;
    text-transform: uppercase;
    font-weight: 700;
    border: 2px solid var(--bg);
    box-shadow: 0px 0px 7px 0px #00000082;
}

.contact-form-input input, .contact-form-input textarea {
    /* transition: all 0.5s; */
    outline: 0;
    border: 1px solid #a19fff;
    border-radius: 11px;
    width: 100%;
}

.contact-form-input textarea {
    padding: 10px 10px;
    padding-bottom: 60px;
    margin-bottom: 20px;
    outline: 0;
}

.text-trade{
    color: #181818;
    font-family: "Open Sans", sans-serif;
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}


.para-trade{
    color: #000;
    font-family: "Open Sans", sans-serif;
    font-size: 1.25rem;
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}

.card-titles{
    font-size: calc(20px + (25 - 20) * (100vw - 320px) / (1920 - 320));
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    color: #000;
    line-height: 1.2;
}



/********* Packages Styling *******************/

    .sm-package-header .popular-badge {
        position: absolute;
        top: 0px;
        right: 0px;
        transform: translateX(0%);
        background: #ffe400;
        color: #000;
        padding: 0.5rem 1rem;
        border-radius: 0;
        font-size: 16px;
        font-weight: 700;
        box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.08);
        border-bottom-left-radius: 10px;
    }
    .red-color {
        background-color: #e82e49 !important;
    }






    .sm-packages-container {
        margin: 0 auto;
    }

    /* Section Header */
    .sm-section-header {
        text-align: center;
        margin: 30px 0 40px;
    }

    .sm-section-title {
        font-size: 32px;
        color: #fff;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .sm-section-desc {
        font-size: 16px;
        color: #fff;
        max-width: 700px;
        margin: 0 auto 20px;
    }

    .sm-feature-list {
        display: flex;
        justify-content: left;
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 20px;
        padding-left: 0px;
    }

    /* Tabs */
    .sm-tabs {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 40px;
        border-bottom: 0px solid #e0e0e0;
    }

    .sm-tab {
        border: none;
        position: relative;
        padding: 14px 25px;
        font-size: calc(13px + (17 - 13) * (100vw - 320px) / (1920 - 320));
        color: #000;
        text-align: center;
        font-weight: 600;
        background: #f5f5f5;
        border-radius: 15px;
        transition: all 0.3s ease-in-out;
        display: inline-block;
        margin: 0 5px;
    }

    .sm-tab:hover {
        color: #a19dfa;
    }

    .sm-tab.active {
        background-color: #a19dfa;
        color: #fff;
    }

    .sm-tab.active::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 0px;
        background-color: #a19dfa;
    }

    /* Packages Grid */
    .sm-packages-grid {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 25px;
        margin-bottom: 50px;
    }

    /* Package Cards */
    .sm-package-card {
        background: white;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgb(0 0 0 / 14%);
        overflow: hidden;
        transition: transform 0.3s, box-shadow 0.3s;
        width: 300px;
    }

    .sm-package-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .sm-package-header {
        padding: 60px 0px 10px;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
        position: relative;
    }

    .sm-package-name {
        font-size: 28px;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 10px;
    }

    .sm-package-price {
        font-size: 40px;
        font-weight: 700;
        color: #a19dfa;
        padding: 8px 8px;
        background-color: #f8fafe;
    }

    .sm-package-price-note {
        font-size: calc(14px + (24 - 14) * (100vw - 320px) / (1920 - 320));
        font-weight: 600;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        margin-top: 10px;
        color: #181818;
        font-family: "Open Sans", sans-serif;
    }

    .sm-package-features {
        padding: 20px;
        flex-grow: 1;
    }

    .sm-feature-section {
        margin-bottom: 20px;
    }

    .sm-feature-section-title {
        font-size: 16px;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 10px;
        padding-bottom: 5px;
        border-bottom: 1px dashed #e0e0e0;
    }

    .sm-feature-list {
        list-style-type: none;
    }

    .sm-feature-item {
        padding: 0px 0;
        color: #555;
        padding-left: 15px;
        width: 100%;
        font-family: "Open Sans", sans-serif;
        position: relative;
        font-size: calc(11px + (16 - 11) * (100vw - 320px) / (1920 - 320));
        font-weight: 500;
        line-height: 1.5;
    }

    .sm-feature-item::before {
        content: '•';
        position: absolute;
        left: 0;
        color: #a19dfa;
    }
    
    .sm-feature-list .sm-feature-item strong {
        font-size: calc(11px + (16 - 11) * (100vw - 320px) / (1920 - 320));
        font-weight: 700;
        line-height: 1.5;
    }

    .sm-package-footer {
        padding: 20px;
        text-align: center;
        /*background-color: #f8f9fa;*/
        border-top: 1px solid #f0f0f0;
    }

    .sm-package-button {
        display: inline-block;
        background-color: #a19fff;
        color: white;
        border: none;
        padding: 12px 25px;
        border-radius: 5px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.3s, transform 0.2s;
        text-decoration: none;
        width: 100%;
    }

    .sm-package-button:hover {
        transform: translateY(-2px);
    }

    /* Tab Content */
    .sm-tab-content {
        display: none;
    }

    .sm-tab-content.active {
        display: block;
    }

    /* Center alignment for different package counts */
    .sm-center-1 {
        display: flex;
        justify-content: center;
    }
    
    .sm-center-2 {
        display: flex;
        justify-content: center;
    }
    
    .sm-center-3 {
        display: flex;
        justify-content: center;
    }

    /* Responsive Styles */
    @media (max-width: 1280px) {
        .sm-packages-grid {
        gap: 10px;
    }
    }
    
    /* Responsive Styles */
    @media (max-width: 1024px) {
        .sm-package-card {
            width: 235px;
        }
    }

    /* Responsive Styles */
    @media (max-width: 992px) {
        .sm-package-card {
            width: 250px;
        }
    }
    
    @media (max-width: 912px) {
        .sm-package-card {
            width: 330px;
        }
        .sm-packages-grid {
            gap: 25px;
        }
    }

    @media (max-width: 768px) {
        .sm-tabs {
            flex-direction: column;
            align-items: center;
        }
        
        .sm-tab {
            width: 100%;
            text-align: center;
            margin-bottom: 5px;
        }
        
        .sm-package-card {
            width: 100%;
            max-width: 350px;
        }
        
        .sm-section-title {
            font-size: 26px;
        }
        
        .sm-feature-list {
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        
    }
    
    @media (max-width: 767px) {
        a.smf-logo img {
            width: 100%;
        }
        .sm-package-shadow {
            width: 100%;
        }
        .sm-package-card {
            max-width: 100%;
        }
        div#exampleModal {
            padding-top: 8%;
        }
        .modal-content {
            margin: 0px auto;
            width: 90%;
        }
        #exampleModalLabel {
            font-size: 22px;
            line-height: 28px;
            padding: 0px 3%;
        }
    }

    @media (max-width: 576px) {
        .sm-section-title {
            font-size: 22px;
        }
        
        .sm-package-price {
            font-size: 24px;
        }
        
        .sm-package-name {
            font-size: 18px;
        }
    }  
    
    @media (max-width: 375px) {
   
}
    


.partners-btn {
  background-color: #a19fff;
  color: #fff; /* white text */
  text-decoration: none;
  display: inline-block;
  padding: 12px 28px;
  font-size: 16px;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  
}

.partners-btn:hover {
transform: scale(1.05); /* slight pop */
}

