body {
	font-family: 'Poppins', sans-serif !important;
}

p {
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 15px;
	line-height: 1.5;
	margin-bottom: 0;
	color: #1a1a1a;
}

a {
	color:#1a1a1a;
	text-decoration: none;
}

a:hover {
	color:#1a1a1a;
}

ol, ul {
    list-style: none;
}

.text-blink {
	animation: TextBlink 1.5s linear infinite alternate-reverse;
    -webkit-animation: TextBlink 1.5s ease-in-out infinite alternate-reverse;
}

@keyframes TextBlink {
	0% {
		color: #c62828;
	}
	100% {
		color: #ee9b00;
	}
}

@-webkit-keyframes TextBlink {
	0% {
		color: #c62828;
	}
	100% {
		color: #ee9b00;
	}
}

.text-blink-2 {
	animation: TextBlink2 1.5s linear infinite alternate-reverse;
    -webkit-animation: TextBlink2 1.5s ease-in-out infinite alternate-reverse;
}

@keyframes TextBlink2 {
	0% {
		color: #ffffff;
	}
	100% {
		color: #ee9b00;
	}
}

@-webkit-keyframes TextBlink2 {
	0% {
		color: #ffffff;
	}
	100% {
		color: #ee9b00;
	}
}

#header {
	transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
	-webkit-box-shadow: 0 2px 5px 0 rgb(0 0 0 / 10%);
    -moz-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 10%);
	border-bottom: 1px solid #ddd;
}

#header .header-logo {
	width: 200px;
    height: auto;
}

#header .header-top {
	padding: 8px 0;
	background-color: #0066ff;
}

#header .header-main {
	background: #ffffff;
}

#header .header-top .col-left,
#header .header-top .col-right {
	display: flex;
}

#header .header-top .col-left i {
	color: #ffffff;
	font-size: 1rem;
}

#header .header-top .col-right i {
	color: #ffffff;
	font-size: 1rem;
}

#header .header-top .col-right i.fa-instagram {
	font-size: 1.4rem;
}

#header .header-top .col-right .list-social {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
}

#header .header-top .col-right .list-social li a {
	padding: 0 8px;
}

#header.sticky .header-main {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
	border-bottom: 1px solid #ddd;
	-webkit-box-shadow: 0 2px 5px 0 rgb(0 0 0 / 10%);
    -moz-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 10%);
}

#header .navbar {
	padding-top: 16px;
	padding-bottom: 16px;
}

#header.sticky .navbar {
	padding-top: 12px;
	padding-bottom: 12px;
}

.navbar-nav {
	align-items: center;
}

#navbarsMenu .nav-link {
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	font-size: 15px;
	text-transform: uppercase;
	color: #1a1a1a;
	padding-right: 0;
	padding-left: 0;
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
	margin-right: 0.5rem;
	margin-left: 0.5rem;
	position: relative;
}

#navbarsMenu .nav-item {
	padding: 0px 10px;
}

#navbarsMenu .nav-item:last-child {
	align-self: center;
}

#navbarsMenu .dropdown-menu .dropdown-item {
	padding: 0.5rem 1.25rem;
	font-weight: 500;
	color: #6c757d;
	text-transform: uppercase;
}

#navbarsMenu .dropdown-menu .dropdown-item:focus, 
#navbarsMenu .dropdown-menu .dropdown-item:hover,
#navbarsMenu .dropdown-menu .dropdown-item.active {
	background-color: transparent;
	color: #0066ff;
}

.dropdown-toggle::after {
	content: unset;
	border: 0;
	margin: 0;
	vertical-align: unset;
}

.searchForm {
	background-color: #ffffff;
	border: 1px solid #ddd;
	padding: 4px;
	margin-left: 6rem;
}

.searchForm input {
	padding: 4px 12px;
	border: 0;
	outline: none;
	min-width: 400px;
}

.searchForm button[type="submit"] {
	background-color: #0066ff;
	color: #ffffff;
	border-radius: 0;
	padding: 4px 10px;
}

.header-bottom .menu-main {
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	border-top: 1px solid #eeeeee;
}

