@charset "utf-8";

body {
	font-family:  'Inter' ,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
}
/*
    CSS for Header
*/


:root{
    --header-theme-black: #000;
    --header-theme-white: #fff;
    --header-theme-white-text: #fff;
    --header-theme-black-text: #1a1a1a;
    --header-theme-yellow: #eafd64;
    --header-theme-yellow-hover: #d4ec2b;
    --header-theme-red-breadcrumb: #e85e3d;
    --header-theme-grey: #757575;
    --header-theme-border-grey: #505050
}

@keyframes rotateAnimationIn {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(180deg)
    }
}

@keyframes rotateAnimationOut {
    0% {
        transform: rotate(180deg)
    }

    to {
        transform: rotate(0deg)
    }
}

.header {
    font-family: 'Inter',-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
    color: var(--header-theme-white-text);
    background-color: var(--header-theme-black);
}

.header .web-header {
    display: flex;
    align-items: center;
    padding: 1rem 0;
}


.header .logo {
    cursor: pointer;
}

.header .logo .logo-web {
    max-width: 8.75rem;
    width: 100%;
    height: 100%
}

.header .nav-items {
    font-size: 1rem;
    letter-spacing: .2px;
    margin: .5rem 3rem .5rem 0;
    padding: 0;
    cursor: pointer
}

.header .nav-items i {
    font-size: .8125rem
}

.header .nav-items a {
    text-decoration: none!important;
    letter-spacing: 0.5px;
}

.header .nav-items .dropdown-item {
    border-radius: .5rem;
    border: none;
    background-color: var(--header-theme-black);
    color: var(--header-theme-white-text);
    font-size: 1rem;
    padding: 1rem 1.5rem!important;
    font-weight: 400;
    margin: 0
}

.header .nav-items .dropdown-item:hover {
    text-decoration: none!important;
    color: var(--header-theme-yellow-hover)
}

.header .nav-items .dropdown-item i {
    position: absolute;
    right: 1.5rem;
    top: 1.3rem
}

.header .nav-items .dropdown-button {
    padding: 0!important
}

.header .nav-items:hover {
    /* color: var(--header-theme-yellow-hover); */
    box-shadow: 0 0.4rem 0 0 #eafd64;
}

.header .nav-items:hover .dropdown-mainmenu {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s,0s
}

.header .nav-items .dropdown-mainmenu .submenu-item {
    position: relative;
    display: block;
}

.header .nav-items .dropdown-mainmenu .submenu-item .dropdown-submenu {
    left: 97%!important;
    top: 0
}

.header .nav-items .dropdown-mainmenu .submenu-item .compress {
    display: grid;
    grid-template-columns: 1fr 1fr
}

.header .nav-items .dropdown-mainmenu .submenu-item:hover {
    color: var(--header-theme-yellow-hover);
    border-bottom-right-radius: 0
}

.header .nav-items .dropdown-mainmenu .submenu-item:hover .dropdown-submenu {
    left: 0;
    visibility: visible;
    opacity: 1;
    transition-delay: 0s,0s
}

.header .nav-items .dropdown-mainmenu .submenu-item .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-height: 420px;
    min-height: 420px;
    overflow-y: auto;
}
.header .nav-items .dropdown-mainmenu .submenu-item .grid .view-more {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--header-theme-yellow-hover) !important;
}

.header .nav-items .dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    transition-property: opacity,visibility;
    min-width: 15rem;
    left: -10%!important;
    margin: 0;
}

.header .nav-items .dropdown-menu,.header .nav-items .dropdown-menu .dropdown-item {
    border-radius: .25rem;
    border: none;
    background-color: var(--header-theme-black);
    color: var(--header-theme-white-text);
    font-size: 1rem
}
.header .nav-items .dropdown-menu .dropdown-item:hover {
    font-weight: 400;
    background-color: var(--header-theme-yellow-hover);
    margin: 0
    
}

.header .nav-items .dropdown-menu .dropdown-item {
    padding: 1rem 1.5rem!important;
    font-weight: 400;
    margin: 0
    
}

.header .nav-items .dropdown-menu .dropdown-item.landing-button:hover {
    background-color: #eafd64;
    color: #000;
}


.header .nav-items .dropdown-menu .dropdown-item.landing-button {
    background: #fff;
    color: #000;
    font-size: 0.875rem;
    padding: 0.5rem 1rem !important;
    width: fit-content;
}



.header .nav-items .dropdown-menu .dropdown-item:hover {
    text-decoration: none!important;
    color: var(--header-theme-yellow-hover)
}

@media(max-width: 1054px) {

    .header .web-header {
        display: none;
    }

    .header .mobile-header {
        display: flex;
    }

}

.header .nav-items .resources-dropdown {
    min-width: 16rem!important
}

.header .mobile-header {
    display: none;
    padding: 1rem 0;
    box-shadow: 0 4px 16px var(--header-theme-black);
    background: var(--header-theme-black)
}

.header .mobile-header .logo-mobile {
        width: 2rem;
        height: 2rem;
        cursor: pointer;
}

.header .mobile-header {
    background: var(--header-theme-black);
    align-items: center;
    justify-content: space-between;
}

.header .mobile-header .nav-menu {
    display: flex;
    width:  3.5rem;
    justify-content: space-between;
    align-items: center;
    margin-right: 1rem;
}

.header .mobile-header .fa-2x {
    font-size: 1.35rem;
    cursor: pointer;
}

.right-sidebar .mobile-sidebar-title {
    border-bottom: 1px solid #505050;
    color: var(--header-theme-white-text);
    padding: .875rem 0;
    font-size: 1rem;
    font-weight: 400;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.right-sidebar .mobile-sidebar-title:hover {
    color: #eafd64;
}

.right-sidebar .mobile-sidebar-title .fa-angle-down:before,
.right-sidebar .mobile-sidebar-title .fa-angle-up:before  {
    font-weight: 700;
    font-size: larger;
}

.right-sidebar .mobile-sidebar-title[aria-expanded='true'] .fa {
    transform: rotate(180deg);
    transition: transform 0.3s;
}
.right-sidebar .mobile-sidebar-title[aria-expanded='false'] .fa {
    transform: rotate(360deg);
    transition: transform 0.3s;
}

.right-sidebar .mobile-sidebar-item {
    border-bottom: 1px solid #505050;
    padding: 1.1rem 0;
    cursor: pointer;
    text-decoration: none;
    color: var(--header-theme-white-text);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-weight: 400;
    font-size: 1rem;
}

.right-sidebar .link {
    color: #C6C6C6;
}

.right-sidebar .link:hover {
    color: #EAFD64;
}


@media (max-width: 1054px) {
    .header .mobile-header {
        display: flex;
    }
}

/* Hearder Search */
  .dropdown-item {
    img {
        filter: invert(100%) sepia(0%) saturate(7490%) hue-rotate(235deg) brightness(100%) contrast(102%);
        transition: filter 0.3s ease;
    }

    &:hover img {
        filter: invert(87%) sepia(18%) saturate(1225%) hue-rotate(18deg) brightness(110%) contrast(98%);
    }
}
   

  /* Mobile Search Header*/

.header .mobile-header .search {
    width: 100vw;
    height: 100vh;
    position: absolute;
    background: var(--header-theme-white-text);
    z-index: 9;
    top: 4rem;
    left: 0;
    padding-top: 1rem;
    margin-left: 0;
    display: none;
}

.header .mobile-header .search .search-component {
    display: flex;
    align-items: center;
}

.header .mobile-header .mobile-topic-active {
    display: block ;
}

.header .mobile-header .search input {
    padding: 10px 1rem;
    border: 1px solid var(--header-theme-black);
    margin-right: 1rem;
    font-size: 1rem;
    width: 77%;
    height: auto;
}

.header .mobile-header .search .search-cancel-button {
    color: var(--header-theme-black-text);
    text-decoration: none !important;
    cursor: pointer;
}

.header .mobile-header .search #search-topic-list {
    position: static;
    width: 100%;
    right: auto;
    max-height: none;
    overflow-y: auto;
    top: 70px;
    padding: 0;
    margin-top: 1rem;
    height: 90vh;
}

.header .mpbile-header .search #search-topic-list li a {
    display: block;
    padding: .5rem 1rem;
    color: var(--header-theme-black-text);
    width: inherit;
}

/*
    CSS of Old Header
*/

/*

 header {
    background: #000;
    padding: 1rem 0;
}
header .head-logo {
    display: block;
    width: 140px;
}
header .head-logo img {
    width: 100%;
}
header ul {
    margin: 0;
    padding: 0;
}
header ul li {
    padding-right: 2.5rem !important;
	list-style:none;
	padding-bottom: 0 !important;
	padding-top: 0 !important;
}
header ul li a {
    color: #fff;
    font-size: 1rem;
    letter-spacing: 0.2px;
    text-decoration: none !important;
    border: none;
    outline: none;
    margin-top: 0;
	padding: .5rem 0 !important;
}
header ul li a:hover {
    color: #d4ec2b;
}
header ul li a:hover i {
    color: #d4ec2b;
}
header ul li a.active-menu {
    color: #d4ec2b;
}
header ul li a i {
    font-size: 13px !important;
	    color: #fff;
}

.placement-search-bar {
    position: relative;
    width: 270px;
}
.placement-search-bar input {
    position: relative;
    border: none;
    padding: 9px 1rem 9px 2.5rem;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
}
.placement-search-bar input:focus {
    border: none;
}
.placement-search-bar i {
    position: absolute;
    left: 12px;
    color: #000;
    top: 12px;
}
.placement-search-bar .active {
    display: block;
}
.head-search-topic-list {
    position: absolute;
    z-index: 9;
    background: #fff;
    width: 270px;
    right: 0;
    max-height: 250px;
    overflow-y: auto;
    top: 59px;
    display: none;
    border-radius: 4px;
}
.head-search-topic-list li {
    padding: 0 !important;
}*/

