
/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: 'Satoshi', sans-serif;
  --heading-font: 'Satoshi', sans-serif;
  --nav-font: 'Satoshi', sans-serif;
  font-family: 'Satoshi', sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #222222; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #3498db; /* 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: #444444;  /* The default color of the main navmenu links */
  --nav-hover-color: #3498db; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #3498db; /* 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: #f4fafd;
  --surface-color: #ffffff;
}
*/
.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  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 .ailogodiv{
  width: 75px;
}

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

.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: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}
.container.header-logo img {
    width: 100%;
}
.container.header-logo a.ile-top-logo img {
  max-width: 66%;
  padding-top: 15px;
}
@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;
  }
}
.img-size{
      max-width: 122%;
}
.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;
    visibility: hidden;
  }

  .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 {
  background: url(../img/Ellipse_bg_footer.svg);
  font-size: 14px;
  padding: 40px 0;
  position: relative;
  background-position: top;
      margin-top: 100px;
}
.footer .powered {
    background: #fff;
    width: 62%;
    margin: 0 auto;
    border-radius: 20px;
    position: relative;
    top:-90px;
    border: 1px solid #E4E7EC;
    padding: 20px;
}
.footer-about ul {
  list-style: none;
  padding: 0;
}
.footer-about ul li {
  display: inline-block;
  vertical-align: top;
  padding-right: 16px;
}
.footer-about ul li.vedhiklogofooter {
  padding-top: 31px;
  padding-left: 12px;
}
.footer .powered ul li:last-child {
  padding-right: 0;
}
.footer-links h4{
  font-size: 20px;
   margin-bottom: 20px;
}
.footer .footer-links {
    color: #fff;

}
.footer .footer-links ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer .footer-links ul li {
    line-height: 36px;
    font-size: 16px;
    color: #e3d3de;
}
.footer .footer-links ul li a {
    line-height: 36px;
    font-size: 16px;
    color: #e3d3de;
}
.footer .copyright p {
     margin-bottom: 0;
    line-height: 80px;
    color: #e2d3df;
    font-size: 16px;
    text-align: right;
}

.footer .copyright .social-links {
  margin-top: 20px;
}
.footer .copyright .social-links {
  margin-top: 20px;
}
.footer .copyright .social-links ul li{
  display: inline-block;

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

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

.footer .credits {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
}

.footer .powered-txt {
  font-weight: 700;
  font-size: 22px;
  text-align: left;
  display: inline-block;
  width: 33%;
}
.footer .powered ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 56%;
  display: inline-block;
}
.footer .powered ul li{
    display: inline-block;
        padding-right: 25px;
}
.footer .ilelogo{
  width: 160px;
}
@media (max-width: 1023px) {
  .footer .powered {
    background: #fff;
    width: 100%;
    margin: 0 auto;
    border-radius: 20px;
    position: relative;
    top: -90px;
    border: 1px solid #E4E7EC;
    padding: 20px;
}
}
/*--------------------------------------------------------------
# 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: #6f215c transparent #6f215c 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: #6a1a24;
  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: #dbc4dd;
  color: #000;
}

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

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 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);
  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;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

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

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

.hero h1 {
  margin: 0;
  font-size: 51px;
  font-weight: 700;
  line-height: 56px;
}

.hero p {
   color: #475467;
    margin: 5px 0 20px 0;
    font-size: 20px;
    font-weight: 500;
    margin-top: 25px;
    margin-bottom: 40px;
}

.hero .btn-get-started {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 16px 28px;
  border-radius: 50px;
  transition: 0.3s;
  border:none;
  color: #fff;
  background: radial-gradient(50% 100% at 15% 60%, rgb(216, 45, 45) 0%, rgb(89, 31, 102) 100%);
}
.hero .btn-get-started a{
  color: #fff;
}

.hero .btn-get-started:hover {
  color: #fff;
  background: radial-gradient(50% 100% at 15% 60%, rgb(89, 31, 102) 0%, rgb(216, 45, 45) 100%);
}
.hero .btn-get-started span.x-logo-header {
    display: inline-block;
    position: relative;
    top: -2px;
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
.hero .supporting-text {   
    border: 1px solid;
    border-color: #E4E7EC;
    border-radius: 20px;
    padding: 3px 10px;
    display: block;
    font-weight: 600;
    font-size: 13px;
    text-align: center;
    position: relative;
    top: -25px;
    color: #344054;
}
.hero .top-head-txt{
 margin-top: 12%;
}

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

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
  /*Client Slider*/
  .slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
