/* Fonts */
@font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/neue_montreal/PPNeueMontreal-Book.woff');
    font-weight: 400;
}
@font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/neue_montreal/PPNeueMontreal-Medium.woff');
    font-weight: 500;
}
@font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/neue_montreal/PPNeueMontreal-Bold.woff');
    font-weight: 700;
}


/* General */
/* html, body {
    overflow: hidden;
} */
* {
    padding: 0;
    margin: 0;
    outline: none;
    border: none;
}
*:hover, *:focus {
    outline: none;
    border: none;
}
:root {
    --white: #fff;
    --offwhite: #EDF2F4;
    --black: #000;
    --purpletaupe: #4A4646;
    --taupegray:#888888;
    --gray: #BBBDBE;
    --telemagenta: #D13369;
    --carmine: #c50043;
    --darkcyan: #05878a;
    --purple: #5A175D;
    --cateceanblue: #080D47;
    --indigo: #17445d;
    --lincolgreen: #1B5D17;
    --persianindigo: #351C75;
    --tigereye: #dd9933;

    --primaryDark: var(--black);
    --secondaryDark: var(--taupegray);
    --primaryLight: var(--white);
    --secondaryLight: var(--offwhite);
}
html {
    line-height: 1.4;
    -webkit-text-size-adjust: 100%;;
    font-size: 100%;
    font-family: 'Neue Montreal', sans-serif;
    scroll-behavior: auto;
}
body {
    margin: 0 auto;
    box-sizing: border-box;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Neue Montreal', sans-serif;
    width: 100%;
    background-color: var(--secondaryLight);
    color: var(--primaryDark);;
    scroll-behavior: smooth;
}
.sr {
    opacity: 0; /* Initially hidden */
    transform: translateY(50px); /* Start position for animation */
}

body {
    visibility: hidden;
}
body.loaded {
    visibility: visible;
}
  
ul, li {
    list-style: none;
    margin: 0;
    border: 0;
    padding: 0;
    line-height: 1;
}
img {
    display: block;
    width: 100%;
}
svg {
    width: auto!important;
    display: block;
}
a {
    text-decoration: none;
    background-color: transparent;
    text-transform: uppercase;
    line-height: 1;
    color: var(--primaryDark);
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


/* Columns & Containers */
.container {
    position: relative;
    width: auto;
    max-width: 100%;
    padding: 0 6vw;
    height: 100%;
    margin: 0 auto;
}
.sec_gap {
    padding: 110px 0;
}
.row {
    margin: 0 -12px;
}
.col_gap {
    margin: 0 12px;
    height: 100%;
}
.col_3 {
    width: 25%;
}
.col_4 {
    width: 33.33%;
}
.col_5 {
    width: 41.67%;
}
.col_6 {
    width: 50%;
}
.col_7 {
    width: 58.33%;
}
.col_8 {
    width: 66.67%;
}
.col_9 {
    width: 75%;
}
.col {
    width: 100%;
}


/* Flexbox */
.flexbox {
    display: flex;
    align-items: center;
}
.flex_column {
    flex-direction: column;
}
.align_items_inherit {
    align-items: inherit;
}
.align_items_start {
    align-items: flex-start;
}
.align_items_end {
    align-items: flex-end;
}
.justify_content_center {
    justify-content: center;
}
.justify_flex_end {
    justify-content: flex-end;
}
.space_between {
    justify-content: space-between;
}
.flow_wrap {
    flex-flow: wrap;
}
.flex_gap {
    gap: 30px;
}


/* Button */
.btn_primary {
    position: relative;
    padding: 20px 28px;
    text-align: left;
    border-radius: 10px;
    color: var(--primaryLight);
    background-color: var(--carmine);
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid var(--carmine);
    overflow: hidden;
}
.btn_primary span {
    display: inline-flex;
}
.btn_primary svg {
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s ease-out;
    height: 0!important;
}
.btn_primary:hover {
    background-color: transparent;
    transition: all 0.2s ease-out;
    color: var(--carmine);
}
.btn_primary:hover svg {
    visibility: visible;
    opacity: 1;
    transition: all 0.2s ease-out;
    margin-left: 10px;
    height: 12px!important;
}
.btn_primary svg path {
    fill: var(--carmine);
}
.btn_cyan {
    background-color: var(--darkcyan);
    border: 1px solid var(--darkcyan);
}
.btn_cyan svg path {
    fill: var(--darkcyan);
}
.btn_cyan:hover {
    background-color: transparent;
    color: var(--darkcyan);
}
.btn_cyan:hover svg path {
    fill: var(--darkcyan);
}
.btn_primary_light {
    background-color: transparent;
    color: var(--primaryLight);
    border: 1px solid var(--primaryLight);
}
.btn_primary_light:hover {
    background-color: var(--primaryLight);
    color: var(--carmine);
}
.btn_primary_light:hover svg path {
    fill: var(--carmine);
}
.btn_purple {
    background-color: var(--purple);
    border: 1px solid var(--purple);
}
.btn_purple:hover {
    background-color: transparent;
    color: var(--purple);
}
.btn_purple:hover svg path {
    fill: var(--purple);
}
#cnt_btn {
    background-color: var(--primaryLight);
    border: 1px solid var(--primaryLight);
    color: var(--darkcyan);
}
#cnt_btn:hover {
    background-color: var(--carmine);
    border: 1px solid var(--carmine);
    color: var(--primaryLight);
}
#cnt_btn:hover svg path {
    fill: var(--primaryLight);
}


/* Fonts */
h1 {
    font-size: 4rem;
    line-height: 1;
    letter-spacing: -0.5px;
}
h2 {
    position: relative;
    font-weight: 500;
    color: var(--secondaryDark);
    font-size: 3rem;
    letter-spacing: -1.5px;
    line-height: 1.12;
}
h2 b {
    font-weight: 500;
}
h3 {
    font-weight: 400;
    color: var(--primaryDark);
    font-size: 1.95rem;
    letter-spacing: 0px;
    line-height: 1.3;
}
h4 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.5px;
}
h5 {
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: -0.5px;
    line-height: 1.3;
    color: var(--purpletaupe);
}
h6 {
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 1.3;
}
p {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--purpletaupe);
    line-height: 1.6;
    letter-spacing: 0.2px;
}