/*
.mobile-header {
    display: none;
}
.company-menu-dropdown {
    background: #000;
    border-radius: 0 0 8px 8px;
    width: auto;
    overflow: hidden;
}
.company-menu-dropdown a {
    color: #fff;
    background: #000 !important;
    border: none !important;
    padding: 1rem 1.5rem !important;
    font-weight: 400;
    font-size: 1rem !important;
}
.company-menu-dropdown a:hover {
    color: #d4ec2b;
}
.company-menu-dropdown.dropdown-menu-center {
    right: auto;
    left: -10% !important;
}
.dropdown-toggle:after {
    display: none;
} 
.side-bar-mob {
	display: none;
}
*/
@media (max-width: 1024){
    .header .web-header {
        display: none;
    }
}
@media only screen and (max-width: 1054px) {

    .web-storie-content .web-stories {
        text-align: left !important;
        width: 90% !important;
    }
    .mobile-res-hide {
        display: none !important;
    }
    .breadcrumb {
        display: none;
    }
    .mobile-header {
        padding: 0.5rem 0;
        display: block;
        box-shadow: 0 4px 16px #000;
        background: #000;
    }
    .mobile-header .head-logo {
        display: block;
        width: 30px;
    }
    .mobile-header .head-logo img {
        width: 100%;
    }
    .mobile-header .sidebar-close {
        margin-bottom: 2rem;
        display: table;
        width: 100%;
    }
    .mobile-header .sidebar-close img {
        float: right;
        width: 22px;
    }
    .mobile-header .right-sidebar {
        background: #000;
        position: absolute;
        right: 0;
        top: 0;
        padding: 0 1.5rem;
        height: 100vh;
        width: 270px;
        transition: 0.3s;
        z-index: 99;
        overflow-y: auto;
    }
    .mobile-header .right-sidebar ul li {
        color: #e85e3d;
        list-style: none;
    }
    .mobile-header .right-sidebar ul li a {
        display: block;
        color: #fff;
        padding: 1.1rem 0;
        font-size: 1rem;
        border-bottom: 1px solid #505050;
        position: relative;
    }
    .mobile-header .right-sidebar ul li a.active-menu {
        color: #d4ec2b;
    }
    .mobile-header .right-sidebar ul li a i {
        position: absolute;
        right: 0;
        top: 20px;
    }
    .mobile-header .right-sidebar ul .company-spc,
    .mobile-header .right-sidebar ul .resource-spc {
        padding: 14px 0;
        border-bottom: 1px solid #505050;
        font-weight: 600;
        font-size: 1.3rem;
        color: #fff;
    }
    /* .mobile-header .menu-in-active {
        right: -280px;
    }
    .mobile-header .menu-is-active {
        right: 0;
        width: 80vw;
    } */
    .mobile-header .menu-in-active {
        display: none;
    }
    .mobile-header .menu-is-active {
        display: block;
        top: 4rem;
        right: 0;
        left: 0;
        width: 100vw;
    }

    #mobile-search {
        border-radius: 0.25rem;
    }

    #mobile-search-icon {
        border: none;
        padding: 0;
        background: none;
        color: #fff;
        margin-right: 1rem;
    }
    .search-is-active {
        display: none;
        position: absolute;
        top: 0;
        background: #fff;
        width: 100%;
        left: 0;
        height: 100vh;
        z-index: 99;
        padding: 1rem;
    }
    .mobile-search-list {
        color: #fff;
        font-size: 1.1rem;
    }
    .mobile-search-list i {
        color: #fff;
    }
    .search-cancel-res {
        color: #1a1a1a;
        text-decoration: underline !important;
    }
    .head-search-topic-list {
        position: initial;
        background: none;
        width: 100%;
        right: auto;
        max-height: initial;
        overflow-y: auto;
        top: 70px;
        padding: 0;
        margin-top: 1rem;
        height: 75vh;
    }
    .head-search-topic-list li {
        float: left;
    }
    .head-search-topic-list li a {
        border: 1px solid #000;
        color: #000;
        margin-bottom: 1rem;
        margin-right: 1rem;
        border-radius: 4px;
    }
    .mobile-topic-active {
        display: block !important;
    }
}
/*
    RankMath Breadcrumb CSS
*/
.rank-math-breadcrumb{
    padding: 1rem 0;
    font-size: 1rem;
    color: #2a2a2a;
    font-weight: 400;
    display: flex;
    width: 100%;
}
.rank-math-breadcrumb p {
    display: flex;
    width: 100%;
    gap: 10px;
    margin-bottom: 0rem;
}
.rank-math-breadcrumb a {
    text-decoration: none;
    color: #2a2a2a;
    vertical-align: middle;
    text-wrap: nowrap;
}
.rank-math-breadcrumb .last {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: fit-content;
    display: inline-block;
    color: #e85e3d;
    vertical-align: middle;
}

@media (max-width: 1054px) {
    .rank-math-breadcrumb {
        display: none;
    }
}

/*.breadcrumb {*/
/*    padding: 1rem 0;*/
/*}*/
/*.breadcrumb .breadcrumb-item a {*/
/*    color: #373f41;*/
/*    font-size: 1rem;*/
/*    font-weight: 400;*/
/*}*/
/*.breadcrumb .breadcrumb-item a i {*/
/*    margin-left: 9px;*/
/*    color: #787878;*/
/*}*/
/*.breadcrumb-item.active {*/
/*    color: #e85e3d;*/
/*}*/
/*.breadcrumb-item + .breadcrumb-item:before {*/
/*    display: none;*/
/*}*/

.web-storie-content {
    top: 4% !important;
}
.web-storie-content .aptitude-max-size {
    max-width: 80% !important;
    text-align: center;
    margin: auto;
}
.web-storie-content .aptitude-max-size h1{
    margin-bottom: 0.5rem !important;
    color: #2a2a2a !important;
}
.web-storie-content .aptitude-max-size p {
    font-size: 1.1rem !important;
    color: #2a2a2a !important;
}
.web-storie-content .web-stories {
    max-width: 80% ;
    text-align: center;
    margin: auto;
}
.web-storie-content .web-stories h1{
    margin-bottom: 0.5rem !important;
    color: #2a2a2a !important;
}
.web-storie-content .web-stories p {
    font-size: 1.1rem !important;
    color: #2a2a2a !important;
}
/* styles.css */

.blog-banner-sec {
    position: relative;

    picture {
      display: flex;
      flex-direction: column;
      flex-wrap: nowrap;
      align-items: center;

      img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
      }

    .banner-with-noimage {
      background: #000;
      padding-top: 12.5rem;
      padding-bottom: 12.5rem;

      h1 {
        text-align: center;
        color: #eafd64;
        font-size: 2rem;
        margin-bottom: 0;
        font-weight: 600;
      }

      p {
        /* text-align: center; */
        font-size: 1rem;
        color: #fff;
        /* padding-top: 24px; */
        margin-bottom: 0;
      }

      @media (max-width: 600px) {
        padding-top: 6.25rem;
        padding-bottom: 6.25rem;
      }
    }

    @media (max-width: 600px) {
      background: linear-gradient(95.32deg, #000 -9.2%, transparent 71.39%);
    }
}

.overlay-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(89.87deg, #fff -22.26%, hsla(0, 0%, 100%, 0) 67.16%);
}

.overlay-content.author-banner-sec {
  position: absolute;
  bottom: 30%;
  left: 0;
  width: 100%;

  @media (max-width: 600px) {
    bottom: 0;
    top: 10%;
  }
}

.aptitude-max-size {
  max-width: 50%;

  @media (max-width: 600px) {
    max-width: 100%;
  }
  
  h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.3rem;

    @media (max-width: 600px) {
      font-size: 1.4rem;
    }
  }

  p {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0;

    @media (max-width: 600px) {
      font-size: 1rem !important;
    }
  }
}

.bannerCover {
  width: 100%;
  height: auto;

  img {
    object-fit: cover;
    max-width: 100% !important;
    max-height: auto !important;
  }
}

/* Banner Section START  */

.blog-banner-sec img {
    width: 100%;
    object-fit: cover;
}
@media (max-width: 640px) {
    .blog-banner-sec img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}
