html {
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto", sans-serif;
    color: #0c0c0c;
    background-color: #f8f8f8;
    overflow-x: hidden;
}


.separate {
    background-color: red;
    height: .1rem;
    width: 14rem;
    margin-top: .7rem;
}

/* read more modal */

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    /* Enable scroll if content overflows */
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    /* Set the width of the modal content */
    max-width: 1000px;
    /* Maximum width of the modal content */
    max-height: 70%;
    /* Limit the height of the modal content */
    overflow-y: auto;
    /* Enable vertical scroll for modal content */
}

@media (max-width: 768px) {
    .modal-content {
        margin: 30% auto;
        width: 90%;
        /* Adjust width for smaller screens */
        max-width: none;
        /* Remove max-width restriction for smaller screens */
    }
}

@keyframes modalopen {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
}

#closeModalBtn {
    display: block;
    margin: 20px auto 0;
    padding: 8px 16px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#closeModalBtn:hover {
    background-color: #0056b3;
}

#closeModalBtn_new {
    display: block;
    margin: 20px auto 0;
    padding: 8px 16px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#closeModalBtn_new:hover {
    background-color: #0056b3;
}

/* css for the read more button of the message container
 */
button.dark {
    --background: #2f3545;
    --shadow: 0 2px 8px -1px rgba(21, 25, 36, .32);
    --shadow-hover: 0 4px 20px -2px rgba(21, 25, 36, .5);
}



button.fast {
    --duration: 0.32s;
}

button {
    --background: #e3e3e300;
    --text: #EB004E;
    --font-size: 16px;
    --duration: 0.44s;
    /* --move-hover: -4px; */
    --shadow: 0 2px 8px -1px rgba(39, 94, 254, .32);
    --shadow-hover: 0 4px 20px -2px rgba(39, 94, 254, .5);
    --font-shadow: var(--font-size);
    padding: 6px 10px;
    font-family: 'Roboto';
    font-weight: 500;
    line-height: var(--font-size);
    border-radius: 24px;
    /* display: block; */
    outline: none;
    appearance: none;
    border: 1px solid #EB004E;
    text-decoration: none;
    font-size: var(--font-size);
    /* letter-spacing: 0.5px; */
    background: var(--background);
    color: var(--text);
    box-shadow: var(--shadow);
    transform: translateY(var(--y)) translateZ(0);
    transition: transform var(--duration) ease, box-shadow var(--duration) ease;
    cursor: pointer;
}

button div {
    display: flex;
    overflow: hidden;
    text-shadow: 0 var(--font-shadow) 0 var(--text);
}

button div span {
    display: block;
    backface-visibility: hidden;
    font-style: normal;
    transition: transform var(--duration) ease;
    transform: translateY(var(--m)) translateZ(0);
}

button div span:nth-child(1) {
    transition-delay: 0.05s;
}

button div span:nth-child(2) {
    transition-delay: 0.1s;
}

button div span:nth-child(3) {
    transition-delay: 0.15s;
}

button div span:nth-child(4) {
    transition-delay: 0.2s;
}

button div span:nth-child(5) {
    transition-delay: 0.25s;
}

button div span:nth-child(6) {
    transition-delay: 0.3s;
}

button div span:nth-child(7) {
    transition-delay: 0.35s;
}

button div span:nth-child(8) {
    transition-delay: 0.4s;
}

button div span:nth-child(9) {
    transition-delay: 0.45s;
}

button div span:nth-child(10) {
    transition-delay: 0.5s;
}

button div span:nth-child(11) {
    transition-delay: 0.55s;
}

button:hover {
    --y: var(--move-hover);
    --shadow: var(--shadow-hover);
}

button:hover span {
    --m: calc(var(--font-size) * -1);
}

.layout_padding {
    padding: 90px 0;
}

.layout_padding2 {
    padding: 75px 0;
}

.layout_padding2-top {
    padding-top: 75px;
}

.layout_padding2-bottom {
    padding-bottom: 75px;
}

.layout_padding-top {
    padding-top: 90px;
}

.layout_padding-bottom {
    padding-bottom: 90px;
}

/* end for read more button of the message box */

.heading_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.heading_container h2 {
    position: relative;
    font-weight: bold;
    margin: 0;
}

.heading_container.heading_center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.heading_container p {
    margin-top: 50px;
    margin-bottom: 0;
}