.clients {
  padding: 20px 0;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients .client-logo img {
  padding:0;
  max-width: 100%;
  transition: 0.3s;
  
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# About Section - Live Scoreboard
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 48px;
  margin-bottom: 10px;
}

.about .content p {
  margin-bottom: 80px;
  font-size: 1.2rem;
  text-align: left;
  font-weight: 700;
  color: #631273;
}


  .about .posts {
    display: flex;
    width: 100%;
    align-items: flex-start;
    gap: 16px;
    
  }
  div#twitter .reply-item {
    display: inline-block;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    flex: 1;
    flex-grow: 1;
    background: url(../img/X_logo_ash_color.svg);
    background-repeat: no-repeat;
    background-position:96% 30px;
    flex-grow: 1;
    padding: 24px 24px 32px;
    position: relative;
    align-self: stretch;
    flex: 0 0 auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid;
    border-color: #e4e7ec;
    
    width: 100%;
   vertical-align: top;
   min-height: 180px;
}
div#twitter .user-info img{
  position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
}
div#twitter .user-details {
  display: inline-block;
  margin-left: 13px;
}
div#twitter .reply-item p{
  margin-top: 10px;
}

.posts-container {
  display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.post-card {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 20px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  opacity: 0.8;
}
.post-card.active {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 20px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  background: linear-gradient(1deg, rgba(216, 45, 45, 1) 0%, rgba(89, 31, 102, 1) 100%);
  opacity: 1;
}
.post-card.active p{
  color: #eff3f4;
}
.post-card p {
  font-size: 14px;
  color: #a3a3a3;
  font-weight: 500;
}
.post-card:hover {
  background-color: #f0f0f0;
}
.user-details strong {
  color: #631273;
}
.user-details span {
  color: #060606;
  font-size: 14px;
}
.reply-item p {
  color: #000;
  font-size: 14px;
}
.post-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.reply-container {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.reply-item {
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 10px;
  
}

.user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-pic {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.user-details {
  display: inline-block;
}
  .about .column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    flex: 1;
    flex-grow: 1;
  }
  
  .about .post {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 24px 32px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid;
    border-color: #e4e7ec;
  }
  
  .about .frame {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
  }
  
  .about .img {
    position: relative;
    width: 48px;
    height: 48px;
  }
  
  .about .frame-2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    flex: 1;
    flex-grow: 1;
  }
  
  .about .text-wrapper {
    position: relative;
    align-self: stretch;
    margin-top: -1px;
    font-family: "Satoshi Variable-Bold", Helvetica;
    font-weight: 700;
    color: #101828;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 24px;
  }
  
  .about .supporting-text-2 {
    position: relative;
    align-self: stretch;
    font-family: "Satoshi Variable-Medium", Helvetica;
    font-weight: 500;
    color: var(--1-color-modes-colors-text-text-tertiary-600);
    font-size: 16px;
    letter-spacing: 0;
    line-height: 24px;
  }
  
  .about .x-logo {
    position: relative;
    width: 24px;
    height: 24px;
  }

.about .content .about-btn {
  padding: 8px 30px 9px 30px;
  color: var(--accent-color);
  border-radius: 50px;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--accent-color);
}

.about .content .about-btn i {
  font-size: 16px;
  padding-left: 5px;
}

