.mediasection {
	position: relative;
}
.mediasection .imgbx {
	position: relative;
	overflow: hidden;
}
.mediasection .imgbx::before {
	content: "";
	display: block;
	padding-bottom: 100vh;
}
.mediasection .imgbx::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, #0b1f3a 0%, rgba(11,31,58,0.9) 30%, rgba(28,50,88,0.6) 55%, rgba(63,175,110,0.7) 80%, #3FAF6E 100%);
}
.mediasection.nogradient .imgbx::after {
  display: none;
}
.mediasection .imgbx img,
.mediasection .imgbx video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  height: 100%;
  width: 100%;
  object-position: center;
}
.mediasection .mediainner {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 30px 0;
}
/* .mediasection .row,
.mediasection .textarea {
  height: 100%;
} */
.mediasection .textarea {
  width: 100%;
  max-width: 540px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.mediasection h1 {
	color: #fff;
	font-size: 60px;
  line-height: 1;
  font-weight: 400;
	margin-bottom: 30px;
}
.mediasection p {
	color: #fff;
	margin: 0;
  font-size: 20px;
  line-height: 1.2;
  max-width: 320px;
}
.mediasection .mediatop p {
  margin-top: 12px;
}
.mediabot {
    position: absolute;
    bottom: 30px;
    left: 0;
    z-index: 2;
    width: 100%;
    padding: 0;
}
.mediabot .playmedia {
    width: 44px;
    cursor: pointer;
}

@media only screen and (max-width:991px) {
.mediasection h1 {
	font-size: 52px;
	margin-bottom: 20px;
}
.mediasection p {
  font-size: 18px;
}
}

@media only screen and (max-width:767px) {
.mediasection .imgbx::before {
    content: "";
    display: block;
    padding-bottom: 50vh;
}
.mediasection .mediainner {
  padding: 25px 0;
}
.mediasection h1 {
	font-size: 32px;
}
.mediasection p {
  font-size: 16px;
}
.mediasection .mediatop p {
  margin-top: 0;
}
.mediabot {
    bottom: 20px;
}
}
