@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700&display=swap');
* {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

a:hover {
    text-decoration: none
}

.studen-signup a:hover {
    color: #92d050;
}

a:not([href]):not([tabindex]) {
    color: #38528e;
    cursor: pointer
}

.paginationDiv nav {
    display: inline-block !important;
}

body {
    font-weight: 400;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
}

h1{
    font-size: 42px;
    font-weight: 700;
}

h2{
    font-size: 36px;
    font-weight: 700;
}

h3{
    font-size: 30px;
    font-weight: 600;
}

h4{
    font-size: 24px;
    font-weight: 600;
}

h5{
    font-size: 20px;
    font-weight: 600;
}

h6{
    font-size: 18px;
    font-weight: 500;
}

p{
    font-size: 16px;
}

select.form-control:not([size]):not([multiple]) {
    height: auto;
}

select.form-control {
    max-width: 200px;
    background: #f6f6f6 !important;
    border: none;
    display: inline-block;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: #337ab7 !important;
}


.btn-light{
    width: 170px;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    background-color: #bcbfc1;
    
}

.btn-light:hover{
    width: 170px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background-color: #006fc0;
    
}

.book_consultation{
    background: linear-gradient(90deg, rgba(0, 111, 192, 1) 30%, rgba(146, 208, 80, 1) 70%);
    vertical-align: middle;
    color: #fff;
    font-size: 16px;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
}

.book_consultation:hover{
    color: #fff;
}

.scroll_down_consultation {
    height: 50px;
    width: 30px;
    position: absolute;
    border-radius: 50px;
    cursor: pointer;
    bottom: -32px;
    left: 665px;
}

.scroll_down_consultation::before,
.scroll_down_consultation::after {
  content: "";
  position: absolute;
  top: 24%;
  left: 50%;
  height: 10px;
  width: 10px;
  transform: translate(-50%, -100%) rotate(-45deg);
  border: 2px solid #fff;
  border-top: transparent;
  border-left: transparent;
  animation: scroll_down_consultation 1s linear infinite;
}

.scroll_down_consultation:hover::before,
.scroll_down_consultation:hover::after {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  height: 10px;
  width: 10px;
  transform: translate(-50%, -100%) rotate(-45deg);
  border: 2px solid #fff;
  border-top: transparent;
  border-left: transparent;
  animation: scroll_down_consultation 1s linear infinite;
}

.scroll_down_consultation::before {
  left: 30%;
  animation-delay: 0.5s;
}

@keyframes scroll_down_consultation {
  0% {
    /* top:20%; */
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    left: 90%;
    opacity: 0;
  }
}

.scroll_down_waitlist {
    height: 50px;
    width: 30px;
    position: absolute;
    border-radius: 50px;
    cursor: pointer;
    bottom: 184px;
    left: 370px;
}

.scroll_down_waitlist::before,
.scroll_down_waitlist::after {
  content: "";
  position: absolute;
  top: 24%;
  left: 50%;
  height: 10px;
  width: 10px;
  transform: translate(-50%, -100%) rotate(-45deg);
  border: 2px solid #fff;
  border-top: transparent;
  border-left: transparent;
  animation: scroll_down_waitlist 1s linear infinite;
}

.scroll_down_waitlist:hover::before,
.scroll_down_waitlist:hover::after {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  height: 10px;
  width: 10px;
  transform: translate(-50%, -100%) rotate(-45deg);
  border: 2px solid #fff;
  border-top: transparent;
  border-left: transparent;
  animation: scroll_down_waitlist 1s linear infinite;
}

.scroll_down_waitlist::before {
  left: 30%;
  animation-delay: 0.5s;
}

@keyframes scroll_down_waitlist {
  0% {
    /* top:20%; */
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    left: 90%;
    opacity: 0;
  }
}
        
.box_row {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.box_row_bg {
    margin-top: 1rem;
    margin-bottom: 1rem;
    background: #f9f9f9;
    border-radius: 5px;
}

.box_row_bg .form-control {
    background: #ffffff !important;
    display: inline-block;
    font-size: 12px;
}

.btn {
    /*border: none;*/
    padding-top: 5px;
    padding-bottom: 5px;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    overflow: hidden;
    font-size: 0.8rem;
}

.btn:focus,
button:focus {
    outline: none;
    box-shadow: none
}

.btn-primary {
    color: #fff;
    background-color: #006fc0;
    border-color: #006fc0;
}

.btn-outline-primary {
    border-color: #006fc0;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle,
.btn-primary:not(:disabled):not(.disabled):active:focus {
    border: none;
    box-shadow: none;
}

.nav-tabs .nav-link {
    padding: .6rem 1rem;
}

.nav-tabs .nav-link.active {
    font-weight: 600;
}

.login_form .btn {
    font-weight: 500
}

#header {
    height: 58px;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: block;
    background-color: #fff;
    z-index: 1030;
    padding-right: 15px;
}

#sidebar {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    padding-top: 95px;
    padding-bottom: 30px;
    width: 220px;
    overflow: auto;
    z-index: 1;
    transition: transform .3s ease-in-out;
    background: #1F2930;
    /*margin-bottom: 100px;*/
}

.internalFooter {
    position: relative;
    z-index: 9;
    background: #1F2930 !important;
}

#wrapper {
    min-height: calc(100vh - 99px);
    margin-top: 58px;
    padding: 25px 25px 40px;
    -webkit-transition: margin-left .3s ease;
    -o-transition: margin-left .3s ease;
    transition: margin-left .3s ease;
    border-top: 1px solid #ccc;
}

.logo {
    float: left;
    width: 215px;
    padding: 16px 0 38px;
    background: #1f2930;
}

.header_actions {
    float: right
}

.header_actions ul li {
    display: inline-block
}

#sidebar ul li a {
    color: #BCBFC1;
    padding: 10px 25px;
    display: block;
    position: relative;
    font-size: 12px;
    border-left: 2px solid transparent;
}

#sidebar ul li a span {
    padding-left: 10px;
}

#sidebar li {
    margin-bottom: 2px;
}

#sidebar ul li a .img-fluid {
    max-width: 15px;
    position: absolute;
    right: auto;
    top: 48%;
    left: 14px;
    transform: translateY(-50%);
}

#sidebar ul li.active a .img-fluid,
#sidebar ul li a:hover .img-fluid,
li.breadcrumb-item-icon img {
    filter: invert(1);
    width: 60%;
}

#sidebar ul li a:hover,
#sidebar ul li.active a {
    color: #006fc0;
}

#sidebar ul li a:hover,
#sidebar ul li.active a {
    border-left: 2px solid #006fc0;
}

#sidebar .icon_img {
    margin: 0 5px;
    width: 20px;
}

#sidebar ul li a:hover .icon_img,
#sidebar ul li.active a .icon_img,
.icon_img.selected {
    display: none;
}

#sidebar ul li a:hover .icon_img.selected,
#sidebar ul li.active a .icon_img.selected {
    display: inline-block;
}

.header_actions ul a img {
    max-width: 21px;
}

.app-sidebar__toggle {
    padding-left: 26px;
    line-height: 65px;
    -webkit-transition: background-color .3s ease;
    -o-transition: background-color .3s ease;
    transition: background-color .3s ease;
    float: left;
    width: 47px;
    height: 60px
}

.header_actions ul li a {
    margin-right: 17px;
    position: relative;
}

.header_actions ul li a:hover {
    color: #16181b;
}

.header_actions ul li a span.badge {
    position: absolute;
    background: #006fc0;
    font-size: 8px;
    border-radius: 50px;
    width: 20px;
    right: -10px;
    color: #fff;
    height: 20px;
    padding: 3px 0 0;
    border: 2px solid #fff;
    top: -10px;
}

.app-sidebar__toggle svg rect {
    fill: #5f2f31;
    -webkit-transition: .3s ease all;
    -o-transition: .3s ease all;
    transition: .3s ease all
}

.app-sidebar__toggle svg rect:nth-child(4),
.app-sidebar__toggle svg rect:nth-child(5) {
    opacity: 0
}

.app-sidebar__toggle svg {
    width: 20px;
    height: 20px;
    vertical-align: middle
}

.app-sidebar__toggle svg rect:nth-child(2) {
    -webkit-transform: scaleX(.8);
    -ms-transform: scaleX(.8);
    transform: scaleX(.8)
}

.app-sidebar__toggle:hover svg rect:nth-child(2) {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1)
}

#sidebar ul .submenu a i {
    margin-right: 30px;
    margin-top: 5px
}

#sidebar ul li a:hover i {
    color: #fff;
}

.logo {
    text-align: center
}

.dropdown-menu.show {
    padding: 0
}

.dropdown-item {
    font-size: 12px;
    padding: 8px 10px
}

.dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ddd
}

.header_actions ul li.profile_icon a img {
    max-width: 30px;
    border-radius: 50%
}

.header_actions ul.mb-0 {
    line-height: 60px
}

.header_actions ul li:last-child a img {
    margin-top: -7px;
    width: 30px;
    height: 30px;
    max-width: inherit;
}

.app-sidebar__toggle i {
    font-size: 18px;
    color: #1f2930;
}

.main_wrapper {
    background: #f9f9f9;
}

.app-sidebar__toggle i:hover,
.main_wrapper.active .app-sidebar__toggle i {
    /*color: #f1a105;*/
}

.main_wrapper.active .logo {
    width: 100px;
}

.main_wrapper.active .logo svg {
    width: 74px;
}

.main_wrapper.active #sidebar li span {
    display: none;
}

.main_wrapper.active .sidebartitle {
    display: none;
}


.main_wrapper.active #sidebar li {
    text-align: center;
}

.header_actions .dropdown-toggle::after {
    display: none;
}

.header_actions .dropdown-menu.show {
    padding: 0;
    top: 17px !important;
    right: 0;
    left: 0;
    border-radius: 0;
}

.header_actions ul li a {
    line-height: normal;
}

.community{
    margin-right: 207px;
}

.video-background-holder {
  position: relative;
  background-color: #ffffff;
  height: calc(113vh);
  min-height: 20rem;
  width: 100%;
  overflow: hidden;
}

.video-background-holder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  transform: translateX(-50%) translateY(-50%);
}

.video-background-content {
  position: relative;
  z-index: 2;
}

.video-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #6b6b6b;
  opacity: 0.5;
  z-index: 1;
}

.wow-font-size{
    font-size: 42px;
}

/********responsive-css-start-here**********/

@media (min-width: 769px) {

    #wrapper {
        margin-left: 220px;
        background: #f9f9f9;
    }
    .main_wrapper.active #wrapper {
        margin-left: 100px;
    }
    .main_wrapper.active #sidebar {
        transform: translateX(-0px);
        width: 100px;
    }
    .w-com.csmt-sale .cost-v .col-md-4 {
        padding: 0 20px
    }
    .main_wrapper.active .footer {
        margin-left: 0
    }
}

@media (max-width: 768px) {

    #sidebar {
        width: 0;
    }
    .main_wrapper.active #sidebar {
        transform: translateX(0)
    }
    .main_wrapper.active #sidebar {
        transform: translateX(-0px);
        width: 140px;
    }
    #header {
        padding-right: 0
    }
    .header_actions ul li:first-child {
        padding: 0 10px;
    }
    .container_form .container-login100 {
        padding: 15px;
    }
}

@media(max-width: 767px) {

    .logo {
        width: 140px;
        padding: 16px 0 1px;
    }
    .main_wrapper.active .logo {
        width: 140px;
    }
    .header_actions i {
        font-size: 16px;
        margin-right: 0
    }
    .app-sidebar__toggle svg {
        width: 15px;
        height: 15px
    }
    body .Profile_Box {
        margin-top: 0;
    }
    .header_search {
        display: none;
    }
    .app-sidebar__toggle {
        padding-left: 10px;
        width: 30px;
    }
    .header_actions ul li a {
        margin-right: 8px;
    }
    li.dropdown.profile_icon>a {
        font-size: 0;
    }
    .main_wrapper .logo svg {
        width: 74px;
    }
}

#header input[type=text] {
    width: 36px;
    box-sizing: border-box;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 16px;
    background: url("../images/search_icon.png");
    background-position: 9px 10px;
    background-repeat: no-repeat;
    padding: 5px 8px;
    -webkit-transition: width .4s ease-in-out;
    transition: width .4s ease-in-out;
    position: relative;
    text-indent: 25px;
    z-index: 9;
    background-size: 15px;
}

#header input[type=text]:focus {
    width: 100%;
    outline: none;
    border: 1px solid #f1a105;
}

.header_search {
    float: left;
    max-width: 500px;
    position: relative;
    width: 100%;
    margin: 12px 10px;
}

