/* @font-face {
    font-family: 'Relevance-trial';
    src: url('../fonts/relevance/Relevance-trial-Thin.woff2') format('woff2'),
        url('../fonts/relevance/Relevance-trial-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Relevance-trial';
    src: url('../fonts/relevance/Relevance-trial-ExtraLight.woff2') format('woff2'),
        url('../fonts/relevance/Relevance-trial-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Relevance-trial';
    src: url('../fonts/relevance/Relevance-trial-Light.woff2') format('woff2'),
        url('../fonts/relevance/Relevance-trial-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Relevance-trial';
    src: url('../fonts/relevance/Relevance-trial-Bold.woff2') format('woff2'),
        url('../fonts/relevance/Relevance-trial-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Relevance-trial';
    src: url('../fonts/relevance/Relevance-trial-Medium.woff2') format('woff2'),
        url('../fonts/relevance/Relevance-trial-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Relevance-trial';
    src: url('../fonts/relevance/Relevance-trial-SemiBold.woff2') format('woff2'),
        url('../fonts/relevance/Relevance-trial-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Relevance-trial';
    src: url('../fonts/relevance/Relevance-trial-ExtraBold.woff2') format('woff2'),
        url('../fonts/relevance/Relevance-trial-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Relevance-trial';
    src: url('../fonts/relevance/Relevance-trial-Heavy.woff2') format('woff2'),
        url('../fonts/relevance/Relevance-trial-Heavy.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Relevance-trial';
    src: url('../fonts/relevance/Relevance-trial-Regular.woff2') format('woff2'),
        url('../fonts/relevance/Relevance-trial-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
} */

body {
    margin: 0px;
    padding: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6,
body,
p,
span,
a,
button {
    font-family: var(--font_family) !important;
    font-weight: 500;
    line-height: normal;
}


a {
    text-decoration: unset;
}

select {
    -webkit-appearance: auto !important;
    -moz-appearance: auto !important;
}

.form-control {
    font-family: var(--font_family) !important;
    font-weight: 500;
}

select option,
.custom-btn-group label {
    font-weight: 500 !important;

}

.main_btn {
    color: #fff;
    background-color: var(--main_btn);
    font-weight: 600;
    padding-left: 25px;
    font-size: var(--btn_font_size);
    padding-right: 25px;
}

.main_btn:hover,
.main_btn:active,
.main_btn:focus {
    background-color: var(--main_btn_hover);
    color: #ffffff;
}

.main_btn_dark {
    background-color: var(--btn_dark_color) !important;
    font-size: var(--btn_font_size);
}

.main_btn_dark:hover,
.main_btn_dark:active,
.main_btn_dark:focus {
    background-color: var(--btn_dark_color_hover) !important;
    color: #000000;
}

.main_btn_lite {
    background-color: var(--btn_lite_color) !important;
    font-size: var(--btn_font_size);
}

.main_btn_lite:hover,
.main_btn_lite:active,
.main_btn_lite:focus {
    background-color: var(--btn_lite_color_hover) !important;
}

#main_header_rtop {
    background-color: var(--header_dark_color);
    position: relative;
}

#main_header_rbottom {
    background-color: var(--header_lite_color);
    position: relative;
}

#main_header_rtop::before {
    content: "";
    width: 34px;
    height: 100%;
    position: absolute;
    left: -32px;
    border-left: 33px solid transparent;
    border-right: 32px solid transparent;
    border-bottom: var(--header_before_height) solid var(--header_dark_color_before);
    transform: rotate(180deg);
}

#main_header_rbottom::before {
    content: "";
    width: 35px;
    height: 100%;
    position: absolute;
    left: -32px;
    border-left: 33px solid transparent;
    border-right: 32px solid transparent;
    border-top: var(--header_before_height) solid var(--header_lite_color_before);
    transform: rotate(180deg);
}

/* end */




.owl-carousel {
    display: block !important;
}

.custom_dropdown_menu {
    position: absolute;
    z-index: 9999;
    border: 1px solid #004475;
    top: 47px;
    width: 640px;
    text-align: left;
    left: -1px;
    background: #ffffff;
    transform: translateY(40px);
    transition: transform 0.25s;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0px 29px 21px 0px #00000057;
    display: flex;
    flex-direction: row;
    padding: 15px;
    gap: 15px;
}

.custom_dropdown_menu_reverse {
    flex-direction: row-reverse !important;
    right: -1px !important;
    left: unset !important;
}



.custom_dropdown_menu_img {
    width: 45%;
    padding: 0px;
}

.custom_dropdown_menu_img img {
    width: 100%;
    box-shadow: 5px 5px 0px 0px #00b2e478;
    border: 1px solid #004376;
}

.custom_dropdown_menu ul {
    list-style-type: none;
    width: 55%;
    padding-inline-start: 0px;

}

.main_header .nav .nav-item {
    position: relative;
}

#main_header_right #main_header_rtop .nav .nav-item:nth-last-child(2) {
    width: 20%;
}

#main_header_rbottom .nav .nav-item:hover>.custom_dropdown_menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}

#main_header_rtop .nav .nav-item:hover>.custom_dropdown_menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}

#main_header_rbottom .nav .nav-item:hover>.nav-link {
    background-color: #fff;
    border-radius: 0px;
    color: #000;
    font-weight: 600;
    z-index: 100;
    position: relative;
}

.custom_dropdown_menu li a.dropdown_item {
    padding: 10px 15px 10px 8px;
    font-size: 15px;
    border-bottom: 1px solid #ddd;
    display: block;
    text-decoration: none;
    color: #000000;
}
.custom_dropdown_menu li {
    position: relative;
}


.custom_dropdown_menu li a.dropdown_item:hover {
    background-color: #004475;
    color: #ffffff;
}

.custom_dropdown_menu li:last-child a.dropdown_item {
    border-bottom: 0px;
}


.custom_dropdown_menu_top li a {
    padding: 10px 15px 10px 8px;
    font-size: 14px;
    border-bottom: 1px solid #ddd;
    display: block;
    text-decoration: none;
    color: #000000;
}

