/*General*/
*{
	margin: 0;
	padding: 0;
	outline: none;
	border: none;
	text-decoration: none;
}
*,
*:before,
*:after{
	box-sizing: border-box;
}
a{
	text-decoration: none;
	outline: none;
}
ul,ol{
	list-style: none;
	margin-bottom: 0;
}
body{
	position: relative;
	font-family: 'Roboto', sans-serif;
	background-color: #fff;
}
img {
    vertical-align: middle;
    height: auto;
    max-width: 100%;
}
button{
	cursor: pointer;
	overflow: hidden;
	background: transparent;
	border-bottom: 1px solid transparent;
}
.container{
	margin-right: auto;
	margin-left: auto;
	padding-right: 20px;
	padding-left: 20px;
	max-width: 100%;
	width: 1530px;
}
.social i{
	transition: all ease .3s;
	color: #fff;
	text-align: center;
	font-size: 16px;
	line-height: 40px;
	height: 40px;
	width: 40px;
	margin: 0;
	border-radius: 50%;
}
.social i:hover{
	background-color: #00B6EF;
}

/*Header*/
header{
	z-index: 999;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	padding: 30px 0 10px;
	background-color: transparent;
}
header > div{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
header .container:before,
header .container:after{
	display: none;
}
header .home_navbar .nav ul{
	display: flex;
	margin: 0;
}
header .home_navbar .nav ul li{
	padding: 5px 20px;
	border-right: 2px solid rgba(0, 0, 0, .15);
}
header .home_navbar .nav ul li:last-child{
	border-right: none;
}
header .home_navbar .nav ul li a{
	font-weight: 500;
	line-height: normal;
	font-size: 16px;
	text-transform: uppercase;
	color: #FFFFFF;
}
/*Mobile menu*/
header .mobile_menu{
	display: none;
}
header .mobile_menu .line{
	width: 30px;
	height: 3px;
	background: #fff;
	margin-bottom: 8px;
	transition: 0.25s all ease;
	border-radius: 10px;
}
header .mobile_menu.active{
	top: calc(50% - 3px);
}
header .mobile_menu.active .line:nth-child(1){
	transform: rotate(45deg);
	margin-bottom: -3px;
}
header .mobile_menu.active .line:nth-child(2){
	display: none;
}
header .mobile_menu.active .line:nth-child(3){
	transform: rotate(-45deg);
}
header .home_navbar .nav ul.active{
	display: flex;
}
/*Mobile menu END!*/
/*Header END!*/

/*Home*/
/*Banner*/
.banner{
	position: relative;
}
.banner .item:before{
	z-index: 1;
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	background-color: #003054;
	opacity: .65;
}
.banner:after{
	display: none;
	z-index: 2;
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 60px;
	width: 100%;
	background: url(../img/banner-wave.png) no-repeat center;
	background-size: 100% 100%;
}
.banner .item{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 800px;
}
.banner .banner-container{
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	max-width: 768px;
	margin-top: 90px;
	padding: 0 20px;
}
.banner .item .line{
	height: 2px;
	width: 100px;
	margin: 20px 0;
	background-color: #FFFFFF;
}
.banner .item .title{
	font-family: Roboto;
	font-style: normal;
	font-weight: bold;
	line-height: normal;
	font-size: 60px;
	text-align: center;
	color: #FFFFFF;
	text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.35);
}
@media only screen and (min-width: 992px) {
	.banner .item .title {
		width: 120%;
	}
}
.banner .item .title span{
	color: #00B6EF;
}
.banner .item .text-after-title{
	font-weight: 300;
	line-height: 36px;
	font-size: 24px;
	text-align: center;
	color: #FFFFFF;
}
.banner .item button{
	transition: all ease .3s;
	cursor: pointer;
	background: #00B6EF;
	border-radius: 5px;
	border: 1px solid transparent;
	padding: 15px 50px;
	font-weight: 500;
	line-height: 27px;
	font-size: 16px;
	text-align: center;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #FFFFFF;
	box-shadow: none !important;
}
.banner .item button:hover{
	color: #00B6EF !important;
	background: #FFFFFF;
	border-color: #00B6EF;
}
.banner .owl-theme .owl-dots {
	display: none !important;
}
.banner .owl-theme .owl-nav{
	margin-top: 0;
	display: flex;
	justify-content: space-between;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
}
@media only screen and (max-width: 991px) {
	.banner .owl-theme .owl-nav {
		top: inherit;
    	bottom: 31px;
		z-index: 9;
	}
}
@media only screen and (max-width: 767px) {
	.banner .owl-theme .owl-nav {
    	bottom: 19px;
        justify-content: center;
		gap: 30px;
	}
}
.banner .owl-carousel .owl-nav button.owl-next,
.banner .owl-carousel .owl-nav button.owl-prev{
	transition: all ease .3s;
	/*padding: 13px 18px 17px 18px !important;*/
	width: 60px;
	height: 60px;
	border-radius: 50%;
	box-shadow: none !important;
	font-size: 20px;
	background-color: rgba(255, 255, 255, .65);
	font-size: 40px;
	color: #00B6EF;
}
.banner .owl-carousel .owl-nav button.owl-next span,
.banner .owl-carousel .owl-nav button.owl-prev span{
	margin-top: -4px;
    display: block;
}
.banner .owl-carousel .owl-nav button.owl-next:hover,
.banner .owl-carousel .owl-nav button.owl-prev:hover{
	color: #FFFFFF;
	background-color: rgba(0, 48, 84, .65);
}
.banner .owl-carousel .owl-nav button.owl-prev{
	margin-left: 50px;
}
.banner .owl-carousel .owl-nav button.owl-next{
	margin-right: 50px;
}
.banner .owl-theme .owl-dots{
	position: absolute;
	bottom: 50px;
	left: 0;
	right: 0;
}
@media only screen and (max-width: 767px){
	.banner .owl-theme .owl-dots{
		bottom: 20px;
	}
}
.banner .owl-theme .owl-dots .owl-dot{
	box-shadow: none !important;
}
.banner .owl-theme .owl-dots .owl-dot span{
	position: relative;
	margin: 0 10px;
	width: 16px;
	height: 16px;
	background: transparent;
	border: 1px solid #fff;
}
.banner .owl-theme .owl-dots .owl-dot.active span:after{
	content: '';
	width: 10px;
	height: 10px;
	background: #00B6EF;
	border-radius: 50%;
	position: absolute;
	top: 2px;
	left: 2px;
}