.header_search i {
    position: absolute;
    top: 10px;
    left: 10px;
}

.breadcrum li {
    display: inline-block;
}

.breadcrum li a {
    color: #8f9498;
}

.breadcrum li a:hover {
    color: #f1a105;
}

.footer {
    margin-left: 250px;
    text-align: center;
}

.main_wrapper.active+.footer {
    margin-left: 150px;
}

.content_panel {
    border-radius: 10px;
    overflow: hidden;
    /*border: 1px solid #ddd;*/
    background: #fff;
    box-shadow: 0px 3px 15px #0000000f;
}

.Inner_Panel {
    padding: 15px;
}

h2.page_title {
    font-weight: bold;
    font-size: 36px;
}

.flearmore {
    color: #fff;
    font-size: 16px;
    left: 20px;
    bottom: 20px;
    position: absolute;
    padding: 10px 30px;
    border-radius: 5px;
}


/************************ Profile Page CSS *************************/

.Profile_banner img {
    width: 100%;
}

.Profile_Box {
    border: 1px solid #eee;
    border-radius: 5px;
    margin-bottom: 20px;
    margin-top: -70px;
    text-align: center;
    background: #fff;
}

.ProfileImg {
    background: #000;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: inline-block;
    margin-top: -70px;
    overflow: hidden;
}

.ProfileImg img {
    /* max-height: 120px; */
    height: 120px;
    max-width: 120px;
    width: 100%;
}

span.sponsor {
    background: #006fc0;
    color: #fff;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 35px;
    margin: 6px 0;
    font-size: 16px;
    display: inline-block;
}

span.school {
    background: #006fc0;
    color: #ffffff;
    font-weight: 600;
    padding: 3px 13px;
    border-radius: 35px;
    margin: 6px 0;
    font-size: 16px;
    display: inline-block;
}

.ProfileCont {
    padding: 15px;
}

.ProfileCont .editProfileBtn {
    width: 100%;
    margin-top: 15px;
}

.ProfileCont h3 {
    font-size: 30px;
    color: #1F2930;
    font-weight: 600;
}

.ProfileCont p {
    color: #787878;
    margin: 5px 0;
    font-size: 16px;
}

.ProfileCont em {
    display: block;
    font-style: normal;
    font-size: 16px;
    color: #ADADAD;
}

.ProfileCont em img {
    vertical-align: -2px;
}

a.MessageLink {
    border: 1px solid;
    border-radius: 4px;
    color: #006fc0;
    padding: 5px 15px;
    display: inline-block;
    margin: 10px 0;
}

a.MessageLinkSponsor {
    border: 1px solid;
    border-radius: 4px;
    color: #993366;
    padding: 5px 15px;
    display: inline-block;
    margin: 10px 0;
}

a.MessageLinkSponsor:hover {
    color: #fff;
    background: #993366;
}

a.MessageLink:hover {
    color: #fff;
    background: #006fc0;
}

.SocialProfile {
    padding: 10px 0px;
    text-align: left;
}

.SocialProfile a {
    display: block;
    color: #ADADAD;
    font-size: 16px;
    margin-bottom: 5px;
}

.SocialProfile a:hover {
    color: #006fc0;
}

.SocialProfile i {
    min-width: 16px;
    text-align: center;
}

.tab-content {
    padding: 15px 0;
}

.ProjectInput {
    margin-bottom: 15px;
}

.ProjectInput select.form-control {
    max-width: 200px;
    background: #f6f6f6;
    border: none;
    float: right;
}

.ProjectImg img {
    width: 100%;
    min-height: 115px;
}

.ProjectImg {
    height: 115px;
    overflow: hidden;
    background: #000;
}

.ProjectBox {
    border-radius: 6px;
    background: #f6f6f6;
    overflow: hidden;
    margin-bottom: 15px;
}

.ProjectCont {
    padding: 15px;
}

.ProjectCont h4 {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
    color: #1F2930;
}

.ProjectCont em {
    font-style: normal;
    margin: 0 0 5px;
    color: #1F2930;
    display: block;
    height: 40px;
    overflow: hidden;
}

.ProjectCont p {
    color: #1F2930;
    font-size: 16px;
    padding: 5px 0;
    height: 80px;
    overflow: hidden;
}

.ProjectCont h3 {
    color: #006fc0;
    font-weight: 600;
    font-size: 13px;
}

.ProjectCont .btn {
    float: right;
    margin-bottom: 15px;
    padding: 5px 15px;
    color: #fff;
    background: #006fc0;
    font-size: 13px;
    font-weight: 500;
}

.projects_panel {
    border: none;
}

.ProfileTabs li a.nav-link {
    color: #1F2930;
    border: none;
    border-radius: .25rem;
}

.ProfileTabs .nav-tabs {
    border: none;
}

.ProfileTabs a.nav-link.active {
    background: #006FC0;
    color: #fff;
}


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

.Registration_Panel {
    height: 100vh;
}

.registration_desktop_mobile{
    height: 100vh;
    width: 50%;
    background-color: #fff;
    float: left;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100% 50%;
    opacity: 1;
    box-shadow: 0px 3px 50px #0000000F;
}