.blog-banner-sec i {
    position: absolute;
    width: 100%;
    min-height: 40vh;
	height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(90.37deg, #000000 -8.81%, rgba(0, 0, 0, 0) 107.97%);
	display: none;
}
.blog-banner-sec .overlay-content {
    position: absolute;
    top: 30%;
    left: 0;
    width: 100%;
}

.blog-banner-sec .overlay-content .aptitude-max-size {
    max-width: 50%;
    color: white;
    text-align: left;
}

.blog-banner-sec .overlay-content .web-stories h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.3rem;
    color: #fff;
}
.blog-banner-sec .overlay-content .aptitude-max-size h1 span {
    color: #eafd64;
}
 .blog-banner-sec .overlay-content .aptitude-max-size span {
    font-size: 1.2rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .blog-banner-sec .overlay-content {
        top: 12%;
    }
    .blog-banner-sec .overlay-content .aptitude-max-size {
        max-width: 65%;
    }
}     
    
@media (max-width: 640px) {
    .blog-banner-sec .overlayContent {
      bottom: 0;
      top: 10%;
    }
  }

 /* Banner Section END */

.h2 {
	font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: 0.4px;
}
.h2 span {
    position: relative;
}
.h2 span:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 15px;
    background: #eafd64;
    left: 0;
    z-index: -9;
    bottom: 0;
}
small {
    color: #1a1a1a;
    font-size: 1.1rem;
    opacity: 0.7;
    padding-top: 0.8rem;
    display: block;
    padding-bottom: 2.5rem;
}



.aptitude-btn {
    background-color: #000;
    color: #fff !important;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
	display: inline-block;
    height: fit-content;
    text-align: center;
}

/* Horizontal AD Web & Mobile */
.horizontal-ad-web {
    display: block;
}

.horizontal-ad-mobile {
    display: none;
}

@media(max-width: 639.98px) {
    .horizontal-ad-web {
        display: none;
    }

    .horizontal-ad-mobile {
        display: block;
    }
}

/* To prevent break in Posts page in code section*/
.su-note-inner {
overflow-x: auto;
}

.blog-list {
    margin-top: 2.5rem;
}
.blog-list picture {
    margin-bottom: 1.5rem;
    display: block;
	    border-radius: 8px;
    overflow: hidden;
}
.blog-list picture img {
	width: 100%;
	height: 100%;
}
.blog-list span {
    margin-top: 0.6rem;
    color: #000;
    opacity: 0.8;
}
.blog-list h3 {
    font-weight: 600;
    font-size: 1.2rem;
    padding-top: 1rem;
    margin-bottom: 1rem;
    line-height: 28px;
}
.blog-list p {
font-size: 1rem;
    color: #000;
    opacity: 0.8;
    line-height: 26px;
	margin-bottom: 2rem;
    padding-top: 0;
    text-align: left;
}
.blog-list a:hover {
    text-decoration: none;
    color: unset;
}
.blog-list .more-post {
    display: table;
    margin: auto;
    text-decoration: underline !important;
    color: #000;
    font-weight: 500;
    font-size: 1.1rem;
    margin-top: 2.3rem;
}
.blog-add-sec {
    padding-top: 4.5rem;
    margin-bottom: 4rem;
}
.mail-subcribe {
    background: #000;
    position: relative;
    padding-top: 10px;
}
.mail-subcribe h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
}
.mail-subcribe p {
    font-size: 1.2rem;
    font-weight: 400;
    color: #fff;
    opacity: 0.8;
    padding-top: 0.8rem;
    margin: 0;
}
.mail-subcribe .subscribe-form {
    width: 100%;
    margin: auto;
    display: table;
    position: relative;
    margin-top: 1.7rem;
    margin-bottom: 1.5rem;
    background: #fff;
    border-radius: 28.5px;
}
.mail-subcribe .subscribe-form input {
    width: 78%;
    position: relative;
    border: none;
    border-radius: 28.5px;
    padding: 1.1rem 2rem;
    letter-spacing: 1px;
    text-align: left;
    float: left;
    outline: none;
}
.mail-subcribe .subscribe-form button {
    position: absolute;
    right: 10px;
    top: 8px;
    border: none;
    background: #000;
    border-radius: 20.767px;
    font-size: 14.116px;
    padding: 11px 20px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #fff;
}
.mail-subcribe .subscribe-form button:active {
    background: #d4dc2b;
    color: #000;
}
.mail-subcribe .subscribe-form button.subscribed-state {
    color: #000;
    background: #eafd64;
}
.mail-subcribe .subcribe-icon {
    position: absolute;
    right: 20px;
    top: -1px;
}
.mail-subcribe .mail-raady-sec {
    width: 90%;
    margin: auto;
    padding-top: 1.6rem;
}
.mail-subcribe img {
    /* width: 100%; */
}
@media (max-width: 991px) {
    .mail-subcribe #newsletter-img {
        width: 130%;
        margin-top: 1.6rem;
    }
}
@media (max-width: 768px) {
    .mail-subcribe #newsletter-img {
        width: 80%;
    }
}
.pagination .page-link {
    margin-left: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    padding: 0.5rem 0.95rem;
    border: 1px solid #000;
}
.pagination .border-none {
    border: none !important;
}
.pagination .active {
    background: #eafd64;
    color: #000;
    border: 1px solid #eafd64;
}
.pagination .page-link:hover {
    background: #eafd64;
    color: #000;
    border: 1px solid #eafd64;
}
.pagination .first.disabled,
.pagination .last.disabled {
    opacity: 50%;
}
.blog-detail-left span {
color: #1a1a1a;
    opacity: 0.8;
    margin-bottom: 10px;
    display: block;
}
.blog-detail-left h1 {
    font-size: 1.8rem;
    font-weight: 600;
}

.blog-detail-left h1 {
	font-size: 2rem ;
}
.blog-detail-left h2 {
	font-size: 1.875rem ;
}
.blog-detail-left h1,
.blog-detail-left h2{
	padding-top: 0;
	margin-bottom: 30px;
    
    @media (max-width: 428px) {
        font-size: 1.25rem;
    }
}
.blog-detail-left p {
    font-size: 1.05rem;
	margin-bottom:30px;
    color: #000;
    display: inline-block;
	width: 100%;
}
.blog-detail-left p a {
	display: inline;
	color: #e85e3d;
}
.blog-detail-left a {
	color: #e85e3d;
}
.blog-detail-left a * {
	color: #e85e3d;
}
.blog-detail-left ul {
    margin-bottom: 1.875rem;
}
.blog-detail-left ul li,
.blog-detail-left ol li {
    font-size: 1.1rem;
    line-height: 26px;
    margin-bottom: 16px;
}
.blog-detail-left ul li a {
	color: #e85e3d;
}
.blog-detail-left ol li {
    list-style-type: decimal;
}
.blog-detail-left ol li a {
	color: #e85e3d;
}
.blog-detail-left figure {
	width: 100% !important;
}
.blog-detail-left h3,
.blog-detail-left h4 {
    color: #000;
    margin-bottom: 30px;
    font-size: 1.563rem;
    line-height: 30px;

    @media (max-width: 428px) {
        font-size: 1.25rem;
    }
}
.blog-detail-left img {
	height: auto !important;
	margin-bottom: 16px;
    width: 100%;
}

.side-bar-mob.blog-detail-right {
    display: none;
    top: 2rem;
    border: 1px solid #e4e4e4;
    background: #F6F7F8;
    border-radius: 5px;
}

@media (max-width: 1054px) {
    .side-bar-mob.blog-detail-right {
        display: block;
    }
}

.blog-detail-right ul li {
    list-style: outside;
    color: #5a5a5a;
    margin-top: 1rem;
	color: #e85e3d;
}
.blog-detail-right a {
     display: block;
    /* margin-top: 12px; */
    color: #4d4d4d;
    position: relative;
    font-size: 0.9rem;
    font-weight: 500;
}
.blog-detail-right a:nth-of-type(1) {
	margin-top: 0;
}
.blog-detail-right a:hover {
	text-decoration:underline !important;
}
/* .blog-detail-right a:before {
	position:absolute;
	content: '';
	width: 8px;
	height: 8px;
	background: #e85e3d;
	border-radius:20px;
	left: 0;
	top: 8px;
} */
.table-content {
    position: sticky;
    top: 2rem;
    border: 1px solid #e4e4e4;
    background: #F6F7F8;
    border-radius: 5px;
    margin-bottom: 1rem;
}
.table-content p {
	text-align: center;
}
.table-content p,
.table-para {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    padding: 0.5rem 1rem;
}
.table-content a img {
    width: 100%;
}
.blog-details {
    text-align: center;
}
.blog-details .subscribe-form {
    width: 60% !important;
    margin: 1.5rem auto 0;
    display: table;
}
.mail-subcribe.author {
    padding-top: 0 !important;
    border-bottom: 15px solid #eafd64;
}
.author .author-img {
    position: absolute;
        width: 225px;
        left: 30px;
        bottom: -15px;
    }
@media (max-width: 991px) {
    .author .author-content {
        /* margin-left: 3rem; */
    }
    .author .author-img {
        left: 4px;
        bottom: 0;
    }
}
@media ((max-width: 768px)) {
    .author .author-content {
        margin-left: 0;
    }
}

