.product-section {
	background-image: radial-gradient(#114a7c,#103d5f);
}
.product-section .content-title .maxtitle-3 {
	color: var(--sk-off-white);
}
.product-section .content-title .sub-title {
	color: var(--sk-off-white);
}
.product-section .content-title .sub-left-line:before,
.product-section .content-title .sub-right-line:before,
.product-section .content-title .sub-right-line, 
.product-section .content-title .sub-left-line {
	background-color: var(--sk-off-white);
}
.product-blog {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	background-color: var(--sk-off-white);
	border-radius: 20px;
	box-shadow: 0px 10px 15.8px 4.2px rgba(17, 73, 124, 0.4);
	padding: 10px;
}
.product-img {
	position: relative;
	display: flex;
	width: 100%;
	padding-bottom: 74%;
	border-radius: 20px;
	background-color: rgb(229, 231, 235);
	box-shadow: inset 0px 0px 70px 0px rgba(155, 153, 152, 0.7);
	transition: all backgroun-image 0.3s ease-out;
}
.product-img img {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 85%;
    max-height: 85%;
    margin: auto;
    transform: translate(-50%, -50%);
}
.product-info {
	padding-top: 34px;
	text-align: center;
	max-width: 340px;
	margin-left: auto;
	margin-right: auto;
}
.product-info h3 {
	color: #020b13;
	font-family: 'Roboto';
	font-weight: 700;
	margin: 0 0 10px;
	text-transform: uppercase;
	font-size: 25px;
	line-height: 1.1;
}
.product-info h3 a {
	text-decoration: none;
	color: #020b13;
}
.product-info h3 a:hover {
	color: var(--sk-secondary);
}
.product-info p {
	color: #020b13;
	font-family: 'Poppins';
	margin: 0;
	font-size: 17px;
	line-height: 1.765;
}
.product-blog .btn-outer {
	flex: 1 0 0;
	align-items: flex-end;
	margin-top: 15px;
	margin-bottom: 30px;
}
.product-blog .btn {
	background-color: var(--sk-primary);
}
.product-blog:hover .product-img {
	background-image: -moz-linear-gradient( 90deg, rgb(66,151,219) 0%, rgb(16,63,99) 100%);
	background-image: -webkit-linear-gradient( 90deg, rgb(66,151,219) 0%, rgb(16,63,99) 100%);
	background-image: -ms-linear-gradient( 90deg, rgb(66,151,219) 0%, rgb(16,63,99) 100%);
}
.product-slider-outer {
	position: relative;
}
.product-slider .owl-nav {
	position: absolute;
	left: 0;
	top: 32%;
	transform: translateY(-50%);
	width: 100%;
	margin: 0;
}
.product-slider.owl-carousel .owl-nav button.owl-next, 
.product-slider.owl-carousel .owl-nav button.owl-prev {
	position: absolute;
	left: -95px;
	top: 50%;
	transform: translateY(-50%);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	box-shadow: 0px 5px 22.12px 5.88px rgba(63, 30, 11, 0.1);
	font-size: 0;
	padding: 0;
	background-color: var(--sk-white);
}
.product-slider.owl-carousel .owl-nav button.owl-next {
	left: auto;
	right: -95px;
}
.product-slider.owl-carousel .owl-nav button.owl-next:after, 
.product-slider.owl-carousel .owl-nav button.owl-prev:after {
	position: absolute;
	content: '';
	display: flex;
	width: 16px;
	height: 16px;
	background: url(../images/slider-arrow.svg) no-repeat center;
	background-size: contain;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
.product-slider.owl-carousel .owl-nav button.owl-prev:after {
	transform: translate(-50%,-50%) rotate(-180deg);
}
.product-slider.owl-carousel .owl-dots {
	position: relative;
	text-align: center;
	margin-top: 60px;
	line-height: 0;
}
.product-slider.owl-carousel .owl-dots .owl-dot {
	position: relative;
	padding: 0;
	margin: 0 12px;
	width: 19px;
	height: 19px;
	background-color: rgba(66, 151, 219, 0);
	font-size: 0;
	border: 2px solid rgb(198, 209, 217);
	border-radius: 50%;
}
.product-slider.owl-carousel .owl-dots .owl-dot.active {
	background-color: rgba(66, 151, 219, 1);
	border-color: rgba(66, 151, 219, 1);
}

@media (max-width: 1850px){
	.product-slider.owl-carousel .owl-nav button.owl-prev {
		left: -80px;
	}
	.product-slider.owl-carousel .owl-nav button.owl-next {
		left: auto;
		right: -80px;
	}
}

@media (max-width: 1199px){
	.product-slider.owl-carousel .owl-nav button.owl-prev {
		left: -70px;
	}
	.product-slider.owl-carousel .owl-nav button.owl-next {
		left: auto;
		right: -70px;
	}
}
@media (max-width: 991px){
	.product-slider.owl-carousel .owl-nav button.owl-prev {
		left: -50px;
	}
	.product-slider.owl-carousel .owl-nav button.owl-next {
		left: auto;
		right: -50px;
	}
}
@media (max-width: 767px){
	.product-slider.owl-carousel .owl-nav button.owl-prev {
		left: -10px;
		width: 40px;
		height: 40px;
	}
	.product-slider.owl-carousel .owl-nav button.owl-next {
		left: auto;
		right: -10px;
		width: 40px;
		height: 40px;
	}
	.product-slider.owl-carousel .owl-dots {
		margin-top: 40px;
	}
	.product-slider.owl-carousel .owl-dots .owl-dot {
		width: 14px;
		height: 14px;
		margin: 0 7px;
	}
}