* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

body {
	--main-color: #89cddf;
	--gray-color: #4d4d4d;
	--other-color: #202c45;
	--green-color: #008d58;
	--border-color: #f0ebd8;
	--btn-hover-color: #378aa0;
	--main-color-rgb: rgba(240, 235, 216, 1);
	--other-color-rgb: 21, 45, 76;
	background-color: #f8f9fa;
	font-family: 'Poppins', sans-serif;
}


p,
h2,
h3,
h4,
h5,
li,
a {
	color: var(--gray-color);
}
p {
	line-height: 1.8;
	-webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}
a {
	text-decoration: none;
}

ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

/* loading animation */
.loading-overlay {
	position: fixed;
	background: #fff;
	width: 100%;
	height: calc(100% + 90px);
	z-index: 1040;
	display: none;
	margin-top: -90px;
}
.logo-footer{
    display:flex;
    flex-direction:column;
}

.loading-container {
	position: fixed;
	top: 50%;
	z-index: 1050;
	text-align: center;
	left: 50%;
	transform: translate(-50%, -50%);
	display: none;
}

.loading-container .loader-body {
	width: 48px;
	height: 48px;
	display: inline-block;
	position: relative;
	background: var(--main-color);
	box-sizing: border-box;
	-webkit-animation: flipX 1s linear infinite;
	animation: flipX 1s linear infinite;
}

@-webkit-keyframes flipX {
	0% {
		transform: perspective(200px) rotateX(0deg) rotateY(0deg);
	}

	50% {
		transform: perspective(200px) rotateX(-180deg) rotateY(0deg);
	}

	100% {
		transform: perspective(200px) rotateX(-180deg) rotateY(-180deg);
	}
}

@keyframes flipX {
	0% {
		transform: perspective(200px) rotateX(0deg) rotateY(0deg);
	}

	50% {
		transform: perspective(200px) rotateX(-180deg) rotateY(0deg);
	}

	100% {
		transform: perspective(200px) rotateX(-180deg) rotateY(-180deg);
	}
}

body.load {
	overflow: hidden;
}

body.load .loading-container,
body.load .loading-overlay {
	display: block;
}

/*back-to-top btn*/
.back-to-top {
	width: 50px;
	height: 50px;
	position: fixed;
	bottom: 0;
	right: 0;
	margin: 20px;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
	z-index: 99;
}

.back-to-top::after {
	content: '\f062';
	font-family: 'Font Awesome 5 Free';
	position: absolute;
	font-weight: 900;
	top: 9px;
	left: 19px;
	font-size: 15px;
	color: #fff;
}

.back-to-top .top {
	color: #fff;
	position: absolute;
	top: 25px;
	left: 13px;
	font-size: 14px;
	font-weight: bold;
}

.back-to-top svg {
	fill: var(--main-color);
}
.section_title {
	font-size: 25px;
	opacity: 0.7;
	margin-bottom: 20px;
}
.btn-primary {
	background-color: var(--main-color);
	border: none;
	margin-top: 40px;
	padding: 18px 40px;
	transition: all 0.3s ease-in-out;
}
.btn-primary:hover {
	background: var(--btn-hover-color) !important;
}
.small-separator p {
	width: 51px;
	height: 3px;
	display: inline-block;
	margin: 0 0 12px;
	background-color: var(--main-color);
}
.small-separator.white p {
	background-color: #fff;
}
/*start header*/
header {
	position: relative;
}
/*start navbar*/
nav {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 33;
	transition: all 0.3s ease-in-out;
}
nav .header_logo {
	margin-top: 15px;
	width: 130px;
	height: 76px;
}
.nav_list {
	display: flex;
	justify-content: flex-end;
}
.humbugger-svg_box {
	display: none;
}
.mobile_menu {
	display: none;
}
.nav_list li a {
	color: #fff;
	margin: 0 10px;
	transition: all 0.3s ease-in-out;
}
.humbugger-svg_box a {
    color: white;
}
.sticky_nav {
	background-color: var(--main-color-rgb);
	transition: all 0.3s ease-in-out;
	z-index: 44;
}
.sticky_nav .nav_list li a {
	color: var(--gray-color);
}
.sticky_nav .humbugger-svg_box a {
	color: var(--gray-color);
}
.nav_list li a:hover {
	color: var(--main-color);
}
.nav_list li a.active {
	color: var(--main-color);
}
.list-menu-item1 {
	opacity: 0;
	-webkit-animation-duration: 200ms;
	animation-duration: 200ms;
	-webkit-animation-delay: 200ms;
	animation-delay: 200ms;
	-webkit-animation-name: openMobileMenu;
	animation-name: openMobileMenu;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}