.custom_dropdown_menu_top li a:hover {
    background-color: #004475;
    color: #ffffff;
}

.custom_dropdown_menu_top li:last-child a {
    border-bottom: 0px;
}

.main_header .nav .nav-item .nav-link {
    padding: 14px 8px;
    gap: 0;
    border-radius: 0px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

#main_header_left {
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#main_header_left>a>img {
    width: 65%;
}

.page_padding {
    padding-top: 50px;
    padding-bottom: 50px;
}


.page_heading h4 {
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 15px;
}

.page_heading p {
    margin-top: -15px;
}

.subpage_heading h3 {
    font-size: 22px;
    text-align: center;
}

/* footer */
.footer_dt_card {
    margin-bottom: 15px;
    /* border-width: 1px;
    border-style: solid;
    border-color: rgb(255, 255, 255);
    border-image: initial;
    border-radius: 5px; */
    display: flex !important;
    /* padding: 10px !important; */
}

.footer_dt_card img {
    border-radius: 5px;
    width: 65px;
    margin-right: 10px;
}

.home_footer_section {
    background-color: #004475;
}

.footer_grid h4 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 20px;
}

.footer_grid ul {
    padding-inline-start: 0px;
    list-style: none;
}

.footer_grid ul li a {
    color: #ffffff;
    text-decoration: none;
    padding: 5px 0;
    font-size: 14px;
    display: inline-block;
}

.footer_dt_card_content h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0px;
}

.footer_dt_card_content p {
    font-size: 14px;
}

/* video lightbox */
.footer_gallery_grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}

.footer_gallery_item {
    width: 26%;
    border: 1px solid #ffffff;
    border-radius: 8px;
    position: relative;
}

.footer_gallery_item img {
    border-radius: 8px;
}

.footer_gallery_vicon {
    position: absolute;
    width: 30px;
    z-index: 1;
    top: 13px;
    left: 22px;
}

.footer_social_icon {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
}

.footer_social_icon span {
    color: #ffffff;
    margin-right: 15px;
}

.footer_social_icon a {
    color: #fff;
    font-size: 25px;
    margin-right: 6px;
}

.footer_social_icon .footer_social_mail {
    font-size: 14px;
    text-decoration: none;
}

.footer_copy_right {
    list-style-type: none;
    padding-inline-start: 0px;
    margin-bottom: 0px;
}

.footer_nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.footer_nav .nav-item .nav-link {
    color: #ffffff;
    text-decoration: underline;
    padding: 0px;
    margin-right: 25px;
    font-size: 14px;
}

.footer_grid h4 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.footer_grid h4::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 5px;
    width: 55px;
    background-color: #ffffff;
}

.footer_grid h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    height: 1px;
    width: 95%;
    max-width: 255px;
    background-color: #ffffff;
}

.home_cta_left {
    text-align: left;
}

.home_cta_left h3 {
    font-size: 169px;
    line-height: 0.8;
    width: auto;
    text-align: center;
    background-size: contain;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    display: inline-block;
}

.home_cta_right h3 {
    font-size: 16px;
}

.home_cta_right h2 {
    font-size: 24px;
    margin-bottom: 15px
}

.home_cta_section {
    background-color: #05abf2;
}

.home_cta_right>h2>.fa-solid {
    font-size: 34px;
    color: #004475;
}

.cta_footer_box {
    padding: 0px 10px;
    border-radius: 8px;
    position: relative;
    text-align: left;
}

.cta_footer_box img {
    width: 50px;
}

.cta_footer_box h4 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 0px;
    margin-top: 10px;
}

.custom_vr {
    color: #ffffff;
    opacity: 1;
    margin: 0 15px 0 10px;
}

.footer_copy_para {
    font-size: 14px;
}

.home_footer_address {
    background-color: #004475;
    color: #ffffff;
}

.footermenu_social_link .nav-link i {
    background-color: #fff;
    color: #004475;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.no-unerline {
    text-decoration: unset;
}

.footer_message p {
    font-size: 18px;
    text-align: center;
}

.footer_copyright_links .nav-item .nav-link {
    color: #000;
    font-weight: 700;
    padding-left: 0;
    padding-right: 30px;
}

/* end */
.fixed_scrolltop_btn {
    position: fixed;
    display: none;
    bottom: 15px;
    width: 50px;
    height: 50px;
    right: 20px;
    background-color: cornflowerblue;
    border-radius: 50%;
    padding: 14px;
    z-index: 1000000;
    cursor: pointer;
    text-align: center;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.fixed_scrolltop_btn i {
    color: #ffffff;
}

.xs-nav-item {
    display: none !important;
}

.nav-item-xs-topmenu {
    display: none !important;
}

table.gsc-search-box td {
    height: 26px !important;
}

.main_header_rtop_xs {
    display: none !important;
}

#main_header_rtop_xs {
    display: none !important;
}

.dropdown-toggle::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    border: 0px;
}

/* join button animation */
.animated-box {
    padding: 8px 15px !important;
    text-align: center;
}

.animated-box h1 {
    font-weight: 200;
    font-size: 40px;
    text-transform: uppercase;
}

.animated-box p {
    font-weight: 200;
}

/* The animation starts here */
.animated-box {
    position: relative;
}

.animated-box:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0px;
    background: linear-gradient(120deg, #ffffff, yellow, orange);
    background-size: 300% 300%;
    clip-path: polygon(0% 100%, 1px 100%, 1px 1px, calc(100% - 1px) 1px, calc(100% - 1px) calc(100% - 1px), 1px calc(100% - 1px), 1px 100%, 100% 100%, 100% 0%, 0% 0%);
}

.animated-box.in:after {
    animation: frame-enter 1s forwards ease-in-out reverse, gradient-animation 4s ease-in-out infinite;
}

/* motion */
@keyframes gradient-animation {
    0% {
        background-position: 15% 0%;
    }

    50% {
        background-position: 85% 100%;
    }

    100% {
        background-position: 15% 0%;
    }
}