.header-bottom .menu-main li,
.header-bottom .menu-main li > .dropdown > .dropdown-menu > a {
	background: linear-gradient(to right, #0066ff 50%, #ffffff 50%);
	background-size: 250% 150%;
	background-position: right bottom;
	transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
}

.header-bottom .menu-main li a {
	display: block;
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	font-size: 15px;
	padding: 0.75rem 1.25rem;
	color: #1a1a1a;
	text-transform: uppercase;
	transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
}

.header-bottom .menu-main li:hover,
.header-bottom .menu-main li.active {
	background-position: left bottom;
}

.header-bottom .menu-main li:hover > a,
.header-bottom .menu-main li:hover > .dropdown > a,
.header-bottom .menu-main li.active > a,
.header-bottom .menu-main li.active > .dropdown > a {
	color: #ffffff;
}

.header-bottom .menu-main li > .dropdown > .dropdown-menu > a:hover,
.header-bottom .menu-main li > .dropdown > .dropdown-menu > a.active {
	background-position: left bottom;
	color: #ffffff;
}

/* Remove border from toggler */
.navbar-toggler {
	border: 0 !important;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
	outline: none !important;
	box-shadow: none !important;
	border: 0 !important;
}

/* Lines of the Toggler */
.toggler-icon {
	width: 30px;
	height: 3px;
	background-color: #fff;
	display: block;
	transition: all 0.2s;
}

/* Adds Space between the lines */
.middle-bar {
	margin: 5px auto;
}

/* State when navbar is opened (START) */
.navbar-toggler .top-bar {
	transform: rotate(45deg);
	transform-origin: 10% 10%;
}

.navbar-toggler .middle-bar {
	opacity: 0;
	filter: alpha(opacity=0);
}

.navbar-toggler .bottom-bar {
	transform: rotate(-45deg);
	transform-origin: 10% 90%;
}

/* State when navbar is opened (END) */

/* State when navbar is collapsed (START) */
.navbar-toggler.collapsed .top-bar {
	transform: rotate(0);
}

.navbar-toggler.collapsed .middle-bar {
	opacity: 1;
	filter: alpha(opacity=100);
}

.navbar-toggler.collapsed .bottom-bar {
	transform: rotate(0);
}

/* State when navbar is collapsed (END) */

/* Color of Toggler when collapsed */
.navbar-toggler.collapsed .toggler-icon {
	background-color: #fff;
}

.button {
	display: inline-block;
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
    text-decoration: none;
    vertical-align: middle;
	cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
	font-size: 1rem;
	padding: 12px 24px;
	outline: none;
	transition: all 0.3s ease;
	border: 3px solid;
	text-transform: uppercase;
}

.button-black {
	background-color: #000000;
	border-color: #000000;
	color: #fff;
}

.button-black:hover {
	background-color: transparent;
	border-color: #000000;
	color: #000000;
}

.button-white {
	background-color: #fff;
	border-color: #fff;
	color: #000000;
}

.button-white:hover {
	background-color: transparent;
	border-color: #fff;
	color: #fff;
}

.button-primary {
	background-color: #0066ff;
	border-color: #0066ff;
	color: #fff;
}

.button-primary:hover {
	background-color: #ffffff;
	border-color: #0066ff;
	color: #0066ff;
}

.button-tab {
	background-color: #ffffff;
	color: #0066ff;
}

.button-tab:hover, .button-tab.active {
	background-color: #0066ff;
	color: #ffffff;
}

.icon-button {
	padding: 4px 12px;
    font-size: 18px;
}

.icon-button span {
	font-size: 16px;
	text-transform: uppercase;
}

.object-fit-cover {
	object-fit: cover;
}

.section-wrap {
	position: relative;
	padding: 50px 0;
}

.section-content {
	position: relative;
	z-index: 1;
}

.section-bg {
	height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
	background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.section-banner {
	padding-top: 0;
	padding-bottom: 50px;
}

/* .section-news {
	padding-bottom: 100px;
} */

.banner-slider {
    position: relative;
    width: 100%;
}

.banner-slider .banner-item {
	width: 100%;
}

.img-about-us, .img-contact {
	max-width: 100%;
	height: 100%;
	min-height: 500px;
	object-fit: cover;
	object-position: left;
	box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
}

.img-contact {
    min-height: 650px;
}

.feature-box {
	position: relative;
    display: flex;
    align-items: center;
    padding: 16px 16px;
    border: 3px solid;
	border-image-slice: 1;
  	border-image-source: linear-gradient(to right bottom, #0066ff, #42a5f5);
	background: linear-gradient(to bottom,#fff 10%,#e5e5e5);
}

.feature-box .icon {
	width: 90px;
    text-align: center;
}

.feature-box .icon img {
	max-width: 100%;
}

.feature-box h4 {
	font-family: 'Poppins', san-serif;
	font-size: 18px;
    font-weight: 600;
	text-transform: uppercase;
	color: #1a1a1a;
}

.feature-box .feature-box-content {
	width: 100%;
    padding: 0 0 0 16px;
    display: block;
}

.ytb-player .thumb-wrap {
	position: relative;
	display:inline-block;
	box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
}

.ytb-player .thumb-wrap::before {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
}

.ytb-player img.thumb {
	height: 100%;
    max-width: 100%;
	min-height: 500px;
    border: none;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    object-fit: cover;
}

.ytb-player img.ytb-play {
	width: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#playerContainer {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
}
  
#player {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}  

.ova-image-box {
	position: relative;
	display: flex;
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: start;
    align-content: flex-start;
	justify-content: center;
}

.ova-image-box .img-flower {
	position: absolute;
	text-align: left;
    top: 20px;
	left: -50px;
}

.ova-image-box .ova-image-wrap {
	position: relative;
	width: 100%;
	z-index: 1;
}

.ova-image-box .ova-image {
	display: flex;
    justify-content: right;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-right: 40px;
    position: relative;
}

.ova-image-box .ova-image::before {
	content: "";
    width: calc(100% - 40px);
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(to bottom,#42a5f5,#0066ff);
    z-index: -1;
}

.ova-image-box .ova-image .thumb-wrap {
	position: relative;
}

.ova-image-box .ova-image .thumb-wrap:not(.opacity-100)::before {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
}

.ova-image-box .ova-image img.thumb {
	height: auto;
    max-width: 100%;
    border: none;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
	width: 100%;
    min-height: 480px;
    max-height: 480px;
    object-fit: cover;
}

.ova-image-box .ova-image img.ytb-play {
	width: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sub-title {
	font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 1rem;
	color: #0066ff;
}

.title {
	font-family: 'Poppins', san-serif;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.2;
	color: #1a1a1a;
}

.colored-separator {
    text-align: center;
    vertical-align: top;
    font-size: 0;
	margin-bottom: 3rem;
}

.colored-separator .first-long, 
.colored-separator .last-short {
    display: inline-block;
    vertical-align: top;
    height: 5px;
    -moz-transform: skew(-40deg, 0deg);
    -o-transform: skew(-40deg, 0deg);
    -ms-transform: skew(-40deg, 0deg);
    -webkit-transform: skew(-40deg, 0deg);
    transform: skew(-40deg, 0deg);
    border-radius: 2px;
}

.colored-separator .first-long {
	width: 48px;
	background-color: #1a1a1a;
    margin-right: 4px;
}

.colored-separator .last-short {
    width: 24px;
	background-color: #0066ff;
}

.info-box h6 {
	font-family: 'Poppins', san-serif;
	text-transform: uppercase;
	font-weight: 600;
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.section-products .product-item {
	transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    position: relative;
    background: #ffffff;
    box-shadow: 0px 3px 3px -2px rgba(0,0,0,0.2),0px 3px 4px 0px rgba(0,0,0,0.14),0px 1px 8px 0px rgba(0,0,0,0.12);
    border: 2px solid transparent;
    padding: 20px;
    z-index: 1;
    text-align: center;
    overflow: hidden;
}

.section-products .product-item:hover {
	border-color: #0066ff;
}

.section-products .product-item::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,#ffffff 35%,#1084ff);
    z-index: -1;
    transition: top 0.3s ease;
    -webkit-transition: top 0.3s ease;
    -moz-transition: top 0.3s ease;
    -o-transition: top 0.3s ease;
}

.section-products .product-item:hover::before {
    top: 0;
}

.section-products .product-item .mask {
	transition: all 0.5s ease;
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-position: top left;
    background-size: auto;
    background-repeat: no-repeat;
	background-image: url("../images/flowers2.png");
}

.section-products .product-item .product-img {
	transition: all 0.5s ease;
    position: relative;
    display: inline-block;
}

.section-products .product-item .product-img::before {
    display: block;
    padding-top: 100%;
    content: "";
}

.section-products .product-item .product-img img {
	transition: all 0.5s ease;
    width: 100%;
	max-width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
	box-shadow: none;
	border: none;
}

.section-products .product-item .product-title {
	position: relative;
	font-family: 'Tahoma', sans-serif;
	font-size: 18px;
	font-weight: 600;
    line-height: 1.2;
	margin-bottom: 24px;
	color: #1a1a1a;
	text-transform: uppercase;
	transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.section-products .product-item:hover .product-title {
	color: #ffffff;
}

.section-products .product-item .product-description {
	text-align: center;
	display: -webkit-box;
    width: 100%;
    max-width: 100%;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section-products .product-item .view-more {
	font-family: 'Manrope', sans-serif;
	font-weight: 700;
	position: relative;
	z-index: 1;
	color: #0066ff;
	transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.section-products .product-item:hover .view-more {
	color: #ffffff;
}

.section-products .product-item hr {
	transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.section-products .product-item:hover hr {
	background-color: #ffffff;
	opacity: 1;
}

#promotionBanner .carousel-caption h5 {
	padding: 12px 16px;
	background-color: #0066ff;
	font-weight: 700;
}

.post-list .post-item {
    position: relative;
    width: 100%;
	height: 100%;
}

.post-list .post-item .post-thumbnail {
    position: relative;
    width: 100%;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
	box-shadow: 0px 3px 3px -2px rgba(0,0,0,0.2), 0px 3px 4px 0px rgba(0,0,0,0.14), 0px 1px 8px 0px rgba(0,0,0,0.12);
}

.post-list .post-item .post-thumbnail::before {
    display: inline-block;
    padding-top: 75%;
    content: "";
    -webkit-transition: all 0.3s ease-in-out 0s !important;
    -moz-transition: all 0.3s ease-in-out 0s !important;
    -o-transition: all 0.3s ease-in-out 0s !important;
    -ms-transition: all 0.3s ease-in-out 0s !important;
    transition: all 0.3s ease-in-out 0s !important;
}

.post-list .post-item.large .post-thumbnail::before {
	padding-top: 56.25%;
}

.post-list .post-item .post-thumbnail::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    -webkit-transition: all 0.3s ease-in-out 0s !important;
    -moz-transition: all 0.3s ease-in-out 0s !important;
    -o-transition: all 0.3s ease-in-out 0s !important;
    -ms-transition: all 0.3s ease-in-out 0s !important;
    transition: all 0.3s ease-in-out 0s !important;
}


.post-list .post-item .post-link:hover .post-thumbnail::after {
    background-color: rgba(0,0,0,.2);
}

.post-list .post-item .post-content {
    position: relative;
    width: 100%;
}

.post-list .post-item .post-excerpt {
	display: -webkit-box;
    width: 100%;
    max-width: 100%;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
	margin-bottom: 1rem;
}

.post-list .post-item .post-content .post-title {
	font-family: 'Poppins', san-serif;
	line-height: 1.5;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
	margin-top: 16px;
	transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.post-list .post-item.large .post-content .post-title {
	font-size: 24px;
}

.post-list .post-item .post-content .post-title:hover {
	color: #0066ff;
}

.post-list .post-item .post-info {
	position: absolute;
	left: 16px;
	bottom: 16px;
    display: flex;
    justify-content: flex-start;
	font-family: 'Poppins', sans-serif;
	z-index: 10;
}

.post-list .post-item .post-info h6 {
    font-size: 14px;
    line-height: 1.5;
    color: #ffffff;
    font-weight: 500;
	margin: 0;
	padding: 4px 8px;
	background-color: #1a1a1a;
}

.post-list .post-item.small .post-content .view-details {
	padding: 6px 16px;
}

.partner-slider .partner-item {
    margin-right: 8px;
    width: calc((100% - 40px) / 6);
    text-align: center;
}

.partner-slider .partner-item .partner-logo-wrap {
    position: relative;
	display: block;
	padding: 8px;
}

.partner-slider .partner-item .partner-logo {
    position: relative;
	display: block;
	padding: 8px;
    overflow: hidden;
    z-index: 1;
    -webkit-box-shadow: 0 3px 6px rgba(0,0,0,.16), 0 3px 6px rgba(0,0,0,.23);
    box-shadow: 0 3px 6px rgba(0,0,0,.16), 0 3px 6px rgba(0,0,0,.23);
    border: 10px solid #fff;
}

.partner-slider .partner-item .partner-logo::before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 50%;
}

.partner-slider .partner-item .partner-logo img {
	width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    position: absolute;
    z-index: -3;
    top: 0;
    left: 0;
 }

.banner-slider .flickity-button {
	background: transparent;
}

.banner-slider .flickity-button-icon {
	fill: white;
} 

.sidebar-widget {
	position: sticky;
    top: 125px;
    width: 100%;
}

.sidebar-widget .widget-head {
    margin-bottom: 16px;
}

.sidebar-widget .widget-head .widget-title {
	font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #1a1a1a;
	margin-bottom: 16px;
	font-size: 24px;
}

.widget-post-list .post-item {
    position: relative;
    width: 100%;
    -webkit-box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%);
    -moz-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
    box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%);
}

.widget-post-list .post-item .post-thumbnail {
    position: relative;
    width: 100%;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -webkit-box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%);
    -moz-box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
    box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%);
}

.widget-post-list .post-item .post-thumbnail::before {
    display: inline-block;
    padding-top: 56.25%;
    content: "";
    -webkit-transition: all 0.3s ease-in-out 0s !important;
    -moz-transition: all 0.3s ease-in-out 0s !important;
    -o-transition: all 0.3s ease-in-out 0s !important;
    -ms-transition: all 0.3s ease-in-out 0s !important;
    transition: all 0.3s ease-in-out 0s !important;
}

.widget-post-list .post-item .post-thumbnail::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    -webkit-transition: all 0.3s ease-in-out 0s !important;
    -moz-transition: all 0.3s ease-in-out 0s !important;
    -o-transition: all 0.3s ease-in-out 0s !important;
    -ms-transition: all 0.3s ease-in-out 0s !important;
    transition: all 0.3s ease-in-out 0s !important;
}

.widget-post-list .post-item .post-thumbnail:hover::after {
    background-color: rgba(0,0,0,.2);
}

.widget-post-list .post-item .post-content {
    position: relative;
    width: 100%;
    padding: 16px 16px;
    background-color: #ffffff;
}

.widget-post-list .post-item .post-content h2 {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 0;
	color: #1a1a1a;
	-webkit-transition: all 0.3s ease-in-out 0s !important;
    -moz-transition: all 0.3s ease-in-out 0s !important;
    -o-transition: all 0.3s ease-in-out 0s !important;
    -ms-transition: all 0.3s ease-in-out 0s !important;
    transition: all 0.3s ease-in-out 0s !important;
}

.widget-post-list .post-item .post-content h2:hover {
	color: #0066ff;
}

.footer {
	position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
	width: 100%;
}

.footer .footer-bg-overlay {
	height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
	background: linear-gradient(to bottom,#42a5f5,#0066ff);
    opacity: 0.95;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.footer .footer-main {
	position: relative;
	padding: 100px 0px 100px 0px;
}

.footer .footer-main .footer-logo {
	width: 100%;
    max-width: 300px;
    height: auto;
}

.footer .footer-absolute {
	position: relative;
	padding: 8px 0;
    background-color: #0066ff;
    border-top: 1px solid #fff;
    transition: background .3s,border .3s,border-radius .3s,box-shadow .3s;
}

.footer-main .footer-col-title {
	font-family: 'Poppins', sans-serif;
	font-size: 24px;
	color: #fff;
	font-weight: 600;
	margin-bottom: 16px;
	line-height: 1.2;
}

.footer-main .footer-col-content p {
	margin-bottom: 8px;
	color: #fff;
}

.footer-main .footer-col-content p,
.footer-main .footer-col-content p a,
.sidebar-widget p,
.sidebar-widget p a {
	transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.footer-main .footer-col-content p:hover,
.footer-main .footer-col-content p:hover a {
	color: #ffffff;
	text-decoration: underline;
}

.sidebar-widget p:hover,
.sidebar-widget p:hover a {
	color: #0066ff;
}

.footer-main .list-social {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	margin-top: 16px;
}

.footer-main .list-social li {
	width: 40px;
	height: 40px;
	margin-right: 12px;
	background-color: #fff;
	border-radius: 4px;
	display: flex;
    align-items: center;
    justify-content: center;
	font-size: 18px;
}

.footer-main .list-social li a {
	width: 100%;
	height: 100%;
	display: flex;
    align-items: center;
    justify-content: center;
}

.section-page-title {
	position: relative;
	width: 100%;
	padding: 80px 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url("../images/page-header-bg.jpg");
	background-position: 100% 50%;
}

.section-page-title .page-title {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom,#000,#000);
    opacity: 0.5;
}

.section-page-title h2 {
	font-family: 'Poppins', serif;
	font-size: 36px;
	font-weight: 900;
	position: relative;
	z-index: 100;
	color: #fff;
}
/*#region PAGE SERVICES*/

.section-wrap.section-archive {
	padding: 100px 0;
}

.pagination .page-item.active .page-link {
	background-color: #000;
    border-color: #000;
}

.pagination .page-link { 
	font-family: 'Poppins', sans-serif;
	color: #1a1a1a;
	border-radius: 0 !important;
	font-weight: 600;
}

#contact .business-info h3 {
	font-family: 'Poppins', serif;
    font-size: 24px;
    color: #000;
    font-weight: 400;
    margin-bottom: 16px;
    line-height: 1.2;
}

.field-group input,
.field-group select,
.field-group textarea {
	font-family: 'Poppins', sans-serif;
	padding: 12px 16px;
	display: block;
	width: 100%;
	font-size: 14px;
	border: 2px solid #ddd;
	border-radius: 0;
	background-color: transparent;
	color: #1a1a1a;
	outline: none;
	font-size: 1rem;
    line-height: 1.86;
}

#btnScrollTop {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 99;
	border: none;
	outline: none;
	background-color: #0066ff;
	color: #fff;
	cursor: pointer;
	padding: 0;
	border-radius: 50%;
	width: 45px;
	height: 45px;
	border: 2px solid #fff;
	line-height: inherit;
	text-align: center;
}

#btnScrollTop:hover {
	background: #fff;
	color: #0066ff;
	border-color: #0066ff;
}

.giuseart-pc-contact-bar {
    right: 20px;
    bottom: 160px;
    position: fixed;
    z-index: 99;
	padding: 0;
    margin-bottom: 0;
}

.giuseart-pc-contact-bar li {
    width: 44px;
    height: 44px;
    overflow: hidden;
    margin-bottom: 0;
    list-style: none;
	background-repeat: no-repeat;
}

.giuseart-pc-contact-bar li a {
    display: block;
    width: 44px;
    height: 44px;
}

.btn-phone {
	transition: .3s all;
}

.phone-group.phone-show {
	visibility: visible;
}

.phone-group {
	position: fixed;
	visibility: hidden;
	cursor: pointer;
	z-index: 99;
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateZ(0);
	-webkit-transition: visibility .5s;
	-moz-transition: visibility .5s;
	-o-transition: visibility .5s;
	transition: visibility .5s;
	right: -10px;
	bottom: 60px;
}

.phone-ph-circle,
.phone-group {
	width: 100px;
	height: 100px;
	background-color: transparent;
}

.phone-group.phone-green .phone-ph-circle {
	border-color: #ff5350;
	opacity: .5;
}

.phone-ph-circle {
	top: 0;
	left: 0;
	position: absolute;
	-webkit-border-radius: 100% !important;
	-moz-border-radius: 100% !important;
	border-radius: 100% !important;
	border: 2px solid #ff5350;
	opacity: .1;
	-webkit-animation: phone-circle-anim 1.2s infinite ease-in-out;
	-moz-animation: phone-circle-anim 1.2s infinite ease-in-out;
	-ms-animation: phone-circle-anim 1.2s infinite ease-in-out;
	-o-animation: phone-circle-anim 1.2s infinite ease-in-out;
	animation: phone-circle-anim 1.2s infinite ease-in-out;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
	transform-origin: 50% 50%;
}

.phone-ph-circle,
.phone-ph-img-circle {
	-webkit-transform-origin: 50% 50%;
	-moz-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	-o-transform-origin: 50% 50%;
}

.phone-group.phone-green .phone-ph-circle-fill {
	background-color: #ff5350;
	opacity: .75 !important;
}

.phone-ph-circle-fill {
	width: 60px;
	height: 60px;
	top: 20px;
	left: 20px;
	position: absolute;
	background-color: #000;
	-webkit-border-radius: 100% !important;
	-moz-border-radius: 100% !important;
	border-radius: 100% !important;
	border: 2px solid transparent;
	opacity: .1;
	-webkit-animation: phone-circle-fill-anim 2.3s infinite ease-in-out;
	-moz-animation: phone-circle-fill-anim 2.3s infinite ease-in-out;
	-ms-animation: phone-circle-fill-anim 2.3s infinite ease-in-out;
	-o-animation: phone-circle-fill-anim 2.3s infinite ease-in-out;
	animation: phone-circle-fill-anim 2.3s infinite ease-in-out;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
	-webkit-transform-origin: 50% 50%;
	-moz-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	-o-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
}

.phone-group.phone-green .phone-ph-img-circle {
	background-color: #db0922;
	box-shadow: 0 0 20px 6px #db0922;
}

.phone-ph-img-circle {
	width: 30px;
	height: 30px;
	top: 35px;
	left: 35px;
	position: absolute;
	background: url(../images/phone-ico.png) center center no-repeat rgba(30, 30, 30, .1);
	background-size: contain;
	-webkit-border-radius: 100% !important;
	-moz-border-radius: 100% !important;
	border-radius: 100% !important;
	border: 2px solid transparent;
	opacity: .7;
	-webkit-animation: phone-circle-img-anim 1s infinite ease-in-out;
	-moz-animation: phone-circle-img-anim 1s infinite ease-in-out;
	-ms-animation: phone-circle-img-anim 1s infinite ease-in-out;
	-o-animation: phone-circle-img-anim 1s infinite ease-in-out;
	animation: phone-circle-img-anim 1s infinite ease-in-out;
	transform-origin: 50% 50%;
}

@-moz-keyframes phone-circle-anim {
	0% {
		transform: rotate(0) scale(.5) skew(1deg);
		opacity: .1
	}

	30% {
		transform: rotate(0) scale(.7) skew(1deg);
		opacity: .5
	}

	100% {
		transform: rotate(0) scale(1) skew(1deg);
		opacity: .1
	}
}

@-webkit-keyframes phone-circle-anim {
	0% {
		transform: rotate(0) scale(.5) skew(1deg);
		opacity: .1
	}

	30% {
		transform: rotate(0) scale(.7) skew(1deg);
		opacity: .5
	}

	100% {
		transform: rotate(0) scale(1) skew(1deg);
		opacity: .1
	}
}

@-o-keyframes phone-circle-anim {
	0% {
		transform: rotate(0) scale(.5) skew(1deg);
		opacity: .1
	}

	30% {
		transform: rotate(0) scale(.7) skew(1deg);
		opacity: .5
	}

	100% {
		transform: rotate(0) scale(1) skew(1deg);
		opacity: .1
	}
}

@keyframes phone-circle-anim {
	0% {
		transform: rotate(0) scale(.5) skew(1deg);
		opacity: .1
	}

	30% {
		transform: rotate(0) scale(.7) skew(1deg);
		opacity: .5
	}

	100% {
		transform: rotate(0) scale(1) skew(1deg);
		opacity: .1
	}
}

@-moz-keyframes phone-circle-fill-anim {

	0%,
	100% {
		transform: rotate(0) scale(.7) skew(1deg);
		opacity: .2
	}

	50% {
		transform: rotate(0) scale(1) skew(1deg);
		opacity: .2
	}
}

@-webkit-keyframes phone-circle-fill-anim {

	0%,
	100% {
		transform: rotate(0) scale(.7) skew(1deg);
		opacity: .2
	}

	50% {
		transform: rotate(0) scale(1) skew(1deg);
		opacity: .2
	}
}

@-o-keyframes phone-circle-fill-anim {

	0%,
	100% {
		transform: rotate(0) scale(.7) skew(1deg);
		opacity: .2
	}

	50% {
		transform: rotate(0) scale(1) skew(1deg);
		opacity: .2
	}
}

@keyframes phone-circle-fill-anim {

	0%,
	100% {
		transform: rotate(0) scale(.7) skew(1deg);
		opacity: .2
	}

	50% {
		transform: rotate(0) scale(1) skew(1deg);
		opacity: .2
	}
}

@-moz-keyframes phone-circle-img-anim {

	0%,
	100%,
	50% {
		transform: rotate(0) scale(1) skew(1deg)
	}

	10%,
	30% {
		transform: rotate(-25deg) scale(1) skew(1deg)
	}

	20%,
	40% {
		transform: rotate(25deg) scale(1) skew(1deg)
	}
}

@-webkit-keyframes phone-circle-img-anim {

	0%,
	100%,
	50% {
		transform: rotate(0) scale(1) skew(1deg)
	}

	10%,
	30% {
		transform: rotate(-25deg) scale(1) skew(1deg)
	}

	20%,
	40% {
		transform: rotate(25deg) scale(1) skew(1deg)
	}
}

@-o-keyframes phone-circle-img-anim {

	0%,
	100%,
	50% {
		transform: rotate(0) scale(1) skew(1deg)
	}

	10%,
	30% {
		transform: rotate(-25deg) scale(1) skew(1deg)
	}

	20%,
	40% {
		transform: rotate(25deg) scale(1) skew(1deg)
	}
}

@keyframes phone-circle-img-anim {

	0%,
	100%,
	50% {
		transform: rotate(0) scale(1) skew(1deg)
	}

	10%,
	30% {
		transform: rotate(-25deg) scale(1) skew(1deg)
	}

	20%,
	40% {
		transform: rotate(25deg) scale(1) skew(1deg)
	}
}

.section-single .post-name {
	font-family: 'Poppins', sans-serif;
    margin-bottom: 48px;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.2;
    color: #1a1a1a;
}

.section-single .post-info {
	font-family: 'Poppins', sans-serif;
    display: flex;
    margin-bottom: 16px;
	font-weight: 500;
	color: #1a1a1a;
}

.section-single .post-info h6 {
	margin-bottom: 0;
}

.section-single article,
#servicesTabContent article {
    padding: 20px 20px 20px 20px;
    border: 1px solid #f5f5f5;
    background: #f9f9f9;
    -webkit-box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%);
    -moz-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
    box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%);
    width: 100%;
    /*overflow: auto;*/
}

