.ss-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.ss-card{
    border:1px solid #e4e4e4;
    border-radius:30px;
    overflow:hidden;
    background:#fff;
}

.ss-image img{
    width:100%;
    display:block;
}

.ss-content{
    padding:24px;
}

.ss-meta{
    font-size:12px;
    text-transform:uppercase;
    font-weight:700;
    color: #960061;
    margin-bottom:15px;
}

.ss-content h3{
    margin-bottom:20px;
}

.ss-summary{
    line-height:1.8;
    margin-bottom:25px;
	font-size: 16px;
}

.ss-button{
    display: inline-block;
    border: 2px solid #960061;
    padding: 12px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    color: #960061;
    font-weight: bold;
}

.ss-button:hover {
    background: #960061 !important;
    color: #fff !important;
}

.site_footer a {
    color: #960061 !important;
}

.site_footer a:hover {
    color: #365bcd !important;
}

.ss-empty{
    margin:20px 0;
    font-size:16px;
}

.ss-carousel{
    position:relative;
    max-width:1298px;
    margin:0 auto;
    padding: 6px 68px 34px 50px;
}

.ss-carousel-viewport{
    overflow:hidden;
    width:100%;
}

.ss-carousel,
.ss-carousel *{
    box-sizing:border-box;
}

.ss-carousel-track{
    display:flex;
    align-items:stretch;
    gap:20px;
    transition:transform .35s ease;
    will-change:transform;
}

.ss-carousel-card{
    flex:0 0 calc((100% - 60px) / 4);
    min-width:0;
    border:1px solid #ead8ca;
    border-radius:23px;
    overflow:hidden;
    background:#fff;
    display:flex;
    flex-direction:column;
}

.ss-grid .ss-carousel-card{
    width:100%;
    max-width:100%;
}

.ss-carousel[data-ss-visible="4"] .ss-carousel-track > .ss-carousel-card{
    flex:0 0 calc((100% - 60px) / 4) !important;
    width:calc((100% - 60px) / 4) !important;
    max-width:calc((100% - 60px) / 4) !important;
}

.ss-carousel[data-ss-visible="2"] .ss-carousel-track > .ss-carousel-card{
    flex:0 0 calc((100% - 20px) / 2) !important;
    width:calc((100% - 20px) / 2) !important;
    max-width:calc((100% - 20px) / 2) !important;
}

.ss-carousel[data-ss-visible="1"] .ss-carousel-track > .ss-carousel-card{
    flex:0 0 100% !important;
    width:100% !important;
    max-width:100% !important;
}

.ss-carousel-image{
    height:220px;
    background:#fa9b2d;
    overflow:hidden;
}

.ss-carousel-image img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}

.ss-carousel-content{
    padding:19px 20px 24px;
    display:flex;
    flex:1;
    flex-direction:column;
}