.about .content .about-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about .icon-box i {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.about .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.about .icon-box h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.about .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

.about .icon-box:hover h4 a {
  color: var(--accent-color);
}

@media (max-width: 1023px) {
  .about  .posts{
    display: inline-block;
  }
  .about .column{
        display: inline-block!important;
        width: 100%!important;
  }
  .about .post{
    margin-bottom: 16px;
  }
}

/*--------------------------------------------------------------
# Background curve
--------------------------------------------------------------*/
#background-bg {
    background: url(../img/Ellipse_bg.svg);
    z-index: 99;
    position: relative;
    top: 105px;
    background-size: cover;
}
#background-bg-btm {
    background: url(../img/btm_bg_style.svg);
    z-index: 99;
    position: relative;
    top: -119px;
    background-size: cover;
    transform: rotate(180deg);
}


/*--------------------------------------------------------------
# Timeline
--------------------------------------------------------------*/
.timeline{
    position: relative;
     background: rgb(216, 45, 45);
    background: linear-gradient(1deg, rgba(216, 45, 45, 1) 0%, rgba(89, 31, 102, 1) 100%);
    padding-top: 150px;
}
.timeline .content h3 {
  font-weight: 700;
  font-size: 48px;
  color: #fff;
  margin-bottom: 10px;
}
/*Timeline slider */

.timeline .container1 {
  width:100%;
  margin: 0;
}

.timeline .swiper-block {
  margin-top: 10px;
}

.timeline .swiper-container {
  width: calc(50% + 50vw);
 position: relative;
}

.timeline .swiper-slide {
  width: 65%;  
  padding: 10px;
  border-radius: 20px;
  text-align: left;
 
}

.timeline .swiper-pagination {
  width: calc((100% - 60vw) * 2) !important;
}
.timeline .slide-div {
    display: inline-block;
    text-align: left;
}
.timeline .slide-head-txt {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
}
.timeline .lev-wrap {
    display: inline-block;
    background: #fff;
    padding: 30px;
    max-width: 100%;
    border-radius: 30px;
}
.timeline .left-txt-div {
    display: inline-block;
    width: 50%;
    margin-right: 20px;
}
.timeline .leveldiv {
    display: inline-block;
}
.timeline span.levtxt-top {
    font-size: 12px;
    border: 1px solid #ccc;
    padding: 4px 10px;
    border-radius: 24px;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 700;
    color: #344054;
}
.timeline .lev-main-head {
    font-size: 24px;
    color: #101828;
    font-weight: 700;
    width: 100%;
    display: inline-block;
}
.timeline .lev-days {
    display: inline-block;
    width:52%;
    text-align: right;
    color: #631273;
    font-size: 18px;
    font-weight: 600;
     font-family: "Satoshi Variable-Medium", Helvetica;
     visibility: hidden;
}
.timeline .leveldiv p {
    font-family: "Satoshi Variable-Medium", Helvetica;
    color: #475467;
    font-size: 16px;
    line-height: 26px;
}
.timeline .how-its {       
    display: inline-block;
    color: #475467;
   margin-top: 26px;
    margin-bottom: 20px;
}
.timeline .how-its a {
  background: #63127316;
    color: #631273;
    font-weight: 600;
    padding: 15px 15px;
    font-size: 14px;
}
.timeline .how-its span {
    font-size: 15px;
    padding-left: 14px;
    font-weight: 600;
}
.timeline .lev-list {
    display: inline-block;
    margin-top: 26px;
}
.timeline .lev-list ul {
  margin: 0;
  padding: 0;

}
.timeline .lev-list ul li {
    list-style: none;
    color: #475467;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    padding-bottom: 15px;
    vertical-align: top;
}
.timeline .lev-list ul li span.list-head {
    display: inline-block;
    width: 28%;
    vertical-align: top;
    font-weight: 500;
}
.timeline .lev-list ul li span.list-sub-head{
  display: inline-block;
  width: 70%;
  font-weight: 500;
}
.timeline .right-div{
  display: inline-block;
  width: 46%;
  vertical-align: top;
  text-align: right;
}
.timeline .right-img {
    display: inline-block;
    text-align: right;
    position: relative;
}
.right-img img {
    width: 100%;
}
.timeline .right-img {
    display: inline-block;
    text-align: right;
}
.timeline .time-left {
    display: inline-block;
    width: 95.5%;
    text-align: left;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: 10px;
    padding: 10px;
    border-radius: 10px;
}
.timeline .time-left ul {
  margin: 0;
  padding: 0;

}
.timeline .time-left ul li {
    list-style: none;
    color: #475467;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    vertical-align: top;
}
.timeline .time-left ul li span.list-head {
  display: inline-block;
  width: 68%;
  vertical-align: top;
  line-height: 26px;
  font-weight: 500;
}
.timeline .time-left ul li span.list-sub-head{
  display: inline-block;
    width: 31%;
    font-weight: 700;
    text-align: right;
    line-height: 28px;
}

