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: 77px;
    background-color: white;
}

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

.toolbar_root.transparent {
    background: transparent;
    box-shadow: none;
}

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

.toolbar_root.transparent #main_logo {
    background: url("../images/sa_group_logo_white.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;
    align-self: center;
    border: none;
    transition: 0.4s ease;
}

.toolbar_root.transparent .menu_item span {
    color: white;
}

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

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

.menu_item.red:hover > span {
    background: var(--colorAccent2);
}

.menu_item.social_icon span {
    border-radius: 50%;
    width: 36px;
    height: 36px;
    transition: 0.4s ease;
}

.drawer_item {
    display: flex;
}

.drawer_item span {
    padding: 10px 10px 10px 30px;
    font-size: 16px;
    transition: 0.4s;
    font-weight: 500;
}

.drawer_item.other_link {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: bold;
}

.drawer_item:hover {
    background-color: #f6f6f6;
}

.drawer_item.other_link:hover {
    color: var(--colorAccent);
    background-color: transparent;
}

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

.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: 80%;
    max-width: 300px;
    height: 100%;
    display: flex;
    flex-direction: row;
    z-index: 9999;
    right: -100%;
    overflow: hidden;
    box-shadow: -2px 0 4px rgba(0, 0, 0, 0.1);
    transition: 0.4s;
}

.side_navigation {
    position: relative;
    background-color: white;
    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_content_wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 50%;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.33), transparent, transparent);
}

.slide_content_wrapper span {
    text-align: center;
    color: white;
    font-size: 40px;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    font-family: 'Amiri', sans-serif;
}


.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(--colorAccent);
    color: white;
    font-weight: bold;
    padding: 12px 24px;
    border: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    text-align: center;
    border-radius: 6px;
    outline: none;
    text-transform: capitalize;
    font-family: "Montserrat", sans-serif;
    cursor: pointer;
    transition: 0.4s;
}

.accent_button:hover {
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
    transition: 0.6s;
    transform: translateY(-5px);
}

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

.page_heading {
    color: #212121;
    font-size: 35px;
    padding: 8px 8px 24px;
    font-weight: 500;
    text-align: center;
    margin: 4px 0;
    line-height: 1;
    font-family: "Amiri", serif;
    position: relative;
}

.page_heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 16px;
    border-radius: 1px;
    width: 100%;
    background-image: url("../images/blue_heading_border.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.page_heading.red_heading:after {
    background-image: url("../images/red_heading_border.png");
}

.page_sub_heading {
    color: #212121;
    font-size: 14px;
    text-align: center;
    margin: 4px 0 8px;
    font-family: "Montserrat", sans-serif;
}

.section_wrapper {
    padding: 40px 0;
}

.wedding_about_section_wrapper {
    background-image: url("../images/wedding_se ction_bg.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.corporate_about_section_wrapper {
    background-image: url("../images/corporate_about_bg.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.form_wrapper {
    width: calc(100% - 20px);
    border-radius: 16px;
}

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

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

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

.form_wrapper input, .form_wrapper select, .input_field {
    padding: 6px 12px;
    width: 100%;
    font-size: 14px;
    margin-bottom: 12px;
    background: white;
    font-family: "Montserrat", sans-serif;
    outline: none;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    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;
}

.footer_wrapper {
    padding: 40px 0;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    background-image: url("../images/footer_bg.jpg");
}

.footer_logo {
    width: 70%;
    min-width: 100px;
}

.footer_container {
    width: calc((100% / 3) - 16px);
    padding: 20px;
    margin: 8px;
}

.footer_container p {
    font-size: 18px;
    line-height: 1.5;
    color: white;
}

.footer_social_link {
    font-weight: 500;
    font-size: 15px;
    padding-top: 5px;
    width: 32px;
    height: 32px;
    text-align: center;
    color: var(--colorAccent);
    margin: 8px 4px;
    border-radius: 50%;
    border: 2px solid var(--colorAccent);
    transition: 0.4s ease;
}

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

.footer_heading {
    color: white;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-size: 24px;
    font-family: "Montserrat", sans-serif;
}

.footer_link {
    color: white;
    font-size: 16px;
    margin: 8px;
}

.footer_link i {
    width: 20px;
    text-align: center;
    font-size: 18px;
    margin-top: 2px;
    margin-right: 16px;
}

.footer_link i {
    color: white;
}

.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: "Montserrat", 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: 'Montserrat', 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);
}

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

