@import url('https://fonts.googleapis.com/css2?family=Architects+Daughter&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root{
    --secosol-white: #f8f8f8;
    --secosol-orange: #f68c30;
    --secosol-green: #4d5b46;
    --filter: rgba(0, 0, 0, 0.55);
}

html,
body {
    background: var(--secosol-white);
    font-family: 'Ubuntu', sans-serif;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    font-size: 17px
}
footer p:first-of-type{
    color: #ac5910;
}
footer .jetro-logo {
    max-height: 4.25rem;
    margin-top: -0.125rem;
    margin-bottom: -0.125rem;
}
.nav-link{
    text-transform: capitalize!important;
    font-weight: bold!important;
    color: var(--secosol-green)!important;
    font-size: 1.25em;
    margin-right: 1rem;
}

.main {
    background: var(--secosol-white);
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 66px;
    flex: 1 100%;
    min-height: calc(100svh - 4rem);
}

.hero-text {
    font-family: 'DM Serif Display', serif;
    max-width: 600px;
    font-size: 30px;
}

.content {
    height: 100%;
    background-image: url(../img/bg-texture.png);
    background-attachment: fixed;
}


.navbar {
    background: #FFF;
    padding: 1rem 0;
    transition: all 250ms ease-in-out;
}

.navbar i {
    vertical-align: middle;
    border-style: none;
    color: #138CB6;
}

.navbar.scrolled {
    background-color: #222;
    border-bottom: 0;
    box-shadow: none;
    transition: all 250ms ease-in-out;
    z-index: 16;
    box-shadow: inset 0 3px 0 0 #89A25F;
}

.navbar.scrolled .navbar-nav > a,
.navbar.scrolled .icons_networks i,
.navbar.scrolled .nav-link {
    transition: color 150ms ease-in-out;
    color: var(--secosol-white)!important;
}

.navbar.scrolled .navbar-nav > a:hover,
.navbar.scrolled .icons_networks:hover i {
    color: #89A25F;
}

/* redesign */

    /* promo bar */

.promo-bar{
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: var(--secosol-green);
    padding: 2% 20%;
}
.promo-bar a{
    background-color: var(--secosol-orange);
    color: var(--secosol-white);
    border-radius: 50px;
    padding: 1rem;
    font-size: 1.25em;
    min-width: 15%;
    text-align: center;
}

@media (max-width: 768px) {
    .promo-bar{
        flex-direction: column;
        padding: 10% 0;
        gap: 2em;
    }
    .promo-bar a{
        width: 70%;
    }
    .not-alone + .promo-bar{
        background-color: var(--secosol-orange);
        padding-top: 0;
        padding-bottom: 10%;
    }
    .not-alone + .promo-bar a{
        background-color: var(--secosol-white);
        color: var(--secosol-green);
    }
}

    /* end promo bar */

    /* home */
