* {
    margin: 0;
    padding: 0;
	box-sizing: border-box;
}
html, body {
    overflow-x: hidden;
}
body {
    font-family: 'Poppins', sans-serif;
	font-size: 14px;
	font-weight: 400;
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
}
a, a {
	text-decoration: none;
}
img {
	max-width: 100%;
	height: auto;
}
ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.page h1 {
    font-size: 35px;
	font-weight: 700;
}
.page h2 {
    font-size: 30px;
	font-weight: 700;
}
.page h3 {
    font-size: 25px;
	font-weight: 700;
}
.page h4 {
	font-size: 22px;
	font-weight: 600;
}
.page h5 {
	font-size: 20px;
	font-weight: 600;
}
.page h6 {
	font-size: 18px;
	font-weight: 500;
}
/*.site-wrapper {
    max-width: 1920px;
    margin: 0 auto;
}*/
.container {
	max-width: 1600px;
    padding: 0;
}
.site-wrapper .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1600px;
}
@media screen and (max-width: 1600px) {
    .container {
        max-width: calc(100% - 100px);
    }
	.site-wrapper .elementor-top-section.elementor-section-stretched .elementor-section.elementor-section-boxed.elementor-inner-section > .elementor-container {
        max-width: calc(100% - 100px);
	}
}
@media screen and (max-width: 480px) {
    .container {
        max-width: calc(100% - 50px);
    }
	.site-wrapper .elementor-top-section.elementor-section-stretched .elementor-section.elementor-section-boxed.elementor-inner-section > .elementor-container {
        max-width: calc(100% - 50px);
	}
}


/*PRELOAD STYLE*/
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
}
.loaded .loader-wrapper {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.3s 1s ease-out;
    transition: all 0.3s 1s ease-out;
}
.loader-wrapper .loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 100px;
    height: 100px;
    margin-top: -50px;
    margin-left: -50px;
    border: 3px solid transparent;
    border-top-color: #0583F2;
    border-radius: 50%;
    z-index: 1001;
    -webkit-animation: spin 1.5s infinite linear;
    animation: spin 1.5s infinite linear;
}
.loaded .loader {
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    opacity: 0;
}
.loader-wrapper .loader:before, .loader-wrapper .loader:after {
    content: '';
    position: absolute;
    border-radius: 50%;
}
.loader-wrapper .loader:before {
	top: 50%;
    left: 50%;
    right: initial;
    bottom: initial;
    border: 3px solid transparent;
    border-top-color: #0583F2;
    -webkit-animation: spin 2s infinite linear;
    animation: spin 2s infinite linear;
    background-image: none;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    margin-left: -15px;
    margin-top: -15px;
}
.loader-wrapper .loader:after {
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 3px solid transparent;
    border-top-color: #0583F2;
    -webkit-animation: spin 1s infinite linear;
    animation: spin 1s infinite linear;
}
.loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background: #fff9f9;
    z-index: 1000;
}
.loader-section.section-left {
    left: 0;
}
.loaded .section-left {
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}
.loader-section.section-right {
    right: 0;
}
.loaded .section-right {
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}



/*HEADER STYLE*/
.header-area {
    position: relative;
    width: 100%;
	left: 0;
    padding: 10px 0;
    box-shadow: 0 0 11px 10px rgba(197, 197, 197, 0.1);
    -webkit-box-shadow: 0 0 11px 10px rgba(197, 197, 197, 0.1);
    -moz-box-shadow: 0 0 11px 10px rgba(197, 197, 197, 0.1);
    z-index: 9999;
    transition: all 0.3s ease 0s;
}
.header-area.fixed-top {
    position: fixed;
    background-color: #ffffff;
    top: 0;
}
.header-content-area {
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    width: 100%;
    align-items: center;
    -webkit-align-items: center;
}
.header-logo {
    max-width: 100px;
}
.fixed-top .header-logo {
    max-width: 75px;
}
.header-logo a {
    display: inline-block;
}
.header-menu-area {
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    width: calc(100% - 150px);
    align-items: center;
    -webkit-align-items: center;
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    width: calc(100% - 50px);
}
.navigation-area {
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    align-items: center;
    -webkit-align-items: center;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
}
.hamburging-menu {
    display: none;
}
.header-menu-area ul:not(:first-child) {
    margin-left: 20px;
}
.header-menu-area ul.menu {
    width: calc(100% - 200px);
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
}
.header-menu-area ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.header-menu-area .menu li:not(:first-child) {
    margin-left: 30px;
}
.header-menu-area ul li {
    position: relative;
}
.header-menu-area ul li a {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #292929;
    text-transform: uppercase;
    text-decoration: none;
	box-sizing: border-box;
    display: inline-block;
	padding: 10px;
}
.fixed-top .header-menu-area ul li a {
    font-size: 15px;
}
.header-menu-area ul li a:hover {
    text-decoration: none;
    color: #0583F2;
}
.header-menu-area ul li.current-menu-item > a {
    color: #0583F2;
}
.header-menu-area .button-menu li a {
    position: relative;
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    border: 2px solid #0583F2;
    box-sizing: border-box;
    color: #ffffff;
    font-size: 17px;
    font-weight: 400;
    height: 60px;
    align-items: center;
    -webkit-align-items: center;
    min-width: 195px;
    justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    text-transform: initial;
    overflow: hidden;
    z-index: 1;
}
.fixed-top .header-menu-area .button-menu li a {
    height: 50px;
}
.header-menu-area .button-menu li a:hover {
    color: #0583F2;
}
.header-menu-area .button-menu li a::after, .header-menu-area .button-menu li a::before {
    content: "";
    position: absolute;
    top: 0;
    width: 25%;
    height: 100%;
    background-color: #0583F2; 
    transition: all 0.3s ease 0s;
    z-index: -1;
}
.header-menu-area .button-menu li a::after {
    left: 0;
}
.header-menu-area .button-menu li a::before {
    left: 50%;
}
.header-menu-area .button-menu li a:hover::after {
    height: 0;
}
.header-menu-area .button-menu li a:hover::before {
    height: 0;
}
/*.header-menu-area .button-menu li a span {
    position: relative;
    z-index: 1;
}*/
.header-menu-area .button-menu li a span::after, .header-menu-area .button-menu li a span::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 25%;
    height: 100%;
    background-color: #0583F2; 
    transition: all 0.3s ease 0s;
    z-index: -1;
}
.header-menu-area .button-menu li a span::after {
    left: 25%;
}
.header-menu-area .button-menu li a span::before {
    left: 75%;
}
.header-menu-area .button-menu li a:hover span::after {
    height: 0;
}
.header-menu-area .button-menu li a:hover span::before {
    height: 0;
}
.mobile-menu {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    padding: 0;
    border: 2px solid #0583f2;
    border-radius: 3px;
}
.mobile-menu svg {
    width: 40px;
    height: 40px;
}
.mobile-menu:focus {
    outline: none;
}
.mobile-menu .line {
    fill: none;
    stroke: #0583f2;
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu .line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}
.mobile-menu .line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
}
.mobile-menu .line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}
.opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}
.opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
}
.opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}

/* MINI CART STYLE */
.header-top-right-icons {
    position: relative;
    margin-left: 15px;
}
.mini-cart {
    position: relative;
	display: inline-block;
    text-decoration: none;
}
.mini-cart:hover {
    text-decoration: none;
}
.mini-cart span {
    position: absolute;
    bottom: 100%;
    left: 50%;
}
.mini_cart_content {
    margin: 0;
    position: absolute;
    top: 100%;
    right: 0;
    width: 450px;
    padding: 10px 15px;
    box-sizing: border-box;
    background-color: #ffffff;
/*     border-width: 0 1px 1px 1px;
    border-style: solid;
    border-color: #e1e1e1;
    border-radius: 0 0 3px 3px; */
	animation: rotateMenu 400ms ease-in-out forwards;
    transform-origin: top center;
	display: none;
}
.header-top-right-icons:hover .mini_cart_content {
    display: block;
}
.header-menu-area ul .woocommerce-mini-cart-item.mini_cart_item a {
    padding: 0;
}
.busket-content {
    padding: 30px 0 15px;
}
.woocommerce-mini-cart__buttons {
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    margin: 0;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
}
.woocommerce-mini-cart__buttons .button {
    min-width: initial;
    padding: 10px 20px;
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    max-width: calc(50% - 10px);
	width: 100%;
    font-size: 13px;
}
.woocommerce-mini-cart__buttons .button span {
    text-align: center;
    text-transform: uppercase;
}
.woocommerce-mini-cart-item {
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    align-items: center;
    -webkit-align-items: center;
    padding: 10px 0;
    margin-bottom: 20px;
    border-bottom: 2px dashed #292929;
}
.product-remove-link {
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    width: 30px;
    height: 30px;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    border: 1px solid #292929;
}
.product-remove-link a {
    display: inline-block;
    width: 30px;
    text-align: center;
    line-height: 30px;
}
.header-menu-area .product-remove-link a:hover {
	color: #292929;
/*     border: 1px solid #292929; */
}
.product-item-name {
    width: 50%;
    margin-left: 20px;
}
.product-item-name span {
    display: block;
    margin-top: 15px;
}
.product-item-total {
    margin: 0 0 0 auto;
    font-size: 18px;
    font-weight: 500;
    width: calc(50% - 70px);
    text-align: right;
}
.woocommerce-mini-cart__total.total {
    font-size: 22px;
	text-transform: uppercase;
}
.woocommerce-mini-cart__total span {
    font-weight: 700;
}


