/**

INMO INTERNATIONAL
--------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');


/* Fonts */
:root {
  --default-font: 'Helvetica', 'Arial', sans-serif;
  --heading-font: 'Helvetica', 'Arial', sans-serif;
  --nav-font: 'Helvetica', 'Arial', sans-serif;
  --custom-font: "Source Sans 3", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #FFFEFC; /* Background color for the entire website, including individual sections */
  --default-color: #0E090D; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #AA2898; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #AA2898; /* 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: #000000;  /* The default color of the main navmenu links */
  --nav-hover-color: #AA2898; /* 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: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #1dc8cd; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

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

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

.dark-background {
  --background-color: #fff;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #12d6db;
  --contrast-color: #ffffff;
}

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

::selection{
  background-color: #AA2898 !important;
  color:#FFF !important;
}

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

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

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

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

.transparent-card{
  border: none !important;
  outline: none !important;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #FFF;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

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



/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #FFF;
  box-shadow: 0px 4px 40px 0px #0000000A;
}

.main{
  margin-top: 90px;
}

.navigation-link.active{
  font-weight: 600 !important;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

#navigation-menu{
  transform: translateX(100%);
  animation: slide-left 0.5s ease-in-out forwards;
}

@keyframes slide-left {
  from {
      transform: translateX(100%);
  }
  to {
      transform: translateX(0);
  }
}

/* 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 {
    font-family: "Source Sans 3", sans-serif !important;
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 500 !important;
    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: #AA2898;
    font-size: 40px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .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: #AA2898;
    font-weight: 600;
  }

  .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: #FFF !important;
  background-color: #49093E !important;
  font-size: 14px;
  text-align: center;
  padding: 60px 0 30px 0;
  position: relative;
}

.footer-p-first{
 color:#FFF;
font-size: 16px;
font-weight: 400;
line-height: 24px;
text-align: left;
font-family: "Source Sans 3", sans-serif !important;
}

.contact-dts-container{
  margin-bottom: 25px;
}

.footer .cu-heading{
  font-family: "Source Sans 3", sans-serif !important;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  text-align: left;
  padding-bottom: 5px;
}

.footer .contact-FC p{
font-family: "Source Sans 3", sans-serif !important;
font-size: 14px;
font-weight: 400;
line-height: 20px;
text-align: left;
color:#FFFFFF !important;
margin-bottom: 0 !important;
padding-bottom: 3px !important;
}

.footer .contact-FC h6{
  font-family: "Source Sans 3", sans-serif !important;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-align: left;
  color:#FFF !important;
  margin-bottom: 0 !important;
}

.newsletter-row{
  margin-top: 50px !important;
  margin-bottom: 65px !important;
}

.newsletter-row .newletter-head{
  font-family: "Source Sans 3", sans-serif !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  text-align: left;
  color:#FFFFFF;
}

.subs-btn, .subs-btn:hover, .subs-btn:active{
  position: absolute;
  top: 8px;
  right: 8px;
  font-family: "Source Sans 3", sans-serif !important;
  height: 32px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  line-height: 18px !important;
  border-color: transparent !important;
  border-radius: 4px !important;
  text-align: center;
  background-color:#AA2898 !important;
  color:#FFFFFF;
}

.newsletter-row .nl-para{
  font-family: "Source Sans 3", sans-serif !important;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  color:#FFFFFF;
}

.newsletter-input-container .form-control{
  height: 48px !important;
  border-radius: 8px !important;
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
}

.newsletter-input-container .form-control::placeholder{
  font-family: "Source Sans 3", sans-serif !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color:#6D758F !important;
}

.newsletter-input-container .form-control:focus{
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
}

.newsletter-input-container{
  position: relative;
  top: 15px;
}

.footer .social-links {
  margin: 0 0 30px 0;
}

.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  text-decoration: none;
}

.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid #E1E4ED !important;
}

.footer .copyright span{
  font-family: "Source Sans 3", sans-serif !important;
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
   color:#FFFFFF;
}

.footer .copyright a, .footer .copyright a:hover{
  color:#FFF !important;
  text-underline-offset: 2px !important;
}

.footer .copyright span .numeral{
  color: #E1E4ED !important;
}


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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  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 50%);
}

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: linear-gradient(0deg, var(--background-color) 0%, color-mix(in srgb, var(--background-color) 90%, white 10%) 100%);
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
}

.hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  min-height: 100vh;
  /* padding-top: 130px; */
}

