html {
    scroll-behavior: smooth;
}

*, ::after, ::before {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none !important;
    color: var(--colorPrimary);
}

.base_margin {
    min-height: 700px;
    margin-top: 85px;
    background-color: white;
}

.toolbar_root {
    position: fixed;
    top: 0;
    z-index: 9990;
    width: 100%;
    min-height: 60px;
    background: #1d1d1d;
    transition: 0.4s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toolbar_root.full {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
    box-shadow: none;
}

.toolbar_root .main_content {
    border-bottom: 2px solid transparent;
}

.toolbar_root #main_logo {
    width: 250px;
    height: 68px;
    margin: 8px 16px;
    transition: 0.4s;
    background: url("../images/golden_bells_logo.png") no-repeat center;
    background-size: contain;
}

.menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    flex: 1 1 auto;
    padding: 0 14px;
}

.menu_item {
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
    background: none;
    border: none;
    transition: 0.4s ease;
}

.menu_item span {
    color: white;
    padding: 8px 16px;
    font-size: 16px;
    white-space: nowrap;
    text-transform: capitalize;
    font-weight: 500;
    border-radius: 6px;
    margin: 0 2px;
    font-family: 'Afacad', sans-serif;
    transition: 0.4s ease;
}

.menu_item:hover {
    /*background-color: var(--colorAccent);*/
}

.menu_item:hover > span {
    color: white;
    background-color: var(--colorAccent);
}

.menu_item:hover span.highlight {
    background-color: rgba(0, 0, 0, 0.1);
}


.toolbar_dropdown_container {
    position: relative;
}

.toolbar_dropdown_content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    /*border-bottom-left-radius: 6px;*/
    /*border-bottom-right-radius: 6px;*/
    display: none !important;
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
    max-height: 500px;
    background-size: 400% 400%;
    overflow-y: auto;

}

.toolbar_dropdown_container:hover .toolbar_dropdown_content {
    display: flex !important;
}

.toolbar_dropdown_content .menu_item span {
    min-height: 40px;
    padding: 8px;
    color: #212121;
    border-radius: 0;
    transition: 0.4s ease;
}

.toolbar_dropdown_content .menu_item:hover span {
    color: white;
}

.drawer_item {
    display: flex;
    background: transparent;
    transition: 0.4s ease;
    cursor: pointer;
}

.drawer_item span {
    padding: 10px 10px 10px 30px;
    font-size: 16px;
    transition: 0.4s;
    color: white;
    font-family: 'Afacad', sans-serif;
}

.drawer_item:hover {
    background: var(--colorAccent)
}

.main_content {
    width: 100%;
    padding: 0 12px;
    max-width: 1400px;
}

.home-sideNav-virtual-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.3);
}

.home-sideNav {
    position: fixed;
    top: 0;
    width: 250px;
    max-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    z-index: 9999;
    left: -100%;
    overflow: hidden;
    box-shadow: -2px 0 4px rgba(0, 0, 0, 0.1);
    transition: 0.4s;
}

.side_navigation {
    position: relative;
    background-color: #1d1d1d;
    z-index: 1;
    width: 100%;
    overflow-y: scroll;
}

.side_navigation::-webkit-scrollbar {
    display: none;
}

.side_navigation_content_wrapper {
    overflow-y: auto;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 40px 20px 20px;
}