.section-single article *,
#servicesTabContent article *,
.section-single .product-info {
	font-family: 'Poppins', sans-serif;
	color: #1a1a1a;
	width: 100%;
	max-width: 100%;
}

.section-single article h1, #servicesTabContent article h1,
.section-single article h2, #servicesTabContent article h2,
.section-single article h3, #servicesTabContent article h3,
.section-single article h4, #servicesTabContent article h4,
.section-single article h5, #servicesTabContent article h5,
.section-single article h6, #servicesTabContent article h6 {
    margin-bottom: 16px;
	font-weight: 600;
	line-height: 1.5;
	margin: 1.25rem 0 0.75rem 0;
}

.section-single .product-info .product-description h1, 
.section-single .product-info .product-description h2, 
.section-single .product-info .product-description h3, 
.section-single .product-info .product-description h4, 
.section-single .product-info .product-description h5, 
.section-single .product-info .product-description h6 {
    margin-bottom: 16px;
	font-weight: 600;
	line-height: 1.5;
	margin: 1.25rem 0 0.75rem 0;
}

.section-single article h1,
#servicesTabContent article h1,
.section-single .product-info .product-description h1 {
	font-size: 36px;
}
.section-single article h2,
#servicesTabContent article h2,
.section-single .product-info .product-description h2 {
	font-size: 28px;
}
.section-single article h3,
#servicesTabContent article h3,
.section-single .product-info .product-description h3 {
	font-size: 24px;
}
.section-single article h4,
#servicesTabContent article h4,
.section-single .product-info .product-description h4 {
	font-size: 20px;
}
.section-single article h5,
#servicesTabContent article h5,
.section-single .product-info .product-description h5 {
	font-size: 18px;
}
.section-single article h6,
#servicesTabContent article h6,
.section-single .product-info .product-description h6 {
	font-size: 16px;
}

