/* SF Pro Display Regular */
@font-face {
    font-family: 'SFProDisplayRegular';
    src: url('../font/sf-pro-display/SFPRODISPLAYREGULAR.OTF') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* SF Pro Display Black Italic */
@font-face {
    font-family: 'SFProDisplayBlackItalic';
    src: url('../font/sf-pro-display/SFPRODISPLAYBLACKITALIC.OTF') format('opentype');
    font-weight: normal;
    font-style: italic;
}

/* SF Pro Display Bold */
@font-face {
    font-family: 'SFProDisplayBold';
    src: url('../font/sf-pro-display/SFPRODISPLAYBOLD.OTF') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* SF Pro Display Heavy Italic */
@font-face {
    font-family: 'SFProDisplayHeavyItalic';
    src: url('../font/sf-pro-display/SFPRODISPLAYHEAVYITALIC.OTF') format('opentype');
    font-weight: normal;
    font-style: italic;
}

/* SF Pro Display Medium */
@font-face {
    font-family: 'SFProDisplayMedium';
    src: url('../font/sf-pro-display/SFPRODISPLAYMEDIUM.OTF') format('opentype');
    font-weight: 400;
}

/* SF Pro Display Light */
@font-face {
    font-family: 'SFProDisplayLight';
    src: url('../font/sf-pro-display/SF-Pro-Display-Thin.otf') format('opentype');
    font-weight: 300;
}

/* Example of usage */
body {
    font-family: 'SFProDisplayThin', sans-serif;
    font-size: 1rem;
}

h1 {
    font-family: 'SFProDisplayBold', sans-serif;
    font-size: 3rem;
}

h2 {
    font-size: 1.6rem;
    font-weight: 700;
}

h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

.text-8 {
    font-size: 0.8em;
}

.text-9 {
    font-size: 0.9em;
}

.text-12 {
    font-size: 1.2em;
}
.text-18 {
    font-size: 1.8em;
}
.text-20 {
    font-size: 2em;
}

.nav-container {
    height: 131px;
    padding: 40px;
    background: linear-gradient(180deg, rgba(31, 16, 63, 0.8) 0%, rgba(31, 16, 63, 0) 100%);
}

.subh1 {
    font-family: 'SFProDisplayRegular', sans-serif;
    font-weight: 700;
    font-size:0.8em;
}

.question {
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
}

.answer {
    font-family: 'SFProDisplayMedium', sans-serif;
    /* Fallback to a generic sans-serif font */
    font-size: 2rem;
    font-weight: 700;
    line-height: 42.96px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.answer-small {
    font-family: 'SFProDisplayMedium', sans-serif;
    /* Fallback to a generic sans-serif font */
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 42.96px;
    margin-bottom: 20px;
}

.subanswer {
    font-family: 'SFProDisplayThin', sans-serif;
    /* Fallback to a generic sans-serif font */
    color: white;
    font-size: 1.2rem;
    line-height: normal;
    font-weight: 400;
    margin-top: 10px;
}

.member-name {
    font-size: 1.5rem;
    font-weight: bold;
}

.member-age {
    font-size: 1.2rem;
}

.member-position {
    color: white;
}

.member-description {
    font-family: 'SFProDisplayRegular', sans-serif;
    /* Fallback to a generic sans-serif font */
    color: white;
    font-size: 1.2rem;
}

.member-description-wrapper {
    margin-top: 30px;
}

.member-image {
    border-radius: 15px;
    width: 100%;
    object-fit: contain;
}

.member-text {
    padding: 10px;
    margin-bottom: 20px;
}

.white-text {
    color: white;
}

.white-bg {
    background-color: white;
}

.purple-text {
    color: #41267A;
}

.purple-bg {
    background-color: #41267A;
    color: #ffffff;
}

.orange-text {
    color: #EA542D;
}

p a {
    color: #EA542D;
}

.orange-bg {
    background-color: #EA542D !important;
}

.btn-orange{
    background-color: #EA542D !important;
    color: white !important;
}

.thin {
    font-family: 'SFProDisplayLight', sans-serif;
    font-weight: 300;
}

.purple-gradient {
    background: rgb(107, 51, 255);
    background: linear-gradient(0deg, #1F103F 0%, #41267A 100%);
}

.development-step-title {
    font-size: 20pt;
    color: blue;
    font-weight: bold;
}

.development-step-description {
    font-size: 15pt;
    margin-top: 20px;
}

.thing-name {
    font-size: 14pt;
    font-weight: bold;
}

.thing-description {
    font-family: 'SFProDisplayRegular', sans-serif;
    /* Fallback to a generic sans-serif font */
    color: white;
    font-size: 1.2rem;
}

.thing-image {
    border-radius: 15px;
    width: 124px;
    height: 124px;

}

.thing-text {
    padding: 10px;
    margin-bottom: 20px;
}

.thing-description-wrapper {
    margin-top: 30px;
}

.header-baia-mare {
    background-image: url("/img/baia-mare.jpg");
    background-color: #41267A;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 70vh;
}

@media (min-aspect-ratio: 1/1) {
    .header-baia-mare {
        min-height: 580px;
    }
}


.header-inner {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 60vh;
}

@media (min-aspect-ratio: 1/1) {
    .header-inner {
        min-height: 400px;
    }
}

.header-inner .nav-container {
    background: none;
    background-color: #41267A;
    height: 113px;
    padding: 34px 40px 0px 40px;
}

.header-inner h1 {
    font-size: 2.4em;
    padding-right: 30px;
}

.main-logo {
    height: 43px;
}

.div-campie {
    background-image: url("/img/campie.jpg");
    background-color: lightgray;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.in-puncte {
    font-size: 2rem;
    font-family: 'SFProDisplayMedium', sans-serif;
    /* Fallback to a generic sans-serif font */
}

.submit-button {
    font-family: 'SFProDisplayMedium', sans-serif;
    background: #000;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    color: white;
    text-transform: uppercase;
    border: none;
    width: 186px;
    height: 64px;
    flex-shrink: 0;
}

.social-button {
    display: inline-block;
    height: 30px;
    width: 30px;
    background-size: contain;
    background-repeat: no-repeat;
}

.fb-button {
    background-image: url("/img/social-fb.png");
}

.x-button {
    background-image: url("/img/social-x.png");
}

.insta-button {
    background-image: url("/img/social-insta.png");
}

.ln-button {
    background-image: url("/img/social-ln.png");
}

.yt-button {
    background-image: url("/img/social-yt.png");
}

.tiktok-button {
    background-image: url("/img/social-tiktok.png");
}

.v9-image {
    height: 507px;
    margin-top: -170px;
}

.lower-bg {
    height: 130px;
    margin-top: -287px
}

.purple-bg-half {
    background: linear-gradient(to right, #41267A 60%, transparent 60%);
    /* Set your background color and make the right half transparent */
}

.puncte-image-9 {
    height: 389px;
}

.puncte-image-in {
    padding-top: 130px;
    padding-right: 30px;
}

.puncte-image-puncte {
    padding-top: 130px;
    padding-left: 30px;
}

.verticala-9-fade {
    height: 100px;
    margin-bottom: 80px;
}

.footer-logo-wrapper {
    display: flex;
    justify-content: start;
}

.footer-social-wrapper {
    display: flex;
    justify-content: end;
}

.first-question {
    margin-top: 60px;
}

.first-purple-half {
    padding: 20px;
    margin-top: -70px;
}

@media (max-width: 1399px) {
    .v9-image {
        height: 455px;
        margin-top: -154px;
    }

    .lower-bg {
        height: 130px;
        margin-top: -294px
    }

    .footer-logo-wrapper {
        display: flex;
        justify-content: center;
        margin-top: 0px;
    }

    .footer-social-wrapper {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 1199px) {
    .v9-image {
        height: 404px;
        margin-top: -139px;
    }

    .lower-bg {
        height: 130px;
        margin-top: -348px
    }

    .footer-logo-wrapper {
        display: flex;
        justify-content: center;
        margin-top: 0px;
    }

    .footer-social-wrapper {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 991px) {
    .v9-image {
        height: 352px;
        margin-top: -124px;
    }

    .lower-bg {
        height: 130px;
        margin-top: -383px
    }

    .opinion-card {
        margin-top: 10px !important;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .v9-image {
        height: 249px;
        margin-top: -93px;
    }

    .lower-bg {
        height: 213px;
        margin-top: -522px;
    }

    .puncte-image-9 {
        height: auto;
        max-width: 80%;
    }

    .puncte-image-in {
        padding-top: 130px;
        padding-right: 30px;
    }

    .puncte-image-puncte {
        padding-top: 130px;
        padding-left: 0px;
    }

    .verticala-9-fade {
        height: auto;
        margin-bottom: 80px;
        width: 90%;
    }

    .footer-logo-wrapper {
        display: flex;
        justify-content: center;
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .v9-image {
        height: 163px;
        margin-top: -68px;
        margin-right: 0px;
    }

    .lower-bg {
        height: 130px;
        margin-top: -341px;
    }

    .first-question {
        margin-top: 50px;
        margin-bottom: -7px;
    }

    .puncte-image-in {
        padding-top: 70px;
        padding-right: 30px;
    }

    .puncte-image-puncte {
        padding-top: 70px;
        padding-left: 0px;
    }

    .main-logo {
        content: url('../img/v9-logo.png');
    }

    .first-purple-half {
        padding: 20px;
        margin-top: -50px;
    }
}

@media (max-width: 393px) {
    .v9-image {
        height: 144px;
        margin-top: -62px;
        margin-right: 0px;
    }

    .lower-bg {
        height: 200px;
        margin-top: -511px;
    }

    .first-question {
        margin-top: 70px;
    }
}

@media (max-width: 346px) {
    .v9-image {
        height: 125px;
        margin-top: -57px;
        margin-right: 0px;
    }

    .lower-bg {
        height: 212px;
        margin-top: -535px;
    }
}

@media (max-width: 323px) {
    .v9-image {
        height: 122px;
        margin-top: -56px;
        margin-right: 0px;
    }

    .lower-bg {
        height: 253px;
        margin-top: -569px;
    }
}

.mov {
    color: #41267a;
}

.bg-mov {
    background-color: #41267a;
}

.portocaliu {
    color: #EA542D;
}

#sidenav-1 .sidenav-link {
    color: #ffffff;
}

#sidenav-1 .sidenav-link:hover {
    color: #ffffff;
}

#sidenav-1 .sidenav-collapse .sidenav-link {
    padding-left: 20px !important;
}

#sidenav-1 .sidenav-item {
    border-bottom: 1px solid #999999;
}

#sidenav-1 .sidenav-item a {
    font-weight: 400;
}

#sidenav-1 .sidenav-item .sidenav-item {
    border-bottom: none;
}

#sidenav-1 .sidenav-item .sidenav-item a {
    text-transform: none;
    font-weight: 400;
}

#sidenav-1 .sidenav-link i {
    color: #ffffff !important;
}



.page-content {
    margin-top: 58px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.sign-in-form {
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
}

.file-upload-wrapper {
    border: 1px solid #eee;
}

.loading {
    position: absolute;
    background-color: #000000;
    opacity: 0.5;
    color: #ffffff;
    z-index: 1000000;
    display: none;
}


.image-dropped-div {
    position: relative;
    width: 120px;
    height: 140px;
    text-align: center;
    border: 1px solid #bdbdbd;
    border-radius: 3px;
    margin-right: 5px;
    margin-bottom: 5px;
    float: left;
}

.image-dropped {
    max-width: 95%;
    max-height: 95%;
    margin-top: 2.5%
}

.image-dropped-wrapper {
    height: 75%;
}

.visualize-delete-dropped-div {
    height: 25%;
    border-top: 1px solid #bdbdbd;
    padding-top: 3px;
}

.visualize-dropped-div {
    width: 33%;
    float: left;
}

.delete-dropped-div {
    width: 33%;
    float: left;
}

.drag-dropped-div {
    width: 33%;
    float: left;
}

.sortable-list {
    flex-wrap: wrap;
}


.cookieconsent-box {
    text-align: center;
    color: #ffffff;
}


.animated-icon {
    width: 30px;
    height: 20px;
    position: relative;
    margin: 0px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.animated-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    background-color: #f4f4f4 !important;
}

.animated-icon span {
    background: #2d7ef7;
}


.animated-icon span:nth-child(1) {
    top: 0px;
}

.animated-icon span:nth-child(2) {
    top: 10px;
}

.animated-icon span:nth-child(3) {
    top: 20px;
}

.animated-icon.open span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.animated-icon.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.animated-icon.open span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.hamburger {
    position: relative;
    color: #ffffff;
    z-index: 20;
}

.hamburger-link-wrapper {
    text-align: center;
}

.hamburger-link {
    color: #ffffff;
    font-size: 1.6em;
}

.hr-custom {
    margin-top: 7px;
    margin-bottom: 7px;
    height: 2px !important;
}

#navbarToggleMenu {
    position: absolute;
    width: 100%;
    z-index: 10;
}

.accordion-button {
    font-size: 0.8em;
}

.accordion-button::after {
    background: none;
    content: "\2b";
    font-family: FontAwesome;
    color: #EA542D;
    font-weight: bold;
}

.accordion-button:not(.collapsed)::after {
    background: none;
    content: "\f068";
    font-family: FontAwesome;
    color: #EA542D;
    font-weight: bold;
}

.form-outline {
    margin-bottom: 20px;
}

.votat {
    margin-top: 10px;
    font-size: 0.8em;
}

.social-share-buttons .btn {
    margin-right: 5px;
    color: white;
    text-decoration: none;
}

.btn-facebook, .btn-facebook:hover {
    background-color: #3b5998;
}

.btn-twitter, .btn-twitter:hover {
    background-color: #1da1f2;
}

.copy-button {
    border: none;
    background: none;
    cursor: pointer;
}

.copy-button .far {
    color: #ffffff; 
}

.ca-co{
    height: 405px;
    width: 5% !important;
    opacity: 1 !important;
}

.ca-co-pi{
    position:absolute;
    bottom:10px;
    /*background-color: #41267a;*/
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 20px;
}

@media (max-width: 1399px) {
    .ca-co{
        height: 348px;
        width: 6% !important;
    }
}

@media (max-width: 1199px) {
    .ca-co{
        height: 292px;
        width: 9% !important;
    }
}

@media (max-width: 991px) {
    .ca-co{
        height: 442px;
    }
}

@media (max-width: 767px) {
    .ca-co{
        height: 667px;
        width: 13% !important;
    }
}

@media (max-width: 575px) {
    .ca-co{
        height: 113vw;
        width: 18% !important;
    }
}

@media (max-width: 429px) {
    .ca-co{
        height: 110vw;
        width: 18% !important;
    }
}

@media (max-width: 325px) {
    .ca-co{
        height: 107vw;
    }
}

@media (max-width: 270px) {
    .ca-co{
        height: 96vw;
    }
}

@media (max-width: 184px) {
    .ca-co{
        height: 97vw;
    }
}

.carousel-control-next-icon, .carousel-control-prev-icon{
    color: #EA542D;
}

.btn-orange{
    
}

.separator {
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.separator:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    border-top: 1px solid #999999;
    width: 100%;
    transform: translateY(-50%);
}

.separator .text {
    position: relative;
    background-color: #ffffff;
    padding: 0px 10px;
    z-index: 2;
}

a.page-link{
    color:#ffffff;
}