@keyframes frame-enter {
    0% {
        clip-path: polygon(0% 100%, 1px 100%, 1px 1px, calc(100% - 1px) 1px, calc(100% - 1px) calc(100% - 1px), 1px calc(100% - 1px), 1px 100%, 100% 100%, 100% 0%, 0% 0%);
    }

    25% {
        clip-path: polygon(0% 100%, 1px 100%, 1px 1px, calc(100% - 1px) 1px, calc(100% - 1px) calc(100% - 1px), calc(100% - 1px) calc(100% - 1px), calc(100% - 1px) 100%, 100% 100%, 100% 0%, 0% 0%);
    }

    50% {
        clip-path: polygon(0% 100%, 1px 100%, 1px 1px, calc(100% - 1px) 1px, calc(100% - 1px) 1px, calc(100% - 1px) 1px, calc(100% - 1px) 1px, calc(100% - 1px) 1px, 100% 0%, 0% 0%);
    }

    75% {
        -webkit-clip-path: polygon(0% 100%, 1px 100%, 1px 1px, 1px 1px, 1px 1px, 1px 1px, 1px 1px, 1px 1px, 1px 0%, 0% 0%);
    }

    100% {
        -webkit-clip-path: polygon(0% 100%, 1px 100%, 1px 100%, 1px 100%, 1px 100%, 1px 100%, 1px 100%, 1px 100%, 1px 100%, 0% 100%);
    }
}


.menu_search_input {
    height: 30px;
    font-size: 14px;
    width: 60%;
    float: right;
    border-radius: 0px;
}

/* end */
.home_cta_left img {
    width: 90%;
}

.footer_arrow_right::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 110px;
    background: #ffffff;
    right: 0;
    top: 0;
}


.article_intro {
    padding: 15px;
    background-color: antiquewhite;
}

.blog_date_time_sec hr {
    margin-top: 5px;
    margin-bottom: 5px;

}

.article_head h4 {
    font-size: 20px;
    font-weight: 600;
}

.h_article_head {
    text-overflow: ellipsis;
    overflow: hidden;
    height: var(--h_article_head);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    margin-bottom: 15px;
    -webkit-box-orient: vertical;
}

.blog_date_time_sec p {
    margin-bottom: 0px;
    font-size: 14px;
}

.post_datetime_section {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
}

#post_datetime {
    font-size: 13px;
    margin: 0;
}

.social-share-btns-container {
    display: flex;
    width: 100%;
    flex-direction: row;
}

.mob_share_btn_sec {
    display: none;
}

.social-share-btns span {
    font-size: 13px;
    margin-top: -5px;
}

.share-btn i {
    font-size: 20px;
    color: #004475;
}

.social-share-btns {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
}

/* 
#home_blog_slider .owl-nav .owl-prev {
    position: absolute;
    top: 44%;
    left: -30px;
    display: block;
    width: 30px;
    height: 30px;
    font-size: 20px;
}

#home_blog_slider .owl-nav .owl-next {
    position: absolute;
    top: 44%;
    right: -30px;
    display: block;
    width: 30px;
    height: 30px;
    font-size: 20px;
} */

.blog_date_time_sec {
    height: 70px;
}

.dot_enable_black .owl-dots .owl-dot {
    background: transparent;
    color: inherit;
    padding: 0;
    font: inherit;
    height: 10px;
    width: 10px;
    margin-left: 5px;
    margin-right: 5px;
    border-radius: 50%;
    border: 2px solid #004475 !important;
    margin-bottom: 9px;
}

.dot_enable_black .owl-dots .owl-dot.active {
    background-color: #004475 !important;
}

.dot_enable_black .owl-dots {
    bottom: -35px !important;
    display: block !important;
    position: absolute !important;
    width: 100% !important;
    text-align: center !important;
}

.dot_enable_white .owl-dots .owl-dot {
    background: transparent;
    color: inherit;
    padding: 0;
    font: inherit;
    height: 10px;
    width: 10px;
    margin-left: 5px;
    margin-right: 5px;
    border-radius: 50%;
    border: 2px solid #ffffff !important;
    margin-bottom: 9px;
}

.dot_enable_white .owl-dots .owl-dot.active {
    background-color: #ffffff !important;
}

.dot_enable_white .owl-dots {
    bottom: -30px !important;
    display: block !important;
    position: absolute !important;
    width: 100% !important;
    text-align: center !important;
}


.slider_with_nav .owl-nav .owl-prev span,
.slider_with_nav .owl-nav .owl-next span {
    display: none;
}

.slider_with_nav .owl-nav .owl-prev,
.slider_with_nav .owl-nav .owl-next {
    position: absolute;
    height: 40px;
    width: 40px;
    border: 2px solid #ccc !important;
    border-radius: 24px;
    font-size: 19px;
    bottom: 50%;
}



.slider_with_nav .owl-nav button.owl-prev::after {
    content: "";
    width: 13px;
    height: 13px;
    display: inline-block;
    background: transparent;
    border-top: 2px solid #ccc;
    border-right: 2px solid #ccc;
    transform: rotate(-135deg);
    margin-left: 6px;
    margin-top: 5px;

}

.slider_with_nav .owl-nav button.owl-next::after {
    content: "";
    width: 13px;
    height: 13px;
    display: inline-block;
    background: transparent;
    border-top: 2px solid #ccc;
    border-right: 2px solid #ccc;
    transform: rotate(45deg);
    margin-right: 6px;
    margin-top: 5px;

}

.slider_with_nav_dark .owl-nav button.owl-prev::after,
.slider_with_nav_dark .owl-nav button.owl-next::after {
    border-color: #004376 !important;
}

.slider_with_nav_dark .owl-nav .owl-prev,
.slider_with_nav_dark .owl-nav .owl-next {
    border-color: #004376 !important;
}

.slider_with_nav .owl-nav .owl-prev {
    position: absolute;
    left: -51px;
    font-size: 22px;
    padding: 15px;
    opacity: 0.8;
}