.author .subcribe-icon {
    width: 50px;
}
.author .author-name {
    font-size: 1.6rem;
    font-weight: 600;
}
.author .author-name a {
	color: #fff;
	display: block;
}
.author .aptitude-max-size p {
  opacity: 1;
    padding-top: 0;
    /* font-size: 1.1rem; */
    margin-bottom: 1rem;
}
.author ul {
    padding: 0;
}
.author ul .author-social-media-icon {
    list-style: none;
    margin-right: 1rem;
}
.privacy-terms-social {
    border-top: 1px solid rgba(26, 26, 26, 0.6);
    margin-top: 3rem;
    padding-top: 1.5rem;
}
.footer-social-media li a {
    display: block;
    margin-left: 40px;
}



.blog-bottom-spc {
    padding-bottom: 2rem;
}
.mobile-show {
    display: none !important;
}
.author-mobie img {
    display: block !important;
}
.blog-list-slider {
    padding-top: 3rem;
}

.blog-list-slider .blog-sliders {
    position: relative;
}

.blog-list-slider .blog-sliders a {
    position: relative;
    display: block;
    border-radius: 6px;
    overflow: hidden;
}
.blog-list-slider .blog-sliders a img {
    position: relative;
    width: 100%;
}
.blog-list-slider .blog-sliders a i {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.2;
    left: 0;
}
.blog-list-slider .blog-sliders a h3 {
    position: absolute;
    top: 20px;
    margin: 0;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
}
.carousel-indicators li {
    border-top: none;
    border-bottom: none;
    opacity: 1;
    background: #000;
    border-radius: 4px;
}
.carousel-indicators .active {
    background: #fff;
}
.mobile-blog-hide {
    display: none;
}

.cta-button {
	display: table !important;
    background: #e85e3d;
    color: #fff !important;
    padding: 0.7rem 1rem;
    margin: auto;
    text-align: center;
    border-radius: 8px;
    margin-top: 1rem;
    letter-spacing: 1px;
    font-size: 1rem;
}
.cta-button:hover {
	background: #d25537;
}

@media only screen and (max-width: 640px) {
    .desk-hide,
	.blog-detail-right {
        display: none;
    }
    /* .author-banner-sec {
        top: 7% !important;
    } */

	/* .blog-banner-sec, .blog-banner-sec img, .blog-banner-sec i {
		height: 642px;
	} */

    .author-banner-sec .aptitude-max-size {
        text-align: left !important;
    }
    .mobile-blog-hide {
        display: block;
    }
    .privacy-terms-social {
        display: table !important;
    }
    .footer-social-media li a {
        margin-left: 0;
        margin-right: 40px;
        margin-top: 1.5rem;
    }
    .latest-news-hide {
        display: none;
    }
    /* .blog-subpage-title {
        display: table !important;
    } */
	
	.aptitude-btn {
	    padding: 0.5rem 1rem;
	    text-align: center;
	}

    .h2 {
        font-size: 1.8rem;
		font-weight: 500;
    }

    small {
        padding-bottom: 1.5rem;
        font-size: 1rem;
    }
    .blog-list h3 {
        font-size: 1.25rem;
    }
    .blog-list p {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    .blog-list .more-post {
        margin-top: 0;
    }
    .mail-subcribe #newsletter-img {
        display: none !important;
    }
    .mail-subcribe .mail-raady-sec {
        width: 100%;
        text-align: center;
        padding-top: 0;
    }
    .mail-subcribe h2 {
        font-size: 1.5rem;
    }
    .mail-subcribe p {
        font-size: 1rem;
    }
    .mail-subcribe {
        padding-top: 2.938rem;
        padding-bottom: 2.938rem;
    }
    .mail-subcribe .subscribe-form {
        background: none;
        width: 100% !important;
        margin-bottom: 0;
    }
    .mail-subcribe .subscribe-form input {
        padding: 0.8rem 2rem;
        width: 100%;
    }
  
    .mail-subcribe .subscribe-form button {
        position: inherit;
        background: #eafd64;
        color: #000;
        margin-top: 1rem;
    }
    .blog-banner-sec .overlay-content .aptitude-max-size {
        max-width: 100%;
        text-align: center;
		color: #fff;
    }
    .blog-banner-sec .overlay-content .aptitude-max-size h1 {
        font-size: 2rem;
    }
    .blog-banner-sec .overlay-content .aptitude-max-size p {
        font-size: 1rem;
    }
    .blog-bottom-spc {
        padding-bottom: 0;
    }
    .blog-detail-left {
        padding-right: 15px;
    }
    .blog-detail-left h1 {
        font-size: 1.8rem;
    }

    .author .subcribe-icon {
        width: 30px;
    }
    .author-mobie {
        padding-bottom: 0 !important;
    }
    .blog-detail-left table {
        max-width: 100%;
        min-width: 100%;
        overflow-x: auto;
        display: block;
    }
}

@media screen and (max-width: 768px) {
    .mobile-hide {
        display: none;
    }
    .mobile-show {
        display: block !important;
    }
}

.pagination ul {
    display: flex;
    margin: auto;
    padding: 3rem 0 0 0;
}

.pagination ul li {
    list-style: none;
    margin-right: 0.5rem;
}
.pagination ul li a, .pagination ul li span {
    border: 1px solid #2a2a2a;
    width: 45px;
    height: 45px;
    display: block;
    text-align: center;
    padding: 10px 0;
    font-size: 1rem;
    color: #2a2a2a;
}
.pagination ul li .last, .pagination ul li .first {
    border: none;
    font-weight: 700;
    padding: 0;
    font-size: 1.8rem;

    @media (max-width: 640px) {
        width: 100%;
    }
}
.pagination ul li .last:hover, .pagination ul li .first:hover {
    /* cursor: pointer;- */
    background-color: unset;
    color: unset;
}

.pagination ul li .current {
	background: #eafd64;
    border: 1px solid #eafd64;
    color: #2a2a2a;
}
.pagination .nav-links {
	display: flex;
    margin: auto;
}
.pagination .nav-links a, .pagination .nav-links span {
    border: 1px solid #2a2a2a;
    width: 45px;
    height: 45px;
    display: block;
    text-align: center;
    padding: 10px 0;
    font-size: 1rem;
	margin-right: 9px;
    color: #2a2a2a;
	margin-top: 0;
}

.pagination .nav-links .prev,
.pagination .nav-links .next {
    width: fit-content;
    border: unset;
}

.pagination .nav-links .current {
	background: #eafd64;
    border: 1px solid #eafd64;
    color: #2a2a2a;
	margin-top:0;
    opacity: unset;
}

.pagination ul li a:hover {
    background: #000;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
}

.pagination ul li .last, .pagination ul li .first {
        font-size: 1.5rem !important;
}
.pagination ul li a, .pagination ul li span {
    width: 40px;
height: 40px;
    padding: 7px 0;
}


/* load more */
.load-more {
    max-width: fit-content;
    margin-inline: auto;
    padding: 0.6rem 1.5rem;
    border: 1px solid #1a1a1a;
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 3rem;
    transition: transform 0.3s ease, border-radius 0.3s ease;
}

.load-more:hover {
    background-color:#eafd64;;
    cursor: pointer;
}

.load-more:active {
    background-color:#7f8a2d;;
}

#content {
	 padding: 2.5rem;
	position:relative;
}
 #content img {
	 margin-bottom: 1.5rem;
	 width: 50%;
}

 #content .close-container {
	 margin-right: auto;
	 margin-bottom: 1rem;
	 opacity: 0.2;
	 cursor: default;
	 position:absolute;
	 top: 2rem;
	 left: 2rem;
}
 #content .modal-title {
/* 	 color: var(--typo-colors-text-primary, #2a2a2a); */
	 text-align: center;
	 font-size: 2rem;
	 font-style: normal;
	 font-weight: 700;
	 line-height: 2.5rem;
	 margin-bottom: 1rem;
}
 #content .modal-description {
/* 	 color: var(--typo-colors-text-secondary, #707070); */
	 text-align: center;
	 font-size: 1rem;
	 font-style: normal;
	 font-weight: 400;
	 margin-bottom: 1.5rem;
}
 #content #subscribeNowButton {
/* 	 color: var(--background-color-background-1, #fff); */
	 font-size: 1rem;
	 font-style: normal;
	 font-weight: 700;
	 line-height: 1rem;
	 width: 18rem;
	 height: 3rem;
	 padding: 1rem 2rem;
	 justify-content: center;
	 align-items: center;
	 text-align: center;
	 margin-bottom: 0;
}
 #content .alreadySubscribed {
/* 	 color: var(--primary-color-primary-500-first-color, #0dba4b); */
	 font-size: 1rem;
	 font-style: normal;
	 font-weight: 500;
	 line-height: 1rem;
	 cursor: pointer;
}
.scroll-right-sec {
	min-height: 270px;
    max-height: 270px;
    overflow-y: auto;
    padding: 1rem;
    overscroll-behavior-y: contain;

    display: flex;
    flex-direction: column;
    gap: 1rem;

}

