/* Webfont include */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@font-face {
    font-family: 'Blimone';
    src: url('../fonts/Blimone-Bold.eot');
    src: local('Blimone Bold'), local('../fonts/'),
        url('../fonts/Blimone-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Blimone-Bold.woff2') format('woff2'),
        url('../fonts/Blimone-Bold.woff') format('woff'),
        url('../fonts/Blimone-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Blimone';
    src: url('../fonts/Blimone-ExtraBold.eot');
    src: local('Blimone ExtraBold'), local('Blimone-ExtraBold'),
        url('../fonts/Blimone-ExtraBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Blimone-ExtraBold.woff2') format('woff2'),
        url('../fonts/Blimone-ExtraBold.woff') format('woff'),
        url('../fonts/Blimone-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

* {
    padding: 0;
    margin: 0;
}

/* Color */

:root {
    --primary-dark: #F36D44;
    --secondary-dark: #B4D55E;
    --secondary-light: #B4E25A;
    --blue-btn-primary: #1F53F7;
    --light-blue-primary: #cbd2f1;
    --light-black-500: #140D17;
    --light-black-400: #6E686D;
    --light-black-300: #403A40;
    --error: #EB4335;
    --white: #ffffff;
    --black: #000000;
}

body {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
    text-decoration: none;
    transition: all .6s;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Blimone';
    font-weight: 800;
}

h1 {
    font-size: 100px;
    line-height: 88px;
    font-weight: 800;
}

h2 {
    font-size: 66px;
    font-weight: 700;
    line-height: 74px;
}

h4,
h5,
h6 {
    margin: 0;
    font-optical-sizing: auto;
    font-style: normal;
}

img {
    height: auto;
    max-width: 100%;
}

.text-capscase {
    text-transform: uppercase;
}

.form-control {
    margin: 10px .0px;
    min-height: 60px;
    padding: 18px 30px;
    border: none;
    border-radius: 40px;
    background: transparent;
    color: #000;
    border: 1px solid #C2C2C2;
}
.corporate-form .main-flex-box {
    align-items: baseline;
}

textarea.form-control {
    min-height: 50px;
}

ul,
li {
    margin: 0px;
    font-weight: 500;
    list-style-type: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
}

p {
    margin: 0px;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

a {
    margin: 0px;
    font-size: 16px;
    font-weight: 500;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}

ul,
ol,
li {
    padding: 0;
    margin: 0;
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #ced4da;
    outline: 0;
    box-shadow: none;
}

textarea {
    resize: none;
}

::-webkit-scrollbar {
    width: 10px;
    height: 5px;
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-dark-600);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-dark);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-dark);
    border-radius: 10px;
}


input,
button,
input:focus,
button:focus,
textarea,
textarea:focus,
select,
select:focus {
    outline: none !important;
    box-shadow: none;
}

a,
a:hover,
a:focus,
button,
button:hover,
button:focus,
input,
input:hover,
input:focus,
textarea,
textarea:hover,
textarea:focus {
    outline: none;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    background-color: var(--Primary-dark-800);
}

.spaner-orange {
    color: var(--primary-dark);
}

.default-header-box h6 {
    font-size: 22px;
    font-weight: 500;
    color: var(--light-black-500);
    text-transform: uppercase;
}

.default-header-box h2 {
    color: var(--light-black-300);
    text-transform: uppercase;
}

span.header-border {
    display: inline-block;
    height: 1px;
    max-width: 210px;
    background: var(--light-black-500);
    width: 100%;
    margin-bottom: 15px;
    margin-top: 10px;
}

/* buttons add */
.globalBtnDark {
    padding: 10px 20px 10px 31px;
    color: var(--white);
    background-color: var(--blue-btn-primary);
    border-radius: 40px;
    display: inline-flex;
    text-transform: uppercase;
    font-size: 18px;
    align-items: center;
    gap: 20px;
    transition: all 0.4s ease-in-out;
    min-height: 48px;
    position: relative;
    overflow: hidden;
    font-weight: 400;
}

.globalBtnDark:hover:before {
    transform: translateX(0);
}

.globalBtnDark:hover {
    color: var(--blue-btn-primary);
}

.globalBtnDark:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: -1px;
    background-color: var(--light-blue-primary);
    transform: translateX(-100%);
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.globalBtnDark span {
    position: relative;
    z-index: 9;
    top: 0px !important;
    bottom: 0px !important;
    right: 0px !important;
    left: 0px !important;
    height: auto !important;
    width: auto !important;
}

.globalBtnLight {
    padding: 10px 35px;
    color: var(--blue-btn-primary);
    background-color: var(--light-blue-primary);
    border-radius: 40px;
    border: 1px solid var(--button-border);
    display: inline-flex;
    text-transform: uppercase;
    font-size: 18px;
    align-items: center;
    transition: all 0.4s ease-in-out;
    min-height: 48px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    font-weight: 400;
}

.globalBtnLight:hover:before {
    transform: translateX(0);
}

.globalBtnLight:hover,
.globalBtnLight:hover span {
    color: var(--white);
}

.globalBtnLight:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: -1px;
    background-color: var(--blue-btn-primary);
    transform: translateX(-100%);
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.globalBtnLight span {
    position: relative;
    z-index: 9;
}
a.globalBtnDark.white-button {
    background: #fff;
    color: #000;
}

/* updown animation */
@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-60px);
    }
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-60px);
    }
}

/* Round animatio */
@-webkit-keyframes rippleWhite {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 1em rgba(255, 255, 255, 0.3), 0 0 0 3em rgba(255, 255, 255, 0.3), 0 0 0 5em rgba(255, 255, 255, 0.3);
        border-radius: 5px;
    }

    100% {
        box-shadow: 0 0 0 1em rgba(255, 255, 255, 0.3), 0 0 0 3em rgba(255, 255, 255, 0.3), 0 0 0 5em rgba(255, 255, 255, 0.3), 0 0 0 8em rgba(101, 255, 120, 0);
        border-radius: 5px;
    }
}