.list-menu-item2 {
	opacity: 0;
	-webkit-animation-duration: 300ms;
	animation-duration: 300ms;
	-webkit-animation-delay: 300ms;
	animation-delay: 300ms;
	-webkit-animation-name: openMobileMenu;
	animation-name: openMobileMenu;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}
.list-menu-item3 {
	opacity: 0;
	-webkit-animation-duration: 400ms;
	animation-duration: 400ms;
	-webkit-animation-delay: 400ms;
	animation-delay: 400ms;
	-webkit-animation-name: openMobileMenu;
	animation-name: openMobileMenu;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}
.list-menu-item4 {
	opacity: 0;
	-webkit-animation-duration: 500ms;
	animation-duration: 500ms;
	-webkit-animation-delay: 500ms;
	animation-delay: 500ms;
	-webkit-animation-name: openMobileMenu;
	animation-name: openMobileMenu;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}
/*hero box slider*/
.hero_box-slider {
	height: 600px;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}
header .hero_box-slider::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgb(0, 0, 0, 0.7);
	z-index: 1;
}

.slider-text_box {
	padding: 0 157px;
}
/*start products*/
.our_products {
	padding: 30px 0;
}
.our_products .see_more_btn button {
	background-color: var(--main-color);
	border: none;
	margin-top: 40px;
	padding: 18px 40px;
}
.our_products .single_product {
	border: 1px solid var(--border-color);
	padding: 124px 30px;
	position: relative;
	cursor: pointer;
}
.product_card_overlay {
	background-color: var(--main-color);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}
.product_card_overlay::after {
	content: '';
	position: absolute;
	background: url('imgs/procedure-box-hover.png');
	background-repeat: no-repeat;
	top: 0;
	right: 0;
	width: 72px;
	height: 70px;
	transition: all 0.3s ease-in-out;
}
.product_card_overlay p {
	padding: 0 17px 0 24px;
	color: #fff;
	font-size: 14px;
}
.our_products .single_product:hover .product_card_overlay {
	opacity: 1;
}
.our_products .single_product:hover .product_card_overlay::after {
	top: 8px;
	right: 4px;
}
.our_products .product_card .card_img {
	width: 47px;
	height: 70px;
}
.our_products .product_card {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.our_products .product_card .product_info h4 {
	margin-top: 20px;
	font-size: 18px;
	text-align: center;
}

/*start about us*/

.about_us_section {
	background-color: var(--main-color-rgb);
	position: relative;
}

.about_us_section::after {
	content: '';
	position: absolute;
	background: url('imgs/home-faq-bg.webp');
	background-repeat: no-repeat;
	bottom: 0;
	right: 0;
	width: 359px;
	height: 766px;
	z-index: 1;
}
.about_us_info {

	position: relative;
	z-index: 33;
}

.about_us_info button {
	margin-bottom: 30px;
}

/*our_partners*/
.our_partners .single_logo .img_inner {
	width: 180px;
	height: 100px;
}
.our_partners_slide .owl-nav {
	text-align: center;
	margin-top: 44px;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
	position: relative;
	border: 1px solid #dfdfdf;
	border-radius: 50%;
	width: 35px;
	height: 34px;
	margin: 13px 7px;
	transition: all 0.3s ease-in-out;
}
.owl-carousel .owl-nav button.owl-prev span,
.owl-carousel .owl-nav button.owl-next span {
	display: none;
}
.owl-carousel .owl-nav button.owl-prev::after {
	content: '\f104';
	font-family: 'Font Awesome 5 Free';
	position: absolute;
	font-weight: 900;
	top: 3px;
	left: 33%;
	font-size: 19px;
	z-index: 2;
	color: #dfdfdf;
}
.owl-carousel .owl-nav button.owl-next::after {
	content: '\f105';
	font-family: 'Font Awesome 5 Free';
	position: absolute;
	font-weight: 900;
	top: 3px;
	right: 31%;
	font-size: 19px;
	z-index: 2;
	color: #dfdfdf;
}
.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
	color: #fff;
	background-color: #89cddf;
}
/*start footer*/

