/*--------------Normalize css---------------*/
html{line-height:1.15;-webkit-text-size-adjust:100%}
body{margin:0}
main{display:block}
h1{font-size:2em;margin:.67em 0}
hr{box-sizing:content-box;height:0;overflow:visible}
pre{font-family:monospace,monospace;font-size:1em}
a{background-color:transparent}
abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}
b,strong{font-weight:bolder}
code,kbd,samp{font-family:monospace,monospace;font-size:1em}
small{font-size:80%}
sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}
sub{bottom:-.25em}
sup{top:-.5em}
img{border-style:none}
button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}
button,input{overflow:visible}
button,select{text-transform:none}
button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}
button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}
button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}
fieldset{padding:.35em .75em .625em}
legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}
progress{vertical-align:baseline}
textarea{overflow:auto}
[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}
[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}
[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}
[type="search"]::-webkit-search-decoration{-webkit-appearance:none}
::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}
details{display:block}
summary{display:list-item}
template{display:none}
[hidden]{display:none}
select {
    width: 70%;
    height: 35px;
}

/*fonts*/
@font-face {
    font-family: 'Gotham-Black';
    font-display: auto;
    src: url('../fonts/Gotham-Black.eot');
    src: url('../fonts/Gotham-Black.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Gotham-Black.svg#Gotham-Black') format('svg'),
    url('../fonts/Gotham-Black.ttf') format('truetype'),
    url('../fonts/Gotham-Black.woff') format('woff'),
    url('../fonts/Gotham-Black.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham-Bold';
    font-display: auto;
    src: url('../fonts/Gotham-Bold.eot');
    src: url('../fonts/Gotham-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Gotham-Bold.svg#Gotham-Bold') format('svg'),
    url('../fonts/Gotham-Bold.ttf') format('truetype'),
    url('../fonts/Gotham-Bold.woff') format('woff'),
    url('../fonts/Gotham-Bold.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham-Book';
    font-display: auto;
    src: url('../fonts/Gotham-Book.eot');
    src: url('../fonts/Gotham-Book.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Gotham-Book.svg#Gotham-Book') format('svg'),
    url('../fonts/Gotham-Book.ttf') format('truetype'),
    url('../fonts/Gotham-Book.woff') format('woff'),
    url('../fonts/Gotham-Book.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham-Light';
    font-display: auto;
    src: url('../fonts/Gotham-Light.eot');
    src: url('../fonts/Gotham-Light.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Gotham-Light.svg#Gotham-Light') format('svg'),
    url('../fonts/Gotham-Light.ttf') format('truetype'),
    url('../fonts/Gotham-Light.woff') format('woff'),
    url('../fonts/Gotham-Light.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

/*-----------style pattern for UI elements-------------*/

body {
    font-family: 'Gotham-Book';
    color: #000;
    background: #fff;
    font-size: 17px;
}
p {
    font-size: 0.925em;
}
p .standard-size {
    font-size: 1em !important;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: 'Gotham-Black' !important;
    text-transform: uppercase !important;
}

h2,
.h2 {
    font-size: 2.675em;
}

p h3,
p .h3 {
    font-size: 1.25em !important;
}

.h6,
h6 {
    font-size: 1em;
}

.p {
    font-size: 1em;
}

p {
    line-height: 1.8;
    margin-bottom: 6px !important;
}

a {
    transition: all 0.2s ease;
}

a:hover {
    opacity: 0.8;
    text-decoration: none;
}

.grey {
    color: #A3A3A3;
}

.date {
    font-size: 0.725em;
    color: #000;
    font-family: 'Gotham-Black';
}

.btn {
    font-family: 'Gotham-Bold';
    color: #FFFAFC !important;
    font-size: 1em;
    text-transform: uppercase;
    background: #E60961;
    border-radius: 0;
    transition: all 0.3s ease;
    padding: .25em 1em;
    line-height: 1;
    -webkit-clip-path: polygon(10% 0%,100% 0,91% 100%,0 100%);
    clip-path: polygon(10% 0%,100% 0,91% 100%,0 100%);
}

.btn:hover {
    color: #FFFAFC !important;
    opacity: 0.8;
}

.btn-disabled {
    opacity: 0.8;
    cursor: not-allowed !important;
}

.btn:focus,
.btn.focus {
    outline: 0;
    box-shadow: none;
}

.btn.btn-small {
    font-family: 'Gotham-Bold';
    color: #FFFAFC !important;
    font-size: 0.825em;
    text-transform: uppercase;
    background: #E60961;
    border-radius: 0;
    transition: all 0.3s ease;
    padding: 0.35em 1.4em;
    line-height: 1;
    -webkit-clip-path: polygon(10% 0%,100% 0,90% 100%,0 100%);
    clip-path: polygon(10% 0%,100% 0,90% 100%,0 100%);
}

.btn.btn-big {
    padding: .5em 2em;
    -webkit-clip-path: polygon(2% 0%,100% 0,98% 100%,0 100%);
    clip-path: polygon(2% 0%,100% 0,98% 100%,0 100%);
}

.btn.btn-long {
    padding: 0.35em 2.4em;
    -webkit-clip-path: polygon(5% 0%,100% 0,95% 100%,0 100%);
    clip-path: polygon(5% 0%,100% 0,95% 100%,0 100%);
}

.btn.btn-white {
    color: #000 !important;
    background: #fff;
}

.btn.btn-blue {
    color: #fff;
    background: #3BC7F4;
}

.btn.btn-purple {
    color: #fff;
    background: #3F51B5;
}

.btn.btn-grey {
    color: #fff;
    background: #D1D2D4;
}

.btn.btn-black {
    color: #fff !important;
    background: #000;
}

.title {
    font-size: 1em;
    margin: 0;
    line-height: 1;
    position: relative;
}

.font-sm {
    font-size: 0.8em;
}

.no-link-styling {
    color: white !important;
}

.no-link-styling:hover {
    color: white;
}

@media screen and (max-width: 600px) {
    .title {
        font-size: 0.8em;
    }
}

.title {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 3.8em;
}

.title span {
    font-family: 'Gotham-Black';
    text-transform: uppercase;
    font-size: 2em;
    color: #000;
    background: #FFFFFF;
    padding: 0.325em 1.5em;
    display: block;
    min-width: 40%;
    text-align: center;
    white-space: nowrap;
    -webkit-clip-path: polygon(4% 0%,100% 0,96% 100%,0 100%);
    clip-path: polygon(4% 0%,100% 0,96% 100%,0 100%);
}

.title.title_big {
    padding-top: 5em;
}

.title::before,
.title::after {
    position: relative;
    content: '';
    height: 2px;
    width: 100%;
    background: #fff;
}

.title::before {
    transform: translateX(4%);
}

.title::after {
    transform: translateX(-4%);
}

.title.title_inverce span {
    color: #FFFEFE;
    background: #000;
}

.title.title_inverce::before,
.title.title_inverce::after {
    background: #000;
}

.white-block {
    background: #fff;
}

.f-red {
    color: #EC166A!important;
}

.title.title_small span {
    font-size: 1em;
    padding: 0.325em 1.5em;
    min-width: inherit;
}

input:not([type="submit"]),
textarea {
    width: 100%;
    color: #000;
    font-size: 1em;
    padding: 0.5em;
    border: none;
    margin-bottom: 0.5em;
}

textarea {
    resize: none;
    height: 10em;
}

label {
    display: block;
    font-family: 'Gotham-Black';
    font-size: 1em;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 0.25em;
}

.no-padding-right {
    padding-right: 0;
}

.no-padding-left {
    padding-left: 0;
}

.figure-underline {
    position: relative;
}

.figure-underline::after {
    position: absolute;
    content: '';
    bottom: -0.5em;
    left: 0;
    width: 100%;
    height: 0.25em;
    background: #fff;
    -webkit-clip-path: polygon(2% 0%,100% 0,98% 100%,0 100%);
    clip-path: polygon(2% 0%,100% 0,98% 100%,0 100%);
}

.slick-prev,
.slick-next {
    position: absolute;
    border: 0;
    font-size: 0;
    width: 35px;
    height: 35px;
    background: transparent;
    top: calc(50% - 17px);
    cursor: pointer;
    opacity: 1;
    transition: all 0.3s ease;
}

.slick-prev:hover,
.slick-next:hover {
    opacity: 0.8;
}

.slick-prev {
    left: -30px;
}

.slick-next {
    right: -30px;
}

.slick-prev::before,
.slick-next::before {
    position: absolute;
    content: '';
    top: 10px;
    right: 12px;
}

.slick-prev::before {
    border-right: 12px solid #000;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.slick-next::before {
    border-left: 12px solid #000;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.slick-dots {
    padding: 0;
    width: 100%;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.slick-dots li {
    border: 2px solid #000;
    width: 1em;
    height: 1em;
    background: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
    list-style: none;
    margin: 0 0.25em;
}

.slick-dots li.slick-active {
    background: #000;
}

.slick-dots button {
    display: none;
}

.badge {
    position: absolute;
    right: -1em;
    bottom: -1em;
    color: #fff !important;
    background: #000;
    text-transform: uppercase;
    font-family: 'Gotham-Bold';
    font-size: 0.875em;
    padding: 0.5em 1em;
    width: 35%;
    text-align: center;
    display: block;
    line-height: 1.2;
    -webkit-clip-path: polygon(5% 0%,100% 0,95% 100%,0 100%);
    clip-path: polygon(5% 0%,100% 0,95% 100%,0 100%);
    border-radius: 0;
}

.badge:hover {
    color: #fff;
}

.badge.badge_small_home {
    font-size: 0.75em;
    cursor: default;
    width: 33%;
}

.badge.badge_small {
    width: 20%;
    font-size: 0.75em;
}

.badge.badge_red {
    background: #EC166A;
}

.badge.badge_grey {
    background: #D1D2D4;
}

.badge.badge_blue {
    background: #3BC7F4;
}

.badge.badge_white {
    background: #fff;
    color: #000 !important;
}

.badge.badge_black {
    background: #000;
}

.standard-badge {
    right: auto !important;
    bottom: auto !important;
}

.color-card {
    border: 2px solid #000;
    color: #fff;
    position: relative;
}

.color-card.color-card_red {
    border: 2px solid #EC166A;
}

.color-card.color-card_red .color-card__header {
    background: #EC166A;
}

.color-card.color-card_grey {
    border: 2px solid #D1D2D4;
}

.color-card.color-card_grey .color-card__header {
    background: #D1D2D4;
}

.color-card.color-card_blue {
    border: 2px solid #3BC7F4;
}

.color-card.color-card_blue .color-card__header {
    background: #3BC7F4;
}

.color-card__header {
    font-family: 'Gotham-Black';
    font-size: 1.125em;
    text-transform: uppercase;
    background: #000;
}

.color-card__body h6 {
    font-family: 'Gotham-Black';
    font-size: 1.125em;
}

.color-card p {
    margin-bottom: 0;
}

.badge-title {
    color: #fff;
    background: #3BC7F4;
    text-transform: uppercase;
    font-size: 1em;
    padding: 0.675em 1em;
    width: 50%;
    text-align: center;
    display: block;
    -webkit-clip-path: polygon(3% 0%,100% 0,97% 100%,0 100%) !important;
    clip-path: polygon(3% 0%,100% 0,97% 100%,0 100%);
}

.badge-title.badge-title_small {
    width: 30%;
}

.badge-title.badge-title_grey {
    background: #D1D2D4;
}

.badge-title.badge-title_red {
    background: #EC166A;
}

.f-small {
    font-size: 0.875em;
}

.text-black {
    color: #000!important;
}

.nice-select {
    width: 100%;
    background: #D1D2D4;
    height: auto;
    font-size: 1.06em;
    border: 0;
    border-radius: 0;
    line-height: 1;
    padding: 0.5em;
}

.nice-select:after {
    border-top: 8px solid #000;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-bottom: none;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transform-origin: 50% 70%;
    -ms-transform-origin: 50% 70%;
    transform-origin: 50% 70%;
}

.nice-select.open:after {
    -webkit-transform: rotate(-185deg);
    -ms-transform: rotate(-185deg);
    transform: rotate(-185deg);
    margin-top: -8px;
}



/*-----------Main styles-------------*/

/*Header*/

header {
    background: #000;
    color: #FFFAFC;
}

header .h1 {
    font-size: 1em;
    margin: 1em 0 0;
}

header a {
    color: #FFFAFC;
    font-size: 1em;
    font-family: 'Gotham-Bold';
    text-transform: uppercase;
}

header a:hover {
    opacity: 1;
    color: #E60961 !important;
}

header a img {
    transition: all 0.3s ease;
}

header a:hover img {
    opacity: 0.8;
}

.logo img {
    max-width: 18.35em;
}

.socials img {
    max-width: 22px;
    width: 100%;
}

.socials a {
    display: block;
    margin-right: 0.725em;
}

.socials a:last-of-type {
    margin-right: 0;
}

.top-nav__user-board a:nth-of-type(1) {
    margin-right: 0.675em;
}

.top-nav {
    padding: 2.765em 0 1.765em;
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;

}

.main-nav .main-nav__primary {
    border-top: 3px solid #FFFAFC;
    padding: 1.5em 0;
}

.main-nav__primary > li {
    position: relative;
    padding: 0.875em 0;
}

.main-nav__primary > li.current:before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 2em;
    z-index: 0;
    background: #67676A;
    -webkit-clip-path: polygon(40% 0%,100% 0,60% 100%,0 100%);
    clip-path: polygon(40% 0%,100% 0,60% 100%,0 100%);
}

.main-nav__primary a {
    position: relative;
    z-index: 1;
}

.main-nav .main-nav__secondary {
    padding: 0.5em 1em;
}

.main-nav .main-nav__secondary a {
    display: block;
    text-align: center;
    color: #E60961;
    font-size: 0.9em;
    padding: 0.25em 0;
}

.main-nav .main-nav__secondary a:hover {
    color: #E64887;
}

.main-nav  .main-nav__secondary {
    position: absolute;
    top: 80%;
    left: -1em;
    background: #000;
    transition: all .2s ease-out;
    opacity: 0;
    visibility: hidden;
    transform: rotateX(-25deg);
    transform-origin: 50% 0;
    will-change: transform,opacity;
    z-index: 100;
}

.main-nav__primary li.active .main-nav__secondary {
    opacity: 1;
    visibility: visible;
    transform: none;
}
/*Home page*/
.about__wrapper {
    padding: 9em 7.25em;
}

.about__wrapper p {
    font-size: 1em !important;
}

.about__wrapper a {
    color: #EC166A;
}

.home-banner {
    background: #F24570;
    color: #fff;
    overflow: hidden;
}

.home-banner__text {
    position: relative;
    z-index: 10;
    padding: 5em 0;
    height: 100%;
    padding-right: 50%;
    background: #F24570;
    -webkit-clip-path: polygon(0% 0%,100% 0,60% 100%,0 100%);
    clip-path: polygon(0% 0%,100% 0,60% 100%,0 100%);
}

@media screen and (max-width: 1200px) {
    .home-banner__text {
        padding: 3em 0;
        padding-right: 50%;
    }
}

@media screen and (max-width: 992px) {
    .home-banner__text {
        padding: 3em 0;
        padding-right: 50%;
    }
}

.home-banner__img {
    position: relative;
    transform: translateX(-50%);
}

.home-banner__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
}

.play-button {
    position: relative;
    height: 100%;
    width: 100%;
    text-align: center;
    line-height: 100%;
}

.play-button .fa-play-circle {
    vertical-align: middle;
    font-size: 110px;
    color: white;
    cursor: pointer;
}

.play-button .fa-play-circle:hover {
    color: #F24570;
}

.no-border {
    border: 0px !important;
}

.members {
    background: #000;
    color: #fff;
    overflow: hidden;
}

.members.members_blue {
    background: #3BC7F4;
    padding-top: 5em;
}

.members.members_blue .title span {
    color: #3BC7F4;
}

.members__img img {
    width: 100%;
}

.members__img {
    position: relative;
}

.members__img__wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: rgba(0,0,0,.5);
}

.members__img__wrapper.members__img__wrapper_center {
    background: rgba(45,165,224,.8);
}

.members__img a {
    color: #fff;
}

.members__img__wrapper span {
    display: block;
    word-spacing: 100vw;
    text-align: center;
    line-height: 1.6;
}

.members__img__wrapper.members__img__wrapper_center span {
    font-size: 5em;
    text-transform: uppercase;
    font-family: 'Gotham-Bold';
}

.members__img__wrapper:hover {
    opacity: 0.9;
}

.partners-slide img {
    margin: 0 auto;
}

.job-modal .modal-body {
    padding: 0;
}

.job-block .job-modal .color-card {
    width: 100%;
    margin-bottom: 0;
}

.events {
    background: url('../img/events-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.events__card {
    background: #fff;
    position: relative;
}

.events__card__description p {
    font-size: 0.875em;
    line-height: 1.4;
}

.events__card__description h6 {
    font-family: 'Gotham-Black';
}

.events__card__date {
    font-family: 'Gotham-Black';
    text-align: center;
}

.events__card__date span {
    display: block;
    line-height: 1;
    font-size: 3em;
}

.news img {
    max-width: 100%;
}

.news a {
    color: #000;
}

.news h6 {
    margin: 0.5em 0 1em;
    font-family: 'Gotham-Black';
    line-height: 1.8;
}

.news__main {
    margin-bottom: 20px;
}

.opportunities {
    padding: 6em 0 4em;
    background: url('../img/opportunities_bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.opportunities .color-card {
    width: 45%;
    margin-bottom: 4em;
}

.color-card__img img {
    position: absolute;
    width: 200%;
    transform: translateX(-25%);
}

.foolow {
    padding: 6em 0 4em;
    background: #D1D2D4;
}

.follow-card {
    background: #fff;
    color: #000;
    width: 45%;
    margin-bottom: 4em;
}

.follow-card img {
    width: 100%;
    margin-top: 0.725em;
}

.follow-card:hover p {
    color: #000;
}

/*Join now page*/
.black-block {
    background: #000;
}

.join-block__card {
    background: #fff;
    margin-bottom: 2em;
}

.join-block__card img {
    width: 100%;
    margin-bottom: 1.725em;
}

.join-block__card h3 {
    font-family: 'Gotham-Black';
    margin-bottom: 0.875em;
}

.about__wrapper p,
.news__single p,
.resources-block__description p,
.opportunity-description p,
.color-card p,
.modal-body p,
.mission__description p {
    text-align: justify;
}


/*login page*/
.login-form,
.signup-form {
    background: #fff;
}

.login-form .form-group input,
.signup-form .form-group input {
    background: #D1D2D4;
    font-size: 1.2em;
    width: 70%;
}

.login-form .form-group textarea,
.signup-form .form-group textarea {
    background: #D1D2D4;
    font-size: 1.2em;
    width: 70%;
}

.login-form .form-group .ng-select-container,
.signup-form .form-group .ng-select-container {
    height: 45px !important;
}

.login-form .form-group .ng-select-container .ng-value-container,
.signup-form .form-group .ng-select-container .ng-value-container {
    margin-top: 5px !important;
}

.login-form .form-group label,
.signup-form .form-group label {
    font-family: 'Gotham-Black';
    font-size: 1.6em;
    width: 30%;
    padding-right: 20px;
}

.signup-form .form-group label {
    font-size: 1.2em;
    width: 30%;
}

.search-form {
    background: #fff;
}

.search-form.search-form_inverce {
    background: #D1D2D4;
}

.search-form.search-form_inverce label {
    color: #fff;
}

.search-form.search-form_inverce input:not([type="submit"]) {
    background: #fff;
}

.search-form.search-form_inverce .nice-select {
    background: #fff;
}

.search-form.search-form_inline label {
    margin-bottom: 0;
    margin-right: 20px;
}

.search-form.search-form_inline input[type="submit"] {
    margin-bottom: 0;
    margin-left: 20px;
}

.search-form input:not([type="submit"]) {
    background: #D1D2D4;
    margin-bottom: 0;
}

.search-form select {
    margin-right: 20px;
    height: 38px;
    width: 100% !important;
}

.search-form .form-group {
    width: 50%;
    margin-bottom: 0;
    margin: 0 20px 0 0;
}

@media screen and (max-width: 760px) {
    .search-form .form-group {
        width: 100%;
    }    
}

.search-form label {
    margin-bottom: 0.5em;
}

/*Aim award page*/
.aim-block__card {
    position: relative;
    background: #fff;
    margin-bottom: 3em;
}

.aim-block__card:last-of-type {
    margin-bottom: 0;
}

.aim-block__card img {
    max-width: 100%;
}

.aim-block__img {
    cursor: pointer;
    height: 250px;
    max-width: 100%;
    text-align: center;
    vertical-align: middle;
    display: table-cell;
    line-height: 250px;
}

.aim-block__img img {
    max-width: 100%;
    max-height: 200px;
}

.aim-block__card__brands {
    width: 20%;
}

.aim-block__card__brands img {
    width: 100%;
}

.aim-block__card__brands p {
    font-size: 0.675em;
    margin-bottom: 5px;
}

.aim-block__card__description {
    width: 33.33%;
}

.aim-block__card__description span {
    display: block;
}

.aim-block__card__title {
    border-bottom: 2px solid #838383;
    padding-bottom: 1em;
    margin-bottom: 1em;
    font-size: 0.725em;
}

.aim-block__card__value {
    text-transform: uppercase;
    font-family: 'Gotham-Black';
    font-size: 0.875em;
}

/*about-page*/

.about-block {
    background: #000;
    padding-bottom: 4em;
}

.about-block .about__wrapper {
    background: #fff;
}

.mission__title {
    position: relative;
    font-size: 2em;
    color: #fff;
    text-align: center;
    padding: 2.5em 0;
    background: #3BC7F4;
    font-family: 'Gotham-Bold';
    text-transform: uppercase;
    z-index: 10;
}

.mission__title.mission__title_red {
    background: #EC166A;
}

.mission__title.mission__title_red::before {
    border-top: 30px solid #EC166A;
}

.mission__title.mission__title_black {
    background: #000;
}

.mission__title.mission__title_black::before {
    border-top: 30px solid #000;
}

.mission__title::before {
    position: absolute;
    content: '';
    bottom: -25px;
    left: calc(50% - 20px);
    border-left: 23px solid transparent;
    border-right: 23px solid transparent;
    border-top: 30px solid #3BC7F4;
}

.mission__description {
    background: url("../img/mission_bg_dark.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

@media screen and (max-width: 760px) {
    .mission__description {
        padding-top: 70px;
    }
}

.mission__description p {
    line-height: 1.8;
}

.mission__title__item {
    background: #fff;
    color: #EC166A;
    width: 33.3%;
    font-size: 0.8em;
    -webkit-clip-path: polygon(40% 0%,100% 0,60% 100%,0 100%);
    clip-path: polygon(4% 0%,100% 0,96% 100%,0 100%);
}

/*opportunities*/

.search-form input[type="submit"],
.search-form .btn {
    margin-bottom: 0.25em;
    margin-left: 0;
}

.sort__wrapper label {
    white-space: nowrap;
    margin-right: 15px;
    margin-bottom: 0;
    font-size: 0.825em;
}

.sort__wrapper input {
    margin-bottom: 0;
    font-size: 0.825em;
}

.opportunity-block .color-card {
    width: 45%;
    margin-bottom: 4em;
}

.opportunity-block .color-card__body {
    /*width: 66%;*/
}

.opportunity-block .color-card__img {
    position: relative;
    width: 33%;
    overflow: hidden;
}

.color-card__wrapper,
.aim-block__wrapper {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
}

.opportunity-description img {
    width: 100%;
}

.aim-block__img {
    overflow: hidden;
    position: relative;
}

.opportunity-description__img {
    overflow: hidden;
    max-height: 20em;
}

.opportunity-description .btn {
    min-width: 150px;
}

.opportunity-description .badge-title {
    width: 100%;
    padding: 0.25em 1em;
    font-family: 'Gotham-Black';
    font-size: 0.875em;
}

@media screen and (max-width: 1200px) {
    .opportunity-description .badge-title {
        font-size: 0.675em;
    }
}

.opportunity-aside p {
    font-size: 0.725em;
}

.opportunity-aside h6 {
    font-family: 'Gotham-Black';
}

.aim-block__card__body h6 {
    font-family: 'Gotham-Black';
}

.contact-bar a,
.contact-bar .marker {
    position: relative;
    padding-left: 35px;
    color: #000;
    font-size: 0.875em;
}

.contact-bar .marker {
    max-width: 180px;
}

.contact-bar a::before,
.contact-bar .marker::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 30px;
    height: 20px;
}

.contact-bar .cursor::before {
    background: url("../img/socials/cursor-black.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.contact-bar .phone::before {
    background: url("../img/socials/phone-black.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.contact-bar .mail::before {
    background: url("../img/socials/mail-black.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.contact-bar .twitter::before {
    background: url("../img/socials/twitter-black.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.contact-bar .facebook::before {
    background: url("../img/socials/facebook-black.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.contact-bar .marker::before {
    background: url("../img/socials/map-marker.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.aim-block .badge {
    cursor: pointer;
}

.aim-modal .aim-modal__img {
    margin-top: 1em;
    padding: 0 1em 1em 1em;
    max-height: 40vh;
    overflow: hidden;
}

.aim-modal .aim-modal__img img {
    width: 100%;
    transform: translateY(-50%);
}

.aim-modal__footer {
    padding: 1em;
}

.aim-modal__footer a {
    margin-bottom: 1.2em;
}

.news-page .date,
.news .date {
    text-transform: uppercase;
    color: #EC166A;
}

.news.news-page h6 {
    margin-top: 0;
}

.news__image {
    position: relative;
    text-align: center;
    vertical-align: middle;
    /* display: table-cell; */
    width: 100%;
}

.news__image-large {
    height: 260px;
}

.news__image-small {
    height: 256px;
    line-height: 256px;
}

.news__image-small ul {
    vertical-align: bottom;
}

.news__categories {
    width: 100%;
    height: 30px;
}

.bottom-categories {
    position: relative !important;
    margin-left: -18px;
}

.news__image .badge {
    right: auto;
    bottom: auto;
    top: -1em;
    left: -1em;
}

@media screen and (max-width: 600px) {
    .news__image {
        position: relative;
        text-align: center;
        vertical-align: bottom;
        display: table-cell;
        width: 100%;
    }

    .news__image-large {
        height: 256px;
    }
}

.news.news-page .news__featured h6 {
    margin-bottom: 0.125em;
}

.news__featured .news__image .badge {
    width: 45%;
}

.news__single__img {
    max-width: 100%;
    text-align: center;
}

.news__single__img img {
    max-height: 150px;
}

.news__single__img.news__single__img_small {
    overflow: hidden;
    max-height: 40vh;
}

.news__single__img img {
    width: auto;
    max-width: 100%;
    max-height: 350px;
}

.news__single .badge-title {
    width: 100%;
    padding: 0.25em 1em;
    font-family: 'Gotham-Black';
    font-size: 0.875em;
}

.news__aside span {
    font-size: 0.825em;
}

.news__socials a {
    display: block;
    width: 35px;
    height: 35px;
    margin: 1em 0;
}

.news__socials a img {
    width: 100%;
}

.job-block .color-card {
    width: 45%;
    margin-bottom: 4em;
    cursor: pointer;
}

.single-job .color-card__header {
    font-size: 2em;
    font-family: 'Gotham-Bold';
}

.single-job .color-card__body {
    background: #fff;
    color: #000;
}

.news__aside span {
    display: block;
}

.aim-block_resources .badge {
    bottom: auto;
    right: auto;
    top: -1em;
    left: -1em;
}

.resources-block {
    background: #fff;
}

.resources-block__aside  .badge-title {
    width: 100%;
    padding: 0.25em 1em;
    font-family: 'Gotham-Black';
    font-size: 0.875em;
}

.resources-block__attachment {
    width: 45px;
}

.resources-block__attachment img {
    width: 100%;
}

.resources-block__card {
    position: relative;
    width: 45%;
    background: #D1D2D4;
    min-height: 5em;
}

.resources-block__card p {
    color: #fff;
}

.event-control .btn {
    -webkit-clip-path: polygon(5% 0%,100% 0,95% 100%,0 100%);
    clip-path: polygon(5% 0%,100% 0,95% 100%,0 100%);
    width: 190px;
}

.events__details {
    width: 50%;
}

.modal-aside .badge-title {
    width: 100%;
    padding: 0.25em 1em;
    font-family: 'Gotham-Black';
    font-size: 0.875em;
}

.modal {
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
    transform: rotateX(-25deg);
    transform-origin: 50% 0;
    will-change: transform,opacity;
    display: block!important;
}

.modal.show {
    opacity: 1;
    visibility: visible;
    transform: none;
}

/*Full calendar*/
#calendar {
    padding: 0.5em;
}

.fc-button {
    background: transparent;
}

.fc-button .fc-icon-right-single-arrow {
    width: auto;
    height: auto;
    border-left: 14px solid #D1D2D4;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.fc-button .fc-icon-left-single-arrow {
    width: auto;
    height: auto;
    border-right: 14px solid #D1D2D4;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}



.fc-toolbar {
    padding: 2em 0.5em;
}

.fc-toolbar .fc-clear {
    display: none;
}

.fc-toolbar .fc-left {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
}

.fc-toolbar .fc-center {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
}

.fc-toolbar .fc-right {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
}

.fc-toolbar .fc-center h2 {
    color: #fff;
    background: #EC166A;
    text-transform: uppercase;
    font-size: 1.8em;
    padding: 0.275em 4em;
    text-align: center;
    display: block;
    -webkit-clip-path: polygon(3% 0%,100% 0,97% 100%,0 100%);
    clip-path: polygon(3% 0%,100% 0,97% 100%,0 100%);
}

.fc-widget-header {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 0.25em 0;
}

.fc-widget-header th {
    border: none;
}
.fc-day {
    background: #F7F7F8;
}

.fc td, .fc th {
    border-width: 0.5em;
}

.fc-unthemed .fc-content, .fc-unthemed .fc-divider, .fc-unthemed .fc-list-heading td, .fc-unthemed .fc-list-view, .fc-unthemed .fc-popover, .fc-unthemed .fc-row, .fc-unthemed tbody, .fc-unthemed td, .fc-unthemed th, .fc-unthemed thead {
    border-color: #fff;
}

.fc-day.fc-other-month {
    background: #D1D2D4;
}

.fc-row .fc-day-number {
    padding: 0.25em 0.5em;
    font-family: 'Gotham-Black';
}

.fc-day-number.fc-other-month {
    font-size: 0;
}

.fc-event-container .fc-day-grid-event {
    border-radius: 0;
    background: #EC166A;
    -webkit-clip-path: polygon(3% 0%,100% 0,97% 100%,0 100%);
    clip-path: polygon(3% 0%,100% 0,97% 100%,0 100%);
    padding: 0.25em 2em;
    text-align: center;
    border: none;
}

.fc-event-container .fc-day-grid-event .fc-title,
.fc-event-container .fc-day-grid-event  .fc-time  {
    color: #fff;
    font-family: 'Gotham-Bold';
}

.fc-day-grid-event .fc-content {
    white-space: normal;
}

.fc-day-number.fc-today {
    color: #EC166A;
}



/*footer*/
footer {
    background: #000;
    padding: 3.5em 0;
}

.contact-form {
    background: #D1D2D4;
    padding: 0.625em 1em;
}

.contact-form select {
    width: 100%;
}

.contacts,
footer .socials {
    margin-bottom: 3.8em;
}

.contacts a,
.contacts span {
    display: block;
    color: #fff;
    position: relative;
    padding-left: 40px;
    font-size: 1em;
    font-family: 'Gotham-Light';
    margin-bottom: 1em;
}

.contacts a:last-of-type {
    margin-bottom: 0;
}

.contacts a::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 24px;
    height: 22px;
}

.contacts a.mail::before {
    background: url('../img/mail.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.contacts a.phone::before {
    background: url('../img/phone.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.footer-nav ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    padding: 0;
}

.footer-nav ul li {
    width: 33%;
    background-clip: content-box;
    list-style: none;
}

.footer-nav ul a {
    text-transform: uppercase;
    color: #fff;
    font-size: 1em;
    display: block;
    padding: 0.35em 0;
    font-family: 'Gotham-Bold';
}

/*mobile*/
.search-btn {
    width: 0px;
    height: 0px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: invert(1);
}

.hamburger {
    font: inherit;
    display: inline-block;
    overflow: visible;
    margin: 0;
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity,filter;
    text-transform: none;
    color: inherit;
    border: 0;
    background-color: transparent;
}

.hamburger-box {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 24px;
}

.hamburger--elastic .hamburger-inner {
    top: 2px;
    transition-timing-function: cubic-bezier(.68,-.55,.265,1.55);
    transition-duration: .275s;
}

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
    position: absolute;
    width: 34px;
    height: 3px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    border-radius: 4px;
    background-color: #fff;
}

.hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -2px;
}

.hamburger--elastic .hamburger-inner:before {
    top: 10px;
    transition: opacity .125s ease .275s;
}

.hamburger-inner:after, .hamburger-inner:before {
    display: block;
    content: "";
}

.hamburger-inner:before {
    top: -10px;
}

.hamburger--elastic .hamburger-inner:after {
    top: 20px;
    transition: transform .275s cubic-bezier(.68,-.55,.265,1.55);
}

.hamburger-inner:after {
    bottom: -10px;
}

.hamburger.is-active:hover, .hamburger:hover {
    opacity: .7;
}

.hamburger--elastic.is-active .hamburger-inner {
    transition-delay: 75ms;
    transform: translate3d(0,10px,0) rotate(135deg);
}

.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner:after, .hamburger.is-active .hamburger-inner:before {
    background-color: #fff;
}

.hamburger--elastic.is-active .hamburger-inner:before {
    transition-delay: 0s;
    opacity: 0;
}

.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner:after, .hamburger.is-active .hamburger-inner:before {
    background-color: #fff;
}

.hamburger--elastic.is-active .hamburger-inner:after {
    transition-delay: 75ms;
    transform: translate3d(0,-20px,0) rotate(-270deg);
}


@media screen and (min-width: 760px) {
    .modal-header {
        display: none;
    }

}

@media screen and (min-width: 992px) {
    body {
        font-size: 14px;
    }
    .about__wrapper {
        padding: 6em 4.25em;
    }
    .aim-modal .modal-dialog {
        max-width: 960px;
    }
    .join-block__card h3 {
        font-size: 1.2em;
    }
    .mobile-nav {
        display: none;
    }

}

@media screen and (min-width: 1200px) {
    .aim-modal .modal-dialog {
        max-width: 1140px;
    }
}

@media screen and (max-width: 1200px) {
    .title_big {
        font-size: 0.8em;
    }
    .title span {
        font-size: 1.4em;
        min-width: 40%;
    }
}

@media screen and (max-width: 992px) {
    body {
        font-size: 14px;
    }
    .container {
        max-width: 95vw;
    }
    .logo img {
        max-width: 13.35em;
    }
    .socials img {
        max-width: 15px;
        /* width: 100%; */
    }
    .top-nav {
        padding: 1em 0 0.565em;
    }
    .title.title_big {
        padding-top: 2em;
    }
    .join-block__card h3 {
        font-size: 1.3em;
    }
    .aim-modal .aim-modal__img {
        max-height: none;
    }
    .aim-modal .aim-modal__img img {
        transform: none;
    }
    .main-nav__primary > li.current:before {
        display: none;
    }
    .main-nav__primary > li {
        position: relative;
        padding: 0.525em 0;
    }
    .main-nav__primary > li.current a {
        color: #E60961;
    }
    .main-nav__secondary {
        display: none;
    }
    .mobile-nav {
        display: block;
    }

    .home-banner__img img {
        width: 200%;
    }
    .title span {
        font-size: 1.4em;
        min-width: 60%;
    }
    .badge {
        width: 50%;
    }
    .badge.badge_small {
        width: 30%;
    }
    .home-banner h1 {
        font-size: 1.45em;
        margin-top: 0;
    }
    .partners {
        overflow: hidden;
    }
    .news h6 {
        margin: 0em 0 0.5em!important;
    }
    .home-banner__text {
        padding: 3em 0;
        padding-right: 50%;
    }
    header .search-form {
        transition: all .2s ease-out;
        opacity: 0;
        visibility: hidden;
        transform: rotateX(-25deg);
        transform-origin: 50% 0;
        will-change: transform,opacity;
        z-index: 100;
        position: absolute;
        top: calc(100% - 10px);
        left: 0;
        width: 100%;
        z-index: 1000;
        background: #000;
        padding: 0.5em 1em;
    }
    .about__wrapper {
        padding: 4em 2.25em;
    }
    header .search-form input:not([type="submit"]){
        margin-right: 20px;
        width: 100%;
    }
    header .search-form.active {
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    header {
        position: relative;
    }
    .main-nav {
        position: absolute;
        top: calc(100% - 10px);
        left: 0;
        width: 100%;
        z-index: 100;
        background: #000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.1s ease;
    }
    .main-nav.menu-active {
        opacity: 1;
        visibility: visible;
    }
    .main-nav .main-nav__primary {
        border-top: 0;
    }
    .fc-row .fc-day-number,
    .fc-day-grid-event .fc-content {
        font-size: 0.725em;
    }
    .opportunity-block .color-card__body {
        padding: 0.5em!important;
    }
    .opportunity-block .color-card,
    .job-block .color-card {
        width: 48%;
        margin-bottom: 3em;
    }
    .fc-event-container .fc-day-grid-event {
        padding: 0.25em 1em;
    }
    .aim-block .badge-title.badge-title_small {
        width: 70%;
    }
    .opportunities .color-card {
        width: 48%;
        margin-bottom: 3em;
    }
    .modal-dialog {
        max-width: 85vw;
    }
    .login-form .form-group label  {
        font-size: 1.2em;
        width: 100%;
    }
    .login-form .form-group input,
    .login-form .form-group textarea,
    .login-form .form-group .ngx-datepicker-input {
        width: 100%;
    }
    select {
        width: 100%;
    }
    ng-select .opportunity-select-values {
        margin-left: 20px !important;
    }

}

@media screen and (max-width: 600px) {
    .top-nav .logo {
        width: 100%;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
        margin-top: 2em;
    }
    .top-nav .socials {
        -webkit-order: 0;
        -ms-flex-order: 0;
        order: 0;
    }
    .top-nav__user-board {
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }
    .logo img {
        max-width: 16.35em;
    }
    .socials img {
        max-width: 20px;
    }
    .search-btn {
        width: 26px;
        height: 26px;
    }
    header a {
        font-size: 0.875em;
    }
    header .h1 {
        font-size: 0.875em;
    }
    .main-nav__primary > li {
        text-align: center;
    }
    .home-banner__img {
        display: none;
    }
    .search-form {
        padding: 0.5em 0em;
    }
    .home-banner__text {
        -webkit-clip-path: polygon(0% 0%,100% 0,100% 100%,0 100%);
        clip-path: polygon(0% 0%,100% 0,100% 100%,0 100%);
        padding-right: 10%;
    }
    .play-button .fa-play-circle {
        padding-bottom: 30px;
    }
    .about__wrapper {
        padding: 3em 0.25em;
    }
    .members__description {
        padding: 1.5em;
    }
    .slick-prev {
        left: -5px;
    }
    .slick-next {
        right: -5px;
    }
    .title::before, .title::after {
        display: none;
    }
    .events__card__description h6 {
        text-align: center;
    }
    .opportunities .color-card {
        width: 100%;
    }
    .follow-card {
        width: 100%;
        margin-bottom: 2em;
    }
    .contacts, footer .socials {
        margin-bottom: 1.8em;
    }
    footer {
        padding: 1.5em 0;
    }
    footer .socials img {
        max-width: 26px;
    }
    .footer-nav {
        display: none;
    }
    .login-form .form-group label  {
        font-size: 1.2em;
        width: 100%;
    }
    .login-form .form-group input {
        width: 100%;
    }
    .mission__title {
        font-size: 1.8em;
        padding: 1.25em 0;
    }
    .mission__title__item {
        font-size: 0.725em;
    }
    .news__socials {
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-align-content: stretch;
        -ms-flex-line-pack: stretch;
        align-content: stretch;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .news__single h3 {
        text-align: center;
    }
    .aim-block__card__brands {
        width: 40%;
    }
    .aim-block__card img {
        margin-bottom: 20px;
    }
    .event-control > a {
        display: none;
    }
    .event-control .btn {
        font-size: 0.875em;
    }
    .aim-block__img {
        padding: 0;
    }
    .aim-block_resources .badge {
        width: 50%;
    }
    .aim-block__img img {
        position: relative;
        /* width: 100%; */
        transform: none;
        left: 0;
    }
    .aim-block__wrapper {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .events__details {
        width: 100%;
        margin-bottom: 10px;
    }
    .aim-block__wrapper .col-md-9 {
        padding: 0;
    }
    .modal-dialog {
        max-width: 95vw;
    }
    .search-form .form-group {
        width: 100%;
        margin: 0 0px 20px 0;
    }
    .resources-block .badge-title.badge-title_small {
        width: 60%;
    }

    .resources-block__card {
        width: 100%;
    }

    .opportunity-block .color-card {
        width: 100%;
    }
    .black-block .btn {
        white-space: normal;
    }
    .apply-btn {
        margin-bottom: 20px;
    }
    .vacancies__header .badge-title.badge-title_small {
        width: 60%;
    }
    .job-block .color-card {
        width: 100%;
        margin-bottom: 3em;
    }
    .about__wrapper .badge-title {
        width: 70%;
    }
    .contact-bar a {
        margin-bottom: 10px;
    }
    .modal-body .badge-title.badge-title_small {
        width: 70%;
    }
}

a {
    cursor: pointer;
    /* color: #EC166A!important; */
}

p > a {
    color: #EC166A!important;
}

h1 > a,
h2 > a,
h3 > a,
h4 > a,
h5 > a,
h6 > a,
b > a,
strong > a {
    color: #EC166A!important;
}

.img-big {
    max-width: 100%;
    max-height: 260px;
} 
.img-small {
    max-width: 100%;
    max-height: 256px;
} 

li:focus{
    outline: none !important;
}

.btn {
    border-radius: 0 !important;
}

.badge {
    border-radius: 0 !important;
}

.members__img a:hover {
    background: rgba(45,165,224,.8);
}
a:hover{
    text-decoration: none !important;
    color: auto !important;
}

.members__img__wrapper:hover {
    color: #ffffff;
}

.staff-image {
    width: 100%;
}

.ul-categories{
    position: absolute;
    top: 0;
    right: 37px;
    width: 100%;
    text-align: left;
}

.ul-categories-bottom{
    position: absolute;
    bottom: -15px;
    right: 0;
    text-align: right;
    width: 100%;
}

.li-categories{
    position: relative;
}

.li-categories-link span:hover {
    cursor: pointer;
    opacity: 0.9;
}

.download-button{
    width: 33px !important; 
    margin-right: 24px !important;
}

.background-red {
    background: url("../img/background2.jpg");
    background-size: contain;
}

.background-blue {
    background: url("../img/background1.jpg");
    background-size: contain;
}

.background-pink {
    background: url("../img/background3.jpg");
    background-size: contain;
}

.text-red{
    color: red;
}

.cursor {
    cursor: pointer;
}

.arrow {
    cursor: default !important;
}

/* Opportunity Application */
.opportunity-description h6 {
    text-transform: none !important;
}

.opportunity-description label h6 {
    font-size: 0.6em;
}

.tandcs {
    width: 70% !important;
}

.box {
    border: 1px solid #d8d8d8;
    padding: 20px;
}

.trash {
    width: 24px !important;
    margin-left: 10px;
}

.opportunity-delete {
    padding-top: 5px;
}

.trash:hover {
    cursor: pointer;
    opacity: 0.5;
}

.response-thumbs {
    font-size: 26px;
    color: #bfbfbf;
}

.response-thumbs i {
    margin-right: 8px;
    cursor: pointer;
}

.response-thumbs .green {
    color: #70f593 !important;
}

.response-thumbs .red {
    color: #ff7979 !important;
}

.response-thumbs i:hover {
    opacity: 0.8;
}

.block {
    display: block;
}

@media screen and (max-width: 992px) {
    .login-form p {
        width: 100%;
    }
}

/* Join Wizard */
.wizard-steps h5:hover {
    cursor: pointer;
    color: #EC166A;
}

.wizard-checkboxes {
    margin-left: 30%;
}

.checkbox-wizard {
    width: 5% !important;
}

.tooltip-icon {
    width: 18px;
    margin-left: -15px;
}

.tooltip-icon-label {
    margin-left: 0px;
}

.recaptcha > div {
    margin: 0 auto;
}

.required-field-notice {
    margin-top: -20px;
}