.ss-carousel-meta{
    margin-bottom:4px;
    color: #960061;
    font-size: 14px;
    line-height:1.48;
    font-weight:800;
    letter-spacing:0;
    text-transform:uppercase;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.ss-carousel-institution{
    min-height:40px;
    margin-bottom:9px;
    color: #960061;
    font-size: 12px;
    line-height:1.48;
    font-weight:800;
    letter-spacing:0;
    text-transform:uppercase;
}

.ss-carousel-title{
    margin:0 0 2px;
    color: #000000;
    font-size: 20px;
    line-height:1.08;
    font-weight:800;
    margin-bottom: 12px;
}

.ss-carousel-country{
    margin:0 0 11px;
    color:#1d2639;
    font-size:18px;
    line-height:1.08;
    font-weight:800;
}

.ss-carousel-summary{
    color:#172031;
    font-size:16px;
    line-height:1.43;
    margin-bottom:23px;
}

.ss-carousel-button{
    margin-top:auto;
    align-self:flex-start;
    border-color:#960061;
    padding:10px 20px;
    min-width:172px;
    text-align:center;
    font-size:14px;
    line-height:1.25;
    color:#960061;
    background:#fff;
}

.ss-carousel-button:hover {
    background: #960061;
    color: #fff;
}

.ss-carousel-arrow{
    position:absolute;
    top:40.5%;
    z-index:2;
    width:54px;
    height:74px;
    border:0;
    background:transparent;
    cursor:pointer;
    padding:0;
    box-shadow: none;
}

.ss-carousel-arrow:hover {
     background: none; 
}

.ss-carousel-arrow span{
    display:block;
    width:30px;
    height:30px;
    border-left:3px solid #960061;
    border-bottom:3px solid #960061;
}

.ss-carousel-prev{
    left:12px;
}

.ss-carousel-prev span{
    transform:rotate(45deg);
}

.ss-carousel-next{
    right:12px;
}

.ss-carousel-next span{
    transform:rotate(225deg);
}

.ss-carousel-arrow:disabled{
    opacity:1;
    cursor:pointer;
}

.ss-carousel-dots{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
}

.ss-carousel-dot{
    width:14px;
    height:14px;
    padding:0;
    border:1px solid #960061;
    border-radius:50%;
    background:#fff;
    cursor:pointer;
}

.ss-carousel-dot.is-active{
    background:#960061;
}

.ss-filters{
    display:flex;
    gap:18px;
    margin-bottom:50px;
}

.ss-filter{
    position:relative;
}

.ss-filters select {
    padding: 10px 20px;
    border-radius: 30px;
    border-color: #960061;
    color: #960061;
    background-position: right 19px center;
}

.ss-filter select{
    appearance:none;
    -webkit-appearance:none;
    min-width:220px;
    height:52px;
    padding:0 50px 0 22px;
    border:1px solid #D8D8D8;
    border-radius:999px;
    background:#fff;
    font-size:15px;
    cursor:pointer;
    transition:.25s ease;
}

.ss-filter select:hover{
    border-color:#A00063;
}

.ss-filter select:focus{
    outline:none;
    border-color:#A00063;
    box-shadow:0 0 0 4px rgba(160,0,99,.08);
}

.ss-filter:after{
    content:'';
    position:absolute;
    right:30px;
    top:50%;
    width:10px;
    height:10px;
    border-right:2px solid #666;
    border-bottom:2px solid #666;
    transform:translateY(-60%) rotate(45deg);
    pointer-events:none;
}

.ss-load-wrap{
    text-align:center;
    margin-top:40px;
}

#ss-load-more{
    background:#a00063;
    color:#fff;
    border:none;
    border-radius:999px;
    padding:16px 40px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:all .3s ease;
}

#ss-load-more:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(160,0,99,.25);
}

#ss-load-more.is-loading{
    opacity:.7;
    cursor:not-allowed;
}

#ss-load-more:disabled{
    opacity:.7;
    cursor:not-allowed;
}

.ss-loading{
    opacity:.5;
    transition:.2s;
}

@media(max-width:1024px){

    .ss-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .ss-carousel .ss-carousel-track > .ss-carousel-card{
        flex-basis:calc((100% - 20px) / 2) !important;
        width:calc((100% - 20px) / 2) !important;
        max-width:calc((100% - 20px) / 2) !important;
    }

}

@media (min-width:769px) and (max-width:1024px){
    .ss-carousel{
        max-width: 100%;
    }

}

@media (min-width:480px) and (max-width:768px){
    .ss-carousel{
        max-width: 100%;
    }

}

@media(max-width:767px){

    .ss-grid{
        grid-template-columns:1fr;
    }

    .ss-carousel{
        padding:4px 44px 34px;
        max-width: 100%;
    }

    .ss-carousel .ss-carousel-track > .ss-carousel-card{
        flex-basis:100% !important;
        width:100% !important;
        max-width:100% !important;
        min-height:auto;
    }

    .ss-carousel-image{
        height:220px;
    }

    .ss-carousel-title{
        font-size:21px;
        line-height:1.12;
    }

    .ss-carousel-arrow{
        top:34%;
        width:34px;
        height:56px;
    }

    .ss-carousel-arrow span{
        width:30px;
        height:30px;
    }

    .ss-carousel-prev{
        left:8px;
    }

    .ss-carousel-next{
        right:8px;
    }

}