.footer_top {
	background-color: var(--main-color-rgb);
	padding: 30px 0;
	position: relative;
}
.footer_info {
	position: relative;
	z-index: 22;
}
.footer_top::before {
	position: absolute;
	content: '';
	background: url('imgs/footer-pattern-top.webp');
	width: 231px;
	height: 347px;
	top: 0;
	left: 0;
	z-index: 1;
}

.footer_top::after {
	position: absolute;
	content: '';
	background: url('imgs/footer-pattern-bottom.png');
	width: 231px;
	height: 347px;
	bottom: 0;
	right: 0;
}

footer .footer_info .footer_logo {
	
	height: 100px;
	
}

footer .footer_links .footer_links_list li {
	margin-bottom: 17px;
	font-size: 14px;
}
footer .footer_links .footer_links_list li a {
	transition: all 0.3s ease-in-out;
}
footer .footer_links .footer_links_list li a:hover {
	color: var(--main-color);
}
footer .footer_links .footer_links_list li .list_icon {
	width: 23px;
	transition: all 0.3s ease-in-out;
}
footer .footer_links .footer_links_list li:hover .list_icon {
	transform: rotate(180deg) scale(1.5);
}

footer .footer_info p {
	font-size: 13px;
	line-height: 1.8;
}

.footer_form .footer_subscribe,
.footer_form {
	z-index: 2;
	position: relative;
}

.footer_form .footer_subscribe input {
	border: none;
	outline: none;
	padding: 16px 88px 15px 20px;
	display: inline-block;
	width: 100%;
}

.footer_form .footer_subscribe button {
	position: absolute;
	top: 0;
	right: 0;
	padding: 15.5px 21px;
	border: none;
	background-color: var(--main-color);
}

.footer_form .footer_subscribe button i {
	color: #fff;
	font-size: 19px;
}

.footer_form .footer_subscribe input::-webkit-input-placeholder {
	font-size: 13px;
}

.footer_form .footer_subscribe input::-moz-placeholder {
	font-size: 13px;
}

.footer_form .footer_subscribe input:-ms-input-placeholder {
	font-size: 13px;
}

.footer_form .footer_subscribe input::-ms-input-placeholder {
	font-size: 13px;
}

.footer_form .footer_subscribe input::placeholder {
	font-size: 13px;
}

.footer_form .widget_list .custom-social li {
	margin: 0 10px;
}

.footer-copyright {
	background-color: var(--main-color);
	padding: 22px 0;
}

.footer-copyright .copyright_text p,
.footer-copyright .privacy_policy li a {
	color: #fff;
	font-size: 14px;
}
/*latest_product*/
.latest_product .single_item_card {
	border: 1px solid var(--border-color);
	padding: 46px 30px;
	position: relative;
	transition: all 0.3s ease-in-out;
	height:623px;
}
.latest_product .single_item_card:hover {
	box-shadow: 0 0 20px 0 rgb(0 0 0 / 20%);
}
.latest_product .single_item_card:hover .card-info h3 {
	color: var(--main-color);
}
.latest_product .single_item_card .card-info h3 {
	transition: all 0.3s ease-in-out;
	font-size: 18px;
}
.latest_product .single_item_card .card-info p {
	font-size: 14px;
}
.latest_product .single_item_card .card_img img {
	
	width: 100%;
	height: 300px;
	object-fit:contain;
}
.latest_product .single_item_card .card_btn {
	width: 100%;
	position: absolute;
	bottom: 0;
	text-align: center;
	left: 0;
	padding: 11px 0;
	border-top: 1px solid var(--border-color);
}
.latest_product .single_item_card .card_btn a {
	width: 100%;
	transition: all 0.3s ease-in-out;
}
.latest_product .single_item_card .card_btn a:hover {
	color: var(--main-color);
}