/*Banner END!*/

/*About*/
.about{
	padding: 100px 0;
	background: #fff;
}
.about .container{
	position: relative;
}
.about .about_img{
	z-index: 0;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 65%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.about .about_cont{
	position: relative;
	z-index: 1;
	margin: 30px 0;
	padding: 60px;
	width: 60%;
	box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.15);
	background: url(../img/fish-bg.svg) no-repeat #ffffff;
	background-position: 11% 21%;
}
.about .about_cont > span{
	font-weight: bold;
	font-size: 24px;
	color: #00B6EF;
}
.about .about_cont .title{
	font-family: Roboto;
	font-weight: bold;
	line-height: normal;
	font-size: 72px;
	color: #003054;
}
.about .about_cont .line{
	height: 4px;
	width: 100px;
	margin: 20px 0;
	background-color: #003054;
}
.about .about_cont .text-after-title p{
	font-weight: 300;
	line-height: 27px;
	font-size: 16px;
	color: #003054;
}
.about .about_cont .buttons{
	display: flex;
}
.about .about_cont .buttons button{
	cursor: pointer;
	transition: all ease .3s;
	font-weight: 500;
	line-height: 27px;
	font-size: 16px;
	text-align: center;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #FFFFFF;
	padding: 16px 30px;
	background: #00B6EF;
	border: 1px solid transparent;
	border-radius: 5px;
	box-shadow: none !important;
}
.about .about_cont .buttons button.button_file{
	color: #00B6EF;
	border: 1px solid #A6A6A6;
	background-color: transparent;
	margin-left: 30px;
}
.about .about_cont .buttons button.button_file i{
	margin-right: 10px;
}
.about .about_cont .buttons button:hover{
	color: #00B6EF !important;
	background-color: #FFFFFF;
	border-color: #00B6EF;
}
.about .about_cont .buttons button.button_file:hover{
	color: #FFFFFF !important;
	background-color: #00B6EF;
	border-color: transparent;
}
/*About END!*/