.footer-container {
     background-color: #000;
	    padding-top: 4rem;
    padding-bottom: 2.688rem;
}
 .footer-container .container {
     color: #fff;
     list-style-type: none;
}
 .footer-container .container .footer-learn-title {
     color: #fff;
     font-size: 1.5rem;
     font-style: normal;
     font-weight: 590;
     line-height: 160%;
     letter-spacing: 0.0125rem;
}
 .footer-container .container ul{
	 padding: 0;
	 margin: 0;
     list-style-type: none;
}
.footer-container .container ul li {
	padding-bottom: 1rem;
	margin-right: 1.3rem;
}
 .footer-container .container ul li a {
     color: #979797;
     font-size: 1rem;
     font-style: normal;
     font-weight: 400;
	 margin-top: 1.3rem;
}
 .footer-container .container ul li a:hover {
     color: #eafd64;
}

.footer-container .foot-social-media .social-media-icon {
    padding-bottom: unset;
    margin-right: 0.5rem;
}



 .footer-container .container .footer-intro .footer-logo-and-text {
     display: flex; 
     flex-direction: column; 
     align-items: end; 
     justify-content: center;
}
 .footer-container .container .footer-intro .footer-logo-and-text .footer-logo {
     margin-bottom: 0;
	     float: right;
    width: 65%;
}
 .footer-container .container .footer-intro .footer-logo-and-text .footer-logo-text {
    color: #fff;
    font-size: 0.75rem;
    padding-bottom: 2px;
}
 .poweredImgFoot {
     font-size: 0.9rem !important;
     margin: 0;
     position: absolute;
     bottom: 0;
     text-align: end;
     right: 1rem;
}
 .poweredImgFoot span {
     margin-top: 9px;
	 color: #979797;
}
 .poweredImgFoot .grey-text {
    color: #ffffff99;
}
 .poweredImgFoot img {
     margin: 0;
     height: 2rem;
     width: 9.625rem;
     display: inline;
     margin-left: 0.5rem;
}
.grey-text {
    color: #ffffff99;
}
.social-links {
	margin-top: 1.5rem;
	border-top: 1px solid hsla(0,0%,100%,.6);
	padding-top: 1rem;
	display: flex;
}

.mobile-last-elem {
    margin-bottom: 1.5rem;
}

.copy-rights {
	display: flex;
}
.foot-social-media {
	display: flex;
}
.foot-social-media li
{
	list-style: none;
    padding-bottom: unset;
    margin-right: unset;
}

.foot-social-media li a {
    padding: 0.5rem 0.5rem;
}

@media only screen and (max-width: 640px) {
	.footer-container .container .footer-intro .footer-logo-and-text {
		display: none;
	}
	.footer-container .container .footer-intro a span {
		display: none;
	}
	.social-links {
		display: inherit;
	}
	.foot-social-media li {
		margin-right: 0;
		margin-left: 0;
	}
}



 .modal-content {
	 text-align: center;
}
 .modal-custom-body {
	 padding: 3rem;
	 flex-direction: column;
	 align-items: center;
	 justify-content: center;
}

 .modal-custom-body h2 {
	 padding: 0 !important;
	 margin-bottom: 0.5rem !important;
	 font-size: 2rem !important;
	 font-weight: 500 !important;
	 line-height: 1.2 !important;
}
 .modal-custom-body .popup-title {
	 padding: 0;
	 margin-bottom: 2rem;
	 font-size: 1.5rem !important;
	 font-weight: 600;
}
 .modal-custom-body .popup-title span {
	 color: #e85e3d;
}
 .modal-custom-body img {
	 margin: auto;
	 display: table;
	 margin-bottom: 1.875rem;
	 width: 9.375rem;
	 font-size: 1rem;
}
 .modal-custom-body p {
	 margin-bottom: 1.5rem;
	 font-size: unset !important;
	 font-weight: 400;
}
 .modal-custom-body form {
	 width: 100%;
	 margin: auto;
	 display: table;
}
 .modal-custom-body form .form-group, .modal-custom-body form .form-check {
	 width: 100%;
	 margin: 0 auto 1.5rem auto;
	/* Hide the number input arrows */
}
 .modal-custom-body form .form-group input[type="number"]::-webkit-inner-spin-button, .modal-custom-body form .form-check input[type="number"]::-webkit-inner-spin-button, .modal-custom-body form .form-group input[type="number"]::-webkit-outer-spin-button, .modal-custom-body form .form-check input[type="number"]::-webkit-outer-spin-button {
	 -webkit-appearance: none;
	 appearance: none;
	 margin: 0;
}
 .modal-custom-body form .form-check {
	 margin: 0 auto 1rem auto;
}
 .modal-custom-body form .form-input-field {
	 margin-bottom: 2rem;
}
 .modal-custom-body form .form-check-field {
	 margin-bottom: 2rem;
}
 .modal-custom-body form input, .modal-custom-body form select {
	 border-radius: 0.25rem;
	 padding: 0.5625rem 0.875rem;
	 height: auto;
	 font-size: 1rem;
}
 .modal-custom-body form button {
	 border-radius: 0.25rem;
	 width: 100%;
	 padding: 0.75rem;
	 color: #fff;
	 border: none;
	 background-color: #000;
}
 .modal-custom-body .poweredImg {
	 font-size: 1rem;
	 margin: 0;
	 display: inline-flex;
	 margin-top: 2rem;
	 justify-content: center;
}
 .modal-custom-body .poweredImg span {
	 margin-top: 2px;
}
 .modal-custom-body .poweredImg img {
	 margin: 0;
	 width: 50%;
	 display: inline;
	 margin-left: 0.5rem;
}
 .modal-custom-body #thanks-alert.hidden, .modal-custom-body #form-section.hidden {
	 display: none;
}
 .form-control:focus {
	 border-color: #000 !important;
}
 .popup-form-check {
	 margin-bottom: 1rem;
	 text-align: left;
}
 .popup-form-check .form-check-label:before {
	 width: 1.5rem;
	 height: 1.5rem;
}
 .invalid-field {
	 color: #dc3545;
}

.mobile-blog-sidebar-add {
	display: none;
}
.desktop-blog-sidebar-add {
	position: sticky;
    top: 2rem;
}
.desktop-blog-sidebar-add img,
.mobile-blog-sidebar-add img {
	width: 100%;
}

@media (max-width: 768px) {
    .desktop-blog-sidebar-add img{
        display: none;
    }
}


.detail-blog-page {
	width: 100%;
}

@media only screen and (max-width: 640px) {
	.modal-custom-body{
		padding: 3rem 1rem;
	}
	.mobile-blog-sidebar-add {
	display: block;
}
	.desktop-blog-sidebar-add {
		display: none;
	}
	.detail-blog-page {
	width: 100%;
}
}

.mr-5 {
    margin-right: 3rem !important;
}

.faq-container .faq-item {
    margin-bottom: 1.5rem;
    background: #f3f3f3;
}

.faq-container .faq-item button {
    padding: 0;

}

.faq-container .faq-header.card-header{
    padding: 1rem 1.6rem;
    text-align: left;
}

.faq-container .faq-item .faq-header {

    background-color: #ffffff00;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border: none;
    padding: 1rem 1.6rem;
}

.faq-container .faq-item .faq-header h3 {

    font-size: 18px;
}

.faq h2,.faq h2 span {
    font-weight: 600;
    width: fit-content;
    margin-inline: auto;
    color: #000;
    opacity: unset;
}

.highlight {
    background: linear-gradient( to bottom, white 0%, white 60%, #EAFD64 60%, #EAFD64 100% );
}

.faq-container .faq-item .card-body p {
    color: #1e2833;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.faq-container .faq-item button:focus,
.faq-container .faq-item button:hover {
    text-decoration: none;
}
.faq-container .faq-item button:focus{
    border: 2px solid #ffe4b5;
}

.faq-container .faq-item span .fa-angle-up:before {
    font-size: 18px;
    font-weight: bold;
    color: black;
}
.faq-container .faq-item span .fa-angle-down:before {
    font-size: 18px;
    font-weight: bold;
    color: black;
}

.faq-container .faq-item .btn[aria-expanded='true'] span .fa-plus {
    display: none;
}
.faq-container .faq-item .btn[aria-expanded='true'] span .fa-minus {
    display: block;
}
.faq-container .faq-item .btn[aria-expanded='false'] span .fa-plus {
    display: block;
}
.faq-container .faq-item .btn[aria-expanded='false'] span .fa-minus {
    display: none;
}




.custom-aptitude-btn {
    background-color: #000;
    color: #fff !important;
    padding: 0.5rem 1.5rem;
    text-align: center;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    height: fit-content;
    text-align: center;
}

@media (max-width: 991px) {
   .footer-container .container .footer-intro .footer-logo-and-text {
        display: none;
    }
}


/* Micro Courses Carousel */
#micro_courses_carousel {
    margin-bottom: 5rem;
}

#micro_courses_carousel .heading-title {
    margin-inline: auto;
    width: fit-content;
    letter-spacing: 0.4px;
    word-wrap: break-word;
}

.cards {
    overflow: hidden;
    margin-inline:auto;
}

.carousel-control-next, 
.carousel-control-prev {
    top: 45%;
    width: fit-content;
    height: fit-content;
    padding: 0.75rem;
    border-radius: 0.75rem;
    background-color: black;
    opacity: 1;
}
.carousel-control-next-icon,
.carousel-control-prev-icon {
    width: 12px;
    height: 12px;
}