.section-single article p,
#servicesTabContent article p,
.section-single .product-info .product-description p {
	margin-bottom: 16px;
}

.section-single article ul, #servicesTabContent article ul,
.section-single article ol, #servicesTabContent article ol,
.section-single .product-info .product-description ul,
.section-single .product-info .product-description ol {
	margin: 0px 0px 8px 0px;
	list-style: initial;
}

.section-single article li,
#servicesTabContent article li,
.section-single .product-info .product-description li {
	margin: 0px 0px 4px 0px;
}

.section-single article img,
#servicesTabContent article img,
.section-single .product-info .product-description img {
	display: block;
	margin: 20px auto 20px auto;
}

.section-single article > .entry-content > *:first-child,
#servicesTabContent article > .entry-content > *:first-child,
.section-single .product-info .product-description > *:first-child {
	margin-top: 0px;
}

.section-single article > .entry-content > *:last-child,
#servicesTabContent article > .entry-content > *:last-child,
.section-single .product-info .product-description > *:last-child {
	margin-bottom: 0px !important;
}

.section-single article .wp-caption,
#servicesTabContent article .wp-cation,
.section-single .product-info .product-description .wp-cation {
	width: 100% !important;
	max-width: 100% !important;
}

.section-single article .wp-caption p,
#servicesTabContent article .wp-caption p,
.section-single .product-info .product-description .wp-cation p {
	text-align: center;
	font-style: italic;
	font-size: 14px;
}

