:root {
    --blue: #00B6DD;
    --gray: #999999;
    --white: #ffffff;
    --black: #222222;
    --zblack: #000;
    --zBlue: #0084B0;
    --lBlue: #E6F7FC;
    --lGray: #F2F2F2;
}

body {
    color: var(--black);
    font-family: 'Poppins' !important;
}

body.no-scroll {
    overflow: hidden;
}

a {
    transition: all .3s ease;
    color: var(--blue);
    display: inline-block;
}

a:hover {
    color: var(--zBlue);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.row {
    display: flex;
}

.slick-dots {
    padding: 20px 0 0;
    bottom: 0;
    position: relative;
}

.slick-dots li button:before {
    width: 30px;
    height: 30px;
    opacity: 1;
    display: none;
}

.slick-dots li button li {
    width: 15px;
    height: 15px;
}

.slick-dots li button {
    background-color: #c9e6f1;
    width: 15px;
    height: 15px;
    opacity: 0.5;
}

.slick-dots li.slick-active button {
    background-color: var(--blue);
    opacity: 1;
}

.card-number p {
    text-align: center;
}

/*--header-----------------*/
.header-sec {
    position: sticky;
    top: 0;
    background-color: var(--white);
    z-index: 9;
}

.header-sec.active {
    box-shadow: 0 -12px 12px 10px rgba(0, 0, 0, .15);
}

.main-header {
    padding: 0 15px;
}

.main-header .row {
    justify-content: space-between;
    gap: 30px;
    align-items: center;
}

.main-header .logo-box img {
    width: auto;
    height: 40px;
}

.main-header .logo-box a {
    display: flex;
}

.mobileMenuBtn {
    display: none;
}

.desktop-menu>ul {
    padding: 0;
    margin: 0;
    display: flex;
}

.desktop-menu>ul>li {
    font-size: 16px;
    display: block;
    position: relative;
}

.desktop-menu>ul>li>a {
    color: var(--black);
    position: relative;
    padding: 0px 15px;
    display: block;
}

.desktop-menu>ul>li:hover>a,
.desktop-menu>ul>li:focus>a {
    color: var(--blue);
}
.head-row{
    padding-bottom: 15px;
    padding-top: 2px;
}

@media (min-width: 1025px) {
    .desktop-menu span.menu-arrow {
        display: none !important;
    }

    ul.dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
        display: none;
        float: left;
        min-width: 10rem;
        padding: .5rem 0;
        margin: 0;
        font-size: .95rem;
        color: #4c5966;
        text-align: left;
        list-style: none;
        background-color: var(--white);
        background-clip: padding-box;
        border: none;
        border-top: 1px solid #ddd;
        border-radius: 0;
        box-shadow: 0 .5rem 1rem -.5rem rgba(0, 0, 0, .175) !important;
        line-height: 1.6;
    }

    .desktop-menu>ul>li:hover ul.dropdown-menu,
    .desktop-menu>ul>li:focus ul.dropdown-menu {
        animation-name: o;
        animation-duration: .3s;
        animation-timing-function: ease-in-out;
        animation-fill-mode: both;
        backface-visibility: hidden;
        opacity: 1;
        display: block;
    }

    .desktop-menu>ul>li:hover>a:after,
    .desktop-menu>ul>li:focus>a:after {
        opacity: 1;
        transform: scaleX(1);
    }

    .desktop-menu>ul>li>a:after {
        content: "";
        position: absolute;
        bottom: 0px;
        left: 1rem;
        width: 30px;
        height: 2px;
        background-color: var(--blue);
        transform: scaleX(0);
        transform-origin: left center;
        opacity: 0;
        transition: opacity .3s ease, transform .3s ease, color .3s ease, background-color .3s ease, border-color .3s ease, box-shadow .3s ease, text-shadow .3s ease,
            -webkit-text-stroke .3s ease, text-stroke .3s ease, text-decoration-color .3s ease;
    }
}