.carousel-indicators {
    bottom: -50px;
}



.carousel-indicators li {
    border-radius: 1rem;
    height: 0.75rem;
    width: 0.75rem;
}

.carousel-indicators li.active {
    background-color: #eafd64;
}

/* For Micro Courses Card */
.micro-carousel-inner .micro-carousel-item {
    background-color: white;
    height: max-content;
    position: relative;
    border-radius: 0.5rem !important;
    border: none;
    width: 100%;


}

.micro-carousel-inner .micro-carousel-item .cards-column {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    gap: 1rem;
    justify-content: center;
}
.micro-carousel-inner .micro-carousel-item .cards-column .card {
    margin-bottom: 0;
    box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.15);
    flex: 0 1 auto; 
}
.card-columns .card {
    margin-bottom: 0;
}
#mobileMicroCarouselExampleIndicators .page-navs {
    position: absolute;
    right: 0;
    left: 0;
    bottom: -10px;
    margin-inline: 15%;
}

.micro-carousel-inner .carousel-item .card .micro-card-link {
    text-decoration: none;
    position: relative;
    min-height: 345px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color:black
}

.micro-carousel-inner .carousel-item .card a:hover {
    text-decoration: none;
}

.micro-carousel-inner .card .micro-card-link .micro-card-top {
    height: 150px;
    width: 100%;
}

.micro-carousel-inner .card .micro-card-link .micro-card-body {
    position: relative;
    border: none;
    top: -1rem;
    border-radius: 0.5rem 0.5rem 0 0;
    background: white;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 10px;
    height: 12rem;
}

.micro-carousel-inner .card .micro-card-link .micro-card-body .labels {
    width: 127.85px;
    height: 23.32px;
    left: 13.97px;
    top: 149.76px;
    display: flex;
    text-decoration: none;
}

.micro-carousel-inner .card .micro-card-link .micro-card-body .labels .label {
    padding: 4.66px;
    border-radius: 4.66px;
    justify-content: center;
    align-items: center;
    display: flex;
    font-size: 12px;
    font-weight: 700;
    margin-right: 3px;
}   

.micro-carousel-inner .card .micro-card-link .micro-card-body .labels .language {
    background: #F6F7F8;
    opacity: 0.76;
    /* color: ; */
}

.micro-carousel-inner .card .micro-card-link .micro-card-body .labels .premium {
    background: #eafd64;
    color: black;
    font-weight: 500;
}

.micro-carousel-inner .card .micro-card-link .micro-card-body .card-title {
    text-decoration: none;
    min-height: 45px;
    color: black;
    font-size: 18px;
    font-weight: 700;
    line-height: 23.29px;
    word-wrap: break-word;
}

.micro-carousel-inner .card .micro-card-link .micro-card-body .duration_pricing_container {
    position: absolute;
    bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: 1rem;
}

.micro-carousel-inner .card .micro-card-link .micro-card-body .duration_pricing_container .pricing {
    padding: 6px;
    background: #eafd6478;
    border-radius: 4.66px;
    justify-content: center;
    align-items: center;
    gap: 4.66px;
    display: inline-flex;
    color: black;
}

.micro-carousel-inner .card .micro-card-link .micro-card-body .duration_pricing_container .pricing .price {
    font-size: 24px;
    font-weight: 700;
    line-height: 20.96px;
    word-wrap: break-word;
}

.micro-carousel-inner .card .micro-card-link .micro-card-body .duration_pricing_container .pricing .discount {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 9.32px;
    display: inline-flex;
}

.micro-carousel-inner .card .micro-card-link .micro-card-body .duration_pricing_container .pricing .discount .original-price {
    font-size: 16px;
    font-weight: 400;
    text-decoration: line-through;
    line-height: 16.30px;
    word-wrap: break-word;
    color: var(--header-theme-grey);
}