.side_navigation_content {
    overflow-y: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.header_container {
    position: relative;
    width: 100%;
    height: calc(100vw * 0.4);
}

.header_image {
    width: 100%;
    height: calc(100vw * 0.4);
    object-fit: cover;
    padding: 6px;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.slide img {
    width: 100%;
    height: calc(100vw * 0.4);
    object-fit: cover;
}

.slide_container {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.slide_track {
    position: relative;
    height: 100%;
    transition: transform 0.4s ease-in;
}

.slide {
    position: relative;
    z-index: 45;
    width: 100%;
    height: inherit;
    overflow: hidden;
}


.slide_container:hover .slide_nav_button {
    display: block;
    transition: 0.4s ease;
}

.slide_nav_button {
    display: none;
    position: absolute;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    z-index: 52;
    font-size: 18px;
    padding: 18px 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    transition: 0.4s ease;
}

.slide_nav_button:hover {
    background-color: var(--colorAccent);
}

.slide_nav_button#left_button {
    left: 0;
}

.slide_nav_button#right_button {
    right: 0;
}

.accent_button {
    background-color: var(--colorAccent2);
    border-radius: 8px;
    color: #212121;
    font-weight: normal;
    padding: 10px 24px;
    border: none;
    font-size: 20px;
    text-decoration: none;
    text-align: center;
    outline: none;
    text-transform: uppercase;
    font-family: "Afacad", sans-serif;
    cursor: pointer;
    transition: 0.4s;
}

.accent_button:hover {
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.accent_button.white {
    background-color: white;
    color: #212121;
}

.accent_button.light {
    background-color: var(--colorAccent2);
    color: var(--colorAccent);
}

.bordered_button {
    background: transparent;
    color: #212121;
    font-weight: 500;
    padding: 6px 16px;
    border: 2px solid #212121;
    font-size: 14px;
    text-decoration: none;
    border-radius: 16px;
    text-align: center;
    outline: none;
    text-transform: capitalize;
    font-family: "Afacad", sans-serif;
    cursor: pointer;
    transition: 0.4s;
}

.bordered_button:hover {
    background: var(--colorAccent);
    border: 2px solid var(--colorAccent);
    color: white;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
    transition: 0.4s;
}

.bordered_button.white {
    border: 2px solid white;
    color: white;
}

.page_heading {
    color: #212121;
    font-size: 36px;
    padding: 8px 0;
    font-weight: 500;
    margin: 0 8px;
    line-height: 1.3;
    text-align: center;
    align-self: center;
    font-family: "Afacad", sans-serif;
    position: relative;
    border-bottom: 3px solid var(--colorAccent2);
}

.page_sub_heading {
    color: #212121;
    margin: 0 8px;
    line-height: 1;
    font-size: 20px;
    font-family: "Afacad", sans-serif;
}

.section_wrapper {
    padding: 40px 0;
}

.section_wrapper.dark {
    background: rgba(0, 0, 0, 0.7);
}

.form_wrapper {
    width: calc(100% - 20px);
    background: #f2f2f2;
    padding: 20px;
    max-width: 600px;
}

.form_wrapper .title {
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 26px;
    text-align: center
}

.form_wrapper p {
    margin: 0;
    padding: 0;
}

.form_wrapper label {
    font-size: 14px;
    padding: 8px 12px 0;
    font-weight: 500;
    font-family: 'Afacad', sans-serif;
}

.form_wrapper input, .form_wrapper select, .input_field {
    padding: 8px 12px;
    width: calc(100% - 12px);
    margin: 6px;
    font-size: 16px;
    background: white;
    color: #212121;
    font-family: "Afacad", sans-serif;
    outline: none;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.69);
    transition: all 0.4s;
}

.form_wrapper textarea {
    min-height: 100px;
    resize: vertical;
}

.form_wrapper input:focus, .form_wrapper select:focus, .form_wrapper textarea:focus, .input_field:focus {
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
}

.multi-select-menuitem {
    padding: 0.6em 1em 0.6em 38px !important;
}

.contact_details_container {
    width: 90%;
    height: auto;
    max-width: 500px;
    color: white;
    padding: 26px;
}

.contact_details_container p {
    margin-left: 20px;
}

footer {
    background: var(--colorAccent2);
    border-top: 2px solid #808080;
}

.footer_wrapper {
    padding: 0;
}

.footer_container {
    width: calc((100%) - 16px);
    max-width: 800px;
    padding: 40px 20px;
}

.footer_social_link {
    font-weight: 500;
    font-size: 16px;
    padding-top: 5px;
    width: 32px;
    height: 32px;
    text-align: center;
    color: #979797;
    margin: 4px;
    border-radius: 50%;
    transition: 0.4s ease;
    border: 1px solid #979797;
}

.footer_social_link:hover {
    background-color: var(--colorAccent);
    border: 1px solid var(--colorAccent);
    color: white;
}

.footer_heading {
    color: #212121;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 8px 8px 12px;
    font-size: 20px;
    font-family: "Afacad", sans-serif;
}

.footer_link {
    color: #212121;
    font-size: 18px;
    font-family: "Afacad", sans-serif;
    margin: 8px;
    flex: 1 1 auto;
    transition: 0.4s ease;
}

.footer_link:hover {
    color: var(--colorAccent);
}

.footer_icon {
    font-size: 18px;
    margin-right: 16px;
}

.footer_link i {
    color: var(--colorAccent);
    align-self: center;
}

.footer_input_field {
    background-color: #fde8e8;
    padding: 8px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    margin-bottom: 18px;
    border: 1px solid #dad9d9;
    outline: none;
    font-family: "Afacad", sans-serif;
    font-size: 12px;
}

.footer_accent_button {
    background-color: var(--colorAccent);
    color: white;
    font-weight: 500;
    padding: 8px 16px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border: none;
    font-size: 12px;
    letter-spacing: 1px;
    text-decoration: none;
    text-align: center;
    outline: none;
    font-family: 'Afacad', sans-serif;
    cursor: pointer;
    transition: 0.4s;
    align-self: start;
}

.footer_accent_button:hover {
    background-color: var(--colorAccent);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
    transition: 0.4s;
}

#dialog-background {
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    display: none;
}

