/* General */

body {
    font-family: 'Titillium Web', sans-serif;
    color: #666;
}

:root {
    --color1: #303935;
    --color2: #22b2e5;
}

a:hover {
    text-decoration: none;
}
a,button{
    transition: all .3s ease;
}
button{
    cursor: pointer;
}

.img-fluid {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color1);
    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;
}

.mobile-nav {
    display: none;
}

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

.swiper-button-prev,
.swiper-button-next {
    color: white;
    background-color: var(--color2);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    transition: all .3s ease;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 15px;
    font-weight: 700;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: var(--color1);
    color: white;
}

.swiper-pagination-bullet-active {
    background: var(--color1) !important;
    width: 25px !important;
    height: 10px !important;
    border-radius: 0 !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet {
    background: var(--color2);
    width: 25px;
    height: 10px;
    border-radius: 0;
    opacity: 1;
}

.swiper-button-next:focus,
.swiper-button-prev:focus {
    outline: none;
}

.product-detail .swiper-pagination {
    width: 100%;
}
.testimonial-box .quote iframe {
    width: 100%;
    height: 250px;
}

.testimonial-box .quote img {
    width: 100%;
    height: auto;
}

.g-maps iframe {
    width: 100%;
}
/* 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;
}

#scroll-top {
    position: fixed;
    right: 0px;
    bottom: 75px;
    margin: 0;
    text-decoration: none;
    z-index: 9999999999999999;
}

#scroll-top button {
    width: 40px;
    height: 40px;
    outline: none;
    cursor: pointer;
    background-color: var(--color2);
    color: white;
    display: block;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    transition: 1s;
    border: none;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

#scroll-top button i {
    font-size: 20px;
}

.sticky-right {
    position: relative;
}

.sticky-right .social-items a {
	width: 55px;
	height: 55px;
	background-color: #e91c23;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 35px;
	padding: 0 5px;
	cursor: pointer;
	margin: 10px 5px 5px 5px;
    border-radius: 10px;
}

.sticky-right .social-items .instagram {
	background: #f09433;
	background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
	background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
	background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f09433', endColorstr='#bc1888', GradientType=1);
}

.sticky-right .social-items span {
    width: 0;
    opacity: 0;
    font-size: 16px;
    white-space: nowrap;
}

.sticky-right .social-items {
    display: flex;
	flex-wrap: wrap;
}

.sticky-right .social-items a.twitter, .profile-social .fa-twitter  {
    background-color: #000000;
}

.sticky-right .social-items a.linkedin {
    background-color: #0077b5;
}

.sticky-right .social-items a.google-plus {
    background-color: #dd4b39;
}

.sticky-right .social-items a.whatsapp {
    background: linear-gradient(45deg, #25e676 0%, #32cb2a 100%);
}

.sticky-right .social-items a.facebook, .profile-social .fa-facebook  {
    background-color: #3b5998;
}

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

.logo-menu.js-is-sticky,.logo-menu.js-is-stuck{
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.20);
    border-bottom: none;
    background-color: white;
    display: flex;
    align-items: center;
}

.logo-menu.js-is-sticky .search ,.logo-menu.js-is-stuck .search {
    opacity: 0;
    height: 0;
    pointer-events: none;
}
.main-menu{
    position: relative;
    bottom: 0;
    transition: all .3s;
}

.js-is-sticky .main-menu ,.js-is-stuck .main-menu {
    bottom: 13px;
}
.logo-menu{
    height: 106px;
    transition: height .3s;
}
.logo-menu.js-is-sticky,.logo-menu.js-is-stuck{
    height: 70px;
    padding: 0;
}

.logo-menu.js-is-sticky .logo img ,.logo-menu.js-is-stuck .logo img {
    max-height: 60px;
}

.logo-menu .logo img {
    transition: all .3s;
    max-height: 75px;
} 
.logo-menu .search{
    height: 40px;
    opacity: 1;
    transition: all .3s;
}

.header-mobile.js-is-sticky,.header-mobile.js-is-stuck{
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.20);
    border-bottom: none;
    background-color: white;
}

.p70 {
    padding: 70px 0;
}

.section-title {
    text-align: center;
    color: var(--color1);
    font-size: 30px;
    font-weight: 700;
}

.section-desc {
    text-align: center;
}

.page-title {
    color: var(--color1);
    font-size: 30px;
    font-weight: 700;
    position: relative;
    margin-left: 10px;
    margin-bottom: 20px;
}

.page-title:after {
    position: absolute;
    content: "";
    background-color: var(--color1);
    width: 4px;
    height: 42px;
    left: -10px;
}

.separator {
    width: 50px;
    height: 2px;
    background: var(--color1);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 20px;
    margin-bottom: 50px;
}

.separator:before {
    content: '';
    width: 10px;
    height: 2px;
    background: var(--color1);
    position: absolute;
    top: 0;
    left: -20px;
}

.separator:after {
    content: '';
    width: 10px;
    height: 2px;
    background: var(--color1);
    position: absolute;
    top: 0;
    right: -20px;
}

.button1 a,.button1 button {
    background-color: var(--color2);
    color: white;
    padding: 8px 30px;
    font-weight: 700;
    border-radius: 3px;
    border: none;
}

.button1 a:hover,.button1 button:hover {
    background-color: var(--color1);
}

.button2 a {
    background-color: var(--color2);
    color: white;
    padding: 8px 30px;
    font-weight: 700;
    border-radius: 3px;
}

.button2 a:hover {
    background-color: var(--color1);
}


.darkbg {
    background: #f3f3f3;
}

.modal-title {
    font-size: 18px;
    color: var(--color1);
    font-weight: 700;
}

.modal-header .close {
    border: none;
    background-color: transparent;
    font-size: 35px;
    position: absolute;
    right: 10px;
    top: -3px;
    color: #333;
    outline: none;
    font-weight: 700;
}

/* header top */

.header-top {
    background-color: var(--color1);
    padding: 3px 0;
}

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

.header-top ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

.header-top ul li a {
    color: white;
}

.header-top ul li a:hover {
    opacity: 0.8;
}

.header-top .left ul li {
    margin-right: 20px;
}

.header-top .left ul.social li {
    margin-right: 10px;
}

.header-top .right ul li.lang {
    color: white;
}

.header-top .right ul li a img {
    max-height: 18px;
    margin-left: 15px;
    margin-bottom: 2px;
}

/* logo menÃƒÆ’Ã‚Â¼ */

.logo-menu {
    background-color: white;
    padding: 5px 0 0 0;
    /* border-bottom: solid 2px var(--color2); */
}

.logo-menu .items {
    align-items: center;
}

.logo-menu .search {
    margin-bottom: 20px;
    text-align: right;
    margin-top: 10px;
}

.logo-menu .search .form-control {
    width: 43%;
    background: white;
    border: solid 1px var(--color2);
    border-radius: 5px;
    height: 40px;
    padding: 5px 20px;
    outline: none;
}

.logo-menu .search button {
    background-color: var(--color2);
    color: white;
    border: none;
    padding: 0 30px;
    font-weight: 700;
    margin-left: 5px;
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    height: 40px;
}

.logo-menu .search button:hover {
    background-color: var(--color1);
    transition: all .3s ease;
}




.main-menu {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu .navigation {
    position: relative;
    margin: 0px;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    list-style: none;
    width: 100%;
}

.main-menu .navigation>li {
    position: relative;
    float: left;
    padding: 0px 0px 7px 0px;
    margin-right: 25px;
    transition: all 300ms ease;
    white-space: nowrap;
}

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

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

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

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

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

.main-menu .navigation>li>ul>li:hover {
    background: var(--color2);
    transition: all 300ms ease;
}


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

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

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

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

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

.main-menu .navigation>li>ul>li.dropdown>a:after {
    position: absolute;
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    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: white;
    border: 1px solid #ecebeb;
    transform: scaleY(0);
    transform-origin: top;
    transition: all 100ms ease;
    list-style: none;
}

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

.main-menu .navigation>li>ul>li>ul>li:hover {
    background: var(--color2);
    transition: all 300ms ease;
}

.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: 15px;
    line-height: 24px;
    color: var(--color1);
    font-weight: 500;
    text-align: left;
    display: inline-block;
    transition: all 200ms ease;
    padding: 10px 30px 10px 10px;
    width: 100%;
}

.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: white;
}