/*Production*/
.production{
	display: flex;
	margin: 10px 0;
}
.production > div{
	flex-basis: 50%;
	position: relative;
	min-height: 500px;
}
.production > div:before{
	content: '';
	position: absolute;
	z-index: 0;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 48, 84, .65);
}
.production > div > div{
	position: relative;
	z-index: 1;
}
.production .text_block{
	padding: 50px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.production .text_block > div{
	width: 80%;
}
.production .text_block .title{
	font-family: Roboto;
	font-weight: bold;
	line-height: normal;
	font-size: 58px;
	color: #FFFFFF;
	text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.35);
}
.production .text_block .line{
	height: 4px;
	width: 100px;
	margin: 20px 0;
	background-color: #00B6EF;
}
.production .text_block .text-after-title{
	font-weight: 300;
	line-height: 36px;
	font-size: 24px;
	color: #FFFFFF;
}

.production .video_block:before{
	display: none;
}
.production .video_block .video_block_decor{
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.production .video_block .video_block_decor:before{
	content: '';
	position: absolute;
	z-index: 0;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 48, 84, .65);
}
.production .video_block .video_block_decor img{
	cursor: pointer;
	position: relative;
	z-index: 5;
}
/*Production END!*/

/*Events*/
.events{
	position: relative;
	padding: 70px 0 85px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.events:before{
	content: '';
	position: absolute;
	z-index: 0;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 48, 84, .65);
}
.events .container{
	position: relative;
	z-index: 1;
}
.events .title{
	text-align: center;
	font-family: Roboto;
	font-weight: bold;
	font-size: 58px;
	line-height: normal;
	color: #FFFFFF;
	text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.35);
}
.events .line{
	height: 4px;
	width: 100px;
	background-color: #00B6EF;
	margin: 20px auto 40px;
}
.events .flex_events_slider{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.events .item{
	position: relative;
	background-color: #fff;
	margin: 0 15px;
}
.events .item .event_title{
	text-align: center;
	padding: 15px 0 35px;
}
.events .item .event_title p{
	margin: 0;
	font-family: Roboto;
	font-weight: bold;
	font-size: 18px;
	line-height: 30px;
	text-align: center;
	color: #222222;
}
.events .item .event_date{
	z-index: 2;
	position: absolute;
	bottom: -15px;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.events .item .event_date p{
	padding: 5px 20px;
	background-color: #00B6EF;
	font-weight: normal;
	font-size: 14px;
	line-height: 21px;
	color: #FFFFFF;
	margin: 0;
}
.events_slider_carousel .owl-stage-outer{
	padding-bottom: 50px;
}
/*Events END!*/

/*Brands*/
.brands{
	padding: 70px 0;
	background-color: #fff;
}
.brands .title_block{
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	max-width: 750px;
}
.brands .title_block .title{
	font-family: Roboto;
	font-weight: bold;
	line-height: normal;
	font-size: 58px;
	color: #00B6EF;
}
.brands .title_block .title span{
	color: #003054;
}
.brands .title_block .line{
	height: 4px;
	width: 100px;
	background-color: #003054;
	margin: 20px 0;
}
.brands .title_block .text-after-title{
	font-weight: 300;
	line-height: 36px;
	font-size: 24px;
	color: #222222;
}
.brands .brands_block{
	margin-top: 25px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-around;
}
.brands .brands_block figure{
	margin: 5px;
	border: 1px solid #F0F0F0;
}
.brands .brands_block figure img{
	max-height: 145px;
}
/*Brands END!*/

/*News*/
.news{
	position: relative;
	padding: 70px 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: none;
}
.news:before{
	content: '';
	position: absolute;
	z-index: 0;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 48, 84, .65);
}
.news .container{
	position: relative;
	z-index: 1;
}
.news .news_cont .title{
	font-family: Roboto;
	font-weight: bold;
	line-height: normal;
	font-size: 72px;
	color: #FFFFFF;
	text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.35);
}
.news .news_cont .line{
	height: 4px;
	width: 100px;
	background-color: #00B6EF;
	margin: 20px 0 40px;
}
.news .item_cont{
	background: #fff;
}
.news .news-slider{
	position: relative;
}
.news .news-slider .owl-nav{
	position: absolute;
	top: -105px;
	right: 0;
}
.news .news-slider .owl-nav button.owl-next,
.news .news-slider .owl-nav button.owl-prev{
	transition: all ease .3s;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 1px solid #fff;
	box-shadow: none !important;
	font-size: 20px;
	background-color: transparent;
	font-size: 40px;
	color: #ffffff;
}
.news .news-slider .owl-nav button.owl-next span,
.news .news-slider .owl-nav button.owl-prev span{
	margin-top: -4px;
    display: block;
}
.news .news-slider .owl-nav button.owl-next:hover,
.news .news-slider .owl-nav button.owl-prev:hover{
	border-color: transparent;
	background-color: rgba(0, 48, 84, .25);
}
.news .news-slider .owl-nav button.owl-prev{
	margin-right: 15px;;
}
.news .news-slider .owl-nav button.owl-next{
	margin-left: 15px;
}
.news .news-slider .owl-stage{
	display: flex;
}
.news .news-slider .owl-item{
	background-color: #fff;
}
.news .item_cont img{
	max-width: 100%;
	max-height: 225px;
}
.news .item_cont .text{
	padding: 20px;
}
.news .item_cont .text .title{
	font-family: Roboto;
	font-weight: bold;
	line-height: 30px;
	font-size: 18px;
	color: #222222;
}
.news .item_cont .text span{
	line-height: 21px;
	font-size: 14px;
	color: #808080;
}
/*News END!*/

