.custom-marquee {
	position: relative;
    margin-bottom: 0px;
    background-color: #1a2e37;
    padding-top: 15px;
	padding-bottom: 35px;
	display: flex;
    flex-direction: column;
}

.custom-marquee:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    transform: translateY(-50%);
    overflow: hidden;
    pointer-events: none;
    background-image: url(../svg/texture_hr-navy.svg);
    background-repeat: no-repeat;
    background-position: top center;
    background-repeat: repeat-x;
    background-position: top center;
    background-size: contain;
}

.custom-marquee h4.title {
	display: none;
}

.custom-marquee .slider-cont {
    position: relative;
    margin-bottom: 30px;
}

.custom-marquee .slides {
    display: flex;
	flex-wrap: wrap;
	margin: 0 auto;
	padding: 0;
}

.custom-marquee .slide {
	position: relative;
}

.custom-marquee .slide > .inner {
	height: 100%;
}

.custom-marquee .slide .img-cont {
	position: relative;
	overflow: hidden;
}

.custom-marquee .slide .img-cont::after {
	content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(26,46,55,.9), transparent);
    pointer-events: none;
}

.custom-marquee .slide img {
	display: block;
	width: 100%;
}

.custom-marquee .slide .content-section {
    padding: 10px 30px;
}

.custom-marquee .slide h4,
.custom-marquee .slide h4 a {
	font-size: 24px;
    font-family: "acumin-pro", sans-serif;
    font-style: normal;
    font-weight: 800;
    line-height: 30px;
    letter-spacing: .5px;
    color: #fff;
    text-transform: uppercase;
}
.custom-marquee .slide h4 a {
	transition: text-decoration-color 200ms ease-in;
	text-decoration: underline;
	text-decoration-color: transparent;
	text-decoration-thickness: 1;
}
.custom-marquee .slide h4 a:hover {
    color: #fff;
    text-decoration-color: #fff;
}

.custom-marquee .slide h4 i {
    margin-left: 10px;
    color: #d6ae29;
    font-size: 30px;
    position: relative;
    top: 3px;
}

.custom-marquee .slide p {
	font-size: 18px;
    font-family: "acumin-pro", sans-serif;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
	color: #fff;
}

.custom-marquee .slide p i {
    margin-right: 5px
}

.custom-marquee .slider-cont .arrow-cont {
    position: absolute;
    top: 0;
    right: 0;
    padding-top: calc(100% * (375 / 375) - 45px);
    display: flex;
	justify-content: flex-end;
	align-items: center;
    z-index: 1;
    pointer-events: none;
}

.custom-marquee .slider-cont .arrow-cont .arrow {
	font-size: 30px;
	color: #1a2e37;
	pointer-events: all;
	cursor: pointer;
	background-color: #d6ae29;
	padding: 0 15px;
}

.custom-marquee .slider-cont .arrow-cont .arrow.slick-disabled {
	cursor: default;
	opacity: 0.5;
}

.custom-marquee .view-all {
    display: inline-flex;
    color: #137d76;
    font-family: acumin-pro, sans-serif;
    font-style: normal;
    font-weight: 800;
    line-height: 1em;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #fff;
	padding: 16px 45px;
	margin: auto;
}

.custom-marquee .view-all:hover {
    background-color: #137d76;
    color: #fff;
}

@media (min-width: 40em) {
    .custom-marquee {
        padding-top: 30px;
        padding-bottom: 40px;
    }

    .custom-marquee .slider-cont {
        margin-bottom: 40px;
    }

    .custom-marquee .slides {
        display: grid;
        display: -ms-grid;
        gap: 20px;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(2, 1fr);
        -ms-grid-columns:  1fr 20px 1fr;
        -ms-grid-rows: 1fr 20px 1fr;
    }
    
    .custom-marquee .slide:nth-child(1) {
        grid-column: 1;
        grid-row: 1 / span 2;
        -ms-grid-column: 1;
        -ms-grid-row: 1;
        -ms-grid-row-span: 2;
    }

    .custom-marquee .slide:nth-child(1) img {
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .custom-marquee .slide:not(:nth-child(1)) .img-cont {
        padding: 0;
        height: auto;
    }

    .custom-marquee .slide .img-cont.promoted {
        padding: 0;
        height: 100%;
    }

    .custom-marquee .slide .content-section {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        text-align: left;
        pointer-events: none;
    }

    .custom-marquee .slide:not(:nth-child(1)) h4,
    .custom-marquee .slide:not(:nth-child(1)) h4 a {
	    font-size: 16px;
        font-family: "acumin-pro", sans-serif;
        font-style: normal;
        font-weight: 800;
        line-height: 1.2em;
        letter-spacing: .5px;
        color: #fff;
        text-transform: uppercase;
    }

    .custom-marquee .slide:not(:nth-child(1)) h4 i {
    	top: 5px;
    }

    .custom-marquee .slide:not(:nth-child(1)) h4 i {
	    font-size: 25px;
	    line-height: 10px;
    }

    .custom-marquee .slide:not(:nth-child(1)) p {
    	font-size: 16px;
    }

    .custom-marquee .slider-cont .arrow-cont {
        display: none;
    }
}

@media (min-width: 64em) {
    .custom-marquee .slide .content-section {
        padding: 30px 50px;
    }

    .custom-marquee .slide h4,
    .custom-marquee .slide h4 a {
        font-size: 30px;
        line-height: 40px;
        pointer-events: all;
 }
	.custom-marquee h4.title {
		display: block;
		color: #fff;
		text-transform: uppercase;
		font-size: 60px;
		font-weight: 800;
		text-align: center;
		margin-bottom: 30px;
		line-height: 1em;	
	}

	.custom-marquee .slide h4 i {
		top: 0;
	}

	.custom-marquee .slide:not(:nth-child(1)) h4 i {
	    font-size: 30px;
    }

	.custom-marquee .slide:not(:nth-child(1)) p {
    	font-size: 18px;
    }
}

@media (min-width: 90em) {
    .custom-marquee .slide:not(:nth-child(1)) h4,
    .custom-marquee .slide:not(:nth-child(1)) h4 a {
        font-size: 30px;
        line-height: 40px;
        pointer-events: all;
    }

    .custom-marquee .slide h4 i,
    .custom-marquee .slide:not(:nth-child(1)) h4 i {
    	top: 0;
    }
}

@media only screen and (-ms-high-contrast: active) and (min-width: 40em), (-ms-high-contrast: none) and (min-width: 40em) { 
	.custom-marquee:before {
		display: none;
	} 

	.custom-marquee .slides {
		height: 615px;
	}

	.custom-marquee .slide:nth-child(1) {
        -ms-grid-column: 1;
        -ms-grid-row: 1;
        -ms-grid-row-span: 3;
    }

	.custom-marquee .slide:nth-child(1) img {
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: auto;
        object-fit: cover;
    }
	
	
	.custom-marquee .slide:nth-child(2) {
        -ms-grid-column: 3;
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
    }

    .custom-marquee .slide:nth-child(2) img {
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .custom-marquee :not(:nth-child(1)).slide .img-cont {
        padding: 0;
        height: 100%;
    }

	.custom-marquee .slide:nth-child(3) {
        -ms-grid-column: 3;
        -ms-grid-row: 3;
        -ms-grid-row-span: 1;
    }

    .custom-marquee .slide:nth-child(3) img {
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}