.Registration_Panel_left {
    height: 100vh;
    width: 50%;
    background-color: grey;
    float: left;
    background: url(../images/business_leaders.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.Registration_Panel2_left {
    background: url(../images/business_leaders.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.Registration_logo {
    padding: 26px 22px;
}

.Registration_logo img {
    max-width: 190px;
    margin-top: -295px;
}

.Registration_text {
    padding-top: 5rem;
    text-align: center;
    color: #006fc0;
}

.Registration_text h1 {
    font-weight: bold;
    font-size: 42px;
}

.Registration_text h2 {
    font-size: 36px;
    font-weight: 700;
}

.registration_headtext{
    position: static;
    background-color: #f0eef973;
    padding: 10px;
    width: 400px;
    border-radius: 5px;
    margin-left: 150px;
}

.registration_nonprofit{
    position: static;
    background-color: #f0eef973;
    padding: 10px;
    width: 350px;
    border-radius: 5px;
    margin-left: 20px;
}

    .registration_nonprofit h2 {
        font-size: 36px;
        font-weight: 700;
    }

.Registration_text p {
    font-size: 16px; 
    color: #3b3b3b; 
    text-align: left; 
    margin-top: 270px; 
    padding: 10px;
}

.Registration_Panel_right {
    height: 100vh;
    width: 50%;
    position: relative;
    float: right;
    padding: 0 35px;
}

.Registration_Panel_right_Header {
    position: relative;
    padding: 15px;
    float: left;
    width: 100%;
}

.Registration_Form .form-group label {
    font-weight: 600;
    color: #3B3B3B;
}

.Registration_Form .form-group {
    margin-bottom: 0.8rem;
}

.Registration_Form form {
    padding: 20px 0px 0px 0px;
}

.Registration_Form form select {
    display: block;
    border: 1px solid #ced4da;
    max-width: 100%;
    height: calc(2.25rem + 1px) !important;
}

.sponsor_signup_btn {
    font-size: 16px;
    background: #006fc0;
    color: #ffffff;
    width: 13rem;
    height: 50px;
}

.corporate_social_h1{
    color: #006fc0; 
    font-weight: 700;
}

.corporate_social_h3{
    color: #92d050;
    font-weight: 600;
}

.corporate_social_h6{
    color: #006fc0; 
    font-weight: 700; 
    margin-top: 2rem !important;
}

.corporate_social_h6 a{
    color: #006fc0 !important; 
    font-weight: 700; 
    margin-top: 2rem !important;
}

.corporate_social_h6 a:hover{
    color: #006fc0 !important; 
    font-weight: 700; 
    margin-top: 2rem !important;
}

.back_icon {
    float: left;
    margin: 15px 0 15px;
}

.right_sidebar {
    float: right;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 99;
    top: 0;
    right: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 16px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    color: #f1f1f1;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

@media screen and (max-height: 450px) {
    .submissionTimeLeft{
        text-align: center;
    }
    .sidenav {
        padding-top: 15px;
    }
    .sidenav a {
        font-size: 16px;
    }
    
    #sidebar .icon_img {
    margin: 0 5px;
    width: 40px;
    }
}

.form-group label {
    font-size: 14px;
}

.form-control {
    background: #F4F4F4;
    font-size: 13px;
    /*padding: 8px 10px;*/
}

.Registration_Form {
    padding: 0px 15px 0;
    float: left;
    width: 100%;
    position: relative;
    z-index: 9;
}

.Registration_Panel_right::before {
    width: 218px;
    height: 248px;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    /*background: url("../images/Registration_before.png");*/
    background-repeat: no-repeat;
}

.Registration_Form h2 {
    text-align: center;
    font-size: 36px;
    color: #3B3B3B;
    font-weight: 700;
}

.Registration_Form h2 span {
    display: block;
    margin-top: 10px;
}

.Login_Panel_left {
    height: 100vh;
    width: 50%;
    background-color: #fff;
    float: left;
    /*background: transparent url(../images/login_bg.png) 0% 0% no-repeat padding-box;*/
    background-image: url(../images/login_bg.svg);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100% 50%;
    opacity: 1;
    box-shadow: 0px 3px 50px #0000000F;
}

.Login_text h2{
    text-align: center;
    font-size: 36px;
    color: #92D050;
    margin-top: 3rem;
}

.Login_text span {
    font-weight: bold;
}

.login-background{
    height: 200px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.login_signup_btn a img {
    width: 150px;
    height: 150px;;
    margin-top: 45px;
}

.login_signup_btn a img:hover {
    padding-top: 5px;
    transition: 0.5s;
}

.Login_Form_Wrapper {
    margin-top: 3.5rem;
}

.Login_Form {
    width: 350px;
    margin: auto;
}

.Login_Form .form-control {
    border: none;
    border-radius: 2px;
}

.Login_Form .checkbox {
    padding-left: 5px;
}

.Login_Form a {
    color: #006FC0;
    text-decoration: underline;
}

.Login_Form .signin_btn {
    background: #006fc0;
    margin-top: 1rem;
}

.error {
    color: #C60606;
}

.btn-warning {
    background: #006fc0;
    color: #fff;
}

.btn:hover {
    color: #fff;
}

.btnsPanel a.btn {
    min-width: 238px;
}

.btnsPanel p {
    margin: 10px 0;
}

.btnsPanel p a,
.AcceptTerms a {
    color: #006FC0;
}

@media (max-width:1023px) {
    .Registration_Panel_left,
    .Registration_Panel2_left .Registration_Panel_right {
        width: 100%;
        height: auto;
    }
    .Registration_Panel_right {
        padding: 0 25px;
    }
}

.checkbox {
    padding-left: 20px;
}

.checkbox label {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding-left: 5px;
}

.checkbox label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 19px;
    height: 20px;
    top: 2px;
    left: 0;
    margin-left: -20px;
    border: 1px solid #cccccc;
    border-radius: 3px;
    background-color: #fff;
    -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}

.checkbox label::after {
    display: inline-block;
    position: absolute;
    width: 18px;
    height: 18px;
    left: 0;
    top: 2px;
    margin-left: -19px;
    padding-left: 3px;
    padding-top: 2px;
    font-size: 11px;
    color: #555555;
}


/* .checkbox input[type="checkbox"],
.checkbox input[type="radio"] { */


/* opacity: 0; */


/* z-index: 1; */


/* } */

.checkbox input[type="checkbox"]:focus+label::before,
.checkbox input[type="radio"]:focus+label::before {
    outline: thin dotted;
    outline: none;
    outline-offset: -2px;
}

.checkbox input[type="checkbox"]:checked+label::after,
.checkbox input[type="radio"]:checked+label::after {
    font-family: "FontAwesome";
    content: "\f00c";
}

.checkbox input[type="checkbox"]:disabled+label,
.checkbox input[type="radio"]:disabled+label {
    opacity: 0.65;
}

.checkbox input[type="checkbox"]:disabled+label::before,
.checkbox input[type="radio"]:disabled+label::before {
    background-color: #eeeeee;
    cursor: not-allowed;
}

.checkbox.checkbox-circle label::before {
    border-radius: 50%;
}

.checkbox.checkbox-inline {
    margin-top: 0;
}

.checkbox-primary input[type="checkbox"]:checked+label::before,
.checkbox-primary input[type="radio"]:checked+label::before {
    background-color: #337ab7;
    border-color: #337ab7;
}

.checkbox-primary input[type="checkbox"]:checked+label::after,
.checkbox-primary input[type="radio"]:checked+label::after {
    color: #fff;
}

.checkbox-danger input[type="checkbox"]:checked+label::before,
.checkbox-danger input[type="radio"]:checked+label::before {
    background-color: #d9534f;
    border-color: #d9534f;
}

.checkbox-danger input[type="checkbox"]:checked+label::after,
.checkbox-danger input[type="radio"]:checked+label::after {
    color: #fff;
}

.checkbox-info input[type="checkbox"]:checked+label::before,
.checkbox-info input[type="radio"]:checked+label::before {
    background-color: #5bc0de;
    border-color: #5bc0de;
}

.checkbox-info input[type="checkbox"]:checked+label::after,
.checkbox-info input[type="radio"]:checked+label::after {
    color: #fff;
}

.checkbox-warning input[type="checkbox"]:checked+label::before,
.checkbox-warning input[type="radio"]:checked+label::before {
    background-color: #006fc0;
    border-color: #006fc0;
}

.checkbox-warning input[type="checkbox"]:checked+label::after,
.checkbox-warning input[type="radio"]:checked+label::after {
    color: #fff;
}

.checkbox-success input[type="checkbox"]:checked+label::before,
.checkbox-success input[type="radio"]:checked+label::before {
    background-color: #5cb85c;
    border-color: #5cb85c;
}

.checkbox-success input[type="checkbox"]:checked+label::after,
.checkbox-success input[type="radio"]:checked+label::after {
    color: #fff;
}

.radio {
    padding-left: 20px;
}

.radio label {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding-left: 5px;
}

.radio label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    margin-left: -20px;
    border: 1px solid #cccccc;
    border-radius: 50%;
    background-color: #fff;
    -webkit-transition: border 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out;
    transition: border 0.15s ease-in-out;
}

.radio label::after {
    display: inline-block;
    position: absolute;
    content: " ";
    width: 11px;
    height: 11px;
    left: 3px;
    top: 3px;
    margin-left: -20px;
    border-radius: 50%;
    background-color: #555555;
    -webkit-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    -moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    -o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
}

.radio input[type="radio"] {
    opacity: 0;
    z-index: 1;
}

.radio input[type="radio"]:focus+label::before {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

.radio input[type="radio"]:checked+label::after {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}

.radio input[type="radio"]:disabled+label {
    opacity: 0.65;
}

.radio input[type="radio"]:disabled+label::before {
    cursor: not-allowed;
}

.radio.radio-inline {
    margin-top: 0;
}

.radio-primary input[type="radio"]+label::after {
    background-color: #337ab7;
}

.radio-primary input[type="radio"]:checked+label::before {
    border-color: #337ab7;
}

.radio-primary input[type="radio"]:checked+label::after {
    background-color: #337ab7;
}

.radio-danger input[type="radio"]+label::after {
    background-color: #d9534f;
}

.radio-danger input[type="radio"]:checked+label::before {
    border-color: #d9534f;
}

.radio-danger input[type="radio"]:checked+label::after {
    background-color: #d9534f;
}

.radio-info input[type="radio"]+label::after {
    background-color: #5bc0de;
}

.radio-info input[type="radio"]:checked+label::before {
    border-color: #5bc0de;
}

.radio-info input[type="radio"]:checked+label::after {
    background-color: #5bc0de;
}

.radio-warning input[type="radio"]+label::after {
    background-color: #f0ad4e;
}

.radio-warning input[type="radio"]:checked+label::before {
    border-color: #f0ad4e;
}

.radio-warning input[type="radio"]:checked+label::after {
    background-color: #f0ad4e;
}

.radio-success input[type="radio"]+label::after {
    background-color: #5cb85c;
}

.radio-success input[type="radio"]:checked+label::before {
    border-color: #5cb85c;
}

.radio-success input[type="radio"]:checked+label::after {
    background-color: #5cb85c;
}

input[type="checkbox"].styled:checked+label:after,
input[type="radio"].styled:checked+label:after {
    font-family: 'FontAwesome';
    content: "\f00c";
}

input[type="checkbox"] .styled:checked+label::before,
input[type="radio"] .styled:checked+label::before {
    color: #fff;
}

input[type="checkbox"] .styled:checked+label::after,
input[type="radio"] .styled:checked+label::after {
    color: #fff;
}


/*Bulletin Css*/

.bulletinPanel {
    width: 100%;
}

.bulletinPanel .search-text {
    padding: 0px 10px;
    border-bottom: solid 1px #ccc;
    display: block;
}

.bulletin-box h4 {
    border-bottom: #ffa550 solid 3px;
    font-size: 24px;
}

.bulletin-box .main-text {
    min-height: 50px;
}

.bulletinPanel .bulletin-box {
    padding: 1rem;
    box-shadow: 0 1px 4px #ccc;
    margin: 1rem 0;
    border-radius: 5px;
}

.bulletinPanel .footer-content span {
    padding-right: 0.5rem;
    color: #bcbfc1;
}


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

.Page_Title {
    margin-bottom: 15px;
}

.Page_Title h1 {
    font-size: 42px;
    margin: 4px 0 0;
}

.btns_box {
    float: right;
}

a.btn.btn-default {
    border: 1px solid #ccc;
}

a.btn.btn-default:hover {
    color: #333;
    background: #eee;
}


/*.form-control { height: 38px;}*/

.RulesIncentiveBox {
    border: 1px solid #DCDCDC;
    padding: 15px;
    border-radius: 7px;
}

.RulesIncentiveBox .checkbox,
.RulesIncentiveBox .radio {
    padding-left: 3px;
}

.RulesIncentive h2 {
    margin: 0 0 10px;
    font-size: 36px;
    color: #1F2930;
}

.RulesIncentive {
    border-top: 1px solid #ddd;
    padding: 20px 0;
    margin-top: 15px;
}

input[type="radio"].styled:checked+label:after {
    content: '';
}

.radio input[type="radio"]:focus+label::before {
    outline: none;
}

.custom-file-label,
.custom-file-label::after {
    line-height: 24px;
    z-index: 0;
}

textarea.form-control {
    height: 100px;
}


/************* Landing Page css start **************/

.landing_panel {
    /*background: url(../images/landing_top_bg.png);*/
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 81%;
}

.landing_header {
    z-index: 9;
}

.landing_header ul.navbar-nav {
    min-height: 60px;
    margin-top: 15px;
}

.landing_header ul.navbar-nav li a {
    color: #3B3B3B;
    font-size: 14px;
    padding: 5px 15px;
    margin: 0 0 0 15px;
    transition: 0.1s;
}

.landing_header ul.navbar-nav li a:hover,
ul.navbar-nav li a.active {
    font-weight: bold;
}

.landing_header ul.navbar-nav li.nav-item.Signin a {
    margin-left: 15px !important;
    display: inline-block;
    min-width: 100px;
    text-align: center;
    background: #006FC0;
    border-radius: 5px;
    color: #fff;
    padding: 6px;
}

.landing_header ul.navbar-nav li.nav-item.consultation a {
    background: linear-gradient(90deg, rgba(0, 111, 192, 1) 30%, rgba(146, 208, 80, 1) 70%);
    margin-left: 15px !important;
    display: inline-block;
    min-width: 100px;
    text-align: center;
    border-radius: 5px;
    color: #fff;
    padding: 6px;
    opacity: 75%;
}


.consultations a {
    background: linear-gradient(90deg, rgba(0, 111, 192, 1) 30%, rgba(146, 208, 80, 1) 70%);
    margin-left: 15px !important;
    display: inline-block;
    min-width: 100px;
    text-align: center;
    border-radius: 5px;
    color: #fff;
    padding: 6px;
}

.coming_soon a {
    background-color: #f6df0d; 
    color: #000; 
    border-radius: 50px; 
    font-weight: 500;
    padding: 10px 20px 10px 20px;
}

.landing_header ul.navbar-nav li.nav-item.Signin a:hover {
    font-weight: none;
    border: none;
}

.landing_banner {
    padding: 15px 0;
}

.slide h2 {
    color: #92D050;
    font-size: 36px;
    margin: 15px 0 30px;
    font-weight: bold;
}

.slide p {
    font-size: 16px;
    font-weight: 600;
    color: #3B3B3B;
}

.consultationhome {
    margin-top: 50px;
    display: inline-block;
    text-align: center;
    border-radius: 5px;
    color: #fff;
}

#Slider .carousel-indicators li {
    width: 15px;
    height: 15px;
    border: 1px solid #006FC0;
    border-radius: 50%;
    margin: 0 10px;
    display: inline-block;
    cursor: pointer;
}

#Slider .carousel-indicators li.active {
    background: #006FC0;
}

div#Slider .carousel-indicators {
    bottom: -50px;
}

.landing_feature_box {
    border: 2px solid #006FC0;
    border-radius: 10px;
    float: left;
    width: 100%;
    margin: 15px 0 30px;
    background: #ffffff;
}

.landing_feature_box h2 {
    font-size: 36px;
    font-weight: 600;
    color: #006FC0;
    background: #fff;
    padding: 5px 15px;
    margin: -45px 0 0 208px;
    float: left;
}

.services_block h2 {
    font-size: 36px;
    font-weight: 600;
    color: #006FC0;
    background: #fff;
    padding: 5px 15px;
    margin: -44px 0 0 360px;
    float: left;
}

.landing_feature_cont {
    float: left;
    width: 100%;
    padding: 15px 30px;
}

.landing_feature_cont p {
    color: #3B3B3B;
    font-size: 16px;
}

span.title_icon img {
    max-height: 80px;
}

span.title_icon {
    display: inline-block;
    margin: 0px 15px;
}

.f_boxes {
    padding: 20px 15px;
    /*background: #f4faed;*/
    float: left;
    width: 100%;
    margin-bottom: 15px;
    text-align: center;
}

.f_boxes img {
    max-height: 60px;
    display: inline-block;
    margin-bottom: 20px;
}

.f_boxes span {
    display: table-cell;
    height: 36px;
    vertical-align: middle;
    width: 600px;
    line-height: 18px;
    font-weight: bold;
    font-size: 16px;
    color: #3B3B3B;
}

.modalwidth{
    max-width: 70% !important;
}

.landing_feature_box.accessBox h2 {
    float: right;
    margin: -45px 260px 0px 0px;
}

.landing_feature_box.accessBox2 h2 {
    float: right;
    margin: -45px 330px 0px 0px;
}

.landing_feature_box.accessBox .f_boxes {
    background: none;
}

.landing_feature_box.accessBox .f_boxes img {
    margin-top: 25px;
    margin-bottom: 10px;
}

.landing_feature_box.accessBox .landing_feature_cont,
.landing_feature_box.accessBox .landing_feature_cont p {
    padding-bottom: 0;
    margin-bottom: 0;
}

.JoinEcoSystem h2 {
    color: #3B3B3B;
    font-size: 36px;
    text-align: center;
    font-weight: 500;
}

.JoinEcoSystem {
    width: 100%;
    position: relative;
    margin-top: 40px;
}

.TabPanel_Cont {
    color: #3B3B3B !important;
    margin-left: -15px;
    padding: 10px 100px 18px 45px;
    border-radius: 0 225px 225px 0;
    width: 134%;
}

.TabPanel_Cont h4 {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.5;
    margin-top: 20px;
}

.TabPanel_Cont h3 {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.5;
}

.sponsers_Tab .TabPanel_Cont h4{
    color: #92D050;
}

.schools_Tab .TabPanel_Cont h4{
    color: #92D050;
}

.students_Tab .TabPanel_Cont h4{
    color: #92D050;
}

.sponsers_Tab .TabPanel_Cont h3{
    color: #006FC0;
}

.schools_Tab .TabPanel_Cont h3{
    color: #006FC0;
}

.students_Tab .TabPanel_Cont h3{
    color: #006FC0;
}

.TabPanel_Cont ul {
    margin: 0px 0px 0px 15px;
    padding: 10px;
}

.TabPanel_Cont ul li {
    color: #3B3B3B !important;
    margin: 10px 0;
    font-size: 16px;
}

.TabPanel_ImgBx img {
    width: 100%;
}

.TabPanel_Right {
    padding: 20px;
}

.TabPanel_ImgBx {
    max-width: 300px;
    display: inline-block;
    margin: 48px 0 20px;
}

.lean_join a {
    border: 1px solid;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 5px;
    margin: 0 7px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

.sponsers_Tab .lean_join .joinNow,
.popup-okay-btn {
    background: #006fc0;
    color: #fff;
}

.schools_Tab .lean_join .joinNow {
    background: #006fc0;
    color: #fff;
}

.students_Tab .lean_join .joinNow {
    background: #006fc0;
    color: #fff;
}

.sponsers_Tab .lean_join .joinNow:hover,
.popup-okay-btn:hover {
    background: #fff;
    color: #006fc0;
    border-color: #006fc0;
}

.schools_Tab .lean_join .joinNow:hover {
    background: #fff;
    color: #006fc0;
    border-color: #006fc0;
}

.students_Tab .lean_join .joinNow:hover {
    background: #fff;
    color: #006fc0;
    border-color: #006fc0;
}

.sponsers_Tab .lean_join a.learnMore,
.popup-visit-btn {
    border-color: #006fc0;
}

.schools_Tab .lean_join a.learnMore {
    border-color: #006fc0;
}

.students_Tab .lean_join a.learnMore {
    border-color: #006fc0;
}

.sponsers_Tab .lean_join a.learnMore:hover,
.popup-visit-btn:hover {
    background: #006fc0;
    color: #fff;
}

.schools_Tab .lean_join a.learnMore:hover {
    background: #006fc0;
    color: #fff;
}

.students_Tab .lean_join a.learnMore:hover {
    background: #006fc0;
    color: #fff;
}

.JoinEcoSystem .tab_panel {
    padding: 0 15px;
}

.landing_header a.navbar-brand img {
    max-width: 275px;
}

.landing_header_active{
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}

.LandingFooter {
    float: left;
    width: 100%;
    background: #006FC0;
    padding: 65px 0 20px 0;
    border-top: 14px solid #92D050;
}

.LandingFooter h2 {
    color: #92D050;
    font-weight: 700;
}

.footer_Form h3 {
    font-size: 30px;
    color: #fff;
    margin: 4px 0 15px;
}

.FooterWidgets {
    color: #fff;
}

.FooterWidgets ul li {
    display: block;
}

.ConnectUs ul li {
    position: relative;
    margin: 0 0 5px;
    padding-left: 50px;
    float: left;
    vertical-align: top;
    margin-top: 7%;
}

.ConnectUs ul li span {
    display: block;
    margin-top: 3%;
}

.ConnectUs ul li span {}

.ConnectUs {
    float: left;
    width: 100%;
}

.ConnectUs em {
    background: #92D050;
    width: 40px;
    display: inline-block;
    height: 40px;
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
}

.ConnectUs em img {
    height: 17px;
}

.ConnectUs b {
    display: block;
    margin-top: 9px;
    font-size: 16px;
}

.Links ul {
    /* padding-left: 20px; */
    min-height: 200px;
}

.Links ul li a {
    color: #ECECEC;
    margin-bottom: 5px;
}

.landingFooterSocial {
    text-align: left;
    margin-top: 15px;
}

.footer-heading {
    color: #92D050;
}

.btn-submit {
    background-color: #92D050;
    padding: 10px 35px;
    border: none;
    font-size: 16px;
    border-radius: 5px;
}

.btn-submit:hover {
    background-color: #92D050;
    padding: 10px 35px;
}

.landingFooterSocial a img {
    max-width: 33px;
}

.landingFooterSocial a {
    margin-left: 15px;
}

.Links li {
    margin: 0 0 10px;
}

.Links ul li a:hover {
    color: #92d050;
}

.copyright {
    border-top: 1px solid #ddd;
    padding: 15px 0 0;
    color: #fff;
    margin-top: 15px;
}

.footer-links a{
    color: #fff !important;
}

.Links h6 {
    font-size: 18px;
}

.JoinEcoSystem ul.nav.nav-tabs li {
    display: inline-block;
    margin: 0 45px;
}

.JoinEcoSystem ul.nav.nav-tabs li span img {
    max-height: 100px;
}

.JoinEcoSystem ul.nav.nav-tabs {
    text-align: center;
    display: block;
    border: none;
}

.JoinEcoSystem ul.nav.nav-tabs li a span {
    display: block;
    margin: 10px 0;
}

.JoinEcoSystem ul.nav.nav-tabs li span img.active {
    display: none;
}

.JoinEcoSystem ul.nav.nav-tabs li a.active span img.active {
    display: inline-block;
}

.JoinEcoSystem ul.nav.nav-tabs li a.active span img.Inactive {
    display: none;
}

.JoinEcoSystem ul.nav.nav-tabs li a.active span img.active:hover {
    padding-top: 5px;
    transition: 0.5s;
}

.JoinEcoSystem ul.nav.nav-tabs li a.active span img.Inactive:hover {
    padding-top: 5px;
    transition: 0.5s;
}

.JoinEcoSystem ul.nav.nav-tabs li a.active,
.JoinEcoSystem ul.nav.nav-tabs li a,
.JoinEcoSystem ul.nav.nav-tabs li a:hover {
    border: none;
}

.JoinEcoSystem ul.nav.nav-tabs li a em {
    font-weight: 600;
    font-style: normal;
    border-bottom: 3px solid transparent;
    padding-bottom: 5px;
    font-size: 16px;
    color: gray;
}

.JoinEcoSystem ul.nav.nav-tabs li a.active em {
    /* border-bottom: 3px solid #993366; */
    color: #000;
    position: relative;
}

.JoinEcoSystem ul.nav.nav-tabs li a.active em::after {
    height: 6px;
    width: 100%;
    background-image: url(https://www.elevateimpact.com/public/general_assets/images/border-buttom.png);
    position: absolute;
    left: 0%;
    content: '';
}

.JoinEcoSystem .tab-content {
    padding: 0px 0;
}

.landing_banner::before {
    width: 123px;
    height: 200px;
    content: '';
    /*background: url("../images/top-left-object.png") no-repeat;*/
    position: absolute;
    /*top: -225px;*/
    /* transform: rotate(180deg); */
    z-index: -1;
    left: 0 !important;
}



.JoinEcoSystem::after {
    width: 136px;
    height: 400px;
    content: '';
    background: url("../images/join_after.png");
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    bottom: 0;
}

textarea.form-control {
    resize: none;
}

@media (max-width:640px) {
    .Registration_logo img {
        max-width: 190px;
        margin-top: 0px;
    }
    
    div#navbarSupportedContent {
        background: #D1D1D1;
        padding: 20px 0;
    }
    .banner_img img {
        width: 100%;
    }
    .landing_feature_box h2 {
        font-size: 14px;
    }
    .landing_header ul.navbar-nav li.nav-item.Signin a {
        margin-left: 30px !important;
    }
    .col-md-3.offset-1 {
        margin: 0;
    }
    .Links ul {
        min-height: inherit;
    }
}


/*members css*/

.member_box {
    border: solid 1px #e3e3e3;
    border-radius: 5px;
    padding: 0.5rem;
    margin: 0px 0px 15px 0px;
    background: #ffffff;
    min-height: 300px;
}

.showroom_section::before {
    top: 140px !important;
}

.member_box .mb_header .badge {
    padding: 4px 8px;
    font-size: 10px;
}

.member_box .mb_header .badge-warning {
    background: #ffe9c1;
    color: #006fc0;
}

.member_box .mb_header .badge-light {
    background: #f9f9f9;
    color: #8c9194;
}

.member_box .mb_header i {
    color: #8f9497;
    font-size: 15px;
    padding-top: 4px;
    padding-left: 10px;
}

.member_box .mb_main {
    text-align: center;
    padding: 10px 0px;
    min-height: 220px;
}

.member_box .mb_main img {
    border-radius: 50px;
    width: 100px;
    height: 100px;
}

.member_box .mb_main h4 {
    font-size: 14px;
    font-weight: 600;
    padding-top: 10px;
    color: #1f2930;
}

.member_box .mb_main h5 {
    font-size: 12px;
    font-weight: 600;
    color: #787878;
}

.member_box .mb_main h6,
.member_box .mb_main p {
    font-size: 12px;
    color: #787878;
}

.member_box .mb_main p {
    margin-bottom: 0px;
}

.member_box .mb_footer {
    text-align: center;
}

.member_box .mb_footer a {
    background: #f9f9f9;
    width: 80%;
    border: solid 1px #dbdbdb;
    color: #1f2930;
    font-size: 12px;
}

.member_box .mb_footer a i {
    padding: 0px 5px;
}

.member_box .profile_icon {
    width: 18px;
    height: auto;
    margin-top: -2px !important;
}

.member_box .mb_footer span {
    font-size: 16px;
}


/*News Feed*/

img.round-profile-pic {
    border-radius: 50px;
    width: 60px;
    height: 60px;
}

.post_feed {
    margin-bottom: 1rem;
}

.post_feed textarea {
    border-radius: 8px;
}

.cancel-btn,
.cancel-btn:hover {
    color: #006fc0;
    background: none;
    border: none;
    text-decoration: underline;
    font-weight: 600;
}

.post_feed .post_listing {
    background: #F4F4F4;
    border-radius: 8px;
    padding: 11px;
    border: 1px solid #ced4da;
}

.post_listing p {
    margin-bottom: 5px;
    font-weight: 500;
}

.post_listing .post-by {
    font-weight: 600;
}

.post_listing .post-about {
    color: #006fc0;
    font-weight: 500;
}

.post_listing p.subtext {
    color: #c2c2c2;
}

.z-99 {
    z-index: 99;
}


.topTitleAbout h2 {
    color: #006FC0;
    font-weight: 700;
}

/*------------FAQ CSS------------------*/

.topTitle h2 {
    color: #006FC0;
    text-align: center;
    font-weight: 700;
}

.topTitle h3 {
    color: #006FC0;
    text-align: center;
    font-weight: 700;
}

.frequentlyAccordian {
    padding: 20px 20px 10px 20px;
    background: #f5f5f561;
    border: 2px solid #cccccc7a;
    border-radius: 9px;
}

.faqSectionTitle h5 {
    padding-left: 30px;
}

.faqSection {
    margin-bottom: 35px;
}

.faqSection h5 {
    font-size: 19px;
    color: #2f2e41;
    font-weight: 600;
    margin-top: 10px;
}

.faqSection span {
    font-size: 16px;
    color: #2f2e41;
    padding: 0.1rem 1.25rem;
}

.frequentlyAccordian .card {
    margin: 0px 0px 10px 0px;
    border-radius: 5px;
    border: none;
    box-shadow: 0px 0px 3px 0px #ccc;
}

.frequentlyAccordian .card-body p {
    line-height: 1.8;
}

.frequentlyAccordian .card-header {
    background: #fff;
    padding: 8px;
    border-radius: 5px !important;
    border-bottom: none;
}

.frequentlyAccordian .card-header:hover {
    background: #006FC0;
    cursor: pointer;
}

.frequentlyAccordian .card-header:hover span {
    color: #fff;
}

.frequentlyAccordian .btn.btn-link {
    color: #383749;
    text-decoration: none;
    font-size: 16px;
}

.landing_contact {
    padding: 30px;
    margin-bottom: 20px;
}

.contact_link {
    font-weight: 600;
}

.contact_link h3 {
    float: left;
    font-size: 20px;
    font-weight: 600;
}

.contact_link a {
    float: left;
    font-size: 16px;
    padding-left: 10px;
    color: #086fc0 !important;
}


/*---Privacy CSS --*/

.privacyAccordian {
    border-radius: 9px;
}

.privacySectionContent p {
    line-height: 1.9;
    font-size: 16px;
    color: #636363;
}

.privacySectionContent a {
    color: #006FC0;
}

.privacyAccordian .card {
    margin: 0px 0px 10px 0px;
    border: none;
}

.privacyAccordian .card-body {
    background: #f5f5f5;
    border-radius: 10px;
    padding: 30px;
}

.privacyAccordian .card-header .fa {
    color: #086fc0;
    padding-right: 10px;
}

.privacyAccordian .card-body h3 {
    font-size: 20px;
    margin-top: 5px;
}

.privacyAccordian .card-body p {
    line-height: 1.8;
}

.privacyAccordian .card-header {
    background: #fff;
    padding: 8px;
    border-radius: 10px !important;
    border-bottom: none !important;
}

.privacyAccordian .btn.btn-link {
    color: #383749;
    text-decoration: none;
    font-size: 20px;
    /*word-break: break-all;*/
    white-space: inherit;
}


/*--- Terms Conditions CSS--*/

.privacySectionTitle h2 {
    font-weight: 800;
    color: #3B3B3B;
}

.privacyAccordian .card-body span {
    font-weight: 600;
    padding-right: 5px;
    line-height: 1.8;
}


.scroll-down {
  height: 50px;
  width: 30px;
  position: absolute;
  border-radius: 50px;
  cursor: pointer;
  bottom: -21px;
  left: 150px;
}



.scroll-down::before,
.scroll-down::after {
  content: "";
  position: absolute;
  top: 24%;
  left: 50%;
  height: 10px;
  width: 10px;
  transform: translate(-50%, -100%) rotate(-45deg);
  border: 2px solid #92d050;
  border-top: transparent;
  border-left: transparent;
  animation: scroll-down 1s linear infinite;
}

.scroll-down:hover::before,
.scroll-down:hover::after {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  height: 10px;
  width: 10px;
  transform: translate(-50%, -100%) rotate(-45deg);
  border: 2px solid #fff;
  border-top: transparent;
  border-left: transparent;
  animation: scroll-down 1s linear infinite;
}

.scroll-down::before {
  left: 30%;
  animation-delay: 0.5s;
}

@keyframes scroll-down {
  0% {
    /* top:20%; */
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    left: 90%;
    opacity: 0;
  }
}


/*---- Showroom CSS ------*/

.showroom_text {
    color: #3B3B3B;
    font-size: 16px;
}

.showroomNav {
    margin-bottom: 0px !important;
}

.showroomNav li a {
    background-color: unset !important;
    color: #3B3B3B !important;
    font-weight: 500;
    padding: 0 0.4rem !important;
    border-radius: 0 !important;
}

.showroomNav li a:hover,
.showroomNav li a.active {
    color: #006FC0 !important;
    border-bottom: 3px solid #006FC0;
}

.showroom_box_wrapper {
    padding: 2rem 0;
}

.showroom_box_wrapper .col {
    padding-right: 0px;
}

.showroom_box_row .col:nth-child(5) {
    padding-right: 15px;
}

.showroom_box {
    background: #F6F6F6;
    border-radius: 5px;
    margin-bottom: 15px;
}

.showroom_box img {
    width: 100%;
    height: auto;
}

.showroom_box_main,
.showroom_box_profile,
.showroom_box_footer {
    padding: 1rem 1rem 0rem 1rem;
}

.showroom_box_main h2 {
    color: #1F2930;
    font-size: 16px;
    font-weight: 600;
}

.showroom_box_main h3 {
    color: #92D050;
    font-size: 14px;
}

.showroom_box_main h4 {
    color: #6D7478;
    font-size: 12px;
    margin-bottom: 2px;
}

.showroom_box_main p {
    color: #1F2930B5;
    font-size: 13px;
    margin-bottom: 0px;
    min-height: 60px;
}

.showroom_box_profile .float-left {
    width: 35%;
}

.showroom_box_profile .float-right {
    width: 65%;
    padding-left: 0.5rem;
}

.showroom_box_profile img {
    width: 56px;
}

.showroom_box_profile h2 {
    font-size: 13px;
    font-weight: 600;
    color: #1F2930;
}

.showroom_box_profile h3,
.showroom_box_profile h4 {
    margin-bottom: 2px;
    font-size: 12px;
    color: #6D7478;
}

.showroom_box_footer p {
    color: #A7A7A7;
    font-size: 11px;
}

.showroom_box_footer p {
    font-size: 10px;
}

.showroom_box_footer p img {
    width: 20px;
    margin-top: -8px;
}

.active_btn {
    background: #006fc0;
    color: #fff;
}


/*--- Profile Details ---*/

.profile_details_box {
    border-top: 2px solid #ADADAD;
    float: left;
    width: 100%;
    margin: 15px 0 0px;
}

.profile_details_box h2 {
    font-size: 12px;
    color: #ADADAD;
    background: #fff;
    padding: 5px;
    margin: -13px 0 0 0px;
    float: left;
    text-transform: uppercase;
}

.profile_details_cont {
    padding: 10px 5px;
}

.profile_details_cont h4 {
    color: #3A3A3A;
    font-size: 14px;
    font-weight: 600;
}

.profile_details_cont span {
    color: #606060;
    font-size: 14px;
}

.profile_details_cont span {
    color: #5D5D5D;
    font-size: 14px;
}

.profileSearch {
    padding: 6px 10px;
    height: auto;
    border-radius: 5px;
    border: none;
}

.search-text-profile {
    padding: 10px 0px;
    display: block;
}

.search-text-profile p {
    margin-bottom: 0px;
}

.form_panel select {
    max-width: 100%;
    border: 1px solid #ced4da;
}

.profilePicBoxWrapper {
    padding: 20px 15px 5px;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 5px;
}

.profilePicBox {
    text-align: center;
    width: 100px;
    height: 100px;
    margin: auto;
}

.profilePicBox img {
    width: 100%;
    height: 100px;
    border-radius: 50% !important;
}

.fileUploadIcon {
    text-align: right;
}

.fileUploadIcon input[type="file"] {
    display: none;
}

.fileUploadIcon img {
    width: 30px !important;
    height: 30px !important;
    cursor: pointer;
}

.EditProfile p {
    font-size: 12px;
}

.ProfileSocialLinks input {
    background: #fff;
}

.bulletin_form .radio {
    padding-left: 10px;
    padding-top: 4px;
}

.bulletin_form .radio label {
    margin-bottom: 0px;
}

.bulletin_form .radio label::before {
    width: 17px;
    top: 2px;
    height: 16px;
}

.bulletin_form .radio label::after {
    top: 4px;
}

.incentiveBox .form-group,
.incentiveBox label {
    margin-bottom: 0px;
}

.incentiveBox input[type="text"] {
    padding: 3px 8px;
    background: #F4F4F4;
    text-align: center;
}

.incentiveBox .incRow {
    background: #fff;
    border: 1px solid #ced4da;
    border-radius: 5px;
    padding: 5px 5px;
    margin: 0;
}

.badge-sponsor {
    background: rgb(153 51 102 / 24%);
    ;
    color: #993366;
}

.bulletinModal .modal-dialog {
    max-width: 80% !important;
}

.bulletinModal .modal-header {
    padding: 0px;
    margin: 0px;
    border: none;
    border-radius: 0px;
    position: relative;
}

.bulletinModal .modal-header img {
    width: 100%;
    height: auto;
}

.bulletinModal .modal-body h3 {
    color: #3B3B3B;
    font-size: 18px;
}

.bulletinModal .modal-body p {
    font-size: 14px;
}

.bulletinModal .post-info {
    position: absolute;
    bottom: 20px;
    left: 15px;
    /*box-shadow: 0px 0px 10px 5px;*/
    padding: 10px;
    color: #fff;
    /*background: #9493938c;*/
}

.bulletinModal .post-info h2 {
    font-size: 20px;
}

.bulletinModal .post-info i {
    text-shadow: 0px 3px 6px #00000029;
    padding-right: 10px;
    font-size: 12px;
}

.bulletinModal .post-info span {
    margin-right: 10px;
    border-radius: 10px;
    color: #fff;
    padding: 2px 10px;
}

.mailBoxBtn {
    border: #BBBBBB 1px solid;
    color: #BBBBBB;
    background: #fff;
}

.mailBoxBtn.active,
.mailBoxBtn:hover {
    background: #006FC0;
    border: #006FC0 1px solid;
    color: #fff;
}

.mailBoxSearch {
    /*width: 40%;*/
}

.mailBoxSearch span,
.mailBoxSearch input {
    border: none;
    background: #F9F9F9;
}

.mailBoxContent .custom-control {
    display: inline-block;
    /*margin-right: 15px;*/
}

.mailBoxContent .custom-control img {
    width: 13px;
    height: auto;
}

.mailBoxContent .custom-control-label::before {
    background: #fff;
    border-radius: 0px !important;
    border: #AAAAAA solid 1px;
    height: 13px;
    width: 13px;
}

.mailBoxContent .custom-control-label::after {
    height: 13px;
    width: 13px;
}

.mailBoxSort button,
.mailBoxSort button:hover,
.mailBoxSort button:active,
.mailBoxSort button:focus .mailBoxSort button:visited {
    background: #fff;
    color: #3B3B3B;
    border: none;
}

.messageBox {
    background: #E5F4FF;
    margin-bottom: 10px;
    padding-top: 10px;
    border-top-right-radius: 25px;
}

.messageBox .userPic img {
    width: 50px;
    height: auto;
    border-radius: 50%;
    height: 50px;
}

.messageBox .msgContent {
    padding-left: 10px;
    margin-top: 5px;
}

.messageBox .msgContent h5 {
    font-size: 14px;
    margin-bottom: 0px;
}

.messageBox .msgContent span {
    font-size: 10px;
}

.messageBox .msgContent p {
    font-size: 13px;
    margin-top: 8px;
}

.messageBox .msgDelete i {
    font-size: 20px;
    margin-top: 15px;
    color: red;
}

.projectBanner {
    position: relative;
    height: 400px;
    width: 100%;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.projectBanner img {
    width: 100%;
    height: auto;
}

.projectBanner .post-info {
    position: absolute;
    bottom: 5%;
    left: 15px;
    color: #fff;
    width: 100%;
}

.projectBanner .post-info h2 {
    font-size: 22px;
}

.projectBanner .post-info i {
    text-shadow: 0px 3px 6px #00000029;
    padding-right: 10px;
    font-size: 12px;
}

.projectBanner .post-info span {
    margin-right: 10px;
    border-radius: 10px;
    color: #fff;
}

.projectBanner .post-info span.badge {
    padding: 2px 10px;
    background: #006FC0;
}

.manageProj {
    font-size: 1.2rem;
    padding-top: 5px;
}

.ProjectDetail .nav-link {
    color: #006FC0;
    background: #fff;
    border: #006FC0 solid 1px;
    padding: 5px 10px;
    margin-right: 10px;
}

.ProjectDetail .nav-link.active {
    background: #E8F5FF;
    color: #006FC0;
    border: #006FC0 solid 1px;
}

.pr_de_info {
    padding-top: 15px;
}

.pr_de_info p {
    color: #444444;
    font-size: 13px;
    font-weight: 600;
}

.pr_de_info span {
    font-weight: normal;
    font-weight: 600;
    color: #444444;
}

.pr_de_info span.badge {
    /*background: #006FC0;*/
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 15px;
    margin-left: 10px;
    font-weight: normal;
    color: #fff;
}

.projectLinks {
    background: #F7F7F7;
    border-radius: 10px;
    padding: 10px 20px;
}

.projectLinks h3 {
    font-size: 14px;
}

.projectLinks a {
    color: #006FC0;
    text-decoration: underline;
}

.projectDesc h2 {
    color: #3B3B3B;
    font-size: 17px;
}

.projectDesc p {
    margin-bottom: 0;
}

.content_panel_2 {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: #fff;
    box-shadow: 0px 3px 15px #0000000f;
}


/*----------------------------------Custom CSS ----------------------------*/


/*-- Toaster CSS --*/

#toast-container>div {
    opacity: 9 !important;
}


/*Preloader CSS Starts*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 1111;
    display: none;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #007bff;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #2196f3;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #b3d5ef;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/*Preloader CSS Ends*/


/*-- Date Picker --*/

#ui-datepicker-div {
    z-index: 50 !important;
}

.submissionTimeLeft {
    padding-top: 10px;
}

.submissionTimeLeft span {
    border: #ccc solid 1px;
    border-radius: 5px;
    padding: 6px;
    font-size: 13px;
}

.showroom_img {
    width: 100%;
    height: 125px;
    overflow: hidden;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.submissionBox {
    cursor: pointer;
}

.submissionBox_main {
    padding: 1rem 0.5rem;
}

.submissionBox_main img.like {
    width: 20px;
    height: auto;
    margin-top: -7px;
}

.submissionBox_main p {
    font-size: 13px;
}

.submissionBox_main h6 {
    color: #1F2930;
    font-size: 14px;
}

.submissionBox_main img.profilePic {
    width: 50px;
    height: auto;
}

.submissionBox_main h2 {
    color: #787878;
    font-size: 12px;
    margin-bottom: 0px;
}

.submissionBox_main h3 {
    color: #AAAAAA;
    font-size: 12px;
    margin-bottom: 0px;
}

.submissionBox_main h4 {
    color: #AAAAAA;
    font-size: 10px;
    margin-bottom: 0px;
}

.submissionDetail {
    max-width: 1000px;
}

.submissionImg img {
    width: 100%;
    height: auto;
}

.subDetails h4 {
    color: #1F2930;
    font-size: 12px;
}

.subDetails h2 {
    color: #006fc0;
    font-size: 18px;
}

.profileImgBox {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50%;
}

.profileImgBox img {
    width: 100%;
    height: 50px;
}

.postCover {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.addPostWrapper {
    background: #F4F4F4;
    padding: 10px;
    border-radius: 8px;
    border: #E8E8E8 solid 1px;
}

.addPostWrapper textarea {
    border-radius: 0px;
    border: none;
    border-bottom: #E8E8E8 solid 1px;
    max-height: 80px;
}

.feedPostImage {
    max-height: 200px;
    overflow: hidden;
    border-radius: 5px;
}

.feedPostImage img {
    width: 100%;
    height: auto;
}

.winningProjectDiv label {
    padding-top: 2px;
}

.selectedMark {
    position: absolute;
    top: 4%;
    left: 33%;
    background: #006fc0;
    padding: 1.5rem;
    border-radius: 50%;
}

.selectedMark i {
    font-size: 50px;
    color: #ffffff;
}


/*-- Admin Page Table text center --*/

table,
thead,
tr,
tbody,
th,
td {
    /*text-align: center;*/
    font-size: 13px;
    /*font-weight: 500;*/
}

.table th {
    font-weight: 600;
}

.table td a {
    color: #086fc0;
    font-weight: 500;
}

.custom-control {
    /*min-height: 2.5rem !important;*/
    font-size: 13px !important;
    color: #696a6b !important;
}

.center-details h6 {
    font-size: 14px;
}

.center-details p {
    margin-bottom: 0px !important;
    font-size: 13px;
}

#flexCheckDefault {
    top: 35%;
}

.row_box {
    margin-top: 1rem;
    margin-bottom: 0rem;
    background: #f9f9f9;
    border-radius: 5px;
}

.new-message p {
    font-size: 12px;
}

.menu-bottom {
    position: absolute;
    bottom: 0;
}

#sendMessageModal .modal-dialog,
.sendMessageModal .modal-dialog {
    display: inline-block;
    width: 100%;
    position: fixed;
    bottom: 0;
    right: 2%;
}

#sendMessageModal .modal-content,
.sendMessageModal .modal-content {
    background: none;
    border-radius: 0;
}

#sendMessageModal .modal-header,
.sendMessageModal .modal-header {
    background: #787878;
    color: #fff;
}

#sendMessageModal .modal-body,
#sendMessageModal .modal-footer,
.sendMessageModal .modal-body,
.sendMessageModal .modal-footer {
    background: #ffffff;
    display: block;
}

#sendMessageModal .labelText,
.sendMessageModal .labelText {
    width: 10%;
    padding: 0px 10px;
}

#sendMessageModal .formField,
.sendMessageModal .formField {
    width: 90%;
    padding: 0px 10px;
}

#sendMessageModal .formField input,
#sendMessageModal .formField textarea,
.sendMessageModal .formField input,
.sendMessageModal .formField textarea {
    border: none;
    border-radius: 0;
}

#sendMessageModal .formField textarea,
.sendMessageModal .formField textarea {
    min-height: 150px;
}

#sendMessageModal .sendMailBtn,
.sendMessageModal .sendMailBtn {
    /*  font-size: 24px;
  transform: rotate(45deg);*/
    padding-top: 5px;
}

#sendMessageModal .sendMailBtn button,
.sendMessageModal .sendMailBtn button {
    background: none;
    border: none;
    color: #006FC0;
    cursor: pointer;
}

.adminMailPic {
    height: 60px;
    width: 60px;
    overflow: hidden;
    border-radius: 50%;
}

.adminMailPic img {
    height: auto;
    width: 100%;
}

.custom-radio label.custom-control-label,
.custom-checkbox label.custom-control-label {
    margin-top: 2px;
}

.access_bg_div {
    background: #F4F4F4;
    padding: 5px 10px;
    border-radius: 5px;
    border: #D9D9D9 solid 1px;
}

.inviteProgramAreaBlock {
    background: #F7F7F7;
    border: solid 1px #D9D9D9;
    padding: 10px;
}

#invitationsModal .modal-dialog {
    max-width: 1200px;
}

.membership_heading.school {
    background: #006fc0;
    padding-top: 35px;
}

.membership_heading {
    text-align: center;
    background: #006fc0;
    width: 80%;
    display: inline-block;
    padding: 1rem;
    border-radius: 10px 10px 0px 0px;
    min-height: 98px;
}

.membership_heading h2 {
    text-transform: uppercase;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
}

.membership_content.corp {
    background: #3B3B3B;
}

.membership_content.non-corp {
    background: #787878;
}

.membership_content.school {
    background: #AAAAAA;
}

.membership_content {
    background: #3B3B3B;
    border-radius: 20px 20px 20px 20px;
    padding: 1rem;
}

ul.membership_list {
    list-style: none;
    text-align: left;
    padding-left: 10px;
}

ul.membership_list li {
    margin-bottom: 10px;
    min-height: 50px;
}

ul.membership_list li i {
    color: #fff;
}

ul.membership_list li .list-text {
    color: #fff;
    width: 90%;
    padding-left: 5px;
    font-size: 13px;
    font-weight: 400;
}

.membership_price.corp {
    color: #B9B9B9;
}

.membership_price.non-corp {
    color: #3B3B3B;
}

.membership_price.school {
    color: #3B3B3B;
}

.membership_price h4 {
    font-weight: 800;
    color: #ffffff;
}

.membership_join_link {
    margin-top: 5px;
}

.membership_join_link a {
    background: #006fc0;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 20px;
    color: #fff !important;
    border-radius: 2px;
}

.hw_text {
    font-size: 20px;
}

.hw_text span {
    background: #92D050;
    padding: 2px 10px;
    font-weight: bold;
    color: #fff;
    border-radius: 3px;
}

ul.hw_text_list {
    font-size: 16px;
    list-style: none;
}

ul.hw_text_list li::before {
    content: "\2022";
    color: #006fc0;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    font-size: 16px;
}

.landing_banner.bottom_panel {
    background: #F4F4F4;
}

.partner-bg {
    background: url("../images/partner_bg.png");
    background-size: cover !important;
}

.back_to_top {
    position: absolute;
    top: -35px;
    text-align: center;
}

.back_to_top p {
    font-weight: 600;
}

.back_to_top a {
    transition: all .2s linear;
}

.back_to_top img {
    width: 70px;
}

.tab-content .mb_main {
    min-height: 0px !important;
}

.partners .member_frame {
    width: 200px;
    height: 200px;
    margin: auto;
}

.partners .member_frame img {
    width: 100%;
    height: auto;
}

.partners .img_box {
    width: 178px;
    height: 200px;
    margin: auto;
    position: absolute;
    top: 13px;
    left: 1px;
    right: 0;
}

.partners .img_box img {
    width: 173px;
    height: 173px;
    border-radius: 50%;
}


.partners .img_box_modal {
    width: 178px;
    height: 200px;
    margin: auto;
    position: absolute;
    top: 61px;
    left: 38px;
    right: 0;
}

.partners .img_box_modal img {
    width: 173px;
    height: 173px;
    border-radius: 50%;
    
}


.partners .profile {
    margin-bottom: -10px;
}

.partners .profile button {
    background: #9ccf49;
    border: none;
    color: #fff;
    font-size: 14px;
    border-radius: 4px;
}

.partners .member_description {
    background: #9CCF49A1;
    border-radius: 5px;
    margin-top: 10px;
    padding: 15px;
    text-align: left;
}

.partners .member_description h3 {
    font-size: 14px;
    font-weight: 600;
}

.partners .member_description h6 {
    font-size: 12px;
    color: #fff;
    font-weight: 600;
}

.partners .member_description p {
    font-size: 12px;
    color: #707070;
    /*min-height: 230px;*/
}

.member_bg_strip,
.member_bg_strip2 {
    background: #fff;
    height: 150px;
    position: absolute;
    width: 100%;
}

.member_bg_strip {
    top: 120px;
}

.member_bg_strip2 {
    top: 50px;
    left: 0;
}

.fw-600 {
    font-weight: 600 !important;
    font-style: italic;
}

.shadow-sm {
    box-shadow: 0 0.125rem 1.25rem rgb(0 0 0 / 8%) !important;
    border-radius: 15px;
}

.text-blue {
    color: #006FC0;
}

.fs-16 {
    font-size: 16px;
}

.fs-18 {
    font-size: 18px;
}

.close-popup {
    margin: 0 !important;
    padding: 1px 5px !important;
    border: 1px black solid !important;
    border-radius: 25px !important;
    opacity: 1 !important;
    line-height: 23px;
}

#output.output,
#output.output .cursor {
    color: #006FC0 !important;
}