.slider_with_nav .owl-nav .owl-next {
    position: absolute;
    padding: 15px;
    font-size: 22px;
    opacity: 0.8;
    right: -51px;
}

input::placeholder {
    font-family: var(--font_family);
    opacity: 0.1;
}

input::-ms-input-placeholder {
    /* Edge 12-18 */
    font-family: var(--font_family);
    opacity: 0.1;
}

.text-08b3e7 {
    color: #08b3e7 !important;
}

sup {
    top: -3px;
    font-size: 18px;
}

.about_framework_list {
    list-style-type: none;
    padding-inline-start: 0px;
}

.about_framework_list>li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.about_framework_list li a {
    font-weight: 800;
    text-decoration: unset;
    color: #000;
}

.about_framework_list>li::before {
    content: '';
    height: 15px;
    width: 15px;
    position: absolute;
    left: 0;
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
    background-image: url('../image/icons/list_type.png');
    top: 5px;
}

.about_framework_list_white>li::before {
    background-image: url('../image/icons/list_type_white.png') !important;

}

.modal_anchor {
    cursor: pointer !important;
}


.heading_bar {
    width: 80px;
    display: block;
    height: 2px;
    background-color: black;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.form-control:focus {
    box-shadow: 0 0 5px 0.1rem rgba(13, 110, 253, .25) !important;
}

.fa-spinner {
    display: none;
}

.form-check-label {
    cursor: pointer;
}

.csc-group {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 16px;
}

.csc-group .csc-groupselect {
    flex-basis: 47%;
}

.w-31 {
    width: 31%;
}

.alert-request-danger {
    background: transparent;
    border: 0;
    padding: 0;
    color: #ff0000;
    background: yellow;
    font-size: 13px;
    margin-bottom: 0px;
    font-weight: 600;
    width: fit-content;
    margin-top: 3px;
    letter-spacing: .3px;
}

.alert-request-success {
    background: transparent;
    border: 0;
    padding: 0px;
    color: #000000;
    background: yellow;
    font-size: 15px;
    margin-bottom: 0px;
    font-weight: 600;
    width: fit-content;
    margin-top: 3px;
    letter-spacing: .3px;
}

.captcha_box {
    display: flex;
    justify-content: center;
    align-items: center;
}

#captcha_box_image {
    border: 1px solid #004376;
}

.refresh_captcha {
    background: #00b2e4;
    color: #fff;
    cursor: pointer;
    padding: 4px 6px;
    margin-left: 14px;
    border-radius: 5px;
}


.iti--allow-dropdown {
    width: 100%;
}

.mem_form__heading p {
    color: #ffffff;
    margin-top: 5px;
}

.blue_tr {
    background-color: #004475 !important;
    color: #ffffff !important;
}

.btn-close-top10-right10 {
    top: 10px;
    right: 10px;
}

.cust_modal_title {
    background-color: antiquewhite;
}

.blue_color {
    color: blue !important;
    font-weight: 600 !important;
}

.layout-fixed {
    table-layout: fixed !important;
}

.page_heading_dline {
    margin-bottom: 45px;
}

.page_heading_dline h3 {
    position: relative;
}

.page_heading_dline h3::before {
    content: '';
    height: 2px;
    position: absolute;
    bottom: -12px;
    background-color: #004475;
    width: 77px;
    left: calc(50% - 33px);
}

.page_heading_dline h3::after {
    content: '';
    height: 2px;
    position: absolute;
    bottom: -5px;
    background-color: #004475;
    width: 123px;
    left: calc(50% - 56px);
}

.page_heading h3 {
    font-size: 26px;
}

.page_heading h5 {
    text-transform: uppercase;
    font-weight: 600;
}

.pgevents_carousel .pgevent_image img,
.upevents_carousel .pgevent_image img {
    height: 154px;
}

.pgevent_content {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    /* border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px; */
    background-color: #B2D7EA;
}

.pgevent_content_date {
    width: 90px;
    text-align: center;
    background-color: #08b3;
    padding: 20px 10px;
    font-size: 14px;
}

.pgevent_content_title {
    padding: 20px 10px;
    font-size: 14px;
}

.pgevent_content_title p {
    margin: 0px;
}



/* #home_insmem_slider .owl-nav .owl-prev {
    position: absolute;
    top: 32%;
    left: -30px;
    display: block;
    width: 30px;
    color: #ffffff;
    height: 30px;
    font-size: 20px;
}

#home_insmem_slider .owl-nav .owl-next {
    color: #ffffff;
    position: absolute;
    top: 32%;
    right: -30px;
    display: block;
    width: 30px;
    height: 30px;
    font-size: 20px;
} */

.masterclass_about_maintabs .nav-tabs {
    border: 0;
    text-align: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    border-radius: 5px;
    width: 100%;
    margin: auto;
    margin-bottom: 40px;
}

.masterclass_about_maintabs .tab-content {
    margin: 30px 0 0px 0;
}

.masterclass_about_maintabs .nav-tabs li {
    float: unset;
    margin-bottom: 0px;
    width: 24%;
    position: relative;
}

.masterclass_about_maintabs .nav-tabs li button {
    border-radius: 0px;
    border: 0px;
    margin-right: 0px;
    line-height: 21px;
    font-weight: 700;
    color: #000000;
    font-size: 16px;
    padding: 20px 33px;
    text-transform: uppercase;
    border-radius: 54px;
    border: 1px solid #bebebe;
    width: 100%;
}

.masterclass_about_maintabs .nav-tabs li button.active {
    background-color: #004475;
    color: #ffffff;
    border: 1px solid #004475;
}

.masterclass_about_maintabs .nav-tabs li button.active+span {
    position: absolute;
    width: 30px;
    height: 20px;
    bottom: -21px;
    left: calc(50% - 15px);
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 12px solid #004475;
    transform: rotate(180deg);
    transition: all 0.2s;
}

.masterclass_about_maintabs .nav-tabs li .nav-link.active {
    background-color: #004475;
    color: #ffffff;
    border: 1px solid #004475;
}