.section-single article table,
#servicesTabContent article table {
    width: 100% !important;
    height: 100% !important;
    overflow: auto;
    display: block;
}

.section-single article table > :not(caption) > * > *,
#servicesTabContent article table > :not(caption) > * > *,
.section-single .product-info .product-description table > :not(caption) > * > * {
	border: 1px solid #ddd;
}

.section-single article table tr td,
.section-single article table tr th,
#servicesTabContent article table tr td,
#servicesTabContent article table tr th,
.section-single .product-info .product-description table tr td,
.section-single .product-info .product-description table tr th {
	vertical-align: middle;
	padding: 6px 12px;
}

#productGallery .gallery-main {
    margin-bottom: 8px;
}

#productGallery .gallery-main .gallery-item {
    width: 100%;
    text-align: center;
}

#productGallery .gallery-main .gallery-item .btn-zoom {
    width: auto;
    height: auto;
    top: 8px;
    right: 8px;
    left: auto;
    bottom: auto;
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out 0s !important;
    -moz-transition: all 0.3s ease-in-out 0s !important;
    -o-transition: all 0.3s ease-in-out 0s !important;
    -ms-transition: all 0.3s ease-in-out 0s !important;
    transition: all 0.3s ease-in-out 0s !important;
}

#productGallery .gallery-main .gallery-item:hover .btn-zoom {
    opacity: 1;
}

