@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Raleway:wght@300;400;700&display=swap');

* {
    /* margin: 0px!important; */
    padding: 0px !important;
}

body {
    font-family: 'Raleway', sans-serif;
}

h3 {
    font-family: 'Lato', sans-serif !important;
}

.header-top-bar {
    /* padding: 0px 75px !important; */
    background-color: #ececec;
}

.header-top-bar .container-fluid {
    width: auto;
    margin-left: auto;
    margin-right: auto;
}

.header-contact-details {
    display: flex;
    justify-content: space-between;
    align-items: center !important;
    width: 115px;
    font-size: 18px;
}

.header-contact-details a {
    color: #0A1F41 !important;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #0A1F41;
}

.header-contact-details span>i {
    color: #0A1F41 !important;
}


.header-socials {
    text-align: right;
}

.header-socials>li {
    display: inline-block;
    margin-right: 10px;
    border: 2px solid #0A1F41;
    border-radius: 100%;
    padding: 4px 8px !important;
}

.video-small {
    /* height: 80; */
    width: 100%;
}

li a>svg {
    width: 21px;
    height: 21px;
}

.header-socials a {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.header-socials a:hover {
    color: #FFD700;
}

.banner-section img {
    height: 100%;
    width: 100%;
}

.custom-height {
    height: 100vh;
    width: 100vw;
}

/*header css*/
header {
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    z-index: 20;
    /* padding: 10px 0!important; */
}

.main-header {
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
}

.main-header {
    background-color: #0A1F41;
    padding: 16px 16px !important;
    /* border-radius: 10px; */
}

.header-sticky .main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
}

.main-header .container-fluid {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.header-top-bar .container-fluid {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.logo {
    display: inline-block;
}

.logo img {
    display: block;
    height: 3rem;
    width: 8rem;
    transition: all 0.3s ease-in-out;
}

.logo-right {
    display: inline-block;
}

.logo-right img {
    display: block;
    transition: all 0.3s ease-in-out;
}

.header-sticky .logo img {
    height: 60px;
    object-fit: scale-down;
}

/* Hamburger Menu */

.menu-Bar {
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0px;
    margin: auto;
    z-index: 22;
    display: none;
}

.menu-Bar span {
    display: block;
    height: 4px;
    width: 100%;
    background: #FFD700;
    position: absolute;
    transition: 0.6s all;
    border-radius: 100px;
}

.menu-Bar span:nth-child(1) {
    top: 0;
}

.menu-Bar span:nth-child(2) {
    top: 8px;
    transform-origin: left;
}

.menu-Bar span:nth-child(3) {
    top: 16px;
}

.menu-Bar.open span {
    background: #FFD700;
}

.menu-Bar.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 12px;
    transform-origin: right-center;
}

.menu-Bar.open span:nth-child(2) {
    width: 0;
    opacity: 0;
}

.menu-Bar.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 12px;
    transform-origin: right-center;
}


.menuWrap {
    display: flex;
    align-items: center !important;
    justify-content: flex-end;
}

/* Menu Css */

.menu {
    font-size: 0px;
    display: flex;
    vertical-align: middle;
    margin-top: 27px !important;
}

.menu li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 35px;
    position: relative;
}

.menu li a {
    text-decoration: none;
    display: block;
    font-size: 18px !important;
    color: #FFD700;
    font-weight: 600;
}

.menu {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 10px;
    position: relative;
}

.menu li {
    position: relative;
    padding: 10px;
}

.menu li a {
    text-decoration: none;
    color: white;
    padding: 10px 15px;
    display: inline-block;
}

.menu li a:hover,
.menu li.active a {
    color: #FFD700;
}