@keyframes rippleWhite {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 1em rgba(255, 255, 255, 0.3), 0 0 0 3em rgba(255, 255, 255, 0.3), 0 0 0 5em rgba(255, 255, 255, 0.3);
        border-radius: 5px;
    }

    100% {
        box-shadow: 0 0 0 1em rgba(255, 255, 255, 0.3), 0 0 0 3em rgba(255, 255, 255, 0.3), 0 0 0 5em rgba(255, 255, 255, 0.3), 0 0 0 6em rgba(101, 255, 120, 0);
        border-radius: 5px;
    }
}

@-webkit-keyframes rippleGreen {
    0% {
        box-shadow: 0 0 0 0 rgba(101, 255, 120, 0.3), 0 0 0 1em rgba(101, 255, 120, 0.3), 0 0 0 3em rgba(101, 255, 120, 0.3), 0 0 0 5em rgba(101, 255, 120, 0.3);
    }

    100% {
        box-shadow: 0 0 0 1em rgba(101, 255, 120, 0.3), 0 0 0 3em rgba(101, 255, 120, 0.3), 0 0 0 5em rgba(101, 255, 120, 0.3), 0 0 0 6em rgba(101, 255, 120, 0);
    }
}

@keyframes rippleGreen {
    0% {
        box-shadow: 0 0 0 0 rgba(101, 255, 120, 0.3), 0 0 0 1em rgba(101, 255, 120, 0.3), 0 0 0 3em rgba(101, 255, 120, 0.3), 0 0 0 5em rgba(101, 255, 120, 0.3);
        border-radius: 5px;
    }

    100% {
        box-shadow: 0 0 0 1em rgba(101, 255, 120, 0.3), 0 0 0 3em rgba(101, 255, 120, 0.3), 0 0 0 5em rgba(101, 255, 120, 0.3), 0 0 0 8em rgba(101, 255, 120, 0);
        border-radius: 5px;
    }
}

/* Slider navbar */
.nav-pills .nav-link.active,
.nav-pills .show>.nav-link,
.nav-pills .nav-link {
    background-color: transparent;
    color: var(--text-secondary);
}

.owl-nav {
    color: var(--black);
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: -1;
}

.owl-nav button.owl-prev span {
    left: -40px;
}

.owl-nav button.owl-next span {
    right: -40px;
}

.owl-nav button span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    color: var(--white);
    border-radius: 50%;
    position: relative;
}

.owl-dots button.owl-dot span {
    background: var(--white);
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin: 5px;
}

.owl-dots button.owl-dot.active span {
    background: var(--white);
    display: inline-block;
    width: 15px;
    height: 6px;
    border-radius: 5px;
    margin: 5px;
}

.owl-dots {
    margin-top: 50px;
    text-align: center;
}

/* global header start */
.global-header {
    margin-bottom: 40px;
}

.global-header p {
    width: 55%;
    text-align: center;
}

.global-header h2 {
    font-size: 60px;
    font-weight: 200;
    text-transform: uppercase;
}

.global-header h2 span {
    font-weight: 700;
}

/* global header end */

/* top navbar start */
.top-navbar .navbar-brand {
    display: inline-block;
    max-width: 189px;
    transition: all 300ms ease-in-out;
}

.top-navbar.sticky .navbar-brand img {
    max-width: 220px;
    transition: all ease-in-out 0.3s;
}
.top-navbar.sticky .globalBtnOutline {
    border-color: var(--white);
    color: var(--white);
}

.top-navbar {
    /* padding: 15px 0px; */
    z-index: 9;
    background-color: var(--light-black-500);
    width: 100%;
    transition: 0.6s;
    z-index: 9999;
    position: sticky;
    top: 0px;
}

.top-navbar.sticky {
    background-color: var(--light-black-500);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
    /* padding: 10px 0px; */
    transition: all 0.3s ease-in-out;
}

.top-navbar ul.navbar-nav li {
    margin: 0px 20px;
    font-size: 16px;
}
.top-navbar ul.navbar-nav li:last-child {
    border-right: none;
    padding-right: 0px;
}

.top-navbar ul.navbar-nav li a.nav-link {
    position: relative;
}
.navbar-nav .dropdown-menu{
    width: 210px;
}
.top-navbar ul.navbar-nav li a.nav-link {
    padding: 0;
}
.top-navbar ul.dropdown-menu li a.dropdown-item {
    display: inline-block;
    word-break: break-word;
    white-space: inherit;
    text-transform: uppercase;
    transition:all 0.3s ease-in-out;
}
.top-navbar ul.dropdown-menu li a.dropdown-item:hover{
    color: var(--primary-dark);
}
li.nav-item.dropdown:has(ul.dropdown-menu:hover)a.nav-link.dropdown-toggle{
    color: var(--primary-dark);
}
.top-navbar .navbar-expand-lg .navbar-nav .nav-link.active {
    color: var(--white);
    position: relative;
    font-weight: 700;
}
li.nav-item.dropdown .dropdown-menu{
    display: block;
    left: 0;
    padding: 14px;
    margin-top: var(--bs-dropdown-spacer);
    background-color:var(--light-black-500);
    color: var(--white);
    transition: all 0.4s ease-in-out;
    transform: translate(0px, 8px);
    opacity: 0;
    visibility: hidden;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

li.nav-item.dropdown:hover .dropdown-menu {
    transform: translate(0px, -3px);
    opacity: 1;
    visibility: visible;
}
li.nav-item.dropdown:hover .dropdown-menu:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 20px solid transparent;
    top: -13px;
    left: 24px;
}
.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: 0.4em solid;
    border-right: .4em solid transparent;
    border-bottom: 0;
    border-left: .4em solid transparent;
}

ul.dropdown-menu .dropdown-item {
    color:var(--white);
}

.dropdown-item:focus, .dropdown-item:hover {
    background: transparent;
    color:var(--primary-dark);
}
.top-navbar .navbar-expand-lg .navbar-nav .nav-link {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    padding: 30px 0px;
    position: relative;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
}
.loginBtn-cntn {
    margin-left: 18px;
}
.top-navbar.sticky .navbar-expand-lg .navbar-nav .nav-link {
    color: var(--white);
    padding: 22px 0px;
}

.top-navbar .navbar-expand-lg .navbar-nav .nav-link:hover {
    color: var(--primary-dark);
}