@keyframes o {
    0% {
        opacity: 0;
        transform: translateX(-10px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

ul.dropdown-menu li {
    display: block;
    position: relative;
}

ul.dropdown-menu li a {
    display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: var(--black);
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

ul.dropdown-menu li a:hover,
ul.dropdown-menu li a:focus {
    color: var(--blue);
}

@media (max-width: 1199px) {
    .desktop-menu>ul>li>a {
        font-size: 14px;
    }

    ul.dropdown-menu li a {
        padding: .25rem 1rem;
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .sb-banner{
        min-height: 300px !important;
    }
    .blog .site-main,
    .category-blog .content-wrapper{
        padding: 2vw;
    }
    .show .has-grand-children .dropdown-menu{
        border-top: none !important;
        padding-left: 1.5rem !important;
        position: relative !important;
        left: 0px !important;
        right: 0px !important;
        display: block !important;
}
.has-grand-children .dropdown-menu li::before{
    content: '-';
    position: absolute;
    top: 50%;
    left: -5px;
    transform: translate(0px, -50%);

}
.has-grand-children::before{
	display:none !important;
}
    .main-header {
        padding: 15px 15px;
    }

    .desktop-menu {
        display: none;
    }

    .mobileMenuBtn {
        display: block;
    }

    .desktop-menu {
        display: none;
    }

    .mobileMenuBtn-in {
        padding: 0;
        background: none;
        border: none;
        cursor: pointer;
    }

    .mobileMenuBtn-in span {
        width: 45px;
        height: 3px;
        border-radius: 3px;
        display: block;
        background-color: var(--blue);
        position: relative;
        transition: all .4s ease;
        backface-visibility: hidden;
    }

    .mobileMenuBtn-in span:first-of-type {
        top: -1px;
        transform-origin: 50% 50%;
        transition: transform .1s ease;
        width: 30px;
    }

    .mobileMenuBtn-in span:nth-of-type(2) {
        top: 0;
    }

    .mobileMenuBtn-in span+span {
        margin-top: 10px;
    }

    .mobileMenuBtn-in span:nth-of-type(3) {
        top: 1px;
        width: 22.5px;
        margin-left: 50%;
    }

    .mobileMenuBtn-in.active {
        z-index: 2001;
        height: 29px;
        position: relative;
    }

    .mobileMenuBtn-in.active span:first-of-type {
        transform: scaleX(0) translateY(10px);
        transition-delay: 0s;
    }

    .mobileMenuBtn-in.active span:nth-of-type(2) {
        transform: rotate(-45deg);
        margin: 0;
        top: 11px;
    }

    .mobileMenuBtn-in.active span:nth-of-type(3) {
        transform: rotate(45deg);
        width: 100%;
        margin: 0;
        top: 8px;
    }

    .desktop-menu>ul {
        flex-flow: column;
    }

    .desktop-menu {
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 9;
        width: 100%;
        height: calc(100% - 70px);
        background-color: var(--lGray);
        overflow: hidden;
        overflow-y: auto;
    }

    .desktop-menu.active {
        display: block;
    }

    .desktop-menu>ul>li>a {
        font-size: 24px;
        padding: 16px 15px;
        font-weight: 600;
    }

    .desktop-menu>ul>li {
        border-bottom: #e4e4e4 1px solid;
    }

    .desktop-menu>ul>li span.menu-arrow {
        position: absolute;
        top: 14px;
        right: 15px;
        background-color: transparent;
        width: 40px;
        height: 40px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 30px;
        line-height: 1;
        z-index: 1;
    }

    .desktop-menu ul.dropdown-menu {
        position: fixed;
        top: 0;
        left: 0;
        transform: none;
        background: white;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        display: none;
        width: 100%;
        z-index: 999;
        height: 100%;
    }

    .desktop-menu ul.dropdown-menu.show {
        display: block;
    }


    .desktop-menu ul.dropdown-menu span.back-button {
        position: absolute;
        left: 15px;
        color: var(--blue);
        cursor: pointer;
        padding: 21px 20px 21px 0;
        display: block;
        top: 0;
    }

    .desktop-menu ul.dropdown-menu .menu-header {
        text-align: center;
        padding: 20px 100px;
        border-bottom: var(--lGray) 1px solid;
        position: relative;
    }

    .desktop-menu ul.dropdown-menu span.menu-title {
        color: var(--black);
        font-weight: 600;
        font-size: 18px;
    }

    ul.dropdown-menu li a {
        font-size: 24px;
        padding: 16px 15px;
        font-weight: 600;
        white-space: inherit;
    }
}

@media (max-width: 767px) {

    ul.dropdown-menu li a {
        font-size: 18px;
        padding: 12px 15px;
        line-height: 23px;
    }
    
}



/*--resources-sec--*/
.resources-card:hover h3,
.resources-card:hover h5 {
    color: var(--white) !important;
}

.resources-card:hover .resources-card-icon svg {
    fill: var(--white) !important;
}


/*--newsletter-sec--*/
.newsletter_form {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 10px 0 0;
}

.newsletter_form .input-box input {
    width: 100%;
    padding: 10px 175px 10px 20px;
    border-radius: 100px;
    border: #CCC 1px solid;
}

.newsletter_form .submit-box {
    position: absolute;
    top: 1px;
    right: 1px;
}

.newsletter_form p {
    margin: 0;
}

.newsletter_form .submit-box span.wpcf7-spinner {
    display: none !important;
}

@media (max-width: 767px) {
    .sb-banner{
        min-height: 200px !important;
    }
    #post-filters{
        flex-direction: column;
    }
    .newsletter_form .input-box input {
        padding: 10px 20px 10px 20px;
    }

    .newsletter_form .submit-box {
        position: inherit;
        top: 10px;
        right: 0;
        text-align: center;
    }

    .newsletter_form {
        max-width: 100%;
    }
}


/*--signup-form--*/
.signup_form .input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
}

.signup_form .input-box {
    padding: 10px 0;
}

.signup_form .input-box p {
    margin: 0;
}

.signup_form .input-box label {
    font-family: 'Poppins';
    color: var(--white);
    font-size: 12px;
}

.signup_form .input-box input,
.signup_form .input-box select {
    border: none;
    border-radius: 0;
    background: transparent;
    border-bottom: #ffffff 1px solid;
    color: var(--white);
    padding: 15px 0;
    outline: none !important;
}

.signup_form .input-box input:focus,
.signup_form .input-box select:focus {
    background-color: hsl(0deg 0% 100% / 11%);
}

.signup_form .submit-box {
    padding: 20px 0 0;
    text-align: center;
}

.signup_form .submit-box p {
    margin: 0;
    display: flex;
    justify-content: center;
    flex-flow: column;
}

.signup_form .submit-box span.wpcf7-spinner {
    margin: 10px auto 0;
}

.signup_form .submit-box input {
    background-color: var(--white) !important;
    color: var(--blue) !important;
    width: 200px;
    margin: 0 auto;
    border: none !important;
}

.signup_form .submit-box input:hover,
.signup_form .submit-box input:focus {
    background-color: var(--zBlue) !important;
    color: var(--white) !important;
}

.wpcf7-response-output {
    text-align: center;
}

.signup_form .input-box label i {
    color: #d90000;
    font-style: normal;
    font-size: 14px;
}

span.wpcf7-not-valid-tip {
    font-size: 14px;
    font-family: 'Poppins';
    font-weight: 400;
    font-style: italic;
}

.condition-box {
    padding: 20px 0;
}

.condition-box p {
    margin: 0;
}

.condition-box span.wpcf7-list-item {
    margin: 0;
}

.condition-box label {
    position: relative;
    padding-left: 30px;
}

.condition-box input {
    width: 20px;
    height: 20px;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    position: absolute;
    left: 0;
    top: 2px;
}

.condition-box span.wpcf7-list-item-label {
    color: var(--white);
    font-size: 14px;
    line-height: 20px;
}

.condition-box span.wpcf7-list-item-label a {
    color: var(--white);
    font-weight: 700;
    text-decoration: underline;
}

.plain-text-box p {
    color: var(--white);
    font-size: 14px;
    line-height: 22px;
    margin: 0;
}

@media (max-width: 767px) {
    .signup_form .input-group {
        grid-template-columns: 1fr;
    }
}


/*--testimonial-sec--*/
.testimonial-slide {
    text-align: center;
    color: var(--black);
}

.testimonial-slide h3.h3u {
    margin-bottom: 2px;
}

.testimonial-slider {
    margin-bottom: 0 !important;
}


/*--Speak-to-an-expert-page-*/
.dark-color-form .signup_form .input-box label {
    color: var(--black);
    font-size: 16px;
}

.dark-color-form .signup_form .input-box input,
.dark-color-form .signup_form .input-box select {
    border-color: var(--black);
    color: var(--black);
}

.dark-color-form .signup_form .submit-box input {
    background-color: var(--blue) !important;
    color: var(--white) !important;
}

.dark-color-form .signup_form .submit-box input:hover,
.dark-color-form .signup_form .submit-box input:focus {
    background-color: var(--zBlue) !important;
}

.short-size-form .signup_form .input-group {
    grid-template-columns: 1fr;
}

.dark-color-form .condition-box span.wpcf7-list-item-label,
.dark-color-form .condition-box span.wpcf7-list-item-label a,
.dark-color-form .plain-text-box p {
    color: var(--black);
}

.overflow-hidden>.elementor-widget-container {
    overflow: hidden !important;
}

div#animationContainer {
    display: flex;
}


/*--tab-sec--*/
@media (max-width: 767px) {
    div#tab-imgbox div#default-img {
        display: block !important;
    }

    div#claim-img,
    div#ncra-img,
    div#traf-img,
    div#ra-img {
        display: none !important;
    }

    .image-box-tab {
        display: block !important;
    }
}