.container_border_style {
    position: relative;
    padding: 20px;
}

.container_border_style::before,
.container_border_style::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 3px;
    height: 90px;
    background-color: #03a7d3;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.container_border_style::before {
    left: 0;
}

.container_border_style::after {
    right: 0;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

a:hover,
a:focus {
    color: initial;
}

.btn,
.btn:focus {
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/*header section*/
.hero_area {
    position: relative;
    background-color: #020230;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.sub_page .hero_area {
    min-height: auto;
}

.header_section .container-fluid {
    padding-right: 25px;
    padding-left: 25px;
}



/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #f0faff;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
        padding: 5px 90px;

    background: rgb(119, 51, 93);
    background: linear-gradient(128deg, rgba(119, 51, 93, 1) 33%, rgba(154, 0, 95, 1) 70%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.nav,
.nav .nav-links {
    display: flex;
    align-items: center;
}

.nav {
    justify-content: space-between;
}

.nav a {
    color: #fff;
    font-size: larger;
    text-decoration: none;
}

.nav .logo {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 6px;
}

.nav .nav-links {
    column-gap: 35px;
    list-style: none;
}

.nav .nav-links a {
    transition: all 0.2s linear;
}



.nav .navOpenBtn,
.nav .navCloseBtn {
    display: none;
}

/* responsive */

@media screen and (max-width: 1160px) {
    .nav {
                padding: 15px 40px;

    }

    .nav .search-box {
        right: 150px;
    }
    .nav a {

        font-size: .9rem;

    }

    .ieee_logo {
        width: 10%;
    }

}

@media screen and (max-width: 950px) {
    .nav {
        padding: 15px 50px;
    }

    .nav .search-box {
        right: 100px;
        max-width: 400px;
    }
}

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

    .nav .navOpenBtn,
    .nav .navCloseBtn {
        display: block;
    }


    .nav {
        padding: 15px 10px;
    }

    .nav .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        height: 100%;
        max-width: 280px;
        width: 100%;
        padding-top: 100px;
        row-gap: 30px;
        flex-direction: column;
        background-color: #11101d;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.4s ease;
        z-index: 100;
    }

    .nav.openNav .nav-links {
        left: 0;
    }

    .nav .navOpenBtn {
        color: #fff;
        font-size: 25px;
        cursor: pointer;
    }

    .nav .navCloseBtn {
        position: absolute;
        top: 20px;
        right: 20px;
        color: #fff;
        font-size: 20px;
        cursor: pointer;
    }

    .nav .logo {
        font-size: 26px;

    }
}




#leadership {
    /* display: flex; */
    background-color: #f9f9f9;
    padding: 50px 0;
    text-align: center;
}


#leadership_new {
    /* display: flex; */
    background-color: #f9f9f9;
    padding: 50px 0;
    text-align: center;
}


#leadership .container {

    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 5rem;
}

#leadership_new .container {

    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
}

#leadership h2 {
    font-size: 2.5em;
    margin-bottom: 5rem;
    color: #ce3174;
}

#leadership_new h2 {
    font-size: 2.5em;
    margin-bottom: 5rem;
    margin-top: -5rem;
    color: #ce3174;
}

#leadership .team-member {
    margin-bottom: 30px;
}

#leadership_new .team-member {
    /* margin-top: -1rem; */
    margin-bottom: 30px;
}

#leadership .team-member img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
}

#leadership_new .team-member img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
}

#leadership .team-member h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
}

#leadership .team-member p {
    font-size: 1.1em;
    margin-bottom: 10px;
}

#leadership_new .team-member p {
    font-size: 1em;
    margin-bottom: 10px;
}

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

     .gbu_Pic {
        width: 45%;
        padding-left: 7rem;
    }

    .ieee_logo {
        /* display: none; */
        width: 43%;
        padding-left: 5rem;
    }

    #leadership .container {
        /* background-color: red; */
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    #leadership_new .container {
        /* background-color: red; */
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    #leadership h2 {
        /* word-wrap: normal; */
        font-size: 1.5em;
        margin-bottom: 5rem;
        color: #ce3174;
    }

    #leadership_new h2 {
        /* word-wrap: normal; */
        font-size: 1.5em;
        margin-bottom: 5rem;
        color: #ce3174;
    }


}