.main-menu .navigation>li.dropdown:hover>ul {
    transform: scale(1);
    visibility: visible;
    opacity: 1;
    border: solid 2px var(--color2);
}

.main-menu .navigation li>ul>li.dropdown:hover>ul {
    transform: scale(1);
    visibility: visible;
    opacity: 1;
    top: 96%;
    border-top: solid 3px var(--color2);
    border-bottom: solid 3px var(--color2);
    border-right: solid 3px var(--color2);
}

/* slider */

.slider {
    position: relative;
    background-color: white;
    overflow: hidden;
}

.slider .slider-owl-1 {
    z-index: 100;
}

.slider .swiper-slide > a {
    display: block;
    width: 100%;
}

.slider .slider-show .mobile {
    display: none;
}

.slider-show {
    position: relative;
}

/*.slider-show:before {
    position: absolute;
    content: "";
    background: #000000 url('../images/overlayImg.png');
    width: 100%;
    height: 30%;
    z-index: 200;
    opacity: 0.3;
}*/

.slider-search {
    padding: 20px 0;
    text-align: center;
}

.slider-search .top-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

#video-background {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    left: 0px;
    top: 50%;
    transform: translateY(-30%);
}

.hero-search {
    display: flex;
    align-items: center;
}

.hero-search .form-group {
    width: 50%;
    padding-right: 10px;
    padding-left: 10px;
}