#hero-carousel{
  position: relative;
}

.hero .carousel-container img{
  position: absolute;
  overflow: hidden;
  object-fit: cover;
}

@media screen and (max-width:500px){
  .hero .carousel-container img{
    min-height: 240px !important;
    max-width: 100% !important;
  }
}

.hero h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

.hero p {
  max-width: 80%;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

@media screen and (max-width:500px){
  .hero .carousel-control-next-icon, .hero .carousel-control-prev-icon {
    font-size: 30px !important;
  }
}

.hero .btn-get-started {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  animation-delay: 0.8s;
  color: var(--default-color);
  border: 2px solid var(--accent-color);
}

.hero .btn-get-started:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
}

@media (min-width: 1024px) {
  .hero p {
    max-width: 60%;
  }

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 768px) {
  .hero .carousel-container {
    min-height: 90vh;
  }

  .hero h2 {
    font-size: 28px;
  }
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about.section{
  padding-top: 200px !important;
}

@media screen and (max-width:500px){
  .about.section{
    padding-top: 60px !important;
  }
}

.about .inner-title {
  font-family: Helvetica;
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0.02em;
  color:#0E090D !important;
  padding-bottom: 15px;
}

.about .inner-para{
  font-family: "Source Sans 3", sans-serif !important;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.02em;
  text-align: left;
  color:#838696 !important;
  padding-bottom: 5px;
}

.transparent-btn, .transparent-btn:hover, .transparent-btn:active{
  background-color: transparent !important;
  border-color: transparent !important;
  outline: none !important;
}

.gtku-btn{
  font-family: "Source Sans 3", sans-serif !important;
font-size: 16px;
font-weight: 600;
line-height: 24px;
letter-spacing: -0.02em;
text-align: left;
color:#AA2898 !important;
}

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

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

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

.about .watch-video i {
  font-size: 2rem;
  transition: 0.3s;
  color: var(--accent-color);
}

.about .watch-video a {
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-left: 8px;
  transition: 0.3s;
}

.about .watch-video:hover a {
  color: var(--accent-color);
}

.about .about-img {
  min-height: 400px;
  position: relative;
}

.about .about-img img{
  border-radius: 24px !important;
}

@media (min-width: 992px) {

.about .about-img img {
  position: relative;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}
}

/* Why Choose Us Card Section */
.why-choose-section{
  margin-top: 100px !important;
}

.why-choose-section .heading{
  padding-bottom: 50px;
  color:#0E090D;
  font-size: 32px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
}

.WCS-card{
  min-height: 350px !important;
  background-color: #FFF !important;
  border-radius: 24px !important;
  padding: 25px 20px !important;
  border:none !important;
  box-shadow: 0px 4px 35px 0px #0000000A !important;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.WCS-card:hover{
  transform: scale(1.05);
}

.WCS-card .content{
  position: relative;
  z-index: 2; 
}

.WCS-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(to top, #AA2898, #AA2898);
  z-index: 1; /* Background layer */
  transition: height 0.5s ease;
}

.WCS-card:hover::before {
  height: 100%;
}

.WCS-card img{
  margin-bottom: 30px !important;
}

.WCS-card h4{
  margin-bottom: 20px;
font-size: 24px;
font-weight: 700;
line-height: 32px;
text-align: center;
color:#0E090D !important;
}

.WCS-card:hover h4, .WCS-card:hover p{
  color: #FFF !important;
}

.WCS-card p{
  font-family: "Source Sans 3", sans-serif !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  color:#838696 !important;
}

.WCS-card:hover img {
  filter: brightness(0) invert(1) !important; /* Invert the image color */
  transition: filter 0.5s ease !important;
}

/* Why Choose Us Card Section Ends... */


/* Our Offering Section Starts */

.our-core-offerings{
  margin-top: 70px !important;
}

.our-core-offerings .heading{
  padding-bottom: 50px;
  font-size: 32px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  color:#0E090D;
}

.our-core-offerings .OCO-card{
   border: none !important;
   border-radius: 24px !important;
   padding: 50px 70px !important;
   margin-bottom: 40px;
}

@media screen and (min-width:992px){
   .our-core-offerings .OCO-card .OCO-content{
  max-width:90% !important;
  }
}

@media screen and (max-width:678px){
  .our-core-offerings .OCO-card{
  padding: 25px 35px !important;
   }
   .our-core-offerings .OCO-card h4{
    font-size: 24px !important;
   }
   .our-core-offerings .OCO-card p {
    font-size: 12px !important;
   }
}

.our-core-offerings .OCO-card.card-1{
  background-color:#E8ECFF !important;
}

.our-core-offerings .OCO-card.card-2{
  background-color:#FFE7C9 !important;
}

.our-core-offerings .OCO-card.card-3{
  background-color:#FDEAFD !important;
}

.our-core-offerings .OCO-card h4{

  font-family: "Source Sans 3", sans-serif !important;
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: -0.03em;
  text-align: left;
  color:#0E090D !important;
  
}

.our-core-offerings .OCO-card p{
  
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
  letter-spacing: 0.02em;
  text-align: left;
  color:#838696 !important;
  
}

.our-core-offerings .OCO-card img{
  border-radius:20px !important;
}

.button-container {
  position: relative;
  display: inline-block;
  color:#FFF;
}

.button-container .animate-btn {
  background-color: #AA2898;
  color: white;
  font-size: 16px;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  transition: transform 0.5s cubic-bezier(.68,-0.55,.27,1.55);
  box-shadow: 0 5px 0 black;
}

.button-container .animate-btn:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: black;
  color:#FFF;
  border-radius: 8px;
  z-index: -1;
  transition: all 0.5s ease;
}