@media screen and (max-width: 380px) {
    .gbu_Pic {
        width: 47%;
        /* padding-left: 7rem; */
    }

    .ieee_logo {
        /* display: none; */
        width: 43%;
        padding-left: 5rem;
    }
}


/* .navbar-brand span {
    font-weight: bold;
    color: #ffffff;
    font-size: 24px;
    text-transform: uppercase;
}

.custom_nav-container {
    padding: 10px 0;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
    padding: 3px 15px;
    margin: 10px 15px;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
}

.custom_nav-container .nav_search-btn {
    width: 35px;
    height: 35px;
    padding: 0;
    border: none;
    color: #ffffff;
    margin: 0 20px;
}

.custom_nav-container .navbar-toggler {
    outline: none;
}

.custom_nav-container .navbar-toggler {
    padding: 0;
    width: 37px;
    height: 42px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span {
    display: block;
    width: 35px;
    height: 4px;
    background-color: #ffffff;
    margin: 7px 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
    border-radius: 5px;
    transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::before,
.custom_nav-container .navbar-toggler span::after {
    content: "";
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #ffffff;
    top: -10px;
    border-radius: 5px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::after {
    top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before,
.custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    top: 0;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-1 {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin: 0;
    margin-bottom: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-2 {
    display: none;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-3 {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin: 0;
    margin-top: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-1,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-2,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-3 {
    -webkit-transform: none;
    transform: none;
} */

.quote_btn-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.quote_btn-container a {
    color: #ffffff;
    text-transform: uppercase;
}

.quote_btn-container a span {
    margin-left: 5px;
}

/*end header section*/
/* slider section */
.slider_section {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 45px;
    padding-bottom: 90px;
}

.slider_section .row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.slider_section #customCarousel1 {
    width: 100%;
    position: unset;
}

.slider_section .detail-box {
    color: #ffffff;
}

.slider_section .detail-box h1 {
    font-weight: bold;
    margin-bottom: 25px;
    font-size: 2rem;
}

.slider_section .detail-box h1 span {
    font-size: 3rem;
    color: #03a7d3;
}

.slider_section .detail-box .btn-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -5px;
}

.slider_section .detail-box a {
    margin: 5px;
    width: 195px;
    text-align: center;
}

.slider_section .detail-box .btn-1 {
    display: inline-block;
    padding: 10px 15px;
    background-color: #03a7d3;
    color: #ffffff;
    border-radius: 5px;
    border: 1px solid #03a7d3;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.slider_section .detail-box .btn-1:hover {
    background-color: transparent;
    color: #03a7d3;
}

.slider_section .detail-box .btn-2 {
    display: inline-block;
    padding: 10px 15px;
    background-color: #ff4646;
    color: #ffffff;
    border-radius: 5px;
    border: 1px solid #ff4646;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.slider_section .detail-box .btn-2:hover {
    background-color: transparent;
    color: #ff4646;
}

.slider_section .img-box img {
    width: 100%;
}

.slider_section .carousel_btn-box {
    position: absolute;
    bottom: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    height: 50px;
    z-index: 3;
    font-size: 22px;
}