.hero{
    width: 100%;
    min-height: calc(100svh - 4rem);
    background-image: url('/static/img/hero_hands.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero .text{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    max-height: 70svh;
    padding: 5%;
    border-radius: 30px;
    margin-left: 10%;
    aspect-ratio: 1;
    background-color: #00000060;
}
.hero .text h1{
    font-size: 3rem;
}
.hero .text .more{
    color: var(--secosol-orange);
    border-radius: 100px;
    position: absolute;
    padding: 1em;
    background-color: var(--secosol-white);
    border: 2px solid var(--secosol-orange);
    transition: transform 200ms linear;
    bottom: -5%;
    right: 5%;
}
a{
    transition: transform 100ms linear, color 100ms linear!important;
}
a:hover{
    text-decoration: none;
    transform: scale(0.95);
}
.why{
    padding: 10% 5%;
    display: flex;
    gap: 5%;
    align-items: center;
    justify-content: center;
    background-image: url('/static/img/logos/plant.svg');
    background-repeat: no-repeat;
    background-position: -15% center;
    background-size: 40%;
}
.why .text{
    width: 50%;
}
.why img{
    max-height: 350px;
    border-radius: 15px;
}
.partner{
    background-color: #4c8244;
    display: flex;
    color: var(--secosol-white);
}
.partner .imgs{
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    background-color: var(--secosol-white);
    padding: 0;
    flex-direction: column;
}
.partner .imgs img{
    width: 100%;
}
.partner .imgs .banner{
    padding: 5% 10%;
}
.partner .imgs a{
    background-color: var(--secosol-orange);
    padding: 1em;
    border-radius: 100px;
    color: var(--secosol-white);
    margin: 3%;
}
.partner .text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
}
.not-alone{
    min-height: 80svh;
    background-image: linear-gradient(0deg, var(--secosol-orange), transparent 40%), url('/static/img/not_alone.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--secosol-white);
    display: flex;
    justify-content: center;
}
.not-alone .text{
    text-align: center;
    margin-top: auto;
    margin-bottom: 5%;
}
.not-alone img{
    display: none;
}
.history{
    color: var(--secosol-green);
    padding: 5%;
    background-image: url('/static/img/logos/plant.svg');
    background-repeat: no-repeat;
    background-position: right -15% top 10%;
    background-size: 40%;
}
.team-title{
    margin-top: 5%;
    text-align: center;
    color: var(--secosol-green);
}
.team{
    font-family: "Roboto", sans-serif;
    padding: 0 10%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 5%;
    position: relative;
    color: var(--secosol-green);
    margin-bottom: 5%;
}
.team > h1{
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
}
.team .member{
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}
.team .member:nth-child(odd){
    margin-right: 2rem;
}
.team .title{
    background-color: var(--secosol-orange);
    border-radius: 50px;
    padding: 5px 10px;
    font-size: .75rem;
    color: var(--secosol-white);
    width: max-content; 
    text-align: center;
}
.team > a:hover{
    transform: none;
}
.team .member .text{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.team .member img{
    object-fit: cover;
    height: 15rem;
    border-radius: 2rem;
    aspect-ratio: 1 / 1;
}
.team .modal-content{
    border-radius: 1rem;
}
.team .modal-body{
    padding: 2rem;
    display: flex;
    flex-direction: column;
}
.team .modal .title{
    margin-bottom: 1rem;
    width: max-content;
}
.team .modal button{
    background-color: transparent;
    border: none;
    position: absolute;
    z-index: 99;
    right: -15px;
    top: -10px;
    transform: scale(1.1);
}
.team .modal p{
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .hero .text{
        background-color: #0000006b;
        max-height: none;
        margin-left: 0;
        aspect-ratio: auto;
        height: calc(100svh - 4rem);
        width: 100%;
        border-radius: 0;
    }
    .hero .text .more{
        transform: translateX(50%);
        bottom: 2rem;
        right: 50%;
    }
    .why{
        flex-direction: column;
        max-height: 100svh;
        background-image: none;
    }
    .why .text{
        width: 70vw;
    }
    .partner{
        flex-direction: column-reverse;
    }
    .partner .text{
        padding: 10%;
    }
    .partner .imgs .banner{
        background-color: var(--secosol-white);
    }
    .partner .imgs{
        background-color: transparent;
    }
    .partner .imgs a{
        margin: 10%;
    }
    .not-alone{
        background-image: none;
        background-color: var(--secosol-orange);
        flex-direction: column;
        justify-content: space-evenly;
    }
    .not-alone .text{
        margin: 0;
        padding: 0 10%;
    }
    .not-alone img{
        display: block;
        width: 100%;
    }
    .team{
        padding: 5%;
    }
    .team .member .text p{
        display: none;
    }
    .history{
        background-image: none;
    }
    .navbar-brand-img img{
        width: 100%;
    }
}
@media (max-width: 1200px) {
    .team .member{
        flex-direction: column;
    }
    .team .member img{
        width: 40vw;
        max-width: 300px;
        height: auto;
    } 
    
}


    /* end home */

    /* about */
.mission{
    padding: 10%;
    margin-bottom: 3%;
    display: flex;
    align-items: center;
    background-image: linear-gradient(var(--filter), var(--filter)), url('/static/img/mission.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: var(--secosol-white);
}
.vision{
    padding: 10%;
    display: flex;
    align-items: center;
    background-image: linear-gradient(var(--filter), var(--filter)), url('/static/img/vision.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: var(--secosol-white);
}

    /* end about */

/* end redesign */

.icons_networks i {
    color: #000000;
}

.fixed-top {
    z-index: 11;
}

#dashboard {
    z-index: 20;
}

.top-header {
    color: #138CB6;
    background: #F4F6F5;
}

.top-header .logo {
    background-color: #41E8BC;
}

.partner-box {
    text-align: center;
    background-color: #FFFDED;
    padding: 20px;
    height: 350px;
    -webkit-box-shadow: 7px 7px 10px 3px rgba(0,0,0,0.34); 
    box-shadow: 7px 7px 10px 3px rgba(0,0,0,0.34);
}
.together-box {
    padding: 20px;
    height: 150px;
    margin-top: 91px;
    background-color: #FFFDED;
    -webkit-box-shadow: 7px 7px 10px 3px rgba(0,0,0,0.34); 
    box-shadow: 7px 7px 10px 3px rgba(0,0,0,0.34);
    font-weight: bold;
    color: #414042;
}

.together-box h3 {
    font-weight: bold;
    color: #414042;
}
.btn-general {
    border: none;
    background-color: #F05935;
    padding: 5px 25px 5px 25px;
    border-radius: 25px;
    color: white;
}


.attached-image {
    position: absolute;
    margin-top: -109.2167px;
    left: 50%;
    transform: translateX(-50%);
}

.attached-image img {
    width: 200px;
}

.logo-footer div svg:nth-child(1) {
    height: 100px;
    width: auto;
}

.title-box div {
    background-color: #FFFDED;
    padding: 20px;
    height: 150px;
    -webkit-box-shadow: 7px 7px 10px 3px rgba(0,0,0,0.34); 
    box-shadow: 4px 4px 10px 3px rgba(0,0,0,0.34);
}

.title-box h2 {
    font-weight: bold;
    font-size: 55px;
}

.team-box {
    background-color: #FFFDED;
    padding: 20px;
    height: auto;
    -webkit-box-shadow: 7px 7px 10px 3px rgba(0,0,0,0.34); 
    box-shadow: 7px 7px 10px 3px rgba(0,0,0,0.34);
}

.team-box p {
    font-size: 25px;
}

.updates {
    background-image: url(../img/whitehands.png)
}

.updates {
    color: #138CB6;
}

.btn-green {
    background: #41E8BC;
}

.breadcrumb {
    background: url(../img/bgheader.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 0;
    color: #FFF;
    background-attachment: fixed;
    position: relative;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, .5) inset;
    text-align: center;
    display: flex;
    margin: 0;
    height: 300px;
}

.title h1 {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.title h1::before,
.title h1::after {
    content: "";
    display: inline-block;
    height: 5px;
    width: 50px;
    border-radius: 6px;
    background-color: #f8d63b;
    transform: translate(-0%, -200%);
}

.title h1::before {
    margin-right: 10px;
}

.title h1::after {
    margin-left: 10pxe
}

.members,
.resources,
.help,
.card-box {
    position: relative;
    margin: 2rem 0;
}

.core-div{
    display: flex;
    flex-wrap: nowrap;
}
.navbar-brand-img{
    position: relative;
}
.navbar-brand-img > img {
    max-height: 3rem;
    max-width: 45vw;
}
.navbar-brand span{
    color: rgba(128, 128, 128, 0.7);
    font-style: italic;
    font-size: 1vw;
    max-height: 15px;
    position: absolute;
    bottom: calc(73 / 291 * 100%);
    transform: translateY(-30%) translateX(10px);
}

.slideshow .carousel-inner .container {
    position: relative;
}

.slideshow .carousel-inner img {
    min-height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
}

.slideshow .carousel-inner .carousel-caption {
    width: 70%;
    left: 50%;
    top: 40%;
    right: initial;
    transform: translate(-50%, -40%);
    text-align: left;
}

.slideshow .carousel-inner .carousel-caption p > a {
    border: solid 1px #41E8BC;
    padding: 10px;
    border-radius: 3px;
    color: #FFF;
    transition: all 250ms ease-in-out;
}

.slideshow .carousel-inner .carousel-caption p > a:hover {
    text-decoration: none;
    color: var(--primary);
    transform: translateY(-5px);
    background-color: #41E8BC;
    color: #FFF;
}

.slideshow .carousel-inner .carousel-caption h3,
.slideshow .carousel-inner .carousel-caption h2,
.slideshow .carousel-inner .carousel-caption h1 {
    font-size: 1rem;
}

.slideshow .carousel-inner .carousel-caption p {
    margin-top: 1rem;
    display: flex;
}

.btn-news {
    border-radius: 0 0 0 12px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    padding: 1rem;
    font-family: 'Exo 2', sans-serif;
    box-shadow: 0 3px 0 0 rgba(65, 232, 188, 1) inset;
    display: flex;
    align-items: center;
    background: #303030;
    background: linear-gradient(to bottom, #303030 1%, #202020 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#303030', endColorstr='#202020', GradientType=0);
    color: white;
    border: 0;
}

.btn-news i {
    -webkit-animation: btn_news_rotate ease-in-out 900ms infinite alternate;
    animation: btn_news_rotate ease-in-out 900ms infinite alternate;
}

.btn-news:focus,
.btn-news:hover {
    box-shadow: 0 0 0 0.2rem rgba(65, 232, 188, .25), 0 3px 0 0 rgba(65, 232, 188, 1) inset;
    color: #41E8BC;
}

@-webkit-keyframes btn_news_rotate {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-3px);
    }
}

@keyframes btn_news_rotate {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-3px);
    }
}

.btn-green-bottom {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    padding: 1rem;
    font-family: 'Exo 2', sans-serif;
    border: 2px solid #41E8BC;
    transition: all 250ms ease !important;
}

.btn-green-bottom:hover {
    background-color: #41E8BC;
    color: white;
}

.btn-green-bottom:focus {
    box-shadow: 0 0 0 0.2rem rgba(65, 232, 188, .25);
}

.about,
.card-box {
    background: #fff;
    border-radius: 0 0 4px 4px;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, .13), 1px 2px 2px rgba(0, 0, 0, .1), -1px -2px 2px rgba(0, 0, 0, .05);
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-all;
    word-break: break-word;
    -ms-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.about {
    border-radius: 0;
    box-shadow: none;
}

.members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 1rem;
}