#main {
    position: relative;
    overflow: hidden;
    height: 100%;
}



/* Header */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--primaryLight);
    z-index: 99;
    height: 14vh;
}
.header_container {
    position: relative;
    padding: 0;
    width: auto;
    min-width: auto;
    max-width: inherit;
    margin-right: 0;
    margin-left: calc((100% - 88vw) / 2);
}
.logo {
    margin-right: 8vw;
    z-index: 999;
}
.logo img, .footer_logo img {
    width: 170px;
}
nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}
nav ul {
    display: flex;
    align-items: center;
    gap: 3vw;
    list-style: none;
    padding: 0;
}
nav ul li {
    position: relative;
}
nav ul li a {
    position: relative;
    text-transform: uppercase;
    transition: 0.2s ease;
}
nav ul li a::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -30px;
    height: 6px;
    width: 6px;
    border-radius: 100%;
    background-color: var(--primaryDark);
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease;
}
nav ul li a:hover::before {
    display: block;
    opacity: 1;
    visibility: visible;
    transition: 0.2s ease;
    left: -12px
}
.othermenu ul li a::before{
    background-color: var(--carmine);
}
.nav_btn {
    display: flex;
    align-items: center;
    padding: 0 6vw 0 2.5rem;
    background-color: var(--primaryDark);
    color: var(--primaryLight);
    transition: all 0.2s ease-out;
    height: 14vh;
}
.nav_btn::before{
    display: none!important;
}
.nav_btn svg {
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s ease-out;
    width: 0!important;
}
.nav_btn:hover {
    background-color: var(--carmine);
    transition: all 0.2s ease-out;
    padding-right: 6vw;
}
.nav_btn:hover svg {
    visibility: visible;
    opacity: 1;
    transition: all 0.2s ease-out;
    margin-left: 10px;
    width: auto!important;

}
.nav_btn svg path {
    fill: var(--primaryLight);
}


/* Submenu */
.menu_item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-start!important;
    background: var(--primaryLight);
    width: 200px;
    top: 102%;
    transition: all ease .4s;
    -webkit-transition: all ease .4s;
    -moz-transition: all ease .4s;
    visibility: hidden;
    opacity: 0;
    z-index: 99;
    transform: translateY(40px);
    gap: 0;
    border-radius: 0 0 5px 5px;
    left: -20px;
}
#menu_arrow {
    position: relative;
    padding: 2rem 0;
    transition: 0.2s;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}
.menu_has_children:hover #menu_arrow svg {
    transform: rotate(90deg);
    transition: all 0.4s;
}
#menu_arrow svg {
    height: auto;
    width: 7px!important;
    margin-left: 8px;
    margin-top: 2px;
}
#menu_arrow svg path {
    fill: var(--primaryDark);
}
.menu_has_children:hover .menu_item {
    visibility: visible;
    opacity: 1;
    transition: all ease .4s;
    -webkit-transition: all ease .4s;
    -moz-transition: all ease .4s;
    transform: translateY(0);
}
.footer_menu .menu_item, .footer_menu .menu_arrow svg {
    display: none;
}
ul.menu_item li {
    margin-left: 0!important;
    padding: 10px 20px;
    width: calc(100% - 40px);
    cursor: pointer;
    white-space: normal;
    transition: .3s ease;
}
ul.menu_item li:hover {
    color: var(--primaryDark);
    transition: .3s ease;
}
ul.menu_item li:hover > a {
    color: var(--primaryDark);
    transition: .2s ease;
}
ul.menu_item li:last-child {
    border-bottom: none;
}
.d_menu {
    position: relative;
}
.d_menu::before {
    content: '';
    position: absolute;
    height: 1px;
    width: calc(100% - 20px);
    max-width: 0;
    left: 20px;
    bottom: 0;
    background-color: rgba(136, 136, 136, 0.5);
    transition: 0.3s ease;
}
.d_menu:hover::before {
    max-width: 100%;
    transition: 0.3s ease;
}
.d_menu a::before {
    display: none!important;
}
.hamburger {
    display: none;
}


/* Home Page */
/* Hero */
#home_hero {
    position: relative;
    height: 100vh;
    width: 100%;
}
.hero_flex, .home_hero_items {
    height: 100%;
}
.home_hero_items {
    position: relative;
    bottom: 3rem;
}
.hero_img {
    position: relative;
    z-index: 9;
}
.hero_img img {
    width: 100%;
    position: relative;
    top: 80px;
}


/* Home About */
#home_about {
    position: relative;
    height: 100%;
    background-color: var(--primaryLight);
    margin: 0 1.5vw;
    border-radius: 10px;
}
#home_about .container {
    padding: 0 4.5vw;
}
#home_about .sec_gap {
    padding: 150px 0;
}
.section_heading {
    margin-bottom: 70px;
}
.section_name {
    font-size: 0.95rem;
    text-transform: uppercase;
    color: var(--purpletaupe);
    margin-bottom: 5px;
    letter-spacing: 0.5px;
    display: block;
}
.section_button {
    margin-top: 25px;
}
.home_about_image {
    margin-left: 80px;
}
.home_about_image, .home_about_text {
    height: 100%;
}
.home_about_image img {
    width: auto;
    height: 100%;
}