.notification .dropdown-item {
    width: 200px;
    white-space: break-spaces;
    margin-right: 0px;
    color: #333;
}

.home_banner {
    /*background: url("../images/Image-1.png");*/
    /*  background-size: contain;*/
}

@media (max-width:768px) {
    .Registration_logo img {
        max-width: 190px;
        margin-top: 1px;
    }
    .banner_img img {
        width: 100%;
    }
    .slide h2 {
        font-size: 20px;
        margin: 0 0 10px;
        text-align: center;
    }
    .home_learn_more {
        display: none;
    }
    .why_join {
        display: block !important;
        margin: auto;
    }
    .slide p {
        font-size: 15px;
        text-align: center;
    }
    .slide h2 br,
    .slide p br {
        display: none;
    }
    .landing_feature_box h2 {
        font-size: 19px;
    }
    .TabPanel_Right {
        /* padding: 60px 10px; */
        /* margin-top: 20px; */
    }
    .lean_join {
        text-align: center;
        margin: auto;
        padding-top: 20px;
    }
    .why_sponsors {
        background: transparent !important;
    }
    .why_sponsors1 .col-md-6.col-sm-7 {
        background-size: 100% 100%;
        background-repeat: no-repeat;
        background: #f9f9f9;
    }
    .why_sponsors2 .col-md-6.col-sm-7 {
        background-size: 100% 100%;
        background-repeat: no-repeat;
        background: #f9f9f9;
    }
    .why_sponsors3 .col-md-6.col-sm-7 {
        background-size: 100% 100%;
        background-repeat: no-repeat;
        background: #f9f9f9;
    }
    .why_sponsors1 .col-md-6.col-sm-5 {
        background-image: url('/general_assets/images/tab_section/Group-9542-mobile.jpg');
        padding: 100px 10px 20px 10px;
        background-size: 100% 100%;
        background-repeat: no-repeat;
    }
    .why_sponsors2 .col-md-6.col-sm-5 {
        background-image: url('/general_assets/images/tab_section/Group-9543-mobile.jpg');
        padding: 100px 10px 20px 10px;
        background-size: 100% 100%;
        background-repeat: no-repeat;
    }
    .why_sponsors3 .col-md-6.col-sm-5 {
        background-image: url('/general_assets/images/tab_section/school-tabmobile.jpg');
        background-size: 100% 100%;
        background-repeat: no-repeat;
        padding: 100px 10px 20px 10px;
    }
    .lean_join a {
        min-width: 200px;
        margin-bottom: 15px;
        display: inline-block;
    }
    .FooterWidgets .col-md-3.offset-1 {
        margin-left: 0;
        max-width: 33%;
        flex: 0 0 33%;
    }
    .ConnectUs ul li span {
        margin-left: 0;
    }
    .Links ul {
        min-height: inherit;
        padding-left: 0;
    }
    .landingFooterSocial a {
        margin-left: 0;
        margin-right: 15px;
    }
    .landingFooterSocial a img {
        max-width: 32px;
    }
    .landing_header ul.navbar-nav li.nav-item.Signin a {
        margin-left: 31px !important;
    }
    .landing_banner .topTitle {
        margin-top: 0 !important;
    }
    .membership_heading {
        width: 90%;
        min-height: 75px;
    }
    .showroom_section .showroomNav li a {
        padding: 13px !important;
    }
    .showroom_box_row .col-md-3.submissionBox {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }
    .partners .member_description {
        margin-top: 33px;
    }
    .Login_Form {
        width: 100%;
    }
    .Registration_Form .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .Registration_Panel_right {
        overflow: auto;
    }
    
    .registration_desktop_mobile{
    height: 100vh;
    width: 50%;
    background-color: #fff;
    float: left;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100% 50%;
    opacity: 1;
    box-shadow: 0px 3px 50px #0000000F;
}

    #header .logo {
        padding: 9px 0 8px;
        width: 140px;
    }
    .header_search {
        max-width: 180px;
    }
    img.round-profile-pic {
        width: 30px;
        height: 30px;
    }
    .main_wrapper.active .logo {
        width: 140px;
    }
    .logo svg {
        width: 74px;
    }
    #sidebar ul li a span {
        padding-left: 0;
    }
    #members_filter_form .w-25 {
        width: 37% !important;
    }
    #members_filter_form .w-75 {
        width: 62% !important;
    }
    .ProfileImg {
        width: 91px;
        height: 91px;
        margin-top: -35px;
    }
    #sendMessageModal .modal-dialog {
        bottom: 0;
        right: 0;
        left: 0;
        width: auto;
        max-width: 650px;
        margin: auto;
        top: 50px;
    }
    #sendMessageModal .labelText {
        width: 100%;
        padding: 0px 10px;
        text-align: left !important;
    }
    #sendMessageModal .formField {
        width: 100%;
    }
    .footer {
        margin-left: 0;
    }
    .ProjectInput select.form-control {
        max-width: 165px;
    }
    .box_row_bg input.form-control.w-75 {
        width: 74% !important;
    }
    select.form-control.float-left.triggerSubmit {
        max-width: 134px;
    }
    .mailBoxContent .col-md-3 {
        padding: 0;
    }
    .mailBoxContent span.pt-1.pr-3.font-weight-bold {
        display: none;
    }
}