.timeline .next-pre .swiper-button-prev{
  position: absolute;
    top: -55px;
    right: 0;
    height: auto;
    margin-top: 0;
    z-index: 9999999999;
    cursor: pointer;
    display: flex;
}

.timeline .next-pre .swiper-button-next{
    position: absolute;
    top: -55px;
    right: 0;
    height: auto;
    margin-top: 0;
    z-index: 9999999999;
    cursor: pointer;
    display: flex;
}
.timeline .next-pre {
  position: absolute;
  top: -12px;
  right: 154px;
  width: 111px;
}

.timeline .swiper-button-prev img {
    background-color: #ffffff20;
    padding: 16px;
    border-radius: 50%;
}
.timeline .swiper-button-next img {
    background-color: #ffffff20;
    padding: 16px;
    border-radius: 50%;
}
.timeline .swiper-button-next:after, .timeline .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: 0;
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
    background-color: #fff;
}

@media (max-width: 1023px) {

  .timeline .right-div {
    display: inline-block;
    width: 100%;
    vertical-align: top;
    text-align: center;
}
.timeline .left-txt-div {
    display: inline-block;
    width: 100%;
    margin-right: 13px;
}
}
#loom-companion-mv3{display: none;}
/*--------------------------------------------------------------
# Shared values for success Section
--------------------------------------------------------------*/
.success {
  margin: 111px 0 ;
}

.success .heading-3 {
    position: relative;
    align-self: stretch;
    margin-top: -1px;
    color: #ffffff;
    font-size: 48px;
    text-align: center;
    letter-spacing: -1.44px;
    line-height: 56px;
    font-family: "Satoshi Variable-Bold", Helvetica;
    font-weight: 700;
    margin-bottom: 30px;
}

.success .point {
    flex-direction: column;
    width: 280px;
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
  }
  
.success .icon {
    position: relative;
    width:38px;
    height: 38px;
    background-blend-mode: overlay;
  }
 .success .icon-bg {
    background: #ffffff20;
    border-radius: 50%;
    padding: 15px;
}

  .success .supporting-text-15 {
    position: relative;
    align-self: stretch;
    margin-top: -1px;
    font-family: "Satoshi Variable-Bold", Helvetica;
    font-weight: 700;
    color: #ffffff;
    font-size: 20px;
    text-align: center;
    letter-spacing: 0;
    line-height: 32px;
  }

  .success .supporting-text-16 {
    position: relative;
    align-self: stretch;
    font-family: "Satoshi Variable-Medium", Helvetica;
    font-weight: 500;
    color: #ffffffcc;
    font-size: 18px;
    text-align: center;
    letter-spacing: 0;
    line-height: 30px;
  }
@media (max-width: 1023px) {

  .success .point {
    flex-direction: column;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
}
}

