/* General */

:root {
	--color1: #222222;
	--color2: #009a4e;
	--color3: #ffd400;
}

body {
	font-family: 'Montserrat', sans-serif;
	color: var(--color1);
	;
}

img {
	max-width: 100%;
}

a {
	display: inline-block;
	color: inherit;
	transition: all .3s ease;
}

a:hover {
	text-decoration: none;
	color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
	margin-bottom: 5px;
	font-weight: 700;
}

h1 {
	font-size: 32px;
}

h2 {
	font-size: 28px;
}

h3 {
	font-size: 26px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 22px;
}

h6 {
	font-size: 20px;
}

p {
	margin-top: 0;
	margin-bottom: 1.5rem;
	line-height: 1.6rem;
	color: var(--color1);
}

ol,
ul,
dl {
	margin-top: 0;
	margin-bottom: 1rem;
	list-style: none
}

ol ol,
ul ul,
ol ul,
ul ol {
	margin-bottom: 0;
}

@-webkit-keyframes pulse-border {
	0% {
		-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		opacity: 1;
	}

	100% {
		-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
		opacity: 0;
	}
}

@keyframes pulse-border {
	0% {
		-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		opacity: 1;
	}

	100% {
		-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
		opacity: 0;
	}
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="file"],
select,
textarea {
	padding: 8px 40px 8px 20px;
	position: relative;
	display: block;
	width: 100%;
	background: #ffffff;
	line-height: 30px;
	height: 40px;
	color: black;
	transition: all 300ms ease;
	border: none;
	border-radius: 3px;
	outline: none;
	border: 1px solid #ced4da;
}

textarea {
	height: 150px;
}

button {
	outline: none;
	cursor: pointer;
	background-color: transparent;
}

.form-group {
	position: relative;
	margin-bottom: 30px;
}

.mobile-nav {
	display: none;
}

.mobile-close-menu {
	display: none;
}

.p70 {
	padding: 70px 0;
}

.pt35 {
    padding-top: 35px;
}

.btn {
	padding: 10px 20px;
}

.btn-green {
	background-color: var(--color2);
	color: #fff;
	border: 1px solid var(--color2);
}

.btn-green:hover {
	background-color: #fff;
	color: var(--color2);
}

.hover {
	position: relative;
}

.hover::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.1);
	opacity: 0;
	transition: all .3s ease;
}

.hover:hover::before {
	opacity: 1;
}

.hover::after {
	font-family: "Font Awesome 5 Pro";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: var(--color1);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	border-radius: 50%;
	opacity: 0;
	transition: all .3s ease;
}

.hover:hover::after {
	opacity: 1;
}

.hover-link::before {
	background-color: rgba(0, 0, 0, 0.1);
}

.hover-link::after {
	content: "\f0c1";
}

.hover-search::before {
	background-color: rgba(0, 0, 0, 0.6);
}

.hover-search::after {
	content: "\f00e";
}

.section-title {
	position: relative;
	font-size: 34px;
	text-transform: uppercase;
	margin-bottom: 30px;
	padding-left: 20px;
	color: var(--color1);
	;
}

.section-title::before {
	content: "";
	position: absolute;
	width: 3px;
	height: 100%;
	background-color: var(--color2);
	top: 0;
	left: 0;
	border-radius: 26px;
}

.darkbg {
	background: #f9f9f9;
}

.owl-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.owl-dots .owl-dot span {
	width: 10px;
	height: 10px;
	display: inline-flex;
	background-color: #ccc;
	border-radius: 26px;
	transition: all .3s ease;
}

.owl-dots .owl-dot+.owl-dot {
	margin-left: 10px;
}

.owl-dots .owl-dot.active span {
	width: 25px;
	background-color: var(--color2);
}

.pdfs .btn {
	margin-bottom: 30px;
}

.simple-box {
	padding: 30px;
	box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
	background-color: #fff;
	margin-bottom: 30px;
}

table {
	width: 100% !important;
	margin-bottom: 30px;
}

table thead {
	background-color: var(--color2);
	color: #fff;
}

th, td {
	padding: 10px;
	width: 5%;
	min-width: 90%;
	max-width: 100%;
	vertical-align: middle;
	border: 1px solid rgba(51, 51, 51, 0.25);
}

th {
    white-space: nowrap;
}

td p {
	min-height: 1.6rem;
}

tbody tr:nth-child(even) {
	background-color: #eee;
}

tbody {
	font-size: 12px;
}

.search-result {
	font-size: 24px;
	font-weight: 600;
	text-align: center;
}
.flag img{
	max-height: 16px;
}
.img-fluid{
	max-width: 100%;
	height: auto;
	max-height: 100%;
}
.table-scroll{
	clear: both;
}
.table-title, .page-title{
	font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}
@media (max-width: 991px){
	.table-scroll{
		overflow-x: scroll;
	}
}
/* Generals */

/* recipe */