.hero-search .form-group .form-control {
    width: 100%;
    background: white;
    border: solid 1px #ddd;
    border-radius: 5px;
    height: 50px;
    padding: 0 10px;
    outline: none;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.hero-search .form-group button {
    background-color: var(--color2);
    color: white;
    border: none;
    padding: 0 30px;
    font-weight: 700;
    margin-left: 5px;
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    height: 50px;
}

.hero-search .form-group button:hover {
    background-color: var(--color1);
    transition: all .3s ease;
}

.hero-search .form-group.hero-button {
    width: 10%;
}

/* product home */

.products .section-title {
    text-align: left;
    position: relative;
    margin-left: 10px;
    margin-bottom: 15px;
}

.products .section-title:before {
    position: absolute;
    content: "";
    background-color: var(--color1);
    height: 42px;
    width: 4px;
    left: -10px;
}

.products .buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.products .button1 a {
    padding: 15px 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.products .button1 a i {
    font-size: 30px;
    margin-right: 10px;
}

.product-box {
    border: solid 1px #ddd;
    margin-bottom: 30px;
}

.product-box .picture {
    padding: 0;
    margin-bottom: 0;
    min-height: auto;
    height: auto;
    display: block;
    background-color: white;
    position: relative;
}

.product-box .picture img {
    vertical-align: middle;
    border-style: none;
}

.product-box .picture .product-hover-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-box .picture .product-hover-image:hover {
    opacity: 1;
    background-color: white;
}

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

.product-box:hover .title {
    color: var(--color2);
}

/* brands */

.brands .swiper-button-prev {
    left: -50px;
}

.brands .swiper-button-next {
    right: -50px;
}

.brands-box .brand {
    height: auto;
    background-color: white;
    text-align: center;
    padding: 10px;
    display: flex;
	justify-content: center;
	align-items: center;
    position: relative;
    border: solid 1px #ddd;
}

.brands-box .brand:hover {
    background-color: #f3f3f3;
}

.brands-box .brand span {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
}

.brands-box .brand img {
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    max-height: calc(100% - 24px)
}

.brands-box .brand a {
    color: var(--color1);
    max-height: calc(100% - 24px);
    display: flex;
    align-items: center;
	justify-content: center;
}

.brands .button1 {
    text-align: center;
    margin-top: 40px;
}

/* video gallery home */

.video-box-area {
    display: flex;
    justify-content: center;
}

.video-box-area>* {
    margin-bottom: 30px;
}

.video-box-area .col {
    height: 100%;
    padding-bottom: 10px;
}

.video-box-area .swiper-wrapper {
    display: flex;
}

.video-box2 {
    position: relative;
    background-color: white;
    height: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

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

.video-box2 .image {
    position: relative;
    overflow: hidden;
    margin: 0px;
}

.video-box2 .image img {
    position: relative;
    width: 100%;
}

.video-box2 .overlay-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    text-align: center;
    overflow: hidden;
    line-height: 80px;
    transition: all 0.3s ease;
}

.video-box2 .overlay-box:hover {
    background: rgba(0, 0, 0, 0.45);
}
/*
.video-box2 span {
    position: relative;
    width: 80px;
    height: 80px;
    top: 43%;
    z-index: 99;
    color: white;
    font-weight: 400;
    font-size: 30px;
    text-align: center;
    border-radius: 50%;
    padding-left: 4px;
    padding-top: 3px;
    background-color: var(--color1);
    display: inline-block;
    margin-top: -40px;
    transition: all 900ms ease;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
}

.video-box2:hover span {
    transform: rotate(360deg);
}
*/


.video-box2 .title {
    text-align: center;
    margin-bottom: 10px;
    padding: 10px;
}

.video-box2 .title a {
    font-size: 18px;
    font-weight: 600;
    color: var(--color1);
}

.video-gallery-home .swiper-button-prev, .picture-gallery-home .swiper-button-prev {
    left: -50px;
}

.video-gallery-home .swiper-button-next, .picture-gallery-home .swiper-button-next {
    right: -50px;
}

.video-gallery-home .button1 {
    text-align: center;
}

/* cta */

.cta {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
}

.cta:before {
    background-color: var(--color1);
    position: absolute;
    content: "";
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    opacity: 0.8;
}

.cta .top-title {
    text-align: center;
    font-size: 40px;
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta .sub-title {
    font-size: 20px;
    text-align: center;
    color: white;
    font-weight: 300;
    margin-bottom: 20px;
}

.cta .buttons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta .buttons .button2 {
    margin-left: 10px;
    margin-right: 10px;
}

.cta .buttons .button2 a {
    border: solid 2px white;
    display: flex;
    align-items: center;
}

.cta .buttons .button2 i {
    font-size: 25px;
    margin-right: 10px;
}

/* footer */

.footer {
    padding: 70px 0 30px 0;
}

.footer .logo img {
    max-width: 190px;
    margin-bottom: 0px;
}

.footer .title {
    color: var(--color1);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

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

.footer ul li {
    margin-bottom: 5px;
    color: #333;
}

.footer ul li a {
    color: #333;
}

.footer ul li a:hover {
    color: var(--color2);
}

.footer .items {
    border-bottom: solid 1px #ddd;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

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

.footer .bottom .right a {
    color: #333;
    font-size: 20px;
    margin-left: 10px;
}

.footer .bottom .copy {
    color: #333;
    font-size: 15px;
}

.footer .bottom .copy a {
    color: #666;
}

.footer .bottom .copy a:hover {
    color: #333;
}

.footer .bottom ul.social {
    display: flex;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info ul li {
    display: flex;
    border-bottom: dashed 1px #ddd;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.contact-info ul li:last-child {
    border: none;
}

.contact-info ul li span {
    min-width: 70px;
    font-weight: 700;
}



/* breadcrumb */

/*
.bredcrumb1:before {
	background-color: var(--color1);
    position: absolute;
    content: "";
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    opacity: 0.8;
}
*/

.bredcrumb1 .title {
    text-align: start;
    color: black;
    font-size: 26px;
    font-weight: 700;
    padding: 10px 0 10px;
}

.bredcrumb1 ul {
    /* position: absolute; */
    /* top: 10px; */
    display: flex;
    justify-content:flex-end;
    flex-wrap: wrap;
    margin: 0px;
    padding: 6px 0;
    color: black;
    /* padding-left: 17px; */
}

.bredcrumb1 ul li {
    list-style: none;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.bredcrumb1 ul li a {
    color: black;
    font-size: 14px;
}

.bredcrumb1 ul li a:hover {
    opacity: 0.8;
}

.bredcrumb1 ul li a:after {
    margin-left: 6px;
    margin-right: 6px;
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    content: "\f054";
    font-size: 10px;
}

/* text area */

.text-area img {
    max-width: 100%;
	margin-bottom: 15px;
	border-radius: 26px;
}

.text-area a {
    font-weight: 700;
}

.text-area ul {
    padding: 0;
}

.text-area ul li {
    list-style: none;
    margin-bottom: 10px;
}

.text-area ul li:before {
    content: "\f105";
    font-family: "Font Awesome 7 Free";
    color: #333;
    font-weight: 900;
    margin-right: 7px;
}

.content-wrapper {
    border: solid 1px #ddd;
    background-color: white;
    padding: 30px;
    margin-top: 30px;
}

.content-wrapper.m-bottom{
	margin-top: 0;
	margin-bottom: 30px;
}
/* about us page */


.video-box {
    position: relative;
    margin-bottom: 30px;
}

.video-box .image {
    position: relative;
    overflow: hidden;
    margin: 0px;
}

.video-box .image img {
    position: relative;
    width: 100%;
}

.video-box .overlay-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    text-align: center;
    overflow: hidden;
    line-height: 80px;
    transition: all 0.3s ease;
}

.video-box .overlay-box:hover {
    background: rgba(0, 0, 0, 0.45);
}

.video-box span {
    position: relative;
    width: 80px;
    height: 80px;
    top: 37%;
    z-index: 99;
    color: white;
    font-weight: 400;
    font-size: 30px;
    text-align: center;
    border-radius: 50%;
    padding-left: 4px;
    padding-top: 3px;
    background-color: var(--color2);
    display: inline-block;
    margin-top: -40px;
    transition: all 900ms ease;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
}

.video-box:hover span {
    transform: rotate(360deg);
}

/* why us home*/

.why-us-home {
    position: relative;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
}

.why-us-home:before {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    background-color: white;
    right: 0;
}

.why-us-home .section-top-title {
    margin-right: 80px;
}

.why-us-box {
    display: flex;
    margin-bottom: 50px;
}

.why-us-box .icon {
    display: flex;
    justify-content: center;
    margin-left: -45px;
    margin-right: 20px;
}

.why-us-box .icon i {
    color: white;
    border-radius: 50%;
    font-size: 40px;
    font-weight: 300;
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to left, var(--color2) 0%, var(--color1) 100%);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
}

.why-us-box .item {
    margin-top: 5px;
}

.why-us-box .title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color1);
}

.why-us-home .text-area {
    margin-right: 90px;
}


/* blog list */

.box-area>* {
    margin-bottom: 30px;
}

.box-area .col {
    height: 100%;
    padding-bottom: 10px;
}

.blog-box {
    display: block;
    border-bottom: solid 2px #ddd;
    padding-bottom: 15px;
    height: 100%;
}

.blog-box .picture {
    margin-bottom: 5px;
}

.blog-box .picture img:hover {
    opacity: 0.8;
}


.blog-box .title {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 7px;
}

.blog-box .title a {
    color: var(--color1);
}

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

.blog-box .desc {
    margin-bottom: 7px;
}

.blog-box .read-more {
    text-align: left;
    font-weight: 700;
}

.blog-box .read-more a {
    color: var(--color1);
}

.blog-box .read-more a:hover {
    color: var(--color2);
}

/* pagination */

.pagination-area {
    display: flex;
    justify-content: center;
}

.pagination-area ul.pagination {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.pagination-area li.page-item {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.pagination-area li.page-item a {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: var(--color1);
    background-color: #fff;
    border: 1px solid #ddd;
}

.pagination-area .page-item.active a {
    background-color: var(--color1);
    color: #fff;
}

/* sidebar */

.sidebar-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 7px;
    border-bottom: solid 2px #ddd;
    padding-bottom: 7px;
    color: var(--color1);
}

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


.sidebar-menu ul li {
    margin-bottom: 15px;
}

.sidebar-menu ul li a {
    position: relative;
    display: inline-block;
    padding-left: 12px;
    font-weight: 500;
    color: var(--color1);
}

.sidebar-menu ul li a:hover {
    color: var(--color2);
}

.sidebar-menu ul li a:before {
    content: "\f105";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 24%;
    font-size: 8px;
}


/* contact page */

.contact-page .title {
    font-size: 25px;
    position: relative;
    margin-bottom: 30px;
    font-weight: 600;
    color: var(--color1);
}

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

.contact-box {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact-box .icon {
    background-color: var(--color1);
    border-radius: 50%;
    min-width: 80px;
    min-height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    margin-right: 20px;
    color: white;
}

.contact-box .info-title {
    font-size: 20px;
    margin-bottom: 0px;
    font-weight: 600;
    color: var(--color1);
}

.contact-box .info-detail a {
    color: #666;
}

.contact-box .info-detail a:hover {
    color: var(--color2);
}

.form-group {
    width: 100%;
    margin-bottom: 20px;
}

.form-group .form-control {
    width: 100%;
    background: white;
    border: solid 1px #ddd;
    border-radius: 5px;
    height: 50px;
    padding: 0 20px;
    outline: none;
}

.form-group textarea {
    width: 100%;
    background: white;
    border: solid 1px #ddd;
    border-radius: 5px;
    height: 120px;
    padding: 10px 20px;
    outline: none;
}

.form-group input[type="file"] {
    width: 100%;
    background: white;
    border: solid 1px #ddd;
    border-radius: 5px;
    height: 50px;
    padding: 10px;
	outline: none;
	border-radius: 26px;
}

.form-group button {
    background-color: var(--color1);
    color: white;
    border: none;
    padding: 0 30px;
    font-weight: 700;
    margin-left: 5px;
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    height: 50px;
}

.form-group button:hover {
    background-color: var(--color2);
}

.form-group .send-button {
    text-align: center;
}

.form-group .recaptcha {
	display: flex;
	justify-content: center;
    text-align: center;
}

.g-maps {
    margin-top: 30px;
    margin-bottom: -77px;
}

.button1.navigation-button {
    display: none;
}

/* product list page */

.products-page .items {
    justify-content: center;
}

/* category page */

.pro-sidebar {
    border: solid 1px #ddd;
    background-color: white;
    padding: 15px;
    position: sticky;
    top: 85px;
}

.pro-sidebar .title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color1);
    margin-bottom: 10px;
}

.pro-search .form-group {
    width: 100%;
    margin-bottom: 20px;
}

.pro-search .form-group .form-control {
    width: 100%;
    background: white;
    border: solid 1px #ddd;
    border-radius: 5px;
    height: 50px;
    padding: 0 10px;
    outline: none;
}

.pro-search .form-group button {
    background-color: var(--color1);
    color: white;
    border: none;
    padding: 0 50px;
    font-weight: 700;
    margin-left: 5px;
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    height: 40px;
    text-align: center;
}

.pro-search .form-group button:hover {
    background-color: var(--color2);
    transition: all .3s ease;
}

.form-group.pro-button {
    text-align: center;
}

.category-box {
    border: solid 1px #ddd;
    background-color: white;
    padding: 15px;
    position: relative;
    margin-bottom: 30px;
}

.category-box .picture {
    width: 30%;
}

.category-box .picture {
    padding: 0;
    margin-bottom: 0;
    min-height: auto;
    height: auto;
    display: block;
    background-color: white;
    position: relative;
}

.category-box .picture img {
    vertical-align: middle;
    border-style: none;
}

.category-box .picture .product-hover-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.category-box .picture .product-hover-image:hover {
    opacity: 1;
    background-color: white;
}

.category-box .detail {
    width: 70%;
    padding-left: 20px;
}

.category-box a {
    display: flex;
}

.category-box .title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color1);
    margin-bottom: 10px;
}

.category-box .title:hover {
    color: var(--color2);
    transition: all .3s ease;
}

.category-box .desc {
    color: #666;
}

.category-box .read-more {
    position: absolute;
    right: 15px;
    bottom: 15px;
    border: solid 2px var(--color1);
    padding: 5px 35px;
    color: #666;
    font-weight: 600;
}

.category-box .read-more:hover {
    color: white;
    border: solid 2px var(--color2);
    background-color: var(--color2);
    transition: all .3s ease;
}

/* product detail */

.product-detail .swiper-button-prev {
    left: -50px;
}

.product-detail .swiper-button-next {
    right: -50px;
}

.product-detail .pro-info {
    margin-left: 0;
}

.product-detail .pro-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--color1);
    margin-bottom: 10px;
}