.masterclass_about_maintabs .nav-tabs li .nav-link.active+span {
    position: absolute;
    width: 30px;
    height: 20px;
    bottom: -21px;
    left: calc(50% - 15px);
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 12px solid #004475;
    transform: rotate(180deg);
    transition: all 0.2s;
}


.events_submenu_tabs .nav-tabs li {
    width: 17%;
}

.events_submenu_tabs .nav-tabs li .nav-link {
    border-radius: 8px;
    font-size: 14px;
    padding: 10px 15px;
    color: #ffffff;
    text-transform: capitalize;
}

.events_submenu_tabs .nav-tabs {
    justify-content: space-between;
    flex-wrap: nowrap;
    margin-bottom: 20px;
    gap: 10px;
}

.events_submenu_tabs .nav-tabs .nav-item .event-col-1.active+span {
    border-bottom: 12px solid #03045E;
    bottom: -19px;
}

.events_submenu_tabs .nav-tabs .nav-item .event-col-2.active+span {
    border-bottom: 12px solid #0077B6;
    bottom: -19px;
}

.events_submenu_tabs .nav-tabs .nav-item .event-col-3.active+span {
    border-bottom: 12px solid #023E8A;
    bottom: -19px;
}

.events_submenu_tabs .nav-tabs .nav-item .event-col-4.active+span {
    border-bottom: 12px solid #0096C7;
    bottom: -19px;
}

.events_submenu_tabs .nav-tabs li .nav-link.active {
    border: 0px;
}

.events_submenu_tabs .nav-tabs .nav-item .event-col-5.active+span {
    border-bottom: 12px solid #48CAE4;
    bottom: -19px;
}

.events_submenu_tabs .nav-tabs .nav-item .event-col-6.active+span {
    border-bottom: 12px solid #00B4D8;
    bottom: -19px;
}

.event-col-1 {
    background: #03045E !important;
}

.event-col-2 {
    background: #0077B6 !important;
}

.event-col-3 {
    background: #023E8A !important;
}

.event-col-4 {
    background: #0096C7 !important;
}

.event-col-5 {
    background: #48CAE4 !important;
}

.event-col-6 {
    background: #00B4D8 !important;
}

.event_dropdown_menu {
    background: #00534c;
    width: 100%;
}

.event_dropdown_menu li a {
    color: #ffffff;
    font-size: 14px;
}

.fw-bolder {
    font-weight: 900 !important;
}

.center-modal-closebtn {
    top: 15px;
    right: 15px;
}

.custom_accordion .accordion-item {
    margin-bottom: 15px;
}

.custom_accordion .accordion-item .accordion-header .accordion-button {
    color: #ffffff;
    background-color: #004475;
}

.custom_accordion .accordion-item .accordion-header .accordion-button::after {
    content: '\f106';
    font-family: 'Font Awesome 6 Free';
    background-image: unset !important;
}

.accordion-button:focus {
    box-shadow: none !important;
}

.list_with_image {
    list-style-type: none;
    padding-inline-start: 0px;
    margin-bottom: 0px;
}

.list_with_image li {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 15px;
    gap: 10px;
}

.list_with_image li img {}

.list_with_image li p {
    color: #ffffff;
}

.list_with_image li p a {
    color: yellow;
}

.main_btn_with_icon {
    display: inline-flex;
    width: max-content;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.main_btn_with_icon i {
    font-size: 12px;
}

.disablepointer {
    pointer-events: none;
    opacity: 0.4;
}

.nav-link:focus-visible {
    box-shadow: unset !important;
}

#mobile_sidebar_menu {
    display: none;
}

.form.gsc-search-box {
    margin-bottom: 0 !important;
}

table.gsc-search-box td.gsc-input {
    padding-right: 5px !important;
}

.gsib_a {
    padding: 5px 9px 4px 9px;
}

input.gsc-input {
    background: transparent !important;
}

.gsc-control-cse {
    background-color: transparent !important;
    border: 0px !important;
    padding: 0 !important;
    width: 86% !important;
    float: right;
}

.gsc-search-button-v2 {
    padding: 8px 12px !important;
}

table.gsc-search-box,
form.gsc-search-box {
    margin: 0px !important;
}

.sidebar_floating_btn {
    position: fixed;
    left: -159px;
    z-index: 10000;
    transform: rotate(-90deg);
    bottom: 25%;
}

.sidebar_floating_btn .floatin_btn img {
    width: 22px;
}

.sidebar_floating_btn .floatin_btn {
    background-color: #ffffff;
    border-radius: 0px;
    box-shadow: -3px 3px 0px 0px #000000a6;
    padding: 3px 15px;
    margin: 0px 0px 0px 5px;
    font-size: 16px !important;
    border: 1px solid #000;
    font-weight: 600;
    color: #000000;
}

.floatin_btn_close {
    margin-left: 3px !important;
}

.float_modal_dialog .btn-close {
    position: absolute;
    right: 22px;
    opacity: 1;
    top: 17px;
}

.float_modal_dialog .btn-close:focus,
.float_modal_dialog .btn-close:focus-visible {
    box-shadow: unset !important;
    outline: unset !important;
}

.float_modal_dialog .modal-title {
    font-size: 25px;
    color: #004475;
    font-weight: 600;
    padding-bottom: 0px;
}

#connect_us_modalLabel {
    margin-top: 30px;
}

#quick_link_modalLabel {
    color: #ffffff;
}



.float_modal_dialog .modal-content .modal-header {
    background-color: #004475;
    border-radius: 0px;
    padding: 10px 15px 10px 30px;
}

.connect_us_modal_form {
    padding: 25px 0px 50px 0px;
}

.cwu_groupselect {
    flex-basis: 31.33% !important;
}

#connect_us_modal .float_modal_dialog {
    width: 75%;
    max-width: 75%;
}

.connect_us_modal_right {
    padding: 0px 30px;
    height: inherit;
    display: block;
}

.bg-antiquewhite {
    background-color: antiquewhite;
    background: antiquewhite;
}