/*--------------------------------------------------------------
# Win prizes Section
--------------------------------------------------------------*/
.win-svg-img {
    text-align: center;
    margin-top: 111px;
    margin-bottom: 210px;
}
.win-svg-img img {
    max-width: 100%;
}
.win-section{
  margin-top: 50px;
  margin-bottom: 50px;
  position: relative;
}
.win-section h2 {
    position: relative;
    align-self: stretch;
    margin-top: -1px;
    color: #ffffff;
    font-size: 48px;
    text-align: center;
    letter-spacing: -1.44px;
    line-height: 56px;
    font-family: "Satoshi Variable-Bold", Helvetica;
    font-weight: 700;
    margin-bottom: 15px;
}
.win-section p {
    text-align: center;
    color: #fff;
}
.win-section .graphic {
    position: relative;
    width: 100%;
    height: 499px;
    top: 50px;
    left: 0;
  }
  .win-section .supporting-text-15 {
    position: relative;
    align-self: stretch;
    margin-top: -1px;
    font-family: "Satoshi Variable-Bold", Helvetica;
    font-weight: 700;
    color: #ffffff;
    font-size: 20px;
    text-align: center;
    letter-spacing: 0;
    line-height: 32px;
}
  .win-section .overlap-group-3 {
   position: relative;
    width: 100%;
    height: 499px;
    left: 145px;
    right: auto;
    margin: 0 auto;
  }
  
  .win-section .subtract {
    position: absolute;
    width: 344px;
    height: 359px;
    top: 140px;
    left: 332px;
  }
  
  .win-section .point-5 {
    flex-direction: column;
    width: 280px;
    top: 0;
    left: 364px;
    display: flex;
    align-items: center;
    gap: 24px;
    position: absolute;
  }
  
  .win-section .supporting-text-19 {
    position: relative;
    align-self: stretch;
    font-family: "Satoshi Variable-Bold", Helvetica;
    font-weight: 700;
    color: #ffffff;
    font-size: 48px;
    text-align: center;
    letter-spacing: -1.44px;
    line-height: 56px;
  }
  
  .win-section .supporting-text-wrapper {
    position: relative;
    width: 64px;
    height: 64px;
    background-color: #ffffff;
    border-radius: 100px;
  }
  
  .win-section .supporting-text-20 {
    position: absolute;
    top: 15px;
    left: 20px;
    font-family: "Satoshi Variable-Bold", Helvetica;
    font-weight: 700;
    color: #101828;
    font-size: 20px;
    text-align: center;
    letter-spacing: 0;
    line-height: 32px;
    white-space: nowrap;
  }
  
  .win-section .point-6 {
    width: 368px;
    justify-content: flex-end;
    top: 392px;
    left: 0;
    display: flex;
    align-items: center;
    gap: 24px;
    position: absolute;
  }
  
  .win-section .text-5 {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    position: relative;
    flex: 1;
    flex-grow: 1;
  }
  
  .win-section .supporting-text-21 {
    position: relative;
    align-self: stretch;
    margin-top: -1px;
    font-family: "Satoshi Variable-Bold", Helvetica;
    font-weight: 700;
    color: #ffffff;
    font-size: 20px;
    text-align: right;
    letter-spacing: 0;
    line-height: 32px;
  }
  
  .win-section .supporting-text-22 {
    position: relative;
    align-self: stretch;
    font-family: "Satoshi Variable-Bold", Helvetica;
    font-weight: 700;
    color: #ffffff;
    font-size: 48px;
    text-align: right;
    letter-spacing: -1.44px;
    line-height: 56px;
  }
  
  .win-section .supporting-text-23 {
    position: absolute;
    top: 15px;
    left: 14px;
    font-family: "Satoshi Variable-Bold", Helvetica;
    font-weight: 700;
    color: #101828;
    font-size: 20px;
    text-align: center;
    letter-spacing: 0;
    line-height: 32px;
    white-space: nowrap;
  }
  
  .win-section .point-7 {
    width: 368px;
    justify-content: flex-end;
    top: 392px;
    left: 640px;
    display: flex;
    align-items: center;
    gap: 24px;
    position: absolute;
  }
  
  .win-section .supporting-text-24 {
    position: absolute;
    top: 15px;
    left: 16px;
    font-family: "Satoshi Variable-Bold", Helvetica;
    font-weight: 700;
    color: #101828;
    font-size: 20px;
    text-align: center;
    letter-spacing: 0;
    line-height: 32px;
    white-space: nowrap;
  }
  
  .win-section .supporting-text-25 {
    position: relative;
    align-self: stretch;
    margin-top: -1px;
    font-family: "Satoshi Variable-Bold", Helvetica;
    font-weight: 700;
    color: #ffffff;
    font-size: 20px;
    letter-spacing: 0;
    line-height: 32px;
  }
  
  .win-section .supporting-text-26 {
    position: relative;
    align-self: stretch;
    font-family: "Satoshi Variable-Bold", Helvetica;
    font-weight: 700;
    color: #ffffff;
    font-size: 48px;
    letter-spacing: -1.44px;
    line-height: 56px;
  }
  
  .win-section .heading-5 {
    position: absolute;
    top: 296px;
    left: 402px;
    color: #ffffff;
    font-size: 32px;
    text-align: center;
    letter-spacing: 0;
    line-height: 40px;
    font-family: "Satoshi Variable-Bold", Helvetica;
    font-weight: 700;
  }
  