@media (max-width:480px) {
    
    h1{
    font-size: 42px;
    }
    
    h2{
        font-size: 36px;
    }
    
    h3{
        font-size: 30px;
    }
    
    h4{
        font-size: 24px;
    }
    
    h5{
        font-size: 20px;
    }
    
    h6{
        font-size: 18px;
    }
    
    p{
        font-size: 16px;
    }
    
    .Login_Form_Wrapper {
        margin-top: 9rem;
    }
    
    .Registration_text p {
        font-size: 14px;
        color: #3b3b3b;
        text-align: left;
        margin-top: 35px;
        padding: 10px;
    }
    
    .partners .img_box_modal img {
        margin-top: 7px;
        width: 148px;
        height: 167px;
        border-radius: 50%;
    }
    
    .submissionTimeLeft{
        text-align: center;
    }
    
    .Registration_logo img {
        max-width: 190px;
        margin-top: 0px;
    }
    
    #sidebar .icon_img {
    margin: 0 5px;
    width: 40px;
    }
    
    .book_consultation{
        background: linear-gradient(90deg, rgba(0, 111, 192, 1) 30%, rgba(146, 208, 80, 1) 70%);
        vertical-align: middle;
        color: #fff;
        font-size: 16px;
        padding: 15px 35px;
        border-radius: 5px;
        font-weight: 600;
    }

    .consultation{
        margin-left: 15px !important;
        margin-top: 8px !important;
    }

    .scroll_down_consultation {
        height: 50px;
        width: 30px;
        position: absolute;
        border-radius: 50px;
        cursor: pointer;
        bottom: -31px;
        left: 280px;
    }
    
     .scroll_down_waitlist {
        height: 50px;
        width: 30px;
        position: absolute;
        border-radius: 50px;
        cursor: pointer;
        bottom: -5px;
        left: 194px;
    }
    
    .collapse.show {
        display: block;
        max-width: 225px;
        margin-left: auto;
    }
    .wow-font-size{
    font-size: 38px;
    }
    .scroll-down {
    height: 50px;
    width: 30px;
    position: absolute;
    border-radius: 50px;
    cursor: pointer;
    bottom: -21px;
    left: 150px;
    }
    .Registration_text {
        padding-top: 1rem;
        padding-bottom: 3rem;
    }
    .Registration_text h1 {
        font-size: 18px;
    }
    .Registration_text h2 {
        font-size: 42px;
        font-weight: 700;
    }
    
    .registration_headtext{
        position: static;
        background-color: #f0eef973;
        padding: 10px;
        width: 250px;
        border-radius: 5px;
        margin-left: 70px;
    }
    
    .registration_nonprofit{
        position: static;
        background-color: #f0eef973;
        padding: 10px;
        width: 530px;
        border-radius: 5px;
        margin-left: 93px;
    }
    
    .Registration_Form h2 {
        margin-top: 15px;
    }
    .AcceptTerms input[type="checkbox"] {
        visibility: hidden;
    }
    .privacyAccordian .btn.btn-link {
        font-size: 16px;
        font-weight: 600;
        text-align: left;
    }
    .login_signup_btn a img {
        width: 95px;
        height: 95px;
        margin-top: 0px;
    }
    
    .login-background{
        width: 110px;
        height: 140px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .Registration_Panel_right_Header .back_icon {
        display: none;
    }
    
    .registration_desktop_mobile{
        height: 65vh;
        width: 100%;
        background-color: #fff;
        float: left;
        background-repeat: no-repeat;
        background-position: bottom;
        background-size: 100% 50%;
        opacity: 1;
        box-shadow: 0px 3px 50px #0000000F;
    }

    .modalwidth{
        max-width: 100% !important;
    }

    .landing_feature_box h2 {
        font-size: 18px;
        text-align: center;
        margin: -17px 101px 0 105px;
        float: none;
    }
    .landing_feature_cont p {
        font-size: 16px;
        text-align: center;
    }
    .landing_feature_cont img {
        margin-bottom: 10px;
    }
    .hw_text {
        font-size: 16px;
        text-align: center;
    }
    ul.hw_text_list {
        font-size: 16px;
        margin-left: 20px;
    }
    .JoinEcoSystem::before,
    .JoinEcoSystem::after {
        display: none;
    }
    .partners .member_description {
        margin-top: -5px;
    }
    .partners {
        margin-top: 10px;
    }
    .JoinEcoSystem {
        padding: 0 5px;
    }
    .f_boxes .item {
        width: 33%;
    }
    .f_boxes img {
        max-height: 45px;
    }
    .f_boxes span {
        font-size: 12px;
    }
    .JoinEcoSystem h2 {
        font-size: 20px;
    }
    .JoinEcoSystem ul.nav.nav-tabs li span img {
        max-height: 100px;
    }
    .TabPanel_Cont {
        padding: 50px 3px 50px 10px;
        border-radius: 0 100px 100px 0;
    }
    .FooterWidgets .col-md-3.offset-1 {
        max-width: 100%;
        flex: 0 0 100%;
        margin: 15px 0;
    }
    .landingFooterSocial {
        text-align: left;
    }
    .topTitle h2 {
        font-size: 25px;
        text-align: center;
    }
    .topTitle p {
        text-align: center;
    }
    .artTeam p {
        font-size: 16px;
    }
    .showroom_section .showroomNav li a {
        padding: 7px !important;
    }
    .landing_feature_box {
        background: #ffffff;
    }
    .membership_box {
        margin-bottom: 20px;
    }
    span.title_icon {
        display: none;
    }
    .landing_feature_cont {
        padding: 15px;
    }
    .row.pl-5.pb-4 {
        padding: 15px !important;
    }
    .landing_feature_box.accessBox h2 {
        margin: -28px 71px 0px 80px;
    }
    
    .landing_feature_box.accessBox2 h2 {
        margin: -29px 88px 0px 74px;
    }
    .showroom_box_row .col-md-3.submissionBox {
        flex: 0 0 100%;
        max-width: 100%;
    }
    #projects_filter_from select {
        margin-bottom: 15px;
        width: 100%;
        max-width: 100%;
    }
    .Registration_Panel .Login_Panel_left,
    .Registration_Panel_right {
        height: auto;
        width: 100%;
        padding-bottom: 15px;
    }
    .login_signup_btn .text-right,
    .login_signup_btn .text-left {
        text-align: center !important;
    }
    .Login_text h2{
        font-size: 36px;
        padding: 0 5px;
        margin-top: 2rem;
    }
    .Registration_Panel_right_Header {
        position: fixed;
        top: 3px;
        right: 10px;
        width: auto;
        z-index: 999;
    }
    .login_signup_btn.row.pt-5 {
        margin: 0;
        padding: 0;
        overflow: hidden;
    }
    .col-md-4 .col-4 .text-right .item {
        padding-left: 0 !important;
    }
    .login_signup_btn>.col-4 {
        margin-left: -6px !important;
    }
    .faqSection span {
        font-size: 16px;
    }
    #wrapper {
        padding: 25px 10px 40px;
    }
    #news_feed_filter_form .w-50 {
        width: 100% !important;
    }
    #news_feed_filter_form .w-50.form-control {
        width: 82% !important;
        margin-bottom: 12px;
    }
    #news_feed_filter_form .w-50 select.triggerSubmit {
        max-width: 100%;
    }
    #news_feed_filter_form span.float-right {
        display: none;
    }
    .Inner_Panel.content_panel_2 .text-right {
        text-align: left !important;
    }
    .ProfilePanel.ProjectDetail {
        padding: 0 15px;
    }
    form.form_panel.general_form .col-md-6.offset-6 {
        margin: 0;
    }
    #members_filter_form .w-25 {
        width: 100% !important;
        margin-bottom: 15px;
    }
    #members_filter_form .w-75.form-control {
        width: 83% !important;
    }
    #members_filter_form .w-75 {
        width: 100% !important;
    }
    #members_filter_form .triggerSubmit {
        max-width: 100%;
    }
    .bulletinPanel input.form-control.profileSearch.w-75.float-left {
        width: 84% !important;
        margin-bottom: 15px;
    }
    #bulletinposts select {
        max-width: 100%;
    }
    .ProfilePanel .btn {
        width: 100%;
        float: left;
        margin: 0 0 10px;
    }
    .ProfilePanel .float-left {
        float: none !important;
    }
    .submissionDetail {
        top: 91px;
    }
    .row.box_row .float-right {
        float: none;
        width: 100%;
    }
    .row.box_row .float-right a.btn.btn-outline-primary {
        margin: 0 0 10px;
        display: block;
        width: 100%;
    }
    #bulletin_filter_form .w-25 {
        width: 100% !important;
    }
    .row.box_row .float-right.w-75 {
        width: 100% !important;
    }
    .row.box_row .float-right.w-75 .triggerSubmit {
        max-width: 100%;
        margin: 10px 0;
    }
    #incentive1_desc {
        width: 100% !important;
    }
    .access_bg_div {
        margin: 5px 0;
    }
    .box_row_bg .w-75 {
        width: 100% !important;
    }
    .box_row_bg .w-25 {
        width: 25% !important;
    }
    .box_row_bg span {
        width: 100%;
        margin: 0;
        padding: 0 !important;
    }
    .box_row_bg .triggerSubmit {
        width: 100% !important;
        max-width: inherit !important;
    }
    .box_row_bg span {
        width: 100%;
        margin: 2px 0 0 !important;
        padding: 0 !important;
    }
    .box_row_bg .w-25 {
        width: 100% !important;
        margin-top: 10px;
    }
    .mailBoxContent .triggerSubmit {
        max-width: inherit;
    }
    .mailBoxContent form+.row {
        display: block;
    }
    
    .video-background-holder {
      position: relative;
      background-color: #ffffff;
      height: calc(113vh);
      min-height: 20rem;
      width: 100%;
      overflow: hidden;
    }
    
    .video-background-holder video {
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      /* Center the video */
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
    }
    
    .video-background-content {
      position: relative;
      z-index: 2;
    }
    
    .video-background-overlay {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background-color: #6b6b6b;
      opacity: 0.5;
      z-index: 1;
    }
    
    .bulletinModal .modal-dialog {
        max-width: 100% !important;
    }
    
    .ProjectDetail .nav-link{
        color: #006FC0;
        background: #fff;
        border: #006FC0 solid 1px;
        padding: 5px 5px;
        margin-right: 5px;
        font-size: 13px;
    }
    
    .consultationhome {
    margin-top: 30px;
    display: inline-block;
    text-align: center;
    border-radius: 5px;
    color: #fff;
    }
}