/*--inner-pages--*/
.inline-items-list {
    display: flex;
    flex-flow: wrap !important;
}

.icon-card-box h3.elementor-icon-box-title {
    margin-top: 0 !important;
}

.icon-card-box .elementor-icon-box-wrapper {
    position: relative;
}

.icon-card-box:not(:last-child) .elementor-icon-box-wrapper:after {
    content: '';
    width: 1px;
    height: 100%;
    position: absolute;
    top: 16px;
    left: 10px;
    background-color: var(--zBlue);
}

.icon-card-box .elementor-icon-box-icon {
    position: relative;
    z-index: 1;
}



.teams--boxes .leader_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.teams--boxes .leader_title h5 {
    font-size: clamp(20px, 3vw, 26px);
    line-height: 1.2;
    font-weight: 600;
    color: #1b1b1b;
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    max-width: 275px;
}

.teams--boxes .elementor-widget-image-box figure.elementor-image-box-img *
{
width: 100%;
}

.teams--boxes .sub-desc span {
    font-weight: 600;
    padding-bottom: 10px;
    display: block;
}

.teams--boxes .leader_title a.linkedin {
    background: #fafafa;
    width: 37px;
    height: 37px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.33s ease-in-out;

}

.teams--boxes .leader_title a.linkedin:hover {
    background: var(--blue);
}