.dialog-container {
    display: none;
    position: fixed;
    width: 90%;
    max-width: 500px;
    top: 50%;
    left: 50%;
    padding: 12px;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}

.dialog-container .close-icon {
    position: absolute;
    width: 24px;
    height: 24px;
    text-align: center;
    top: 24px;
    right: 16px;
    border-radius: 50%;
    font-size: 16px;
    padding: 4px;
    color: var(--colorAccent);
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}


.contact_header_container {
    position: relative;
    width: 100%;
    background: #212121;
}

.contact_header_container .content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    max-width: 750px;
    padding: 16px;
}

.contact_header_container img {
    width: 100%;
    object-fit: cover;
    filter: opacity(0.5);
}

.contact_header_container h2 {
    font-size: 36px;
    margin: 4px;
}

.contact_header_container p {
    margin: 4px;
    line-height: 1.5;
    font-size: 18px;
}

.contact_us_header_container:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.contact_us_header_container .page_heading {
    z-index: 1;
    font-weight: bold;
    font-size: 42px;
}

.contact_detail_container {

}

.contact_detail_container a {
    padding: 8px;
}

.contact_detail_container a > .row_alignment {
    background: #f2f2f2;
    flex: 1 1 auto;
    padding: 16px;
    border-radius: 12px;
}

.contact_detail_container span {
    font-size: 16px;
    align-self: center;
}

.contact_detail_container img {
    width: 80px;
    align-self: center;
    height: 80px;
    margin-right: 16px;
}


.about_content_block {
    margin: 16px;
    height: 350px;
    justify-content: center;
    cursor: pointer;
    background: #d1d3d4;
    transition: 0.4s ease;
    overflow: hidden;
    border: 2px solid #d1d3d4;
}


.about_content_block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s ease;
    transform: scale(1);
}

.about_content_block span {
    text-align: center;
    padding: 8px 16px;
    font-weight: bold;
    font-size: 28px;
}

.about_content_block p {
    text-align: center;
    line-height: 1.5;
    font-size: 18px;
    margin: 0;
    padding: 8px 16px;
}


.about_content_block.active {
    background: var(--colorAccent2);
    border: 2px solid var(--colorAccent2);
}

.about_content_block:hover img {
    transform: scale(1.1);
}

.about_content_block:hover {
    background: white;
    border: 2px solid var(--colorAccent2);
}

.intelligence_item_wrapper {
    width: calc((100% / 4) - 16px);
    position: relative;
    /*height: 450px;*/
    /*overflow: hidden;*/
    margin: 8px;
    cursor: pointer;
}

.about_us_section .intelligence_item_wrapper {
    width: calc((100% / 3) - 16px);
    height: 450px;
    overflow: hidden;
}

.intelligence_item_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s ease;
    transform: scale(1);
}

.about_us_section .intelligence_item_wrapper:hover img {
    transform: scale(1.1);
}

.intelligence_item_wrapper .content {
    position: absolute;
    padding: 16px 16px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    transition: 0.5s ease;
}