.top-navbar.sticky .navbar-expand-lg .navbar-nav .nav-link:hover {
    color: var(--primary-dark);
}
.dropdown-toggle.show::after, li.nav-item.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
    transition: all 0.4s ease-in-out;
}


header.top-navbar.loggedIn .loginBtn-cntn {
    display: flex;
    align-items: center;
    gap: 19px;
}

.navbar-toggler {
    border: none;
}

nav.navbar .navbar-nav {
    align-items: center;
}

/* top navbar end */

/* hero banner start */
.hero-banner {
    background: url('../images/hero-banner-bg.png')no-repeat;
    background-position: center;
    background-size: cover;
    color: var(--black);
}

.hero-banner-main {
    display: flex;
    align-items: center;
    gap: 30px;
    min-height: 100vh;
}

.hero-banner-cntn a.globalBtnDark {
    box-shadow: 9px 7px 12px 0px #00000040;
}

.hero-video-icon {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video button.btn-close {
    background-color: #fff;
    opacity: 1;
    z-index: 9;
    padding: 10px;
    position: absolute;
    right: -10px;
    border-radius: 50%;
}

.hero-video iframe {
    margin-bottom: -6px;
    border-radius: 3px;
    margin-top: -1px;
}

.hero-banner-cntn {
    align-self: center;
    padding: 30px 0px;
    max-width: 631px;
}

.hero-banner-cntn h1 {
    margin: 0px 0 0 0;
    text-transform: uppercase;
    color: var(--white);
}

.hero-banner-cntn h1 span {
    color: var(--secondary-dark);
    display: block;
}

.hero-banner-cntn p {
    margin: 30px 0px 45px 0px;
    color: var(--white);
}

.hero-video-icon span {
    position: relative;
}

.hero-video-icon span img {
    position: relative;
    z-index: 99;
    cursor: pointer;
}

.hero-video-icon span::after {
    content: '';
    animation: pulse 1s ease-in infinite;
    position: absolute;
    background: #ffffff;
    height: 100%;
    width: 100%;
    top: 0%;
    left: 0%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

@keyframes pulse {
    0% {
        transform: scale(1.1);
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

@keyframes pulse-2 {
    0% {
        transform: scale(5);
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: scale(7);
        opacity: 0;
    }
}

/* hero banner end */
/* growth-music start */
.growth-music {
    background-color: var(--primary-dark);
    padding: 80px 0px;
    color: var(--white);
    text-align: center;
}
.growth-music h2{
    text-transform: uppercase;
    font-size: 100px;
    font-weight: 800;
    line-height: 88px;
}

.main-flex-box {
    display: flex;
    align-items: center;
}

.cntn-box {
    width: 50%;
}

.thumbnail-box {
    width: 50%;
}

.content-thumb-box {
    padding: 80px 0px;
    position: relative;
}

.content-thumb-box p {
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    margin: 25px 0px;
}
.technology-space {
    background: url('../images/grey-bg.png')no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}
.technology-space .thumbnail-box img {
    max-height: 80%;
}
.technology-space .cntn-box {
    margin-left: auto;
}

.technology-space .thumbnail-box {
    position: absolute;
    left: 0;
    padding-right: 50px;
    height: 100%;
    top: 0;
    display: flex;
    align-items: center;
}

/* footer start */
footer.footer {
    background: var(--light-black-500);
    padding: 80px 0px;
    color: var(--white);
    overflow: hidden;
    position: relative;
}
footer.footer .ftr-vector-shape-bg {
    position: absolute;
    left: -4%;
    max-width: 429px;
    width: 100%;
    top: 10%;
    z-index: 0;
}
.logo-part{
    position: relative;
    z-index:9;
}
footer.footer .container {
    position: relative;
}
section {
    overflow: hidden;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.footer-left {
    padding-right: 25px;
}

.footer-right {
    display: flex;
    gap: 30px;
}

.footer h4 {
    margin-bottom: 5px;
    padding-bottom: 15px;
    line-height: 36px;
    font-size: 32px;
    font-weight: 800;
    line-height: 25px;
    position: relative;
}
.footer a:hover{
    color: var(--secondary-dark);
}
.footer-right .footer-nav:nth-child(1) {
    width: 40%;
}

.footer-right .footer-nav:nth-child(2) {
    width: 32%;
}
.footer-right .footer-nav:nth-child(1) ul li {
    position: relative;
    padding-left: 22px;
}
.footer-right .footer-nav:nth-child(1) ul li::after{
    position: absolute;
    content: '';
    height: 10px;
    width: 10px;
    background-color: var(--secondary-dark);
    left: 0px;
    top: 18px;
    border-radius: 50%;
}
.footer-right .footer-nav:nth-child(3) {
    width: 30%;
}
.footer-nav ol.social-icons {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
}

.footer-right li,
.footer-right li a, .footer-left ul li, .footer-left ul li a {
    font-size: 22px;
    font-weight: 400;
    line-height: 26px;
    padding: 5px 0;
    transition: all 0.3s ease-in-out;
}

.footer-right li {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

p.copyright-text {
    font-size: 18px;
    line-height: 28px;
    color: var(--white);
    border-top: 1px solid #fff;
    padding: 36px 0px;
}

.copy-right {
    background-color: var(--light-black-500);
    text-align: center;
    color: var(--white);
}

/* footer end */

/* top sticky button start */
.fixedButon {
    display: inline-flex;
    width: 60px;
    height: 60px;
    text-align: center;
    background-color: var(--secondary-dark);
    color: var(--white);
    align-items: center;
    border: 2px solid #fff;
    justify-content: center;
    border-radius: 50%;
    font-size: 25px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.fixedButon:hover {
    background: var(--secondary-dark);
}

.fixedButon:active {
    background-color: #555;
}

.fixedButon.StickyButton {
    opacity: 1;
    visibility: visible;
}

.fixedButon img {
    width: 100%;
}

.fixedButon:hover {
    cursor: pointer;
}

p.big-pera {
    font-size: 22px;
    line-height: 36px;
}

/* top sticky button end */

button.owl-prev {
    position: relative;
    left: -34px;
}

button.owl-next {
    position: relative;
    right: -34px;
}

.ftr-upper {
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    padding: 60px 0px 60px;
}

.ftr-nav-part-up ul {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.ftr-nav-part-up ul li a {
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
}
.workforce-development .container {
    position: relative;
    z-index: 9;
}
.workforce-development {
    background:url('../images/arts-hubs.png')no-repeat;
    background-position: center;
    background-size: cover;
    color: var(--white);
    position: relative;
}
.workforce-development::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: #0000009e;
}
.workforce-development .hero-banner-main {
    z-index: 9;
    position: relative;
}
.workforce-development .default-header-box h2 {
    color: var(--white);
}
.workforce-development .main-flex-box {
    gap: 30px;
}
.workforce-development.inner-page-header{
    background: url('../images/workspace-development/hero-banner.png')no-repeat;
    background-position: center;
    background-size: cover;
}

.austic-learner .main-flex-box {
    gap: 30px;
}
.austic-learner.about-music-breed h2 {
    font-size: 99.92px;
    font-weight: 800;
    line-height: 81.93px;
}

.donate {
    background-color: var(--secondary-dark);
    min-height: 720px;
}

.donate .main-flex-box {
    gap: 30px;
}

.donate .thumbnail-box {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 52%;
    text-align: right;
}
.donate .cntn-box {
    max-width: 40%;
}
.benefits-main .global-header {
    text-align: center;
    margin-bottom: 70px;
}
.benefits-main .global-header p {
    margin: auto;
}
.benefits-main {
    background: url('../images/benefit-bg.png')no-repeat;
    background-size: cover;
    background-position: center;
    color: var(--white);
}
.benefit-item {
    background-color: var(--light-black-500);
    padding: 50px 30px;
    border-radius: 40px;
    text-align: center;
}
.benefit-item h4 {
    font-size: 41px;
    font-weight: 700;
    line-height: 28px;
    margin-top: 40px;
    text-transform: uppercase;
}
.benefit-item p {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}
.benefits-main .global-header p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}
.benefits-main .global-header p {
    width: 75%;
    text-align: center;
}
.program-need {
    background: url('../images/program-need-bg.png')no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}
.program-need-cntn {
    max-width: 557px;
    margin-left: auto;
    position: relative;
    z-index: 9;
    color: var(--white);
}
.program-need-cntn h2 {
    text-transform: uppercase;
    font-size: 100px;
    font-weight: 800;
    line-height: 88px;
}
.program-need::after {
    content: '';
    width: calc(100% - 30%);
    z-index: 2;
    right: 0;
    top: 0px;
    bottom: 0px;
    height: 100%;
    background: url(../images/program-need-shape.png) no-repeat;
    background-size: cover;
    position: absolute;
}
a.globalBtnDark.white-btn {
    background: var(--white);
    color: var(--black);
}
.mb-method .global-header {
    text-align: center;
    margin-bottom: 70px;
}
.mb-method .global-header p {
    width: 75%;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}
.mb-method-item ul li {
    font-size: 20px;
    font-weight: 400;
    line-height: 38px;
}
.mb-method-item h3 {
    font-size: 48px;
    font-weight: 700;
    line-height: 48px;
    margin: 20px 0px;
    max-width: 300px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
}
.mb-method-item h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0px;
    background-color: var(--light-black-300);
    height: 1px;
    width: 72px;
}

.mb-method-item li {
    position: relative;
}

.mb-method-item li::after {
    position: absolute;
    left: 0px;
    top: 18px;
    content: '';
    height: 5px;
    width: 18px;
    background-color: var(--primary-dark);
    border-radius: 50%;
}

.mb-method-item ul li {
    font-size: 20px;
    font-weight: 400;
    line-height: 38px;
    padding-left: 30px;
}

a.globalBtnLight.mb-method-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top: 40px;
}

.arts-hub h2 {
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    margin-bottom: 90px;
    font-size: 93px;
    font-weight: 800;
    line-height: 88px;
}

.arts-hub {
    background: url('../images/arts-hubs.png')no-repeat;
    background-position: center;
    background-size: cover;
}

.arts-hub .benefit-item {
    background: #3a333b;
    color: var(--white);
    padding-top: 0px;
}

.arts-hub .benefit-item h5 {
    font-size: 34px;
    font-weight: 700;
    line-height: 33px;
    margin: 30px 0px;
}

.arts-hub .benefit-item img {
    margin-top: -50px;
}

.events-main .global-header {
    text-align: center;
}

.events-main .global-header p {
    margin: 0 auto;
    width: 75%;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.event-item {
    padding: 30px;
    border-radius: 40px;
    position: relative;
}

.green-shape {
    background: url('../images/green-event-bg.png')no-repeat;
    background-position: center;
    background-size: cover;
}

.orange-shape {
    background: url('../images/orange-event-bg.png')no-repeat;
    background-position: center;
    background-size: cover;
}

.event-item h4 {
    font-size: 41px;
    font-weight: 700;
    line-height: 40px;
    max-width: 80%;
    color: var(--black);
    text-transform: uppercase;
}

.event-thumbnail span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: Roboto;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    background: #fff;
    padding: 5px 19px;
    border-radius: 40px;
    position: absolute;
    transform: translate(20px, -18px);
}

.event-thumbnail {
    position: relative;
    margin-top: 40px;
}

.event-dotted {
    position: absolute;
    top: 23px;
    right: 28px;
}

.join-community {
    background: url('../images/benefit-bg.png')no-repeat;
    background-position: center;
    background-size: cover;
    color: var(--white);
}

.join-comunity-separate {
    display: flex;
    align-items: center;
    gap: 40px;
}

.community-form button.btn.btn-primary {
    width: 100%;
    border-radius: 40px;
    height: 70px;
    margin-top: 18px;
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.community-contact li {
    display: flex;
    align-items: baseline;
    gap: 13px;
    margin: 35px 0px;
    font-size: 30px;
    font-weight: 400;
    line-height: 36px;
    text-align: left;
}

.community-contact li i {
    color: var(--primary-dark);
}

.community-contact li a {
    font-size: 30px;
    font-weight: 400;
    line-height: 36px;
    text-align: left;
}

.join-community h2 {
    font-size: 100px;
    font-weight: 800;
    line-height: 88px;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 40px;
    width:calc(100% - 80px);
}

img.music-breed-shape {
    position: absolute;
    max-width: 130px;
}
.content-thumb-box.music-breed-up.month-tuition h2 {
    font-size: 100px;
    font-weight: 800;
    line-height: 82px;
}
.content-thumb-box.music-breed-up.month-tuition h2 span{
    font-size: 66px;
    font-weight: 700;
    line-height: 82px;
}

img.technology-space-shape {
    position: absolute;
    right: 30px;
    max-width: 150px;
    bottom: 50px;
}

img.workspace-dev-shape-top {
    position: absolute;
    top: 50px;
    max-width: 150px;
    left: 40px;
    z-index: 3;
}

.austic-learner-dwn-curv-shape {
    position: absolute;
    bottom: 0px;
    right: 40px;
    bottom: 40px;
    max-width: 150px;
}

img.benefit-top-curv-shape {
    position: absolute;
    left: 50px;
    max-width: 150px;
}

img.mb-method-top-curv-shape {
    max-width: 150px;
    right: 50px;
    position: absolute;
}

img.event-top-curv-shape {
    max-width: 150px;
    position: absolute;
    left: 50px;
    top: 80px;
}

img.join-comunity-top-curv-shape {
    max-width: 150px;
    position: absolute;
    right: 50px;
}

.mb-method .row .col-xl-4.col-lg-4.col-md-6.col-sm-12:last-child {
    padding-left: 8%;
}

.mb-method .row .col-xl-4.col-lg-4.col-md-6.col-sm-12:nth-child(2) {
    padding: 0px 5%;
    border-left: 1px solid #E1E1E1;
    border-right: 1px solid #E1E1E1;
}

/* inner page */
.inner-page-header h3 {
    font-size: 66px;
    font-weight: 700;
    line-height: 79.21px;
    color: var(--secondary-dark);
}

.inner-page-header .hero-banner-cntn {
    max-width: 800px;
}

.career-training {
    background-color: var(--primary-dark);
    padding: 80px 0px;
    color: var(--white);
}

.career-training .main-flex-box {
    gap: 50px;
}

.career-traing-icon {
    display: flex;
    align-items: center;
    gap: 20px;
}

.career-traing-icon span {
    border-radius: 50%;
    display: inline-flex;
    overflow: hidden;
    border: 2px solid var(--white);
}

.career-training h4 {
    font-size: 37px;
    font-weight: 200;
    line-height: 41px;
    text-transform: uppercase;
}

.overview-process {
    background: url('../images/workspace-development/dark-water-bg.png')no-repeat;
    background-position: center;
    background-size: cover;
}
.overview-process .global-header p {
    text-align: left;
}
.overview-process .global-header {
    max-width: 770px;
    text-align: left;
    color: #fff;
    margin-bottom: 70px;
}

.overview-process .global-header h2 span {
    color: var(--primary-dark);
    display: block;
}

.overview-process .overview-item {
    background: #fff url('../images/workspace-development/overview-bg.png');
    border-radius: 40px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: baseline;
    justify-content: center;
    position: relative;
}

.overview-process .overview-item a {
    position: absolute;
    right: 20px;
    top: 20px;
}

.overview-item h3 {
    font-size: 41px;
    font-weight: 700;
    line-height: 40px;
    margin-top: 25px;
    max-width: 220px;
    text-transform: uppercase;
}

.overview-process .overview-item p {
    font-size: 22px;
    font-weight: 400;
    line-height: 36px;
}

img.overview-rightSide-bg {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0%, -50%);
    z-index: 0;
    max-width: 55%;
}

.overview-process .container {
    position: relative;
    z-index: 1;
}

.benefit-join-feature {
    display: flex;
    margin-top: 60px;
}

.benefit-join-feature .benefit-feature-item {
    max-width: 20%;
    padding-right: 15px;
}

.benefit-join-feature .benefit-feature-item h4 {
    font-size: 30px;
    font-weight: 600;
    line-height: 35px;
    margin-top: 30px;
    text-transform: uppercase;
}

.benefit-join {
    background: url('../images/workspace-development/light-water-bg.png')no-repeat;
    background-position: center;
    background-size: cover;
}

.student-say {
    background-color: var(--secondary-dark);
}

.student-say .owl-carousel .owl-item img {
    width: auto;
    max-width: auto;
}

.student-pro {
    display: flex;
    align-items: center;
    gap: 10px;
}

.student-say h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 99.92px;
    font-weight: 800;
    line-height: 81.93px;
}

.student-pro h5 {
    font-size: 36px;
    font-weight: 700;
    line-height: 81.93px;
    text-transform: uppercase;
}

.student-say p {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

.student-pro span {
    height: 105px;
    width: 105px;
    overflow: hidden;
    border-radius: 50%;
}

.student-say-item {
    background: #A1C15C;
    padding: 30px;
    border-radius: 35px;
    height: 600px;
    display: flex;
    flex-direction: column;
    border: 1px solid #8FAE4D;
}

.carousel-quote {
    text-align: right;
    display: flex;
    justify-content: end;
    margin-top: auto;
}

.about-music-breed p {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

.career-pathway {
    background-color: var(--primary-dark);
    color: var(--white);
    position: relative;
}
.grey-bottom-curve-shape{
    position: absolute;
    right:50px;
    bottom:28%;
    max-width:150px;
}
.career-pathway h2 {
    font-size: 100px;
    font-weight: 800;
    line-height: 82px;
}
.career-pathway .main-flex-box {
    flex-wrap: wrap;
}
.course-offer {
    width: 100%;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.career-pathway .thumbnail-box img {
    max-width: 90%;
}

.course-offer ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.career-pathway .cntn-box-listed li {
    padding: 10px 0px 10px 30px;
    font-size: 24px;
    font-weight: 400;
    line-height: 24px;
    position: relative;
}

.career-pathway .cntn-box-listed li::after {
    position: absolute;
    left: 0px;
    top: 18px;
    content: '';
    height: 5px;
    width: 18px;
    background-color: var(--white);
    border-radius: 50%;
}

.course-offer ul li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border: 1px solid var(--white);
    color: var(--white);
    border-radius: 40px;
}

.course-offer h4 {
    font-size: 66px;
    font-weight: 700;
    line-height: 82px;
    display: flex;
    gap: 20px;
    align-items: center;
}
.course-offer h4 span {
    display: inline-block;
    width: 80px;
    height: 2px;
    background: #fff;
}

.career-pathway .cntn-box-listed {
    display: flex;
    justify-content: space-between;
    margin: 30px 0px;
    gap: 30px;
}

.emailaddress-sign-up {
    display: flex;
    margin-top: 20px;
    position: relative;
}

.emailaddress-sign-up button {
    position: absolute;
    right: 0;
    height: 100%;
    border: none;
    padding: 10px 30px;
    background: #1F53F7;
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    border-radius: 40px;
}

.emailaddress-sign-up .form-control {
    margin: 0px;
    padding-right: 140px;
}

a.globalBtnLight.orange-btn {
    background: #f36d44;
    color: var(--light-black-500);
}

/* .content-thumb-box .default-header-box p {
    font-size: 18px;
    font-weight: 400;
    line-height: 21px;
} */

.month-tuition ul.month-tuition-eligibility {
    margin-top: 20px;
}

.month-tuition ul.month-tuition-eligibility li {
    padding: 10px 0px 10px 30px;
    font-size: 24px;
    font-weight: 400;
    line-height: 24px;
    position: relative;
}

.month-tuition ul.month-tuition-eligibility li::after {
    position: absolute;
    left: 0px;
    top: 18px;
    content: '';
    height: 5px;
    width: 18px;
    background-color: var(--primary-dark);
    border-radius: 50%;
}

.month-tuition {
    background: url('../images/workspace-development/light-water-bg.png')no-repeat;
    background-size: cover;
    background-position: center;
}

.six-learning-process h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--light-black-500);
}

.six-learning-process h2 span {
    display: block;
}

.learning-process-item {
    padding: 0px 20px 30px 20px;
    border-radius: 35px;
    min-height: 308px;
}

.bg-orange-shape {
    background: url('../images/workspace-development/orange-shape.png')no-repeat;
    background-position: center;
    background-size: cover;
}

.bg-green-shape {
    background: url('../images/workspace-development/green-shape.png')no-repeat;
    background-position: center;
    background-size: cover;
}

.learning-process-item h4 {
    font-size: 48px;
    font-weight: 700;
    line-height: 48px;
    text-align: left;
    margin-top: 15px;
    margin-bottom: 0px;
}

.learning-process-item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 20px;
    width: 145px;
    height: 145px;
    border-radius: 50%;
    margin-top: -16px;
}

.learning-process-item p {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0px;
    margin-top: 10px;
}

.enrollment-process {
    background: url('../images/workspace-development/dark-water-bg.png')no-repeat;
    background-position: center;
    background-size: cover;
    color: var(--white);
}

.enrollment-process h2 {
    font-size: 100px;
    font-weight: 800;
    line-height: 82px;
    text-align: center;
    margin-bottom: 60px;
}

.six-learning-process h2 {
    margin-bottom: 80px;
    font-size: 99.92px;
    font-weight: 800;
    line-height: 81.93px;
}
.enrollment-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.enrollment-items .enrollment-item {
    width: 23%;
    padding-right: 30px;
}

.enrollment-items .enrollment-item h4 {
    font-size: 24px;
    font-weight: 800;
    line-height: 24px;
    text-align: left;
    margin-top: 20px;
}

.enrollment-items .enrollment-item p {
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    margin-bottom: 0px;
    position: relative;
    padding-bottom: 30px;
}
.enrollment-items .enrollment-item p::after{
    content: '';
    width: 72px;
    background-color: var(--light-blue-primary);
    height: 2px;
    position: absolute;
    left:0px;
    bottom:0px;
}

.enrollment-items {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.enrollment-icon span:nth-child(even){
    border-color: var(--primary-dark);
}
.enrollment-icon span:nth-child(odd){
    border-color: var(--secondary-dark);
}
.enrollment-icon span{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 146px;
    width: 146px;
    border:8px solid transparent;
    border-radius: 35px;
    transform: rotate(45deg);
    background-color: var(--white);
    position: relative;
    z-index: 9;
}
.enrollment-icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin: 40px 0px;
    position: relative;
}
.enrollment-icon::after{
    content: '';
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height:5px;
    border-top: 1px dashed var(--white);
    border-bottom: 1px dashed var(--white);
    width: 100%;
}
.enrollment-items span.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color:var(--light-black-300);
}

.enrollment-items span.process-number.green-process{
    background-color: var(--secondary-dark);
}
.enrollment-items span.process-number.orange-process{
    background-color: var(--primary-dark);
}
.enrollment-icon span img {
    transform: rotate(-45deg);
}
.faq{
    background-color: var(--secondary-dark);
}
.accordion-item h2 {
    line-height: normal;
    color: var(--light-black-500);
}
.faq button.accordion-button {
    font-size: 30px;
    font-weight: 500;
    line-height: 30px;
    background-color: #a8ce5b;
    font-family: "Roboto", sans-serif;
    display: flex;
    align-items: start;
    gap: 20px;
}
.faq .accordion-body{
    background-color:#a8ce5b;
    padding-top: 0px;
}
.faq h2.top-header{
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    color:var(--light-black-500);
    font-size: 99.92px;
    font-weight: 800;
    line-height: 81.93px;
}
.faq .accordion-item {
    margin: 20px 0px;
    border: none;
    border-radius: 50px;
    overflow: hidden;
    padding: 0px 20px;
    background: #a8ce5b;
}
.accordion-button:focus {
    z-index: 3;
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}
.accordion-button:not(.collapsed) {
    color: var(--light-black-500);
    box-shadow: none;
}

.faq .accordion-body p {
    margin: 10px 0px;
    font-size: 18px;
    line-height: 30px;
}
.accordion-button::after{
    background-image: url('../images/workspace-development/right-black.png');
    width: 40px;
    height: 40px;
    background-size: contain;
}
.accordion-button:not(.collapsed)::after {
    background-image: url('../images/workspace-development/right-black.png');
    width: 40px;
    height: 40px;
    background-size: contain;
}
.six-learn-top-right-shape{
    position: absolute;
    max-width: 150px;
    right: 40px;
}
.enrollment-proce-top-left{
    max-width: 150px;
    left: 40px;
    position: absolute;
}
.month-tution-bottom-right{
    max-width: 150px;
    position: absolute;
    right: 50px;
    bottom: 40px;
}
img.overview-process-bottom-right {
    position: absolute;
    right: 40px;
    bottom: 40px;
    max-width: 150px;
}

.careers-inner-page{
    background: url('../images/careers/hero-banner.png')no-repeat;
    background-size: cover;
    background-position: center;
}
.career-page-groth-music {
    text-align: left;
}
.inner-page-header .hero-banner-main {
    min-height: 500px;
}
.career-technology-space .global-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 9;
}
.career-technology-space .global-header p{
    margin: auto;
}
.career-technology-space .thumbnail-box {
    align-items: flex-end;
    padding-bottom: 80px;
}
.music-lesson-inner{
    background-color: var(--secondary-light);
}
.comunity-donors h3 {
    text-transform: uppercase;
}
.music-lesson-inner h2{
    color: var(--light-black-500);
}
.career-austic-learner h2.top-header{
    text-align: center;
    margin-bottom: 60px;
    color: var(--light-black-500);
    text-transform: uppercase;
}
.career-austic-learner{
    background: url('../images/grey-bg.png')no-repeat;
    background-position: center;
    background-size: cover;
}
.locations-career-sec{
    background: none;
}
.career-technology-space .cntn-box h2 {
    font-size: 66px;
    line-height: 74px;
}
.career-technology-space .global-header h2, .music-lesson-inner .cntn-box h2, .career-austic-learner h2.top-header, .music-lesson-inner .global-header h2, .pick-your-role h2, .available-oppportunity .default-header-box h2 {
    font-size: 100px;
    font-weight: 800;
    line-height: 120px;
    text-transform: uppercase;
}
.thing-official .cntn-box h2{
    font-size: 100px;
    font-weight: 800;
    line-height: 81px;
    text-transform: uppercase;
}
.music-lesson-inner .global-header h2{
    text-align: center;
}
.music-lesson-inner .global-header{
    margin-bottom: 60px;
}
.promoting-side-inner p{
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}
.promoting-side-inner h6{
    font-size: 30px;
    font-weight: 400;
    line-height: 46px;
    text-align: left;
}
.pick-your-role h2{
    text-align: center;
}
.pick-your-role .event-item{
    background-color: var(--secondary-light);
    height:100%;
}
.content-thumb-box.pick-your-role p {
    font-size: 16px;
    line-height: 24px;
}
.pick-your-role a.globalBtnDark {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top: 15px;
}
.available-oppportunity{
    background-color: var(--primary-dark);
    color: var(--white);
}
.available-oppportunity .default-header-box h2{
    color: var(--white);
}
.available-oppportunity .thumbnail-box img {
    max-width: 90%;
    margin-left: auto;
    float: right;
}
.thing-offcial-step-main{
    background-color: var(--light-black-300);
    border-radius: 40px;
    color: var(--white);
    padding: 30px;
    height: 100%;
}
.thing-offcial-step-main p {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}
.thing-official .main-flex-box {
    margin-bottom: 60px;
}
.thing-offcial-step-main .thing-offcial-step {
    display: flex;
    align-items: center;
    gap: 20px;
}
.thing-offcial-step-main .thing-offcial-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    padding: 23px;
    width: 105px;
    height: 105px;
}
.thing-official .thumbnail-box img {
    width: 90%;
}
.thing-official .cntn-box h3 {
    font-size: 66px;
    font-weight: 700;
    line-height: 79.21px;
    text-transform: uppercase;
}
.official-steo-cntn h4 {
    text-transform: uppercase;
    font-size: 48px;
    font-weight: 700;
    line-height: 57.61px;
}
.official-steo-cntn h6{
    font-size: 30px;
    font-weight: 400;
    line-height: 36.01px;
    text-transform: uppercase;
}