/* SHOP PAGE GRID STYLE */
.imagewrapper {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
    background-color: #EAEFF3;
}
.imagewrapper img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* CART PAGE STYLE */
.woocommerce-cart .woocommerce {
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    flex-flow: wrap row;
    -webkit-flex-flow: wrap row;
    -moz-flex-flow: wrap row;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
}
.woocommerce-notices-wrapper {
    width: 100%;
}
.woocommerce-cart-form {
    width: calc(60% - 20px);
}
.woocommerce-cart-form table thead {
    background-color: #E5F3FF;
}
.woocommerce-cart-form table thead th {
    padding: 10px;
}
.woocommerce-cart-form table tr td {
    padding: 10px;
}
.woocommerce-cart-form .product-thumbnail {
    width: 150px;
}
.woocommerce-cart-form .product-price {
    width: 150px;
}
.woocommerce-page .button {
    min-width: initial;
    padding: 10px 15px;
    height: auto;
    color: #ffffff;
}
.woocommerce-page .button:hover {
    color: #0583F2;
}
.woocommerce-page .button::after, .woocommerce-page .button::before {
    height: 100%;
}
.woocommerce-page .button:hover::before, .woocommerce-page .button:hover::after {
    height: 0;
}
.woocommerce-page .button span::after, .woocommerce-page .button span::before {
    height: 100%;
}
.woocommerce-page .button:hover span::before, .woocommerce-page .button:hover span::after {
    height: 0;
}
.woocommerce-cart-form table {
    width: 100%;
}
.woocommerce-cart-form .cart_item {
    border-bottom: 1px dashed #E5F3FF;
}
.woocommerce-cart-form .qty {
    width: 50px;
    border: 1px solid #E5F3FF;
    padding: 10px;
}
.woocommerce-cart-form .qty:focus {
    border: 1px solid #E5F3FF;
	outline: none;
}
.coupon-field {
    margin-right: 15px;
}
.coupon-apply-area .coupon-field input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]) {
    width: 180px;
    padding: 13px;
}
.coupon-field input {
    border: 1px solid #E5F3FF;
    padding: 13px;
    box-sizing: border-box;
}
.woocommerce-cart-form table tr td .quantity {
    width: 60px;
}
.woocommerce-cart-form table tr td .quantity label {
    display: none;
}
.coupon-field input:focus {
    border: 1px solid #E5F3FF;
	outline: none;
}
.cart-collaterals {
    width: calc(40% - 20px);
}
.woocommerce-cart-form .coupon-apply-area {
    padding: 20px 0 0;
    vertical-align: middle;
}
.coupon-apply-area .coupon {
    width: calc(70% - 20px);
    display: inline-flex;
	display: -webkit-inline-flex;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-inline-flex;  /* TWEENER - IE 10 */
	display: -webkit-inline-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    align-items: center;
    -webkit-align-items: center;
}
.update-cart-buttons {
    width: 30%;
    display: inline-flex;
	display: -webkit-inline-flex;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-inline-flex;  /* TWEENER - IE 10 */
	display: -webkit-inline-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
    -webkit-justify-content: flex-end;
}
.wc-proceed-to-checkout {
    margin-top: 40px;
}
.woocommerce-cart-form table {
    width: 100%;
}
.cart_totals td, .cart_totals th {
    padding: 10px 5px;
}
@media screen and (max-width: 1075px) {
	.woocommerce-cart-form {
		width: 100%;
	}
	.cart-collaterals {
		margin: 40px 0 0 auto;
	}
}
@media screen and (max-width: 767px) {
	.coupon-apply-area .coupon {
		flex-flow: column;
		-webkit-flex-flow: column;
		-moz-flex-flow: column;
		text-align: left;
	}
	.coupon-field {
		margin: 0 auto 0 0;
	}
	.woocommerce-page .coupon .button {
		margin: 15px auto 0 0;
	}
	.cart-collaterals {
		max-width: 500px;
		width: 100%;
	}
}
@media screen and (max-width: 575px) {
	.woocommerce-cart-form table {
		display: block;
	}
	.woocommerce-cart-form table thead {
		display: none;
	}
	.woocommerce-cart-form table tbody {
		display: block;
	}
	.woocommerce-cart-form table tbody tr {
		display: block;
	}
	.woocommerce-cart-form .product-thumbnail, .woocommerce-cart-form .product-price {
		width: 100%;
		text-align: left;
	}
	.woocommerce-cart-form table .cart_item td.product-quantity {
		padding: 0;
	}
	.woocommerce-cart-form table .cart_item td.product-quantity .quantity {
		padding: 4px 0;
	}
	.woocommerce-cart-form table .cart_item td:not(.product-thumbnail):not(.product-remove) {
		display: block;
		width: 100%;
		position: relative;
		padding-left: calc(50% + 15px);
	}
	.woocommerce-cart-form table .cart_item td::after {
		content: attr(data-title);
		position: absolute;
		top: 0;
		left: 0;
		padding: 10px;
		background-color: #E5F3FF;
		width: 50%;
	}
	.woocommerce-cart-form table .cart_item td:not(:first-child) {
		margin-top: 10px;
	}
	.coupon-apply-area .coupon {
		width: 100%;
	}
	.update-cart-buttons {
		width: 100%;
		justify-content: flex-start;
		-webkit-justify-content: flex-start;
		-moz-justify-content: flex-start;
		margin-top: 20px;
	}
	.woocommerce-cart-form table .cart_item td.product-remove {
		padding: 0 0 10px;
		width: 100%;
		display: block;
	}
	.woocommerce-cart-form table .cart_item td .remove {
		text-indent: -1000px;
		display: inline-block;
		width: 50%;
		height: 40px;
		position: relative;
		margin-top: 10px;
	}
	.woocommerce-cart-form table .cart_item td .remove::after {
		content: "Remove Item";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		font-size: 16px;
		background-color: #0583F2;
		color: #ffffff;
		z-index: 1;
		text-indent: 0;
		text-align: center;
		display: flex;
		display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
		display: -ms-flexbox;  /* TWEENER - IE 10 */
		display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
		align-items: center;
    	-webkit-align-items: center;
		justify-content: center;
		-webkit-justify-content: center;
		-moz-justify-content: center;
	}
}


/* CHECKOUT PAGE STYLE */
.woocommerce-info {
    font-size: 18px;
    font-weight: 500;
}
.woocommerce-info .showcoupon {
    font-size: 18px;
    font-weight: 500;
}
.checkout-coupon-fields {
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    align-items: center;
    -webkit-align-items: center;
}
.woocommerce-page .woocommerce .checkout-coupon-fields .form-row input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
    padding: 13px 10px;
}
.woocommerce-page .woocommerce .checkout-coupon-fields .form-row:not(:first-child) {
    margin-top: 0;
    margin-left: 15px;
}
.woocommerce .woocommerce-checkout {
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    flex-flow: wrap row;
    -webkit-flex-flow: wrap row;
    -moz-flex-flow: wrap row;
    justify-content: space-between;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
    width: 100%;
	margin-top: 30px;
}
.checkbout-form-area {
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    flex-flow: wrap row;
    -webkit-flex-flow: wrap row;
    -moz-flex-flow: wrap row;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
    width: calc(60% - 20px);
}
.checkout-billing-area {
    width: 100%;
}
.checkout-shipping-area {
    width: 100%;
	margin-top: 30px;
}
.woocommerce .form-row {
    margin: 0;
}
.woocommerce .form-row:not(:first-child) {
    margin-top: 15px;
}
.woocommerce .woocommerce-input-wrapper {
    display: block;
    width: 100%;
}
.woocommerce label {
    font-weight: 500;
    margin: 0;
    line-height: 30px;
    font-size: 18px;
}
.woocommerce input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), .woocommerce textarea, .woocommerce select {
	width: 100%;
    box-sizing: border-box;
    padding: 5px 10px;
    border-radius: 0;
    border: 1px solid #e1e1e1;
}
.woocommerce .select2-container--default .select2-selection--single {
    background-color: initial;
    border: 1px solid #e1e1e1;
    border-radius: 0;
	padding: 5px 10px;
    height: auto;
}
.woocommerce .select2-container--default .select2-selection--single:focus {
	outline: none;
    border: 1px solid #e1e1e1;
}
.woocommerce input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus, .woocommerce textarea:focus, .woocommerce select:focus {
	outline: none;
    border: 1px solid #e1e1e1;
}
.woocommerce .woocommerce-checkout-review-order {
    width: calc(40% - 20px);
    padding: 30px;
    box-sizing: border-box;
    border: 1px solid #e1e1e1;
    align-self: flex-start;
    -webkit-align-self: flex-start;
}
.woocommerce-checkout-review-order-table {
    width: 100%;
    margin-bottom: 20px;
}
.woocommerce-checkout-review-order-table tbody tr td {
    padding: 10px 0;
}
.woocommerce-page .woocommerce-checkout-payment .button[name="woocommerce_checkout_place_order"] {
	background-color: #0583F2;
}
.woocommerce-page .woocommerce-checkout-payment .button[name="woocommerce_checkout_place_order"]:hover {
	color: #ffffff;
}
.woocommerce-NoticeGroup {
    width: 100%;
    margin-bottom: 20px;
}
.woocommerce-error li {
    color: #f00f00;
}
.woocommerce-error strong {
    font-weight: 500;
}
@media screen and (max-width: 991px) {
	.checkbout-form-area {
		width: 100%;
	}
	.woocommerce .woocommerce-checkout-review-order {
		width: 100%;
		margin-top: 30px;
	}
}
@media screen and (max-width: 575px) {
	.checkout-coupon-fields {
		flex-flow: wrap row;
		-webkit-flex-flow: wrap row;
		-moz-flex-flow: wrap row;
	}
	.checkout-coupon-fields .form-row {
		width: 100%;
	}
	.woocommerce-page .woocommerce .checkout-coupon-fields .form-row:not(:first-child) {
		margin-top: 15px;
		margin-left: 0;
	}
	.woocommerce-info {
    	font-size: 15px;
	}
	.woocommerce-info .showcoupon {
		font-size: 15px;
	}
	.woocommerce .woocommerce-checkout-review-order {
		padding: 20px;
	}
	.woocommerce-page .woocommerce h3 {
		font-size: 20px;
	}
	.woocommerce label {
		font-size: 15px;
	}
}



/* DROPDOWN MENU */
.header-menu-area .navigation-area .sub-menu {
    margin: 0;
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    padding: 10px 15px;
    box-sizing: border-box;
    background-color: #ffffff;
	animation: rotateMenu 400ms ease-in-out forwards;
    transform-origin: top center;
	display: none;
}
.header-menu-area .navigation-area .menu-item-has-children:hover .sub-menu {
    display: block;
}
.header-menu-area .menu .sub-menu li:not(:first-child) {
    margin-left: 0;
}
.header-menu-area .menu .sub-menu li a {
    font-size: 15px;
	font-weight: 400;
    padding: 5px 0;
}
.fixed-top .header-menu-area .menu .sub-menu li a {
    font-size: 13px;
}
@keyframes rotateMenu {
    0% {
        transform: rotateX(-90deg)
    }
    70% {
        transform: rotateX(20deg) 
    }
    100% {
        transform: rotateX(0deg) 
    }
}
@-webkit-keyframes rotateMenu {
    0% {
        transform: rotateX(-90deg)
    }
    70% {
        transform: rotateX(20deg) 
    }
    100% {
        transform: rotateX(0deg) 
    }
}