.intelligence_item_wrapper:hover .content {
    top: 0;
    padding: 16px;
    background: rgba(0, 0, 0, 0.7);
    justify-items: center;
    justify-content: center;
}

.intelligence_item_wrapper span {
    color: white;
    line-height: 1;
    font-size: 16px;
}

.intelligence_item_wrapper span b {
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
}


.about_us_section .intelligence_item_wrapper span {
    text-align: center;
}

.intelligence_item_wrapper:hover p {
    /*display: block;*/
    height: auto;
    opacity: 1;
    transition: 0.5s ease;
}

.intelligence_item_wrapper p {
    margin: 0;
    padding-top: 8px;
    font-size: 18px;
    text-align: center;
    color: white;
    opacity: 0;
    height: 0;
    display: block;
}

.management_item_wrapper {
    margin: 8px;
    flex: 1 1 auto;
}

.management_item_wrapper img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.management_item_wrapper .content {
    margin: 0 12px 12px;
    padding: 16px;
    flex: 1 1 auto;
    border-bottom: 2px solid var(--colorAccent2);
    border-left: 2px solid var(--colorAccent2);
    border-right: 2px solid var(--colorAccent2);
}

.management_item_wrapper span {
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    color: var(--colorAccent2);
}

.management_item_wrapper p {
    text-align: center;
    font-size: 16px;
    line-height: 1.3;
}

.feature_item_wrapper {
    padding: 16px;
}

.feature_item_wrapper img {
    width: 100px !important;
    height: 100px !important;
    object-fit: cover;
    align-self: center;
    border-radius: 50%;
}

.feature_item_wrapper span {
    color: #212121;
    font-size: 18px;
    text-align: center;
    margin-top: 8px;
}


.testimonial_video_wrapper {
    margin: 12px;
    background: #040404;
    border-radius: 4px;
    overflow: hidden;
}

.testimonial_video_wrapper iframe {
    width: 100%;
    height: 500px;
    border: none;
}

.podcast_video_wrapper {
    overflow: hidden;
    padding: 8px 8px;
}

.podcast_video_wrapper iframe {
    width: 100%;
    background: #040404;
    border: none;
    height: 350px !important;
}

.podcast_video_wrapper span {
    text-align: center;
    font-size: 16px;
    padding: 8px;
}


.explore_campus_section {
    background-image: url("../images/parallax_gb.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-position: left center;
    background-repeat: no-repeat;
}


.explore_campus_section a {
    font-size: 20px;
    margin: 8px;
}

.franchise_feature_item_wrapper {
    margin: 8px;
    width: calc(50% - 16px);
    border: 1px solid var(--colorAccent2);
    padding: 24px;
    justify-content: center;
    cursor: pointer;
    transition: 0.4s ease;
}

.franchise_feature_item_wrapper i {
    font-size: 54px;
    color: var(--colorAccent2);
    transition: 0.4s ease;
}

.franchise_feature_item_wrapper span {
    font-size: 22px;
    margin-top: 12px;
    transition: 0.4s ease;
}


.franchise_feature_item_wrapper:hover {
    background: var(--colorAccent2);
}

.franchise_feature_item_wrapper:hover i, .franchise_feature_item_wrapper:hover span {
    color: #212121;
}

.branch_contact_section {
    background: #fff8eb;
}

.branch_contact_section .row_alignment {
    margin-top: 24px;
}

.branch_contact_section i {
    align-self: center;
    margin-right: 16px;
    color: var(--colorAccent2);
    font-size: 20px;
}

.branch_contact_section span {
    color: #212121;
    line-height: 1.3;
    font-size: 18px;
}

.branch_contact_section iframe {
    border: none;
    width: 100%;
    height: 450px;
}

.branch_item_wrapper {
    border: 1px solid var(--colorAccent2);
    padding: 16px;
    border-radius: 0;
    background: #fffcf5;
    transform: translateY(0);
    transition: 0.4s ease;
    cursor: pointer;
    box-shadow: 0 0 0 transparent;
}

.branch_item_wrapper:hover {
    transform: translateY(-10px);
    border-radius: 4px;
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.1);
}

.branch_item_wrapper .title {
    font-size: 24px;
    line-height: 1.1;
    font-weight: bold;
}