.connect_us_modal_form .container-fluid .row .col-12 {
    padding-left: 6px;
    padding-right: 6px;
}

.connect_us_modal_left {
    /* background-image: url('../../uploads/banner_image/17158359271homebanner.webp');
    background-size: cover;
    background-position: 75% 0%;
    text-align: center; */
    height: 100%;
    width: 100%;
    position: relative;
    display: block;
    border-right: 2px solid #000000;
}

.connect_ud_video_background {
    position: absolute;
    left: 0%;
    top: unset;
    transform: translate(0%, 0%);
    max-width: max-content;
    -o-object-fit: cover;
    object-fit: fill;
    width: inherit;
    height: 100%;
    margin: 0;
}

#quick_link_modal .modal-body {
    background: antiquewhite;
    padding: 20px;
}

.quicklink_form_content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.quicklink_form_content a {
    flex-basis: 47.5%;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    padding: 15px;
    align-items: center;
    box-shadow: 6px 6px 0px 0px #dddddd;
    justify-content: center;
    height: 141px;
}

.quicklink_form_content a img {
    width: 35%;
}

.quicklink_form_content a p {
    text-align: center;
    color: #000000;
    margin-top: 10px;
    line-height: normal;
    font-weight: 600;
    margin-bottom: 0;
    font-size: 14px;
}

.quicklink_form_smedia {
    text-align: center;
    padding: 20px 0 0px 0;
}

.ql_si_wrapper {
    display: inline-flex;
    list-style: none;
    padding-inline-start: 0px;
    margin-bottom: 0;
}

