@import url('fonts.css');

body {
    font-family: ReplicaStd-Light;
    color: #000000;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.24px;

}

.text-bold {
    font-family: ReplicaStd-Bold;
    font-weight: bold;
}

.form-control:focus {
    border-color: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

a {
    color: var(--bright-pink);
    text-decoration: none;
}

.box-shadow {
    box-shadow: 0px 0px 9px #00000019;
}

a:hover {
    color: var(--bright-black);
}

.no-after {
    ::after {
        display: none!important;
    }
}

:root {
    --bright-purple: #ebcdff;
    --bright-pink: #ff005a;
    --bright-black: #001A00;
    --bright-white: #FFFFFF;
    --um-blue: #06aeef;
    --um-orange: #ef5825;
    --dark-grey: #D9D9D9;
}

.heading {
    font-family: ReplicaStd-Bold;
    color: var(--bright-pink);
    font-size: 70px;
    letter-spacing: 0.77px;
    line-height: 81px;
}

@media screen and (max-width: 1400px) {
    .heading {
        font-size: 40px;
        line-height: 51px;
    }
}

h1 {
    font-family: ReplicaStd-Bold;
    color: var(--bright-pink);
    font-size: 25px;
    letter-spacing: 0.38px;
    line-height: 29px;
    margin-bottom: 20px;
}

h2 {
    font-family: ReplicaStd-Bold;
    color: var(--bright-black);
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.27px;
    line-height: 21px;
}

h3 {
    font-family: ReplicaStd-Bold;
    color: var(--bright-pink);
    font-size: 18px;
    letter-spacing: 0.27px;
    line-height: 21px;
}

.font-quote {
    font-family: ReplicaStd-Light;
    color: var(--bright-black);
    font-size: 16px;
    letter-spacing: 0.55px;
    line-height: 26px;
    font-style: italic;
}

.font-heading-subtext {
    font-family: ReplicaStd-Regular;
    color: var(--bright-pink);
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 22px;
}

@media only screen and (max-width: 768px) {
    .heading {
        font-size: 40px;
    }
    h1 {
        font-size: 22px;
        line-height: 29px;
    }    
}

.footer-link {
    color: var(--bright-pink);
    text-decoration: none;
}

/* buttons */

.btn-primary {
    position: relative;
    background-color: var(--bright-black);
    color: var(--bright-white);
    border: none;
    border-radius: 0;
    font-size: 14px;
    font-family: ReplicaStd-Regular;
    letter-spacing: 0px;
    line-height: 20px;
    cursor: pointer;
    width: 172px;
    height: 32px;
    text-align: left;
    margin: 2vw 0 2vw 0;
}

.btn-primary:hover,.btn-primary:focus {
    background-color: var(--bright-pink)!important;
    color: var(--bright-white);
}

.btn-txt::after {
    font-family: "Font Awesome 5 Free"; 
    font-weight: 900;
	position: absolute;
	right: 4px;
	top: 6px;
    content: '\f061';
	width: 22px;
	height: 12px;
	transition: .3s ease-out;
}

.back-txt::before {
    font-family: "Font Awesome 5 Free"; 
    font-weight: 900;
	position: absolute;
	left: 6px;
	top: 6px;
    content: '\f060';
	width: 22px;
	height: 12px;
	transition: .3s ease-out;
}

.contact-txt::before {
    font-family: "Font Awesome 5 Free"; 
    font-weight: 900;
	position: absolute;
	left: 6px;
	top: 6px;
    content: '\f0e0';
	width: 22px;
	height: 12px;
	transition: .3s ease-out;
}

/*VideoWrapper*/
.homepage-video-wrapper {
    width: 100%;
    height: 100%;
}

/* section */
.section {
    margin-top: 116px;
}

@media only screen and (max-width: 768px) {
    .section {
        margin-top: 50px;
    }    
}

/*Line Heights*/
.line-height-24px {
    line-height: 24px;
}

/*Navigation*/

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,0,90, 1)' stroke-width='4' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar-toggler, .navbar-toggler:focus, .navbar-toggler:hover, .navbar-toggler:active {
    border: 0px!important;
    outline: 0px!important;
    box-shadow: none!important;
} 

.nav-link {
    font-family: ReplicaStd-Bold;
    font-size: 20px;
    display: block;
	position: relative;
	padding: 0.2em 0;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    color: var(--bright-pink);
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0.1em;
	background-color: var(--bright-pink);
	opacity: 0;
	transition: opacity 300ms, transform 300ms;
}