/*more about our products*/
.more_about_our_products {
	padding: 94px 0;
	position: relative;
}
.more_about_our_products::before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	background: linear-gradient(
  180deg,
  rgba(137, 205, 223, 1) 0%,
  rgba(137, 205, 223, 1) 50%,
  rgb(203 190 190) 100%
 );
	width: 100%;
	height: 100%;
	z-index: -1;
}
.more_about_our_products h2 {
	opacity: 1;
}
.more_about_our_products .more_about_link {
	padding: 16px 30px;
	background: #fff;
	color: #4d4d4d;
	margin-right: 35px;
}
.more_about_our_products .more_links_box {
	margin: 50px 0 0 0;
}
.more_about_our_products .mobile_num {
	font-size: 36px;
	font-weight: 800;
}
/*navbar menu icon*/
.humbugger-svg {
	cursor: pointer;
	transition: transform 400ms;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.humbugger-svg.active {
	transform: rotate(45deg);
}
.humbugger-svg .line {
	fill: none;
	transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
	stroke: #af9797;
	stroke-width: 5.5;
	stroke-linecap: round;
}
.humbugger-svg.ham-4 .top {
	stroke-dasharray: 40 121;
}
.humbugger-svg.ham-4 .bottom {
	stroke-dasharray: 40 121;
}
.humbugger-svg.ham-4.active .top {
	stroke-dashoffset: -68px;
}
.humbugger-svg.ham-4.active .bottom {
	stroke-dashoffset: -68px;
}
.humbugger-svg.ham-8 .top {
	stroke-dasharray: 40 160;
}
.humbugger-svg.ham-8 .middle {
	stroke-dasharray: 40 142;
	transform-origin: 50%;
	transition: transform 400ms;
}
.humbugger-svg.ham-8 .bottom {
	stroke-dasharray: 40 85;
	transform-origin: 50%;
	transition: transform 400ms, stroke-dashoffset 400ms;
}
.humbugger-svg.ham-8.active .top {
	stroke-dashoffset: -64px;
}
.humbugger-svg.ham-8.active .middle {
	transform: rotate(90deg);
}
.humbugger-svg.ham-8.active .bottom {
	stroke-dashoffset: -64px;
}
@media only screen and (max-width: 320px) {
	nav .header_logo {
		width: 149px;
		height: 94px;
	}
}
@media only screen and (max-width: 798px) {
	.slider-text_box {
		padding: 0 58px;
	}
	.nav_list {
		display: none;
	}
	.humbugger-svg_box {
		display: flex;
		justify-content: flex-end;
	}
	.mobile_menu {
		transition: all 0.3s ease-in-out;
	}
	.mobile_menu ul li {
		background-color: var(--gray-color);
		width: 100%;
		padding: 20px;
		margin: 10px 0;
	}
	.mobile_menu ul li a {
		color: #fff;
	}
	.mobile_menu.open {
		display: flex;
		padding: 30px;
		-webkit-animation-name: openMobileMenu 300ms ease-in-out forwards;
		animation-name: openMobileMenu 300ms ease-in-out forwards;
	}
}
@-webkit-keyframes openMobileMenu {
	0% {
		opacity: 0;
		transform: rotateX(-90deg);
	}
	60% {
		transform: rotateX(50deg);
	}
	100% {
		opacity: 1;
		transform: rotateX(0deg);
	}
}
@keyframes openMobileMenu {
	0% {
		opacity: 0;
		transform: rotateX(-90deg);
	}
	60% {
		transform: rotateX(50deg);
	}
	100% {
		opacity: 1;
		transform: rotateX(0deg);
	}
}

/* banner */

.banner {
	height: 400px;
	position: relative;
	z-index: 1;
	color: #fff;
}

@media (max-width: 768px) {
	.banner {
		height: 300px;
		margin-top: 110px;
	}
}

.banner::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-color: rgba(0, 0, 0, 0.6);
}

.banner nav {
	position: unset;
}

.banner nav .active a {
	color: var(--main-color);
}