.micro-carousel-inner .card .micro-card-link .micro-card-body .duration_pricing_container .duration {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.micro-carousel-inner .card .micro-card-link .micro-card-body .duration_pricing_container .duration .fa {
    color:black;
    font-weight: 300;
    font-size: 13px;
}

.micro-carousel-inner .card .micro-card-link .micro-card-body .duration_pricing_container .duration .time {
    color: grey;
    font-size: 14px;
    font-weight: 500;
    line-height: 13.97px;
    word-wrap: break-word;
}


.carousel-inner .carousel-item .row .card.col-4 {
    padding-left: 0;
    padding-right: 0;
}

.carousel-inner {
    display: flex;
    margin-inline:auto;

}

@media (max-width: 992px) {
    .carousel-item .cards-column .col-lg-4 {
        width: fit-content ;
    }
}

.no-posts-available p {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5rem;
    font-size: 1.4rem;
    font-weight: 400;
}

.body-no-scroll {
    overflow: hidden !important;
}

  .latest-news .news-detail {
      margin-bottom: 2.5rem;
   }

   .latest-news .news-detail span {
      margin-bottom: 1rem;
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      align-items: center;

   }
   .latest-news .news-detail h3 {
   font-size: 1.6rem;
      font-weight: 600;
      color: #000;
      padding-top: 0;
      line-height: 34px;
   }
   .latest-news .news-detail p {
      font-size: 1.1rem;
      color: #000;
      opacity: 0.8;
      margin-bottom: 2rem;
   }
   .latest-news .news-detail b {
      color: #000;
      opacity: 0.8;
      font-weight: 400;
   }
   
   .col-lg-4 a, .col-md-4 a, .news-detail a {
      text-decoration: none;
      color: black;
   } 

   .row .news-detail .date-category {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
   }

   .social-links .footer-home-logo {
    display: none;
  }
  @media (max-width: 768px) {

    .social-links {
        display: flex;
    }

    .social-links .copy-rights {
        display: none;
    }
    .social-links .footer-home-logo {
        display: block;
        height: auto;
        
            a {
                display: flex;
                align-items: baseline;
            }
            
            img {
                width: 1.5rem;
                /*width: 100%;*/
                height: auto;
            }
            
            .footer-logo-text {
                font-size: 0.8rem;
                font-weight: 400;
                color: #fff;
                margin-left: 0.5rem;
            }
    }
  }

.top-height-1 {
    top: 80% !important;
    width: 90vw;
    padding: 1rem 0 !important;
}

.top-height-4 {
    top: 95% !important;
}

.new-dropdown-mainmenu.dropdown-mainmenu.dropdown-menu,
.new-dropdown-mainmenu.dropdown-menu-item
{
    left: 50% !important;
    transform: translateX(-50%);
}

.new-dropdown-mainmenu.dropdown-mainmenu.dropdown-menu {
    margin: auto;
    display: flex;
    gap: 1.875rem;
    font-size: 1rem;
    padding: 0 2.5rem;
    justify-content: center;
    align-items: flex-start;
    border-radius: 4px;
}

.nav-items.dropdown.p-unset {
    position:unset !important;
}
.nav-items.dropdown.new-unset  .dropdown-mainmenu {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s, 0s;
}

.top-height-4.dropdown-mainmenu.dropdown-menu,
.top-height-1.dropdown-mainmenu.dropdown-menu  {
    display: flex;
    background: none;
    border: none;
    
}
.top-height-1.dropdown-mainmenu.dropdown-menu {
    left: 50% !important;
    transform: translateX(-50%);
}
.top-height-4.dropdown-mainmenu.dropdown-menu  {
    left: 0% !important;
    justify-content: center;
}
.top-height-4.dropdown-mainmenu.dropdown-menu  {
    justify-content: flex-start;
}

.vertical-line {
    height: 100%;
    width: 1px;
    background-color: white;
}

.two-column-section .column-section:last-child .category-block {
    background-color: red;
    display: none;
    border-left: 1px solid #fff;
  }

.mw-18 {
    max-width: 14rem;
}

.left-border {
    border-left: 1px solid rgba(255,255,255,.5);
}

.left-border .dropdown-item.landing-button {
    margin-left: 2rem !important;
}

.column-section .category-block .dropdown-item.landing-button {
    background: white;
    font-size: 0.825rem;
    color: #000;
    border-radius: .25rem;
    padding: .5rem 1rem !important;
    font-size: .875rem;
    width: max-content;
    flex-shrink: 0;
}

.two-column-section {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1.875rem;
    justify-content: center;
}

.merge-row {
    grid-row: 1 / 3;
    grid-column: 2;
}

.topic-link a.sidebar-item {
    color: #ffffffb3;
}
.topic-link a.sidebar-item:hover {
    text-decoration: none;
    color: #eafd64;
}

.right-sidebar.menu-is-active {
    user-select: none;
    
    &::-webkit-scrollbar {
        width: 6px;
        border-radius: 0.25rem;
    }

    /* Scrollbar thumb */
    &::-webkit-scrollbar-thumb {
        background: #eafd64;
        border-radius: 0.5rem;
    }
    
    /* Scrollbar track */
    &::-webkit-scrollbar-track {
        background: none;
    }
}
.sidebar-menu {
    padding: 3rem 0 1.5rem;   
}
.sidebar-items-list {
    display:flex;
    flex-direction: column;
    gap: 2rem;
    color: #fff;
    }
.sidebar-item {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    color: #ffffffb3;
}

.sidebar-item svg {
    stroke: #ffffffb3;
}

.sidebar-item:hover {
    color: #eafd64;
}

.sidebar-items-list.sidebar-submenu .sidebar-item {
    padding-left: 2.5rem;
}

.sidebar-items-list.sidebar-submenu .sidebar-item.submenu-back-button {
    display: flex;
    justify-content:flex-start;
    gap: 1rem;
    padding-left: 0;
    font-size: 1.125rem;
    color: #eafd64;
}

.is-new {
    background-color: #e85e3d;
    color: #fff;
    font-size: 0.75rem;
    border-radius: 0.25rem;
    margin-left: 0.5rem;
    padding: 0.25rem 0.5rem;
  }

  .notification-topbar-container {
    display: block;
    width: 100%;
    height: 3rem;
    background-color: #e85e3d;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: height 1s ease-in-out;
    cursor: pointer;
}

.notification-topbar-container a {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4rem;
    letter-spacing: 0.01em;
    text-decoration-skip-ink: none;
    width: 100%;
    align-items: center;
    height: 100%;
    display: flex;
    justify-content: center;
}

.notification-topbar-container a:hover {
    text-decoration: none;
}

.notification-topbar-container button {
    border-radius: 4px;
    color: #000;
    background: #fff;            
    font-size: 14px;
    font-weight: 500;
    line-height: 19.6px;
    text-align: left;
    padding: 7px 14px;
    margin-left: 1.5rem;
    border: 0px;
}



.notification-topbar-container .notification-close-button {
    position: absolute;
    right: 3rem;
    color: #fff;
    font-weight: 600;
    transition: display 0.5s ease-in-out;
}

.notification-topbar-container.hide {
    height: 0;
    overflow: hidden;
}

/* Mobile screen styles */
@media (max-width: 768px) {
    .notification-topbar-container {
        font-size: 0.75rem;
        justify-content: space-between;
        padding: 0 1rem;
    }

    .notification-topbar-container button {
        display: none;
    }

    .notification-topbar-container .notification-close-button {
        position: static;
    }

    .notification-topbar-container .notification-close-button .close-icon {
        width: 1rem;
    }
}
.user-intent-container {
    .modal-content {
        max-height: 90vh;
        height: max-content;
    }

    .modal-body {
        padding: 2rem 2rem 2.5rem; 
    }

    .close {
        margin-top: -0.6rem;
        opacity: 0.7;
    }

    .section-two {
        display: none;
    }

    .section-three {
        display: none;
    }

    .screen-indicator-container {
        display: flex;
        gap: 1.5rem;
        margin-bottom: 2rem;
        justify-content: center;
        
        @media(max-width: 639.98px) {
          margin-bottom: 1rem;
        }
        
        .step-box {
          display: flex;
          flex-direction: column;
          justify-content: center;
          width: max-content;
          height: max-content;
          user-select: none;
          
          .step-bar {
            height: 0.375rem;
            background-color: #F0F0F0;
            width: 6.25rem;
            /* width: 100%; */
            margin-bottom: 0.8rem;
            border-radius: 2px;
        }
        
        .step-value {
            font-size: 1rem;
            line-height: 15.6px;
            text-align: center;
            
            @media(max-width: 639.98px) {
              font-size: 0.8rem;
            }
          }
        }
        .step-box.active {
            .step-bar {
              background-color: #000;
            }
        }
      }
      
      .formSection {
        max-height: 75vh;
      
        .form {
          display: flex;
          flex-direction: column;
          gap: 1rem;
          /* padding: 0 2.5rem; */
          padding: 0 1rem;
      
          @media(max-width: 639.98px) {
            /* padding: 0 1.5rem; */
            padding: 0;
          }
      
          .form-input-field {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-height: 40vh;
            overflow-y: auto;
            padding: 0 1rem 1.5rem;
            
            @media(max-width: 639.98px) {
              padding: 0 0.5rem 1.5rem;
            }
      
      
            input:not([type='radio']),
            select {
              border-radius: 5px;
              width: 100%;
              height: 3rem;
              user-select: none;
            }

            select {
              appearance: none;
            }
          }

          
          .form-input-field::-webkit-scrollbar {
            width: 6px;
          }
        
          .form-input-field::-webkit-scrollbar-thumb {
            background: #fff;
          }
        
          .form-input-field::-webkit-scrollbar-track {
            background: #fff;
          }
        
          .form-input-field:hover::-webkit-scrollbar {
            width: 6px;
          }
        
          .form-input-field:hover::-webkit-scrollbar-thumb {
            background: #000;
          }
        
          .form-input-field:hover::-webkit-scrollbar-track {
            background: #d9d9d9;
          }
      
          .radio-btn {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            min-height: 3rem;
            padding: 1rem 1.25rem;
            background-color: #F5F5F5;
            border-radius: 0.25rem;
            line-height: 1.6;
      
            .radio {
              width: 1rem;
              font-weight: 700;
              height: 1rem;
              outline: 1.5px solid #1A1A1A;
                border-radius: 50%;
                flex-shrink: 0;

              appearance: none;
            }
            .radio:checked {
              border: 4px solid #EAFD64;
              background-color: #000;
              box-shadow: none !important;
            }
      
            label {
              padding-left: 0.25rem;
              margin-bottom: 0 !important;
              text-align: left;
              
              @media(max-width: 639.98px) {
                font-size: 0.9rem;
              }
            }
          }
      
          .submit-box {
            padding: 0 1rem;
      
            @media(max-width: 639.98px) {
              padding: 0 0.5rem;
            }
          }
          .submit-button {
            font-weight: 400;
            font-size: 1rem;
            height: 3.25rem;
            display: flex;
            justify-content: center;
            align-items: center;
            
            @media(max-width: 639.98px) {
              font-size: 0.9rem;
            }
          }

          .spin-loader {
            display: none;
          }
        }

        .dropdown-label {
            width: 100%;
            color: #1A1A1A;
            height: auto;
            padding: .5625rem .875rem;
            font-size: 1rem;
            background-color: #F5F5F5;
            border: none;
            border-radius: 0.25rem;
            text-align: left;
            
            @media(max-width: 639.98px) {
                font-size: 0.875rem;
            }
        }

        .dropdown-menu {
            width: 100% !important;
            max-height: 12rem;
            overflow-y: auto;
            overflow-x: clip;
            user-select: none;
        }

        .dropdown-toggle::after {
            position: absolute !important;
            right: 15px !important;
            top: 20px !important;
            font-size: 1.25rem !important;
        }
      
        input[type="text"],
        input[type="Email"],
        input[type="number"],
        input[type="tel"],
        select {
          /* border: .8px solid #1A1A1A; */
          color: #1A1A1A;
          height: auto;
          padding: .5625rem .875rem;
          font-size: 1rem;
          background-color: #F5F5F5;
          border: none;
      
          @media(max-width: 639.98px) {
            font-size: 0.875rem;
          }
      
          &:focus {
            outline: none;
          }
        }
      
        input[type="number"]::-webkit-outer-spin-button,
        input[type="number"]::-webkit-inner-spin-button {
          -webkit-appearance: none;
          margin: 0;
        }
      
        input[type="number"] {
          appearance: textfield;
          -moz-appearance: textfield;
        }
      
        .invalid {
            border: 1px solid #dc3545 !important;
        
            &.radio-btn {
                color: #dc3545;
            }
        
            input {
                border-color: #dc3545;
            }
        }

        .valid {
            border: 1px solid #28a745 !important;
        }
      
        .input-box {
          position: relative;

          .input-label {
            font-size: 1rem;
            text-align: left;
            padding-bottom: 0.5rem;
            
            @media(max-width: 639.98px) {
                font-size: 0.875rem;
            }
          }
        }

        .popup-head {
          display: flex;
          flex-direction: column;
          padding: 0 3rem;
          margin-bottom: 2rem;
          gap: 0.5rem;
      
          @media(max-width: 639.98px) {
            padding: 0 2rem;
            margin-bottom: 1.25rem;
          }
          
          .popup-title {
            text-align: center;
            padding: 0;
            font-size: 1.5rem !important;
            margin-bottom: 0;
            font-weight: 700;
            
            @media(max-width: 639.98px) {
              font-size: 1.2rem !important;
            }
            
            span {
              color: #e85e3d;
            }
          }
          
          .popup-description {
            margin-bottom: 0;
            text-align: center;
            padding: 0;
            font-size: 1rem;
            font-weight: 400;
            color: #000000CC;
            
            @media(max-width: 639.98px) {
              font-size: 0.8rem;
            }
          }
          
        }
        
        .popup-message {
          text-align: center !important;
          margin-top: 0.5rem;
          font-weight: 400;
          padding: 2rem 3rem 0;
          margin-bottom: 0 !important;
        }
      
        img {
          margin: auto;
          display: table;
          /* margin-bottom: 1.875rem; */
          width: 9.375rem;
          font-size: 1rem;
        }
      
        p {
          margin-bottom: 1.5rem;
          font-size: unset !important;
          font-weight: 400;
        }
      
        form {
          width: 100%;
          margin: auto;
          display: table;
          margin-top: 1rem;
          padding: 1.7rem 1.5rem 0;
      
          .form-group,
          .form-check {
            width: 100%;
            margin: 0 auto 1.5rem auto;
      
            @media (max-width: 639.98px) {
              width: 100%;
            }
          }
      
        }
        
        button {
          background: #000;
          border-radius: 0.25rem;
          width: 100%;
          padding: 0.75rem;
          color: #fff;
          border: none;
      
          &:hover {
            background-color: #000;
            color: #fff;
          }
        }
      
        #form-section.hidden {
          display: none;
        }
      }
      
      .thanks-section {
        padding: 0 3.5rem;
        min-height: 55vh;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        justify-content: space-between;
        align-items: center;
        
        @media(max-width: 639.98px) {
          padding: 0 2rem;
        }
      
        .thanks-head {
          display: flex;
          flex-direction: column;
          gap: 0.5rem;
          align-items: center;
      
          .thanks-title {
            font-size: 1.9rem !important;
            line-height: 35px !important;
            font-weight: 600 !important;
            text-align: center;
            margin-bottom: 0.5rem !important;
            
            @media(max-width: 639.98px) {
              font-size: 1.4rem !important;
            }
          }
        
          .thanks-message {
            font-size: 1rem;
            text-align: center;
            max-width: 75%;
            
            @media(max-width: 639.98px) {
              max-width: 100%;
              font-size: 0.875rem !important;
            }
          }
        }
      
      
        .thanks-alert {
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          padding-bottom: 1.25rem;
          margin-left: 38px;
      
          .thanks-icon {
            width: 7rem;
            height: 7rem;
          }
        }
      }

      .dropdown-box {
        display: flex;
        flex-direction: column;
      }

      .alert-box {
        /* position: absolute; */
        /* top: 14px; */
        /* right: 15px; */
        padding-top: 0.7rem;
        display: none;
        font-size: 1rem;
        align-items: center;
        gap: 0.5rem;
        
        @media(max-width: 639.98px) {
            font-size: 0.875rem;
        }
      
        .alert-icon {
          width: 20px;
          height: 20px;
          flex-shrink: 0;
          margin: 0 !important;
        }
      
        &.show {
          display: flex;
          gap: 0.75rem;
          align-items: center;
        }
      }
      
    .radio-question-box {
        .radio-question-title {
          font-size: 1.1rem;
          font-weight: 500;
          font-size: 1rem;
          padding-bottom: 1rem;
            text-align: left;
          
          @media(max-width: 639.98px) {
            font-size: 0.9rem;
          }
        }
      
    }
    
    .radio-question-box.error {
      .radio-question-title {
        color: #dc3545;
      }
      
      /* .radio-btn {
        color: #dc3545;
      } */
    }
      
      .radio-options {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1rem;
        @media(max-width: 639.98px) {
          margin-bottom: 0.8rem;
        }
      }
}