.nav-link:hover::after,
.nav-link:focus::after {
	opacity: 1;
	transform: translate3d(0, 0.2em, 0);
}

/* Scale from center */
.nav-link::after {
	opacity 1;
	transform: scale(0);
	transform-origin: center;
}

.nav-link:hover::after,
.nav-link:focus::after{
	transform: scale(1);
}

.nav-link:hover {
    color: var(--bright-black);
}

.dropdown-item:hover {
    background-color: inherit;
    color: var(--bright-pink);
}
.dropdown-menu {
    border-radius: 0;
}

.dropdown-toggle::after {
    border: 0!important;
}
@media only screen and (min-width: 768px) {
    /* Show the dropdown menu on hover */
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0; /* Adjust as needed */
    }

    /* Optional: Ensure the dropdown-toggle doesn't trigger the dropdown on click */
    .nav-item.dropdown > .nav-link.dropdown-toggle::after {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
    .dropdown-menu {
        background-color: var(--bright-purple);
        border: 0px;
        font-family: ReplicaStd-Bold;
        font-size: 20px;
    }
    .dropdown-item {
        color: var(--bright-pink);
    }
    .navbar-nav {
        margin-top: 5px;
    }
    .nav-item {
        margin-bottom: 10px;
    }
}


/* line */
hr {
    color: var(--um-blue);
    margin: 50px 0 50px 0;
}

/*Backgrounds*/
.bg-purple {
    background-color: var(--bright-purple);
}

.bg-blue {
    background-color: var(--um-blue);
}

.bg-grey {
    background-color: #e3e3e3;
}

.bg-darkgrey {
    background-color: var(--dark-grey);
}

/*Text-Colors*/
.text-pink {
    color: var(--bright-pink);
}

.text-white {
    color: #FFFFFF;
}

.text-hover-red:hover {
    color: var(--bright-black)!important;
}

.text-black {
    color: #000000;
}

/* partners homepage */

#owlHomepagePartners .item {
    width: 150px;
    height: 150px;
    border: 1px solid var(--bright-pink);
}

.splitter-quote {
    text-align: center;
    margin: 50px 0 50px 0;
    position: relative;
}

.splitter-quote::after {
    position: absolute;
    width: 45%;
    border-bottom: 1px solid var(--bright-pink);
    content:'';
    height: 4px;
    top: 45%;
    right: 0;
    z-index: -1;
}

.splitter-quote::before {
    position: absolute;
    width: 45%;
    border-bottom: 1px solid var(--bright-pink);
    content:'';
    height: 4px;
    top: 45%;
    left: 0;
    z-index: -1;
}