#productGallery .gallery-main .gallery-item .btn-zoom button {
    border: 0;
    border-radius: 50rem;
    background-color: #ffffff;
    color: #1a1a1a;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease-in-out 0s !important;
    -moz-transition: all 0.3s ease-in-out 0s !important;
    -o-transition: all 0.3s ease-in-out 0s !important;
    -ms-transition: all 0.3s ease-in-out 0s !important;
    transition: all 0.3s ease-in-out 0s !important;
}

#productGallery .gallery-main .gallery-item .btn-zoom:hover button {
    color: #0066ff;
}

#productGallery .gallery-nav .gallery-item {
    margin-right: 8px;
    width: calc((100% - 24px) / 4);
    text-align: center;
}

#productGallery .gallery-main .gallery-item .item-wrap,
#productGallery .gallery-nav .gallery-item .item-wrap {
    position: relative;
    max-width: 100%;
    width: 100%;
    height: 100%;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
}

#productGallery .gallery-nav .gallery-item .item-wrap::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    -webkit-transition: all 0.3s ease-in-out 0s !important;
    -moz-transition: all 0.3s ease-in-out 0s !important;
    -o-transition: all 0.3s ease-in-out 0s !important;
    -ms-transition: all 0.3s ease-in-out 0s !important;
    transition: all 0.3s ease-in-out 0s !important;
}