.sohf-donate{
    display:flex;
    align-items:center;
    gap:20px;
    max-width:370px;
    width:100%;
    /* margin-left:auto;
    margin-right:auto;
    justify-content:center; */
}

.sohf-donate *,
.sohf-donate *:before,
.sohf-donate *:after{
    box-sizing:border-box;
}

.sohf-donate-currency{
    display:grid;
    grid-template-columns:1fr 1fr;
    width:190px !important;
    height:42px !important;
    overflow:hidden;
    border:1px solid #36415a;
    border-radius:4px;
    background:#fff;
}

.sohf-donate-option{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    height:100%;
    margin:0;
    color:#1e2637;
    font-family: "Europa light";
    font-size: 15px;
    font-weight:800;
    line-height:1;
    text-transform:uppercase;
    cursor:pointer;
    transition:background .2s ease, color .2s ease;
}

.sohf-donate-option + .sohf-donate-option{
    border-left:1px solid #36415a;
}

.sohf-donate-option input{
    position:absolute;
    width:1px;
    height:1px;
    opacity:0;
    pointer-events:none;
}

.sohf-donate-option.is-active{
    background:#435fd3;
    color:#fff;
}

.sohf-donate-flag{
    font-size:14px;
    line-height:1;
}

.sohf-donate-button{
    appearance:none;
    -webkit-appearance:none;
    display:flex;
    align-items:center;
    justify-content:center;
    width:150px !important;
    height:42px !important;
    margin:0;
    padding:0;
    border:0;
    border-radius:4px;
    background:#435fd3;
    color:#fff;
    letter-spacing: .5px;
    line-height:1;
    cursor:pointer;
    box-shadow:none;
    text-decoration:none;
    transition:background .2s ease;
    font-family: "Helvetica Neue 67 Medium Condensed";
    font-size: 18px;
}

.sohf-donate-button:hover,
.sohf-donate-button:focus{
    background:#344fc5;
    color:#fff;
}

@media(max-width:767px){

    .sohf-donate{
        flex-direction:column;
        align-items:stretch;
        gap:14px;
        max-width:100%;
    }

    .sohf-donate-currency,
    .sohf-donate-button{
        width:100% !important;
    }

}

.sohf-donate-currency input[type="radio"] {
    margin: 0;
}

.single-student-wrap{
    max-width:280px;
    width:100%;
}

.single-student-wrap .ss-carousel-card{
    flex:0 0 auto;
    width:100%;
}

.single-student-card{
    max-width:252px;
    width:100%;
    border:1px solid #ead8ca;
    border-radius:18px;
    overflow:hidden;
    background:#fff;
}

.single-student-card *,
.single-student-card *:before,
.single-student-card *:after{
    box-sizing:border-box;
}

.single-student-image{
    height:198px;
    background:#fa9b2d;
    overflow:hidden;
}

.single-student-image img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
}

.single-student-content{
    padding:18px 18px 22px;
}

.single-student-field-study,
.single-student-institution{
    color:#960061;
    font-size:12px;
    line-height:1.5;
    font-weight:800;
    letter-spacing:0;
    text-transform:uppercase;
}

.single-student-field-study{
    margin-bottom:3px;
}

.single-student-institution{
    margin-bottom:24px;
}

.single-student-title{
    margin:0 0 10px;
    color:#000;
    font-size:18px;
    line-height:1.18;
    font-weight:800;
}

.single-student-country{
    margin:0 0 28px;
    color:#1d2639;
    font-size:18px;
    line-height:1.18;
    font-weight:800;
}

.single-student-button{
    display:flex;
    align-items:center;
    justify-content:center;
    width:156px;
    min-width:0;
    min-height:0;
    margin:0 auto;
    padding:10px 18px;
    border-color:#960061;
    color:#960061;
    font-size:14px;
    line-height:1.25;
    background:#fff;
}

.single-student-button:hover,
.single-student-button:focus{
    background:#960061;
    color:#fff;
}

@media(max-width:767px){

    .single-student-card{
        max-width:252px;
        margin-left:auto;
        margin-right:auto;
    }

}