.menu li::before {
    content: "";
    background-color: #FFD700;
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 0px;
    height: 2px;
    transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/* Apply Underline on Hover & Active Page */
.menu li:hover::before,
.menu li.active::before {
    left: 0;
    right: 0;
}

ul.menu li {
    display: block;
}

ul.menu li a {
    margin-bottom: 10px;
    padding: 0 !important;
    display: block;
    text-align: center;
    margin-bottom: 15px;
    padding-right: 0px !important;
    margin-right: 0px;
    color: #fff;
    font-size: 15px;
    text-transform: capitalize;
}

.header-btn {
    padding: 10px 20px !important;
    background-color: #FFD700;
    color: #0A1F41;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}

.header-btn:hover {
    color: #0A1F41;
    background-color: #FFD700;

}

.speaker-wraper {
    display: flex;
    gap: 100px;
}

.speaker-section-one {
    display: flex;
    justify-content: center;
    position: relative;
}

.speaker-section-one div {
    position: absolute;
    bottom: -30px;
    background-color: #0A1F41;
    color: white;
    text-align: center;
    padding: 5px 8px !important;
    width: 400px;
}

.speaker-section-one div>h6 {
    margin-top: 4px;
    font-size: 20px;
}

.speaker-section-one div>p {
    font-size: 16px;
    margin-bottom: 1px;
}

.heading-section-section {
    display: flex;
    align-items: center;
}

.speaker-one-content li {
    font-size: 16px;

}

.speaker-section-one img {
    height: 400px;
}

.rectangle {
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    background-color: #FFD700 !important;
    color: #FFD700 !important;
    height: 22px;
    width: 23px;
}

.custom-heading {
    color: #0A1F41;
    font-size: 42px;
    font-weight: 700;
}

/* third heading */
.third-section {
    margin-top: 100px !important;
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
    background-color: #E4EDFB;
}


.custom-underline {
    text-decoration: underline;
    text-underline-offset: 5px;
}

/* /////////////////////////////////////////////// */
.slider-container {
    position: relative;
    width: 95%;
    /* max-width: 1000px; */
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cards-wrapper {
    display: flex;
    gap: 10px;
    overflow: hidden;
    width: 100%;

}

.card {
    position: relative;
    min-width: 45%;
    height: 500px !important;
    transition: transform 0.5s ease-in-out;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    filter: brightness(50%);
}

.card-content {
    position: absolute;
    min-height: 70%;
    max-height: fit-content;
    /* top: 15%;
    left: 10%; */
    width: 80%;
    background: rgba(255, 255, 255, 0.874);
    padding: 6px 10px !important;

}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: yellow;
    border: none;
    padding: 15px;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    /* border-radius: 50%; */
}

.arrow.left {
    left: -30px;
}

.arrow.right {
    right: -10px;
}

.dots {
    position: absolute;
    bottom: -40px !important;
    display: flex;
    gap: 5px;
    justify-content: center;
    width: 100%;
    /* padding: 20px; */
    /* margin-bottom: 20px; */
}

.dot {
    width: 12px;
    height: 12px;
    background: lightgray;
    cursor: pointer;
}

.dot.active {
    background: #FFD700;
}

/* ///////////////////////////////////////////////// */
.arrow {
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    background: #FFD700;
    color: #0A1F41;
    border: none;
    padding: 8px 12px !important;
    margin-left: 10px;
}

/* ////////////////////////////////////////////////////////// */
.custom-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-start;
}

.custom-card {
    width: calc(33.33% - 16px);
    min-width: 250px;
    display: flex;
}

.mod-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    /* border: 1px solid #ddd; */
    border-radius: 8px;
    box-shadow: 10px 10px 30px #4D4D4D1F;
    overflow: hidden;
}

.card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    /
}

/* //////////////////////// */
.card-img-top {
    position: relative;
    padding: 20px;
    text-align: center;
}