.product-detail .buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.product-detail .pro-detail .title {
    font-size: 25px;
    font-weight: 700;
    color: var(--color1);
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: solid 3px #ddd;
}

.product-detail .pro-detail ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-detail .pro-detail ul li {
    margin-bottom: 8px;
    border-bottom: dashed 1px #ddd;
    padding-bottom: 8px;
}

.product-detail .pro-detail ul li span {
    font-weight: 700;
    min-width: 180px;
    display: inline-block;
}

.product-detail .similar-products {
    margin-top: 65px;
}

.product-detail .similar-products .stitle {
    font-size: 25px;
    font-weight: 700;
    color: var(--color1);
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: solid 3px #ddd;
}

.product-detail .category-box .read-more {
    position: relative;
    display: flex;
    justify-content: center;
    right: 0;
    bottom: 1px;
}

.product-detail .pro-sidebar {
    margin-top: 0;
    padding: 0;
    border: none;
    position: relative;
    top: 0;
}

.product-detail .pro-sidebar .xtitle {
    font-size: 25px;
    font-weight: 700;
    color: var(--color1);
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: solid 3px #ddd;
}

.product-detail .area5 {
    margin-top: 70px;
}

.pro-ok {
    text-align: center;
}

.pro-ok span {
    display: block;
}