.corporate-partnership{
    background:url('../images/corporate-partnership/hero-banner.png')no-repeat;
    background-position: center;
    background-size: cover;
}
.sposership-technology-space {
    background:var(--primary-dark);
    color: var(--white);
}
.sposership-technology-space h2 {
    color: var(--white);
    max-width: calc(100% - 150px);
}
.sposership-technology-space .corporate-part-tech-pera-dwn {
    padding-top: 50px;
}
img.upper-top-right-sponsership {
    position: absolute;
    right: 30px;
    max-width: 150px;
}
.grey-down-curve-sponsormusic{
    position: absolute;
    left: 30px;
    max-width: 150px;
    bottom: 22%;
}
.sposership-technology-space .thumbnail-box {
    height: 70%;
    padding-top: 80px;
}
.sposership-technology-space .thumbnail-box img {
    height: 100%;
    object-fit: contain;
}

.sposership-technology-space p a{
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    text-decoration: underline;
}
.mentor-community h2{
    font-size: 66px;
    font-weight: 800;
    line-height: 74px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.mentor-community {
    background: url('../images/arts-hubs.png')no-repeat;
    background-position: center;
    background-size: cover;
    color: var(--white);
}
.mentor-community .learning-process-item {
    color:var(--light-black-500);
}
.learning-process-item {
    height: 100%;
}
.corporate-form{
    position: relative;
    background: url('../images/grey-bg.png')no-repeat;
    background-position: center;
    background-size: cover;
}
.corporate-form form{
    background-color:var(--white);
}
.corporate-form .thumbnail-box {
    position: absolute;
    left: 0px;
    bottom: 9%;
    max-width: 44%;
}

.corporate-form .cntn-box {
    max-width: 627px;
    background: var(--white);
    width:100%;
    margin-left: auto;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 5px 4px 11px 0px #e9e9e9;
}

.corporate-form .nav-tabs {
    justify-content: space-between;
    border: none;
    gap:15px;
    background-color: #fff !important;
}
.corporate-form .nav-tabs li.nav-item {
    width:48%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
}
.corporate-form p.mini-pera {
    font-size: 20px;
    font-weight: 400;
    line-height: 23.44px;
    text-align: center;
    margin-top: 0px;
    padding-top: 25px;
}
.form-prize {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.corporate-form .form-prize button {
    width: 30%;
    padding: 13px 7px;
    border-radius: 40px;
    border: 1px solid;
    background: #000;
    color: #fff;
}
.corporate-form select {
    height: 66px;
    font-family: Roboto;
    font-size: 26px;
    font-weight: 400;
    line-height: 42.19px;
    text-align: left;
    border: 1px solid #C2C2C2;
    border-radius: 50px;
    margin: 19px 0px;
    padding: 5px 26px;
}
.corporate-form p.form-bio {
    font-size: 16.87px;
    font-weight: 400;
    line-height: 19.77px;
    text-align: left;
    color: #1F53F7;
    background: #e2e9ff;
    padding: 20px;
    border-radius: 10px;
}
p.add-comment a {
    font-size: 18px;
    font-weight: 400;
    line-height: 21.09px;
    text-decoration-line: underline;
}
.corporate-form .nav-tabs li.nav-item button.nav-link.active {
    border: none;
    background-color: #B4E25A;
}
.corporate-form form button.btn.btn-primary {
    width: 100%;
    padding: 17px 40px;
    font-size: 18px;
    font-weight: 400;
    line-height: 21.09px;
    text-align: center;
    border-radius: 50px;
    text-transform: uppercase;
}
.corporate-form .nav-tabs li.nav-item button{
    width: 100%;
    background-color: #DEE4E4;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 400;
    line-height: 21.09px;
    color: var(--light-black-500);
    min-height: 65px;
}
.corporate-form .cntn-box-left {
    width: 50%;
}
.corporate-form .cntn-box-left p{
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    padding-right: 20px;
}
.join-community input {
    background: #DEE4E4;
}
.comunity-donors .default-header-box h6 {
    font-size: 30px;
    font-weight: 400;
    line-height: 41px;
    text-align: left;
}
.comunity-donors .global-header h3 {
    font-size: 66.06px;
    font-weight: 800;
    line-height: 79.28px;
    text-align: center;
    color: var(--light-black-500);
}

.valued-client-block-border {
    border: 1px solid #000;
    border-radius: 40px;
    padding: 30px;
}
.valued-client-block-border p{
    margin: 0px;
}
.valued-client-block-border h5 {
    font-size: 30px;
    font-weight: 400;
    line-height: 35.16px;
    text-align: left;
    position: relative;
    bottom: -47px;
    z-index: 9;
    background: #b4e25a;
    display: inline-flex;
    padding: 0px 20px;
}

.leadership-card h6{
    font-size: 50px;
    font-weight: 400;
    line-height: 58.59px;
    text-align: left;
    margin-top: 20px;
    text-decoration: underline;
}
.leadership-card p{
    font-size: 30px;
    font-weight: 400;
    line-height: 46px;
    text-align: left;
    margin-top: 15px;
    color: var(--light-black-500);
}
.leadership-card .leadership-thumb {
    border: 8px solid;
    overflow: hidden;
    border-radius: 50px;
}
.leadership-card .leadership-thumb img{
    width: 100%;
    object-fit: contain;
}  
.leadership-card.green-border-card .leadership-thumb{
    border-color: var(--secondary-dark);
}
.leadership-card.orange-border-card .leadership-thumb{
    border-color: var(--primary-dark);
}
.executive-leadership{
    background:url('../images/corporate-partnership/finger-watermark.png')no-repeat;
    background-position: center;
    background-size: cover;
}
.executive-leadership h2 {
    font-size: 100px;
    font-weight: 800;
    line-height: 81.93px;
}
.programs-department {
    background:url('../images/dark-bg.png')no-repeat;
    background-position: center;
    background-size: cover;
    color: var(--white);
}
.programs-department h2{
    margin-bottom:40px;
    text-transform: uppercase;
}
.programs-department .leadership-card p{
    color: var(--white);
}
.executive-leadership h2 {
    text-transform: uppercase;
}
.leadership-card h5 {
    font-size: 100px;
    font-weight: 800;
    line-height: 81px;
    text-align: left;
    margin-bottom: 40px;
}
.light-partnership-card-main .leadership-card h5{
    color: var(--light-black-500);
}
.technology-partnership-card{
    background-color: var(--secondary-light);
}
.technology-partnership-card h2 {
    margin-bottom: 40px;
    color: var(--light-black-500);
    text-transform: uppercase;
}
.board-of-director{
    background:url('../images/corporate-partnership/light-leg-watermark.png')no-repeat;
    background-position: center;
    background-size: cover;
}
.board-of-director h2{
    text-transform: uppercase;
    margin-bottom: 40px;
    color: var(--light-black-500);
}
.board-of-director .leadership-card {
    margin-bottom: 35px;
}

.grey-down-curve-donrs {
    position: absolute;
    left: 30px;
    max-width: 130px;
    top: 25%;
}

/* partner logo */
.partner-logo {
    padding:60px 0px;
}
.partner-logo img {
    max-height: 90px;
    max-width: 120px;
    object-fit: contain;
}
.partner-logo-item {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
}


/* flip box */
.box-panel {
    padding:85px 0;
  }
  
  .widget-container {
    transition: all 0.3s ease;
  }
  .widget-container .common-flip-style {
    width: 100%;
    height: 250px;
    cursor: pointer;
  }
  .widget-container .common-flip-style .common-box-style {
    /* transform-style: preserve-3d; */
    backface-visibility: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
    border-radius: 40px;
  }
  
  .flip-box {
    position: relative;
    perspective: 1000px;
    transform-style: preserve-3d;
  }
  .flip-box .box-front {
    transform: none;
    z-index: 1;
    background-image: url("../images/workspace-development/overview-bg.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .flip-box .box-back {
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    transform: rotateX(0) rotateY(-180deg);
    background: #fff;
  }
  .flip-box:hover .box-front {
    transform: rotateX(0) rotateY(180deg);
  }
  .flip-box:hover .box-back {
    transform: none;
  }
  
  .box-content-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    text-align: center;
    transform: translateZ(90px);
  }

  .top-navbar ul.dropdown-menu li {
    margin-left: 0px !important;
    margin-right: 0px !important;
    padding-left: 0px;
    padding-right: 0px;
}