/* Home Services */
#home_services .section_heading {
    text-align: center;
}
#home_services .col_4 {
    margin-bottom: 25px;
}
.home_service_box {
    position: relative;
    background-color: var(--primaryLight);
    border-radius: 10px;
    transition: all 0.4s ease-out;
    height: 100%;
    min-height: 300px;
    max-height: 300px;
    cursor: pointer;
}
.home_service_box_items {
    padding: 70px 30px 50px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 100px);
    justify-content: space-between;
}
.home_service_icon {
    position: relative;
    width: 80px;
    height: 80px;
    background-color: var(--darkcyan);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-out;
}
.home_service_icon svg {
    width: 40px!important;
    height: auto;
}
.home_service_icon svg path {
    fill: var(--primaryLight);
}
.home_service_heading_items {
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease-out;
}
.home_service_text {
    opacity: 0;
    visibility: hidden;
    display: none;
    transition: all 0.4s ease-out;
}
.home_service_text h6 {
    color: var(--primaryLight);
    transition: all 0.4s ease-out;
}
.home_service_box:hover {
    background-color: var(--darkcyan);
    transition: all 0.4s ease-out;
}
.home_service_box:hover .home_service_box_items {
    height: calc(100% - 30px);
}
.home_service_box:hover .home_service_icon {
    background-color: var(--primaryLight);
    transition: all 0.4s ease-out;
    transform: translateY(-70px);
}
.home_service_box:hover .home_service_icon svg path {
    fill: var(--darkcyan);
    transition: all 0.4s ease-out;
}
.home_service_box:hover .home_service_heading_items {
    transition: all 0.4s ease-out;
    transform: translateY(-70px);
}
.home_service_box:hover .home_service_heading h5 {
    color: var(--primaryLight);
    transition: all 0.4s ease-out;
}
.home_service_box:hover .home_service_text {
    opacity: 1;
    visibility: visible;
    height: 100%;
    margin-top: 20px;
    transition: all 0.4s ease-out;
    display: block;
}


/* Home Tools */
#home_tools .section_heading {
    margin-bottom: 0;
    width: 90%;
}
.home_tools_image {
    position: relative;
}
.home_tools_image img {
    width: 90%;
    border-radius: 10px;
}
.home_tools_heading h3 {
    margin-top: 25px;
}


/* Dashboard Ad */
#ad {
    position: relative;
    height: 100%;
    background-color: var(--carmine);
    margin: 0 1.5vw;
    border-radius: 10px;
    overflow: hidden;
}
#ad .container {
    padding: 0 4.5vw;
}
#ad .sec_gap {
    padding: 80px 0;
}
.ad_bg {
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
}
.ad_bg img {
    height: 33vh;
    width: 100%;
}
.dash_info {
    position: relative;
    text-align: center;
    margin: 0 auto;
}
.dash_logo {
    display: flex;
    align-items: center;
    justify-content: center;
}
.dash_logo img {
    height: 110px;
    width: auto;
}
.dash_img {
    position: relative;
    width: 92%;
    height: 100%;
}
.ad .dash_img {
    width: 100%;
}
.about_image{
    width: 95%!important;
}
h2 b div {
    display: contents;
}
.dash_img img {
    max-height: 90vh;
    min-height: 80vh;
    height: 100%;
    width: 88%;
    border-radius: 10px;
    object-fit: cover;
}
#ad .dash_img {
    margin: 65px 0;
}
.dash_heading {
    position: relative;
    width: 62%;
    margin: 0 auto;
}
.dash_heading h2 {
    color: var(--primaryLight);
}


/* Footer */
footer .sec_gap {
    padding: 40px 0;
}
.footer_profile {
    margin-bottom: 20px;
}
.footer_socials ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.footer_socials ul li a {
    position: relative;
    height: 36px;
    width: 36px;
    border-radius: 100%;
    border: 1px solid var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.footer_socials ul li a svg {
    height: 0.9rem;
    width: auto;
    max-width: 1rem;
    transition: all 0.2s ease;
}
.footer_socials ul li a:hover {
    background-color: var(--carmine);
    border: 1px solid var(--carmine);
    transition: all 0.2s ease;
}
.footer_socials ul li a:hover svg path {
    fill: var(--primaryLight);
    transition: all 0.2s ease;
}
.footer_info {
    position: relative;
    padding-top: 30px;
    border-top: 1px solid var(--carmine);
    padding-bottom: 10vw;
}
.footer_address {
    display: flex;
    align-items: flex-start;
}
.f_address {
    position: relative;
    margin-right: 80px;
}
.f_email a {
    text-transform: lowercase;
}
.footer_menu {
    position: relative;
    margin-top: 4px;
}
.footer_menu ul {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 40px;
}
.c_info p, .c_info a {
    position: relative;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}
.c_link a {
    color: var(--taupegray);
    text-decoration: underline;
    margin-left: 30px;
    transition: all 0.2s ease;
}
.c_link a:hover {
    color: var(--primaryDark);
    transition: all 0.2s ease;
}
.footer_elem_menu {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 20px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    color: var(--primaryDark);
    line-height: 1;
}
.footer_elem_menu svg{
    width: 10px;
    height: auto;
    margin-left: 10px;
}
.footer_child_menu {
    position: relative;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    max-height: 0;
    transition: max-height 0.4s ease;
    overflow: hidden;
    /* padding: 2px 0; */
}
.footer_child_menu a {
    font-size: 0.9rem;
    text-transform: capitalize;
}
.footer_elem_menu svg {
    transition: transform 0.4s ease;
}



/* Privacy Policy Page */
#policies .sec_gap {
    padding-bottom: 170px;
}
.policy_banner_items  {
    padding: 6vw 0;
}
.policy_update_time {
    position: relative;
    padding: 14px 20px;
    border-radius: 10px;
    border: 1px solid var(--taupegray);
}
.policy_update_time h6 {
    color: var(--purpletaupe);
    text-transform: uppercase;
    font-weight: 400;
}
.policy_tags {
    width: 80%;
    background-color: var(--primaryLight);
    border-radius: 10px;
}
.policy_tags_items {
    padding: 18px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.single_policy_tag {
    text-transform: inherit;
    color: var(--primaryDark);
    transition: 0.2s ease;
    padding: 16px 0;
    border-radius: 10px;
}
.single_policy_tag:hover {
    background-color: var(--carmine);
    padding: 16px 20px;
    color: var(--primaryLight);
    transition: 0.2s ease;
}
.policy_descriptions {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 60px
}
.policy_heading {
    position: relative;
    margin-bottom: 30px;
}
.policy_text ul li {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.2px;
    color: var(--purpletaupe);
    list-style: disc;
    margin-left: 25px;
}
.policy_text p a {
    text-transform: initial;
}


/* CTA Contact */
#cta_contact {
    position: relative;
    height: 100%;
    width: 100%;
    background-color: var(--primaryLight);
}
.cta_contact_image {
    position: relative;
    width: 90%;
    display: flex;
    align-items: flex-start;
}
.cta_contact_image img {
    width: 90%;
    height: 100%;
    max-height: 95vh;
    border-radius: 10px;
}
.cta_contact_push {
    margin-bottom: 90px;
}
.cta_contact_push h4, .cta_map_push h4 {
    margin-bottom: 25px;
}
a p {
    pointer-events: auto;
}