.pro-ok .ok {
    color: green;
    font-size: 20px;
}

.pro-ok .no {
    color: red;
    font-size: 20px;
}

/* search page */

.search-page .items7 {
    justify-content: center;
}

/* testimonials page */

.testimonials-page .button1 {
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-box {
    border: solid 1px #ddd;
    margin-bottom: 30px;
    background-color: white;
    padding: 15px;
}

.testimonial-box .bar {
    display: flex;
    justify-content: left;
    align-items: center;
    border-bottom: solid 2px #ddd;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.testimonial-box .bar .picture {
    margin-right: 10px;
}

.testimonial-box .bar .picture img {
    height: 70px;
    width: 70px;
    border-radius: 50%;
}

.testimonial-box .bar .name {
    font-size: 19px;
    font-weight: 700;
    color: var(--color1);;
}

/* error page */

.error-page .error-title {
    font-size: 50px;
    text-align: center;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
}

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

.error-page .button1 {
    text-align: center;
}
.bredcrumb1 .container {
    position: relative;
}

img.breadcloud {
    width: calc(100% - 30px);
    height: 100%;
    opacity: .8;
}


@media only screen and (min-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) {

    .header-mobile {
        display: none;
    }

}

@media only screen and (max-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) {
    .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;
        font-size: 30px;
        width: 45px;
        height: 45px;
        border-radius: 17px;
        font-weight: 100;
    }

    .mobile-header-icons a i.fab.fa-whatsapp {
        background-color: #25D366;
        font-size: 30px;
        width: 45px;
        height: 45px;
        border-radius: 17px;
        font-weight: 100;
    }

    .mobile-header-hamburger .hamburger-toggle {
        background: transparent;
        padding: 0px;
        margin: 0 10px;
        border: none;
        display: flex;
        align-items: center;

    }


    .mobile-header-hamburger .hamburger-toggle i{
        font-size: 30px;
        margin-left: 10px;
    }

    .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-menu ul li {
        padding: 10px 25px;
        list-style: none;
    }

    .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-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;
        border-radius: 26px;
    }

    .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;
        flex-wrap: wrap;
    }

    ul.mobile-menu-social li {
        margin: 5px 5px;
    }

    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;
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        transition: 0.5s;
        z-index: 999;
        background-color: #fff;
        box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.20);
        border-bottom: none;
        background-color: white;
    }

    .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 {
        top: 30px;
        left: 10px;
        right: 10px;
        font-size: 16px;
        text-align: center;
    }

    #scroll-top button {
        width: 30px;
        height: 30px;
    }

    #scroll-top button i {
        font-size: 15px;
    }

    .sticky-right {
        display: none;
    }

    /* header */

    .header-top {
        display: none;
    }

    .logo-menu {
        display: none;
    }

    /* slider */

    .slider .slider-show .desktop {
        display: none;
    }

    .slider .slider-show .mobile {
        display: block;
    }

    .slider-search .top-title {
        font-size: 16px;
		color: var(--color1);
    }

	.slider-search {
		position: relative;
		background-color: #f3f3f3;
		padding: 10px 0;
	}
	
	.slider {
		height: auto;
	}

    .hero-search {
        display: block;
    }

    .hero-search .form-group {
        width: 100%;
        margin-bottom: 30px;
    }

    .hero-search .form-group.hero-button {
        width: 100%;
    }

    /* products */

    .products .buttons {
        display: block;
    }

    .products .buttons .button1 {
        margin-bottom: 20px;
    }

    /* brands */

    .brands .swiper-button-prev,
    .brands .swiper-button-next {
        display: none;
    }

    /* video gallery */

    .video-gallery-home .swiper-button-prev,
    .video-gallery-home .swiper-button-next {
        display: none;
    }

    /* cta */

    .cta .top-title {
        font-size: 30px;
    }

    .cta .sub-title {
        font-size: 17px;
    }

    .cta .buttons {
        display: block;
    }

    .cta .buttons .button2 {
        margin-bottom: 20px;
    }

    .cta .buttons .button2 a {
        justify-content: center;
    }

    /* footer */

    .footer .logo {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer .bottom {
        display: block;
        text-align: center;
    }

    .footer .bottom .copy {
        margin-bottom: 10px;
    }

    .footer .bottom ul.social {
        justify-content: center;
        margin-bottom: -20px;
    }

    /* breadcrumb */

    .bredcrumb1 .title {
		font-size: 20px;
		color: #fff;
    }

    .bredcrumb1 .title {
        padding: 30px 0 30px;
    }

    .bredcrumb1 ul {
		width: 100%;
		left: 0;
    }

    /* about us page */

    .about-us-page .item2 {
        flex-direction: column-reverse;
    }

    /* sidebar */

    .sidebar-area {
        margin-top: 30px;
        position: sticky;
        top: 100px;
    }

    .pro-sidebar {
        margin-bottom: 30px;
    }

    /* category page */

    .category-box .picture {
        width: 100%;
        margin-bottom: 15px;
    }

    .category-box .detail {
        width: 100%;
        padding-left: 0;
    }

    .category-box a {
        display: block;
    }

    .category-box .read-more {
        position: relative;
        right: 0;
        bottom: 0;
        display: flex;
        justify-content: center;
    }

    /* product detail */

    .product-detail .swiper-button-prev {
        left: 0px;
    }

    .product-detail .swiper-button-next {
        right: 0px;
    }

    .product-detail .pro-info {
        margin-left: 0px;
    }

    .product-detail .pro-gallery {
        margin-bottom: 40px;
    }

    .product-detail .buttons {
        display: block;
        text-align: center;
    }

    .product-detail .buttons .button1 a {
        display: inline-block;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .product-detail .pro-sidebar .xtitle {
        margin-top: 30px;
    }

    /* contact page */

    .button1.navigation-button {
        display: block;
        margin-top: 20px;
    }

    /* why us */

    .why-us-home:before {
        width: 100%;
    }

    .why-us-box {
        margin-top: -80px;
        margin-bottom: 120px;
        margin-right: 15px;
    }

    .why-us-box .icon {
        margin-left: 15px;
    }

    .why-us-box:last-child {
        margin-bottom: 0px;
    }

    .why-us-home .text-area {
        margin-right: 15px;
        margin-left: 15px;
    }


}

.home-product-buttons {
    flex-direction: column;
}

.products .buttons .button1 {
    width: 100%;
    margin-bottom: 10px;
}

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

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

.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-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-play-button:hover:after {
    background-color: var(--color1);
}

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

.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;
}