@media (max-width:990px) {
    
    div#navbarSupportedContent {
        background: #D1D1D1;
        padding: 20px 0;
    }
    
    .video-play-button {
        margin-left: 35%;
        display: block;
    }
    .JoinEcoSystem {
        margin-top: 100px;
    }
}

.viewMoreBtn,
.viewLessBtn {
    color: #006fc0;
}

.JoinEcoSystem ul.nav.nav-tabs li #School-tab.active em {
    color: #000;
    /* border-bottom: 3px solid #006fc0; */
}

.JoinEcoSystem ul.nav.nav-tabs li #School-tab.active em::after {
    height: 6px;
    width: 100%;
    background-image: url(https://www.elevateimpact.com/public/general_assets/images/border-buttom-college.png);
    position: absolute;
    content: '';
}

.JoinEcoSystem ul.nav.nav-tabs li #Student-tab.active em {
    color: #000;
    /* border-bottom: 3px solid #003366; */
}

.JoinEcoSystem ul.nav.nav-tabs li #Student-tab.active em::after {
    height: 6px;
    width: 100%;
    background-image: url(https://www.elevateimpact.com/public/general_assets/images/border-buttom-college.png);
    position: absolute;
    content: '';
}


/*tooltip Box*/

.con-tooltip {
    color: #006fc0;
    position: relative;
    display: inline-block;
    cursor: default;
}