/* Terms & Condition Page */
.terms .sec_gap {
    padding-bottom: 110px!important;
}
.terms_items {
    width: 95%;
}



/* About Page */
/* About Hero / Global Hero */
#about_hero {
    position: relative;
    background-color: var(--carmine);
}
.global_hero {
    position: relative;
    height: 75vh;
    width: 100%;
}
.about_bg {
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
}
.about_bg img {
    height: 100%;
    width: 88%;
}
.global_hero .container {
    margin: 0;
}
.global_hero_contents {
    position: relative;
    margin-top: 14vh;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    z-index: 9;
}
.breadcumbs {
    position: relative;
    padding: 25px 0;
    border-bottom: 1px solid rgba(136, 136, 136, 0.5);
}
.breadcumbs_content p, .breadcumbs_content a {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--primaryLight);
    font-weight: 400!important;
}
.breadcumbs_content span {
    margin: 0 8px;
}
.global_hero_items {
    position: relative;
    display: flex;
    align-items: flex-start;
    height: 100%;
    width: 83%;
    flex-direction: column;
    justify-content: center;
}
.global_hero_heading h1, .product_hero_heading h1 {
    font-size: 3.7rem;
    color: var(--primaryLight);
    line-height: 1.1;
}


/* About us */
#about_us {
    position: relative;
    height: 100%;
    width: 100%;
    background-color: var(--primaryLight);
}
.about_heading .section_heading {
    width: 69%;
}
.about_heading .section_heading h5 {
    margin-top: 20px;
    width: 86%;
}
.about_heading .section_heading h2, .values_heading h2, .contact_heading h2 {
    color: var(--primaryDark);
}
.hr_line {
    position: relative;
    height: 4px;
    width: 50px;
    background-color: var(--carmine);
    margin-top: 20px;
}
.about_image .dash_img {
    width: 95%;
}
.about_text h5 {
    margin-top: 40px;
    color: var(--purpletaupe);
}
.about_age_box .digital_age_box_heading {
    margin-bottom: 0;
}
.about_age_box .digital_age_box_heading h4:nth-child(1) {
    margin-bottom: 20px;
}


/* Serve */
.who_we_serve {
    padding-bottom: 110px;
}
.serve_heading .section_name, .contact_hero_heading .section_name,
.contact_heading .section_name, .insider_heading .section_name, .course_heading .section_name,
.product_hero_heading .section_name {
    margin-bottom: 20px;
}
.serve_heading {
    margin-bottom: 0;
    margin-right: 20px;
}
.serve_text {
    position: relative;
}
.serve_text h5 {
    width: 75%;
    color: var(--purpletaupe);
}


/* Value */
.values_heading {
    margin: 0 auto;
    text-align: center;
    margin-bottom: 70px;
}
.value_box {
    position: relative;
    height: 100%;
    width: 100%;
    background-color: var(--primaryLight);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.value_box_items {
    position: relative;
    padding: 50px 30px;
}
.value_box_heading {
    position: relative;
    margin: 55px 0 20px;
}
.value_box:hover .value_icon svg path{
    fill: var(--carmine);
    transition: all 0.2s ease;
}
.value_text p {
    color: var(--taupegray);
    transition: all 0.2s ease;
}
.value_box:hover .value_text p {
    color: var(--purpletaupe);
    transition: all 0.2s ease;
}
.value_items .col_4:nth-child(4), .value_items .col_4:nth-child(5) {
    margin-top: 24px;
}


/* CTA */
#cta {
    position: relative;
    height: 100%;
    margin: 0 1.5vw;
    border-radius: 10px;
    overflow: hidden;
}
.cta_bg {
    position: absolute;
    height: 100%;
    top: 0;
    right: -16px;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
}
.cta_bg img {
    height: 100%;
    width: 100%;
}
.carmine {
    background-color: var(--carmine);
}
#cta .sec_gap {
    padding: 80px 0;
}
#cta .container {
    padding: 0 4.5vw;
}
.cta_banner {
    position: relative;
    width: 58%;
}
.cta_heading h2 {
    color: var(--primaryLight);
    margin-bottom: 55px;
}
.cta_sub_heading h5 {
    text-transform: uppercase;
    color: var(--primaryLight);
}
.cta_sub_heading h3 {
    color: var(--primaryLight);
    margin-top: 20px;
    margin-bottom: 55px;
    letter-spacing: -0.25px;
    line-height: 1.2;
}
.about_cta .cta_sub_heading h3:nth-child(1) {
    margin-bottom: 20px;
}


/* Contact Page */
/* Contact hero Banner */
#contact_hero {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.30) 100%), url(../images/contact_hero.jpg) no-repeat top center;
    background-size: cover;
}
.contact_hero_heading .section_name {
    color: var(--primaryLight);
}
.contact_heading {
    position: relative;
    width: 55%;
}
.contact_info_box {
    position: relative;
    border-radius: 10px;
    border-right: 1px solid rgba(136, 136, 136, 0.5);
    background-color: var(--primaryLight);
    height: 100%;
}
.col_4:last-child .contact_info_box {
    border: none;
}
.contact_info_box_items {
    padding: 30px;
}
.contact_icon img {
    width: 32px;
    height: auto;
    margin-bottom: 10px;
}
.contact_info_heading h6 {
    letter-spacing: 0.5px;
    color: var(--primaryDark);
}
.contact_info_heading h6 a {
    font-size: 1.15rem;
    text-transform: inherit;
    color: var(--primaryDark);
}