/*--------------------------------------------------------------
# Top Course
--------------------------------------------------------------*/
.portfolio {
  position: relative;
  margin-top: 0;
  padding-top: 0;
}
.portfolio .content h3 {
    font-weight: 700;
    font-size: 48px;
    margin-bottom: 10px;
    text-align: left;
}
.portfolio .content p {
  margin-bottom: 20px;
  font-size: 1.2rem;
  text-align: left;
  font-weight: 700;
  color: #631273;
}
.portfolio .btn-getstarted{
      position: absolute;
    right: 0;
    top: 58px;
    width: fit-content;
    margin-top: -2px;
    font-family: "Satoshi Variable-Bold", Helvetica;
    font-weight: 700;
    color: #631273;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 28px;
    white-space: nowrap;
    background-color: #62117314;
    padding: 14px 30px;
    border-radius: 30px;
}



/*--------------------------------------------------------------
# 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: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  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-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
      max-width: 100%;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

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

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  /*transform: scale(1.1);*/
}





/*--------------------------------------------------------------
# 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 .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

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

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

.service-details h4 {
  font-size: 20px;
  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);
}
@media (max-width: 1023px) {
  .img-size {
    max-width:100%;
}
.posts-container{
  display: block;
}
.post-card{
  width: 100%;
  display: inline-block;
  margin-bottom: 10px;
}
.reply-container{
  display: block;
}
div#twitter .reply-item{
  width: 100%;
  margin-bottom: 10px;
}
.timeline .next-pre {
  position: absolute;
  top: -12px;
  right: 32px;
  width: 111px;
}
.timeline .swiper-slide {
  width: 100%;
  padding: 10px;
  border-radius: 20px;
  text-align: left;
}
.portfolio .btn-getstarted {
  position: relative;
  right: 0;
  left: 0;
  top: 0;
  width: fit-content;
  margin-top: -2px;
  font-family: "Satoshi Variable-Bold", Helvetica;
  font-weight: 700;
  color: #631273;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 28px;
  white-space: nowrap;
  background-color: #62117314;
  padding: 14px 30px;
  border-radius: 30px;
}

.footer .copyright p{
  text-align: left;
}
.success {
  margin: 0;
}
.footer .powered-txt{
  width: 100%;
}
.footer .powered ul{
  width: 100%;
}
.footer .powered ul li {
  display: inline-block;
  padding-right: 25px;
  text-align: center;
  width: 100%;
  margin-top: 20px;
}
.container.header-logo a.ile-top-logo img {
  max-width: 100%;
  padding-top: 55px;
}
#background-bg{
  display: none;
}
.timeline{
  padding-top: 30px;
}
.timeline .time-left ul li span.list-head {
  width: 100%;
}
.timeline .time-left ul li span.list-sub-head{
  width: 100%;
  text-align: left;
}
}
