.full-width {
    width: 100%;
}

.full-height,
.full-height-md {
    height: 100%;
    max-height: 100%;
}

.no-padding {
    padding: 0;
}

.no-margin {
    margin: 0;
}

.no-padding-force {
    padding: 0 !important;
}

.no-padding-xl {
    padding: 0 !important;
}

.no-margin-force {
    margin: 0 !important;
}

.margin-auto {
    margin: auto;
}

.margin-top-auto {
    margin-top: auto;
}

.margin-left-auto {
    margin-left: auto;
}

.pre-wrap {
    white-space: pre-wrap;
}

.pre-line {
    white-space: pre-line;
}

.space-bottom {
    margin-bottom: 2.5%;
}

.space-top {
    margin-top: 2.5%;
}

.space-bottom-l {
    margin-bottom: 35px;
}

.space-bottom-s {
    margin-bottom: 10px;
}

.space-top-l {
    margin-top: 35px;
}

.space-top-s {
    margin-top: 10px;
}

.cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.compact-text {
    line-height: 1em;
}

.bold {
    font-weight: bold;
}

.no-bold {
    font-weight: 100;
}

.no-text-dec {
    text-decoration: none;
}

.flex {
    display: flex;
}

.flex-align-center {
    display: flex;
    align-items: center;
}

.flex-align-end {
    align-items: flex-end;
    display: flex;
}

.flex-align-start {
    align-items: flex-start;
    display: flex;
}

.flex-center-all {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-center-start {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.flex-start-center {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* .underline {
    text-decoration: underline;
} */

.inline-text-flex {
    display: flex;
    flex-flow: row;
}

.hidden {
    display: none !important;
}

.pull-right {
    float: right;
}

.zoom-image-box:hover .zoom-image {
    transform: scale(1.05);
    -webkit-transition: transform 1s ease-in-out;
    -webkit-mask-image: unset;
}

.zoom-image-box:not(:hover) .zoom-image {
    transform: scale(1.01);
    -webkit-transition: transform 1s ease-in-out;
    -webkit-mask-image: unset;
}

.zoom-image-box .zoom-image-wrapper {
    overflow: hidden;
}

.limit-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.limit-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


.limit-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


.limit-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fix-body {
    overflow: hidden;
}

.body-cover {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9;
    background-color: rgba(0, 0, 0, .15)
}

.flex-column {
    flex-flow: column;
}

.flex-row {
    flex-flow: row;
}

.slick-dots>li {
    display: inline-block;
}

.slick-dots>li:only-child {
    display: none;
}

.row.display-flex {
    display: flex;
    flex-wrap: wrap;
}

.row.display-flex>[class*='col-'] {
    display: flex;
    flex-direction: column;
}

.box-padding {
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 10px;
    padding-right: 10px;
}

.relative {
    position: relative;
}

textarea {
    resize: none;
}

.no-border {
    border: none;
}

.space-left {
    margin-left: 10px;
}

.space-right {
    margin-right: 10px;
}

.space-left-l {
    margin-left: 25px;
}

.xl-space-left-l {
    margin-left: 25px;
}

.space-right-l {
    margin-right: 25px;
}

.inherit-link,
.inherit-link:hover,
.inherit-link:focus {
    color: inherit;
    text-decoration: inherit;
    cursor: pointer;
}

.three-lines {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.zoom-image-box .zoom-image-wrapper {
    overflow: hidden;
}

.zoom-image-box:hover .zoom-image {
    transform: scale(1.05);
    -webkit-transition: transform 0.8s ease-in-out;
}

.zoom-image {
    transform: scale(1);
    -webkit-transition: transform 0.8s ease-in-out;
}

.overlay-wrapper {
    position: relative;
}

.overlay-text-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    padding: 15px 25px;
    opacity: 0;
    transition: opacity 0.5s linear;
}

.overlay-wrapper-box:hover .overlay-text-wrapper,
.overlay-wrapper:hover .overlay-text-wrapper {
    opacity: 1;
}

.mobile-sidebar {
    display: none;
}

.underline {
    text-decoration: underline !important;
}

.lined-text-left,
.lined-text-right {
    display: flex;
    flex-direction: row;
}

.lined-text-left a {
    margin-right: 30px;
}

.lined-text-left:after {
    content: "";
    flex: 1 1;
    border-bottom: 1px solid #ac351c;
    margin: auto;
}

.lined-text-right a {
    margin-left: 30px;
}

.lined-text-right:before {
    content: "";
    flex: 1 1;
    border-bottom: 1px solid #ac351c;
    margin: auto;
}

.zoom-image-box {
    overflow: hidden;
}

.zoom-image-box:hover .zoom-image {
    transform: scale(1.05);
    -webkit-transition: transform 0.8s ease-in-out;
}

.zoom-image {
    transform: scale(1);
    -webkit-transition: transform 0.8s ease-in-out;
}

.fade-on-scroll {
    -webkit-transform: translateY(80px) rotate(0deg) translateZ(0);
    transform: translateY(80px) rotate(0deg) translateZ(0);
    -webkit-transition-delay: 1s;
    -o-transition-delay: 1s;
    transition-delay: 1s;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    opacity: 0;
}

.inView {
    opacity: 1;
    -webkit-transform: translateY(0px) rotate(0deg) translateZ(0);
    transform: translateY(0px) rotate(0deg) translateZ(0);
}

@media only screen and (max-width: 768px) {
    .xl-space-left-l {
        margin-left: 10px;
    }

    .mobile-space-top {
        margin-top: 15px;
    }

    .full-height-md {
        height: auto;
    }

    .mobile-sidebar {
        display: block;
        position: fixed;
        top: 0;
        bottom: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background-color: #ac351c;
        z-index: 100;
        transition: right 0.5s;
        transition-timing-function: ease-in-out;
        padding: 15px 0;
    }

    .mobile-sidebar.show {
        right: 0;
    }
}

@media only screen and (max-width: 575px) {
    .remove-mobile-padding {
        padding: 0 !important;
    }
}