/* Contact Form */
#contact_form {
    position: relative;
    height: 100%;
    background-color: var(--darkcyan);
    margin: 0 1.5vw;
    border-radius: 10px;
}
#contact_form .container {
    padding: 0 4.5vw;
}
.contact_form_heading {
    width: 55%;
    margin-bottom: 30px;
}
.contact_form_heading h2 {
    color: var(--primaryLight);
}
.contact_form_text {
    width: 42%;
    margin-bottom: 75px;
}
.contact_form_text h5 {
    text-transform: uppercase;
    color: var(--primaryLight);
}
.input_group .col_gap {
    display: flex;
    flex-direction: column;
}
.input_group {
    margin-bottom: 45px;
}
.input_group:last-child {
    margin-bottom: 0;
}
label {
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--primaryLight);
}
input, textarea {
    position: relative;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.5);
    border-bottom: 2px solid var(--indigo);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--purpletaupe);
    font-family: 'Neue Montreal', sans-serif;
}
input:hover, textarea:hover {
    border-bottom: 2px solid var(--indigo);
}
input:focus-within, input:focus, input:focus-visible,
textarea:focus-within, textarea:focus, textarea:focus-visible {
    background-color: var(--primaryLight);
    border-bottom: 2px solid var(--indigo);
}
input::placeholder, textarea::placeholder {
    color: var(--secondaryLight);
    text-transform: uppercase;
    font-size: .9rem;
}
.reg_form .input_group {
    margin-bottom: 30px;
}
.reg_form label {
    color: var(--primaryDark);
    margin-bottom: 10px;
    text-transform: initial;
}
.reg_form input, .reg_form textarea {
    background-color: var(--offwhite);
}
.reg_form input::placeholder, .reg_form textarea::placeholder {
    color: var(--taupegray);
}
button {
    position: relative;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    cursor: pointer;
    background-color: transparent;
}
.f_name {
    margin: 0 12px;
    margin-top: 40px;
}
#rt_btn {
    margin-top: 30px;
    background-color: var(--darkcyan);
    border: 1px solid var(--darkcyan);
    color: var(--primaryLight);
}
#rt_btn:hover {
    background-color: var(--carmine);
    border: 1px solid var(--carmine);
}
#rt_btn:hover svg path {
    fill: var(--primaryLight);
}
.reg_form .input_group:last-child {
    margin-bottom: 0;
}
.reg_form .input_btn {
    margin-bottom: 15px;
}
.f_name:first-child {
    margin-top: 0;
}
.f_name span {
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
    text-transform: capitalize;
}
.col_check {
    flex-direction: row!important;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 8px;
}
.col_check:last-child {
    margin-bottom: 0;
}
.col_check label {
    margin-bottom: 0;
}
.reg_items {
    background-color: var(--primaryLight);
    border-radius: 10px;
    padding: 60px;
    margin: 50px 100px;
}
.reg_text {
    width: 85%;
    margin-bottom: 50px;
}
.reg_text h6 {
    font-weight: 500;
}
select#courseDate {
    position: relative;
    padding: 20px;
    background-color: var(--offwhite);
    border-bottom: 2px solid var(--indigo);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--purpletaupe);
    font-family: 'Neue Montreal', sans-serif;
}
.course_label {
    font-size: 1.05rem;
}
.course_label a {
    text-transform: initial;
    font-size: 1.05rem;
    color: var(--darkcyan);
    font-weight: 500;
}



/* View 360 Page */
#view_hero {
    position: relative;
    height: 100%;
    margin: 0 1.5vw;
    border-radius: 10px;
    background-color: #FFEDF3;
}
#view_hero .container {
    padding: 0 4.5vw;
}
.view_hero_contents {
    position: relative;
    text-align: center;
    margin: 0 auto;
    margin-top: 17vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
}
.view_hero_logo img {
    height: 110px;
    width: auto;
}
.view_hero_heading {
    margin: 20px 0 30px;
    width: 90%;
}
.view_hero_heading h1 {
    font-size: 3.7rem;
    margin-bottom: 20px;
}
.view_hero_heading h1 span {
    color: var(--carmine);
}
#view_hero .dash_img {
    margin-top: 70px;
}
.view_img {
    width: 100%;
}


/* Insider */
#insider {
    position: relative;
    background-color: var(--primaryLight);
}
.insider_heading {
    width: 50%;
}
.insider_img {
    width: 90%;
    height: 85vh;
    margin-top: 0;
}
.view_text_items {
    position: relative;
    margin-bottom: 20px;
}
.view_text_items:last-child{
    margin-bottom: 0;
}
.view_heading h3 {
    font-size: 2.1rem;
    font-weight: 500;
    letter-spacing: -0.3px;
    margin-bottom: 45px;
}
.point_icon img {
    height: 1.5rem;
    width: auto;
    margin-right: 10px;
}
.view_text h5 {
    letter-spacing: 0;
}



/* Training Page */
/* Training Hero */
#training_hero {
    background-color: var(--purple);
}
.training_hero_heading h1 {
    margin-bottom: 30px;
}
.training_hero_heading h5 {
    color: var(--secondaryLight);
    font-weight: 400;
    letter-spacing: 0;
}


/* Training Offerings */
#training_offerings {
    position: relative;
    background-color: var(--primaryLight);
    height: 100%;
    margin: 0 1.5vw;
    border-radius: 10px;
    margin-top: -65px;
}
#training_offerings .container {
    padding: 0 4.5vw;
}
.training_offering_box {
    position: relative;
    border-radius: 10px;
    border: 1px solid rgba(136, 136, 136, 0.5);
    height: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
}
.training_offering_box:hover {
    background-color: var(--secondaryLight);
    border: 1px solid var(--secondaryLight);
}
.training_offering_box_items {
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 100px);
    gap: 40px;
}
.offering_text_items h5 {
    font-weight: 500;
    line-height: 1.1;
    color: var(--primaryDark);
}
.offering_text_items h6 {
    font-weight: 500;
    color: var(--taupegray);
    margin: 20px 0 25px;
}
.offering_icon {
    margin-right: 10px;
}
.all_offerings {
    align-items: flex-start;
    gap: 15px;
}