/* contact us */
.contact-us-section {
	position: relative;
	background-color: #f4f7fa;
	padding-top: 60px;
	padding-bottom: 60px;
}

.contact-us-section .contact-form form {
	padding: 50px;
	box-shadow: 0px 0px 35px #00000012;
	border-radius: 12px;
	background-color: #fff;
}

@media (max-width: 768px)  {
  .contact-us-section .contact-form form {
    padding: 20px;
  }
}

.contact-us-section .contact-form .form-group:first-child {
	margin: 0;
}

.contact-us-section .contact-form .form-group {
	margin-top: 25px;
}

.contact-us-section .contact-form .form-group label {
	font-size: 15px;
	font-weight: 500;
	display: block;
	margin-bottom: 10px;
}

.contact-us-section .contact-form .form-group input {
	height: 55px;
	border: 1px solid #eee;
	border-radius: 8px;
	padding: 0px 20px;
	width: 100%;
	outline: 0;
	transition: all 0.4s ease;
}

.contact-us-section .contact-form .form-group input:focus {
	border-color: #3080e3;
}

.contact-us-section .contact-form .form-group textarea {
	height: 200px;
	border: 1px solid #eee;
	border-radius: 8px;
	padding: 20px;
	resize: none;
	min-height: calc(1.5em + 0.75rem + 2px);
	width: 100%;
	box-shadow: none;
	transition: all 0.4s ease;
}

.contact-us-section .contact-form .form-group textarea:focus {
	border-color: #3080e3;
}

.contact-us-section .contact-form .button {
	margin-top: 30px;
	width: 100%;
}

.contact-us-section .contact-form .button .btn {
	width: 100%;
	display: inline-block;
	text-transform: capitalize;
	font-size: 15px;
	font-weight: 500;
	padding: 16px 30px;
	background-color: #3080e3;
	color: #fff;
	border: none;
	transition: all 0.3s ease;
	border-radius: 8px;
	position: relative;
	z-index: 1;
	margin-right: 7px;
	overflow: hidden;
}

.contact-us-section .contact-form .button .btn:hover {
	color: #fff;
	background-color: #fd723b;
}

.contact-us-section .contact-widget-wrapper {
  padding-left: 60px;
  padding-right: 80px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-us-section .contact-widget-wrapper {
    padding: 0;
    padding-right: 200px;
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .contact-us-section .contact-widget-wrapper {
    padding: 0;
    margin-top: 40px;
  }
}

.contact-us-section .contact-widget-wrapper .main-title {
  margin-bottom: 40px;
}

.contact-us-section .contact-widget-wrapper .main-title h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 40px;
}

@media (max-width: 767px) {
  .contact-us-section .contact-widget-wrapper .main-title h2 {
    font-size: 22px;
    line-height: 35px;
  }
}

.contact-us-section .contact-widget-wrapper .main-title p {
  font-size: 16px;
}

.contact-us-section .contact-widget-wrapper .contact-widget-block {
  margin-bottom: 30px;
}

.contact-us-section .contact-widget-wrapper .contact-widget-block:last-child {
  margin: 0;
}

.contact-us-section .contact-widget-wrapper .contact-widget-block h3 {
  font-size: 20px;
  font-weight: 600;
  display: block;
  margin-bottom: 20px;
}

.contact-us-section .contact-widget-wrapper .contact-widget-block p {
  margin-bottom: 5px;
}

.contact-us-section .contact-widget-wrapper .contact-widget-block p:last-child {
  margin: 0;
}


.object-fit-cover {
	-o-object-fit: cover;
	object-fit: cover;
}

.contacts-1{ 
    font-size:13px;
    
}
.breadcrumb-item.active {
    color: #87c9d9 !important;

}
.slider-title {
    font-size: 70px;
}
.slider-text p {
    font-size: 50px;
    color: white;
}
@media (max-width: 425px) {
    .slider-text p {
        font-size:25px;
    }
    .product-category button {
        font-size: 12px;
        padding: 12px 35px
    }
    .product_card_overlay p {
        font-size: 11px !important;
    }
    .about_us_section .container .row, .mission .container .row {
        flex-direction: column-reverse;
    }
}