.card-img-top img {
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.card-body {
    padding: 20px !important;
    background: white;
}

.card-title {
    font-weight: 600;
    font-size: 22px;
    color: #0A1F41 !important;
}

.card-text {
    font-size: 14px;
    line-height: 26px;
}

/* /////////////////////////// */

.card {
    flex: 0 0 calc(50% - 10px);
    background: white;
    border: none;
    transition: transform 0.3s ease-in-out;
    color: black;
    scroll-snap-align: start;
    box-sizing: border-box;
}

.card img {
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 400px;
}

.card-content {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.card-content h3 {
    margin-top: 10px;
    font-size: 24px;
    font-weight: 700;
    margin-top: 5px;
    color: #0A1F41;
}

.card-content h6 {
    margin-top: 10px;
    font-size: 16px;
    font-size: 500;
    color: #0A1F41;
    border-bottom: 1px solid #0A1F41;
    padding-bottom: 10px !important;

}

.card-content p {
    margin-top: 10px;
    font-size: 15px;
    line-height: 22px;
    color: #343434;
}

.arrow:disabled {
    background: #ccc;
}

.card-moderators {
    width: 300px !important;
}

.card-moderators img {
    height: 400px;
}

.card-moderators h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #0A1F41;
}

.card-moderators p {
    font-size: 14px;
}

.sub-heading {
    color: white;
    padding: 12px !important;
    background-color: #0A1F41;
    margin-bottom: 40px;
}

.second-section {
    padding-bottom: 60px !important;
}

.contact-section {
    background-color: #0A1F41;
}

.contact-section p {
    font-size: 24px;
    color: white;
}

.contact-heading {
    color: #FFD700 !important;
}

.input {
    padding: 14px 8px !important;
    background-color: transparent;
    border: 1px solid grey;
    color: white;
    margin-top: 10px;
    font-size: 14px;
    width: 450px;
}

.input-width {
    width: 450px;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-textarea {
    padding: 14px 8px !important;
    background-color: transparent;
    border: 1px solid grey;
    color: white;
    margin-top: 10px;
    font-size: 14px;
    height: 100px;
}

.contact-btn {
    background-color: #FFD700 !important;
    width: 200px;
    padding: 10px 20px !important;
    font-size: 14px;
    border: none;
    cursor: pointer;
}

.contact-card i {
    color: #0A1F41;
    background-color: #FFD700;
    border-radius: 100%;
    padding: 10px !important;
    height: 37px;
    font-size: 18px;
}

.contact-card h5 {
    font-size: 20px;
    font-weight: 500;
    line-height: 36px;
    color: white;
}

.contact-card p {
    font-size: 12px;
    font-weight: 400;
    width: 263px;
    font-size: 16px;
    line-height: 26px;
}

.border-bottom {
    border-bottom: 1px solid white;
}

.contact-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.error {
    color: red !important;
    font-size: 14px !important;
    display: none;
    margin-top: 4px;
}

.contact-card-btn {
    background-color: #FFD700 !important;
    width: 190px;
    padding: 10px 1px !important;
    font-size: 14px;
    border: none;
    cursor: pointer;
}

.footer-section {
    background-color: #0A1F41;
}

.footer-section-2 p {
    width: 416px;
    text-align: center;
    font-weight: 400;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.footer-section-one {
    color: white;
    font-size: 14px;
    line-height: 22px;
}

.footer-section-two h3 {
    font-size: 22px;
    color: white;
    font-weight: 600;
}

.sub-footer {
    text-align: center;
    border-top: 1px solid #666666;

}

.sub-footer p {
    color: white;
    font-size: 14px;
    font-weight: 400;
}

.footer-section-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-direction: column;
    color: white;
    padding: 0px 10px !important;
}

.footer-socials>li {
    display: inline-block;
    margin-right: 10px;
    border: 1px solid white;
    border-radius: 50% 50%;
    padding: 2px 8px !important;
}

.footer-socials a {
    font-size: 16px;
    font-weight: bold;
    color: white;
}

.footer-socials li:hover {
    color: #FFD700;
}

.footer-section-width {
    width: 400px;
}

.conatct-info i {
    color: #FFD700;
    cursor: pointer;
}

.footer-section-three input {
    padding: 18px 12px !important;
    border-radius: 6px;
    background-color: white;
    color: black;
    margin-top: 10px;
    font-size: 14px;
}

.footer-section-three h3 {
    font-size: 22px;
    color: white;
    font-weight: 600;
}

.footer-section-three button {
    background-color: #FFD700 !important;
    padding: 20px 1px !important;
    font-size: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.logo-footer {
    display: inline-block;
}

.logo-footer img {
    display: block;
    height: 5rem;
    width: 12rem;
    transition: all 0.3s ease-in-out;
}


@media (max-width: 1024px) {
    .second-section {
        margin-top: 2rem !important;
    }

    .card {
        position: relative;
        min-width: 100%;
        min-height: 500px !important;
        height: 615px !important;
        transition: transform 0.5s ease-in-out;
        overflow: hidden;
    }

    .custom-card {
        width: calc(50% - 16px);
        /* 2 cards per row */
    }
    
}

@media (max-width: 1146px) {
    
    .resp-reverce {
        flex-direction: column-reverse !important;
    }
    .speaker-section-one div {
        position: absolute;
        bottom: -30px !important;
        background-color: #0A1F41;
        color: white;
        text-align: center;
        padding: 5px 10px !important;
        width: 450px;
    }

    .speaker-section-one img {
        height: 300px;
    }

    .speaker-wraper {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .card {
        flex: 0 0 calc(100% - 10px);
        background: white;
        border: none;
        border-radius: 10px;
        transition: transform 0.3s ease-in-out;
        color: black;
    }

    .cards-wrapper {
        display: flex;
        gap: 10px;
        overflow: hidden;
        width: 90%;
    }

    .arrow.left {
        left: 20px;
    }

    .arrow.right {
        right: 30px;
    }

}

@media (max-width: 1312px) {
    .speaker-wraper {
        display: flex;
        gap: 30px;
    }

    .speaker-section-one img {
        height: 400px;
    }

    .speaker-section-one div {
        position: absolute;
        bottom: 0px;
        background-color: #0A1F41;
        color: white;
        text-align: center;
        padding: 5px 10px !important;
        width: 350px;
    }

    .speaker-one-content li {
        font-size: 13px;
    }

    .second-section {
        margin-top: 10rem !important;
    }

    .menu {
        font-size: 0px;
        display: inline-block;
        vertical-align: middle;
        margin-top: 12px;
    }

    .menu li::before {
        content: "";
        background-color: #FFD700;
        position: absolute;
        left: 50%;
        right: 50%;
        bottom: -6px;
        height: 2px;
        transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    }

    header .main-header ul.menu>li {
        display: block;
        margin: 0px;
        padding: 0 !important;
    }

    header .main-header ul.menu>li a {
        color: #fff;
    }

    header .main-header ul.menu>li a:before {
        display: none;
    }

    .menu-Bar {
        display: block;
        top: 0px;
    }

    .menuWrap.open {
        display: flex;
        left: 0px;
    }

    .menuWrap {
        position: fixed;
        left: -210%;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        background: #0A1F41;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-flow: column;
        transition: all 0.4s ease;
        z-index: 20;
        width: 100vw;
    }

    .custom-height {
        height: 80vh;
        width: 100%;
    }

    .card img {
        width: 100%;
        border-radius: 10px;
        height: 200px;
    }

    .input-width {
        width: 350px;
    }

    .contact-container {
        display: flex;
        flex-direction: column;
    }

    .border-bottom {
        border-top: 1px solid white;
        border-bottom: 1px solid white;
    }

    .contact-btn {
        background-color: #FFD700 !important;
        width: 100%;
        padding: 10px 20px !important;
        font-size: 14px;
        border: none;
        cursor: pointer;
    }

    .footer-container {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
    }

    .title-speaker {
        bottom: -22px !important
    }

}

@media (max-width:767px) {
    .header-top-bar {
        padding-block: 5px !important;
    }

    .contact-section {
        padding: 0px 10px !important;
    }

    .custom-height {
        height: 50vh !important;
        width: 100%;
    }

    .second-section {
        margin-top: 1rem !important;
    }

    .header-socials {
        display: none;
    }

    .footer-section-2 {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        flex-direction: column;
        color: white;
        padding: 10px 10px !important;
    }

    .footer-section-2 p {
        text-align: center;
        font-size: 14px;
        width: auto;

    }

    .logo-footer img {
        display: block;
        height: 4rem;
        width: 10rem;
        transition: all 0.3s ease-in-out;
    }
}

@media (max-width:700px) {
    .custom-card {
        width: 100%;
    }

    .second-section {
        margin-top: -2rem !important;
    }

    .arrow.left {
        left: 2px;
    }

    .arrow.right {
        right: 12px;
    }
}

@media (max-width: 530px) {
    .card-content {
        position: absolute;
        /* min-height: 70%; */
        min-height: 550px !important;
        width: 80%;
        background: rgba(255, 255, 255, 0.874);
        padding: 20px 10px !important;
        margin: 20px 10px !important;
    }

    .speaker-section-one img {
        height: 300px;
    }

    .speaker-section-one div {
        position: absolute;
        bottom: -30px;
        background-color: #0A1F41;
        color: white;
        text-align: center;
        padding: 5px 10px !important;
        width: 300px;
    }

    .title-speaker h6 {
        font-size: 14px !important;
    }

    .title-speaker p {
        font-size: 12px !important;
    }

    /* .card-content {
        position: absolute;
        min-height: 70%;
        max-height: fit-content;
        /* top: 15%;
                left: 10%; */
        /* width: 80%;
        background: rgba(255, 255, 255, 0.874);
        padding: 20px 10px !important;
        margin: 20px 10px !important;
    } */ 

    .card-content h3 {
        margin-top: 10px;
        font-size: 20px;
        font-weight: 700;
        margin-top: 5px;
        color: #0A1F41;
    }

}

@media (max-width: 420px) {
    .card {
        flex: 0 0 calc(50% - 10px);
        background: white;
        border: none;
        transition: transform 0.3s ease-in-out;
        color: black;
        scroll-snap-align: start;
        box-sizing: border-box;
        max-height: 630px !important;
    }

    .input-width {
        width: 300px;
    }

    .speaker-section-one img {
        height: 246px;
    }

    .custom-height {
        height: 40vh !important;
        width: 100%;
    }

    .second-section {
        margin-top: -8rem !important;
    }

    .third-heading {
        color: #0A1F41;
        font-size: 30px;
        font-weight: 900;
    }

    .card {
        flex: 0 0 100%;
    }

    .card img {
        width: 100%;
        border-radius: 10px;
        height: 200px;
    }

    .footer-section-width {
        width: 350px;
    }

    .speaker-section-one div {
        position: absolute;
        bottom: -30px;
        background-color: #0A1F41;
        color: white;
        text-align: center;
        padding: 5px 10px !important;
        width: 260px;
    }

    .third-section {
        margin-top: 0px !important;
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
        background-color: #E4EDFB;
    }

    .custom-heading {
        color: #0A1F41;
        font-size: 28px;
        font-weight: 700;
    }

    .card-content h3 {
        margin-top: 10px;
        font-size: 18px;
        font-weight: 700;
        margin-top: 20px;
        color: #0A1F41;
    }

    .card-content p {
        margin-top: 10px;
        font-size: 12px;
        line-height: 22px;
        color: #343434;
    }

    .card-content h6 {
        margin-top: 5px;
        font-size: 14px;
        font-size: 500;
        color: #0A1F41;
        border-bottom: 1px solid #0A1F41;
        padding-bottom: 10px !important;
    }

    .card-title {
        font-weight: 600;
        font-size: 18px;
        color: #0A1F41 !important;
    }

    .card-text {
        font-size: 12px;
        line-height: 26px;
    }

    .contact-card p {
        font-size: 12px;
        font-weight: 400;
        width: 263px;
        font-size: 14px;
        line-height: 23px;
    }

    .contact-card h5 {
        font-size: 18px;
        font-weight: 500;
        line-height: 36px;
        color: white;
    }

}

@media(max-width:300px) {
    .card {
        flex: 0 0 100%;
    }
    .contact-card ul>li {
        font-size: 12px;
    }

    .card {
        padding: 10px 20px !important;
    }

    .custom-height {
        height: 30vh !important;
        width: 100%;
    }

    .custom-heading {
        color: #0A1F41;
        font-size: 25px;
        font-weight: 700;
    }

    .logo img {
        display: block;
        height: 2.5rem;
        width: 6rem;
        transition: all 0.3s ease-in-out;
    }

    .menu-Bar {
        width: 28px;
        height: 20px;
        cursor: pointer;
        position: absolute;
        right: 15px;
        bottom: 0px;
        margin: auto;
        z-index: 22;
    }

    .main-header {
        background-color: #0A1F41;
        padding: 11px 17px !important;
    }

    .speaker-section-one img {
        height: 209px;
    }

    .speaker-section-one div {
        position: absolute;
        background-color: #0A1F41;
        color: white;
        text-align: center;
        padding: 5px 10px !important;
        width: 215px;
    }

    .input-width {
        width: 260px;
    }

    .contact-card p {
        font-weight: 400;
        width: 199px;
        font-size: 14px;
        line-height: 23px;
    }
}


.lds-ring,
.lds-ring div {
    box-sizing: border-box;
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 24px;
    height: 24px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    margin: 8px;
    border: 2px solid currentColor;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: currentColor transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.main-header-bar-cs {
    padding: 5px 57px 5px 69px !important
}

.top-mini-header-cs {
    padding: 2px 75px !important;
}

.top-nav-redirect-icon-cs {
    font-size: 14px;
}

.top-nav-url-cs {
    font-size: 16px;
}
.moderators-heading{
    padding-left:3rem !important
}

.moderators-card{
    padding:.5rem!important
}

@media(max-width:767px) {
    .card {
        flex: 0 0 100%;
    }
    .main-header-bar-cs {
        padding: 5px 10px 5px 10px !important
    }

    .top-mini-header-cs {
        padding: 2px 10px !important;
    }

    .top-nav-redirect-icon-cs {
        font-size: 12px;
    }

    .top-nav-url-cs {
        font-size: 14px;
    }

    .moderators-heading{
        padding-left:1rem !important
    }

    .moderators-card{
        padding:1.5rem!important
    }
}
.logo-right{
    margin-top: 0px !important;
}
@media (max-width:1312px){
    .logo-right{
        margin-left:0 !important;
        margin-top: 20px !important;
    }
}