.members .member_box {
    position: relative;
    display: block;
    border: 1px solid #ecedf0;
    padding: 20px 15px 50px;
    color: #1a1a1a;
    font-size: 15px;
    line-height: 1.4;
    transition: all .3s ease 0s;
    background: white;
    align-self: flex-start;
}

.members .member_box img {
    border-radius: 50%;
    max-width: 150px;
    max-height: 150px;
}

.members .member_box:hover {
    border-color: transparent;
    box-shadow: 0 5px 10px 5px rgba(155, 155, 155, .15);
    color: #1a1a1a;
    text-decoration: none;
    cursor: pointer;
}

.members .member_box .team-member__button {
    position: absolute;
    left: 50%;
    bottom: 15px;
    transform: translate3d(-50%, 0, 0);
    background-color: transparent;
    color: #1a1a1a;
    font-weight: 400;
    margin-bottom: 0;
    outline: 0;
    border: 0;
}

.members .member_box .team-member__button span {
    color: #41E8BC;
}

.members .member_box h3 {
    font-size: 1.2rem;
}

.members .member_box > p {
    color: #138CB6
}

.bio_members img {
    border-radius: 50%;
    box-shadow: 0 3px 5px 0 rgba(65, 232, 188, .5);
}

.bio_members p {
    font-size: 15px;
    line-height: 26px;
    margin: 0;
}
.bio_members p:has(img) {
    text-align: center;
}