@-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;
    }
}
ul.working-hours li {
    border-bottom: dashed 1px #ddd;
    padding-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

ul.working-hours li:nth-child(2) {
    padding-bottom: 10px;
}
.why-us-box{
	align-items: center;
}
.text-area img{
	height: auto;
}
.certificate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 20px 10px;
}
.flex-justify-content-center{
	display: flex !important;
	justify-content: center !important;
}
.text-center{
	text-align: center;
}

.about-us-home .video-box2 {
    height: auto;
}
.about-us-home .video-box2 .video-pop{
	top: 50%;
}
.filter-product{
	margin-bottom: 30px;
	border-radius: 26px;
}
.filter-product .form-group.pro-button {height: calc(100% - 20px);}

.filter-product button.searchbutton {
    width: 100%;
    height: 100%;
    margin-left: 0;
}

.form-group .form-control {
    border-radius: 50px !important;
}

.filter-product button.searchbutton {
    border-radius: 20px;
}

.logo-menu .search .form-control {
    border-radius: 20px;
}

.logo-menu .search button {
    border-radius: 20px;
}

.product-box {
    border: none;
}

.product-box .picture {
    margin-bottom: 5px;
    border-radius: 20px;
    overflow: hidden;
    border: solid 1px #ddd;
}

.product-box .picture img {
    width: 100%;
}

.product-box .title {
    border: solid 1px #ddd;
    border-radius: 50px;
}

.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: calc(100% - 40px);
	margin-bottom: 20px;
	position: absolute;
	z-index: 9;
	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
}