.slider_section .carousel_btn-box .carousel-control-prev,
.slider_section .carousel_btn-box .carousel-control-next {
    position: unset;
    width: 50px;
    height: 50px;
    background-color: #03a7d3;
    opacity: 1;
    font-size: 28px;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.slider_section .carousel_btn-box .carousel-control-prev:hover,
.slider_section .carousel_btn-box .carousel-control-next:hover {
    background-color: #ffffff;
    color: #000000;
}

.about_section .container {
    margin-top: .1rem !important;
}

.about_section .row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.about_section .img-box img {
    border-radius: 15px 50px 30px 5px;
    transition: transform .2s;
    max-width: 100%;
}

.about_section .img-box_new img {
    border-radius: 50px 15px 10px 10px;
    transition: transform .2s;
    max-width: 100%;
}

.about_section .img-box img:hover {
    transform: scale(1.03);
}

.about_section .img-box_new img:hover {
    transform: scale(1.03);
}


.about_section .detail-box p {
    color: #525252;
    font-size: 1.1rem;
    margin-top: 5px;
}

.about_section .detail-box button {
    display: inline-block;
    padding: 10px 45px;
    background-color: #ff4646;
    color: #ffffff;
    border-radius: 5px;
    border: 1px solid #ff4646;
    -webkit-transition: all .3s;
    transition: all .3s;
    /* margin-top: 15px; */
}

.about_section .detail-box button:hover {
    background-color: transparent;
    color: #ff4646;
}

.service_section {
    position: relative;
}

.service_section .box {
    margin-top: 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding: 25px;
    background-color: #fafafa;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
}

.service_section .box .img-box {
    width: 75px;
    height: 75px;
    background-color: #03a7d3;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all .2s;
    transition: all .2s;
    padding: 10px;
}

.service_section .box .img-box img {
    width: 100%;
    max-width: 45px;
    max-height: 45px;
}

.service_section .box .detail-box {
    margin-top: 15px;
}

.service_section .box .detail-box h4 {
    font-weight: bold;
    font-size: 22px;
}

.service_section .box .detail-box a {
    color: #03a7d3;
}

.service_section .box .detail-box a:hover {
    color: #ff4646;
}

.service_section .box:hover .img-box {
    background-color: #ff4646;
}

.server_section {
    background: linear-gradient(110deg, #e6e6e6 25%, #13133d 25%);
    padding: 55px 0;
    color: #ffffff;
}






.server_section .row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.server_section .img-box {
    position: relative;
}

.server_section .img-box img {
    width: 100%;
    transition: transform .2s;
    border-radius: 10px 40px 10px;
}

.server_section .img-box img:hover {
    transform: scale(1.05);
}

.server_section .img-box .play_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: none;
}

.server_section .img-box .play_btn button {
    background-color: transparent;
    border: none;
    background-color: #03a7d3;
    color: #ffffff;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    position: relative;
    z-index: 3;
    outline: none;
}

.server_section .img-box .play_btn:before,
.server_section .img-box .play_btn:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #03a7d3;
    opacity: 1;
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.server_section .img-box .play_btn:before {
    z-index: 2;
    -webkit-animation: before-animation 1500ms infinite;
    animation: before-animation 1500ms infinite;
}

.server_section .img-box .play_btn:after {
    z-index: 1;
    -webkit-animation: after-animation 1500ms infinite;
    animation: after-animation 1500ms infinite;
}

@-webkit-keyframes before-animation {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

@keyframes before-animation {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

@-webkit-keyframes after-animation {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

@keyframes after-animation {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.server_section .detail-box a {
    display: inline-block;
    padding: 10px 45px;
    background-color: #ff4646;
    color: #ffffff;
    border-radius: 5px;
    border: 1px solid #ff4646;
    -webkit-transition: all .3s;
    transition: all .3s;
    margin-top: 25px;
}

.server_section .detail-box a:hover {
    background-color: transparent;
    color: #ff4646;
}

.price_section .price_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

.price_section .price_container .box {
    margin: 45px 15px 0 15px;
}

.price_section .price_container .box .detail-box {
    width: 300px;
    padding: 40px 20px 15px 20px;
    background-color: #fff;
    border-radius: 25px;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
}

.price_section .price_container .box .detail-box h2 {
    font-weight: bold;
}

.price_section .price_container .box .detail-box h2 span {
    font-size: 3rem;
}

.price_section .price_container .box .detail-box h6 {
    text-transform: uppercase;
    color: #03a7d3;
    font-size: 20px;
    margin-bottom: 10px;
}

.price_section .price_container .box .price_features {
    padding: 0;
    list-style-type: none;
}

.price_section .price_container .box .price_features li {
    margin: 10px 0;
}

.price_section .price_container .box .btn-box {
    margin-top: 25px;
}

.price_section .price_container .box .btn-box a {
    display: inline-block;
    padding: 10px 35px;
    background-color: #ff4646;
    color: #ffffff;
    border-radius: 5px;
    border: 1px solid #ff4646;
    -webkit-transition: all .3s;
    transition: all .3s;
    border: none;
}

.price_section .price_container .box .btn-box a:hover {
    background-color: transparent;
    color: #ff4646;
}

.price_section .price_container .box .btn-box a:hover {
    background-color: #03a7d3;
    color: #ffffff;
}

.price_section .price_container .box:hover {
    color: #ffffff;
}

.price_section .price_container .box:hover .detail-box {
    background-color: #03a7d3;
}

.price_section .price_container .box:hover h6 {
    color: #ffffff;
}

.price_section .price_container .box:hover a {
    background-color: #03a7d3;
    color: #ffffff;
}

.client_section {
    padding-bottom: 45px;
}

.client_section .heading_container {
    margin-bottom: 35px;
}

.heading_container li {
    font-size: large;
    margin-bottom: 1rem;
    margin: 7px;
}

.client_section .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 45px 0;
}

.client_section .box .img-box {
    width: 155px;
    height: 155px;
    min-width: 145px;
    border-radius: 100%;
    overflow: hidden;
    margin-right: -65px;
    position: relative;
}

.client_section .box .img-box img {
    width: 100%;
}

.client_section .box .client_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.client_section .box .client_info .client_name h4 {
    font-weight: bold;
    color: #03a7d3;
    margin-bottom: .5rem;
    text-transform: uppercase;
}

.client_section .box .client_info .client_name h6 {
    margin-bottom: 0;
    color: #ff4646;
    font-weight: normal;
    font-size: 14px;
    text-transform: uppercase;
}

.client_section .box .client_info i {
    font-size: 24px;
    color: #03a7d3;
}

.client_section .box p {
    margin-top: 25px;
}

.client_section .box .detail-box {
    background-color: #ffffff;
    padding: 45px 45px 45px 85px;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
}

.client_section .carousel-control-prev,
.client_section .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: #03a7d3;
    opacity: 1;
    font-size: 28px;
    font-weight: bold;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.client_section .carousel-control-prev {
    left: 0;
}

.client_section .carousel-control-next {
    right: 0;
}

.contact_section {
    position: relative;
}

.contact_section .heading_container {
    margin-bottom: 45px;
}

.contact_section .form_container input {
    width: 100%;
    border: 1px solid #b0b0b0;
    height: 50px;
    margin-bottom: 25px;
    padding-left: 15px;
    background-color: transparent;
    outline: none;
    color: #101010;
}

.contact_section .form_container input::-webkit-input-placeholder {
    color: #b0b0b0;
}

.contact_section .form_container input:-ms-input-placeholder {
    color: #b0b0b0;
}

.contact_section .form_container input::-ms-input-placeholder {
    color: #b0b0b0;
}

.contact_section .form_container input::placeholder {
    color: #b0b0b0;
}

.contact_section .form_container input.message-box {
    height: 120px;
}

.contact_section .form_container .btn_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.contact_section .form_container button {
    border: none;
    text-transform: uppercase;
    display: inline-block;
    padding: 15px 65px;
    background-color: #ff4646;
    color: #ffffff;
    border-radius: 0;
    border: 1px solid #ff4646;
    -webkit-transition: all .3s;
    transition: all .3s;
    font-weight: bold;
}

.contact_section .form_container button:hover {
    background-color: transparent;
    color: #ff4646;
}

/* info section */
.info_section {
    background-color: #020230;
    color: #ffffff;
}

.info_section h4 {
    font-weight: 600;
    margin-bottom: 20px;
}

.info_section .info_contact .contact_link_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.info_section .info_contact .contact_link_box a {
    margin: 5px 0;
    color: #ffffff;
}

.info_section .info_contact .contact_link_box a i {
    margin-right: 5px;
}

.info_section .info_contact .contact_link_box a:hover {
    color: #ff4646;
}

.info_section .info_social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
}

.info_section .info_social a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #ffffff;
    border-radius: 100%;
    margin-right: 10px;
    font-size: 24px;
}

.info_section .info_social a:hover {
    color: #ff4646;
}

.info_section .info_links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.info_section .info_links a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
    color: #ffffff;
}

.info_section .info_links a img {
    margin-right: 10px;
}

.info_section .info_links a:hover,
.info_section .info_links a.active {
    color: #ff4646;
}

.info_section form input {
    border: none;
    border-bottom: 1px solid #ffffff;
    background-color: transparent;
    width: 100%;
    height: 45px;
    color: #ffffff;
    outline: none;
}

.info_section form input::-webkit-input-placeholder {
    color: #ffffff;
}

.info_section form input:-ms-input-placeholder {
    color: #ffffff;
}

.info_section form input::-ms-input-placeholder {
    color: #ffffff;
}

.info_section form input::placeholder {
    color: #ffffff;
}

.info_section form button {
    width: 100%;
    text-align: center;
    display: inline-block;
    padding: 10px 55px;
    background-color: #ff4646;
    color: #ffffff;
    border-radius: 0;
    border: 1px solid #ff4646;
    -webkit-transition: all .3s;
    transition: all .3s;
    margin-top: 15px;
}

.info_section form button:hover {
    background-color: transparent;
    color: #ff4646;
}

/* end info section */
/* footer section*/
.footer_section {
    position: relative;
    background-color: #020230;
    text-align: center;
}

.footer_section p {
    color: #ffffff;
    padding: 20px 0;
    margin: 0;
    border-top: 1px solid #ffffff;
}

.footer_section p a {
    color: inherit;
}

/*# sourceMappingURL=style.css.map */
@media (max-width: 1300px) {}

@media (max-width: 1120px) {}

@media (max-width: 992px) {
    .hero_area {
        min-height: auto;
    }

    /* #navbarSupportedContent {
        padding: 15px 0 25px 0;
    } */
    .gbu_footer_logo {
        width: 25% !important;
    }

    .quote_btn-container {
        flex-direction: column;
        align-items: center;
    }

    .quote_btn-container a {
        margin-right: 0;
        margin-top: 10px;
    }

    .slider_section {
        padding: 45px 0 90px 0;
    }


    .client_section .box {
        margin: 15px;
    }

    .client_section .carousel_btn-box {
        display: flex;
        justify-content: center;
        margin-top: 45px;
    }

    .client_section .carousel-control-prev,
    .client_section .carousel-control-next {
        position: unset;
        margin: 0 2.5px;
        width: 45px;
        height: 45px;
    }

    .info_section .info_main_row>div {
        margin-bottom: 25px;
    }
}

@media (max-width: 768px) {
    .slider_section .detail-box {
        margin-bottom: 45px;
        text-align: center;
    }

    .slider_section .detail-box .btn-box {
        justify-content: center;
    }

    .about_section .detail-box {
        margin-bottom: 25px;
    }


    .service_section .row .service_col_middle {
        order: 2;
    }

    .service_section .service_col_middle .box {
        margin-bottom: 45px;
    }

    .server_section {
        background: none;
        background-color: #020230;
    }

    .server_section .img-box {
        margin-bottom: 25px;
    }

    .contact_section .form_container {
        margin-right: 0;
        margin-bottom: 45px;
    }

    .info_section .row>div {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 35px;
    }

    .info_section .info_links {
        align-items: center;
    }
}

@media (max-width: 576px) {


    .client_section .box {
        flex-direction: column;
        align-items: center;
    }

    .client_section .box .detail-box {
        padding: 85px 45px 45px 45px;

    }

    .client_section .box .img-box {
        margin-right: 0;
        margin-bottom: -65px;
    }
}

@media (max-width: 480px) {}

@media (max-width: 420px) {}

@media (max-width: 376px) {
    .slider_section .detail_box h1 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
}

/* css for conference page timeline */


.timeline h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: -7rem;
    color: #ce3174;
}