/*Social*/
.home_social{
	position: relative;
	margin-top: 10px;
	padding: 70px 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.home_social:before{
	content: '';
	position: absolute;
	z-index: 0;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 48, 84, .65);
}
.home_social .content{
	position: relative;
	z-index: 1;
}
.home_social .content .title{
	text-align: center;
	font-family: Roboto;
	font-weight: bold;
	font-size: 58px;
	line-height: normal;
	text-align: center;
	color: #FFFFFF;
	text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.35);
}
.home_social .content .line{
	height: 4px;
	width: 100px;
	background-color: #00B6EF;
	margin: 20px auto;
}
.home_social .content .social_items{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-around;
}
.home_social .content .social_item{
	margin-top: 20px;
}
/*Social END!*/

/*Footer*/
.before_footer{
	background: #003054;
	border-bottom: 1px solid #002947;
}
.before_footer .nav{
	display: flex;
	justify-content: center;
}
.before_footer .nav ul{
	display: flex;
	margin: 0;
}
.before_footer .nav ul li{
	padding: 5px 20px;
	border-right: 2px solid rgba(0, 0, 0, .15);
}
.before_footer .nav ul li:last-child{
	border-right: none;
}
.before_footer .nav ul li a{
	font-weight: 500;
	font-size: 16px;
	text-transform: uppercase;
	color: #FFFFFF;
}
.footer_fish{
	background: #003054;
	padding: 30px 0;
}
.footer_fish .footer_cont{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer_fish .footer_logo{
	position: relative;
}
.footer_fish .copyright{
/* 	position: absolute; */
/* 	bottom: -5px;
	left: 88px; */
	font-weight: 500;
	line-height: 21px;
	font-size: 14px;
	color: #FFFFFF;
	text-align: right;
}
.footer_fish .footer_info{
	display: flex;
	justify-content: space-around;
	flex-basis: 50%;
}
.footer_fish .footer_info > div{
	flex-basis: 31%;
	padding-left: 2%;
}
.footer_fish .footer_info .address{
	display: flex;
}
.footer_fish .footer_info .fax{
	margin-top: 15px;
}
.footer_fish .footer_info span{
	font-weight: bold;
	line-height: 24px;
	font-size: 16px;
	text-transform: uppercase;
	color: #00B6EF;
	margin-right: 4px;
}
.footer_fish .footer_info p,
.footer_fish .footer_info a{
	margin: 0;
	font-size: 16px;
	color: #FFFFFF;
}
.footer_fish .social p{
	font-weight: bold;
	line-height: 24px;
	font-size: 16px;
	text-align: right;
	text-transform: uppercase;
	color: #00B6EF;
}
/*Footer END!*/

/*Home END!*/

/*Breadcrumbs*/
.kama_breadcrumbs a,
.kama_breadcrumbs .kb_sep,
.kama_breadcrumbs .kb_title{
	font-family: Roboto;
	font-weight: bold;
	line-height: 24px;
	font-size: 18px;
	color: #00B6EF;
}
.kama_breadcrumbs .kb_title{
	color: #000;
}
/*Breadcrumbs END!*/

/*Single product*/
header.single_product_header{
	position: relative;
	padding: 10px 0;
	background: #003054;
}
/*Top_page*/
.single_product .top_page{
	position: relative;
	min-height: 400px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 75px 0;
}
.single_product .top_page:before{
	content: '';
	position: absolute;
	z-index: 0;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 48, 84, .65);
}
.single_product .top_page .container{
	position: relative;
	z-index: 1;
	text-align: center;
}
.single_product .top_page .main-title > *{
	margin: 5px 0;
	padding: 0;
	font-family: Roboto;
	font-weight: bold;
	line-height: normal;
	font-size: 72px;
	text-align: center;
	color: #FFFFFF;
	text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.35);
}
.single_product .top_page .main-title span{
	font-size: 24px;
}
.single_product .top_page .date_period{
	display: inline-block;
	margin-top: 30px;
	padding: 5px;
	background-color: rgba(0, 182, 239, .25);
}
.single_product .top_page .date_period > div{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 30px;
	border: 1px solid #E6E6E6;
}
.single_product .top_page .date_period img{
	margin-right: 15px;
}
.single_product .top_page .date_period p{
	margin: 0;
	font-weight: 500;
	line-height: 24px;
	font-size: 16px;
	color: #FFFFFF;
}
.single_product .top_page .date_period p:last-child span{
	display: none;
}
/*Page content*/
.single_product .page_content{
	padding: 70px 0;
}
.single_product .page_content .content{
	display: flex;
}
.single_product .page_content .sidebar{
	flex-basis: 30%;
	margin-right: 5%;
}
.single_product .page_content .product_content{
	flex-basis: 65%;
}
/*Sidebar*/
.single_product .page_content .sidebar .title{
	background-color: #003054;
	padding: 11px 0;
	font-family: Roboto;
	font-weight: bold;
	line-height: normal;
	font-size: 30px;
	text-align: center;
	color: #FFFFFF;
}
.single_product .page_content .sidebar .title > *{
	margin: 0;
	padding: 0;
}
.single_product .page_content .sidebar .product_list{
	background-color: #FAFAFA;
	padding: 30px 50px;
}
.single_product .page_content .sidebar .product_list li{
	list-style-type: none;
	padding: 10px 0;
	border-bottom: 2px solid #E6E6E6;
}
.single_product .page_content .sidebar .product_list li a{
	color: #003054;
	font-weight: 500;
	line-height: normal;
	font-size: 16px;
}
.single_product .page_content .sidebar .product_list li:last-child{
	border-bottom: none;
}
.single_product .page_content .sidebar .product_list li.active{
	position: relative;
	padding-left: 35px;
}
.single_product .page_content .sidebar .product_list li.active a{
	color: #00B6EF;
}
.single_product .page_content .sidebar .product_list li.active:before{
	content: '';
	position: absolute;
	top: calc(50% - 6.5px);
	left: 0;
	width: 26px;
	height: 13px;
	background-image: url(../img/fish-icon.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 100%;
}
/*Product content*/
.single_product .page_content .product_content{}
.single_product .product_content .featured_img{
	display: flex;
	align-items: center;
	justify-content: center;
}
.single_product .product_content .editor{
	margin: 30px 0;
	float: left;
	width: 50%;
}
.single_product .product_content .editor p{
	font-family: Roboto;
	font-style: normal;
	font-weight: normal;
	line-height: 30px;
	font-size: 18px;
	color: #003054;
}
.single_product .product_content .editor ul li{
	position: relative;
	padding-left: 35px;
	margin-top: 20px;
	font-family: Roboto;
	font-style: normal;
	font-weight: 500;
	line-height: 30px;
	font-size: 18px;
	color: #003054;
}
.single_product .product_content .editor ul li:before{
	content: '';
	position: absolute;
	top: calc(50% - 6.5px);
	left: 0;
	width: 26px;
	height: 13px;
	background-image: url(../img/fish-icon-black.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 100%;
}
.single_product .product_content .habitat{
	display: flex;
	float: left;
	width: 50%;
	margin-top: 30px;
	flex-direction: column;
    align-items: center;
}
.single_product .product_content .habitat img{
	/*flex-basis: 66%;*/
	max-width: 66%;
}
.single_product .product_content .habitat_info{
	flex-basis: 30%;
	margin-left: 4%;
}
.single_product .product_content .habitat_info > p{
	font-weight: 500;
	line-height: 30px;
	font-size: 24px;
	color: #003054;
	margin-bottom: 15px;
}
.single_product .product_content .habitat_info .country{
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}
.single_product .product_content .habitat_info .country img{
	max-height: 20px;
	margin-left: 10px;
	margin-right: 15px;
	flex-basis: auto;
}
.single_product .product_content .habitat_info .country p{
	font-weight: 500;
	line-height: 27px;
	font-size: 18px;
	color: #003054;
	margin: 0;
}
.single_product .product_content .habitat_info button{
	cursor: default;
	width: 100%;
	text-align: center;
	margin: 0;
	padding: 8px auto;
	font-weight: 500;
	line-height: 24px;
	font-size: 16px;
	color: #FFFFFF;
	border-radius: 0;
	background: #E66D1E;
	box-shadow: none;
}
.single_product .product_content .habitat_info button:hover{
	background: #E66D1E;
}
.single_product .product_content .product_info{
	clear: both;
	padding-top: 1px;
}
.single_product .product_content .product_info .title{
	margin: 30px 0 20px;
	text-align: center;
	font-family: Roboto;
	font-weight: bold;
	line-height: normal;
	font-size: 30px;
	color: #003054;
}
.single_product .product_content .product_info table,
.single_product .product_content .product_info table td,
.single_product .product_content .product_info table th{
	border: 1px solid #EBEBEB;
}
.single_product .product_content .product_info table th{
	text-align: center;
	background: #003054;
	color: #fff;
	font-weight: normal;
	font-size: 16px;
}
.single_product .product_content .product_info .ceil_1 th{width: 100%;}
.single_product .product_content .product_info .ceil_2 th{width: 50%;}
.single_product .product_content .product_info .ceil_3 th{width: 33.33%;}
.single_product .product_content .product_info .ceil_4 th{width: 25%;}
.single_product .product_content .product_info table td{
	padding: 20px;
	color: #003054;
	font-size: 14px;
	vertical-align: baseline;
}
/*Single product END!*/

/*All products*/
.all_products{}
/*Top page*/
.all_products .top_page{
	position: relative;
	padding: 70px 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.all_products .top_page:before{
	content: '';
	position: absolute;
	z-index: 0;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 48, 84, .65);
}
.all_products .top_page .container{
	position: relative;
	z-index: 1;
}
.all_products .top_page .main-title{
	font-family: Roboto;
	font-weight: bold;
	font-size: 72px;
	line-height: normal;
	text-align: center;
	color: #00B6EF;
	text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.35);
	margin-bottom: 10px;
}
.all_products .top_page .line{
	height: 4px;
	width: 100px;
	margin: 0 auto;
	background-color: #fff;
}
/*Page content*/
.all_products .page_content{
	background-color: #fff;
	padding: 60px 0;
}
.all_products .page_content .content{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.all_products .page_content a{
	display: block;
	flex-basis: 25%;
	opacity: 1 !important;
}
.all_products .page_content .product{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 95px 0;
	max-height: 235px;
	margin-right: 10px;
	margin-bottom: 10px;
	overflow: hidden;
}
.all_products .page_content .product:before{
	content: '';
	position: absolute;
	z-index: 1;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, .5);
}
.all_products .page_content a:nth-child(4n) .product{
	margin-right: 0;
}
.all_products .page_content .product figure{
	transition: all ease .3s;
	position: absolute;
	z-index: 0;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.all_products .page_content a:hover figure{
	transform: scale(1.1);
}
.all_products .page_content .product p{
	position: relative;
	z-index: 2;
	margin: 0;
	font-family: Roboto;
	font-weight: bold;
	font-size: 36px;
	line-height: normal;
	text-align: center;
	color: #FFFFFF;
	text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.35);
}
/*All products END!*/

/*404 Page*/
.header-filter-gradient {
    background: #003054;
}
input.search-submit {
    background-color: #00b6ef;
    box-shadow: none;
}
input.search-submit:hover {
    box-shadow: none;
    opacity: 0.6;
    background: #00b6ef;
}

.banner .owl-carousel.banner-owl {
	display: block;
}

.svg_icon {
	display: inline-block;
	width: 40px;
	height: 40px;
}

.svg_icon svg {
	width:14px;
	height: 14px;
}

.svg_icon svg path {
	fill: #ffffff;
}