.teams--boxes .elementor-widget-html {
    position: fixed;
    z-index: 9998;
    background-color: rgba(117, 117, 117, .75);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: none;
}

.teams--boxes .elementor-widget-html.open {
    display: block;
}

.teams--boxes .elementor-widget-html.open .elementor-widget-container {
    display: flex;
}

.teams--boxes .modal-content {
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: auto;
    background: var(--white);
    align-content: center;
    align-items: center;
    padding: clamp(20px, 3vw, 100px);
    gap: clamp(10px, 3vw, 30px);
    outline: 1px solid var(--blue);
    outline-offset: -20px;
    position: relative;
}

.teams--boxes button.modal-open {
    background: transparent;
    border: 0px;
    padding: 0px;
    color: var(--blue);
    font-weight: 400;
    font-size: 16px;
}

.teams--boxes .elementor-image-box-content {
    padding: 10px clamp(10px, 2vw, 20px) !important;
}

.teams--boxes button.modal-open:hover,
.teams--boxes button.modal-open:focus {
    color: #000 !important;
    background: transparent;
    border: 0px;
}

.teams--boxes .leader-profile img {
    width: 100%;
    height: 400px;
    max-width: 400px;
}

.teams--boxes .modal-content>div {
    width: 100%;
}

.teams--boxes button.modal-close {
    aspect-ratio: 1;
    position: absolute;
    top: 30px;
    right: 30px;
    text-transform: lowercase;
    padding: 5px 10px;
}