.date-picker,
.datepicker-dropdown {
    width: 22.8rem !important;
    
    @media(max-width: 500px) {
        width: 18.5rem !important;
    }
    
    @media(max-width: 400px) {
        width: 17.5rem !important;
    }

    .table-condensed {
        width: 100% !important;
    }
} 

/* single.php Table of Content */
.toc-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.toc-list .toc-h3 {
    margin-left: 0.75rem;
}

.background {
      border-radius: 50%;
      border-style: solid;
      border-color: #eafd64;
      float: right;
      display: flex;
      max-width: 100%;
      overflow: hidden;
      background-color: white;
      
      @media (max-width: 768px) {
        max-width: 30%;
        float: left;
      }
      
      .avatar {
        padding: 4px;
        
        @media (max-width: 480px) {
            /* max-width: 50%; */
            float: left;
        }

        img {
            border-radius: 50%;
            background-color: white;
            max-width: 100%;
            object-fit: cover;
            object-position: center;
            height: auto;
        }
      }
    }


.picture-links {
    flex-direction: column;
    gap: 0.8rem;

    .name-links {
        margin-left: 0 !important;
    }
}

.bg-black {
    background-color: #000;
}

.min-h-16 {
    min-height: 16rem;
}

.modal-body {
    .dropdown-label {
        text-wrap: wrap;
    }
    .dropdown-menu {
        padding-inline: 2rem;
        .dropdown-item {
            padding: 1rem 0;
            text-wrap: wrap;
            border-bottom: 1px solid #1a1a1a33;
        }
    }
} 

.social-links {
    @media (max-width: 320px) {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ==========================================
   NEW FOOTER STYLES
   ========================================== */

.footer-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.footer-background-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  
}

.footer-background-wrapper .background-image {
  position: absolute;
  object-fit: contain;
  pointer-events: none;
}

.footer-background-wrapper .background-image.background-grid {
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  opacity: 0.15;

  @media(max-width: 991px) {
    top: 71.25rem;
    left: -84rem;
    width: 80rem;
  }
}

.footer-background-wrapper .background-image.plus-grid {
    top: auto;
    bottom: -8.75rem;
    width: 62.75rem;
    height: auto;
    opacity: 0.18;
    
    @media (max-width: 991px) {
        bottom: -12rem;
        left: -40rem;
        width: 66.5rem;
        opacity: 0.38;
    }
}

.footer-background-wrapper:before {
    content: "";
    position: absolute;
    width: 41rem;
    height: 24rem;
    bottom: 0;
    background: radial-gradient(ellipse at center,rgba(94, 195, 134, .25) 0%,rgba(0, 0, 0, 0) 70%);
    z-index: -2;
    transform: scale(1.5);
    pointer-events: none;
    filter: blur(50px);

    @media (max-width: 1023px) {
        width: 24rem;
        height: 20rem;
        right: 5.188rem;
        bottom: -10%;
        left: -30%;
    }
}

.footer-top {
  padding: 4rem 0 1.35rem;
  position: relative;
  z-index: 1;
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 3rem;
  max-width: 600px;
}

.footer-logo {
  margin-bottom: 1.5rem;
  display: flex;
  gap: 0.25rem;
  align-items: flex-end;

  .logo-note {
    margin: 0;
    margin-bottom: 0.25rem;
    color: #fff;
    font-size: 0.875rem;
  }
}

.footer-logo img {
  max-width: 10rem;
  height: auto;
}

.footer-description {
  color: #979797;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 500px;
}

.footer-button {
  display: inline-block;
  background-color: #fff;
  color: #000;
  padding: 0.875rem 2rem;
  border-radius: 0.25rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.footer-button:hover {
  text-decoration: none;
  color: #000;

}

.footer-links-section {
  margin-bottom: 3rem;
}

.footer-column-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 590;
  letter-spacing: 0.0125rem;
  margin-bottom: 1.5rem;
}

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

.footer-column ul li {
  margin-bottom: 1rem;
}

.footer-column ul li a {
  color: #979797;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #eafd64;
  text-decoration: none;
}

.partner-logos {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.partner-logos img {
  height: 40px;
  width: auto;
}

.footer-bottom {
  border-top: 1px solid hsla(0, 0%, 100%, 0.2);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-legal li {
  color: #979797;
  font-size: 0.875rem;
}

.footer-legal li a {
  color: #979797;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal li a:hover {
  color: #eafd64;
  text-decoration: none;
}

.footer-legal .separator {
  color: hsla(0, 0%, 100%, 0.4);
}

.footer-mobile-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-mobile-logo img {
  height: 24px;
  width: auto;
}

.footer-mobile-logo span {
  color: #fff;
  font-size: 0.75rem;
}

.social-media-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-media-list ul li {
	padding-bottom: 0;
	margin-right: 0;
}
.social-media-list ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  transition: opacity 0.3s ease;
  margin-top: 0;
}

.social-media-list li a:hover {
  opacity: 0.8;
}

.social-media-list li a img {
  width: 28px;
  height: 28px;
}

.hide-mobile {
  display: inherit;
}

.hide-desktop {
  display: none;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hide-mobile {
        display: none !important;
    }

    .hide-desktop {
        display: inherit !important;
    }

  .footer-logo-section {
    /* max-width: 100%;
    text-align: center;
    align-items: center; */
    /* display: none; */
  }

  .footer-column-group {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    /* flex-direction: column; */
    /* text-align: center; */
    padding-top: 1.25rem;
    align-items: flex-end;
    justify-content: flex-end;
  }

  .footer-legal {
    gap: 0.5rem;
  }

  .footer-legal .separator {
    display: none;
  }
}

@media (max-width: 767px) {
  .footer-top {
    padding: 3rem 0 0.735rem;
  }

  .footer-column h3 {
    font-size: 1.25rem;
  }

  .footer-description {
    font-size: 0.9rem;
  }

  .partner-logos {
    justify-content: center;
    align-items: flex-end;
    .apps {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
  }

  .partner-logos img {
    height: 35px;
  }



  .social-media-list li a img {
    width: 24px;
    height: 24px;
  }
}


@media (max-width: 480px) {
  .footer-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .partner-logos {
    gap: 1rem;
  }

  .partner-logos img {
    height: 30px;
  }
}