/*tooltip */

.tooltip {
    padding: 5px;
    color: #333;
    border: solid 1px #ccc;
    visibility: hidden;
    z-index: 1;
    position: absolute;
    top: -140%;
    left: -25%;
    font-size: 12px;
    background: #fff;
    width: 220px;
    /*transform: translateY(9px);*/
    transition: all 0.3s ease-in-out;
}


/* tooltip  after*/

.tooltip::after {
    content: " ";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 5.5px 0 5.5px;
    border-color: #333 transparent transparent transparent;
    position: absolute;
    left: 40%;
}

.con-tooltip:hover .tooltip {
    visibility: visible;
    transform: translateY(-10px);
    opacity: 1;
    transition: .3s linear;
    animation: odsoky 1s ease-in-out infinite alternate;
}

.bottom .tooltip {
    top: 150%;
    left: -187px;
}

.bottom .tooltip::after {
    top: -7%;
    left: 86%;
    transform: rotate(180deg);
}

.text-yellow {
    color: #006fc0 !important;
}

.text-red {
    color: #993366 !important;
}

.btn-yellow {
    border: solid 1px #006fc0 !important;
    color: #006fc0 !important;
}

.btn-yellow:hover {
    background: #006fc0;
    color: #ffffff !important;
}

.projectFiles .img-thumbnail {
    padding: 2.25rem;
}