/* Why Choose */
.why_choose_heading {
    text-align: center;
    margin: 0 auto;
    width: 65%;
    margin-bottom: 70px;
}
.why_items {
    gap: 20px 0;
}
.why_box {
    position: relative;
    background-color: var(--primaryLight);
    border-radius: 10px;
    height: 100%;
    margin-bottom: 20px;
}
.why_box_items {
    padding: 50px 30px;
    height: calc(100% - 100px);
}
.why_box_heading h5 {
    margin-bottom: 20px;
    font-weight: 500;
    color: var(--primaryDark);
}
.why_box_text p {
    color: var(--taupegray);
    line-height: 1.4;
}


/* Cousers */
.single_course {
    margin-bottom: 30px;
}
/* .single_course:first-child .col_4 .course_box {
    max-height: 510px;
} */
.course_box {
    position: relative;
    min-height: 350px;
    background-color: var(--primaryLight);
    border-radius: 10px;
    height: 100%;
    max-height: 450px;
}
.price_box {
    max-height: 450px!important;
}
.course_box_items {
    padding: 30px;
    height: calc(100% - 60px);
}
.course_heading h2 {
    color: var(--primaryDark);
}
.course_number {
    position: relative;
    height: 32px;
    width: 32px;
    background-color: var(--persianindigo);
}
.course_number h6 {
    font-weight: 500;
    color: var(--primaryLight);
}
.course_name h4 {
    color: var(--primaryDark);
    font-weight: 500;
    margin: 20px 0 30px;
}
.course_text h6 {
    color: var(--secondaryDark);
    font-weight: 500;
}
.course_box span {
    position: relative;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--purpletaupe);
    display: block;
    margin: 0 30px;
}
.dates_heading {
    position: relative;
    border-bottom: 1px solid rgba(136, 136, 136, 0.5);
    margin-bottom: 1rem;
}
.course_dates h6 {
    color: var(--primaryDark);
    font-weight: 500;
}
.single_date {
    margin-bottom: 12px;
}
.single_date span {
    margin: 0;
    text-transform: inherit;
    font-size: 0.95rem;
}
.single_price_box:nth-child(1) {
    margin-bottom: 30px;
}
.outline {
    margin: 0 30px;
    font-weight: 500;
}
.course_accordion {
    position: relative;
    padding: 30px;
    border-bottom: 1px solid rgba(136, 136, 136, 0.5);
    cursor: pointer;
    transition: padding-bottom 0.5s ease;
    height: 100%;
    padding-bottom: 0;
}
.course_accordion:last-child{
    border-bottom: none;
}
.accordion_heading {
    margin-bottom: 25px;
}
.accordion_heading h6 {
    font-weight: 500;
    color: var(--primaryDark);
    line-height: 1;
    transition: all 0.2s;
}
.accordion_heading img {
    width: .4rem;
    height: auto;
    transition: transform 0.3s ease;
}
.accordion_text {
    position: relative;
    display: none;
    overflow: hidden;
    transition: opacity 0.5s ease; 
}
.accordion_text p {
    color: var(--purpletaupe);
    line-height: 1.3;
    transition: all 0.2s;
    padding-bottom: 30px;
}
.accordion_info {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.accordion_info_icon svg path {
    fill: var(--primaryDark);
}
.accordion_info_icon svg rect {
    stroke: var(--primaryDark);
}
.accordion_info:last-child {
    margin-bottom: 30px;
}
.accordion_info_text p {
    padding: 30px;
}
.accordion_info_text span {
    margin: 0;
    text-transform: inherit;
    color: var(--primaryDark);
    line-height: 1.3;
    font-size: 0.95rem;
}
.col_5 .course_box_items {
    padding: 30px 0;
    padding-bottom: 0;
}
.col_5 .course_box {
    height: 100%;
    max-height: 100%;
}
.price_box {
    position: relative;
    background-color: var(--persianindigo);
}
.price_button .btn_primary {
    text-transform: capitalize;
    padding: 14px 20px;
    font-weight: 400;
}
.price_button span{
    margin: 0;
}
h3.price {
    font-weight: 500;
    line-height: 1;
    letter-spacing: -1px;
    color: var(--primaryLight);
}
.price_min {
    color: var(--primaryLight);
    margin-left: 8px;
}
.course_date h6 {
    color: var(--primaryLight);
    margin-top: 10px;
}
.darkcyan {
    background-color: var(--darkcyan);
}



/* Service Page */
/* Service Hero */
#service_hero {
    background-color: var(--indigo);
}
.service_hero_btn {
    margin-top: 30px;
}