.branch_item_wrapper .address {
    color: #424242;
    font-size: 16px;
    line-height: 1.3;
    margin: 16px 0;
}

.branch_item_wrapper a {
    font-size: 16px;
    padding: 4px 0;
    color: var(--greenColor);
}


.owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    margin-top: 0 !important;
}

.owl-prev {
    float: left;
}

.owl-next {
    float: right;
}

.owl-prev, .owl-next {
    width: 32px !important;
    height: 32px !important;
    padding: 8px 0 !important;
    text-align: center !important;
    color: #212121 !important;
    background: white !important;
    cursor: pointer !important;
    border-radius: 50% !important;
    overflow: hidden;
    display: block;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2) !important;
}

.owl-prev span, .owl-next span {
    font-size: 40px !important;
    margin-top: -16px;
    display: block;
}

.program_item_wrapper {
    margin: 12px;
}

.program_item_wrapper img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.program_item_wrapper .content {
    position: relative;
    border: 1px solid var(--colorAccent2);
    padding: 16px 32px;
    border-right: 0;
}

.program_item_wrapper .content .title {
    font-size: 32px;
    font-weight: 500;
}

.program_item_wrapper .content .subtitle {
    font-size: 14px;
    color: #4b4b4b;
}

.program_item_wrapper .content p {
    font-size: 16px;
}

.program_item_wrapper .content .count {
    position: absolute;
    top: 24px;
    left: 0;
    color: var(--colorAccent2);
    font-size: 60px;
    background: white;
    font-family: "Londrina Outline", sans-serif;
    transform: translateX(-40%);
}

.awards_logo_wrapper img {
    width: calc(100% / 6);
    padding: 8px;
    margin: 8px 0;
    height: 100px;
    object-fit: contain;
    object-position: center;
}

.award_item_wrapper span {
    width: calc(100% / 5);
    position: relative;
    font-size: 15px;
    margin: 16px 0;
    line-height: 1.5;
    color: #6b6b6b;
    min-height: calc(14px * 3 * 1.5);
    padding: 0 16px 0 32px;
}

.award_item_wrapper span:before {
    content: '';
    position: absolute;
    left: 8px;
    top: 5px;
    width: 20px;
    height: 60px;
    background-image: url("../images/logo/award_side_border.png");
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
}

.question_item_wrapper {
    width: calc(100% - 16px);
    margin: 8px;
    padding: 16px;
    border: 1px solid var(--colorAccent2);
}

.question_item_wrapper .question {
    margin: 0;
}

.question_item_wrapper ul,
.question_item_wrapper ol,
.question_item_wrapper p {
    margin: 2px 0;
    font-size: 16px;
}

.question_item_wrapper .answer {
    font-size: 16px;
}

@media only screen and (max-width: 780px) {

    .award_item_wrapper span {
        width: calc(100%);
    }

    .awards_logo_wrapper img {
        width: calc(100% / 3);
        height: 80px;
    }

    .toolbar_root #main_logo {
        height: 46px;
        width: 160px;
        margin: 0 4px;
        transition: 0.4s;
        flex: 1 1 auto;
        object-fit: contain;
    }

    .page_heading {
        font-size: 26px;
    }

    .section_wrapper {
        padding: 30px 0;
    }


    .page_heading.left_aligned {
        text-align: center;
    }

    .footer_container {
        width: calc(100% - 6px);
    }


    .header_container {
        height: calc(100vw * 1.4);
    }

    .header_image {
        height: calc(100vw * 1.4);
    }

    .slide img {
        height: calc(100vw * 1.4);
    }

    .base_margin {
        margin-top: 60px;
    }

    .contact_page_heading {
        align-self: center;
    }


    .intelligence_item_wrapper, .about_us_section .intelligence_item_wrapper {
        width: calc((100%) - 16px);
    }

    .franchise_feature_item_wrapper {
        padding: 16px;
    }

    .franchise_feature_item_wrapper i {
        font-size: 34px;
    }

    .franchise_feature_item_wrapper span {
        font-size: 18px;
    }

    .program_item_wrapper .content {
        border-right: 1px;
        border-top: 0;
    }

    .program_item_wrapper img {
        min-height: 350px !important;
        height: 350px !important;
    }
}