@media screen and (max-width: 991px) {
    .navigation-area {
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        z-index: 100;
        display: flex;
		display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
		display: -ms-flexbox;  /* TWEENER - IE 10 */
		display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
        flex-flow: wrap row;
        -webkit-flex-flow: wrap row;
        -moz-flex-flow: wrap row;
        align-items: center;
        -webkit-align-items: center;
        justify-content: center;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        text-align: center;
        opacity: 0;
        background-color: #F9FCFF;
        -webkit-transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
        transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    .navigation-area.act {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    .header-menu-area .navigation-area ul {
        margin: auto 0 0 0;
        width: 100%;
		flex-flow: column;
		-webkit-flex-flow: column;
		-moz-flex-flow: column;
    }
	.header-top-right-icons {
		margin-top: -70px;
	}
	.header-top-right-icons:hover .mini_cart_content {
		display: none;
	}
    .header-menu-area ul.button-menu {
        margin: 0px 0 auto 0;
    }
	.header-menu-area .menu li:not(:first-child) {
		margin-left: 0;
	}
    .header-menu-area .button-menu li a {
        max-width: 200px;
        margin: 0 auto;
    }
    .navigation-area li {
        padding: 8px 0;
        -webkit-transition: all 400ms 510ms;
        transition: all 400ms 510ms;
        opacity: 0;
    }
    .navigation-area li:nth-child(odd) {
        -webkit-transform: translateX(30%);
        transform: translateX(30%);
    }
    .navigation-area li:nth-child(even) {
        -webkit-transform: translateX(-30%);
        transform: translateX(-30%);
    }
    .navigation-area.act ul li {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    .hamburging-menu {
        display: block;
        position: relative;
        z-index: 9999;
    }
	.header-menu-area .navigation-area .sub-menu {
		position: relative;
		top: 0;
		width: 100%;
		padding: 0;
		background-color: transparent;
	}
}
@media screen and (max-width: 300px) {
    .header-menu-area ul.button-menu {
        margin: 0px auto;
    }
}

/*BUTTON STYLE*/
.custom-button, .button {
    position: relative;
    display: inline-flex;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
    border: 2px solid #0583F2;
    box-sizing: border-box;
    color: #0583F2;
	background-color: transparent;
    font-size: 17px;
    font-weight: 400;
    height: 60px;
    align-items: center;
    -webkit-align-items: center;
    min-width: 250px;
    max-width: 290px;
    justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    text-transform: capitalize;
    overflow: hidden;
    z-index: 1;
}
.custom-button.reverse-button {
	color: #ffffff;
}
.custom-button.reverse-button:hover {
	color: #0583F2;
}
.custom-button:focus, .button:focus {
    outline: none;
}
.custom-button:hover, .button:hover {
    color: #ffffff;
}
.custom-button::after, .custom-button::before, .button::after, .button::before {
    content: "";
    position: absolute;
    top: 0;
    width: 26%;
    height: 0;
    background-color: #0583F2; 
    transition: all 0.3s ease 0s;
    z-index: -1;
}
.custom-button::after, .button::after  {
    left: 0;
}
.custom-button::before, .button::before {
    left: 50%;
}
.custom-button:hover::after, .button:hover::after {
    height: 100%;
}
.custom-button:hover::before, .button:hover::before {
    height: 100%;
}
.custom-button.reverse-button::after, .custom-button.reverse-button::before {
    height: 100%;
}
.custom-button.reverse-button:hover::after, .custom-button.reverse-button:hover::before {
    height: 0;
}
.custom-button span::after, .custom-button span::before, .button span::after, .button span::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 26%;
    height: 0;
    background-color: #0583F2; 
    transition: all 0.3s ease 0s;
    z-index: -1;
}
.custom-button.reverse-button span::after, .custom-button.reverse-button span::before {
    height: 100%;
}
.custom-button.reverse-button:hover span::after, .custom-button.reverse-button:hover span::before {
    height: 0;
}
.custom-button span::after, .button span::after {
    left: 25%;
}
.custom-button span::before, .button span::before {
    left: 75%;
}
.custom-button:hover span::after, .button:hover span::after {
    height: 100%;
}
.custom-button:hover span::before, .button:hover span::before {
    height: 100%;
}


/* PAGE BANNER STYLE */
.page-banner-area {
    position: relative;
    background-color: #E5F3FF;
    min-height: 350px;
	display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    align-items: center;
    -webkit-align-items: center;
	z-index: 1;
}
.page-banner-area::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/contact-banner.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 100% auto;
    z-index: -1;
}
.page-banner-area .custom-heading-text.alignments-center .custom-heading-icon {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.page-banner-area .custom-heading-text.alignments-center .custom-heading-icon::before {
    background-color: #E5F3FF;
	height: calc(100% - 70%);
}
.page-banner-area .custom-heading-icon::after {
    background-color: #E5F3FF;
	height: calc(100% - 70%);
}
.page-banner-area .custom-heading-text.alignments-center {
    text-align: center;
}
.page-banner-area h4 {
    font-size: 23px;
    line-height: 28px;
    color: #0583F2;
    margin: 0;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Noto Sans', sans-serif;
}
.page-banner-area .custom-heading-text.alignments-center .custom-heading-text h2 {
    text-align: center;
}
.page-banner-area .custom-heading-icon img {
    width: 150px;
}
@media screen and (max-width: 575px) {
	.page-banner-area {
		padding-top: 70px;
		min-height: 300px;
	}
}


/*BANNER WIDGET STYLE*/
.banner-area {
    position: relative;
    width: 100%;
    height: 650px;
}
.banner-area .container {
    height: 100%;
}
.banner-contents {
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.banner-texts {
    width: 45%;
}
.banner-details-text {
    margin-top: 40px;
}
.banner-texts h1, .banner-texts h2, .banner-texts h3, .banner-texts h4, .banner-texts h5, .banner-texts h6 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 65px;
    font-weight: 700;
    color: #292929;
    line-height: 88px;
    margin: 0;
}
.banner-details-text p {
    margin: 0;
    font-size: 26px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 0.25px;
    line-height: 40px;
}
.banner-buton-area {
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    align-items: center;
    -webkit-align-items: center;
    margin-top: 60px;
}
.banner-button:not(:first-child) {
    margin-left: 40px;
}
.banner-button:nth-child(1) .custom-button {
    color: #ffffff;
    /*animation-delay: 0.3s;*/
    animation-name: fadeInLeft;
}
.banner-button:nth-child(2) .custom-button {
    animation-delay: 1s;
}
.banner-button:nth-child(1) .custom-button:hover {
    color: #0583F2;
}
.banner-button:nth-child(1) .custom-button::after, .banner-button:nth-child(1) .custom-button::before {
    height: 100%;
}
.banner-button:nth-child(1) .custom-button:hover::after, .banner-button:nth-child(1) .custom-button:hover::before {
    height: 0;
}
.banner-button:nth-child(1) .custom-button span::after, .banner-button:nth-child(1) .custom-button span::before {
    height: 100%;
}
.banner-button:nth-child(1) .custom-button:hover span::after, .banner-button:nth-child(1) .custom-button:hover span::before {
    height: 0;
}
.banner-image-area {
    width: calc(55% - 30px);
    box-sizing: border-box;
}
.banner-image {
    position: relative;
    padding-right: 160px;
    box-sizing: border-box;
    z-index: 1;
    padding-left: 40px
}
.banner-image::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: calc(100% - 65px);
    height: calc(100% + 300px);
    background-image: url(../img/curve-image.png);
    background-size: auto 96%;
    background-position: right center;
    background-repeat: no-repeat;
    transform: translate(0, -50%);
    /*z-index: -1;*/
}
.banner-image-wrapper {
    position: relative;
    z-index: 1;
}
.banner-image-wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: -50px;
    width: calc(40% + 60px);
    height: calc(100% + 56px);
    background-color: #F0F0F0;
    border-radius: 100%;
    z-index: -1;
}
@media screen and (max-width: 1600px) {
    .banner-image [data-aos^=fade][data-aos^=fade] {
        opacity: 1;
        transform: translate3d(50px,0,0);
    }
    .banner-image [data-aos^=fade][data-aos^=fade].aos-animate {
        transform: translateZ(0);
    }
}
@media screen and (max-width: 1299px) {
    .banner-texts h1, .banner-texts h2, .banner-texts h3, .banner-texts h4, .banner-texts h5, .banner-texts h6 {
        font-size: 45px;
        line-height: 55px;
    }
    .banner-details-text {
        margin-top: 20px;
    }
    .banner-details-text p {
        font-size: 20px;
        line-height: 30px;
    }
    .banner-buton-area {
        margin-top: 40px;
    }
    .banner-image {
        padding-right: 125px;
        padding-left: 30px;
    }
    .banner-image::after {
        width: 90%;
        height: calc(90% + 300px);
        background-size: auto 82%;
    }
    .banner-image [data-aos^=fade][data-aos^=fade] {
        transform: translate3d(0,0,0);
    }
}
@media screen and (max-width: 1024px) {
    .banner-buton-area {
        align-items: flex-start;
        -webkit-align-items: flex-start;
        flex-flow: column;
        -webkit-flex-flow: column;
        -moz-flex-flow: column;
    }
    .banner-button:not(:first-child) {
        margin-left: 0;
        margin-top: 20px;
    }
}
@media screen and (max-width: 767px) {
    .banner-contents {
        flex-flow: wrap row;
        -webkit-flex-flow: wrap row;
        -moz-flex-flow: wrap row;
    }
    .banner-texts {
        width: 100%;
        order: 2;
    }
    .banner-buton-area {
        flex-flow: wrap row;
        -webkit-flex-flow: wrap row;
        -moz-flex-flow: wrap row;
    }
    .banner-button:not(:first-child) {
        margin-left: 15px;
        margin-top: 0;
    }
    .banner-image-area {
        width: calc(80% - 30px);
        order: 1;
        position: relative;
        top: 45px;
    }
}
@media screen and (max-width: 575px) { 
    .banner-image-area {
        width: 100%;
        top: 40px;
    }
    .banner-image::after {
        height: calc(90% + 250px);
    }
    .banner-texts h1, .banner-texts h2, .banner-texts h3, .banner-texts h4, .banner-texts h5, .banner-texts h6 {
        font-size: 40px;
        line-height: 50px;
    }
    .banner-details-text p {
        font-size: 18px;
        line-height: 25px;
    }
    .banner-button {
        width: 100%;
        max-width: 280px;
    }
    .banner-button:not(:first-child) {
        margin-left: 0;
        margin-top: 15px;
    }
    .custom-button:hover:before {
        border-width: 74.41px 360px;
        border-color: transparent transparent transparent #0583F2;
    }
    .custom-button:hover:after {
        border-width: 74.41px 360px;
        border-color: transparent #0583F2 transparent transparent;
    }
}
@media screen and (max-width: 480px) {
    .banner-area {
		padding: 50px 0;
		height: auto;
    }
    .banner-image-area {
        display: none;
    }
}

/*CUSTOM HEADING WIDGET STYLE*/
.custom-heading-area {
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
}
.heading-separator::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 4px;
    background-color: #0583F2;
}
.custom-heading-contents {
    margin-bottom: 50px;
    position: relative;
}
.custom-heading-text {
    position: relative;
    z-index: 1;
}
.custom-heading-icon {
    position: absolute;
    top: 50%;
    left: -43px;
/*     width: 88px; */
    z-index: -1;
    transform: translate(0, -50%);
}
.custom-heading-icon img {
    width: 88px;
}
.custom-heading-text.alignments-left {
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    align-items: center;
    -webkit-align-items: center;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    text-align: left;
}
.custom-heading-area.alignments-center .custom-heading-icon {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.alignments-left .custom-heading-icon {
    left: -43px;
    text-align: left;
}
.custom-heading-icon::after {
	content: "";
    position: absolute;
    top: 50%;
    right: 0px;
    height: calc(100% - 50%);
    background-color: #ffffff;
    width: 50px;
    transform: rotate(15deg) translate(0, -50%);
}
.alignments-center .custom-heading-icon::before {
	content: "";
    position: absolute;
    top: 50%;
    left: 5px;
    height: calc(100% - 50%);
    background-color: #ffffff;
    width: 50px;
    transform: rotate(-25deg) translate(0, -50%);
}
.custom-heading-area.alignments-center .custom-heading-text h2 {
    text-align: center;
}
.custom-heading-text h2 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #292929;
    line-height: 1;
    margin: 0;
    position: relative;
    z-index: 1;
}
.custom-heading-details {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.25px;
    line-height: 36px;
    margin-top: 50px;
}
.custom-heading-area.alignments-center .custom-heading-details {
    text-align: center;
}
.custom-heading-details p {
    margin: 0;
}
.custom-heading-details p:not(:first-child) {
    margin: 30px 0 0;
}
@media screen and (max-width: 1075px) { 
	.custom-heading-details p br {
		display: none;
	}
}
@media screen and (max-width: 991px) { 
	.custom-heading-details {
		font-size: 15px;
		line-height: 24px;
	}
	.custom-heading-details p br {
		display: none;
	}
	.custom-heading-icon img {
		width: 100px;
	}
}
@media screen and (max-width: 767px) {
	.custom-heading-text h2 {
		font-size: 30px;
	}
}
@media screen and (max-width: 575px) {
    .custom-heading-text h2 br {
		content: "";
    }
	.heading-separator::after {
		display: none;
	}
	.alignments-left .custom-heading-icon {
		left: -65px;
	}
}

/* CUSTOM USER REGISTRATION WIDGETS STYLE */
.user-registration-wrapper button[disabled] {
    opacity: 0.5;
}

