html, body{
    font-size: 16px;
    line-height: 1.365;
    color: rgba(0,0,0,0.87);
}


.xp-sheet{
    margin-top: -50px;
    border-radius: 20px;
    width: 100%;
    padding: 72px;
    background-color: #fefefe;
}

@media (max-width: 991px){
    .xp-sheet{
        padding: 48px 16px;
        margin-top: 0;
    }
}

@media (max-width: 640px){
    .xp-sheet {
        padding: 32px 16px;
    }
}

@media (max-width: 400px){
    .xp-sheet {
        padding: 32px 0;
    }
}

.xp-top-section{
    height: 90vh;
    padding-bottom: 64px;
    padding-left: 16px;
    padding-right: 16px;
    -webkit-background-size: cover;
    background-size: cover;
}

.xp-title{
    text-align: center;
    font-size: 4rem;
    font-weight: 600;
    line-height: 4.5rem;
    color: white;
}

.xp-title-line{
    background-color: white;
    width: 100px;
    height: 6px;
    border-radius: 2px;
    margin-top: 16px;
}

@media (max-width: 991px){
    .xp-top-section{
        height: 60vh;
    }
    .xp-title{
        font-size: 2rem;
        line-height: 2.5rem;
    }
    .xp-title-line{
        width: 50px;
        height: 3px;
        border-radius: 1px;
    }
}

@media (max-width: 600px){
    .xp-top-section{
        height: unset;
        padding-top: 96px;
        padding-bottom: 96px;
    }
}


.xp-details-icon-row{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    resize: vertical;
    padding-top: 4px;
    padding-bottom: 4px;
}

.xp-details-icon-row .material-icons{
    margin-right: 16px;
    max-width: 24px;
}

.flex-center{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
            align-items: center;
    resize: vertical;
}

.flex-center-row{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
            justify-content: center;
    resize: vertical;
}

.navbar-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    box-sizing: border-box;
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 80px;
}

.navbar-brand {
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    margin-right: 2rem;
}

.navbar-brand img {
    padding-right: 4px;
}

.navbar-right{
    display: none;
}

@media (min-width: 400px){
    .navbar-brand:after {
        color: white;
        font-size: 15px;
        font-weight: 400;
        font-family: "Nunito Sans";
    }
}

.xp-navbar{
    padding-left: 32px;
    padding-right: 32px;
}
.xp-navbar.xp-navbar-transparent{
    border-bottom: none;
    position: absolute;
    width: 100%;
}

.xp-overview-header{
    color: black;
    opacity: 0.54;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
}

.xp-experience-item{
    max-width: 800px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.xp-experience-item > .col-sm-4{
    padding: 0;
    padding-bottom: calc(25%);
    -webkit-background-size: cover;
    background-size: cover;
}

.xp-experience-item > .col-sm-8{
    padding-left: 20px;
}

.xp-experience-item img{
    width: 100%;
    height: auto;
    background: #fefefe;
}

.xp-experience-item h3{
    margin-bottom: 16px;
    font-size: 1.25rem;
}

@media (min-width: 1919px){
    .xp-experience-item h3{
        font-size: 1.8rem;
    }
    .xp-experience-item > .col-sm-8{
        padding-left: 32px;
    }
}




.xp_item{
    position: relative;
    min-height: 20px;
    width: 100%;
    background-color: white;
    margin-bottom: 2rem;
    border-radius: 10px;
    transition: all 0.4s ease;
    -webkit-box-shadow: 0 15px 50px rgba(0,0,0,0.05);
    box-shadow: 0 15px 50px rgba(0,0,0,0.05);
}

.xp_item:not(:last-child){
    margin-bottom: 5rem;
}

.xp_item:hover{

}

.xp_item_image{
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: #eee;
    border: none;
}

.xp_item_image_wrapper{
    padding: 0;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
}

@media (max-width: 991px){
    .xp_item_image_wrapper{
        border-bottom-left-radius: 0;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }
}

.xp_item_info_wrapper{
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 32px;
    padding-bottom: 32px;
}

.xp_item_info{
    width: 80%;
    margin: 0 auto;
}

.xp_item_info.no_image{
    padding: 4rem 0;
}

.xp_item .xp_item_info_title{
    color: rgba(0,0,0,.89);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.xp_item .xp_item_info_teaser{
    color: rgba(0,0,0,.54);
    font-style: italic;
    font-size: 18px;
    font-weight: 400;
    line-height: 2rem;
    margin-bottom: 1rem;
}

@media (max-width: 991px) {
    .xp_item_info{
        width: 90%;
    }
    .xp_item_info_wrapper{
        height: auto;
    }
}

.xp_item .btn-read{
    font-size: 18px;
    color: #187aed;
    font-weight: 600;
    margin-top: 1rem;
    padding: 1rem 2rem;
    padding-right: 4rem;
    transition: all 0.35s ease;
    border-radius: 1000px;
    font-style: italic;
    right: 32px;
    bottom: 20px;
    position: absolute;
}

.xp_item .btn-read:hover{
    -webkit-box-shadow: 0 15px 35px rgba(50,50,93,.1), 0 5px 15px rgba(0,0,0,.07);
    box-shadow: 0 15px 35px rgba(50,50,93,.1), 0 5px 15px rgba(0,0,0,.07);
}

.xp_item .btn-read .material-icons{
    font-size: 24px;
    vertical-align: bottom;
    position: absolute;
    margin-left: 0.5rem;
    margin-bottom: -3px;
    transition: all 0.35s ease;
}

.xp_item .btn-read:hover .material-icons{
    transform: translateX(2px);
}

.xp_item .btn-read:active{
    -webkit-box-shadow: 0 2px 5px rgba(50,50,93,.05), 0 2px 5px rgba(0,0,0,.04);
    box-shadow: 0 2px 5px rgba(50,50,93,.05), 0 2px 5px rgba(0,0,0,.04);
}

@media (max-width: 991px) {
    .xp_item .btn-read{
        right: unset;
        bottom: unset;
        position: relative;
        display: block;
        margin-left: -2rem;
        margin-bottom: -1rem;
    }
}


.xp-footer{
    margin-top: 32px;
    text-align: center;
}

.xp-footer p{
    color: rgba(0,0,0,0.54);
    font-weight: 600;
    font-style: italic;
}
