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 {
    margin-top: 120px;
    background-color: white;
    min-height: 700px;
}

.toolbar_root {
    position: fixed;
    top: 0;
    z-index: 9990;
    width: 100%;
    min-height: 60px;
    background: white;
    padding: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease all;
}

.primary_toolbar {
    width: 100%;
    background: linear-gradient(to right, #212121, var(--colorAccent), #212121);
    color: white;
}

.primary_toolbar span {
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    padding: 10px 8px;
}

.primary_toolbar b {
    font-weight: 500;
}

.toolbar_root .main_content {
}

.toolbar_root #main_logo {
    width: 300px;
    height: 70px;
    margin: 8px 16px;
    transition: 0.4s;
    background-size: contain;
}

.toolbar_root #main_logo img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    object-position: center;
}

.toolbar_menu_wrapper {
}

.menu_item {
    margin: 2px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    background: transparent;
    border: none;
    transition: 0.4s ease;
}

.menu_item span {
    color: #212121;
    padding: 8px 16px;
    font-size: 16px;
    white-space: nowrap;
    font-weight: 500;
    text-align: center;
    border-radius: 8px;
    background: linear-gradient(45deg, transparent, transparent);
    transition: 0.4s ease;
}

.menu_item:hover > span {
    color: white;
    background: linear-gradient(45deg, var(--colorAccent), #212121);
}

.menu_item.highlight {
    color: white;
    background: var(--colorAccent);
    border-radius: 8px;
}

.menu_item.highlight span {
    color: white;
}

.toolbar_dropdown_container {
}

.toolbar_dropdown_content {
    position: absolute;
    top: calc(100%);
    left: 50%;
    transform: translate(-50%, 0);
    display: none !important;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    transition: 0.4s ease;
    min-width: 150px;
    padding-top: 16px;
    overflow-y: auto;

}

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

.toolbar_dropdown_content .menu_item {
    color: #212121;
    transition: 0.4s ease;
    border: none;
}

.toolbar_dropdown_content .menu_item span {
    border: none;
}

.toolbar_dropdown_content .menu_item:hover {
    background: var(--colorAccent);
    border: none;
    color: white;
}

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

.drawer_item {
    display: flex;
    background: transparent;
    border: none;
    outline: none;
}

.drawer_item span {
    padding: 10px 10px 10px 30px;
    font-size: 16px;
    transition: 0.4s ease;
    color: #212121;
    background: transparent;
    font-family: 'Poppins', sans-serif;
}

.drawer_item:hover {
    background: white;
}

.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: 90%;
    max-width: 500px;
    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: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    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;
}

.accent_button {
    background-color: var(--colorAccent);
    color: white;
    font-weight: 500;
    padding: 8px 16px;
    text-decoration: none;
    text-align: center;
    outline: none;
    cursor: pointer;
    transition: 0.4s;
    border-radius: 24px;
    font-size: 16px;
    text-transform: capitalize;
    border: 1px solid var(--colorAccent);
    transform: translateY(0);
}

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

.accent_button.large {
    padding: 12px 20px;
    border-radius: 36px;
}

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

.bordered_button {
    border-radius: 24px;
    color: white;
    font-weight: 500;
    padding: 12px 24px;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    outline: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    transition: 0.4s;
    background: transparent;
    transform: translateY(0);
    border: 1px solid white;
}

.bordered_button.accent {
    border: 1px solid var(--colorAccent);
    color: var(--colorAccent);
}

.bordered_button:hover {
    background: var(--colorAccent);
    border: 1px solid var(--colorAccent);
    color: #212121;
    /*padding: 16px 24px;*/
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
    transition: 0.4s;
    transform: translateY(-4px);
}

.page_heading {
    position: relative;
    color: var(--colorAccent);
    font-size: 24px;
    padding: 8px;
    font-weight: 500;
    margin: 12px 0;
    align-self: center;
    text-align: center;
}

.page_heading.left {
    text-align: left;
    align-self: flex-start;
}

.page_sub_heading {
    text-align: center;
    max-width: 800px;
    align-self: center;
    margin: 0 8px 8px;
    font-size: 16px;
    line-height: 1.6;
}

.page_sub_heading.left {
    text-align: left;
    align-self: flex-start;
}

.section_wrapper {
    padding: 80px 0;
}