.recipe-img {
	text-align: center;
	float: left;
	padding-right: 30px;
}

.recipe-img img {
	max-width: 150px !important;
}

.recipe-content {
	display: flex;
	align-items: center;
}

/* recipe */

/* General Box */

.general-box {
	border: solid 1px #ddd;
	height: calc(100% - 30px);
	position: relative;
	background-color: white;
	margin-bottom: 30px;
}

.general-box .post-image {
	overflow: hidden;
	margin-bottom: 0;
}

.general-box .post-image a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.general-box .post-image img {
	transition: all 0.4s ease-in-out;
	display: block;
}

.general-box .post-image:hover img {
	transform: scale(1.05);
}

.general-box .title {
	text-align: center;
	background-color: var(--color2);
	color: var(--color3);
}

.general-box .title a {
	font-size: 20px;
	font-weight: 700;
	padding: 0px 10px;
	margin: 10px 0px;
	display: inline-block;
}

/* General Box */

/* error-404 */

.error-page .content {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.error-page .title {
	font-size: 125px;
	text-shadow: 2px 2px 30px var(--color3);
	color: var(--color2);
}

.error-page .title span {
	font-size: 95px;
}

.error-page .desc {
	font-size: 26px;
	margin-bottom: 30px;
	text-align: center;
}

.error-page .btn i {
	margin-right: 10px;
}

.error-page .btn {
	font-size: 20px;
}

.error-footer {
	margin: 0;
	position: fixed;
	width: 100%;
	bottom: 0;
	left: 0;
}

.error-page {
	display: flex;
	align-items: center;
	justify-content: center;
}

.error-footer .copyright {
	margin: 0;
	border: none;
}

.error-header .header-logo {
	top: 0;
	position: relative;
	filter: none;
	text-align: center;
	padding: 15px;
}

.error-header {
	display: block;
}

/* error-404 */


/* contact */

.contact-item {
	border: 1px solid #ccc;
	padding: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.contact-item .title {
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 15px;
}

.contact-item .content {
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-item .icon {
	font-size: 32px;
	margin-right: 20px;
	line-height: 32px;
}

.contact-item .desc a:hover {
	color: #ed1c24;
}

.contact-form {
	margin-top: 20px;
}

.maps iframe {
	width: 100%;
}

.maps {
	margin-bottom: -7px;
}

@media (max-width:991px) {
	.maps {
		margin-bottom: -61px;
	}
}

@media (min-width:992px) and (max-width: 1199px) {
	.maps {
		margin-bottom: -82px;
	}
}

/* contact */

/* sidebar */

.sidebar .widget ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sidebar .widget ul.sidebar-menu li::before {
	font-family: "Font Awesome 5 Pro";
	content: "\f105";
	margin-right: 10px;
	transition: all .3s ease;
}

.sidebar {
	position: sticky;
	top: 100px;
}

.sidebar .widget .title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
	position: relative;
}

.sidebar .widget+.widget {
	margin-top: 30px;
}

.sidebar .widget ul.sidebar-menu li {
	display: flex;
	align-items: center;
}

.sidebar .widget ul.sidebar-menu li:hover::before {
	margin-left: 5px;
	margin-right: 5px;
}

.sidebar .widget a {
	width: 100%;
	padding: 5px 0;
	display: flex;
	align-items: center;
}

.sidebar .widget .title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 2px;
	background-color: var(--color2);
}

.sidebar .widget a i {
	margin-right: 10px;
}

/* sidebar */

/* blog */

.blog-item .content-area {
	display: flex;
	flex-grow: 1;
}

.blog-item .share {
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	padding: 15px;
	background-color: var(--color2);
	color: #fff;
}

.blog-item .title {
	font-size: 22px;
	font-weight: 500;
	color: var(--color1);
	margin-bottom: 15px;
}

.blog-item .content {
	padding: 30px 15px 55px;
	position: relative;
}

.blog-item {
	box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
	height: calc(100% - 30px);
	margin-bottom: 30px;
	background-color: #fff;
	display: flex;
	flex-direction: column;
}

.blog-item .desc {
	margin-bottom: 10px;
}

.blog-item .read-more {
	color: var(--color1);
	border-bottom: 1px solid;
	position: absolute;
	left: 15px;
	bottom: 30px;
}

.blog-item a:hover {
	color: var(--color2);
}

.blog-item img {
	width: 100%;
}

.blog-item .hover {
	width: 100%;
	display: block;
}

.owl-blog .owl-stage {
    display: flex;
}

/* blog */

/* breadcrumb */

.breadcrumb {
	position: relative;
	padding: 70px 0 15px;
	background-position: right;
	background-size: cover;
	color: #fff;
}



.breadcrumb .title {
	font-size: 34px;
}

.breadcrumb ul {
	position: absolute;
	bottom: 0;
	margin: 0;
	padding: 10px 0;
	list-style: none;
	display: flex;
	align-items: center;
}

.breadcrumb ul li::after {
	font-family: "Font Awesome 5 Pro";
	content: "\f054";
	margin-left: 10px;
}

.breadcrumb ul li:last-child::after {
	content: none;
}

.breadcrumb ul li+li {
	margin-left: 10px;
}

.breadcrumb ul li {
	display: flex;
	align-items: center;
}

@media (max-width:991px) {
	.breadcrumb {
		padding: 15px 0 15px;
	}
}

/* breadcrumb */

/* video galllery home */

.video-box {
	height: calc(100% - 30px);
	border: solid 1px #ddd;
	background-color: white;
	margin-bottom: 30px;
	box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
}

.video-box .picture {
	position: relative;
}

.video-box .picture .video-pop {
	position: absolute;
	top: 43%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: auto;
	color: #fff;
}

.video-box .video-play-button {
	position: absolute;
	z-index: 10;
	top: 50%;
	left: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	box-sizing: content-box;
	display: block;
	width: 32px;
	height: 44px;
	border-radius: 50%;
	padding: 18px 20px 18px 28px;
}

.video-box .video-play-button:before {
	content: "";
	position: absolute;
	z-index: 0;
	left: 50%;
	top: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 80px;
	height: 80px;
	background: #fff;
	border-radius: 50%;
	-webkit-animation: pulse-border 1500ms ease-out infinite;
	animation: pulse-border 1500ms ease-out infinite;
}

.video-box .video-play-button:after {
	content: "";
	position: absolute;
	z-index: 1;
	left: 50%;
	top: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 80px;
	height: 80px;
	background: var(--color2);
	border-radius: 50%;
	-webkit-transition: all 200ms;
	transition: all 200ms;
}

.video-box .video-play-button:hover:after {
	background-color: var(--color1);
}

.video-box .video-play-button img {
	position: relative;
	z-index: 3;
	max-width: 100%;
	width: auto;
	height: auto;
}

.video-box .video-play-button span {
	display: block;
	position: relative;
	z-index: 3;
	width: 0;
	height: 0;
	border-left: 32px solid #fff;
	border-top: 22px solid transparent;
	border-bottom: 22px solid transparent;
}

.video-box .title {
	padding: 10px;
	text-align: center;
	font-weight: 700;
	color: var(--color1);
	background-color: white;
}

.video-box .title a {
	width: 100%;
	display: inline-block;
}

/* content-wrapper */

.content-wrapper img {
	max-width: 100%;
	height: auto;
	margin-bottom: 20px;
}

.content-wrapper iframe {
	max-width: 100%;
}

.content-wrapper .title {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 20px;
}

/* content-wrapper */

/* add-info-content */

.add-info {
    display: flex;
    align-items: center;
    padding: 5px 15px 5px;
}

.add-info .title {
    width: 40%;
    margin-bottom: 0;
    font-size: 20px;
}

.add-info .desc {
    width: 60%;
}

.add-info-content {
    background-color: #eee;
	margin-bottom: 30px;
	clear:both;
}

.add-info-content .add-info + .add-info {border-top: 1px solid rgba(51, 51, 51, 0.25);}

/* add-info-content */

/* certificate */

.certificate-item {
	margin-bottom: 30px;
	box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
}

/* certificate */

/* flip box */

.flip-box {
	width: 100%;
	height: 350px;
	perspective: 1000px;
}

.flip-box-inner {
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	transition: transform 0.8s;
	transform-style: preserve-3d;
	-webkit-transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner {
	transform: rotateY(180deg);
}

.flip-box-front,
.flip-box-back {
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

.flip-box-back {
	position: absolute;
	top: 0;
	left: 0;
	transform: rotateY(180deg);
}

/* flip box */

/* feature box */

.col-lg-4 .feature-box .content .icon {
	color: #fff;
}

.feature-box .content {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 30px;
}

.feature-box .front {
	background-position: center;
	background-size: cover;
}

.feature-box .front .content {
	background-color: rgba(35, 53, 33, 0.6);
	color: #fff;
}

.feature-box .back .content {
	box-shadow: 0 6px 30px rgba(0, 0, 0, .12);
}

.feature-box .content .title {
	font-size: 28px;
	font-weight: 700;
}

.feature-box .content .subtitle {
	font-size: 28px;
}

.feature-box .content .desc {
	margin-top: 5px;
	overflow: hidden;
	text-overflow: ellipsis;
}

.feature-box .content .icon {
	font-size: 62px;
}

.feature-box .content .btn {
    margin-top: 5px;
}

@media (max-width:991px) {
	.feature-box {
		margin-bottom: 30px;
	}
}

/* feature box */

/* About */
.about-img {
    width: 100%;
}
.about .experience {
	background-color: #eee;
	position: absolute;
	top: 0;
	left: 0;
	transform: translate(-50%, -150%);
	padding: 10px 25px;
	text-transform: uppercase;
}

.about .content {
	position: relative;
}

.about img {
	margin-bottom: 20px;
}

.about .experience::after {
	content: "";
	position: absolute;
	width: 50%;
	height: 2px;
	background-color: var(--color2);
	left: 0;
	bottom: -10px;
}

.about .experience::before {
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	left: 50%;
	bottom: -10px;
	transform: translateY(calc(50% - 1px));
	border-radius: 50%;
	border: 2px solid var(--color2);
}

.about .title {
	font-size: 30px;
	text-transform: uppercase;
	color: #333;
	margin-bottom: 30px;
	font-weight: 500;
}
.about-features .about-feature .row {
    align-items: center;
}

.about-features .about-feature:nth-child(even) .row {
    flex-direction: row-reverse;
}

@media (max-width:991px) {
	.about .experience {
		position: relative;
		transform: none;
		margin-bottom: 20px;
	}
}

/* About */

/* fly alert */

.fly-alert {
	position: fixed;
	top: 100px;
	right: 50px;
	z-index: 9999;
	margin: 0;
	font-size: 18px;
	display: inline-block;
	width: auto;
}

.alert-danger {
	background-color: #F44336;
}

.alert-success {
	background-color: #2ec4b6;
}

.alert {
	font-weight: bold;
	color: #fff;
	text-align: center;
	padding: 15px;
	border-radius: 4px;
}

/* mobil hemen ara */

.footer-sticky-bar {
	display: none;
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	background-color: var(--color2);
	z-index: 999;
	text-align: center;
}


.footer-sticky-bar a {
	color: #fff;
	width: 100%;
	font-weight: 700;
	font-size: 22px;
	display: flex;
	padding: 15px 0;
	justify-content: center;
	align-items: center;
}

.footer-sticky-bar a i {
	position: relative;
	bottom: -1px;
	margin-right: 10px;
	font-size: 30px;
}


/*fixed header*/

.fixed-header {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	transition: 0.5s;
	z-index: 999;
}

.logo-menu.fixed-header {
	box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.20);
	border-bottom: none;
	background-color: white;
}

.header-top {
	background: #fff;
	border-bottom: 1px solid #eee;
}

.header-top .area {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header-top .item ul {
	display: flex;
	padding: 0;
	margin: 0;
	border-left: 1px solid #eee;
}

.header-top .item ul li {
	border-right: 1px solid #eee;
	padding: 10px 15px;
	min-width: 40px;
}

.header-top .left a {
	color: var(--color1);
	font-size: 15px;
	font-weight: 500;
	display: inline-block;
	align-items: center;
}

.header-top .left a:hover {
	color: var(--color2);
}

.header-top .left i {
	margin-right: 10px;
	color: var(--color1);
}

.header-top .right {
	display: flex;
	align-items: center;
}


.header-top .right i {
	color: var(--color1);
	font-size: 18px;
}

.header-top .right i:hover {
	color: var(--color2);
}
.header-top .right li a {
    display: flex;
}

.header-top .right li {
    display: flex;
    align-items: center;
}

/* lang */

.header-top .main-menu.lang ul {
	display: block;
}

.header-top .main-menu.lang ul li {
	padding: 0px;
	border: none;
}

.header-top .main-menu.lang>ul>li>a {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 15px;
}


.header-top .main-menu.lang .navigation>li>ul>li {
	border-bottom: 1px solid #e2e8f0;
}

.header-top .main-menu.lang .navigation>li>ul>li:last-child {
	border-bottom: none;
}

.header-top .main-menu.lang .navigation>li>ul>li>a {
	display: flex;
	align-items: center;
}

.header-top .main-menu.lang .navigation>li>ul>li>a img {
	margin-right: 10px;
}

.main-menu.lang img {
	max-width: 28px;
}


/* Header Logo Menu */

.logo-menu .menu-area {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.logo-menu .logo img {
	max-width: 100%;
	max-height: 92px;
}

.main-menu {
	position: relative;
}

.main-menu .navigation {
	position: relative;
	margin: 0px;
	padding: 0;
}

.main-menu .navigation>li {
	position: relative;
	float: left;
	padding: 31px 0px;
	margin-right: 30px;
	transition: all 300ms ease;
}

.main-menu .navigation>li:last-child {
	margin-right: 0px;
}

.main-menu .navigation>li>a {
	position: relative;
	display: block;
	text-align: center;
	font-size: 14px;
	line-height: 30px;
	font-weight: 700;
	opacity: 1;
	color: var(--color1);
	padding: 0;
	text-transform: uppercase;
	transition: all 300ms ease;
}

.main-menu .navigation>li:hover>a,
.main-menu .navigation>li.current>a {
	color: var(--color2);
}

.main-menu .navigation>li>ul {
	position: absolute;
	left: 0px;
	top: 100%;
	min-width: 210px;
	padding: 0px 0px;
	z-index: 100;
	opacity: 1;
	margin-top: 1px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	transform: scaleY(0);
	transform-origin: top;
	transition: all 400ms ease;
}

.main-menu .navigation>li>ul>li {
	position: relative;
	width: 100%;
	border-bottom: 1px solid #e2e8f0;
}

.main-menu .navigation>li>ul>li:last-child {
	border-bottom: none;
}

.main-menu .navigation>li>ul>li>a {
	position: relative;
	font-size: 14px;
	line-height: 24px;
	color: var(--color1);
	font-weight: 700;
	text-align: left;
	display: inline-block;
	text-transform: capitalize;
	transition: all 200ms ease;
	padding: 10px 30px 10px 10px;
	width: 100%;
	text-transform: uppercase;
	white-space: nowrap;
}


.main-menu .navigation>li>ul>li>a:before {
	content: '';
	height: 2px;
	width: 0px;
	opacity: 0;
	background-color: var(--color2);
	transition: all 600ms ease;
	margin-right: 10px;
	display: inline-block;
	vertical-align: middle;
}

.main-menu .navigation>li>ul>li:hover>a:before {
	width: 15px;
	opacity: 1;
}

.main-menu .navigation>li>ul>li:hover>a {
	color: var(--color1);
}



.main-menu .navigation>li.dropdown>a:after {
	font-family: "Font Awesome 5 Pro";
	content: "\f107";
	margin-left: 3px;
}


.main-menu .navigation>li>ul>li.dropdown>a:after {
	position: absolute;
	font-family: "Font Awesome 5 Pro";
	content: "\f105";
	margin-left: 3px;
	right: 10px;
}

.main-menu .navigation>li>ul>li>ul {
	position: absolute;
	left: 100%;
	margin-top: -45px;
	min-width: 210px;
	padding: 0px 0px;
	z-index: 100;
	opacity: 1;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	transform: scaleY(0);
	transform-origin: top;
	transition: all 400ms ease;
}

.main-menu .navigation>li>ul>li>ul>li {
	position: relative;
	width: 100%;
	border-bottom: 1px solid #e2e8f0;
}

.main-menu .navigation>li>ul>li>ul>li:last-child {
	border-bottom: none;
}

.main-menu .navigation>li>ul>li>ul>li>a {
	position: relative;
	font-size: 14px;
	line-height: 24px;
	color: #222;
	font-weight: 700;
	text-align: left;
	display: inline-block;
	text-transform: capitalize;
	transition: all 200ms ease;
	padding: 10px 30px 10px 10px;
	width: 100%;
	text-transform: uppercase;
}

.main-menu .navigation>li>ul>li>ul>li>a:before {
	content: '';
	height: 2px;
	width: 0px;
	opacity: 0;
	background-color: var(--color2);
	transition: all 600ms ease;
	margin-right: 10px;
	display: inline-block;
	vertical-align: middle;
}

.main-menu .navigation>li>ul>li>ul>li:hover>a:before {
	width: 15px;
	opacity: 1;
}

.main-menu .navigation>li>ul>li>ul>li:hover>a {
	color: #222222;
}

.main-menu .navigation>li.dropdown:hover>ul {
	transform: scale(1);
	visibility: visible;
	opacity: 1;
}

.main-menu .navigation li>ul>li.dropdown:hover>ul {
	transform: scale(1);
	visibility: visible;
	opacity: 1;
	top: 100%;
}

/* search */

.logo-menu .search {
	color: var(--color1);
	text-transform: uppercase;
	cursor: pointer;
	display: block;
	text-align: center;
	font-size: 15px;
	line-height: 30px;
	font-weight: 700;
	opacity: 1;
	padding: 10px 10px;
}

.search1 .modal-dialog {
	max-width: 60%;
	top: 40%;
}

.search1 .modal-header {
	display: none;
}

.search1 .close {
	position: absolute;
	border: none;
	background: none;
	top: -20px;
	right: 0px;
	font-size: 40px;
	outline: none;
}

.search1 .modal-body {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px;
}

.search1 button.searchbutton {
	background-color: var(--color2);
	color: white;
	border: none;
	padding: 8px 20px;
	font-weight: 500;
	margin-left: 10px;
	border-radius: 3px;
}

.modal-open {
	padding-right: 0px !important;
}

/* footer */

.footer {
	background: url(../images/map.png) no-repeat center center;
	background-color: #262626;
	color: white;
	border-bottom: 2px solid #404040;
}

.footer .logo img {
	max-width: 180px;
	max-height: 50px;
	margin-bottom: 20px;
}

.footer p {
	color: #c2c2c2;
	margin-bottom: 0;
}

.footer a {
	color: #c2c2c2;
}

.footer a:hover {
	color: white;
}

.footer ul {
	padding: 0;
}

.footer ul li {
	margin-bottom: 5px;
	color: #c2c2c2;
	display: flex;
	align-items: center;
}

.footer .title {
	font-size: 20px;
	font-weight: 700;
	border-bottom: solid 1px white;
	margin-bottom: 10px;
	padding-bottom: 10px;
	position: relative;
}

.footer .title:before {
	content: "";
	position: absolute;
	height: 5px;
	width: 35px;
	background-color: white;
	left: 0px;
	bottom: -3px;
}

.footer ul li span {
	display: inline-block;
	min-width: 40px;
	font-weight: 700;
	color: white;
}

.footer ul li span i {
	font-size: 24px;
}

.footer ul li.adress span {
	float: left;
}

.footer ul li.adress {
	display: block;
}

.footer-bottom {
	background-color: #262626;
	color: white;
	padding: 10px 0;
}

.footer-bottom .area {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-bottom a {
	color: white;
}

/* slider */

.main-slider {
	display: block;
}

.mobil-slider.main-slider {
	display: none;
}

.main-slider .slider-images img {
	height: auto;
}
.slider-images a {
    width: 100%;
}

.main-slider .owl-carousel.owl-theme .owl-nav button.owl-prev,
.main-slider .owl-carousel.owl-theme .owl-nav button.owl-next {
	color: #fff;
	font-size: 22px;
	margin-top: -20px;
	position: absolute;
	top: 50%;
	text-align: center;
	line-height: 48px;
	opacity: 0;
	border: 0;
	width: 50px;
	height: 50px;
	border-radius: 50px;
	background: rgba(255, 255, 255, 0.2);
	display: flex;
	justify-content: center;
	align-items: center;
}

.main-slider .owl-carousel.owl-theme .owl-nav button.owl-prev {
	left: 10%;
	transition: all 0.2s ease-in-out 0.2s;
	outline: 0;
}

.main-slider .owl-carousel.owl-theme .owl-nav button.owl-next {
	right: 10%;
	transition: all 0.2s ease-in-out 0.2s;
	outline: 0;
}

.main-slider .owl-carousel.owl-theme:hover .owl-nav button.owl-next {
	right: 2%;
	opacity: 1;
	transition: all 0.2s ease-in-out 0.2s;
}

.main-slider .owl-carousel.owl-theme:hover .owl-nav button.owl-prev {
	left: 2%;
	opacity: 1;
	transition: all 0.2s ease-in-out 0.2s;
}

.main-slider .owl-carousel.owl-theme:hover .owl-nav button.owl-next:hover,
.main-slider .owl-carousel.owl-theme:hover .owl-nav button.owl-prev:hover {
	color: #fff;
	background: var(--color2);
}


.mainslider .slider-content {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 800px;
	transform: translate(-50%, -50%);
}

.mainslider .content-left .slider-content {
	position: absolute;
	top: 50%;
	left: 8%;
	width: 800px;
	transform: translateY(-50%);
}

.mainslider .owl-item .title {
	transform: translateY(100%);
	opacity: 0;
	transition: all 1s ease-in-out 0.3s;
	color: #fff;
	font-size: 35px;
	font-weight: 700;
	margin-bottom: 30px;
	text-transform: uppercase;
	text-align: center;
}

.mainslider .owl-item .parainfo {
	transform: translateY(100%);
	opacity: 0;
	transition: all 1s ease-in-out 1s;
	color: #fff;
	font-size: 18px;
	margin-bottom: 40px;
	line-height: 30px;
	text-align: center;
}

.mainslider .owl-item .buttonwrp {
	transform: translateY(100%);
	opacity: 0;
	transition: all 1s ease-in-out 1.5s;
	text-align: center;
}

.mainslider .slidbtn {
	min-width: 150px;
	background: var(--color2);
	display: inline-block;
	color: #fff;
	padding: 10px 40px;
	font-size: 18px;
	font-weight: 600;
	border-radius: 5px;
	text-align: center;
}

.mainslider .owl-item.active .title,
.mainslider .owl-item.active .parainfo,
.mainslider .owl-item.active .buttonwrp {
	transform: translateY(0);
	opacity: 1;
}


.mainslider .owl-item.active .slider-images img {
	transform: scale(1.1);
	transition: 10s;
}

/* Product */

.owl-product.owl-carousel .owl-stage {
	padding-top: 15px;
	padding-bottom: 15px;
}

.product-item {
	box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
	text-align: center;
	background-color: #fff;
	margin-bottom: 30px;
	display: block;
}

.product-item .title {
	padding: 10px;
	background-color: rgba(0, 154, 78, 0.2);
	font-weight: 500;
}

.product-item .sub-title {
	font-size: 16px;
}
.product-detail-img{
	float: left;
	margin-right: 30px;
	width: 50%;
	margin-bottom: 30px;
}
.product-detail-img img{
	margin-bottom: 0;
}
@media (max-width:991px) {
	.product-detail-img{
		width: 100%;
	}
}

.thumbnail-slider-container {
    margin-top: 15px;
}

.thumbnail-slider-container .center .item {border-color: #009a4e;}

.thumbnail-slider-container .item {
    border: 2px solid transparent;
    transition: all 300ms ease;
    cursor: pointer;
}

/* Product */

/* Mobile nav */
.mobile-nav-menu ul li {
	padding: 10px 25px;
	list-style: none;
}

.mobile-nav-menu .sub-menu ul {
	background-color: #28292a;
}

.mobile-nav-menu ul li .sub-menu-flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.mobile-nav-menu ul li i {
	font-size: 14px;
	fill: #b5bbc2;
	color: #b5bbc2;
}

.mobile-nav-menu ul li a {
	color: #b5bbc2;
	font-weight: 600;
	font-size: 14px;
}

.mobile-nav-menu ul li ul {
	display: none;
	margin-top: 10px;
	margin-right: -25px;
	margin-left: -25px;
	padding-left: 25px;
}

/* Mobile nav */

/* sidebar nav */
.sidebar-giant-menu li ul {
	display: none;
}

.sidebar-giant-menu .sub-menu-flex {
	display: flex;
}

.sidebar-giant-menu .sub-menu-flex i {
	flex-grow: 1;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	font-size: 24px;
	font-weight: 400;
	cursor: pointer;
}

.sidebar-giant-menu .sub-menu-flex a {
	width: auto;
}

.sidebar-giant-menu .sub-menu ul {
	padding: 0px 0px 0px 15px;
}

.sidebar-giant-menu .sub-menu-flex.open i::before {
	transform: rotate(180deg);
	transform-origin: center;
}

.sidebar-giant-menu .sub-menu-flex i::before {
	transition: all .3s ease;
}

/* Mobile nav */

/* bread js */

.bread {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 12px;
	font-weight: 500;
	padding-bottom: 20px;
	padding-top: 20px;
}

.bread-color-white {
	color: #ffffff;
}

.bread-color-grey {
	color: #494c51;
}

@media (max-width: 991px) {
	.bread-area {
		background-color: #fdfdfe;
	}
}

.bread-item {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	opacity: 0.8;
}

@media (max-width: 991px) {
	.bread-item {
		display: none;
		line-height: 1.5
	}
}

.bread-item i {
	margin-left: 15px;
	margin-right: 15px;
}

.bread-item.active {
	opacity: 1;
}

.bread-item:first-child {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
}

@media (max-width: 991px) {
	.bread-item:first-child {
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
	}
}

.bread-item:nth-child(2) {
	display: none;
}

@media (max-width: 991px) {
	.bread-item:nth-child(2) {
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
	}
}

.bread-item:last-child {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
}

@media (max-width: 991px) {
	.bread-item:last-child {
		display: inline-block;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
}

.breadcrumb-location {
    position: relative;
}

.breadcrumb-location .bread-area {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}

@media (max-width: 991px) {
	.breadcrumb-location .bread-area {
		position: relative;
	}
}

@media (max-width: 991px) {
	.bread {
		color: #494c51;
	}
}

.js-bread-list {
	display: none;
	background-color: #fdfdfe;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 25px 20px 30px 20px;
	font-size: 12px;
	z-index: 8;
}

.js-bread-list .bread-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.js-bread-list .bread-item i {
	margin-left: 0;
}

.js-bread-list .bread-item+.bread-item {
	margin-top: 20px;
}

.js-bread-list .js-bread-close {
	position: absolute;
	top: 20px;
	right: 20px;
}

.js-bread-list .bread-item:nth-child(2) {
	margin-left: 10px;
}

.js-bread-list .bread-item:nth-child(3) {
	margin-left: 20px;
}

.js-bread-list .bread-item:nth-child(4) {
	margin-left: 30px;
}

.js-bread-list .bread-item:nth-child(5) {
	margin-left: 40px;
}
/* bread js */

@media only screen and (min-width: 991px),
(height: 1024px) and (width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: landscape),
(width: 1024px) and (height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: portrait) {

	.header-mobile {
		display: none;
	}

}

@media only screen and (max-width: 992px),
(height: 1024px) and (width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: landscape),
(width: 1024px) and (height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: portrait) {
	.main-slider{
		display: none;
	}
	
	.mobil-slider.main-slider {
		display: block;
	}

	.header-top {
		display: none;
	}

	/* header menu */

	.logo-menu {
		display: none;
	}

	.mobil-lang {
		display: flex;
		align-items: center;
		padding: 5px 5px 10px 20px;
		margin-bottom: 10px;
		margin-top: -10px;
		border-bottom: 1px solid #dddddd;
	}

	.mobil-lang a {
		display: flex;
		align-items: center;
	}

	.mobil-lang a+a {
		margin-left: 10px;
		border-left: 2px solid #dddddd;
		padding-left: 10px;
	}

	.mobile-header-icons {
		display: flex;
	}

	.mobile-header-icons .i {
		font-size: 22px;
	}

	.mobile-header-icons a i {
		width: 36px;
		height: 36px;
		border-radius: 50%;
		background-color: #222;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #fff;
	}

	.mobile-header-icons a i.far.fa-map-marker-alt {
		margin-left: 15px;
		background-color: #4d4c4c;
	}

	.mobile-header-icons a i.fas.fa-phone {
		background-color: #00aad0;
	}

	.mobile-header-hamburger .hamburger-toggle {
		background: transparent;
		padding: 0px;
		font-size: 30px;
		margin: 0 10px;
		border: none;

	}

	.mobile-nav {
		display: none;
		position: fixed;
		left: 0;
		top: 0;
		height: 100%;
		background: rgba(0, 0, 0, 0.9);
		z-index: 9999;
		width: 100%;
		-webkit-animation: fadeOutLeft 0.5s ease-in-out;
		animation: fadeOutLeft 0.5s ease-in-out;
	}

	.mobile-nav-content {
		padding-top: 20px;
		background: #1d1e1f;
		width: 75%;
		height: 100%;
		cursor: copy;
		overflow-y: scroll;
	}

	.mobile-nav-logo {
		padding-left: 20px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		width: 100%;
		-ms-flex-pack: distribute;
		justify-content: space-around;
		margin-bottom: 20px;
	}

	.mobile-nav-logo-content {
		position: relative;
	}

	.mobile-nav-logo-content i {
		display: block;
		margin: 0 auto 10px;
		max-width: 30px;
		line-height: 32px;
		font-size: 30px;
	}

	.mobile-nav-logo-content a {
		color: #b5bbc2;
		font-size: 14px;
		font-weight: 600;
	}

	.mobile-nav-logo>a {
		display: block;
		padding: 30px 60px;
	}

	.mobile-nav-logo>a img {
		width: 100%;
	}

	.mobile-nav-login a {
		position: absolute;
		bottom: 0;
		left: 0;
		color: #b5bbc2;
		padding-left: 25px;
		padding-bottom: 20px;
		font-weight: 600;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.mobile-nav-login a svg {
		font-size: 18px;
		margin-right: 5px;
	}

	.mobile-nav.open {
		display: block;
		-webkit-animation: fadeInLeft 0.5s;
		animation: fadeInLeft 0.5s;
		overflow-x: scroll;
	}

	.cta-link {
		line-height: 40px;
		-webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
		box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
		display: block;
		color: #fff;
		border-radius: 3px;
		background: #00aad0;
		text-align: center;
		margin: 20px;
		margin-bottom: 10px;
	}

	.mobile-close-menu {
		position: fixed;
		top: 18px;
		right: 20px;
		display: none;
		z-index: 9999;
	}

	.mobile-close-menu i {
		color: #fff;
		font-size: 25px;
	}

	ul.mobile-menu-social {
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0px;
		list-style: none;
	}

	ul.mobile-menu-social li+li {
		margin-left: 15px;
	}

	ul.mobile-menu-social li a {
		border: 1px solid #00aad0;
		display: flex;
		width: 35px;
		height: 35px;
		align-items: center;
		justify-content: center;
		color: #fff;
		border-radius: 50%;
	}

	.mobile-nav-menu ul {
		padding: 0px;
	}

	.header-mobile {
		display: block;
		background-color: #fff;
		box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.15);
		position: sticky;
		z-index: 9;
		top: 0;
		left: 0;
		width: 100%;
		transition: 0.5s;
	}

	.header-mobile-wrapper {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.header-mobile .header-mobile-logo img {
		max-width: 120px;
	}

	/* fly alert */

	.fly-alert {
		top: 30px;
		left: 10px;
		right: 10px;
		font-size: 16px;
		text-align: center;
	}

	/* footer sticky hemen ara */

	.footer-sticky-bar {
		display: block;
	}

	.mobil-search {
		display: flex;
		padding: 0px 20px;
		margin-bottom: 50px;
	}
	
	.home-title {
	    font-size:25px;
	}

	.pdfs .btn {
		width: 100%;
		text-align: center;
	}

	.breadcrumb .title {
		font-size: 20px;
	}

	.p70 {
		padding: 35px 0;
	}

}

.content-wrapper ul li {
    list-style: disc;
    margin-bottom: 10px;
}

.g-recaptcha {
    position: relative;
}
.fake_error {
	white-space: nowrap;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	box-shadow: rgba(0, 0, 0, .2) 0 5px 10px;
	background-color: #F44336;
	color: #fff;
	padding: 5px 15px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, 15px);
	position: absolute;
	z-index: 99;
	font-weight: 500;
}
.fake_error:before {
	bottom: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(194, 225, 245, 0);
	border-bottom-color: #F44336;
	border-width: 10px;
	margin-left: -10px
}
.error-page .col-12{
	display: flex;
}