/*CUSTOM IMAGE BOX WIDGET STYLE*/
.custom-image-box-area {
    position: relative;
}
.custom-image-box {
    position: relative;
    padding-left: 60px;
}
.custom-image-box img {
    width: 100%;
}
.custom-image-box label {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    position: absolute;
    width: auto;
    bottom: 45px;
    left: 0;
    background-color: #0583F2;
    color: #ffffff;
    font-size: 34px;
    line-height: 70px;
    padding: 20px 30px;
    z-index: 1;
}
.custom-image-box label::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 66px;
    width: 100%;
    box-shadow: 0 0 25px 5px rgba(5, 131, 242, 0.48);
    -webkit-box-shadow: 0 0 25px 5px rgba(5, 131, 242, 0.48);
    -moz-box-shadow: 0 0 25px 5px rgba(5, 131, 242, 0.48);
    z-index: -1;
}
@media screen and (max-width: 1199px) {
    .custom-image-box label {
        font-size: 30px;
        line-height: 45px;
        padding: 20px 15px;
    }
}
@media screen and (max-width: 767px) {
    .custom-image-box label {
        font-size: 25px;
        line-height: 35px;
    }
}
@media screen and (max-width: 575px) {
    .custom-image-box {
        padding-left: 30px;
    }
}

/*CUSTOM ICON BOX WIDGET STYLE*/
.custom-icon-box-area {
    position: relative;
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    align-items: flex-start;
    -webkit-align-items: flex-start;
    flex-flow: wrap row;
    -webkit-flex-flow: wrap row;
    -moz-flex-flow: wrap row;
    width: 100%;
}
.icon-wrapper {
    width: 110px;
}
.icon-box-contents {
    width: calc(100% - 110px);
}
.icon-box-contents p {
    font-size: 18px;
    line-height: 35px;
    font-weight: 500;
    color: #292929;
    margin: 0;
}
@media screen and (max-width: 575px) {
    .icon-wrapper {
        width: 70px;
    }
    .icon-box-contents {
        width: calc(100% - 70px);
    }
}

/*WORK PROCESS WIDGET STYLE*/
.work-process-area {
    position: relative;
    padding-top: 80px;
}
.work-process-contents {
    position: relative;
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    flex-flow: wrap row;
    -webkit-flex-flow: wrap row;
    -moz-flex-flow: wrap row;
}
.work-process-box {
    position: relative;
    width: calc(25% - 20px);
    min-height: 270px;
    background-color: #ffffff;
    padding: 20px;
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    box-shadow: 0 0 3px 0 rgba(167, 167, 167, 0.16);
}
.work-process-progress {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 1;
}
.work-process-box:not(:last-child) .work-process-progress::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% + 30px);
    border-top: 1px dashed #B5B5B5;
    z-index: -1;
}
.work-process-progress .count {
    font-family: 'Poppins', sans-serif;
    font-size: 23px;
    color: #292929;
    font-weight: 600;
    display: inline-block;
    position: relative;
    top: -40px;
}
.work-process-progress .dot {
    width: 16px;
    height: 16px;
    border-radius: 100%;
    box-shadow: 0px 0px 1px 1px #0000001a;
    background-color: #0583F2;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-animation 2s infinite;
}
/*.work-process-box:nth-child(2) .work-process-progress .dot {
    animation-delay: 0.3s;
}
.work-process-box:nth-child(3) .work-process-progress .dot {
    animation-delay: 0.6s;
}
.work-process-box:nth-child(4) .work-process-progress .dot {
    animation-delay: 0.9s;
}*/
/*.work-process-progress .dot::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 28px;
    background-color: rgba(5, 131, 242, 0.21);
    border-radius: 100%;
    transform: translate(-50%, -50%);
}*/
@-webkit-keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(5, 131, 242, 0.21);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(5, 131, 242, 0);
  }
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(5, 131, 242, 0.21);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(5, 131, 242, 0);
  }
}
.work-process-icon {
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    flex-flow: wrap row;
    -webkit-flex-flow: wrap row;
    -moz-flex-flow: wrap row;
    justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
}
.work-process-icon h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.25px;
    line-height: 25px;
    color: #292929;
    width: 100%;
    margin: 30px 0 0;
    text-align: center;
}
@media screen and (max-width: 991px) {
    .work-process-icon img {
        max-width: 80px;
        height: auto;
    }
    .work-process-icon h3 {
        font-size: 14px;
        line-height: 20px;
    }
}
@media screen and (max-width: 767px) {
    .work-process-area {
        padding-top: 0;
    }
    .work-process-contents {
        flex-flow: column;
        -webkit-flex-flow: column;
        -moz-flex-flow: column;
    }
    .work-process-box {
        width: calc(60% - 20px);
        left: 70px;
    }
    .work-process-box:not(:first-child) {
        margin-top: 20px;
    }
    .work-process-progress {
        top: 50%;
        left: -55px;
        width: 50px;
        height: 100%;
        transform: translate(0, -50%);
        height: 100%;
    }
    .work-process-progress .count {
        top: 50%;
        transform: translate(-40px, -50%);
        font-size: 16px;
    }
    .work-process-box:not(:last-child) .work-process-progress::after {
        height: calc(100% + 30px);
        border-left: 1px dashed #B5B5B5;
        border-top: 0;
    }
}
@media screen and (max-width: 575px) {
    .work-process-box {
        width: calc(80% - 20px);
    }
}
@media screen and (max-width: 480px) {
    .work-process-box {
        width: calc(80% - 20px);
    }
}


/*CUSTOM BOX LIST WIDGET STYLE*/
.custom-box-listings {
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    flex-flow: wrap row;
    -webkit-flex-flow: wrap row;
    -moz-flex-flow: wrap row;
    position: relative;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    background-image: url(../img/box-middle-bg.svg);
    background-repeat: no-repeat;
    background-position: top left calc(50% - 30px);
    background-size: auto 84px;
    padding-top: 32px;
    align-items: flex-start;
    -webkit-align-items: flex-start;
    z-index: 1;
}
.custom-box-listings::before {
    content: "";
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background-color: #EFF8FF;
    z-index: -1;
}
.custom-box-listings::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -40px;
    transform: translate(0, -50%);
    width: 100px;
    height: 100px;
    background-image: url(../img/box-middle-bg.svg);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: auto 100%;
    z-index: -1;
}
.custom-box-row {
    width: calc(50% - 20px);
}
.custom-box-row:not(:first-child) {
    margin-top: 40px;
}
.box-item {
	position: relative;
	min-height: 350px;
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    align-items: center;
    -webkit-align-items: center;
    padding: 30px;
    background-color: #ffffff;
    /*margin-bottom: 20px;*/
    width: 100%;
    box-shadow: 0 0 38px 0 rgba(208, 223, 239, 0.26);
	background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
	z-index: 1;
}
.box-item::after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    background-color: rgba(255,255,255, 0.78);
    z-index: -1;
}
.box-item:hover::after {
    transition: all 0.3s ease 0s;
    background-color: #ffffff;
}
.box-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(255,255,255, 0.47);
    z-index: -1;
}
.box-item:not(:first-child) {
	margin-top: 40px;
}
.box-item .custom-box-title {
    padding: 10px;
    transition: all 0.3s ease 0s;
}
.custom-box-title h2, .custom-box-title h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #0583F2;
    line-height: 35px;
    margin: 0;
}
.custom-box-title p {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #292929;
    letter-spacing: 0.25px;
    line-height: 23px;
    margin: 15px 0 0;
}
@media screen and (min-width: 1600px) {
	.custom-box-listings {
		max-width: 90%;
	}
}
@media screen and (max-width: 767px) { 
	.custom-box-title h2, .custom-box-title h3 {
		font-size: 20px;
		line-height: 25px;
	}
}
@media screen and (max-width: 675px) {
	.custom-box-row {
		width: 100%;
	}
}


/* CUSTOM BOX INFO WIDGETS STYLE */
.box-info-lists-area {
    position: relative;
    padding-bottom: 80px;
    z-index: 1;
}
.box-info-lists-area::after {
    content: "";
    position: absolute;
    top: 260px;
    left: 0;
    width: 100%;
    height: calc(100% - 260px);
    background-color: #F9FCFF;
    z-index: -1;
}
.box-info-lists-area .box-row:not(:first-child) {
    margin-top: 20px;
}
.box-row .container {
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    flex-flow: wrap row;
    -webkit-flex-flow: wrap row;
    -moz-flex-flow: wrap row;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
}
.box-row .box-info-item {
    width: calc(33.33% - 15px);
	overflow: hidden;
}
.box-row .column-1 .box-info-item {
    width: 100%;
}
.box-row .column-2 .box-info-item {
    width: calc(50% - 15px);
}
.box-row .column-3 .box-info-item {
    width: calc(33.33% - 15px);
}
.box-row .column-4 .box-info-item {
    width: calc(25% - 15px);
}
.box-row .column-5 .box-info-item {
    width: calc(20% - 15px);
}
.custom-box-info {
    position: relative;
    padding: 30px;
    box-shadow: 0 0 38px 0 rgba(208, 223, 239, 0.26);
    height: calc(100% - 260px);
}
.custom-box-info h1, .custom-box-info h2, .custom-box-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 38px;
    color: #0583F2;
    margin: 0;
}
.custom-box-info h1 a, .custom-box-info h2 a, .custom-box-info h3 a {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
    color: #0583F2;
    margin: 0;
}
.custom-box-info p {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #292929;
    line-height: 25px;
    letter-spacing: 0.25px;
    margin: 15px 0 0;
}
.box-item-image {
    height: 260px;
    position: relative;
    overflow: hidden;
}
.box-item-image a {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
@media screen and (max-width: 991px) {
	.custom-box-info h1, .custom-box-info h2, .custom-box-info h3 {
		font-size: 20px;
		line-height: 28px;
	}
	.custom-box-info p {
		font-size: 15px;
		line-height: 22px;
	}
}
@media screen and (max-width: 991px) {
	.box-row .column-3 .box-info-item {
		width: 100%;
	}
	.box-row .box-info-item:not(:first-child) {
		margin-top: 20px;
	}
}



/* CUSTOM COUNTER LISTS WIDGET STYLE */
.custom-counter-lists-area {
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
}
.counter-item {
    position: relative;
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
}
.counter-item:not(:first-child)::after {
    content: "";
    position: absolute;
    left: -30px;
    top: 0;
    height: 90%;
    border-left: 1px solid #707070;
}
.counter-icon {
    width: 70px;
}
.counter-container {
    width: calc(100% - 90px);
}
.counter-number {
    font-family: 'Noto Sans', sans-serif;
    font-size: 65px;
    line-height: 55px;
    font-weight: 700;
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
}
.counter-container h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 23px;
    line-height: 35px;
    color: #292929;
    margin: 15px 0 0;
}
@media screen and (max-width: 1299px) {
	.counter-number {
		font-size: 50px;
		line-height: 40px;
	}
	.counter-container h5 {
		font-size: 20px;
		line-height: 25px;
	}
}
@media screen and (max-width: 991px) {
	.counter-number {
		font-size: 35px;
		line-height: 25px;
	}
	.counter-container h5 {
		font-size: 15px;
		line-height: 20px;
	}
}
@media screen and (max-width: 767px) {
	.custom-counter-lists-area {
		flex-flow: column;
		-webkit-flex-flow: column;
		-moz-flex-flow: column;
	}
	.counter-item {
		max-width: 300px;
		width: 100% !important;
		margin: 0 auto;
		border: 1px solid #707070;
    	padding: 15px;
	}
	.counter-item:not(:first-child) {
		margin-top: 20px;
	}
	.counter-item:not(:first-child)::after {
		display: none;
	}
}