.section_wrapper.dark {
    background: linear-gradient(45deg, var(--colorAccent), #212121);
}

.contact_form {
    box-shadow: rgba(0, 0, 0, 0.08) 0 4px 25px !important;
}

.contact_form .input_field {
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}

.form_wrapper {
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    width: calc(100% - 24px);
    margin: 12px;
    max-width: 600px;
    background: white;
    padding: 16px;
    align-self: center;
    overflow: hidden;
}

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

.form_wrapper label, .input_label {
    font-size: 14px;
    font-weight: 500;
    padding: 4px 8px 4px 16px;
}

.form_wrapper input, .form_wrapper select, .input_field {
    padding: 10px 16px;
    width: calc(100% - 8px);
    margin: 4px;
    font-size: 14px;
    background: transparent;
    color: #212121;
    outline: none;
    border-radius: 24px;
    font-family: "Poppins", sans-serif;
    border: 1px solid #cccccc;
    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);
    border: 1px solid white;
}

footer {
    background: linear-gradient(45deg, var(--colorAccent), #212121);
    padding: 24px 8px 24px;
}

.footer_logo {
    width: 95%;
    object-fit: contain;
    object-position: left;
    min-width: 100px;
    margin: 0 0 12px;
}

.footer_social_link {
    font-weight: 500;
    font-size: 20px;
    padding-top: 6px;
    width: 40px;
    height: 40px;
    text-align: center;
    color: white;
    margin: 4px;
    background: #8755A9;
    border-radius: 50%;
    transition: 0.4s ease;
}

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

.footer_heading {
    color: white;
    font-weight: 500;
    margin-bottom: 20px;
    font-size: 24px;
    padding-bottom: 8px;
    position: relative;
    align-self: flex-start;
}

.footer_heading:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45%;
    height: 2px;
    border-radius: 2px;
    background: white;
}

.footer_link {
    color: white;
    font-size: 16px;
    margin: 8px;
    transition: 0.4s ease;
}

.footer_link:hover {
}

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

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

#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;
}

.marquee_container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee_container:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    z-index: 1;
    height: 100%;
    background: linear-gradient(to right, white, transparent);
}

.marquee_container:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    z-index: 1;
    height: 100%;
    background: linear-gradient(to left, white, transparent);
}

.marquee_content_wrapper {

}

.marquee_content {
    flex: 0 0 auto;
}

.contact_item_wrapper {
    width: 90%;
    margin: 8px;
    padding: 16px;
}

.contact_item_wrapper img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    margin-right: 24px;
    align-self: center;
}

.contact_item_wrapper span {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    font-family: 'Ubuntu', sans-serif;
}

.contact_item_wrapper a {
    color: #212121;
    font-size: 16px;
    font-family: 'Ubuntu', sans-serif;
}

.footer_container {
    width: calc(100% - 8px);
    margin: 4px 4px 24px;
    max-width: 300px;
}

.faq_wrapper {
    width: 90%;
    max-width: 900px;
    background: white;
    margin: 8px 0;
    box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
}

.faq_wrapper .question {
    padding: 24px;
    font-weight: normal;
    font-size: 18px;
    font-family: 'Ubuntu', sans-serif;
    position: relative;
}

.faq_wrapper .question:after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    color: white;
    padding: 6px 10px;
    line-height: 1;
    border-radius: 50%;
    background: #D1AC7E;
    transition: 0.4s ease;
}

.faq_wrapper.active .question:after {
    transform: translateY(-50%) rotate(45deg);
}

.faq_wrapper .answer {
    padding: 0 24px;
    font-weight: normal;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    height: 0;
    overflow: hidden;
    opacity: 0;
    border-top: 1px solid transparent;
    transition: 0.4s ease;
}

.faq_wrapper.active .answer {
    padding: 24px;
    height: auto;
    opacity: 1;
    border-top: 1px solid var(--divider);
}

.knowledge_base_container {
    background: #fafafa;
    border-radius: 12px;
    margin: 8px 0;
    padding: 16px;
}

.knowledge_base_container .heading {
    font-weight: 600;
    color: #212121;
    font-size: 18px;
    margin: 0 8px 12px;
}

.tab_item_wrapper {
    padding: 4px;
}

.tab_item {
    border-radius: 24px;
    background: white;
    padding: 8px 16px;
    margin-right: 8px;
    text-align: center;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
    transition: 0.4s ease;
    cursor: pointer;
}