.ql_si_wrapper .ql_si_icon {
    position: relative;
    background: #ffffff;
    border-radius: 50%;
    padding: 10px;
    margin: 0px 8px;
    width: 45px;
    height: 45px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.ql_si_wrapper .tooltip {
    position: absolute;
    top: 0;
    font-size: 14px;
    background: #ffffff;
    color: #ffffff;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.ql_si_wrapper .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #ffffff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.ql_si_wrapper .ql_si_icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.ql_si_wrapper .ql_si_icon:hover span,
.ql_si_wrapper .ql_si_icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.ql_si_wrapper .facebook:hover,
.ql_si_wrapper .facebook:hover .tooltip,
.ql_si_wrapper .facebook:hover .tooltip::before {
    background: #1877F2;
    color: #ffffff;
}

.ql_si_wrapper .twitter:hover,
.ql_si_wrapper .twitter:hover .tooltip,
.ql_si_wrapper .twitter:hover .tooltip::before {
    background: #000000;
    color: #ffffff;
}

.ql_si_wrapper .instagram:hover,
.ql_si_wrapper .instagram:hover .tooltip,
.ql_si_wrapper .instagram:hover .tooltip::before {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    color: #ffffff;
}

.ql_si_wrapper .github:hover,
.ql_si_wrapper .github:hover .tooltip,
.ql_si_wrapper .github:hover .tooltip::before {
    background: #0077B5;
    color: #ffffff;
}

.ql_si_wrapper .youtube:hover,
.ql_si_wrapper .youtube:hover .tooltip,
.ql_si_wrapper .youtube:hover .tooltip::before {
    background: #CD201F;
    color: #ffffff;
}


/* end */

.g-recaptcha {
    transform: scale(0.88);
    -webkit-transform: scale(0.88);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
}

.rc-anchor-checkbox-label {
    font-size: 20px;
}

.glance_new {
    background-color: #a30b0b;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .17);
    color: #fff;
    display: inline-block;
    font-size: 8px;
    font-weight: 600;
    line-height: 10px;
    min-height: 12px;
    padding: 1px 4px 0;
    z-index: 10000;
    position: absolute;
    top: 2px;
    right: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.glance_new_fixed {
    top: 13px !important;
}

.glance_new_mob {
    right: 90px;
    width: 9% !important;
}

.glance_new:after {
    top: 100%;
    left: 10px;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border: solid transparent;
    border-top-color: #ca2525;
    border-width: 4px;
    margin-left: -4px;
}

.gsib_b {
    height: 25px !important;
}

.multiselect-native-select {
    display: block;
    width: 100%;
}

.multiselect-native-select .btn-group {
    width: 100%;
}

.multiselect-native-select .btn-group .multiselect {
    text-align: left !important;
}

.multiselect-container {
    width: 100%;
    height: 300px;
    overflow: scroll;
}

.multiselect-container .multiselect-option {
    white-space: wrap !important;
    padding: 7px 15px;
}

.glance_new_gbf {
    float: unset !important;
    background-color: #a30b0b;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .17);
    color: #fff !important;
    display: block !important;
    font-size: 8px;
    font-weight: 600;
    line-height: 10px;
    min-height: 12px;
    padding: 1px 4px 0;
    position: absolute;
    top: 2px;
    right: 120px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.glance_new_gbf:after {
    top: 100%;
    left: 10px;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border: solid transparent;
    border-top-color: #ca2525;
    border-width: 4px;
    margin-left: -4px;
}


@media screen and (min-width: 1380px) and (max-width:1560px) {
    #main_header_right #main_header_rtop .nav .nav-item:nth-last-child(2) {
        width: 15%;
    }

    .menu_search_input {
        width: 85%;
    }

}

@media screen and (min-width: 1200px) and (max-width:1380px) {

    .pgevents_carousel .pgevent_image img,
    .upevents_carousel .pgevent_image img {
        height: 154px;
    }

    .pgevent_content {
        height: 106px;
    }

}

@media screen and (max-width: 1199px) {

    .pgevents_carousel .pgevent_image img,
    .upevents_carousel .pgevent_image img {
        height: auto !important;
    }
}

@media screen and (min-width: 300px) and (max-width:1380px) {
    .post_share_box {
        width: 53%;
    }

    .blog_date_time_sec {
        height: auto;
    }

    .social-share-btns-container {
        justify-content: flex-end;
        position: relative;
    }

    .social-share-btns {
        display: none;
        position: absolute;
        z-index: 1000;
        width: 60%;
        background-color: #ffffff;
        padding: 4px 0;
        text-align: center;
        top: 28px;
    }

    .social-share-btns>span {
        display: none;
    }

    .social-share-btns>a:nth-child(1) {
        display: none;
    }

    .mob_share_btn_sec {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        font-size: 14px;
        gap: 5px;
    }

    .mob_share_btn_sec img {
        display: block !important;
        width: 20px !important;
    }

    .mt-xs-15 {
        margin-top: 15px;
    }

    .page_heading p {
        font-size: 16px;
    }

    .main_btn {
        font-size: 16px;
    }

    .main_header .nav .nav-item .nav-link {
        color: #000000;
        font-size: 14px;
        font-weight: 600;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .header_join_mail_btn>.nav-link {
        padding: 5px 10px !important;
    }

    #main_header_rbottom::before {
        display: none;
    }

    #main_header_rbottom>.nav-pills>.nav-item>.dropdown-toggle::after {
        content: '\f105';
        font-family: 'Font Awesome 6 Free';
        border: 0px;
    }

    .xs-nav-item {
        display: flex;
        justify-content: space-between;
        width: 100%;
        padding: 15px;
        background-color: #004475;
        align-items: center;
    }

    .mobile_close_menu {
        padding: 8px 10px;
        cursor: pointer;
        color: #ffffff;
        border: 2px solid #ffffff;
        display: flex;
        align-items: center;
        border-radius: 5px;
    }

    #main_header_rtop::before {
        display: none;
    }

    #main_header_rtop .nav-pills .nav-item {
        display: none;
    }

    .nav-item-xs-topmenu {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 10px 7px;
    }

    /* join mail button */
    .header_join_mail_btn {

        color: inherit !important;
        font-size: calc(0.8rem + 4vmin) !important;
        border: 0;
        padding: var(--border-size) !important;
        display: flex !important;
        width: max-content;
        border-radius: 5px !important;
        background-color: transparent;

    }

    /* Change this background to transparent to see how the gradient works */
    .header_join_mail_btn a {
        background: #ffffff;
        border-radius: 5px;
        font-size: 15px;
        padding: 5px 16px;
    }

    #main_header_left {
        border: 0px;
        border-top: 1px solid #000000;
        padding: 9px;
    }


    /* end */

    #main_header_rtop_xs>.nav-pills {
        display: flex;
        justify-content: space-between;
        flex-direction: row;
    }

    #main_header_rtop_xs>.nav-pills>.nav-item>.nav-link {
        font-size: 12px !important;
        padding: 7px 10px !important;
    }

    .mobile_menu_open {
        border: 1px solid #ffffff;
        padding: 2px 6px;
        display: flex;
        align-items: center;
        flex-direction: row;
    }

    .mobile_menu_open img {
        width: 22px;
    }

    #main_header_rtop_xs {
        display: block;
        padding-left: 65px;
        padding-right: 60px;
    }

    .footer_section_3>ul,
    .footer_section_4>ul {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        align-content: flex-start;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 10px;
    }

    .footer_section_3>ul>li,
    .footer_section_4>ul>li {
        width: 48%;
    }

    .footer_grid h4::after {
        width: 100%;
        max-width: 100%;
    }

    .pgevent_content_title p {
        font-size: 16px;
    }

    .pgevent_content_date {
        font-weight: 700;
    }


    .cta_footer_box {
        text-align: center;
        margin-bottom: 5px;
        position: relative;
        margin-top: 10px;
    }

    .p-0-xs {
        padding-left: 0px;
        padding-right: 0px;
    }

    .footer_gallery_grid {
        border: 1px solid #fff;
        padding: 10px;
        justify-content: space-around;
        margin-bottom: 20px;
        border-radius: 7px;
    }

    .footer_gallery_item {
        width: 30%;
        border: 0;
        border-radius: 8px;
    }

    .footer_address_xs {
        text-align: center;
        margin-bottom: 30px;
    }

    .home_footer_address {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .footer_copyright_links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer_copyright_links .nav-item {
        text-align: center;
    }

    .footer_copyright_links .nav-item .nav-link {
        font-size: 14px;
        padding-right: 5px;
    }

    .footer_copy_para {
        padding: 15px 0;
        text-align: center !important;
        border-top: 2px solid #dddddd;
    }

    .cta_footer_box h4 {
        font-size: 16px;
    }

    .cta_footer_box img {
        width: 40px;
    }

    .home_cta_section {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .footer_grid ul li:nth-child(3) {
        display: none;
    }

    .footer_grid ul {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        align-content: flex-start;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 10px;
    }

    .main_btn {
        padding-left: 15px;
        padding-right: 15px;
    }

    .custom_dropdown_menu_img {
        display: none;
    }

    .custom_dropdown_menu {
        position: relative;
        z-index: 9999;
        border: 0px;
        top: unset;
        width: 85%;
        text-align: left;
        left: unset;
        background: #ffffff;
        transform: unset;
        transition: unset;
        visibility: visible;
        opacity: 1;
        box-shadow: unset;
        display: flex;
        display: none;
        flex-direction: row;
        padding: 0;
        gap: 15px;
        margin-left: 7%;
    }

    #main_header_rbottom {
        display: none;
    }

    #main_header_rbottom .nav .nav-item .nav-link::after {
        content: "\f054";
        font-family: 'Font Awesome 6 Free';
    }

    .custom_dropdown_menu ul {
        width: 100%;
    }

    #main_header_rbottom .nav .nav-item:hover>.custom_dropdown_menu {
        position: relative;
        transform: unset;
        transition: unset;
    }

    .custom_dropdown_menu li a.dropdown_item {
        color: #004475;
        font-weight: 600;
    }

    .Show_btns {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #main_header_left>a>img {
        width: 60%;
    }

    /* mobile menu icon css */
    .mmoh_menu {
        box-sizing: border-box;
        margin: auto;
        border-top: 1px solid #f6f6f6;
        background: linear-gradient(to bottom, #e0e0e0 32%, #fafafa 88%);
        border-radius: 0.5rem;
        box-shadow: 0 0.375rem 1rem 0 rgba(0, 0, 0, 49%);
        transition: box-shadow 0.2s, background 0.2s;
        cursor: pointer;
        width: 40px;
        height: 30px;
        padding: 2px 8px;
    }

    .mmoh_menu.is-hover {
        box-shadow: 0 0.125rem 0.75rem 0 rgba(0, 0, 0, 0.5);
        background: linear-gradient(to bottom, #dfdfdf 32%, #f0f0f0 88%);
    }

    .mmoh_menu.is-mousedown {
        border-top: 1px solid #dfdfdf;
        box-shadow: 0 0px 0.5rem 0 rgba(0, 0, 0, 0.6);
    }

    .icn_mmoh_menu {
        position: relative;
        top: 0.1875rem;
    }

    .icn_mmoh_menu span {
        display: block;
        width: 1.5rem;
        height: 2px;
        background: #000000;
        position: absolute;
        transition: transform 0.2s, opacity 0.2s, width 0.2s;
    }

    .icn_mmoh_menu span.mmo_ihm_2 {
        top: 0.5rem;
    }

    .icn_mmoh_menu span.mmo_ihm_3 {
        top: 1rem;
    }

    .mmoh_menu.is-active .icn_mmoh_menu .mmo_ihm_1 {
        transform: rotate(45deg) translate3d(0.375rem, 0.375rem, 0);
    }

    .mmoh_menu.is-active .icn_mmoh_menu .mmo_ihm_2 {
        transform: translate3d(-1rem, 0, 0);
        opacity: 0;
    }

    .mmoh_menu.is-active .icn_mmoh_menu .mmo_ihm_3 {
        transform: rotate(-45deg) translate3d(0.34375rem, -0.34375rem, 0);
    }

    #mobile_sidebar_menu {
        position: fixed;
        top: 0;
        display: block;
        left: -80%;
        width: 80%;
        background: #ffffff;
        height: 100vh;
        z-index: 100000;
        overflow-y: scroll;
    }

    #mobile_sidebar_menu .nav {
        height: 100%;
        display: flex;
        flex-wrap: nowrap;
        flex-direction: column;
    }

    #mobile_sidebar_menu .nav .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(0, 64, 110, 0.29);
    }

    #mobile_sidebar_menu .nav .nav-item .nav-link {
        color: #000000;
        font-weight: 600;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        padding: 13px 16px;
    }



    /* end */


}