/* CUSTOM HOW WORK PROCESS WIDGETS STYLE */
.custom-how-work-process-area {
	position: relative;
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    margin-top: -40px;
}
.work-process {
    width: calc(20% - 20px);
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    align-items: center;
    -webkit-align-items: center;
    flex-flow: wrap row;
    -webkit-flex-flow: wrap row;
    -moz-flex-flow: wrap row;
    justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    position: relative;
    z-index: 1;
}
.work-process:not(:first-child)::after {
    content: "";
    position: absolute;
    top: 40px;
    right: calc(50% + 50px);
    width: calc(100% - 100px);
    border-top: 1px solid #707070;
    z-index: -1;
}
.work-process:nth-child(2)::after {
    border-color: #0583F2;
    border-style: dashed;
    border-width: 1px;
}
.work-process:last-child::after {
    border-color: #0583F2;
    border-style: dashed;
    border-width: 1px;
}
.process-icon {
    width: 80px;
    align-self: flex-start;
    -webkit-align-self: flex-start;
}
.process-title {
    width: 100%;
    margin-top: 15px;
}
.process-title h5 {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-size: 18px;
	font-weight: 500;
    color: #0583F2;
    letter-spacing: 0.25px;
    line-height: 25px;
    margin: 0;
}
@media screen and (max-width: 1075px) {
	.process-title h5 {
		font-size: 12px;
		line-height: 18px;
	}
}
@media screen and (max-width: 991px) {
	.custom-how-work-process-area {
		flex-flow: column;
		-webkit-flex-flow: column;
		-moz-flex-flow: column;
	}
	.work-process {
		width: 100%;
		margin: 0 auto;
	}
	.work-process:not(:first-child) {
		margin-top: 85px;
	}
	.work-process:not(:first-child)::after {
		top: calc(-100% + 35px);
		right: 50%;
		width: auto;
		height: calc(100% - 40px);
		border-top: 0;
		border-left: 1px solid #707070;
	}
	.work-process:nth-child(2)::after {
		border-left: 1px dashed #0583F2;
	}
	.work-process:last-child::after {
		border-left: 1px dashed #0583F2;
	}
}


/* SINGLE PRODUCT INFO WIDGETS STYLE */
.single-product-info-area {
    padding-top: 80px;
    position: relative;
}
.clean-status {
    width: 100%;
    position: relative;
    text-align: center;
    font-size: 210px;
    color: rgba(5, 131, 242, 0.16);
    font-weight: 700;
    line-height: 150px;
	margin-bottom: -200px;
	z-index: -1;
}
.single-product-info-contents {
    position: relative;
    z-index: 1;
}
.single-info-details {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    flex-flow: wrap row;
    -webkit-flex-flow: wrap row;
    -moz-flex-flow: wrap row;
    justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
}
.product-price {
    width: 100%;
    text-align: center;
}
.product-price {
    width: 100%;
    text-align: center;
}
.single-info-details .product-price p {
	margin: 0;
}
.single-info-details .product-price span {
    font-size: 22px;
    color: #292929;
    font-weight: 500;
    display: block;
	margin-bottom: 10px;
}
.single-info-details .product-price strong {
    font-size: 66px;
    color: #0583F2;
    line-height: 70px;
    font-family: 'Noto Sans', sans-serif;
}
.single-product-info-buttons {
    margin-top: 50px;
}
.single-product-info-buttons .button {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}
.single-product-info-buttons .button:hover {
    color: #0583F2;
}
.single-product-info-buttons .button::after, .single-product-info-buttons .button::before {
    height: 100%;
}
.single-product-info-buttons .button:hover::after, .single-product-info-buttons .button:hover::before {
    height: 0;
}
.single-product-info-buttons .button span::after, .single-product-info-buttons .button span::before {
    height: 100%;
}
.single-product-info-buttons .button:hover span::after, .single-product-info-buttons .button:hover span::before {
    height: 0;
}
.single-product-info-buttons .button img {
    filter: grayscale(100%) brightness(100);
    -webkit-filter: grayscale(100%) brightness(100);
    height: 18px;
    margin-right: 15px;
}
.single-product-info-buttons .button:hover img {
    filter: initial;
    -webkit-filter: initial;
}
@media screen and (max-width: 1499px) {
	.single-product-info-area .clean-status {
		margin-bottom: -150px;
	}
}
@media screen and (max-width: 1299px) {
	.single-product-info-area .clean-status {
		font-size: 130px;
		line-height: 110px;
		margin-bottom: -140px;
	}
}
@media screen and (max-width: 1075px) {
	.single-product-info-area .clean-status {
		margin-bottom: -110px;
	}
}
@media screen and (max-width: 991px) {
	.single-product-info-area .clean-status {
		font-size: 100px;
		line-height: 80px;
    	margin-bottom: -90px;
	}
}
@media screen and (max-width: 767px) {
	.single-product-info-area .clean-status {
		font-size: 70px;
		line-height: 70px;
    	margin-bottom: -70px;
	}
}
@media screen and (max-width: 575px) {
	.single-product-info-area .clean-status {
    	margin-bottom: -55px;
    	font-size: 50px;
	}
	.single-info-details .product-price strong {
		font-size: 40px;
		line-height: 55px;
	}
}
@media screen and (max-width: 480px) {
}
@media screen and (max-width: 320px) {
	.single-product-info-area .clean-status {
		font-size: 40px;
		margin-bottom: -45px;
	}
}


/* CUSTOM SPECIFICATIONS WIDGETS STYLE */
.custom-specifications-area-wrapper {
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    position: relative;
    width: 100%;
}
.custom-specifications-area {
    position: relative;
    border-top: 10px solid #0583F2;
    padding: 30px;
    box-shadow: 0 0 13px 5px rgba(220, 220, 220, 0.13);
    box-sizing: border-box;
    width: 100%;
    max-width: calc(50% - 50px);
}
.custom-specifications-area::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    box-shadow: 0 42px 42px 0 rgba(209, 209, 209, 0.14);
    z-index: -1;
}
.custom-specifications-area h3 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 20px;
    padding-bottom: 20px;
    line-height: 45px;
    border-bottom: 1px solid #D4D4D4;
}
.custom-specifications-area ul {
    list-style: none;
}
.custom-specifications-area ul li {
    font-size: 20px;
    color: #292929;
    letter-spacing: 0.25px;
    line-height: 35px;
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    padding-left: 30px;
}
.custom-specifications-area ul li:not(:first-child) {
    margin-top: 20px;
}
.custom-specifications-area ul li::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: #0583F2;
    transform: translate(0, -50%);
}
@media screen and (max-width: 1199px) {
	.custom-specifications-area-wrapper {
		flex-flow: wrap row;
	}
	.custom-specifications-area {
		max-width: 100%;
	}
	.custom-specifications-area:not(:first-child) {
		margin-top: 50px;
	}
}
@media screen and (max-width: 575px) {
	.custom-specifications-area h3 {
		font-size: 35px;
	}
}



/*CUSTOM RECENT POST WIDGETS*/
.custom-recent-posts-area {
    position: relative;
    /* column-count: 3; */
    /* column-gap: 45px; */
    display: inline-flex;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
    gap: 20px;
    flex-flow: wrap row;
    -webkit-flex-flow: wrap row;
    -moz-flex-flow: wrap row;
}
.post-item {
    width: calc(33% - 10px);
    background-color: #ffffff;
}
.post-thumbnail a {
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 285px;
}
.post-contents {
    position: relative;
    padding: 30px;
    box-shadow: 0 0 38px 0 rgba(208, 223, 239, 0.26);
	height: calc(100% - 285px);
}
.publish-date span {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #292929;
    font-weight: 500;
    letter-spacing: 0.25px;
    line-height: 26px;
}
.post-details {
    margin-top: 20px;
}
.post-details h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #0583F2;
    margin: 0 0 20px;
}
.post-details h3 a {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #0583F2;
    line-height: 34px;
}
.post-details p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #292929;
    letter-spacing: 0.25px;
    line-height: 26px;
    margin: 0;
}
.details-link {
    margin-top: 20px;
}
.details-link a {
    font-family: 'Poppins', sans-serif;
    color: #0583F2;
    font-size: 13px;
    font-weight: 600;
    line-height: 34px;
    text-transform: uppercase;
}
.details-link a span {
    margin-left: 15px;
}
@media screen and (max-width: 1024px) {
    .custom-recent-posts-area {
        column-count: 2;
        column-gap: 30px;
        display: flex;
		display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
		display: -ms-flexbox;  /* TWEENER - IE 10 */
		display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
        flex-flow: wrap row;
        -webkit-flex-flow: wrap row;
        -moz-flex-flow: wrap row;
    }
    .post-item {
        width: calc(50% - 20px);
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 691px) {
    .custom-recent-posts-area {
        column-count: 1;
    }
    .post-item {
        width: 100%;
    }
}


/*VIDEO SECTION WIDGET STYLE*/
.video-section-area {
    position: relative;
    padding-top: 80px;
    z-index: 1;
}
.video-section-area::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: -1;
}
.video-content {
    max-width: 1170px;
    margin: 0 auto;
}
.video-item {
    height: 650px;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
}
.video-item::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 125px;
    box-shadow: 0 0 25px 0 rgba(232, 232, 232, 1);
    z-index: -1;
}
.video-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(235, 246, 255, 0.70);
    z-index: 1;
}
.video-play-button {
    position: relative;
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    z-index: 2;
	margin: 0 auto;
}
.video-play-button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 40px solid #0583F2;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease 0s;
}
.video-play-button::before {
    content: "";
    width: 70px;
    height: 70px;
    border: 3px solid #0583F2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    border-radius: 100%;
    transition: all 0.3s ease 0s;
}
.video-play-button:hover::before {
    transform: translate(-50%, -50%) scale(1.1);
}
.video-play-button:hover::after {
    transform: translate(-50%, -50%) scale(0.7);
}
@media screen and (max-width: 1170px) {
    .video-content {
        width: calc(100% - 100px);
    }
}
@media screen and (max-width: 767px) {
    .video-item {
        height: 450px;
    }
}
@media screen and (max-width: 575px) {
    .video-content {
        width: calc(100% - 60px);
    }
}