.tab_item:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.tab_item.active {
    background: linear-gradient(to right, #b71c1c, #212121);
    color: white;
}

.tab_content_wrapper {
    display: none;
}

.tab_content_wrapper.active {
    display: flex;
}

.knowledge_base_container .tab_content_wrapper {
    border-radius: 24px;
    margin: 16px 0;
    background: #fefefe;
    padding: 16px;
    border: 2px dashed var(--divider);
}


.radio_group.column_alignment .radio_button_wrapper {
    width: calc(100% - 24px);
}

.radio_button_wrapper {
    margin: 4px 8px;
    position: relative;
    cursor: pointer;
}

.radio_button_wrapper input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
}

.radio_button_wrapper .radio_button_content {
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
    background: #f3f3f3;
    border: 1px solid transparent;
    transition: 0.4s ease;
}

.radio_button_wrapper input:checked ~ .radio_button_content {
    background: var(--colorAccent);
    color: white;
}

.radio_button_content .checkmark {
    margin-right: 12px;
    margin-top: 4px;
    color: #7c7c7c;
}

.radio_button_wrapper input:checked ~ .radio_button_content .checkmark {
    color: white;
}

.radio_button_content:hover {
    border: 1px solid var(--colorAccent);
}

.radio_button_content .info_text {
    font-size: 12px;
}

.process_status_loading_bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(4px);
    z-index: 9999999;
    display: none;
}

.process_status_loading_bar.active {
    display: flex;
}

.process_status_loading_bar > div {
    padding: 16px;
}

.process_status_loading_bar .loading_icon {
    color: white;
    align-self: center;
    font-size: 48px;
    animation: spin 2s linear infinite;
}

.process_status_loading_bar p {
    max-width: 500px;
    text-align: center;
    margin-top: 24px;
    color: white;
    font-size: 16px;
}

.knowledge_base_item_wrapper {
    margin: 4px;
    border-radius: 12px;
    padding: 12px 16px;
    background: white;
}

.knowledge_base_item_wrapper .title {
    font-weight: 500;
    font-size: 14px;
    color: var(--colorAccent);
}

.knowledge_base_item_wrapper .source {
    font-size: 12px;
    font-weight: 300;
    font-style: italic;
    word-break: break-all;
}

.knowledge_base_item_wrapper p {
    font-size: 12px;
}

.chat_box_container {
    position: fixed;
    z-index: 999;
    width: fit-content;
    max-width: 450px;
    bottom: 24px;
    right: 24px;
    overflow: hidden;
}

.chat_box_container.active {
    width: calc(100% - 16px);
    border-radius: 12px;
    bottom: 8px;
    right: 8px;
    overflow: hidden;
    background: white;
    box-shadow: 4px 8px 24px rgba(0, 0, 0, 0.2);
}