.teams--boxes .sub-desc p {
    max-height: 180px;
    overflow-y: auto;
    padding-right: 20px;
}

.teams--boxes .elementor-widget-image-box .sub-desc p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.teams--boxes .sub-desc p::-webkit-scrollbar {
    width: 4px;
}

.teams--boxes .sub-desc p::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

.teams--boxes .sub-desc p::-webkit-scrollbar-thumb {
    background: var(--blue);
    border-radius: 10px;
}

.main--checkbox .wpcf7-checkbox span label,
.about--norwood.input-box>div .wpcf7-checkbox label,
.spoken--event.input-box .wpcf7-checkbox label {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px 0px;
}

.main--checkbox .wpcf7-checkbox span,
.about--norwood.input-box>div span,
.spoken--event.input-box span {
    display: block;
    margin: 0px;
}

.speaker_form label {
    color: var(--black);
    font-size: 16px;
    font-family: 'Poppins';
    line-height: 25px;
}

.speaker_form .input-box input,
.speaker_form .input-box select,
.speaker_form .input-box textarea {
    border: none;
    border-radius: 0;
    background: transparent;
    border-bottom: #000 1px solid;
    /* color: var(--white); */
    padding: 15px 0;
    outline: none !important;
}

.speaker_form span.wpcf7-list-item.first {
    margin-left: 0px;
}

.speaker_form .input-box textarea {
    height: 50px;
}
.speaker_form .input-box.contact--person .input-box {
    flex-grow: 1;
}

.speaker_form .input-box.contact--person>p {
    width: 320px;
}

.speaker_form .input-box.contact--person .input-box .input-box {
    display: flex;
    gap: 20px;
}

.speaker_form .about--norwood.input-box {
    display: flex;
}

.speaker_form .about--norwood.input-box>div {
    width: 100%;
}

.speaker_form .event--details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.speaker_form .event--details>div {
    width: calc(100% / 2 - 10px);
}

.spoken--event.input-box span.wpcf7-form-control.wpcf7-radio {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.spoken--event.input-box span.wpcf7-form-control.wpcf7-radio span.wpcf7-list-item label {
    display: flex;
    gap: 10px;
}
.venue-form input{
    padding-top: 10px !important;
}

.piller-content-boxes .piller-content-box {
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    height: fit-content !important;
}

.piller-content-box {
    opacity: 0;
    visibility: hidden;
    transform: translate(0, 100px);
    transition: all 1s ease;
    -webkit-transition: all 2s ease-in;
}

.piller-content-box.active {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
}

a.cbtn {
    opacity: 0.6;
}

a.cbtn.active,
a.cbtn:hover {
    opacity: 1;
}
.menu-header{
	display:none;
}
@media (max-width: 1024px) {
    .show .menu-header {
        display: block !important;
    }
    .teams--boxes .modal-content {
        max-width: 90%;
    }

    .teams--boxes .elementor-widget-image-box .elementor-image-box-img {
        text-align: center;
    }
    .topnav{
        display:none !important;
    }
    .single-news #content{
        padding: 4vw 2vw;
    }
}