@media screen and (min-width: 768px) and (max-width:1280px) {
    .footer_grid ul {
        flex-direction: column;
    }

    .footer_section_3>ul>li,
    .footer_section_4>ul>li {
        width: 100%;
    }

    .modal-dialog {
        max-width: 85%;
    }

    .home_cta_left img {
        width: 70%;
    }

    .home_cta_left {
        text-align: center;
    }

    .footer_copyright_links {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center;
    }

    .footer_copyright_links .nav-item .nav-link {
        padding-left: 15px;
        padding-right: 15px;
        font-size: 14px !important;
    }

    #connect_us_modal .float_modal_dialog {
        width: 90%;
        max-width: 90%;
    }

    .connect_us_modal_left {
        display: none;
    }

    .quicklink_form_content a {
        flex-basis: 30.5%;
    }

    .float_modal_dialog .modal-content .modal-header {
        padding-left: 20px;
    }

    .connect_us_modal_form {
        padding-top: 10px;
    }

    #connect_us_modalLabel {
        padding-left: 6px;
    }

}

@media screen and (max-width: 1380px) {
    .mt-xs-30 {
        margin-top: 30px;
    }

}

@media screen and (max-width: 600px) {

    .pgevents_carousel .pgevent_image img,
    .upevents_carousel .pgevent_image img {
        height: auto;
    }

    .masterclass_about_maintabs .nav-tabs li {
        width: 100%;
        margin-bottom: 30px;
    }

    .masterclass_about_maintabs .nav-tabs {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 0px;
    }

    .home_cta_left img {
        width: 100%;
    }

    .footer_arrow_right::after {
        width: 210px;
        height: 2px;
        background: #ffffff;
        right: auto;
        top: unset;
        bottom: -10px;
        left: 25%;
    }

    #main_header_rtop_xs {
        padding-left: 20px;
        padding-right: 20px;
    }

    .register_btn_sec {
        padding: 0px;
    }

    #connect_us_modal .float_modal_dialog,
    #quick_link_modal .float_modal_dialog {
        min-width: 90%;
        margin-left: 5%;
        width: 90%;
    }

    .cwu_groupselect {
        flex-basis: 47% !important;
    }

    .g-recaptcha-response_error {
        margin-left: 0px !important;
    }

    .sidebar_floating_btn {
        margin-bottom: 15px;
    }

    .connect_us_modal_right {
        padding: 0px 20px;
    }

    .quicklink_form_content a {
        flex-basis: 46.5%;
    }

    .glance_new_gbf {
        right: 55px;
        width: max-content !important;
        top: 0;
    }

}

@media screen and (max-width: 320px) {
    .main_btn {
        font-size: 14px;
    }

    .pgevent_content_date {
        width: unset;
        flex-basis: 23%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .pgevent_content_title {
        flex-basis: 77%;
    }

    .g-recaptcha {
        transform: scale(0.77);
        -webkit-transform: scale(0.77);
        transform-origin: 0 0;
        -webkit-transform-origin: 0 0;
    }

    .quicklink_form_content a {
        flex-basis: 45.5%;
        height: 130px;
        padding: 10px;
    }

    .quicklink_form_content a p {
        font-size: 12px;
        margin-top: 5px;
    }

    .ql_si_wrapper .ql_si_icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
        margin: 0px 5px;
    }

    .float_modal_dialog {
        margin-top: 25px;
    }

    .connect_us_modal_form .container-fluid .row .col-12 {
        padding-left: 0px;
        padding-right: 0px;
    }

    .cwu_groupselect {
        flex-basis: 100% !important;
    }








}