.content_page_sub_heading_content {
    color: #212121;
    font-size: 14px;
    margin: 0 16px;
    padding-bottom: 8px;
    font-family: "Montserrat", sans-serif;

}

.home_main_grid_item {
    overflow: hidden;
    position: relative;
    background: #4c4c4c;
    padding: 1px;
}

.home_main_grid_item > div {
    overflow: hidden;
    height: 100%;
    width: 100%;
}

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

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

.home_main_grid_item span {
    position: absolute;
    padding: 28px 32px;
    font-size: 28px;
    font-weight: 500;
    color: white;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: right;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}

.sub_service_item_wrapper {
    width: calc((100% / 4) - 16px);
    margin: 8px;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.4s ease;
    cursor: pointer;
    transform: translateY(0);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.sub_service_item_wrapper span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 16px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

.service_item_wrapper {
    width: calc(100% - 16px);
    margin: 8px;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    background: #71a8ce;
    transition: 0.4s ease;
    cursor: pointer;
    transform: translateY(0);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

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

.service_item_wrapper img {
    border-radius: 16px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 80px;
}

.service_item_wrapper span {
    text-align: center;
    color: white;
    font-weight: 500;
    padding: 12px;
}

.service_item_wrapper.revised {
    position: relative;
    background: transparent;
}

.service_item_wrapper.revised span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 16px 16px;
    font-weight: 700;
    font-size: 18px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
}

.service_item_wrapper.revised:hover span {
    font-size: 22px;
}

.service_item_wrapper.icon_type {
    background: #FCEAD9;
    padding: 16px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
    transform: translateY(0);
}

.service_item_wrapper.icon_type:hover {
    transform: translateY(-8px);
}

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

.service_item_wrapper.icon_type img {
    width: 76px;
    height: 76px;
    align-self: center;
    border-radius: 0;
    object-fit: contain;
    margin-bottom: 12px;
    object-position: center;
    transition: 0.4s ease;
    transform: scale(1);
}

.service_item_wrapper.icon_type span {
    color: #212121;
    margin: 0;
    padding: 0;
}


.service_item_wrapper.revised_v2 {
    position: relative;
    background: transparent;
    overflow: visible;
    margin-bottom: 32px;
    height: 300px;
}

.service_item_wrapper.revised_v2 span {
    position: absolute;
    bottom: 0;
    transform: translateY(50%);
    left: 20px;
    right: 20px;
    padding: 8px 16px;
    font-weight: 500;
    font-size: 15px;
    background: white;
    border-radius: 8px;
    color: #212121;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
}

.service_item_wrapper.revised_v2:hover span {
    font-size: 17px;
}


.why_choose_item_wrapper {
    width: calc((100% / 3) - 16px);
    border-radius: 16px;
    padding: 16px;
    border: 5px solid #71a8ce;
    background: #e8efed;
    margin: 48px 8px 8px;
}

.why_choose_item_wrapper img {
    width: 80px;
    height: 80px;
    margin-top: calc(-40px - 16px);
}

.why_choose_item_wrapper span {
    font-size: 24px;
    font-weight: 500;
    font-family: "Amiri", serif;
    margin-top: 16px;
}

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

.why_choose_item_wrapper.revised {
    border: none;
    background: #FFEFF1;
    margin: 68px 8px 8px;
    cursor: pointer;
    transition: 0.4s ease;
}

.why_choose_item_wrapper.revised img {
    border-radius: 50%;
    background: #FFD9DC;
    align-self: center;
    width: 100px;
    object-position: center;
    object-fit: contain;
    height: 100px;
    margin-top: calc(-50px - 16px);
    transition: 0.4s ease;
    transform: scale(1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.why_choose_item_wrapper.revised span {
    text-align: center;
    color: #212121;
    transition: 0.4s ease;
}

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

/*.why_choose_item_wrapper.revised:hover {*/
/*    background: #C61B2C;*/
/*}*/

/*.why_choose_item_wrapper.revised:hover span {*/
/*    color: white;*/
/*}*/

.gallery_image {
    margin: 8px;
    width: calc(100% - 16px);
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: 0.4s ease;
}

.gallery_image.large {
    height: 500px;
}

.gallery_image.small {
    height: 300px;
}

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

.gallery_reel_wrapper {
    transform: rotateZ(1deg);
    padding: 4px;
    background: white;
}

.gallery_reel_image {
    position: relative;
    width: 350px;
    height: 300px;
    object-fit: cover;
    background: white;
    padding: 4px 8px;
    z-index: 1;
}

.reel_border {
    width: 100%;
    height: 40px;
    z-index: 2;
    background-size: contain;
    background-image: url("../images/galler_border_top_bottom.png");
}

.review_item_wrapper {
    background: #C61B2C;
}

.review_item_wrapper.blue {
    background: #55737E;
}

.review_item_wrapper .image_wrapper {
    width: 45%;
}

.review_item_wrapper img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.review_item_wrapper .content_wrapper {
    padding: 32px 24px;
    justify-content: center;
}

.review_item_wrapper span {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 500;
    font-family: "Amiri", serif;
    color: white;
}

.review_item_wrapper p {
    font-size: 18px;
    color: white;
    line-height: 1.5;
}

.reviews_slides {
    position: relative;
}

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

.reviews_slides .owl-prev {
    float: left;
}

.reviews_slides .owl-next {
    float: right;
}

.reviews_slides .owl-nav > button {
    width: 24px !important;
    height: 24px !important;
    background: rgba(0, 0, 0, 0.7) !important;
    color: white !important;
    font-weight: bold !important;
    text-align: center !important;
    border-radius: 50% !important;
    line-height: 1 !important;
    font-size: 16px !important;
    padding: 4px 0 !important;
    margin: 8px !important;
}

.contact_section_wrapper {

}

.contact_section_wrapper .title {
    color: var(--colorAccent);
    font-weight: bold;
    font-size: 20px;
}

.contact_section_wrapper .subtitle {
    font-weight: bold;
    font-size: 30px;
    margin: 24px 0
}

.contact_section_wrapper.red {
    background: rgba(255, 138, 5, 0.2);
}


.contact_section_wrapper.red .title {
    color: var(--colorAccent2);
}

.contact_section_wrapper.red .subtitle {
    color: var(--colorAccent2);
}


.contact_section_wrapper.blue {
    background: rgba(113, 168, 206, 0.9)
}


.contact_section_wrapper.blue .title {
    color: white;
}

.contact_section_wrapper.blue .subtitle {
    color: white;
}


.contact_info_item_wrapper {
    margin: 8px 0;
}

.contact_info_item_wrapper img {
    width: 24px;
    height: 24px;
    margin-right: 24px;
    object-fit: contain;
    object-position: center;
}

.contact_info_item_wrapper span {
    color: #212121;
    font-size: 16px;
}

.contact_info_item_wrapper.blue span {
    color: white;
    font-size: 16px;
}

.contact_form_wrapper {
    border-radius: 16px;
    border: 2px solid #212121;
    width: 90%;
    max-width: 500px;
    padding: 24px;
}

.contact_form_wrapper span {
    color: #212121;
    font-weight: bold;
    margin-bottom: 12px;
}

.contact_input_field {
    background-color: transparent;
    padding: 8px 16px;
    border-radius: 4px;
    margin-bottom: 18px;
    border: 2px solid #212121;
    outline: none;
    color: #212121;
    font-size: 15px;
}

.contact_input_field::placeholder {
    color: rgba(0, 0, 0, 0.75);
    opacity: 1; /* Firefox */
}

.contact_input_field::-ms-input-placeholder { /* Edge 12 -18 */
    color: rgba(0, 0, 0, 0.75);
}


.contact_form_wrapper.blue {
    border: 2px solid white;
}

.contact_form_wrapper.blue span {
    color: white;
}

.contact_form_wrapper.blue .contact_input_field {
    border: 2px solid white;
    outline: none;
    color: white;
    font-size: 15px;
}

.contact_form_wrapper.blue .contact_input_field::placeholder {
    color: rgba(255, 255, 255, 0.75);
    opacity: 1; /* Firefox */
}

.contact_form_wrapper.blue .contact_input_field::-ms-input-placeholder { /* Edge 12 -18 */
    color: rgba(255, 255, 255, 0.75);
}

.industry_logo_container {
    padding: 10px;
    margin: 10px 0;
    position: relative;
}

.industry_logo_container div {
    background: white;
    margin: 5px;
    width: 150px;
    height: 100px;
    flex: auto;
    transition: 0.4s ease;
}

.industry_logo_container div:hover {
    /*margin: 0;*/
}

.industry_logo_container img {
    background: white;
    margin: 8px;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    object-fit: contain;
    transition: 0.4s ease;
}

.industry_logo_container img:hover {
    margin: 0;
    width: 100%;
    height: 100%;
}


.gallery_dialog_container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999999;
    backdrop-filter: blur(4px);
    background: rgba(0, 0, 0, 0.85);
}


.seminar_gallery_slide {
    position: relative;
}

.seminar_gallery_slide img {
    height: 100%;
    /*height: 500px !important;*/
    padding: 0 8px;
    object-fit: contain;
    object-position: center;
}


.seminar_gallery_thumbnail img {
    border: 2px solid var(--divider);
    height: 80px;
    object-fit: cover;
}

.seminar_gallery_thumbnail .current img {
    border: 2px solid var(--colorAccent)
}


.slide_nav {
    padding: 8px 12px;
    background: white;
    color: var(--colorAccent);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.owl-theme .owl-nav {
    margin-top: 0 !important;
}

.slide_nav#gallery_left {
    left: 10px;
}


.slide_nav#gallery_right {
    right: 10px;
}


.testimonial_item_wrapper {
    border-radius: 12px;
    padding: 16px;
    background: white;
    margin: 12px 6px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.testimonial_item_wrapper img {
    width: 70px !important;
    height: 70px !important;
    margin-right: 12px;
    background: #212121;
    border-radius: 50%;
}

.testimonial_item_wrapper p {
    font-size: 14px;
    line-height: 1.4;
}

.testimonial_item_wrapper i {
    font-size: 12px;
    margin-right: 4px;
    color: #eaeaea;
}

.testimonial_item_wrapper i.active {
    color: #fd952a;
}

.testimonial_item_wrapper .name {
    font-size: 14px;
    margin-bottom: 6px;
}


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

.marquee_content_wrapper {

}

.marquee_content {
    flex: 0 0 auto;
}

.home_about_content_section {
    position: relative;
    padding: 40px 40px 40px 80px;
    margin-left: -60px;
}

.home_about_content_section .section_border_wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section_border_wrapper .top_border {
    position: absolute;
    top: 0;
    height: 3px;
    width: 0;
    background: var(--colorAccent2);
    transition: 1s ease;
}


.section_border_wrapper .right_border {
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 0;
    background: var(--colorAccent2);
    transition: 1s ease;
}


.section_border_wrapper .bottom_border {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 3px;
    width: 0;
    background: var(--colorAccent2);
    transition: 2s ease;
}


.section_border_wrapper .left_border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--colorAccent2);
    transition: 2s ease;
}