/*CUSTOM SLIDER WITH TEXT WIDGET STYLE*/
.custom-slider-text-area {
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    flex-flow: wrap row;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    width: 100%;
}
.custom-slider-navigation {
    width: 40%;
}
.custom-slider-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.custom-slider-navigation ul li a {
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    padding: 30px 45px;
}
.custom-slider-navigation .slick-active {
    background-color: #F9FCFF;
}
.slide-nav-icon {
    width: 65px;
}
.slide-nav-content {
    width: calc(100% - 65px);
}
.slide-nav-content, .slide-nav-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #0583F2;
    letter-spacing: 0.25px;
    line-height: 35px;
    margin: 0;
}
.slick-dotted.slick-slider.custom-image-slider {
    position: relative;
    width: calc(60% - 50px);
/*     height: 550px; */
/*     background-color: #F8F8F8; */
    overflow: hidden;
    margin: 0;
}
.custom-image-slider .slide-item {
/*     height: 550px; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 100%;
}
.custom-image-slider .slide-item:focus {
    outline: none;
    border: 0;
}
.custom-image-slider .slick-dots {
    bottom: 30px;
}
.custom-image-slider .slick-dots li {
    position: relative;
    display: inline-flex;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
    width: auto;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
}
.custom-image-slider .slick-dots li button {
    background: rgba(5, 131, 242, 0.33);
    opacity: 1;
    border-radius: 5px;
    width: 10px;
    height: 10px;
}
.custom-image-slider .slick-dots li.slick-active button {
    background-color: #0583F2;
    width: 35px;
    transition: all 0.3s ease 0s;
}
.custom-image-slider .slick-dots li button::before {
    display: none;
}
@media screen and (max-width: 1199px) {
    .custom-slider-navigation {
        width: 100%;
    }
    .slick-dotted.slick-slider.custom-image-slider {
        width: 100%;
        margin-top: 30px;
    }
    .custom-image-slider .slide-item {
        background-size: cover;
    }
}
@media screen and (max-width: 575px) {
	.custom-slider-navigation ul li a {
		padding: 20px 15px;
	}
	.custom-image-slider .slick-dots {
		bottom: 0px;
	}
}


/*GALLERY SLIDER WIDGET STYLE*/
.custom-gallery-slider-area {
    background-repeat: no-repeat;
    background-position: left -120px center;
    background-size: 25% auto;
}
.gallery-heading-content {
    position: relative;
	margin-bottom: 35px;
    z-index: 1;
}
.custom-gallery-heading {
    max-width: 100%;
	width: calc(100% - 100px); 
    padding-left: 30%;
    position: relative;
}
.custom-gallery-heading::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 4px;
    background-color: #0583F2;
}
.custom-gallery-heading h3, .custom-gallery-heading h1, .custom-gallery-heading h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 45px;
    font-weight: 700;
    color: #292929;
    margin: 0;
}
.custom-gallery-heading p {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 400;
    margin: 20px 0 0;
}
.custom-gallery-slider {
    width: 70%;
    height: 375px;
    margin: 80px 0 0 auto;
    position: relative;
    overflow: hidden;
}
.custom-gallery-slider .slick-track {
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    flex-flow: nowrap;
    -webkit-flex-flow: nowrap;
    -moz-flex-flow: nowrap;
}
.custom-gallery-slider-area .gallery-item {
    position: relative;
    height: 375px;
    width: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}
.custom-gallery-slider-area .gallery-item:not(:first-child) {
    margin-left: 20px;
}
.custom-gallery-slider-area .gallery-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.33);
    z-index: -1;
}
.custom-gallery-slider-area .gallery-item:focus, .custom-gallery-slider-area .gallery-item a:focus {
    outline: none;
    border: none;
}
.custom-gallery-slider-area .gallery-item a {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    z-index: 1;
}
.custom-gallery-slider-area .gallery-item:hover a {
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
	justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
}
.gallery-slider-nav-wrapper {
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    width: 70%;
    margin: 60px 0 0 auto;
    padding-right: 100px;
}
.gallery-slider-nav-wrapper .progress {
    position: relative;
    display: inline-block;
    width: calc(100% - 165px);
    height: 4px;
    overflow: visible;
    background-color: transparent;
    border-bottom: 1px solid #CCCDD4;
    background-image: linear-gradient(to right, #0583F2, #0583F2);
    background-repeat: no-repeat;
    background-size: 0 100%;
    transition: background-size .4s ease-in-out;
    text-align: left;
    left: 40px;
}
.gallery-slider-nav-wrapper .progress .sr-only {
    position: absolute;
    width: auto;
    height: auto;
    padding: 0;
    overflow: hidden;
    clip: initial;
    border: 0;
    top: -5px;
    font-size: 14px;
    color: #191B32;
    font-weight: normal;
    left: -40px;
}
.gallery-slider-nav {
    width: 110px;
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    align-items: center;
    -webkit-align-items: center;
}
.gallery-slider-nav .slick-arrow {
    position: relative;
    left: initial;
    top: initial;
    transform: initial;
    width: 40px;
    height: 40px;
}
.gallery-slider-nav .slick-arrow::before {
    display: none;
}
@media screen and (max-width: 991px) {
    .custom-gallery-heading {
        width: calc(100% - 50px);
    }
}
@media screen and (max-width: 650px) {
    .custom-gallery-slider-area {
        background-image: none !important;
    }
    .custom-gallery-heading {
        max-width: 100%;
        padding: 0 30px;
        width: 100%;
        margin: 0 auto;
    }
    .custom-gallery-slider {
        width: 100%;
        margin: 60px auto 0;
        padding: 0 30px;
    }
    .gallery-slider-nav-wrapper {
        padding-right: 30px;
        width: calc(100% - 60px);
    }
    .custom-gallery-slider-area .gallery-item:not(:first-child) {
        margin-left: 0;
    }
}


/* WOOCOMMERCE PAGE STYLE */
.woocommerce a {
    font-family: 'Poppins', sans-serif;
	font-size: 16px;
	color: #292929;
    text-decoration: none;
}
.woocommerce-page .woocommerce {
    padding: 50px 0;
}
.products {
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
	flex-flow: wrap;
	-webkit-flex-flow: wrap;
	-moz-flex-flow: wrap;
	justify-content: space-between;
    -webkit-justify-content: center;
    -moz-justify-content: center;
	margin-top: 30px;
}
.products.columns-4 .product {
	width: calc(25% - 20px);
}
.products.columns-3 .product {
    width: calc(33.33% - 20px);
}
.products.columns-2 .product {
    width: calc(50% - 20px);
}
.products.columns-1 .product {
    width: 100%;
}
.products .product {
    margin: 0 0 20px;
}
.woocommerce-loop-product__link {
    font-family: 'Poppins', sans-serif;
    position: relative;
    display: inline-block;
	width: 100%;
}
.woocommerce-loop-product__link img {
    width: 100%;
}
.onsale {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    display: inline-flex;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
    height: 50px;
    justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    color: #ffffff;
    background-color: #0583F2;
}
.woocommerce-loop-product__title {
    font-family: 'Poppins', sans-serif;
    margin: 15px 0;
    font-size: 22px;
    font-weight: 600;
}
.price ins {
    text-decoration: none;
}
.product .add_to_cart_button, .product .button  {
    margin-top: 20px;
}
.woocommerce-pagination {
    margin-top: 30px;
}
.woocommerce-pagination ul {
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    align-items: center;
    -webkit-align-items: center;
}
.page-numbers li {
    width: 50px;
    height: 50px;
    display: inline-flex;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
    justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
}
.page-numbers li .page-numbers {
    width: 100%;
    height: 100%;
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
}
.page-numbers li:not(:first-child) {
    border-width: 2px 2px 2px 0;
    border-style: solid;
    border-color: #0583F2;
}
.page-numbers li .page-numbers {
    width: 100%;
    height: 100%;
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    color: #0583F2;
}
.page-numbers li .page-numbers.current {
    background-color: #0583F2;
    color: #ffffff;
}
@media screen and (max-width: 1199px) {
	.products.columns-4 .product {
		width: calc(33.33% - 20px);
	}
}
@media screen and (max-width: 991px) {
	.products.columns-4 .product {
		width: calc(50% - 20px);
	}
	.products.columns-3 .product {
		width: calc(50% - 20px);
	}
}
@media screen and (max-width: 767px) {
	.products.columns-4 .product {
		width: 100%;
	}
	.products.columns-3 .product {
		width: 100%;
	}
	.products.columns-2 .product {
		width: 100%;
	}
}


/* SINGLE PRODUCT PAGE */
.single-product.woocommerce-page .woocommerce {
    padding: 0;
}
.single-product .product {
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    flex-flow: wrap;
    -webkit-flex-flow: wrap;
    -moz-flex-flow: wrap;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
    width: 100%;
}
.single-product .woocommerce-product-gallery {
    width: 40%;
    position: relative;
}
.single-product .woocommerce-product-gallery img {
    width: 100%;
}
.single-product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 1;
    width: 40px;
    height: 40px;
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    background-color: #ffffff;
    border-radius: 100%;
}
.single-product .summary.entry-summary {
    width: calc(60% - 20px);
}
.related.products {
    width: 100%;
}
.related .products {
    width: 100%;
}
.related h2 {
    width: 100%;
}
.single-product .summary .cart {
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    align-items: center;
    -webkit-align-items: center;
}
.single-product .product .quantity {
    margin-right: 15px;
}
.single-product .product .quantity .qty {
    border: 1px solid #EBF6FF;
    padding: 10px 15px;
    color: #292929;
    height: 60px;
    box-sizing: border-box;
}
.single-product .product .quantity .qty:focus {
    outline: none;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}
.single-product .product .button {
    margin: 0;
}
.single-product .product_meta {
    margin-top: 20px;
}
.single-product-summery-area {
	position: relative;
    background-color: #F9FCFF;
	z-index: 1;
}
.single-product-summery-area::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 100%;
    background-color: #0583F2;
    z-index: -1;
}
.single-product-summery-area::before {
    content: "";
    position: absolute;
    top: 0;
    right: calc(35% - 200px);
    height: 100%;
    width: 400px;
    transform: skewX(-25deg);
    background-color: #0583F2;
    z-index: -1;
}
.single-product-summery-contents {
	position: relative;
    padding: 80px 0;
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
}
.single-product-summery-cart {
    width: calc(50% - 20px);
}
.single-product-summery-cart .product_title {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    color: #292929;
    margin: 0 0 30px;
}
.woocommerce-product-details__short-description p {
    margin: 0;
    font-size: 22px;
    color: #292929;
    font-weight: 400;
    line-height: 35px;
    font-family: 'Poppins', sans-serif;
}
.single-product-thumbnail {
    width: calc(35% - 20px);
}
.single-product-full-details {
    padding: 80px 0;
}
.woocommerce-mini-cart__buttons .button:hover {
    text-decoration: none;
}

.pswp--open {
    z-index: 9999;
}