.bio_members hr {
    border: 0;
    height: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
    margin: 1.5rem 0 !important
}
.bio_members img{
    aspect-ratio: 1!important;
    object-fit: cover;
}
.member-thumbnail{
    border-radius: 100%;
    max-height: 200px;
    max-width: 200px;
    aspect-ratio: 1;
    object-fit: cover;
}
.coop-card{
    height: max-content;
}
.coop-card h3{
    font-size: 2rem;
}
.coop-card img{
    height: 8rem;
}

/*------Slick Custom ------*/
.slick-next::before,
.slick-prev::before {
    color: #3F3F3F !important;
}

@media (min-width: 768px) {
    .slideshow .carousel-inner img {
        min-height: 100%;
        -o-object-fit: initial;
        object-fit: initial;
    }

    .slideshow .carousel-inner .carousel-caption {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .slideshow .carousel-inner .carousel-caption h3,
    .slideshow .carousel-inner .carousel-caption h2,
    .slideshow .carousel-inner .carousel-caption h1 {
        font-size: 1.1rem;
    }
}

@media (min-width: 992px) {

    .slideshow .carousel-inner .carousel-caption h3,
    .slideshow .carousel-inner .carousel-caption h2,
    .slideshow .carousel-inner .carousel-caption h1 {
        font-size: 1.8rem;
    }

    .slideshow .carousel-inner .carousel-caption {
        width: 60%;
    }
}

@media (min-width: 991px) {
    .resources .slick-slide {
        padding: 4vw;
    }

    .resources {
        margin-top: -14rem;
    }
}

@media (max-width: 414px) {
    .navbar-brand-img > img {
        max-height: 2.5rem;
        margin-top: 0.25rem;
        margin-bottom: 0.25rem;
    }
}

@media (max-width: 394px) {
    .navbar-brand-img > img {
        max-height: 2rem;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 374px) {
    .navbar-brand-img > img {
        max-height: 1.5rem;
        margin-top: 0.75rem;
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 992px) {
    .top-header h1 {
        font-size: 1.5rem;
    }

    .breadcrumb .title h1 {
        font-size: 2rem;
    }

    .breadcrumb .title h1::before,
    .breadcrumb .title h1::after {
        width: 10px;
    }
}

@media (min-width: 992px) {
    .top-header h1 {
        font-size: 2.2rem;
    }
}
@media (min-width: 576px) {
    .coop-card img{
        margin-left: auto;
    }
}
@media (max-width: 576px) {
    .coop-card img{
        margin-bottom: 1rem;
    } 
}