/* Service Description */
#service_description .sec_gap {
    padding: 1.5vw 0;
}
#service_description .container {
    padding-left: 1.5vw;
}
.service_banner_img img {
    position: relative;
    width: 100%;
    border-radius: 10px;
}
.service_description_box {
    position: relative;
    background-color: var(--primaryLight);
    height: 100%;
    width: 100%;
    border-radius: 10px;
    padding-right: 10vw;
    margin-left: -10vw;
}
.service_description_box_items {
    padding: 6.5vw;
    width: calc(100% - 3vw);
}
.service_description_heading h3 {
    font-weight: 500;
    margin-bottom: 30px;
    width: 98%;
}
.service_box {
    position: relative;
    min-height: 350px;
    background-color: var(--primaryLight);
    border-radius: 10px;
    height: 100%;
}
.col_5 .service_box {
    border-left: 1px solid rgba(136, 136, 136, 0.5);
}
.service_box_items {
    padding: 30px;
    height: calc(100% - 60px);
}
.service_icon {
    position: relative;
    height: 50px;
    width: 50px;
    background-color: var(--persianindigo);
}
.service_icon img {
    height: 25px;
    width: auto;
}
.service_heading {
    margin: 20px 0;
}
.service_heading h4 {
    color: var(--primaryDark);
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: -1px;
}
.service_heading h5 {
    color: var(--secondaryDark);
}
.service_text p, .service_button_text p {
    line-height: 1.4;
}
.service_button_text p {
    color: var(--primaryLight);
}
.single_service:nth-child(1) .col_3 .service_box, .single_service:nth-child(1) .service_icon {
    background-color: var(--persianindigo);
}
.single_service:nth-child(2) .col_3 .service_box, .single_service:nth-child(2) .service_icon {
    background-color: var(--darkcyan);
}
.single_service:nth-child(3) .col_3 .service_box, .single_service:nth-child(3) .service_icon {
    background-color: var(--indigo);
}
.single_service:nth-child(4) .col_3 .service_box, .single_service:nth-child(4) .service_icon {
    background-color: var(--purple);
}
.single_service:nth-child(5) .col_3 .service_box, .single_service:nth-child(5) .service_icon {
    background-color: var(--lincolgreen);
}
.single_service:nth-child(6) .col_3 .service_box, .single_service:nth-child(6) .service_icon {
    background-color: var(--tigereye);
}
.single_service:nth-child(1) .service_heading h5 span {
    color: var(--persianindigo);
}
.single_service:nth-child(2) .service_heading h5 span {
    color: var(--darkcyan);
}
.single_service:nth-child(3) .service_heading h5 span {
    color: var(--indigo);
}
.single_service:nth-child(4) .service_heading h5 span {
    color: var(--purple);
}
.single_service:nth-child(5) .service_heading h5 span {
    color: var(--lincolgreen);
}
.single_service:nth-child(6) .service_heading h5 span {
    color: var(--tigereye);
}



/* Product Page */
/* Product Hero */
#product_hero {
    background: url(../images/service_banner.jpg) no-repeat center center;
    background-size: cover;
}
#product_hero .breadcumbs {
    background-color: var(--carmine);
}


/* Products Head */
#product_head {
    margin-top: -100px;
}
#product_head .sec_gap {
    padding-top: 1.5vw;
}
.product_hero_heading {
    margin-bottom: 40px;
}
.product_hero_heading h1 {
    color: var(--primaryDark);
    margin-bottom: 30px;
}

.product_hero_heading .section_name {
    color: var(--primaryDark)
}
.product_heading_box {
    position: relative;
    height: 100%;
    width: 100%;
    padding-right: 4.5vw;
    background-color: var(--primaryLight);
    border-radius: 10px;
}
.product_heading_box_items {
    padding: 7vw;
    width: calc(100% - 9vw);
}
.product_sub_heading h3 {
    color: var(--primaryDark);
}


/* Digital Age */
.digital_age_heading, .digital_transformation_heading {
    text-align: center;
    margin: 0 auto;
    margin-bottom: 70px;
}
.digital_age_contents {
    gap: 20px;
}
.col_6:first-child .digital_age_box {
    background: linear-gradient(161deg, #C50043 14.66%, #5A175D 106.26%);
}
.digital_age_box {
    position: relative;
    background-color: var(--primaryLight);
    border-radius: 10px;
    height: 100%;
}
.digital_age_box_items {
    padding: 50px;
}
.digital_age_logo img {
    width: 210px;
    height: auto;
}
.digital_age_box_heading {
    margin: 50px 0 35px;
}
.digital_age_box_heading h4 {
    color: var(--primaryLight);
}
.digital_age_button .btn_primary {
    text-transform: capitalize;
}
.digital_age_button .btn_primary:hover {
    background-color: var(--primaryLight);
}
.digital_age_text span {
    text-transform: uppercase;
    margin-bottom: 30px;
    display: block;
    color: var(--purpletaupe);
}


/* Digital Transformation */
#digital_transformation {
    position: relative;
    background-color: var(--primaryLight);
}
.product_box_main_contents {
    position: relative;
    height: 100%;
}
.product_box {
    position: relative;
    background-color: var(--secondaryLight);
    border-radius: 10px;
    height: 100%;
}
#digital_transformation .col_7 .product_box, #leadership .col_7 .product_box {
    background: linear-gradient(161deg, #5A175D 14.66%, #17445D 106.26%);
}
.product_box_items {
    padding: 50px;
    height: calc(100% - 100px);
}
.product_heading h4 {
    color: var(--secondaryLight);
}
.product_heading_items .product_heading {
    margin-bottom: 30px;
}
.product_button .btn_primary {
    text-transform: capitalize;
}
.team_tools_heading {
    margin-bottom: 50px;
}
.product_heading_items {
    margin-top: 60px;
}
.single_product {
    position: relative;
    border-bottom: 1px solid rgba(136, 136, 136, 0.5);
    background-color: var(--secondaryLight);
}
.col_5 .single_product:first-child {
    border-radius: 10px 10px 0 0;
}
.col_5 .single_product:last-child {
    border: none;
    border-radius: 0 0 10px 10px;
}
.single_product_focus {
    background-color: var(--purple);
}
.single_product_items {
    padding: 30px;
}
.single_product h6 {
    font-weight: 500;
    color: var(--primaryDark);
    margin-bottom: 14px;
}
.single_product p {
    color: var(--purpletaupe);
    line-height: 1.3;
}
.single_product_items span {
    margin-bottom: 14px;
    display: block;
    color: var(--primaryLight);
}
.col_5 .single_product:last-child p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primaryLight);
}


/* Team Tools */
#team_tools .col_7 .product_box, #employees .col_7 .product_box {
    background: linear-gradient(161deg, #05878A 14.66%, #1B5D17 106.26%);
}
#team_tools .col_5 .product_box, #employees .col_5 .product_box {
    background-color: var(--lincolgreen);
}
#team_tools .col_5 .single_product, #track .col_5 .single_product, #employees .col_5 .single_product {
    background-color: var(--primaryLight);
}
#team_tools .col_7 .product_box, #track .col_7 .product_box,
#employees .col_7 .product_box, #up_skill .col_7 .product_box {
    height: auto;
}
#team_tools .single_product_focus, #employees .single_product_focus {
    background-color: var(--lincolgreen)!important;
}


