.text-right {
    text-align: right;
}
.border-bottom{
    border-bottom: 1px solid #aaa;
    padding-bottom: 50px;
    margin-bottom: 50px;
}

.border-top{
    border-top: 1px solid #aaa;
    padding-top: 50px;
    margin-top: 50px;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}
.relative{
    position: relative;
}
.absolute{
    position: absolute;
}

.text-bold {
    font-weight: bold;
}

.large-text {
    font-size: 64px;
    white-space: normal;
    margin: 0px;
}

.large-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    color: #7F7F7F;
}

.text-uppercase {
    text-transform: uppercase;
}

.color-orange {
    color: #F7971D;;
}

.whitespace-nowrap {
    white-space: nowrap;
}

/* Prevent children from inheriting whitespace-nowrap class */
.whitespace-nowrap * {
    white-space: normal;
}

.position-relative {
    position: relative;
}

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

.ml-0 {
    margin-left: 0;
}

.mr-0 {
    margin-right: 0;
}

/*
Thumbnails/Images Resolution Sizing
*/
.img-size-wrap{
    position: relative;
    width: 100%;
}
.img-size-wrap:before{
    content: '';
    display: table;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 0;
    height: 100%;
}
.img-size-wrap.size-4-3:before{
    padding-bottom: 75%;
}
.img-size-wrap.size-1-1:before{
    padding-bottom: 100%;
}
.img-size-wrap.size-1-2:before{
    padding-bottom: 200%;
}
.img-size-wrap.size-1-4:before{
    padding-bottom: 400%;
}
.img-size-wrap.size-2-3:before{
    padding-bottom: 150%;
}
.img-size-wrap.size-3-4:before{
    padding-bottom: 133.333%;
}
.img-size-wrap.size-16-9:before{
    padding-bottom: 56.25%;
}
.img-size{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;

    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
}