.button-container .animate-btn:hover {
  transform: translateY(-5px);
}

.button-container .animate-btn:hover:before {
  top: 0;
  color: #FFF !important;
}

/* Our Offering Section Ends... */

/* Testimonials Section... */

.testimonials-section .testi-heading{
  font-family: "Source Sans 3", sans-serif !important;
font-size: 20px;
font-weight: 400;
line-height: 25.14px;
text-align: left;
color:#AA2898 !important;
}

.testimonials-section .testi-subhead{
 
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0.02em;
  text-align: left;
  color:#0E090D;
  
}

.testimonials-section .carousel img {
  width: 70px;
  max-height: 70px;
  border-radius: 50%;
  margin-right: 1rem;
  overflow: hidden;
}
.testimonials-section .carousel-inner {
  padding: 1em;
}

@media screen and (min-width: 576px) {
  .testimonials-section .carousel-inner {
    display: flex;
    width: 90%;
    margin-inline: auto;
    padding: 1em 0;
    overflow: hidden;
  }
  .testimonials-section .carousel-item {
    display: block;
    margin-right: 0;
    flex: 0 0 calc(100% / 2);
  }
}
@media screen and (min-width: 768px) {
  .testimonials-section .carousel-item {
    display: block;
    margin-right: 0;
    flex: 0 0 calc(100% / 3);
  }
}
.testimonials-section .carousel .card {
  margin: 0 0.5em;
  border: 0;
}