/* CUSTOM SINGLE PRODUCT BANNER WIDGETS STYLE */
.single-product-banner-area {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.single-product-banner-area::after {
    content: "";
    position: absolute;
    top: 0;
    right: -25%;
    width: 75%;
    height: 100%;
    background-color: #0583F2;
    transform: skewX(-17deg);
    z-index: -1;
}
.single-product-banner-contents {
    position: relative;
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    flex-flow: wrap row;
    -webkit-flex-flow: wrap row;
    -moz-flex-flow: wrap row;
    width: 100%;
}
.single-product-details {
    position: relative;
    width: calc(60% - 50px);
	padding-right: 180px;
    align-self: center;
    -webkit-align-self: center;
}
.single-product-details .custom-heading-icon img {
    width: 180px;
}
.single-product-details .custom-heading-icon::after {
	display: none;
}
.single-product-details .custom-heading-text h2, .single-product-details .custom-heading-text h1, .single-product-details .custom-heading-text h3 {
	font-family: 'Noto Sans', sans-serif;
    font-size: 62px;
    line-height: 68px;
    font-weight: 700;
    color: #292929;
}
.single-product-details .custom-heading-text::after {
    content: "";
    position: absolute;
    top: 3px;
    left: calc(180px - 100px);
    height: 100%;
    width: 70px;
    transform: rotate(10deg);
    background-color: #F9FCFF;
    z-index: -1;
}
.single-product-price {
    margin-top: 50px;
}
.single-product-price p {
    margin: 0;
}
.single-product-price span {
    font-size: 22px;
    color: #292929;
    font-weight: 500;
    display: block;
    line-height: 1;
}
.single-product-price strong {
    font-size: 66px;
    color: #0583F2;
    line-height: 70px;
    font-family: 'Noto Sans', sans-serif;
}
.single-product-banner-buttons {
    margin-top: 50px;
	display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
	flex-flow: wrap row;
	-webkit-flex-flow: wrap row;
	-moz-flex-flow: wrap row;
    align-items: center;
    -webkit-align-items: center;
}
.single-product-banner-buttons .custom-button {
    margin-left: 20px;
	font-size: 16px;
    font-weight: 600;
}
.single-product-banner-buttons .button {
    color: #ffffff;
	font-size: 16px;
    font-weight: 600;
}
.single-product-banner-buttons a[title="View cart"] {
    display: none;
}
.single-product-banner-buttons .button:hover {
	color: #0583F2;
}
.single-product-banner-buttons .button::after, .single-product-banner-buttons .button::before {
    height: 100%;
}
.single-product-banner-buttons .button span::after, .single-product-banner-buttons .button span::before {
    height: 100%;
}
.single-product-banner-buttons .button:hover::after, .single-product-banner-buttons .button:hover::before {
    height: 0;
}
.single-product-banner-buttons .button:hover span::after, .single-product-banner-buttons .button:hover span::before {
    height: 0;
}
.single-product-banner-buttons .button img {
    filter: grayscale(100%) brightness(100);
    -webkit-filter: grayscale(100%) brightness(100);
    height: 18px;
    margin-right: 15px;
}
.single-product-banner-buttons .button:hover img {
    filter: initial;
    -webkit-filter: initial;
}
.single-product-image {
    position: relative;
    width: 40%;
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    align-items: center;
    -webkit-align-items: center;
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
	min-height: 650px;
}
@media screen and (max-width: 1360px) {
	.single-product-details {
		padding-right: 150px;
	}
	.single-product-details .custom-heading-text h2, .single-product-details .custom-heading-text h1, .single-product-details .custom-heading-text h3 {
		font-size: 50px;
		line-height: 60px;
	}
	.single-product-price strong {
		font-size: 55px;
		line-height: 60px;
	}
}
@media screen and (max-width: 1299px) {
	.single-product-details {
		padding-right: 100px;
	}
	.single-product-banner-buttons {
		flex-flow: column;
		-webkit-flex-flow: column;
		-moz-flex-flow: column;
		align-items: flex-start;
		-webit-align-items: flex-start;
	}
	.single-product-banner-buttons .custom-button {
		margin-left: 0;
		margin-top: 20px;
	}
}
@media screen and (max-width: 1075px) {
	.single-product-details .custom-heading-text h2, .single-product-details .custom-heading-text h1, .single-product-details .custom-heading-text h3 {
		font-size: 40px;
		line-height: 50px;
	}
	.single-product-price strong {
		font-size: 45px;
		line-height: 50px;
	}
}
@media screen and (max-width: 991px) {
	.single-product-banner-area .container {
		max-width: 100%;
	}
	.single-product-banner-area::after {
		display: none;
	}
	.single-product-details {
		width: 100%;
		padding-right: 50px;
		padding-left: 50px;
		padding-top: 80px;
    	padding-bottom: 80px;
		order: 2;
	}
	.single-product-image {
		width: 100%;
		padding: 120px 0 50px;
		min-height: initial;
		justify-content: center;
		background-color: #0583F2;
		order: 1;
	}
}
@media screen and (max-width: 767px) {
	.single-product-details .custom-heading-text h2, .single-product-details .custom-heading-text h1, .single-product-details .custom-heading-text h3 {
		font-size: 35px;
    	line-height: 40px;
	}
}
@media screen and (max-width: 575px) {
	.single-product-details .custom-heading-text br {
		content: initial;
	}
	.single-product-details {
		padding-right: 30px;
		padding-left: 30px;
	}
}
@media screen and (max-width: 480px) {
	.single-product-details .custom-heading-text br {
		content: "";
	}
}

/* CONTACT PAGE FORM STYLE */
body .gform_wrapper {
    margin-bottom: 0;
    margin-top: 0;
}
.contact-form-title {
    color: #0583F2;
    text-align: center;
    font-size: 30px;
    letter-spacing: 0.25px;
    line-height: 46px;
    margin: 0 0 20px;
}
body .gform_wrapper .gform_body li.gfield {
    margin-top: 0;
}
body .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
    width: 100%;
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: #C7C7C7;
    font-family: 'Poppins', sans-serif;
	font-size: 16px;
    letter-spacing: 0.25px;
    line-height: 50px;
    padding: 0;
}
body .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::-webkit-input-placeholder {
  	color: #292929;
}
body .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):-ms-input-placeholder { 
  	color: #292929;
}
body .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::placeholder {
  	color: #292929;
}
body .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus {
	outline: none;
}
body .gform_wrapper textarea {
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: #C7C7C7;
    font-family: 'Poppins', sans-serif;
	font-size: 16px;
    letter-spacing: 0.25px;
    line-height: 50px;
    padding: 0;
}
body .gform_wrapper textarea:focus {
	outline: none;
}
body .gform_wrapper textarea::-webkit-input-placeholder { 
  	color: #292929;
}
body .gform_wrapper textarea:-ms-input-placeholder { 
  	color: #292929;
}
body .gform_wrapper textarea::placeholder {
  	color: #292929;
}
.gform_button.button {
    background-color: #0583F2;
    color: #ffffff;
    min-width: 199px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 24px;
}
.inner-page.contact .icon-wrapper {
    width: 40px;
}
.inner-page.contact .icon-box-contents {
    padding-left: 20px;
    box-sizing: border-box;
}
.inner-page.contact .icon-box-contents h4, .inner-page.contact .icon-box-contents h3, .inner-page.contact .icon-box-contents h3, .inner-page.contact .icon-box-contents h1 {
    color: #ffffff;
	font-size: 30px;
}
.inner-page.contact .icon-box-contents p {
    color: #ffffff;
}
.contact .footer-contact-area {
    position: relative;
    z-index: 1;
}
.contact .footer-contact-area::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: rgba(5, 131, 242, 10.66);
    z-index: -1;
}


/* VIDEO PARALLAX WIDGET STYLE */
.video-parallax-area {
    position: relative;
    overflow: hidden;
	background-color: #E5F3FF;
}
.video-parallax-area::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}
.video-wrapper {
    position: relative;
    height: 550px;
    overflow: hidden;
    top: 0;
    left: 0;
	z-index: 1;
}
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
    height: 100%;
    z-index: -1;
}

/* CUSTOM CONTACT INFO WIDGETS STYLE */
.contact-widgets-address {
    position: relative;
    padding-left: 30px;
}
.contact-widgets-address i {
    font-size: 22px;
    position: absolute;
    top: 13px;
    left: 0;
    color: #0583F2;
}
.contact-widget-website-email {
    margin-top: 20px;
}
.contact-widget-website {
    position: relative;
    padding-left: 30px;
}
.contact-widget-website img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}
.contact-widget-website a {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #292929;
    line-height: 45px;
    margin: 0;
}
.contact-widget-website a:hover {
    text-decoration: none;
}
.contact-phone {
    position: relative;
    padding-left: 30px;
}
.contact-phone i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%) rotate(90deg);
    font-size: 19px;
    color: #0583F2;
}
.contact-phone a {
    line-height: 45px;
    color: #292929;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}
.contact-widget-email {
    position: relative;
    padding-left: 30px;
}
.contact-widget-email img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}
.contact-widget-email a {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #292929;
    line-height: 45px;
    margin: 0;
}
.contact-widget-email a:hover {
    text-decoration: none;
}

/* ABOUT SECTION CLEANSLATE UV */
.cleanslate-uv .elementor-image-gallery .gallery {
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    align-items: center;
    -webkit-align-items: center;
    flex-flow: wrap row;
    -webkit-flex-flow: wrap row;
    -moz-flex-flow: wrap row;
}



/* CUSTOM TESTIMONIAL SLIDER WIDGET STYLE */
.custom-testimonial-slider {
    overflow: hidden;
    position: relative;
}
.custom-testimonial-slider .slick-list {
    margin-left: -30px;
}
.custom-testimonial-slider .slick-track {
    display: grid;
	display: -webkit-grid;
	display: -ms-grid;
    grid-auto-flow: column;
/*     gap: 30px; */
}
.custom-testimonial-slider .slide-item {
	margin-left: 30px;
    height: 100%;
	padding-top: 45px;
}
.custom-testimonial-slider .slide-item:focus {
    outline: none;
}
.custom-testimonial-slider .test-item {
	position: relative;
    padding: 60px 40px 40px;
    border: 1px solid #0583F2;
    height: 100%;
	width: calc(100% - 2px);
}
.custom-testimonial-slider .client-image {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    overflow: hidden;
    border: 10px solid #ffffff;
    position: absolute;
    top: -50px;
    left: 15px;
}
.custom-testimonial-slider .client-name h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #292929;
    letter-spacing: 0.25px;
    line-height: 32px;
    margin: 0;
}
.custom-testimonial-slider .client-message {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.25px;
    line-height: 36px;
	color: #0583F2;
    margin-top: 30px;
}
.custom-testimonial-slider .client-message p {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.25px;
    line-height: 36px;
	color: #0583F2;
    margin: 0;
}
.custom-testimonial-slider .client-address {
    font-family: 'Poppins', sans-serif;
    color: #292929;
    font-weight: 600;
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    align-items: center;
    -webkit-align-items: center;
    font-size: 16px;
    line-height: 32px;
    margin-top: 30px;
}
.custom-testimonial-slider .client-address img {
    margin-right: 15px;
}
.testimonial-slider-nav {
    margin-top: 40px;
    text-align: center;
}
@media screen and (max-width: 1600px) {
	.custom-testimonials-slider-area {
		padding: 0 50px;
	}
}
@media screen and (max-width: 1075px) {
	.custom-testimonial-slider .test-item {
		padding: 60px 25px 25px;
	}
	.custom-testimonial-slider .client-name h4 {
		font-size: 18px;
		line-height: 22px;
	}
	.custom-testimonial-slider .client-message p {
		font-size: 20px;
		line-height: 30px;
	}
}
@media screen and (max-width: 1024px) {
	.custom-testimonials-slider-area {
		padding: 0;
	}
	.custom-testimonial-slider .client-name h4 {
		font-size: 16px;
		line-height: 20px;
	}
	.custom-testimonial-slider .client-message p {
		font-size: 18px;
		line-height: 30px;
	}
	.custom-testimonial-slider .client-address {
		font-size: 13px;
		line-height: 20px;
	}
	.testimonial-slider-nav {
		margin-top: 25px;
	}
	.testimonial-slider-nav img {
		width: 50px;
	}
}
@media screen and (max-width: 767px) {
	.custom-testimonial-slider .client-name h4 {
		font-size: 14px;
	}
	.custom-testimonial-slider .client-message p {
		font-size: 16px;
		line-height: 25px;
	}
}