/* Track */
#track .col_7 .product_box, #up_skill .col_7 .product_box {
    background: linear-gradient(161deg, #17445D 14.66%, #351C75 106.26%);
}
#track .single_product_focus, #track .col_5 .product_box, #up_skill .col_5 .product_box {
    background-color: var(--persianindigo)!important;
}
#track .dash_img {
    margin-bottom: 60px;
}


/* Leadership */
#leadership {
    background-color: var(--primaryLight);
}
#leadership .dash_img {
    margin-top: 60px;
}


/* Up skill */
#up_skill {
    position: relative;
    background-color: var(--primaryLight);
}
#up_skill .single_product_focus {
    background-color: var(--persianindigo);
}

.hero_img {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.poly_dsk_hide {
    display: none!important;
}
.polyflex {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-right: -24px;
}
.polyflex:last-child {
    margin-right: 0;
}
.single_poly {
    position: relative;
    display: inline-flex;
    width: auto;
    height: 100%;
    transition: all 0.2s ease;
    cursor: pointer;
}
.polyflex.poly_large {
    margin-top: -124px;
    margin-right: -22px;
}

.poly_large .poly_inside svg {
    height: 230px;
    stroke: none;
    stroke-width: none;
}
.poly_inside {
    position: relative;
    width: auto;
    height: 100%;
    display: inline-flex;
    transition: all 0.2s ease;
}
.poly_inside svg {
    height: 115px;
    width: auto;
    stroke: red;
    stroke-width: 1.5px;
    transition: all 0.2s ease;
}
.single_poly:hover svg {
    filter: drop-shadow(-2px 5px 12px rgba(143, 143, 143, 0.30));
}
.poly_inside svg path {
    fill: var(--primaryLight);
}
.poly_inside_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-weight: 500;
}
.poly_inside_text p {
    font-weight: 400;
    font-size: .95rem;
    line-height: 1.1;
    font-weight: 500;
    text-transform: capitalize;
}
.poly_large .poly_inside_text p {
    font-size: 3.75rem;
    color: var(--carmine);
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.polyflex:nth-child(2) .single_poly:nth-child(1) svg,
.polyflex:nth-child(2) .single_poly:nth-child(1) p {
    stroke: var(--indigo);
    color: var(--indigo);
}
.polyflex:nth-child(2) .single_poly:nth-child(2) svg,
.polyflex:nth-child(2) .single_poly:nth-child(2) p  {
    stroke: var(--carmine);
    color: var(--carmine);
}
.polyflex:nth-child(2) .single_poly:nth-child(3) svg,
.polyflex:nth-child(2) .single_poly:nth-child(3) svg  {
    stroke: #0b0d47;
    color: #0b0D47;
}
.polyflex:nth-child(3) .single_poly:nth-child(1) svg,
.polyflex:nth-child(3) .single_poly:nth-child(1) p  {
    stroke: var(--darkcyan);
    color: var(--darkcyan);
}
.polyflex:nth-child(3) .single_poly:nth-child(2) svg,
.polyflex:nth-child(3) .single_poly:nth-child(2) p  {
    stroke: var(--purple);
    color: var(--purple);
}
.polyflex:nth-child(3) .single_poly:nth-child(3) svg,
.polyflex:nth-child(3) .single_poly:nth-child(3) p  {
    stroke: var(--persianindigo);
    color: var(--persianindigo);
}
.polyflex:nth-child(3) .single_poly:nth-child(4) svg,
.polyflex:nth-child(3) .single_poly:nth-child(4) p  {
    stroke: var(--purpletaupe);
    color: var(--purpletaupe);
}
.polyflex:nth-child(4) .single_poly:nth-child(1) svg,
.polyflex:nth-child(4) .single_poly:nth-child(1) p {
    stroke: var(--carmine);
    color: var(--carmine);
}
.polyflex:nth-child(4) .single_poly:nth-child(2) svg,
.polyflex:nth-child(4) .single_poly:nth-child(2) p {
    stroke: var(--tigereye);
    color: var(--tigereye);
}
.polyflex:nth-child(4) .single_poly:nth-child(3) svg,
.polyflex:nth-child(4) .single_poly:nth-child(3) p {
    stroke: var(--carmine);
    color: var(--carmine)
}
.polyflex:nth-child(5) .single_poly:nth-child(1) svg,
.polyflex:nth-child(5) .single_poly:nth-child(1) p {
    stroke: var(--purple);
    color: var(--purple);
}
.polyflex:nth-child(5) .single_poly:nth-child(2) svg,
.polyflex:nth-child(5) .single_poly:nth-child(2) p {
    stroke: var(--lincolgreen);
    color: var(--lincolgreen);
}


.digital_age_carousel {
    margin-top: 22px;
}
.single_carousel {
    border-radius: 10px;
    width: 33.33%;
    height: 100%;
}
.single_carousel_items {
    background-color: var(--primaryLight);
    width: 100%;
    border-radius: 10px;
    height: 100%;
}
.single_carousel_box {
    position: relative;
    padding: 50px;
    width: calc(100% - 100px);
    height: calc(100% - 100px);
}
.single_carousel_heading h4 {
    color: var(--primaryDark);
    font-weight: 500;
}
.single_carousel_text p {
    line-height: 1.3;
    color: var(--secondaryDark);
    margin: 20px 0 30px;
}
.single_carousel_image img {
    width: 100%;
    height: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 6px;
}
.single_carousel_text, .single_carousel_heading {
    width: 100%;
}


.h_heading span {
    display: block;
    overflow: hidden;
}
.h_name p {
    color: var(--primaryLight);
}



/* Footer Semi-final */
.footer_socials, .f_address {
    display: none!important;
}
.contact_info .col_4:first-child, .contact_info .col_4:last-child {
    display: none;
}
.contact_info .col_4 {
    width: 100%!important;
}
button.btn_primary:hover {
    background: var(--primaryLight);
    border: 1px solid var(--primaryLight);
}
.active_menu_link {
    color: var(--carmine);
}
.active_menu_link::before {
    left: -12px;
    opacity: 1;
    visibility: visible;
    background-color: var(--carmine)!important;
}
.active_menu_link svg path {
    fill: var(--carmine)!important;
}