.timeline h3 {

    color: #ce3174;
}

ul.timeline {
    position: relative;
    list-style-type: none;
    padding-left: 180px;
}

ul.timeline:before {
    position: absolute;
    display: block;
    left: 136px;
    width: 7px;
    height: 100%;
    border-radius: 4px;
    background-color: #80004f;
    content: ' ';
}

ul.timeline .event {
    position: relative;
    padding: 16px;
    background: white;
    border-radius: 2px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .2), 0 1px 1px 0 rgba(0, 0, 0, .14), 0 2px 1px -1px rgba(0, 0, 0, .12);
    padding: 16px;
    margin-bottom: 30px;
}

ul.timeline .event:before {
    display: block;
    position: absolute;
    top: 30px;
    left: -55px;
    width: 30px;
    height: 30px;
    border: 5px solid #77335d;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0 0 4px -1px rgba(0, 0, 0, 0.6);
    content: ' ';
}

ul.timeline h3 {
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 10px;
}

ul.timeline .time {
    position: absolute;
    display: block;
    width: 120px;
    top: 35px;
    left: -179px;
    font-size: 0.9em;
    text-align: right;
    font-weight: 600;
    text-transform: uppercase;
}

ul.timeline .time>.glyphicon-time {
    top: 2px;
}

/* ul.timeline .left-arrow:before {
    position: absolute;
    top: 30px;
    left: -15px;
    display: inline-block;
    border-top: 15px solid transparent;
    border-right: 15px solid #ddd;
    border-left: 0 solid #ddd;
    border-bottom: 15px solid transparent;
    content: ' ';
} */