#productGallery .gallery-nav .gallery-item.is-nav-selected .item-wrap::after {
    background-color: rgba(0,0,0,.3);
}

#productGallery .gallery-main .gallery-item .item-wrap img,
#productGallery .gallery-nav .gallery-item .item-wrap img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* smaller, dark, rounded square */
#productGallery .flickity-button {
  background: transparent;
  color: #fff;
}
#productGallery .flickity-button:hover {
  background: linear-gradient(to bottom,#42a5f5,#0066ff);
    color: #fff;
}

#productGallery .flickity-prev-next-button {
  width: 30px;
  height: 30px;
}

.section-wrap#about {
	padding-top: 100px;
}

.section-wrap#services, .section-wrap#contact, .section-wrap#sectionEmpty {
    padding: 100px 0;
}

/* .page-template-about-us .section-why-choose-us {
    padding-bottom: 100px;
} */

.button-tab.active::after {
    width: 100%;
}

h3.search-query {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    width: 100%;
    max-width: 100%;
    margin-bottom: 3rem;
}

.pagination .page-numbers {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #1a1a1a;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
}

.pagination .page-numbers:not(:last-child) {
    margin-right: 8px;
}

.pagination .page-numbers.current {
    background-color: #0066ff;
    color: #ffffff;
}

#sectionEmpty .searchForm {
    display: block !important;
    margin: 0;
    width: 100%;
    max-width: 400px;
}

#sectionEmpty .searchForm input {
    min-width: initial;
    width: 100%;
}

@media (min-width: 1200px) {
	#navbarsMenu {
		display: none;
	}

	.nav-link::after {
		content: '';
		width: 0px;
		height: 2.5px;
		position: absolute;
		top: 100%;
		left: 0;
		background: #fff;
		transition: 500ms;
	}

	#navbarsMenu .nav-item .dropdown i {
		color: #1a1a1a;
	}

	.nav-link:hover::after,
	.nav-link.active::after{
		width: 100%;
	}

	#navbarsMenu .nav-item:hover .dropdown-menu,
	.header-bottom li:hover .dropdown-menu {
		display: block;
		visibility: visible;
		opacity:1;
		transform: translate(0px, 8px);
		transition:.5s ease all;
		margin-top: 0;
	}

    #navbarsMenu .nav-item:hover .nav-link::after {
        width: 100%;
    }
	
	#navbarsMenu .nav-item .dropdown-menu,
	.header-bottom li .dropdown-menu {
		display: block;
		visibility: hidden;
		opacity:0;
		transform: translate(-50px, 8px);
		transition:.3s ease all;
		min-width: 200px;
	} 

	.header-bottom li .dropdown-menu {
		transition: all 0.3s linear;
		-moz-transition: all 0.3s linear;
		-webkit-transition: all 0.3s linear;
		-o-transition: all 0.3s linear;
	}
	
	#header.sticky #navbarsMenu {
		display: flex;
	}

	.header-phone {
		font-size: 24px;
	}

	#header.sticky .header-phone {
		display: none !important;
	}

	#header.sticky #navbarsMenu .nav-item:hover .nav-link,
	#header.sticky #navbarsMenu .nav-item.active .nav-link {
		color: #0066ff;
	}

	#header.sticky #navbarsMenu .nav-item:hover .dropdown i,
	#header.sticky #navbarsMenu .nav-item.active .dropdown i {
		color: #0066ff;
	}

	#header.sticky .searchForm {
		margin-left: 0;
	}

	#header.sticky .searchForm input {
		min-width: 250px;
	}
}