.testimonials-section .carousel-control-prev {
  width: 3rem;
  height: 3rem;
  background-color: #FFF !important;
  border: 2px solid #0E090D !important;
  opacity: 1 !important;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.testimonials-section .carousel-control-next {
  width: 3rem;
  height: 3rem;
  background-color: #AA2898 !important;
  opacity: 1 !important;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.testimonials-section .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='%230E090D' stroke='%230E090D' stroke-width='1.3'%3e%3cpath d='M9.354 1.646a.5.5 0 0 0-.708 0l-5 5a.5.5 0 0 0 0 .708l5 5a.5.5 0 1 0 .708-.708L4.707 7l4.647-4.646a.5.5 0 0 0 0-.708z'/%3e%3c/svg%3e") !important;
}

.testimonials-section .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='%23fff' stroke='%23fff' stroke-width='1.3'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l5 5a.5.5 0 0 1 0 .708l-5 5a.5.5 0 0 1-.708-.708L9.293 7 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.testimonials-section .carousel-item .card{
  padding: 25px 18px !important;
  background-color: #FFF !important;
  box-shadow: 0px 4px 27.8px 0px #1018280A;
  border-radius: 20px !important;
}

.testimonials-section .carousel-item .card .textimonial-text{
  font-family: "Source Sans 3", sans-serif !important;
  font-size: 18px;
  font-weight: 400;
  line-height: 22.63px;
  letter-spacing: 0.01em;
  text-align: left;
}

.testimonials-section .carousel-item .card .testimonial-author{
  font-size: 18px !important;
  font-weight: 600;
  line-height: 25px;
  text-align: left;
  color:#AA2898;
}



/*--------------------------------------------------------------
# Contact Us Section
--------------------------------------------------------------*/
.contactus-section {
  position: relative;
  background-image: url(../../assets/img/banner/contactus-bg.png) !important;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 800px;
}

.contactus-section .contactus-heading{
  color: #AA2898;
font-size: 32px;
font-weight: 700;
line-height: 41.6px;
letter-spacing: 0.02em;
text-align: left;
margin-bottom: 25px;
}

.contactus-section .contactus-slogan{
   color: #0E090D;
  font-family: "Source Sans 3", sans-serif !important;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0.02em;
  text-align: left;
  
}

@media screen and (max-width:500px){
  .contactus-section .contactus-heading{
    font-size: 33px !important;
  }
}

.contactus-section .contactus-info-col{
  position: absolute;
  bottom: 50%;
}

.contactus-section .form-column{
  display: flex;
  position: absolute;
  top: 22%;
  right: 7%;
  justify-content: end;
}

.contactus-section .form-column .form-card{
  padding: 20px;
  max-width: 65%;
  border: none !important;
  border-radius: 16px;
  box-shadow: 0px 4px 25px 0px #0000000A;
}
.contactus-section .form-column .form-label{
  font-family: "Source Sans 3", sans-serif !important;
  font-size: 14px;
  font-weight: 400;
  line-height: 17.6px;
  text-align: left;
  color:#0E090D;
  }

.contactus-section .form-column .form-control::placeholder{

font-size: 16px;
font-weight: 400;
line-height: 24px;
text-align: left;
color: rgba(131, 134, 150, 1);

  }

.contactus-section .form-column .form-card .form-control{
  border: 1px solid rgba(183, 191, 199, 1) !important;
   border-radius: 8px;
   padding: 11px 10px;
}

.contactus-section .form-column .form-card .form-control:focus{
  box-shadow: none !important;
  border: 1px solid #AA2898 !important;
}

.send-msg, .send-msg:hover, .send-msg:active{
  height: 48px !important;
  border-radius: 12px !important;
  background-color: #AA2898 !important;
  border-color: #AA2898 !important;
  padding-left: 23px !important;
  padding-right: 23px !important;
  color: #FFFFFF !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 24px !important;
  text-align: left !important;
}

@media screen and (max-width:991px){
  .contactus-section .contactus-info-col{
    bottom: auto !important;
    top: 2% !important;
  }
  .contactus-section .form-column {
    top: 21% !important;
    right: auto !important;
    justify-content: center !important;
  }
}

@media screen and (max-width:600px){
  .contactus-section .form-column .form-card {
    max-width: 97%;
    padding: 0 !important;
  }
}

@media screen and (max-width:479px){
  .contactus-section .form-column {
    top: 30% !important;
  }
}

/* ======================================== */
/* About Us Page */
/* ======================================== */

.abtus-banner-section{
   background-color: #FEF5FE;
   max-height: 632px !important;
}

.abtus-banner-section .hero-head{
  color:#AA2898;
  font-size: 56px;
  font-weight: 700;
  line-height: 72px;
  letter-spacing: -0.05em;
  text-align: left;
}

.abtus-banner-section .subhead-para{
  font-family: "Source Sans 3", sans-serif !important;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #0E090D;
}

@media screen and (min-width:1150px){
  .abtus-banner-section .abtus-banner-img{
    position: relative;
    right: -85px;
  }
}

.vision-mission{
  padding-top: 130px;
  padding-bottom: 130px;
}

.vision-mission .main-head{
 color:#0E090D;
font-size: 32px;
font-weight: 700;
line-height: 48px;
letter-spacing: 0.02em;
text-align: left;
margin-bottom: 30px;
}

.vision-mission .sub-heading{
font-size: 24px;
font-weight: 700;
line-height: 28px;
letter-spacing: 0.02em;
text-align: left;
color:#AA2898;
padding-bottom: 15px;
}

.vision-mission .para-content{
  font-family: "Source Sans 3", sans-serif !important;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.02em;
  text-align: left;
  color:#838696;
}

.vision-mission .vm-banner-img{
  height: 550px;
  object-fit: cover;
  border-radius: 32px !important;
}

.feature-section.odd{
  background-color: #FAFAFA !important;
}

.feature-section.even{
  background-color: #FDEAFD !important;
}

.feature-section .feature-info h4{
 color: #AA2898;
  font-size: 32px;
  font-weight: 700;
  line-height: 41.6px;
  letter-spacing: 2px;
  text-align: left;
  margin-bottom: 30px;
}

.feature-section .feature-info p{
  font-family: "Source Sans 3", sans-serif !important;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.02em;
  text-align: left;
  color:#0E090D;
}

@media screen and (max-width:991px){
  .feature-section .feature-info{
    padding: 30px 30px;
  }
}

/* Footer widget */

section.aboutus-footer-banner{
  padding-top: 130px;
    padding-bottom: 100px;
}

.card.Aboutus-Footer-Card{
  padding: 55px 37px;
  border: none !important;
  background-color: #FFF;
  box-shadow: 0px 3px 15px 0px #1018281A;
  border-radius: 24px;
  max-height: 400px;
}

.Aboutus-Footer-Card .join-us-text{
  color: #AA2898;
font-size: 32px;
font-weight: 700;
line-height: 36.8px;
letter-spacing: -0.04em;
text-align: left;
  margin-bottom: 30px;
}

.Aboutus-Footer-Card p{
 
  font-family: "Source Sans 3", sans-serif !important;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0.02em;
  text-align: left;
  color: #838696;
margin-bottom: 55px;

}

.aboutus-footer-banner .footer-banner-img{
  bottom: -7px;
  right: -15px;
  position: relative;
  overflow: hidden;
}

.SFB-col{
    position: relative;
    object-fit: contain;
    right: 77px;
    bottom: -76px;
    height: 100%;
    overflow: visible;
    background-repeat: no-repeat;
    background-size: 100%;
}

@media screen and (min-width:992px) and (max-width:1199px){
  .aboutus-footer-banner .footer-banner-img{
    height: 305px;
    bottom: -80px !important;
  }
}

@media screen and (max-width:991px){
  .Aboutus-Footer-Card .SFC-DIV{
    display:block !important;
  }
  .card.Aboutus-Footer-Card {
    max-height: max-content !important;
}

.aboutus-footer-banner .footer-banner-img {
    bottom: -78px !important;
    right: auto !important;
    position: relative !important;
    overflow: hidden !important;
    max-width: 100% !important;
}
}

.aboutus-footer-banner .btn-action-1, .aboutus-footer-banner .btn-action-1:hover, .aboutus-footer-banner .btn-action-1:active{
    background-color: #AA2898 !important;
    border-color: #AA2898 !important;
    border-radius: 12px !important;
font-size: 14px;
padding: 10px 17px !important;
font-weight: 700;
line-height: 24px;
letter-spacing: -0.02em;
text-align: center;

}

/* Service Page CSS */

.service-section{
  background-image: url('../img/banner/service-bg.png');
  height: 800px;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

@media screen and (max-width:568px){
  .service-section{
    background-size: cover !important;
    height: 400px !important;
  }
  .service-section .banner-content h1{
    font-size: 30px !important;
    line-height: 45px !important;
  }
  .service-section .banner-content p{
    font-size: 16px !important;
  }
}

.service-section .banner-content h1{
  font-size: 56px;
  font-weight: 700;
  line-height: 72px;
  letter-spacing: -0.05em;
  text-align: left;
  color:#FFFFFF;  
  margin-bottom: 30px;
}

.service-section .banner-content p{
  font-family: "Source Sans 3", sans-serif !important;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0.02em;
  text-align: left;  
  color: #FFFFFF;
}

.service-wrapper{
  padding-top: 130px;
  padding-bottom: 100px;
}

.service-wrapper .service-contents .number-avatar{
  height: 80px;
  width: 80px;
  min-height: 80px;
  min-width: 80px;
  border-radius:50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #AA2898 !important;
}

.service-wrapper .service-contents .number-avatar h1{
  color:#FFFFFF;
  font-size: 40px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: -0.05em;
  text-align: left;
  margin-bottom: 0;
  padding-bottom: 0;
}

.service-wrapper .service-contents .service-heading{
  color:#0E090D;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: -0.05em;
  text-align: left;
  margin-bottom: 0;
  padding-left: 25px;
}

.service-wrapper .service-img{
  height: 500px !important;
  object-fit: cover;
  border-radius: 24px !important;
}

.service-wrapper .additional-infos{
  padding-left: 105px;
}

.service-wrapper .additional-infos p{
  font-family: "Source Sans 3", sans-serif !important;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.02em;
  text-align: left;
  color:#838696;
}

.service-wrapper .additional-infos .ben-head{
  font-family: "Source Sans 3", sans-serif !important;
  font-size: 18px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: -0.05em;
  text-align: left;
  color: #0E090D;
}

.service-wrapper .additional-infos ol li{
  font-family: "Source Sans 3", sans-serif !important;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.02em;
  text-align: left;
   color:#838696;
}

.service-wrapper .service-widget{
  margin-bottom: 130px;
}


/* CONTACT US PAGE CSS */

.contact-us-section .CU-bg-overlay{
  height: 478px;
  background-color: #AA2898;
}

.contact-us-section .get-in-touch{
  font-size: 64px;
  font-weight: 600;
  line-height: 72px;
  letter-spacing: -0.05em;
  text-align: left;
  color:#FFFFFF;  
}

.contact-us-section .GIT-slogan{
  font-family: "Source Sans 3", sans-serif !important;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.02em;
  text-align: left;
  color:#FFFFFF;
}

.contact-us-section .slogan-container{
  position: relative;
  bottom: 50px;
}

.contact-info-container{
  margin-top: 100px;
  margin-bottom: 170px;
}

 .contact-info{
  display: flex;
  justify-content: start;
  align-items: start;
  margin-bottom: 25px;
}

.contact-info h5{
  color: #0E090D;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.05em;
  text-align: left;
}
.contact-info p{
  font-family: "Source Sans 3", sans-serif !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.02em;
  text-align: left;
  color: #838696 !important;
}
.CUS-form-col{
  display: flex;
  justify-content: end;
  position: absolute;
  top: -100px;
  right: 80px;
}

 .CUS-form-card{
    border: none !important;
    outline: none !important;
    background-color: #FFFFFF;
    box-shadow: 0px 4px 32px 0px #0000000D;
    border-radius: 24px !important;
    padding: 25px;
    position: absolute;
    top: 305px;
    max-width: 600px;
 }

 .CUS-form-container .form-label{
  font-family: "Source Sans 3", sans-serif !important;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #0E090D;
  
 }

 .CUS-form-container{
  padding: 20px 28px;
 }

 .CUS-form-container .form-control{
     padding: 15px 13px;
     border-radius: 12px;
     background-color:#F4F5F6;
     border-color:#F4F5F6;
     height: 48px;
 }

 .CUS-form-container textarea.form-control{
   height: auto !important;
 }

 .CUS-form-card .form-control:focus{
   border-color: #AA2898 !important;
   box-shadow: none !important;
 }

 .CUS-form-card .send-btn{
     border-radius: 12px !important;
     padding: 13px 65px !important;
    font-size: 16px;
    border-color: #AA2898 !important;
    background-color: #AA2898 !important;
    color: #FFF;
    margin-top: 15px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -0.02em;
    text-align: center;
 }


 @media screen and (max-width:767px){
 
  .send-mail-wrapper{
    width: auto !important;
  }
  .CUS-form-col{
    position: relative;
    top: auto;
    right: auto;
  }
  .CUS-form-card{
    position: relative;
    top: auto;
  }
  .CUS-form-container{
    padding: 20px 0;
  }
  .contact-info-container {
    margin-bottom: 0;
}
 }

 
 .send-mail-wrapper{
  position: relative;
  border: 1px solid #E2E4E9 !important;
  border-radius: 12px !important;
  height: 60px !important;
  background-color: #FFF !important;
  width: 500px;
  display: flex;
  justify-content: space-between;
 }

 .send-mail-wrapper input{
 padding: 20px;
   background-color: #FFF !important;
   width: 100%;
   border: 1px solid #E2E4E9;
   border-radius: 12px !important;
 }

 .send-mail-wrapper input:focus{
  border-color:#F22735 !important;
  outline: none !important;
 }

 .subscribe-btn{
  position: absolute;
  right: 7px;
  top: 5px;
  height: 48px;
  border-radius: 12px !important;
 }

 .send-mail-wrapper ::-webkit-input-placeholder{
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.03em;
    text-align: left;
    color:#838696;
 }