@media (max-width: 767px) {
    .single-video #content{
        padding: 4vw !important;
    }
    .single-news-wrapper,
    .category-blog .content-wrapper{
        flex-direction: column;
    }
    .sb-head{
        margin-top: 0px !important;
    }
    .single-news{
        width:100% !important;
    }
    .news-sidebar{
        width: 100% !important;
    }
    .single-news #content {
        padding: 4vw !important;
    }

    .teams--boxes .modal-content {
        flex-direction: column;
        outline-offset: -10px;
    }

    .teams--boxes .leader-profile img {
        height: 300px;
        max-width: 300px;
    }

    .leader-profile {
        margin: 0 auto;
        text-align: center;
    }

    .teams--boxes button.modal-close {
        top: 20px;
        right: 20px;
    }

    .speaker_form .input-box.contact--person {
        flex-direction: column;
    }

    .speaker_form .about--norwood.input-box {
        flex-direction: column;
    }

    .speaker_form .event--details {
        flex-direction: column;
    }

    .speaker_form .event--details>div {
        width: 100%;
    }

    .event--details .left--section p,
    .event--details .right--section p {
        margin-bottom: 0px !important;
    }

    .spoken--event.input-box span.wpcf7-form-control.wpcf7-radio {
        margin-top: 10px;
    }

    .piller-content-boxes .piller-content-box {
        height: auto !important;
        transform: none !important;
        display: flex !important;
        position: relative !important;
        display: none !important;
    }

    .piller-content-box.active {
        display: flex !important;
    }
}



/*--footer--*/
.footer-main .row {
    display: grid;
    grid-template-columns: 1fr 4fr;
    gap: 30px;
}

.footer-main {
    padding: 70px 15px;
}

.footer-sec {
    position: relative;
    z-index: 1;
    box-shadow: 0 -12px 12px -16px rgba(0, 0, 0, .3);
}

.f-logo-box .f-logo-box-in img {
    width: 100%;
    max-width: 160px;
}

.f-logo-box-info {
    padding: 20px 0;
}

.f-logo-box-info ul {
    padding: 0;
}

.f-logo-box-info ul li {
    display: block;
    font-family: 'Poppins';
    color: var(--black);
}

.f-logo-box-info ul li:not(:last-child) {
    margin-bottom: 10px;
}

.f_logo_box_social a svg {
    width: 22px;
    height: 22px;
}

.f_logo_box_social a svg path {
    fill: var(--black);
}

.f_logo_box_social {
    display: flex;
    gap: 10px;
    align-items: center;
}

.f_logo_box_social a {
    display: flex;
    align-items: center;
}

.f_logo_box_social a:hover svg path {
    fill: var(--blue);
}

.footer-menu-box ul {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px 30px;
}

.footer-menu-box ul li {
    display: block;
    font-size: 14px;
    font-family: 'Poppins';
    line-height: 18px;
}

.footer-menu-box ul li a {
    color: var(--black);
}

.footer-menu-box ul li a:hover {
    color: var(--blue);
}

.footer-copyright p {
    margin: 0;
    text-align: center;
    font-family: 'Poppins';
    font-size: 14px;
}

.footer-copyright {
    text-align: center;
    padding: 0 15px 20px;
}