.schoolDes {
    border: solid 2px #ccc;
    margin: 0px 0px;
    background: #F7F7F7;
    border-radius: 5px;
    padding-top: 10px;
}

.schoolDes label.custom-control-label {
    font-size: 10px;
    font-weight: normal;
}

.profileBadge {
    font-size: 12px !important;
    font-weight: normal;
    color: #fff !important;
    border-radius: 15px;
    padding: 3px 10px;
}

.Profile_banner {
    position: relative;
    height: 200px;
    width: 100%;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.Profile_banner img {
    width: 100%;
    height: auto;
}

.bg_banner {
    margin: 0;
}

#Slider {
    background-size: 100%;
    background-image: url("../images/bg_banner.png");
    margin-top: -95px;
    padding-top: 95px;
}

.bg_banner {
    background-image: url("../images/bg_banner.png");
    background-size: 100%;
    margin-top: -95px;
    padding-top: 95px;
}

.homeTabs a#Sponsors-tab:hover {
    color: #993366 !important;
}

.homeTabs a#Student-tab:hover {
    color: #003366 !important;
}

.custom-checkbox .custom-control-label::before {
    border-radius: .25rem;
    background: #fff;
    border: solid 2px #ccc;
}

.home_learn_more {
    width: 100px;
    cursor: pointer;
    text-align: center;
}

.home_learn_more p {
    color: #006FC0;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 5px;
}

.home_learn_more img {
    height: 20px;
    width: auto;
}

.why_join {
    width: 100px;
    cursor: pointer;
    text-align: center;
    margin: auto;
}

.why_join p {
    color: #006FC0;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 5px;
}

.why_join img {
    height: 20px;
    width: auto;
}

.green_art_before,
.green_art_after {
    position: relative;
}

.text_grey {
    color: #787878 !important;
}

.arrow {
    text-align: center;
    margin: 8% 0;
}

.home_learn_more:hover .bounce {
    cursor: pointer;
    /* -moz-animation: bounce 2s infinite; */
    /* -webkit-animation: bounce 2s infinite; */
    /* animation: bounce 2s infinite; */
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.back_to_top svg {
    width: 70px;
    height: 70px;
}

.back_to_top svg .a:hover {
    fill: #92D050;
}

.fileUploadBar {
    height: 9px;
    width: 220px;
    display: inline-block;
    background: #3B3B3B;
    margin-left: -5px;
    border-radius: 5px;
}

.fileUploadBarWarpper i {
    cursor: pointer;
}

.feedFileUpload {
    position: relative;
}

.fileUploadLabel {
    position: absolute;
    top: 5px;
}

.mailFileUploadDiv i {
    margin-top: 5px;
}

.mailFileUploadDiv .fileUploadBar {
    margin-left: 0;
}

.mailFileUploadDiv .uploadedFileName {
    font-size: 12px;
    padding-left: 15px;
}

.membershipList {
    width: 80%;
    margin: auto;
    position: relative;
    padding: 10px 0px;
}

.membershipListabout {
    width: 100%;
    margin: auto;
    position: relative;
    padding: 10px 0px;
}

.membershipList span {
    color: #3B3B3B;
    font-size: 16px;
}

.back_icon img {
    width: 30px;
    height: auto;
}


/* added css 30-08-2021 */

ul.search_categories li {
    display: inline;
}


/*31-08-21 css start*/

.search-text.linksshowing ul {
    width: 100%;
    float: left;
    margin: 0px 0px 12px 0px;
    padding: 0px;
}

.search-text.linksshowing li {
    width: auto;
    float: left;
    margin-right: 10px;
    margin-bottom: 0px;
    padding: 0px;
    list-style: none;
}

.search-text.linksshowing li a {
    color: #1F2930;
    font-size: 12px;
    font-weight: 600;
    border-bottom: 3px solid transparent;
    padding-bottom: 2px;
}

.search-text.linksshowing li a.active {
    color: blue;
    border-bottom: 3px solid blue;
}

.btn.btn-outline-primary.buttonsdesignedit:hover {
    color: #006FC0;
    border-color: #006FC0;
    background-color: white
}

.btn.btn-outline-primary.buttonsdesigndelete:hover {
    color: red;
    border-color: red;
    background-color: white;
}

.btn.btn-outline-primary.buttonsdesigndelete {
    color: red;
    border-color: red;
    background-color: white;
}

.sidebar_listmianbox {
    width: 100%;
    flaot: left;
    padding: 0px 30px;
}

ul.sidebar_list {
    width: 100%;
    float: left;
    margin: 15px 0px;
    padding: 0px;
}

ul.sidebar_list li {
    width: 100%;
    float: left;
    list-style: none;
    margin-bottom: 5px !important;
}

ul.sidebar_list li a {
    color: #006fc0;
    padding: 0px !important;
    display: flex;
    align-items: center;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    font-size: 13px !important;
}

ul.sidebar_list li a img {
    width: 41px;
    height: 41px;
    background: #FFF;
    border-radius: 41px;
    margin-right: 10px;
    line-height: 41px;
    text-align: center;
    color: #006fc0;
}

h4.sidebartitle {
    width: 100%;
    float: left;
    font-size: 13px;
    letter-spacing: 0.32px;
    color: #AAAAAA;
    margin-bottom: 15px;
    padding-left: 0px;
}

.progress {
    width: 100%;
    height: 10px;
}

.progress-wrap {
    background: white;
    margin: 5px 0;
    overflow: hidden;
    position: relative;
}

.progress-wrap .progress-bar {
    background: #006fc0;
    left: -2px;
    position: absolute;
    top: 0;
    /* width: 35%; */
}

.numberpro {
    color: #bcbfc1;
}

.sidebar_listmianbox {
    margin-top: 50px;
}


/*31-08-21 end*/


/*5-09-2021 start*/

.float_left.Questionshow.left {
    width: 70%;
    float: left;
    background: #fff6f7;
    padding: 10px;
    border-radius: 7px;
    margin-bottom: 10px;
}

.float-right.Questionshow.right {
    width: 70%;
    float: right;
    background: #f1feed;
    padding: 10px;
    border-radius: 7px;
    margin-bottom: 10px;
}

.float_left.Questionshow.left,
.float-right.Questionshow.right {
    font-size: 13px;
    font-style: italic;
    color: #000;
}

.questiondate {
    width: 100%;
    float: left;
    text-align: right;
    font-size: 12px;
    font-style: italic;
    margin-top: 15px;
}

.anserdate {
    width: 100%;
    float: left;
    text-align: right;
    font-size: 12px;
    font-style: italic;
    margin-top: 15px;
}

.Questionslist {
    background: #FFFF;
    float: left;
    padding: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 7px;
    margin: 20px 0px;
    width: 100%;
}

.questionhead {
    width: 100%;
    float: left;
    color: #ecd377;
    padding: 15px 10px;
    font-size: 22px;
}

@media(max-width:767px) {
    .Registration_logo img {
        max-width: 190px;
        margin-top: 0px;
    }
    .float_left.Questionshow.left,
    .float-right.Questionshow.right {
        width: 95%;
    }
    .ConnectUs ul li {
        width: 100%;
    }
    .ConnectUs ul li span {
        margin-top: 6px !important;
    }
    .FooterWidgets .col-md-4 {
        padding-bottom: 30px;
    }
}


/*5-09-2021 end*/


/*18-09-2021 start*/

.adminprofileedit .form-group.d-flex {
    align-items: center;
}

.adminprofileedit .form-group.d-flex label {
    width: 100px;
    margin: 0;
    font-size: 13px;
    font-weight: 600;
}

button.profilecancel {
    border: 1px solid #006fc0 !important;
    color: #006fc0 !important;
    background: transparent !important;
}

.innerheading_n {
    width: 100%;
    float: left;
    display: flex;
    align-items: center;
    background: #f9f9f9;
    border-radius: 7px;
    padding: 10px 0px;
}

.innerheading_n li {
    width: 33.33%;
    display: flex;
    align-items: center;
    list-style: none;
}

.admindashboard input {
    margin-bottom: 0px !important;
}

.deletenews {
    width: auto;
    float: left;
    padding: 0px;
}

.deletenews a .fa {
    margin-right: 6px !important;
}

.deletenews.edit {
    position: absolute;
    right: 15px;
    bottom: 18px;
    color: blue
}

.deletenews.edit a {
    color: #fff;
}

.deletenews.delete a {
    color: #fff;
}

.publish .btn .btn-dark {
    background-color: #bbbec1 !important;
}

.deletenews.delete {
    position: absolute;
    right: 70px;
    bottom: 15px;
    color: red;
}

.content_panel.projects_panel {
    position: relative;
    min-height: 100px;
    margin-bottom: 15px
}


/*18-09-2021 end*/

.no-pad {
    padding: 0px !important;
}

.memberBtn {
    background-color: #bbbec1 !important;
    color: #fff !important;
}

.minuteRow.expired {
    color: red !important;
}

.invoice-outer {
    padding: 30px;
}

.invoice-address p {
    margin-top: 0;
    margin-bottom: 0;
}

.table-borderless td,
.table-borderless th {
    border: 0;
}

.invoice-outer .table td,
.invoice-outer .table th {
    padding: 0.25rem;
}

.invoice-outer p,
.invoice-outer td,
.invoice-outer th {
    font-size: 15px !important;
}

.swiper-wrapper11 .swiper-slide1 {
    display: none;
}

.swiper-wrapper11 .swiper-slide1.active {
    display: block;
}


/*ul {*/
/*  list-style-image: url('public/general_assets/images/tab_section/bullet-stryle.png');*/
/*}*/


.home-image:hover{
    padding-top: 5px;
    transition: 0.5s;
}

/* Zoom In #1 */
.hover01 img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.hover01 img:hover {
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}

.yes-background{
    float: left;
    width: 100%;
    background: #92D050;
}
.board-background{
    float: left;
    width: 100%;
    background: #F5F5F5;
}

.welcomeTitle{
	color: #006FC0;
  	font-weight: 700;
}

.btn-outline-secondary{
    color: #92d050;
    background-color: transparent;
    background-image: none;
    border-color: #006fc0;
    padding: 15px 40px;
    border-radius: 999em;
    font-size: 16px;
}

.btn-outline-secondary:hover {
    color: #fff;
    background-color: #006FC0;
    border-color: #006FC0;
}

.welcome_text {
    color: #3B3B3B;
    font-size: 15px;
  	font-weight: bold;
}

.we_offer_text{
    color: #92D050;
    font-size: 20px;
}

.intentionality_text{
    color: #3B3B3B;
    font-size: 15px;
  	font-weight: bold;
}

.footerPhone{
    color: #ececec !important;
}

.tab-title-login{
    font-weight: 600;
    margin-top: 5px;
    font-style: normal;
    border-bottom: 3px solid transparent;
    padding-bottom: 5px;
    font-size: 15px;
    color: #3b3b3b;
}

.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-bottom .tox-editor-header{
    z-index: 0;
}

.input-group-text{
    background-color: #F4F4F4;
    border: 1px solid #F4F4F4;
}

.bd-006fc0{
   background-color: #006fc0; 
}

#fakepasswordicon{
    color: #495057 !important;
    font-size: 13px;
    margin-right: -9px;
}
