/*@import url('https://fonts.cdnfonts.com/css/helvetica-neue-55');*/
/*html,body {*/
/*    overflow-x: hidden;*/
/*}*/
@font-face {
    font-family: museo500;
    src: url('../fonts/msans/museoSans_500.otf');
    font-weight: 500;
}

:root {
    --brand-bg: #13245D;
    --helvetica: "Helvetica Neue", sans-serif;
    --museo500: 'museo500';
    --blue: #32468C;
}
*,ul{
    margin:0;
}
.page-template-home p,.page-template-home a,.page-template-home li{
    font-weight: 400;
    font-family: var(--helvetica);
}
/*.container {*/
/*    max-width: 1275px;*/
/*    padding-left: 15px;*/
/*    padding-right: 15px;*/
/*    margin: 0 auto;*/
/*    width: 100%;*/
/*}*/
.bg-style-1{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.flex-item-center{
    display: flex;
    align-items: center;
}
.flex-item-stretch{
    display: flex;
    align-items: stretch;
}
.justify-end{
    justify-content: flex-end;
}
.justify-center{
    justify-content: center;
}
.justify-between{
    justify-content: space-between;
}
.relative{
    position: relative;
}
.dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); 
}
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}

.truncate-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;       /* Show only 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5em;
    max-height: 3em;              /* 2 lines × line-height */
    margin: 0;
}