/*****************************
*	horizontal news ticker
******************************/

.ticker-wrapper-h{
	display: flex;
	position: relative;
	overflow: hidden;
    background:linear-gradient(135deg,#02142e,#06396b);
    border:1px solid #0bbcff;
  color: rgb(255, 255, 255);
}


.ticker-wrapper-h .heading{
	  background:#00bfff;
  font-weight:700;
	color:#02142e;
	padding: 5px 10px;
	flex: 0 0 auto;
	z-index: 500;
}
.ticker-wrapper-h .heading:after{
	content: "";
	position: absolute;
	top: 0;
	border-left:20px solid #00bfff;
	border-top: 17px solid transparent;
	border-bottom: 15px solid transparent;
}

.news-ticker-h{
	display: flex;
	margin:0;
	padding: 0;
	padding-left: 90%;
	z-index: 499;


	animation-iteration-count: infinite;
	animation-timing-function: linear;
	animation-name: tic-h;
	animation-duration: 30s;

}
.news-ticker-h:hover {
	animation-play-state: paused;
}

.news-ticker-h li{
	display: flex;
	width: 100%;
	align-items: center;
	white-space: nowrap;
	padding-left: 20px;

}

.news-ticker-h li a{
	color:#ffffff;
	font-weight:600;
}

@keyframes tic-h {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		visibility: visible;
	}
	100% {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}
.reach-section{
    background:linear-gradient(135deg,#02142e,#06396b);
}

.reach-section h2{
    color:#f2cb61;
    font-size:48px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:50px;
}
@media(max-width:768px){

.reach-section h2{
    font-size:32px;
    letter-spacing:1px;
}
}
@media(max-width:768px){

.reach-flex{
    flex-direction:column;
    text-align:center;
}

.reach-text h4{
    font-size:24px;
}

.reach-text p{
    font-size:15px;
}

}
.reach-card{
    background:rgba(255,255,255,0.12);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,0.2);
    border-radius:25px;

    padding:15px;
    height:100%;

    transition:.4s;
}

.reach-card:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,0.18);
}

.reach-flex{
    display:flex;
    align-items:center;
    gap:20px;
}

.reach-icon{
    font-size:55px;
    color:#0bbcff;
    min-width:70px;
    text-align:center;
}
.reach-text h4{
    margin:0 0 8px;
    color:#ffffff;
    font-size:30px;
    font-weight:700;
}

.reach-text p{
    margin:0;
    color:#ffffff;
    font-size:17px;
    line-height:1.5;
}

.reach-btn{
    display:inline-block;
    padding:14px 35px;
    background:#f2cb61;
    color:#02142e;
    text-decoration:none;
    border-radius:40px;
    font-weight:700;
}
.reach-img{
    width:100%;
    height:230px;
    object-fit:cover;
}

.reach-content{
    padding:10px 15px;
    text-align:center;
}

.reach-section{
    background:
    linear-gradient(
        rgba(2,20,46,.80),
        rgba(2,20,46,.80)
    ),
    url('../beach.jpg');

    background-size:cover;
    background-position:center;
    background-attachment:fixed;
}
@media(max-width:768px){
.reach-section{
    background-position:70% center;
}
}