/* social footer */
.social-footer {
    background: transparent linear-gradient(90deg, #FFFFFF 0%, var(--bright-pink) 100%) 0% 0% no-repeat;
    padding: 20px;
}

/* form */

.form-control {
    border: 1px solid var(--bright-black);
    border-radius: 0;
}

.customcheckbox > input {
	display: block;
	height: 1px;
	z-index: -1;
    position: absolute;
}

.customcheckbox > i {
	color: transparent;
}

.customcheckbox > input + i { 
    cursor:pointer;
    border:1px solid black;
}

.customcheckbox > input:checked + i {
  color: var(--um-blue);
}

.form-check-input:checked {
    color: var(--um-blue);
  }
  
/* About page */

.prize-title {
    font-size: 20px;
    font-family: ReplicaStd-Bold;
    font-weight: bold;
    color: #001A00;
}

/* Cards */
.about-card {
    box-shadow: 0px 0px 9px #00000019;
    padding: 5px;
    height: 100%;
}

.about-text {
    padding: 0 22px 22px 22px;
}

.about-card-title {
    background-color: var(--bright-pink);
    color: white;
    font-family: ReplicaStd-Bold;
    font-size: 20px;
    text-align: center;
    padding: 11px 0 11px 0;
    width: 218px;
    height: 56px;
}

.centered {
    position: relative;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.partnertile {
    display: flex;
    height: 167px;
    width: 167px;
    align-items: center;
    cursor: pointer;
    box-shadow: 0px 0px 9px #00000029;
}

.partnertile img {
    height: auto;
    max-height: 100px;
    max-width: 100%;
}

.cursor-pointer {
    cursor: pointer;
}

.greyborder {
    box-shadow: 0px 0px 9px #00000029;
    background-color: white;
}

.radius-block {
    border-radius: 4px;
}

/* Business Panel */
.coach-title {
    font-size: 20px;
    font-family: ReplicaStd-Bold;
    font-weight: bold;
    color: #001A00;
}

.coach-description {
    font-size: 16px;
    font-family: ReplicaStd-Light;
    color: #001A00;
}

.linkedin-icon {
    height: 40px;
    width: 40px;
}

/* Candidates */


/* Candidates */

.cat-img {
    height: 32px;
    width: 32px;
}

.label-finalist {
	background-color: var(--bright-pink);
	position: absolute;
	left: 5px;
	top: 5px;
	padding: 5px;
    font-weight: bold;
    color: white;
    font-size: 16px;
    font-family: ReplicaStd-Bold;
}

.label-category {
    position: absolute;
	right: 0px;
	top: 0px;
	padding: 5px;
}

.label-category img {
    height: 32px;
    width: 32px;
}

.filter-title {
	letter-spacing: 0.5px;
	line-height: 28px;
	border-radius: 4px;
}

.h2-candidates{
	letter-spacing: 0.5px;
	line-height: 28px;
}

.h2-candidates a {
	text-decoration: none;
}

.h4-candidates {
	font-weight: 700;
	font-size: 15px;
	color: #001A00;
}

.card-box{
	border-radius: 4px;
	padding: 4px 4px 4px 4px;
    box-shadow: 0px 0px 9px #00000019;
}

.card-box p {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	height: 58px;
}

.category-btn {
	text-align: center;
	display: inline-block;
	height: 42px;
	width: 100%;
	text-decoration: none;
	border-radius: 4px;
	padding: 11px;
}

.category-btn:hover {
	opacity: .8;
}

.cluster-image {
	height: 32px;
	width: auto;
    margin-bottom: 18px;
}

.search-form input {
    font-family: ReplicaStd-Light;
	font-size: 14px;
	font-weight: 700;
	color: white;
	background-color: var(--bright-black)!important;
}

.lookingfor-control {
    background: none!important;
    border: 0px;
    color: var(--bright-black);
    font-weight: bold;
    font-family: ReplicaStd-Bold;
}

.search-form input:focus, .search-form input::placeholder {
	color: white;
}

.search-wrapper .fa-search {
    color: white;
}

.search-wrapper .btn {
    background-color: var(--bright-black);
    border-radius: 0px;
}

#candidates .candidate-pic, #news .news-pic {
	border-radius: 4px 4px 0px 0px;
}

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

#candidates .category-label {
	width: 131px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
	background-color: #000!important;
}

/* Candidate detail */

.info-icon {
	height: 19px;
	width: 19px;
	color: #036;
	border: 1px solid #022328;
	font-size: 12px;
	border-radius: 25px;
}

.info-icon-active {
	background-color: #001A00;
	color: #FFF;
}

.pagination {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
}

.pagination li {
    display: flex;
    align-items: center;
}

.pagination li a, .pagination li span {
    display: block;
    text-decoration: none;
    color: #FFF;
}

.pagination li.active span {
    font-weight: bold;
    color: #fff;
    font-family: ReplicaStd-Bold;
    background-color: var(--bright-pink);
    height: 42px;
    width: 42px;
    align-content: center;
}

.pagination li.inactive span {
    background-color: #EBCDFF;
    height: 42px;
    width: 42px;
    font-family: ReplicaStd-Bold;
    font-weight: bold;
    align-content: center;
}

.pagination li.disabled span {
    color: #ccc;
}

.pagination-icon, .pagination-dots {
    color:  var(--bright-pink);
}

/* About conditions */
.conditions {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}
  
.conditions li {
    padding-left: 1em;
    text-indent: -1em;
}
  
.conditions li:before {
    content: ">";
    padding-right: 5px;
}

.ideation-wrapper {
    height: 140px;
    width: 140px;
    background-color: #FF005A;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prototyping-wrapper {
    height: 140px;
    width: 140px;
    background-color: #EBCDFF;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.ideation-wrapper img, .prototyping-wrapper img {
    height: 100px;
    width: 100px;
}

.condition-title {
    font-family: ReplicaStd-Bold;
    color: var(--bright-pink);
    font-size: 16px;
}

.condition-text {
    line-height: 24px;
}

/* Career */

.career-wrapper {
    height: 350px;
}

.career-content h1 {
    font-size: 16px;
}

.career-img-wrapper {
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: start;
}

.career-img {
    max-width: 100px;
    max-height: 100px;
}

.career-text {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 24px;
    font-size: 16px;;
}