.logo-menu .search button {
    margin-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.logo-menu .search .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.logo-menu .search {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.video-box2 .picture {
    margin-bottom: 10px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
	min-height: max-content;
}

.video-box2 {
    background-color: transparent;
    height: calc(100% - 30px);
    box-shadow: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.video-box2 .title {
	background-color: white;
	border-radius: 50px;
	display: flex;
    align-items: center;
    justify-content: center;
	flex-grow: 1;
}
.button1 a,.button1 button {
    border-radius: 50px;
}

.swiper-button-prev,
.swiper-button-next {
    border-radius: 50%;
}

.button2 a {
    border-radius: 50px !important;
}
.form-group button{
	border-radius: 50px !important;
}
.form-group textarea{
	border-radius: 26px !important;
}
.g-recaptcha .rc-anchor-light.rc-anchor-normal {
    border-radius: 26px !important;
}
.blog-box .picture {
    overflow: hidden;
    border-radius: 26px;
}
.cta .top-title{
	font-size: 35px;
}

/* Standart Title */
.standard-title {
	position: relative !important;
	margin-left: 0 !important;
	padding-bottom: 5px !important;
	border: none !important;
}
.standard-title.center{
	text-align: center !important;
}

.standard-title::after {
    content: "" !important;
    position: absolute  !important;
    width: 250px !important;
    height: 2px !important;
    background-color: var(--color1) !important;
    left: 0 !important;
    bottom: 0 !important;
}
.standard-title.center::after{
	left: 50% !important;
	transform: translateX(-50%) !important;
}
.all-product-page .standard-title{
	text-transform: uppercase;
	display:block;
}

.standard-title::before {
    display: none;
}
.mb50{
	margin-bottom: 50px;
}
.mb20{
	margin-bottom: 20px;
}

/** Standart Title */

.product-box a {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-box {
    height: calc(100% - 30px);
}

.product-box .title {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.brands-box .brand {
    border: none;
    border-radius: 26px;
}
.testimonial-box {
    border-radius: 26px;
}
.product-detail .pro2-slider .item {
	overflow: hidden;
	border-radius: 26px;
    border: 1px solid #ddd;
}

.breadflag, .breadcloud {
    position: absolute;
    bottom: 0;
    max-width: 100%;
    max-height: 100%;
}

@media (max-width: 991px){
	.bredcrumb1:before{
		content: none;
	}
	.breadflag, .breadcloud{
		display: none;
	}
}

.sticky-right .social-items  a.pinterest {
    background-color: #bd081c;
}

.sticky-right .social-items a.telegram {
    background-color: #0088cc;
}

.sticky-right .social-items a.skype {
    background-color: #00AFF0;
}
.testimonial-box .quote img {
    border-radius: 26px;
}
.product-detail .text-area {text-align: justify;}
.bredcrumb1 .title span {
    color: #444;
    /* background-color: #2d2d2da3; */
    padding: 3px 30px;
    border-radius: 50px;
}

.mobile-lang {
    display: flex;
    justify-content: center;
}

.mobile-lang img {
    max-width: 100%;
    height: auto;
    width: 60px;
    border-radius: 26px;
}

.mobile-lang a {
    margin: 0px 20px;
}
.certificate-content-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.modal-content {
    border-radius: 26px;
}
body.nav-open {
    overflow: hidden;
}

.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: 0;
	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
}

.product-detail .sticky-sidebar {
    position: sticky;
    top: 85px;
}

.pt-70{
    padding-top: 70px;
}

/** popup */

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, .7);
}

.popup .content {
    position: relative;
    max-width: 992px;
    padding: 30px;
    margin: 15px;
    background-color: #fff;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.5);
    border-radius: 26px;
    max-height: calc(100% - 30px);
}

.popup .close {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #fff;
    width: 40px;
    height: 40px;
    transform: translate(25%, -25%);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    cursor: pointer;
}

.popup .close svg {
    width: 20px;
}

.popup .content .content-wrapper{
    overflow: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    border: none;
}

.popup .content .content-wrapper {
	word-wrap: break-word;
}

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

.popup .content .content-wrapper img {
	max-width: 100%;
	height: auto !important
}

.popup .content .content-wrapper h1,
.popup .content .content-wrapper h2,
.popup .content .content-wrapper h3,
.popup .content .content-wrapper h4,
.popup .content .content-wrapper h5,
.popup .content .content-wrapper h6 {
	margin-bottom: 20px
}

.popup .content .content-wrapper p {
	margin-bottom: 15px
}

.popup .content .content-wrapper ol,
.popup .content .content-wrapper ul {
	display: block;
	list-style: inherit;
	-webkit-margin-before: 1em;
	margin-block-start: 1em;
	-webkit-margin-after: 1em;
	margin-block-end: 1em;
	-webkit-margin-start: 0;
	margin-inline-start: 0;
	-webkit-margin-end: 0;
	margin-inline-end: 0;
	-webkit-padding-start: 40px;
	padding-inline-start: 40px
}

.popup .content .content-wrapper ol {
	list-style-type: decimal
}

.popup .content .content-wrapper,
.popup .content .content-wrapper::after,
.popup .content .content-wrapper::before {
	content: "";
	clear: both
}

.popup .content .content-wrapper table {
	margin-bottom: 20px;
}

@media (max-width:991px) {
	.popup .content .content-wrapper table {
		display: block;
		border: none;
		overflow-x: scroll;
		height: 100% !important
	}
}

.popup .content .content-wrapper table th,
.popup .content .content-wrapper table tr:nth-child(1) td {
	background-color: #303030;
	color: #fff;
	font-weight: 400;
	text-align: left
}

.popup .content .content-wrapper table td {
	background-color: #ece9e5;
	color: #303030
}

.popup .content .content-wrapper table td,
.popup .content .content-wrapper table th {
	padding: 10px 5px;
	border: 2px solid #fff
}

@media (min-width:992px) {
	.popup .content .content-wrapper table td,
	.popup .content .content-wrapper table th {
		padding: 20px 10px
	}
}

.popup .content .content-wrapper .leftImage {
	margin-right: 20px;
	margin-bottom: 20px
}

.popup .content .content-wrapper .rightImage {
	margin-left: 20px;
	margin-bottom: 20px
}

.popup .content .content-wrapper .floatLeft {
	float: left
}

.popup .content .content-wrapper .floatRight {
	float: right
}

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

/***/

.banner-image {
    width: 100%;
}

.catalog-detay {
	padding-top: 60px;
	padding-bottom: 60px;
}

.catalog-box {
    margin-bottom: 30px;
}

.catalog-box .title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #1b3130;
}

.catalog-box .pdf-img-link {
    box-shadow: 0px 4px 20px rgb(3 49 76 / 40%);
    display: inline-block;
    margin-bottom: 20px;
}

.catalog-box > p {
	font-size: 16px;
	margin-top: 6px;
}

.catalog-box .buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.catalog-box .buttons .button1 a,.catalog-box .buttons .button1 button {
    display: inline-block;
}

.text-area iframe {
    max-width: 100%;
}

.gallery-wrapper {
    margin-top: 36px;
}

.gallery-wrapper [class^='col-'] {
    margin-bottom: 24px;
}

.slider .slider-owl-1 .slider-show video {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.slider-content{
    position: absolute;
    height: 100%;
    width: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    /* z-index: 102; */
    display: flex;
    align-items: center;
    justify-content: center;
}
/* .slider-owl-1 {
    position: relative;
} */
.slider-content::after{
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.493);
    z-index: -1;
    pointer-events: none;
}

.slider-content .slider-content--wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    max-width: 50%;
    align-items: center;
    text-align: center;
}
.slider-content .slider-content--wrapper .title{
    font-size: 36px;
    font-weight: 700;
    color: #fff;
}
.slider-content .slider-content--wrapper .text{
    font-size: 18px;
    color: #f5f5f5;
}
.btn--primary{
    padding: 0.5rem 1.5rem;
    border: 1px solid #0077b5;
    border-radius: 24px;
    color: #fff;
    width: fit-content;
    transition: all 0.3s;
}
.btn--primary:hover{
    background-color: #0088cc;
    color: #fff;
}