.section_border_wrapper.in_view .top_border,
.section_border_wrapper.in_view .bottom_border {
    width: 100%;
}

.section_border_wrapper.in_view .left_border,
.section_border_wrapper.in_view .right_border {
    height: 100%;
}


.job_opening_item {
    width: calc(100% - 8px);
    max-width: 800px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    background: white;
    margin: 8px 0;
    overflow: hidden;
    border-bottom: 1px solid var(--divider);
    transition: 0.4s ease;
}

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

.job_opening_item .title {
    font-weight: 500;
    font-size: 20px;
    padding: 12px;
    text-align: center;
    margin-bottom: 8px;
    background: var(--colorAccent);
    color: white;
}

.job_opening_item .title b {
    font-weight: 500;
    font-size: 16px;
}

.job_opening_item p, .job_opening_item h1, .job_opening_item h2 {
    margin: 8px 0 0;
}

.career_spec_wrapper img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    object-position: center;
}

.career_spec_wrapper span {
    font-size: 12px;
    color: var(--colorAccent);
    text-align: center;
    font-weight: 400;
}

.career_spec_wrapper span b {
    font-size: 16px;
    font-weight: 600;
    margin-top: 4px;
}


@media only screen and (max-width: 1000px) {
    .review_item_wrapper .image_wrapper {
        width: 100%;
    }

    .review_item_wrapper img {
        height: 470px;
    }


    .review_item_wrapper span {
        font-size: 24px;
    }

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

    .sub_service_item_wrapper {
        width: calc((100%) - 16px);
    }

    .why_choose_item_wrapper {
        width: calc((100%) - 16px);
    }

    .home_main_grid_item span {
        padding: 24px;
        font-size: 20px;
    }


    .logo_container {
        display: flex;
        flex: 1 1 auto;
    }

    .toolbar_root #main_logo {
        height: 46px;
        width: 160px;
        margin: 4px;
    }

    .page_heading {
        font-size: 26px;
    }

    .section_wrapper {
        padding: 30px 0;
    }

    .footer_container {
        margin: 0;
        padding: 24px 12px;
        width: calc(100%);
    }


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


    .home_about_content_section {
        position: relative;
        padding: 20px;
        margin-left: 0;
        margin-top: 16px;
    }


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

}

