.ship-text-area {
	padding-top: 74px;
	padding-bottom: 30px;
}
.ship-text-row {
	display: flex;
	position: relative;
	align-items: center;
}
.ship-text-tile-img {
	position: absolute;
	top: 50px;
	left: 200px;
	opacity: 0.4;
}
.ship-text-image {
	width: calc((100vw / 2) + 50px );
	flex-shrink: 0;
	position: relative;
	z-index: 1;
	animation: boat 6s ease-in-out infinite;
	margin-left: -40px;
}
@keyframes boat{
	0%{
	transform:translate(0,0)rotate(-.75deg);
	}
	50%{
	transform:translate(6px,5px)rotate(.75deg);
	}
	100%{
	transform:translate(0,0)rotate(-.75deg);
	}
}
.ship-text-image img {
	width: 100%;
	position: absolute;
	top: 0;
	right: 0;
}
.ship-text-image .ship-text-image-1 {
	position: relative;
}
.ship-text-content {
	width: 50%;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}
.ship-text-content h3 {
	font-size: 16px;
	font-weight: 500;
	color: #00B4D8;
	margin-bottom: 5px;
}
.ship-text-content h2 {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 10px;
}
.ship-text-arti {
	font-size: 16px;
	margin-bottom: 20px;
}
.ship-text-btn {
	width: 166px;
	height: 47px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #00B4D8;
	color: #fff !important;
	font-weight: 500;
}
.ship-text-image-2 {
	animation: shipchange 5s linear infinite;
}
@keyframes shipchange {
  0%   {
  	opacity: 0;
  }
  40%  {
  	opacity: 0;
  }
  50%  {
  	opacity: 1;
  }
  90% {
  	opacity: 1;
  }
  100% {
  	opacity: 0;
  }
}
@media only screen and (max-width: 1480px) {
	.ship-text-area {
		padding-top: 70px;
		padding-bottom: 46px;
	}
	.ship-text-tile-img {
		width: 600px;
		top: 24px;
	}
}
@media only screen and (max-width: 1280px) {
	.ship-text-tile-img {
		display: none;
	}
}
@media only screen and (max-width: 991px) {
	.ship-text-row {
		flex-direction: column-reverse;
		align-items: flex-end;
	}
	.ship-text-content {
		width: 100%;
	}
	.ship-text-area {
		padding-top: 50px;
		padding-bottom: 62px;
	}
	.ship-text-image {
		width: 100%;
		max-width: 500px;
		margin-right: -15px;
	}
}

@media only screen and (max-width: 768px){
	.ship-text-content h2{
		font-size:32px;
	}
}