/* ul.timeline .left-arrow:after {
    position: absolute;
    top: 30px;
    left: -14px;
    display: inline-block;
    border-top: 15px solid transparent;
    border-right: 15px solid #fff;
    border-left: 0 solid #fff;
    border-bottom: 15px solid transparent;
    content: ' ';
} */

.timeline {
    margin-top: 10rem;
}



/* css for the tracks page */


.tracks .container {
    /* background-color: red; */
    margin-top: 7rem;
}

@media screen and (max-width: 768px) {
    li h4 {
        font-size: larger;
    }
}




/* Committee Section Styles */



.team-cards {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.profile-card {
    width: 200px;
    padding: 20px;
    text-align: center;
    background-color: #f0f0f0;
    border-radius: 10px;
}

.profile-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.profile-card h2 {
    margin: 0;
    font-size: 1.2rem;
}

.profile-card p {
    margin: 0;
    font-size: 1rem;
}

/* Media Query for Mobile Devices */
@media (max-width: 600px) {
    .team-cards {
        flex-direction: column;
        align-items: stretch;
    }

    .profile-card {
        width: 100%;
        margin-bottom: 20px;
    }

    .profile-card img {
        width: 80px;
        height: 80px;
    }
}

.com_Con {
    display: flex;
    gap: 50px;
    padding-left: 5rem;
    flex-wrap: wrap;
}

.card-header {
    font-size: x-large;
    /* text-decoration: underline; */
    /* text-align: center; */
}

.card-text {
    margin-bottom: -1rem;
}

@media screen and (max-width: 768px) {
    .c_card {
        /* background-color: red; */
        margin: 2rem;
        margin-left: -3rem;
    }
}



.committee-sections {
    margin-top: 5rem;
    display: flex;
    /* Use flexbox to arrange sections side by side */
    flex-direction: column;
    flex-wrap: wrap;
    /* Allow sections to wrap to the next line if necessary */
    align-items: flex-start;
    align-items: center;
    /* Align items to the start of the flex container */
}

.committee-heading {
    flex: 29 29 29%;
    /* Take full width */
    background-color: #ce3174;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    color: #fff;
    margin-bottom: 20px;
    /* Add margin at the bottom for spacing */
}

.committee-section {
    flex: 1;
    /* Each section takes equal space */
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 35px;
    margin-right: 20px;
    /* Add margin between sections */
    margin-bottom: 20px;
    /* Add margin at the bottom for spacing */
    transition: all 0.3s ease;
    /* Add transition effect */
    width: 40rem;
}

.committee-section:last-child {
    margin-right: 0;
    /* Remove margin from the last section */
}

.committee-section:hover {
    transform: translateY(-5px);
    /* Move section up on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    /* Add shadow on hover */
}

@media screen and (max-width: 768px) {
    .committee-section {
        width: 24rem;

    }

    .committee-heading h3 {
        font-size: large !important;
    }
}

/*ic........conference*/


/* css for registration table */
.regis {
    margin-top: 9rem;
    margin-bottom: 9rem;
}

.rwd-table {
    margin: auto;
    min-width: 300px;
    max-width: 100%;
    border-collapse: collapse;
}

.rwd-table-new {
    margin: auto;
    min-width: 300px;
    max-width: 100%;
    border-collapse: collapse;
}

.rwd-table tr:first-child {
    border-top: none;
    background: #428bca;
    color: #fff;
}


.rwd-table-new tr:first-child {
    border-top: none;
    /* background: #428bca; */
    color: black;
}

.rwd-table tr {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    background-color: #f5f9fc;
}

.rwd-table-new tr {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    background-color: #f5f9fc;
}

.rwd-table tr:nth-child(odd):not(:first-child) {
    background-color: #ebf3f9;
}

.rwd-table-new tr:nth-child(odd):not(:first-child) {
    background-color: #ebf3f9;
}

.rwd-table th {
    display: none;
}

.rwd-table-new th {
    display: none;
}


.rwd-table td {
    display: block;
}

.rwd-table-new td {
    display: block;
}


.rwd-table td:first-child {
    margin-top: .5em;
}

.rwd-table-new td:first-child {
    margin-top: .5em;
}


.rwd-table td:last-child {
    margin-bottom: .5em;
}

.rwd-table-new td:last-child {
    margin-bottom: .5em;
}

.rwd-table td:before {
    content: attr(data-th) ": ";
    font-weight: bold;
    width: 120px;
    display: inline-block;
    color: #000;
}

.rwd-table-new td:before {
    content: attr(data-th) ": ";
    font-weight: bold;
    width: 120px;
    display: inline-block;
    color: #000;
}


.rwd-table th,
.rwd-table td {
    text-align: left;
}

.rwd-table-new th,
.rwd-table-new td {
    text-align: left;
}

.rwd-table {
    color: #333;
    border-radius: .4em;
    overflow: hidden;
}

.rwd-table-new {
    color: #333;
    border-radius: .4em;
    overflow: hidden;
}

.rwd-table tr {
    border-color: #bfbfbf;
}

.rwd-table-new tr {
    border-color: #bfbfbf;
}

.rwd-table th,
.rwd-table td {
    padding: .5em 1em;
}

.rwd-table-new th,
.rwd-table-new td {
    padding: .5em 1em;
}


@media screen and (max-width: 601px) {
    .rwd-table tr:nth-child(2) {
        border-top: none;
    }
}

@media screen and (min-width: 600px) {
    .rwd-table tr:hover:not(:first-child) {
        background-color: #d8e7f3;
    }

    .rwd-table td:before {
        display: none;
    }

    .rwd-table th,
    .rwd-table td {
        display: table-cell;
        padding: .25em .5em;
    }

    .rwd-table th:first-child,
    .rwd-table td:first-child {
        padding-left: 0;
    }

    .rwd-table th:last-child,
    .rwd-table td:last-child {
        padding-right: 0;
    }

    .rwd-table th,
    .rwd-table td {
        padding: 1em !important;
    }
}


/* THE END OF THE IMPORTANT STUFF */

/* Basic Styling */

.card {
    border: none;
    border-radius: 10px
}

.c-details span {
    font-weight: 300;
    font-size: 13px
}

.icon {
    width: 50px;
    height: 50px;
    background-color: #eee;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 39px
}

.badge span {
    background-color: #fffbec;
    width: 60px;
    height: 25px;
    padding-bottom: 3px;
    border-radius: 5px;
    display: flex;
    color: #fed85d;
    justify-content: center;
    align-items: center
}

.progress {
    height: 10px;
    border-radius: 10px
}

.progress div {
    background-color: red
}

.text1 {
    font-size: 14px;
    font-weight: 600
}

.text2 {
    color: #a5aec0
}

.card-title {
    text-align: center;
    text-decoration: underline;
}

.card-body {
    margin: 0.5rem;
}

/* css for speakers */

.img_speaker {
    /* width: 50%; */
}





/* css for tracks */


.bleu {
    font-size: larger;
}

.Pap_template {
    background: #F9FAFB;
    box-shadow: rgba(49, 49, 49, 0.35) 0px 5px 15px;
    width: 85rem;
}

.hreo {
    margin-top: 9rem;
}

@media screen and (max-width: 768px) {
    .forMob {
        background-color: red;
        width: 1rem;

    }
}


/* css for important dates */

#idnsticky_bar {
    padding: 8px 5px;
    background-image: linear-gradient(to right, #25aae1, #4481eb, #04befe, #3f86ed);
    position: -webkit-sticky;
    top: 0;
    z-index: 999;
    text-align: center;
    box-shadow: 0px 1px 11px #888888;
    color: #000000;
    font-family: 'Viga', sans-serif;
    font-size: 1.1em;
    display: block;
}

#sticky_bar_text,
#sticybaricon,
#sticky_bar_btn {
    display: inline-block;
}

#cs-logo {
    height: 27px;
    padding-top: 7px;
    background: url(https://app.crowdsignal.com/images/logo-white.svg) no-repeat center center;
    background-size: 30px 30px;
    width: 40px;
    color: transparent;
    display: list-item;
}

.btn-hover {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    padding: 10px 15px;
    text-align: center;
    border: none;
    background-size: 300% 100%;
    border-radius: 50px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.btn-hover:hover {
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

p.customdesco {
    margin: 0;
    font-weight: 300;
}

.btn-hover:focus {
    outline: none;
}

.btn-hover.color-1 {
    background-image: linear-gradient(to right, #eb3941, #f15e64, #e14e53, #e2373f);
    box-shadow: 0 5px 15px rgba(242, 97, 103, .4);
}