.chat_box_container .chat_box_heading {
    background: linear-gradient(to right, #212121, var(--colorAccent));
    color: white;
    padding: 12px 16px;
    cursor: pointer;
}

.chat_box_heading {
    align-self: flex-end;
    border-radius: 50%;
}

.chat_box_heading.active {
    align-self: auto;
    flex: 1 1 auto;
    border-radius: 0;
}

.chat_box_heading .bot_icon {
    font-size: 24px;
    padding: 8px 1px;
}

.chat_box_heading span,
.chat_box_heading .icon {
    display: none;
    align-self: center;
}

.chat_box_heading.active .icon,
.chat_box_heading.active span {
    display: flex;
}

.chat_box_heading.active .icon:before {
    content: "\f00d";
}

.chat_box_container .chat_box_wrapper {
    padding: 16px;
    height: auto;
    max-height: 500px;
    overflow: auto;
}

.chat_box_wrapper .help_text {
    text-align: center;
    color: #a3a3a3;
    font-size: 12px;
}

.chat_box_message_send_wrapper {
    padding: 8px;
}

.chat_box_message_send_wrapper input {
    border-radius: 24px;
    padding: 8px 16px;
    margin-right: 12px;
    border: 1px solid var(--divider);
    transition: 0.4s ease;
    outline: none;
}

.chat_box_message_send_wrapper input:focus {
    border: 1px solid var(--colorAccent);
}

.chat_box_message_send_wrapper .accent_button {
    padding: 10px 14px;
    transform: rotate(45deg);
}

.chat_box_content_wrapper {
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: 1s ease all;
}

.chat_box_content_wrapper.active {
    opacity: 1;
    height: auto;
}

.message_wrapper {
    position: relative;
    width: 90%;
    border-radius: 16px;
    font-size: 14px;
    padding: 0 12px;
    word-break: break-word;
    margin: 32px 0 8px;
}

.message_wrapper:before {
    position: absolute;
    top: -20px;
    left: 8px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: #4a4a4a;
    font-size: 12px;
}

.ai_message {
    align-self: flex-end;
    background: #f1f1f1;
    color: #212121;
}

.ai_message:before {
    content: "AI Assistant";
}

.human_message {
    align-self: flex-start;
    background: var(--colorAccent);
    color: white;
}

.human_message:before {
    content: "You";
}

.message_wrapper table th,
.message_wrapper table td {
    padding: 6px 8px;
    width: auto;
    word-break: break-all;
    text-align: start;
    border: 1px solid var(--divider);
}

.message_wrapper table {
    border-collapse: collapse;
    width: calc(100%);
    flex: 0 0 auto;
}

.message_wrapper a {
    color: var(--colorAccent);
}

.typing_message {
    margin: 12px 0 8px;
    align-self: flex-end;
    background: #f1f1f1;
    width: auto;
    padding: 12px;
    color: #212121;
    display: none;
}

.typing_message.active {
    display: block;
}

.typing_message span {
    width: 6px;
    height: 6px;
    background-color: var(--colorAccent);
    display: inline-block;
    margin: 2px;
    border-radius: 50%;
}

.typing_message span:nth-child(1) {
    animation: typing_bounce 1s infinite;
}

.typing_message span:nth-child(2) {
    animation: typing_bounce 1s infinite .2s;
}

.typing_message span:nth-child(3) {
    animation: typing_bounce 1s infinite .4s;
}

.kb_documents_data {
    max-height: 200px;
    overflow: hidden;
}

.kb_documents_data.active {
    max-height: none;
}

.kb_documents_actions_wrapper > div {
    height: 100px;
    margin-top: -100px;
    background: linear-gradient(to top, #fafafa, transparent);
    transition: 0.4s ease;
}

.kb_documents_actions_wrapper.active > div {
    height: 20px;
    margin-top: 0;
    background: transparent;
}

.kb_documents_actions_wrapper .accent_button i:before {
    content: "\f077";
}

.kb_documents_actions_wrapper.active .accent_button i:before {
    content: "\f078";
}

.ai_bot_ready_wrapper {
    background: linear-gradient(45deg, #212121, var(--colorAccent));
}

.ai_bot_ready_wrapper .page_heading {
    margin: 0 !important;
    color: white;
}

.ai_bot_ready_wrapper p {
    color: white;
    text-align: center;
}

.header_content_wrapper {
    padding: 60px 0;
    background: linear-gradient(45deg, #fff8f8, #f8f8f8, #fff8f8);
}

.header_content_wrapper .header_title {
    text-align: center;
    align-self: center;
    font-weight: 700;
    font-size: 50px;
}

.header_content_wrapper .header_title b {
    color: var(--colorAccent);
    font-weight: 700;
}

.header_content_wrapper p {
    font-size: 18px;
    font-weight: 300;
    text-align: center;
    align-self: center;
    max-width: 800px;
}

.home_page_heading {
    position: relative;
    color: #212121;
    font-size: 36px;
    padding: 8px;
    font-weight: 700;
    margin: 12px 0;
    align-self: center;
    text-align: center;
}

.feature_item_wrapper {
    width: calc(100% - 24px);
    padding: 24px 16px;
    margin: 12px;
    border-radius: 12px;
    flex: 1 1 auto;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: 1s ease;
    cursor: pointer;
    transform: translateY(0);
}

.feature_item_wrapper i {
    width: 58px;
    height: 58px;
    background-color: #212121;
    color: white;
    border-radius: 50%;
    font-size: 24px;
    text-align: center;
    padding-top: 16px;
    transition: 1s ease all;
}

.feature_item_wrapper span {
    font-weight: 500;
    color: var(--colorAccent);
    font-size: 20px;
    margin-top: 16px;
}

.feature_item_wrapper p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
}

.feature_item_wrapper p b {
    font-weight: 500;
}

.feature_item_wrapper:hover {
    border: 2px solid var(--colorAccent);
    transform: translateY(-10px);
}

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

.highlight_section span {
    text-align: center;
    align-self: center;
    font-weight: 600;
    font-size: 50px;
    color: white;
}

.highlight_section {
    padding: 80px 0;
}

.highlight_section p {
    max-width: 800px;
    align-self: center;
    text-align: center;
    font-size: 22px;
    font-weight: 300;
    color: white;
}

.feature_item_wrapper.other {
    box-shadow: none;
    border: none;
}

.feature_item_wrapper.other i {
    align-self: center;
    font-style: normal;
    font-weight: 700;
    padding-top: 12px;
    font-family: "Poppins", sans-serif;
}

.feature_item_wrapper.other span {
    color: #212121;
    text-align: center;
}

.feature_item_wrapper.other p {
    text-align: center;
    max-width: 300px;
    align-self: center;
}


.feature_item_wrapper.other:hover {
    border: none;
}

.bts_section_wrapper {
    background: #212121;
}

.bts_image {
    width: calc(100% - 24px);
    max-width: 500px;
    max-height: 500px;
    object-fit: contain;
    border-radius: 24px;
    filter: grayscale(90%);
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
    align-self: center;
    transition: 1s ease;
}

.bts_section_wrapper:hover .bts_image {
    filter: grayscale(0%);
}

.bts_section_wrapper p {
    line-height: 1.6;
    font-weight: 400;
    font-size: 16px;
    color: white;
}

.bts_section_wrapper .social_icon {
    width: 42px;
    height: 42px;
    background: white;
    border-radius: 12px;
    margin-right: 16px;
    text-align: center;
    font-size: 24px;
    padding-top: 4px;
    color: #212121;
    transform: translateY(0);
    transition: 0.4s ease;
}

.bts_section_wrapper .social_icon:hover {
    transform: translateY(-4px);
    color: white;
}

.bts_section_wrapper .social_icon.linkedin:hover {
    background: #0a66c2;
}

.bts_section_wrapper .social_icon.whatsapp:hover {
    background: #25D366;
}

.bts_section_wrapper .social_icon.twitter:hover,
.bts_section_wrapper .social_icon.github:hover {
    background: #000000;
}

.google_login_button {
    border: none;
    color: #212121;
    padding: 12px 16px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.1);
    cursor: pointer;
    margin: 16px 8px;
    min-width: 200px;
    text-align: center;
    transition: 0.4s ease;
    transform: translateY(0);
}

.google_login_button:hover {
    transform: translateY(-4px);
}

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

    .primary_toolbar span {
        font-size: 10px;
    }

    .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: 32px;
    }

    .section_wrapper {
        padding: 30px 0;
    }

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

    .base_margin {
        margin-top: 90px;
    }

    .footer_heading {
        width: 100%;
        padding: 16px;
        font-size: 20px;
    }

    .footer_heading:after {
        width: 100%;
        height: 1px;
        background: #4d2565;
    }

    .footer_heading:before {
        content: "\f067";
        position: absolute;
        right: 0;
        padding: 16px;
        font-weight: 900;
        bottom: 0;
        transform: rotate(0deg);
        transition: 0.5s ease;
        color: white;
        font-size: 16px;
        font-family: "Font Awesome 6 Free";
    }

    .footer_heading.active:before {
        transform: rotate(-45deg);
    }

    .footer_container {
        width: calc(100% - 8px);
        margin: 24px 4px 4px;
        max-width: none;
    }

    .footer_container p {
        text-align: center !important;
    }

    .footer_container .expandable {
        display: none;
    }

    .footer_container .expandable.active {
        display: flex;
    }

    .footer_link {
        padding: 6px 16px;
    }

    .footer_container .row_alignment {
        align-items: center;
        align-self: center;
    }

    .footer_logo {
        object-position: center;
        align-self: center;
    }

    .header_content_wrapper .header_title {
        font-size: 36px;
    }

    .header_content_wrapper p {
        font-size: 16px;
    }

    .home_page_heading {
        font-size: 26px;
    }

    .highlight_section {
        padding: 80px 12px;
    }

    .highlight_section span {
        font-size: 30px;
    }

    .highlight_section p {
        font-size: 16px;
    }

    .page_heading {
        font-size: 20px;
    }
}