/* BLOG PAGE STYLE */
.blog-lists-area {
    padding: 80px 0;
}
.blog-item {
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
	flex-flow: wrap row;
	-webkit-flex-flow: wrap row;
	-moz-flex-flow: wrap row;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
}
.blog-item:not(:first-child) {
    margin-top: 40px;
}
.blog-image {
    width: calc(40% - 20px);
}
.blog-image img {
    display: block;
}
.blog-item-content {
    width: calc(60% - 20px);
	align-self: center;
	-webkit-align-self: center;
}
.blog-cat a, .blog-cat {
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	color: #0583F2;
	line-height: 17px;
	text-transform: uppercase;
	font-weight: 500;
}
.blog-cat a:hover {
    text-decoration: none;
}
.blog-cat .separator {
    color: #0583F2;
}
.blog-date {
    color: #A7A7A7;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 19px;
}
.blog-title {
	margin-top: 15px;
	margin-bottom: 15px;
}
.blog-item-content .blog-title h4 {
    font-family: 'Noto Sans', sans-serif;
	font-size: 30px;
    line-height: 49px;
    color: #2C333C;
	font-weight: 700;
    margin: 0;
}
.blog-title h4 a {
    font-family: 'Noto Sans', sans-serif;
	font-size: 30px;
    color: #2C333C;
    text-decoration: none;
}
.short-description {
    margin-top: 40px;
}
.short-description p {
    color: #292929;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 30px;
    margin: 0;
}
.blog-link {
    margin-top: 25px;
}
.blog-link a {
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    min-width: 180px;
    padding: 10px;
/*     background-color: #0583F2; */
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 33px;
}
.blog-link a:hover {
	text-decoration: none;
    color: #0583F2;
}
.blog-link a::after, .blog-link a::before {
    height: 100%;
}
.blog-link a:hover::before, .blog-link a:hover::after {
    height: 0;
}
.blog-link a span::after, .blog-link a span::before {
    height: 100%;
}
.blog-link a:hover span::before, .blog-link a:hover span::after {
    height: 0;
}
.custom-pagination {
    margin-top: 50px;
}
.custom-pagination ul {
    display: flex;
    gap: 10px;
}
.custom-pagination ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid #0583F2;
    text-decoration: none;
}
.custom-pagination ul li.active a {
    background-color: #0583F2;
    color: #ffffff;
}
@media screen and (max-width: 1075px) {
	.blog-image {
		width: 100%;
	}

}

/* SINGLE BLOG PAGE STYLE */
.single-post .single-blog {
    padding: 80px 0;
}
.single-blog-contents {
    max-width: 1320px;
    margin: 0 auto;
}
.single-blog-tag-lists a:not(:last-of-type)::after {
    content: ",";
}
.blog-feat-image img {
    width: 100%;
}
.blog-content {
    margin-top: 50px;
}
.blog-title h2 {
	margin: 0;
	font-size: 26px;
	color: #292929;
	line-height: 30px;
	font-family: 'Noto Sans', sans-serif;
	font-weight: 700;
}
.blog-details-cotnent {
    margin-top: 30px;
}
.blog-details-cotnent p {
	font-size: 15px;
	color: #292929;
	font-weight: 400;
	line-height: 23px;
	font-family: 'Poppins', sans-serif;
	margin: 0;
}
.blog-details-cotnent p:not(:first-child) {
	margin-top: 15px;
}
.blog-tag-lists {
    margin-top: 30px;
    display: inline-flex;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
    flex-flow: wrap row;
    -webkit-flex-flow: wrap row;
    -moz-flex-flow: wrap row;
    gap: 15px;
}
.blog-tag-lists a {
    background-color: #EEF7FF;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25px;
    color: #0583F2;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    min-width: 180px;
    text-align: center;
    line-height: 50px;
}
.blog-tag-lists a:hover {
	text-decoration: none;
}
.related-post {
    padding-bottom: 80px;
}
.related-title {
    margin: 0;
    font-size: 28px;
    font-weight: 500;
    line-height: 42px;
    font-family: 'Poppins', sans-serif;
}
.blog-lists {
    margin-top: 30px;
	display: inline-flex;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
    flex-flow: wrap row;
    -webkit-flex-flow: wrap row;
    -moz-flex-flow: wrap row;
    gap: 20px;
}
.related-post .blog-lists .blog-item {
    width: calc(25% - 20px);
    border-width: 0 1px 1px 1px;
    border-style: solid;
    border-color: #EEEEEE;
}
.related-post .blog-lists .blog-item:not(:first-child) {
    margin-top: 0;
}
.related-post .blog-item .blog-image {
    width: 100%;
}
.related-post .blog-item .blog-item-content {
    width: 100%;
    padding: 10px;
    background-color: #ffffff;
}
.related-post .blog-item-content .blog-title {
    margin: 0;
}
.related-post .blog-item-content .blog-title h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
	line-height: 24px;
    color: #2C333C;
}
.related-post .blog-item-content .blog-title h4 a {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 1;
    color: #2C333C;
}
.blog-details-cotnent h3, .blog-details-cotnent h1, .blog-details-cotnent h2, .blog-details-cotnent h4, .blog-details-cotnent h5, .blog-details-cotnent h6 {
    margin-top: 30px;
}
.related-post .blog-item .blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
@media screen and (max-width: 1075px) {
	.related-post .blog-lists .blog-item {
		width: calc(50% - 20px);
	}
	.related-post .blog-lists .blog-item .blog-item-content {
		margin-top: 0;
	}
}
@media screen and (max-width: 991px) {
	.single-blog-contents {
		max-width: 100%;
	}
}
@media screen and (max-width: 575px) {
	.related-post .blog-lists .blog-item {
		width: 100%;
	}
}


/*FOOTER STYLE*/
.footer-area {
    position: relative;
	clear: both;
    overflow: hidden;
}
.footer-top-area {
    position: relative;
    background-color: #E5F3FF;
    padding: 40px 0;
}
.footer-top-contents {
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
}
.footer-top-box p {
    font-family: 'Poppins', sans-serif;
    color: #292929;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.25px;
    line-height: 35px;
    margin: 0;
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    align-items: center;
    -webkit-align-items: center;
}
.footer-top-box img {
    margin-right: 25px;
    max-width: 40px;
    height: auto;
}
.footer-widgets-area {
    padding: 65px 0;
    position: relative;
}
.footer-widgets:first-child .widget_media_image:not(:first-child) {
    margin-top: 20px;
}
.footer-widgets-contents {
    position: relative;
    overflow: hidden;
}
.footer-widgets-contents .footer-widgets:first-child {
    flex-grow: 1.5;
}
.footer-widgets-contents .footer-widgets:last-child {
    flex-grow: 1.5;
}
.footer-widgets-contents .footer-widgets .widget:not(:first-child) {
    margin-top: 53px;
}
.footer-widgets-area .widget-title {
    font-family: 'Poppins', sans-serif;
    font-size: 25px;
    color: #0583F2;
    font-weight: 500;
    line-height: 30px;
    margin: 30px 0 40px;
}
.footer-widgets-contents ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-social {
    margin-top: 30px;
}
.footer-social ul {
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    align-items: center;
    -webkit-align-items: center;
}
.footer-social ul li:not(:first-child) {
    margin-left: 30px;
}
.footer-widgets-contents .footer-social ul li a {
    font-size: 27px;
    color: #0583F2;
}
.footer-widgets p {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #292929;
    line-height: 35px;
    margin: 0;
}
.footer-widgets-contents .menu li:not(:first-child) {
    margin-top: 10px;
}
.footer-widgets-contents ul li a {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: #292929;
    font-weight: 400;
    line-height: 38px;
    text-decoration: none;
}
.footer-widgets-contents ul li a:hover {
    color: #0583F2;
}
.footer-widgets-contents ul li a:hover, .footer-widgets-contents ul li a:focus {
    text-decoration: none;
    outline: none;
}
.footer-copyright-area {
    padding: 35px 0;
    border-top: 1px solid #DCDCDC;
}
.footer-copyright-contents {
    display: flex;
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    justify-content: space-between;
	-webkit-justify-content: space-between;
    flex-flow: wrap row;
	-webkit-flex-flow: wrap row;
	-webkit-flex-flow: wrap row;
}
.footer-bottom-copyrighttext p {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    color: #292929;
    font-size: 15px;
    font-weight: 500;
}
.footer-copyright-contents a:hover {
    text-decoration: none;
}
.footer-bottom-right p {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    color: #292929;
    font-size: 15px;
    font-weight: 500;
}
@media screen and (max-width: 1199px) {
    .footer-widgets-contents .footer-widgets:first-child {
        flex-basis: 40%;
	  	-moz-flex-basis: 40%;
	  	-ms-flex-basis: 40%;
        flex-grow: initial;
    }
    .footer-widgets-contents .footer-widgets {
        flex-basis: 30%;
	  	-moz-flex-basis: 30%;
	  	-ms-flex-basis: 30%;
        flex-grow: initial;
    }
    .footer-widgets-contents .footer-widgets:last-child {
        flex-grow: initial;
        flex-basis: 50%;
	  	-moz-flex-basis: 50%;
	  	-ms-flex-basis: 50%;
    }
}
@media screen and (max-width: 1075px) {
    .footer-top-box p {
        font-size: 15px;
        line-height: 25px;
    }
}
@media screen and (max-width: 767px) {
    .footer-top-contents {
        display: flex;
		display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
		display: -ms-flexbox;  /* TWEENER - IE 10 */
		display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
        flex-flow: wrap row;
		-webkit-flex-flow: wrap row;
		-webkit-flex-flow: wrap row;
	  	-moz-flex-basis: 100%;
	  	-ms-flex-basis: 100%;
    }
    .footer-top-box {
        width: 100%;
    }
    .footer-top-box:not(:first-child) {
        margin-top: 30px;
    }
    .footer-widgets-contents .footer-widgets:first-child {
        flex-basis: 100%;
		-webkit-flex-basis: 100%;
	  	-moz-flex-basis: 100%;
	  	-ms-flex-basis: 100%;
    }
    .footer-widgets-contents .footer-widgets {
        flex-basis: 50%;
		-webkit-flex-basis: 50%;
	  	-moz-flex-basis: 50%;
	  	-ms-flex-basis: 50%;
    }
}
@media screen and (max-width: 575px) {
    .footer-widgets-contents .footer-widgets:first-child {
		flex-basis: 100%;
		-webkit-flex-basis: 100%;
	  	-moz-flex-basis: 100%;
	  	-ms-flex-basis: 100%;
    }
    .footer-widgets-contents .footer-widgets {
        flex-basis: 100%;
		-webkit-flex-basis: 100%;
	  	-moz-flex-basis: 100%;
	  	-ms-flex-basis: 100%;
    }
    .footer-widgets-contents .footer-widgets:last-child {
        flex-basis: 100%;
		-webkit-flex-basis: 100%;
	  	-moz-flex-basis: 100%;
	  	-ms-flex-basis: 100%;
    }
}


/* div#chatlink {
    bottom: 75px;
} */


.your-site-blocks .elementor-column-gap-narrow .elementor-row {
    gap: 15px;
}
@media (max-width: 1299px) {
	.your-site-blocks .elementor-column-gap-narrow .elementor-row {
		flex-flow: wrap row;
		-webkit-flex-flow: wrap row;
		-moz-flex-flow: wrap row;
	}
	.your-site-blocks .elementor-column.elementor-col-20, .your-site-blocks .elementor-column[data-col="20"] {
		width: 32%;
	}
}
@media (max-width: 869px){
	.your-site-blocks .elementor-column.elementor-col-20, .your-site-blocks .elementor-column[data-col="20"] {
		width: 48%;
	}
}
@media (max-width: 575px){
	.your-site-blocks .elementor-column.elementor-col-20, .your-site-blocks .elementor-column[data-col="20"] {
		width: 100%;
	}
}

.footer-area .footer-widgets-contents .footer-widgets .gform_widget {
    margin-top: 15px;
}
.footer-widgets-contents .gform_wrapper .gform_footer {
    margin-top: 0;
}
body .footer-widgets-contents .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
    border-width: 1px;
    padding: 5px 10px;
    line-height: 1;
}
.footer-widgets-contents .gform_wrapper .gform_footer .gform_button.button {
    line-height: 1;
    font-size: 12px;
    text-transform: uppercase;
    min-width: initial;
    height: auto;
    padding: 15px;
}