@media (max-width: 1199.99px) {

	#navbarsMenu .nav-item {
		width: 100%;
		padding: 0;
		border-bottom: 1px solid;
	}

	.header-bottom {
		display: none;
	}

	.searchForm {
		margin-left: 0;
		margin-right: 1rem;
	}

	.navbar-toggler.collapsed .toggler-icon {
		background-color: #ffffff;
	}

	#navbarsMenu .nav-item .dropdown .nav-link {
		width: calc(100% - 53px);
	}

	#navbarsMenu .nav-item .dropdown span.dropdown-toggle {
		width: 48px;
		height: 48px;
		align-items: center;
		justify-content: center;
		cursor: pointer;
	}
	
	#navbarsMenu .dropdown-menu {
		border: 0;
		padding: 16px 0;
		margin: 0;
		margin-bottom: 0;
		margin-left: 0;
		border-radius: 0;
	}

	#navbarsMenu .dropdown-menu .dropdown-item {
		text-align: left;
	}

	#navbarsMenu .nav-link {
		padding: 12px 10px;
		margin-right: 0;
		margin-left: 0;
		color: #1a1a1a;
	}

	#navbarsMenu .nav-item.active {
		background-color: #0066ff;
	}

	#navbarsMenu .nav-item.active .nav-link,
	#navbarsMenu .nav-item.active i {
		color: #ffffff;
	}

	.partner-slider .partner-item {
		width: calc((100% - 24px) / 4);
	}

	.photo-slider .photo-item {
		width: calc((100%/4) - 10px);
	}

	.header-main > div {
		padding-left: 0;
		padding-right: 0;
	}

	.header-main .navbar {
		padding-left: 12px;
		padding-right: 12px;
	}

	.navbar .button-group {
		order: 2;
		flex: 1;
	}

	.navbar .navbar-toggler {
		order: 3;
		height: 40px;
		background-color: #0066ff;
		color: #fff;
		padding: 0.25rem 0.5rem;
		border-radius: 0;
	}
}

@media (max-width: 991.99px) {
	.ova-image-box .img-flower {
		left: -20px;
	}

	.ova-image-box .ova-image-wrap {
		width: auto;
		max-width: 100%;
		padding: 0 20px;
	}
	
	.searchForm {
		display: none;
	}

	.searchForm input {
		min-width: 250px;
	}
	
	.img-contact {
	    min-height: 300px;
	}
}

@media (max-width: 767.99px) {

	.ova-image-box .ova-image {
		padding: 20px;
	}

	.ova-image-box .ova-image::before {
		width: 85%;
	}

	.ova-image-box .ova-image img.thumb {
		width: auto;
		min-height: auto;
	}

	.ova-image-box .ova-image img.ytb-play {
		width: 80px;
	}

	.testimonial-slider .testimonial-item {
		width: calc(100%);
	}

	.photo-slider .photo-item {
		width: calc((100%/3) - 10px);
	}

	.partner-slider .partner-item {
		width: calc((100% - 16px) / 3);
	}

	.search-dropdown button {
		outline: none !important;
		box-shadow: none !important;
		color: #1a1a1a !important;
	}

	.search-dropdown .dropdown-menu {
		border-radius: 0;
		margin-right: 0 !important;
	}

	.search-dropdown .dropdown-menu input {
		padding: 0.375rem 0.75rem;
		border: 0;
		outline: none;
		min-width: 250px;
	}

	.search-dropdown .dropdown-menu button[type="submit"] {
		background-color: #0066ff;
		border-color: #0066ff;
		border-radius: 0;
		color: #ffffff !important;
	}

	.section-wrap {
		padding: 40px 0;
	}
	.section-banner {
		padding-top: 0;
		padding-bottom: 40px;
	}
	.section-wrap.section-archive {
		padding: 80px 0;
	}
	.section-wrap#about {
		padding-top: 80px;
	}
	.section-wrap#services, .section-wrap#contact, .section-wrap#sectionEmpty {
	    padding: 80px 0;
	}
	
	.section-news,
	.page-template-about-us .section-why-choose-us {
	    padding-bottom: 80px;
	}
	.footer .footer-main {
		padding: 80px 0 80px 0;
	}

	.img-about-us,
	.ytb-player img.thumb {
		min-height: 350px;
	}

	.section-single article h1,
	.section-single .product-info .product-description h1 {
		font-size: 32px;
	}
	.section-single article h2,
	.section-single .product-info .product-description h2 {
		font-size: 24px;
	}
	.section-single article h3,
	.section-single .product-info .product-description h3 {
		font-size: 20px;
	}
	.section-single article h4,
	.section-single .product-info .product-description h4 {
		font-size: 18px;
	}
	.section-single article h5,
	.section-single .product-info .product-description h5 {
		font-size: 17px;
	}
	.section-single article h6,
	.section-single .product-info .product-description h6 {
		font-size: 16px;
	}
}

@media (max-width: 576.99px) {
	
	.title,
	.section-single .post-name {
		font-size: 28px;
	}

	.section-page-title h2 {
		font-size: 28px;
	}
	
	.header-main .navbar {
	    justify-content: center;
	}

	.feature-box .icon {
		width: 80px;
	}

	#videoModal .modal-body {
		padding: 0.5rem;
	}

	.ova-image-box .ova-image-wrap {
		padding: 0;
	}

	.ova-image-box .ova-image {
		padding-left: 0;
	}

	.ova-image-box .ova-image img.ytb-play {
		width: 60px;
	}

	.partner-slider .partner-item {
		width: calc((100% - 8px) / 2);
	}

	.search-dropdown .dropdown-menu input {
		min-width: 220px;
	}

	.section-wrap {
		padding: 30px 0;
	}
	.section-banner {
	    padding-top: 0;
		padding-bottom: 30px;
	}
	.section-wrap.section-archive {
		padding: 60px 0;
	}
	.section-wrap#about {
		padding-top: 60px;
	}
	.section-wrap#services, .section-wrap#contact, .section-wrap#sectionEmpty {
	    padding: 60px 0;
	}
	
	.section-news,
	.page-template-about-us .section-why-choose-us {
	    padding-bottom: 60px;
	}
	.footer .footer-main {
		padding: 60px 0 60px 0;
	}

	.img-about-us, .ytb-player img.thumb {
		min-height: 250px;
	}

	.section-page-title {
		padding: 50px 0;
	}
}