@media (max-width: 1199px) {
    .footer-menu-box ul {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 991px) {
    .footer-main .row {
        display: block;
    }

    .footer-menu-box {
        padding: 40px 0 0;
    }

    .f-logo-box {
        display: flex;
        flex-flow: column;
        align-items: center;
    }

    .f-logo-box-info ul {
        text-align: center;
    }
    .post-box{
        width:48% !important;
    }
}

@media (max-width: 767px) {
    .footer-menu-box ul {
        grid-template-columns: 1fr 1fr;
    }

    .footer-main {
        padding: 40px 15px;
    }

    .footer-menu-box {
        padding: 30px 0 0;
    }
    .show .menu-header{
        display: block !important;
    }
    .news-category p{
        font-size: 2vw;
    }
    .news .post-head {
        padding: 5vw 2vw 3vw !important;
    }
}

@media (max-width: 480px) {
    .footer-menu-box ul {
        grid-template-columns: 1fr;
    }
    .videos .post-head {
        padding: 4vw 2vw 4vw !important;
    }
    .footer-copyright p {
        font-size: 12px;
    }
    .post-banner {
        text-align: center;
    padding: 2vw;
    }
    .posts-container{
        display: block !important;
    }
    .post-box{
        width: 100% !important;
        margin-bottom: 4vw;
    }
    .post-head {
        padding: 4vw 4vw !important;
    }
    .post-date{
        padding: 6vw 0px !important;
        text-align: center;
    }
    .news-category p{
        font-size: 4.4vw !important;
    }
    .archive .news .post-head{
        padding: 10vw 8vw 10vw !important;
    }
}
.has-grand-children .dropdown-menu{
	width:100%;
    left: unset !important;
    right: -10rem !important;
    max-width: fit-content !important;
    border-top: 1px solid #00B6DD;
    top: 0 !important;
    display: none !important;

}
.has-grand-children:hover .dropdown-menu{
	display:block !important;
}
.has-grand-children .dropdown-menu:hover{
	display:block !important;
}
.has-grand-children::before{
    content: '>';
    position: absolute;
    top: 50%;
    width: 20px;
    transform: translate(0%, -50%);
    right: 6px;
    font-size: 22px;
    color: #222222;
    text-align: center;
    z-index: 1;
}
.has-grand-children:hover::before{
	color:#00b6dd;
}
.has-grand-children{
    padding-right: 8px !important;
}
.topnav{
    width: 100%;
    padding-right: 15px;
    display: flex;
   padding-top: 10px;
    justify-content: end;
    padding-right: 15px;
    align-items: center;
}
.resolve-d{
    background: #00abc9;
    padding: 8px 18px;
    color: #fff;
    border-radius: 25px;
    margin-left: 2rem;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.es ease;
}
.resolve-d:hover{
    background-color: #0084b0;
    color: #fff !important;
}

/* __________________________________________________________________ */
.signup_form .input-box select option {
    color: #000;
}
.icon-card-box.purple--line:not(:last-child) .elementor-icon-box-wrapper:after {
    content: '';
    width: 1px;
    height: 100%;
    position: absolute;
    top: 16px;
    left: 10px;
    background-color: #13305f;
}
.text--Hoverul .elementor-icon-list-item:hover .elementor-icon-list-text {
    text-decoration: underline;
    text-underline-offset: 3px;
}
.blue{
	color:#40609b !important;
}
.blue1{
	color:#51b3d9 !important;
}
.pr{
	position:relative;
	overflow:hidden;
}

/* popup css */
#targetSection {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay Styles */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

/* Popup Styles */
.popup {
	position:relative;
      background: #fff;
    padding: 40px;
    max-width: 90%;
    width: 600px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}
.blue{
	color:#00b6dd !important;
}

/* Hide Class */
.hidden {
  display: none;
}

/* Prevent scrolling on body when popup is open */
body.no-scroll {
  overflow: hidden;
}
.close-x{
	   position: absolute;
    top: -20px;
    right: -20px;
    padding: 0px !important;
    width: 50px;
    height: 50px;
    margin-bottom: 8px;
    font-weight: 700 !important;
}

.d-flex1 input{
	width: 80%;
    margin: 0rem 0rem 1.2rem;
    border-bottom: 1px solid #00b6dd !important;
    border: none;
    background: #e4f2f8;
    color: #000;
}
.d-flex1 input:focus,
.d-flex1 input:focus-visible{
	outline:none !important;
}
/*  */
.speaker_drop select{
    margin: 1rem 0rem ;
    width: 50%;
    background: #e6f7fc;
    border-radius: 15px;
    border: 1px solid transparent;
}
/* blog page css----------------------------------------------------------------------------- */
.blog .site-main,
.single-post .site-main{
    max-width: 1200px !important;
    padding-bottom: 4vw;
}
.post-banner{
    height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00abc9;
    border-radius: 30px;
    color: #fff;
    flex-direction: column;
    margin-bottom: 4vw;
}
.post-box{
    width: 31%;
    /* border: 1px solid #ccc; */
    border-radius: 40px;
    box-shadow: 1px 2px 6px #ccc;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.post-box .news-category{
    min-height: 25px;
}
.post-box:hover{
    box-shadow: #ccc 0px 20px 30px -10px;;
}
.post-img{
    overflow: hidden;
    border-top-right-radius: 40px;
    border-top-left-radius: 40px;
    max-height: 215px;
    transition: all 0.3s ease;
}
.post-img img{
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    transition: all 0.3s ease;
}
.post-head{
    padding: 1vw 2vw;
}
.post-date p {
margin-bottom: 0px;
    text-transform: capitalize;
}
.post-date{
    padding: 2vw;
    background: #f7f7f7;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}
.read-more-post a{
    border: 1px solid #eee;
    padding: 6px 25px;
    border-radius: 50px;
}
.posts-container{
    display: flex    ;
        flex-wrap: wrap;
        gap: 2.2vw;
        justify-content: center;
}
.post-box:hover .post-img img{
    transform: scale(1.2);
}
.post-box:hover .read-more-post a{
    background: #00abc9;
    color: #fff;
    border: 1px solid #00abc9;
}
/* single blog css */
.sb-banner{
    position: relative;
    min-height: 400px;
    overflow: hidden;
}
.sb-banner img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.sb-head{
    margin-top: 2rem;
}
.sb-head-content video{
    width: 100%;
}
.news .posts-container{
    margin-top: 4vw;
    margin-bottom: 4vw;
}
/* .news .post-date{
    position: absolute;
    bottom: 0px;
    width: 100%;
} */
.news .post-head {
    padding: 3vw 2vw 2vw !important;
}
.read-more-news a{
    padding: 8px 25px;
    background: #00abc9;
    border-radius: 25px;
    color: #fff;
    transition: all 0.3s ease;
}
.read-more-news a:hover{
    box-shadow: 1px 10px 10px -10px rgba(0, 0, 24, 0.5);
    transform:scale(1.1);
}

.news-category p{
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.4vw;
    font-weight: 600;
    color: #0084B0;
}
.post-banner p {
    text-align: center;
}
.videos .post-head {
    padding: 1vw 2vw 1vw !important;
}
.play-pause{
    position: absolute;
    z-index: 9;
    animation: 0;
    left: 50%;
    top: 10%;
    transform: translate(-50%, 0px);
}
.single-page-video{
    width: 75%;
    display: block;
    margin: auto;
}
.single-video #content{
    padding: 4vw 0vw;
}
.single-videos video{
    width: 100%;
}
.back{
    margin-bottom: 2vw;
    color: #04abc9;
    font-weight: 500;
}
.video-data{
    margin-top: 2vw;
}
.archive #content{
    max-width:1200px !important;
    padding-bottom: 4vw;
}
.blog .page-header,
.blog .page-content,
.single-post .page-header,
.single-post .page-content{
    display: none !important;
}
.single-blog{
    max-width: 800px;
    display: block;
    margin: auto;
}
.pr{
    position: relative;
}
#post-filters,
#video-filter-form,
#resource-form{
    display: flex;
    align-items: center;
    gap:20px;
    margin-bottom: 2rem;
}
#post-filters select,
#video-filter-form select ,
#resource-form select{
    max-width: 350px;
    min-height: 47px;
    padding: 6px 16px;
    border-radius: 8px;
    font-weight: 500;
    background: #e6f7fc;
    border: 1px solid transparent;
    border-bottom: 2px solid #00abc9;
    box-shadow: 0px 10px 8px -12px rgba(0, 0, 24, 0.5);
}
#post-filters select option,
#video-filter-form select option{
    background-color: #fff !important;
}
#post-filters select:focus,
#post-filters select:focus-visible,
#video-filter-form select:focus,
#video-filter-form select:focus-visible,
#resource-form select:focus,
#resource-form select:focus-visible{
    outline:0px !important;

}
.archive .post-img img{
    width:100% !important;
}
.news-sidebar,
.category-blog .sidebar{
    flex: 1 1 30%;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid transparent;
}
.news-categories-sidebar ul,
.category-blog .sidebar ul{
    list-style-type: none;
    padding-left: 0px;
}
.news_category-news,
.category-blog{
    max-width: 1200px !important;
    padding: 4vw 0vw;
}