@media (max-width: 992px) {
    .slider-content .slider-content--wrapper{
        gap: 0.5rem;
        max-width: 70%;
    }
    .slider-content .slider-content--wrapper .title{
        font-size: 24px;
    }
    .slider-content .slider-content--wrapper .text{
        font-size: 16px;
    }

    .products {
        padding: 0 0 30px 0;
    }
}
.slider {
    position: relative;
}
.slider .swiper-pagination {
    bottom: 5px;
}

.bredcrumb1-image img{
    /* height: 240px; */
    width: 100%;
    object-fit: cover;
}
.bredcrumb1__bottom{
    background-color: #d8dce8;
}
.breadcrumb1__bottom--wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width:578px) {
    .breadcrumb1__bottom--wrapper{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .bredcrumb1 ul{
        justify-content: center;
    }
    .bredcrumb1 .title{
        padding: 20px 0 0 0;
    }
}
figure{
    margin: 0;
}

/* sticky-bar */


.footer-sticky {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: #1d2f2f;
    position: fixed;
    z-index: 11;
    width: 100%;
    bottom: 0;
    padding: 0 0.5rem 1.15rem 0.5rem;
    border-top-left-radius: 2.15rem;
    border-top-right-radius: 2.15rem;
    border-top: 6px solid #1f3131;
}

.footer-sticky .sticky-box {
    width: 20%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: default;
}

.footer-sticky .sticky-box .icon {
    height: 48px;
    width: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.footer-sticky .sticky-box .icon i {
    font-size: 24px;
    color: #00bce9;
}

.footer-sticky .sticky-box .text {
    font-size: 9px;
    color: white;
    text-align: center;
}

.footer-sticky .top-box {
    -webkit-transform: translateY(-1.5rem);
    transform: translateY(-1.5rem);
}

.footer-sticky .top-box .icon {
    background: #00bce7;
    border-radius: 50%;
    position: relative;
    -webkit-box-shadow: -1px 4px 4px rgba(0, 0, 0, 0.77);
    box-shadow: -1px 4px 4px rgba(0, 0, 0, 0.77);
}

.footer-sticky .top-box .icon i{
    color: white;
}

.footer-sticky .top-box .icon::after {
    content: "";
    position: absolute;
    height: 56px;
    width: 56px;
    border: 1px solid #cb9393c0;
    border-radius: 50%;
    opacity: 0.75;
}

.footer-sticky .top-box .icon::before {
    content: "";
    position: absolute;
    height: 66px;
    width: 66px;
    border: 1px solid #cb939380;
    border-radius: 50%;
    opacity: 0.5;
}

.footer-sticky .top-box .text {
    -webkit-transform: translateY(1.5rem);
    transform: translateY(1.5rem);
    text-align: center;
}

.footer-sticky .sticky-box .icon {
    height: 30px;
}

.footer-sticky .top-box .icon i {
    height: 48px;
    background: #00bce7;
    width: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 992px) {
    .footer-sticky {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .footer {
        padding-bottom: 80px;
    }
}

@media (max-width: 320px) {
    .footer-sticky .sticky-box .text {
        font-size: 10px;
    }
}


.products .text-area {
    height: 500px;
    overflow-y: auto;
}

.products .text-area {
    height: 500px;
    overflow-y: auto;
}

.products .text-area::-webkit-scrollbar {
    width: 8px;
}
 
.products .text-area::-webkit-scrollbar-track {
    border-radius: 10px;
    background:#1c2f2e;
}
 
.products .text-area::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background:#00bce9;
}

.flex-center{
    align-items: center;
}


.hr-page .top-picture {
    margin-bottom: 40px;
}

.hr-page .content-box {
    margin-bottom: 40px;
}

.hr-page .content-box .big-title {
    font-size: 48px;
    font-weight: bold;
    color: #222;
}

.hr-page .content-box .content {
    font-size: 18px;
}

.hr-page .text-area .description {
    font-size: 18px;
    text-align: center;
}

img{
    max-width: 100%;
}

@media (max-width:992px){
    .hr-page{
        padding: 40px 15px;
    }
    .hr-page .content-box .big-title {
        font-size: 22px;
        margin-bottom: 10px;
    }
}

.buttons .button1 {
    margin-bottom: 30px;
}

.social i {font-size: 18px;}
.header-top ul li a {font-size: 18px;}
.header-top{padding: 8px 0;}

.picture-box-area .picture-box{
    margin-bottom: 30px;
    display: block;
}

.picture-box img {
    border-radius: 20px;
}

.swiper-button-prev,
.swiper-button-next {
    margin: 0;
}

.mt30 {
    margin-top:30px;
}

.products-page .items {
    margin-bottom: 50px;
}


.product-detail .buttons .button1 {
    width: 100%;
    text-align: center;
}

.product-detail .button1 a, .button1 button {
    padding: 10px 65px;
}