/*
Theme Name: VietCoder Theme
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.18.6
*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
	--color-primary: 255, 125, 68;
	--color-secondary: 7, 132, 127;
	--color-alert: 236, 69, 60;
	--color-sucess: 74, 159, 83;
	--color-process: 63, 162, 246;
	--color-warning: 255, 175, 0;
	--color-border-1: 33, 35, 34;
	--color-border-opposite: 255, 255, 255;
	--bg: 255, 255, 255;
	--bg-2nd: 245,245,245;
	--bg-opposite: 33, 34, 38;
	--color-text-sub: 80, 93, 123;
	--color-text-title: 28, 63, 57;

	--price-color: rgb(var(--color-text-title));
	--price-sale-color: rgb(var(--color-alert));

	--ff-material-outline: 'Material Symbols Outlined';
	--ff-material-round: 'Material Symbols Rounded';

	--blog-img-ratio: 66%;

	--logo-w: 157px;
	--logo-h: 112px;
	--logo-sticky-h: 74px;
	
	--radius-sm: 6px;
	--radius-md: 10px;
	--radius-lg: 16px;
	--radius-xl: 24px;
	--radius-xxl: 30px;

	--size-ratio: 1.2;
	--size-small: calc(1rem - 1px);
	--size-small-a: calc(var(--size-small) - 1px);
	--size-2: calc(1rem * var(--size-ratio) - 1px);
	--size-3: calc(var(--size-2) * var(--size-ratio));
	--size-4: calc(var(--size-3) * var(--size-ratio));
	--size-5: calc(var(--size-4) * var(--size-ratio));
	--size-6: calc(var(--size-5) * var(--size-ratio));
	--size-7: calc(var(--size-6) * var(--size-ratio));
	--size-8: calc(var(--size-7) * var(--size-ratio));

	--sketch-loading-bg: linear-gradient(90deg, #ececec 8%, #f7f7f7 18%, #ececec 33%);
	--sketch-loading-bg-size: 200% 100%;
	--sketch-loading-animetion: 1.5s sketchloading linear infinite;
}

.dark,
.dark p,
.dark td {
  color: #fff;
}


body {
  max-width: 100vw;
  min-height: 100vh;
  background-color: rgb(var(--bg));
  overflow: visible !important;
}


p {
  margin-bottom: 16px;
}

ol,
ul {
  list-style-position: inside;
}

.text-justify .text-left {
  text-align: justify;
}

.overflow-hidden {
  overflow: hidden;
}

.is-email {
  word-break: break-word;
}

/* Ux - Button -- */
#wrapper .btn {
	--btn-shadown: unset;
	--btn-shadown-hover: unset;
	--btn-bg: rgb(var(--color-primary));
	--btn-bg-hover: rgb(var(--color-secondary));
	--btn-color: rgb(var(--bg));
	--btn-color-hover: rgb(var(--bg));
	--btn-border: 1px solid rgb(var(--color-primary));
	--btn-border-hover: 1px solid rgb(var(--color-secondary));

	box-shadow: var(--btn-shadown) !important;
	background-color: var(--btn-bg) !important;
	color: var(--btn-color) !important;
	border: var(--btn-border) !important;
}

#wrapper .btn:hover {
  box-shadow: var(--btn-shadown-hover) !important;
  background-color: var(--btn-bg-hover) !important;
  color: var(--btn-color-hover) !important;
  border: var(--btn-border-hover) !important;
}

#wrapper .btn:not(.is-link, .is-underline) {
    font-size: 1rem;
    letter-spacing: 0;
    min-height: unset;
    line-height: 1.2;
    padding: 12px 30px;
    border-radius: var(--radius-md);
    font-weight: 500;
}

#wrapper .btn.icon-rounded i {
	display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--btn-color);
    color: var(--btn-bg);
    border-radius: var(--radius-sm);
    margin: 0 0 0 30px;
    line-height: 1;
    top: unset;
}


#wrapper .btn.icon-rounded:not(.is-link, .is-underline) {
    padding: 6px 6px 6px 26px;	
}



/* --------- */
#wrapper .button.btn.is-underline {
  --btn-bg: transparent;
  --btn-bg-hover: transparent;
  min-height: unset;

  padding: 0;
  line-height: 1.5;
  font-weight: 500;
  font-size: 1rem;
  text-transform: unset;
  letter-spacing: 0;
}

#wrapper .button.btn.is-underline:before {
  display: none;
}

#wrapper .button.btn.is-underline span {
  text-decoration: underline 1px;
  text-underline-offset: 3px;
}

#wrapper .button.btn.is-underline.white {
  --btn-color: rgb(var(--bg));
  --btn-color-hover: rgb(var(--bg), 80%);
}


/* Plugin - Contact form 7 */
.wpcf7 .wpcf7-spinner {
  display: none;
}

.wpcf7 .wpcf7-not-valid-tip {
  margin-bottom: 10px;
}

.wpcf7 form .wpcf7-response-output {
  margin: 1rem 0 1rem;
}

label .required {
  color: rgb(var(--color-alert));
}

/* Ux - Search */
.searchform {
  --input-height: 44px;
}

.searchform span.amount {
  color: rgb(var(--color-text-sub));
  font-size: 1rem;
}

.searchform .flex-row {
  background-color: rgb(var(--bg-2nd));
  border-radius: calc(var(--border-radius) / 2);
}

.searchform .search-field {
  background: transparent;
  box-shadow: none;
  font-size: 16px;
  height: var(--input-height);
  border: 0;
  color: rgb(var(--color-text-title));
}

.searchform .search-field:focus,
.searchform .search-field:hover {
  box-shadow: none;
  background: transparent;
}

.searchform .flex-col .submit-button:not(.is-outline) {
  background-color: transparent;
  box-shadow: none;
  font-size: 14px;
  height: var(--input-height);
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: rgb(var(--color-text-title));
}

.searchform .flex-col .submit-button:not(.is-outline):hover {
  color: rgb(var(--color-primary));
}

.searchform .autocomplete-suggestions {
  background: rgb(var(--bg));
  color: rgb(var(--color-text-sub));
  font-size: 0.95rem;
}

.searchform .autocomplete-suggestion {
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr;
  font-size: var(--size-small);
}

.searchform .autocomplete-suggestion img {
  height: 60px;
  margin: 0 0 12px;
  width: 60px;
  object-fit: cover;
}

/* Header ------------- */
.header {
  --color-menu: rgb(var(--bg));
  --color-menu-hover: rgb(var(--color-primary));
}

.header-wrapper.stuck {
  box-shadow: none;
}

.header-wrapper.stuck .top-divider {
  display: none;
}


#header .header-top .menu-item>a,
#header .header-nav-main>li>a,
#header .header-bottom-nav>li>a,
#header .mobile-nav>li>a {
  color: var(--color-menu);
}

#header .header-top .menu-item>a:hover,
#header .header-nav-main>li>a:hover,
#header .header-bottom-nav>li>a:hover,
#header .mobile-nav>li>a:hover {
  color: var(--color-menu-hover);
}

/* Header - Top ------- */
.header-top {
    border-bottom: 1px solid rgb(var(--bg), 15%);	
}

#header-contact a {
	color: var(--color-menu);
    text-transform: unset;
    letter-spacing: 0;
    font-size: 13px;
}

#header-contact  li {
	margin: 0 16px;
}

#header-contact li+li>a:after {
        left: -16px;
}

#header-contact i {
	color: var(--color-menu-hover);
}


.header .social-icons a.icon:not(.button) {
    font-size: 14px;
    margin: 0 10px;
    color: var(--color-menu);
    transition: 220ms color;
}

.header .social-icons a.icon:not(.button):last-child {
	margin-right: 0;
}

.header .social-icons a.icon:not(.button):hover {
    color: var(--color-menu-hover);
}


@media only screen and (min-width: 850px) {
	body #logo {
		position: absolute;
		left: 0;
		bottom: 0;
		margin: 0;
		width: var(--logo-w);
		height: var(--logo-h);
		background-color: rgb(var(--color-primary));
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 12px;
		max-height: unset;
		z-index: 100;		
	}
	
	body .stuck #logo {
		height: var(--logo-sticky-h);
		background-color: transparent;
	}
	
	.header-top,
	.header-main {
		padding-left: var(--logo-w);
	}
}

/* Header - Main ---- */
.header-main {
    z-index: 20;
}

.header-hotline {
	flex-wrap: nowrap;
	align-items: center;
	width: max-content;
}

.header-hotline .icon-box-img+.icon-box-text {
    padding-left: 10px;
}

.header-hotline h5 {
    color: var(--color-menu);
    text-transform: unset;
    font-weight: normal;
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 4px;
    letter-spacing: 0;	
}

.header-hotline h6 {
    color: var(--color-menu);
    letter-spacing: 0;
    opacity: 1;
    font-size: var(--size-2);
    font-weight: 700;	
}

.header-hotline .icon-box-img{
	width: 52px!important;
    height: 52px;
    padding: 6px;
    border-radius: 50%;
    background-color: rgb(var(--color-primary), 30%);	
}

.header-hotline .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: rgb(var(--color-primary));
    border-radius: 50%;
    animation: 1s ani-hotline infinite;	
}

.header-hotline img {
	padding: 0;
}

@keyframes ani-hotline {
	0%, 30%, 60%,100% {
		transform: rotate(0deg);
	}
	15%, 45% {
		transform: rotate(20deg);
	}
	
}

.header-main > .header-inner {
	padding-right: 0;
}

.header-nav-main.nav-right {
    display: flex;
    flex-wrap: nowrap;
    height: var(--logo-sticky-h);
    align-items: center;
    padding-left: 16px;
    border-left: 1px solid rgb(var(--bg), 15%);
}

.header-popup-btn {
	height: var(--logo-sticky-h);
    display: flex;
    align-items: center;
    background-color: rgb(var(--color-primary));
    color: rgb(var(--bg));
    text-align: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    padding: 0 18px;
    cursor: pointer;
    transition: 220ms all;
}

.header-popup-btn:hover {
    color: rgb(var(--color-text-title));
    background-color: rgb(var(--bg));	
}


#header .header-nav-main>li>a {
    font-size: 1rem;
    font-weight: 600;
}

#header .header-nav-main>li.current_page_parent>a {
	color: var(--color-menu-hover);
}

.header-main .flex-left {
    justify-content: flex-end;
    display: flex;
    padding-right: 20px;	
}

.header-main .header-nav-main.nav-left {
    justify-content: flex-end;
    width: fit-content;
    height: var(--logo-sticky-h);
    padding-left: 16px;
    border-left: 1px solid rgb(var(--bg), 15%);	
	flex-wrap: nowrap;
}




/* Handle width js hidden when overflow  ------*/
/* 
.header .flex-left > .header-bottom-nav {
	flex-wrap: nowrap;
	max-width: 100%;
}

.header .header-bottom-nav > .menu-item > a  {
	width: max-content;
} 

.header .header-bottom-nav > .menu-item.hidden {
	display: none;
}

.header-bottom .flex-right {
	display: none;
}

.header-bottom .flex-left {
	flex: 1 1 ;
	max-width: calc(100% - 20px);
}

*/

/* Custom nav dropdown ---- */
#header .nav-dropdown .header-search-form {
	padding: 0 12px;
}

#header .sub-menu,
#header .nav-dropdown {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 15px 0;
    min-width: 260px;
    background-color: rgb(var(--bg));
	box-shadow: 0 5px 10px rgb(var(--bg-opposite), 5%);
}

header .nav .nav-dropdown li {
  width: 100%;
  margin: 0;
  border: 0;
  padding: 9px 24px;
  position: relative;
  transition: 300ms all;
}

header .nav .nav-dropdown li+li {
  border-top: 0px;
}

#header .sub-menu>li>a,
#header .nav-dropdown>li>a {
  padding: 0;
  margin: 0;
  border: 0px;
  text-transform: capitalize;
  color: rgb(var(--color-text-title));
  font-size: 1rem;
  font-weight: 500;
  position: relative;
}

#header .sub-menu>li>a:hover,
#header .nav-dropdown>li>a:hover {
  color: rgb(var(--color-primary));
}

header .menu-item-design-default .nav-dropdown-col>a:after {
  content: '\e5e1';
  font-family: var(--ff-material-round);
  float: right;
  margin-left: 5px;
  font-size: 1em;
  line-height: 1;
  vertical-align: text-top;
  transform: translateY(2px);
  display: inline-block;
}

header .menu-item-design-default .sub-menu .sub-menu {
  position: absolute;
  left: 80%;
  top: -1px;
  opacity: 0;
  visibility: hidden;
  transition: 300ms all;
  border-top: 0px;
}

header .menu-item-design-default .sub-menu li:hover>.sub-menu {
  left: 100%;
  opacity: 1;
  visibility: visible;
} 


/* Header - Dropdown Container width */
/* 
#header .menu-item-design-container-width>ul.sub-menu {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: fit-content;
  max-height: 60vh;
  overflow: auto;
  padding: 30px;
  border-top: 1px solid rgb(var(--bg), 20%);
  gap: 20px 30px;
}

#header .menu-item-design-container-width .sub-menu {
  border-top: 0px;
  min-width: unset;
  padding: 0;
}

#header .menu-item-design-container-width li {
  padding: 0;
}

#header .menu-item-design-container-width li a {
  padding: 7px 0px;
  font-size: var(--size-small);
  font-weight: 400;
}

#header .menu-item-design-container-width>ul>li>a {
  font-size: 1rem;
  font-weight: 700;
  border-bottom: 1px solid rgb(var(--bg), 20%);
  margin-bottom: 15px;
  padding: 0 0 10px 0;
} */

/* Custome icon  */
.header-cart-icon {
  display: flex;
}

.nav-small .image-icon.header-cart-icon {
  height: unset;
  margin: unset;
  width: unset;
}

.header-cart-icon .cart-img-icon {
  display: none;
}

.header-search>a>.icon-search {
  display: none;
}

.header-search>a .icon-search {
  transition: unset;
}

.header-search>a svg {
  width: 22px;
  height: 22px;
}

.account-item i {
  display: none;
}

.nav-icon .icon-menu {
  display: none;
}

.mobile-nav .nav-icon > a {
	position: relative;
    height: var(--logo-sticky-h);
    background-color: rgb(var(--color-primary));
    padding: 0 20px;	
}

.nav-icon .qodef-m-lines {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 21px;
    padding: 0;
    margin: 0;
}

.nav-icon .qodef-m-line {
  display: block;
  height: 2px;
  width: 100%;
    background-color: rgb(var(--bg));
	transition: 320ms all;
}

.nav-icon .qodef-m-lines:hover .qodef-m-line {
    background-color: rgb(var(--bg), 75%);
}

/* Menu - Aside ------------ */
.off-canvas-left .mfp-content {
  background-color: var(--background);
  width: 100%;
  max-width: var(--drawer-width, 550px);
  --background: rgb(var(--bg));
  --on-background: rgb(var(--bg-opposite));
  --color-border: rgb(var(--color-border-1), 10%);
	--padding-x: 35px;
}

/* Menu - Level */
.mfp-content .nav.nav-sidebar .menu-item:hover {
	background-color: transparent!important;
}

.mfp-content .nav.nav-sidebar .menu-item > a {
	color: var(--on-background) !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    text-transform: capitalize !important;
    transition: 300ms all !important;
    opacity: 0.75 !important;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
	padding-left: 0!important;
	letter-spacing: 0!important;
}

.mfp-content .nav.nav-sidebar .menu-item > a:hover {
	color: rgb(var(--color-primary)) !important;
    opacity: 1 !important;
}

.mfp-content .nav.nav-sidebar .menu-item.current_page_item > a {
    opacity: 1 !important;	
}

.mfp-content .children a {
  text-transform: capitalize;
}

.mfp-content .children li {
  padding-left: 0;
}

.mfp-content .menu-item > .toggle {
	color: var(--on-background);
    opacity: 1;
    background-color: rgb(var(--bg-opposite), 5%);
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    width: 28px;
    height: 28px;
    margin: 0 0 0 12px;
    border-radius: 3px;
}

.mfp-content .menu-item > .toggle:hover {
    background-color: rgb(var(--bg-opposite), 10%);
}

.mfp-content .menu-item > .toggle i {
	line-height: 1;
}

.mfp-content .toggle {
	color: var(--on-background);
}

.mfp-content .nav.nav-sidebar li {
    padding: 0 var(--padding-x);
	position: relative;
}

.mfp-content .nav.nav-sidebar li + li:before {
	content: '';
	position: absolute;
	height: 1px;
	bottom: 0;
	left: var(--padding-x);
	right: var(--padding-x);
	background-color: var(--color-border);
}

.mfp-content .nav-sidebar li+li {
	border-top: 0!important;
}

.mfp-content a.glink {
	font-size: 17px;
}

.mfp-content a.glink.gt-current-lang {
    font-weight: normal;
    text-decoration: underline 1px;
    text-underline-offset: 2px;
}

.mfp-content .nav-sidebar > .html.custom:first-child {
    border-bottom: 1px solid var(--color-border-1);
    margin-bottom: 12px;	
}

.mfp-content .header-logo-link  {
	padding-left: 0!important;
}

.mfp-content .header-logo-link img {
    width: auto;
    height: 42px;
    display: block;
    object-fit: contain;
    margin-left: var(--padding-x);
    margin-top: 32px;
}

.mfp-content .nav-slide-header  {
    margin-bottom: 15px!important;	
}


.mfp-content .nav-slide-header  button.toggle {
	color: var(--on-background);
    opacity: 1;
    font-size: var(--size-3);
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 0;
    padding: 0;
    margin: 0;
    border: 0;
    min-height: unset;
}

.mfp-content .nav-slide-header  button.toggle:hover {
	color: rgb(var(--color-primary));
}

#main-menu li.header-search-form {
    padding: 5px var(--padding-x) 20px;
}

/* Canvas - Light box search */
/* #search-lightbox .searchform .flex-row {
  background-color: rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: white;
  padding: 5px 10px;
  border-radius: 100px;
}

#search-lightbox .submit-button:not(.is-outline) {
  font-size: 18px;
  color: white;
}

#search-lightbox .search-field {
  height: var(--input-height);
  color: white;
  font-size: 18px;
  padding: 0 10px;
}

#search-lightbox .search-field:placeholder {
  color: white;
}

#search-lightbox .autocomplete-suggestions {
  background: transparent;
  color: rgb(255 255 255 / 0.8);
  font-size: 1rem;
}

#search-lightbox .searchform span.amount {
  color: white;
}

body .mfp-bg.mfp-ready {
  opacity: 0.85;
} */

/* Canvas - Cart right */

/* .mfp-wrap .off-canvas-cart.mfp-content {
  max-width: 540px;
  width: 100%;
}

#cart-popup .is-divider {
  display: none;
}

#cart-popup .cart-popup-title h4 {
  font-size: var(--size-3);
  font-weight: 400;
}

#cart-popup .button:not(.checkout) {
  background-color: transparent;
  color: rgb(var(--color-primary));
  border: 1px solid rgb(var(--color-primary));
}

#cart-popup .button:not(.checkout):hover {
  background-color: rgb(var(--color-primary));
  color: rgb(var(--bg));
} */


/* Ux - Contact Aside ----- */
body .pt-popup-wrap {
	z-index: 1010; 
}

#asideContact {
	--btn-close-color: rgb(var(--bg-opposite));
    --btn-close-ofy: 20px;
}

#asideContact h6 {
    font-size: var(--size-3);
    text-transform: unset;
    opacity: 1;
    letter-spacing: 0;
    margin-bottom: 20px;	
}

#asideContact p {
    margin-bottom: 8px;
    line-height: 1.4;	
}

#asideContact p a {
	color: inherit;
}

#asideContact .pt-popup-content {
    justify-content: flex-end;
    align-items: flex-start;	
	margin: 0 0 0 auto;
    opacity: 1;
    transform: translateX(100%);	
}

#asideContact.show .pt-popup-content {
    transform: translateX(0);		
}

#asideContact .el-logo img {
    height: 50px;
    width: auto;
    margin: 0 auto 35px;
}

#asideContact .wrap {
    width: 100%;
    max-width: 500px;
    background: rgb(var(--bg));
    height: 100vh;
    padding: 90px 35px 50px;
    overflow-x: hidden;
    overflow-y: auto;
    pointer-events: all;	
	text-align: center;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: flex-start;	
}

.social-icons.text-center {
	justify-content: center;
}

.social-icons .icon.is-outline {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 13px;
    opacity: 1;
    color: rgb(var(--bg-opposite));
    width: 40px;
    height: 40px;
    border-width: 1px;	
}

.social-icons .icon.is-outline i {
	line-height: 1;
	top: 0;
}


/* Home - Hero ---- */
.home-hero {
	overflow: hidden;
}

.home-hero h1 {
    font-size: var(--size-8);
    line-height: 1.3;
    margin-bottom: 20px;	
}

.home-hero h6 {
    display: flex;
    width: fit-content;
    background-color: rgb(var(--color-secondary), 30%);
    font-size: var(--size-2);
    padding: 12px 20px;
    gap: 18px;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    text-transform: unset;
    opacity: 1;
    letter-spacing: 0;
    border-radius: 200px;
    margin-bottom: 18px;	
}

.home-hero h6:before,
.home-hero h6:after{
	content: '';
    display: block;
    width: 10px;
    height: 10px;
    background-color: currentColor;
    border-radius: 50%;
}

.home-hero p {
	font-size: var(--size-2);
}

.home-hero .img-cirle {
    transform: scale(1.1);
    transform-origin: top left;	
}

.home-hero .img-bottom {
    transform: scale(1.1);
    transform-origin: top left;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: 0;
}

.home-hero .img-top-wrap {
    position: absolute;
    top: -20px;
    left: 10%;
    width: 100%;
}


/* Home - title ---- */
.home-title h6 {
    display: block;
    width: fit-content;
    background-color: rgb(var(--color-primary));
    color: rgb(var(--bg));
    opacity: 1;
    font-weight: 400;
    font-size: 1rem;
    padding: 8px 18px 6px;
    border-radius: 200px;
    line-height: 1.3;
    margin-bottom: 18px;
}
.home-title.label-secondary h6 {
    background-color: rgb(var(--color-secondary));	
}

.home-title .text-center h6,
.text-center .home-title  h6 {
    margin-left: auto;
    margin-right: auto;	
}

.home-title h2 {
    font-size: var(--size-6);
    line-height: 1.3;
    margin-bottom: 18px;	
}


.home-title h3 {
    font-size: var(--size-5);
    line-height: 1.3;
    margin-bottom: 18px;	
}


/* Home - Feature ---- */
.home-feature .icon-box {
	position: relative;
    transition: 320ms all;
    padding: 50px 40px 70px;
    border-radius: var(--radius-lg);
	min-height: 100%;
}


.home-feature .icon-box:hover {
    background: rgb(var(--color-primary));
    color: white;
    box-shadow: 0 20px 30px rgb(var(--color-primary), 30%);	
}

.home-feature .icon-box:hover h6,
.home-feature .icon-box:hover svg {
	color: rgb(var(--bg));
}

.home-feature .icon-box:before {
	content: '\e145';
    font-family: var(--ff-material-outline);
    font-size: 40px;
    line-height: 1;
    display: flex;
    background-color: rgb(var(--bg));
    color: rgb(var(--color-secondary));
    border-radius: 50%;
    width: 58px;
    height: 58px;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%) scale(0);
    cursor: pointer;
    transition: 400ms all;
    transform-origin: center;
}

.home-feature .icon-box:hover:before {
	transform: translate(-50%, 50%) scale(1);
}

.home-feature .icon-box h6 {
	text-transform: unset;
    letter-spacing: 0;
    opacity: 1;
    font-weight: 600;
    font-size: var(--size-3);
    line-height: 1.3;
    margin-bottom: 18px;
    margin-top: 20px;	
	transition: 320ms all;
}

.home-feature .icon-box-img svg {
    padding-top: 0;
    color: rgb(var(--color-secondary));
	transition: 320ms all;
}


/* Home - About --- */
.home-about {
	overflow: hidden;
}

.home-about h5 {
    font-size: var(--size-2);
    line-height: 1.4;
    margin-bottom: 3px;	
}

.home-about p {
	font-size: var(--size-2);
}

.home-about .icon-box {
	flex-wrap: nowrap;
	align-items: center;
}

.home-about .icon-box p {
	font-size: var(--size-small);
}

.home-about .icon-box-img {
    width: 70px!important;
    height: 70px;
    background-color: rgb(var(--color-secondary), 8%);
    padding: 15px;
    border-radius: 50%;
    border: 1px dashed rgb(var(--color-secondary));	
}

.home-about .col-imgs > .col-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;	
}

.home-about .col-imgs .img {
	border-radius: var(--img-radius);
    overflow: hidden;
    margin: 0;
    background: linear-gradient(var(--bg-deg), rgb(var(--bg)) -10%, rgb(var(--color-primary)) 70%);
    padding: 7px;
    box-shadow: 0 0 20px rgb(var(--bg-opposite), 16%);
	
	--img-radius: 50% 50% 30px 50%;
	--img-inner-radius: 50% 50% 24px 50%;
	--bg-deg: -45deg;
}

.home-about .col-imgs .img-inner {
	border-radius: var(--img-inner-radius);
}

.home-about .col-imgs .img:nth-child(2) {
	--img-radius: 50% 50% 50% 30px;
	--img-inner-radius: 50% 50% 50% 24px;	
	--bg-deg: 45deg;
}

.home-about .col-imgs .img:nth-child(3) {
	--img-radius:  50% 30px 50% 50%;
	--img-inner-radius: 50% 24px 50%  50%;	
	--bg-deg: 235deg;
}

.home-about .col-imgs .img:nth-child(4) {
	--img-radius: 30px 50%  50% 50%;
	--img-inner-radius: 24px 50% 50%  50%;	
	--bg-deg: 135deg;
}


/* Home - Count ----- */
.home-count .wrap {
	background-color: rgb(var(--color-primary));
    border-radius: var(--radius-xxl);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 30px 0px;
	box-shadow: 0 0 20px rgb(var(--color-primary), 30%);
}

.home-count h6 {
	color: rgb(var(--bg));
    font-size: var(--size-6);
    letter-spacing: 0;
    text-transform: unset;
    opacity: 1;
    line-height: 1.1;
    margin-bottom: 6px;
    margin-top: 0;
    font-weight: 700;	
}

.home-count p {
    font-weight: 500;
    color: rgb(var(--bg));
    font-size: var(--size-2);	
}

.home-count .box-text {
    position: relative;
    padding: 18px 40px;	
	text-align: center;
}

.home-count .box-text + .box-text:before {
    content: '';
    position: absolute;
    left: 0;
    width: 1px;
    height: 100%;
    background-color: rgb(var(--bg), 30%);
    top: 50%;
    transform: translateY(-50%);
}

/* Home - Service ------ */
.home-service {
	overflow: hidden;
}

.home-service .tabbed-content .nav   {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 0 16px;
    overflow: auto;
}

.home-service .tabbed-content .tab {
	margin: 0;
    background-color: rgb(var(--bg));
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px dashed rgb(var(--color-secondary), 80%);
    transition: 320ms all;	
	min-width: max-content;
}

.home-service .nav .tab a {
    transition: 320ms all;
    background-color: rgb(var(--color-secondary), 10%);
    color: rgb(var(--color-text-title));
    font-size: var(--size-2);
    min-height: unset;
    line-height: 1.2;
    display: block;
    padding: 20px 26px;	
	width: max-content;
}

.home-service .nav  .tab:not(.active) a:hover {
	color: rgb(var(--color-primary));
}

.home-service .tab.active {
    border: 1px dashed rgb(var(--bg));
	background: rgb(var(--color-primary));
}

.home-service .tab.active a {
	color: rgb(var(--bg));
	background-color: rgb(var(--color-primary));	
}

.home-service .tab-panels {
    padding: 60px 40px 30px;	
}   

.home-service .panel h5 {
    font-size: var(--size-5);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;	
}

.home-service .panel .img-inner {
    border-radius: var(--radius-xl);	
}

.home-service .panel li {
    margin: 0;
    font-weight: 600;	
}

.home-service .panel li:before{
	width: 26px;
    content: '\e5ca';
    display: inline-flex;
    height: 26px;
    font-family: var(--ff-material-outline);
    background-color: rgb(var(--color-secondary));
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 9px;
    line-height: 1;
    vertical-align: top;
}

.home-service .panel ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;	
}

.home-service .img-bg {
	position: static;
}

.home-service .img-bg .img-inner {
	overflow: visible;
	position: static;
}

.home-service .img-bg img {
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 50%;
    width: 2000px;
    height: calc(100% - 30px);
    border-radius: var(--radius-xxl) var(--radius-xxl) 0 0;
    object-fit: cover;
    max-width: calc(100vw + 2px);
    transform: translateX(-50%);
}

/* Home - Why. choose ---- */

.home-why .img-inner {
	border-radius: var(--radius-lg);
    overflow: hidden;	
}

.home-why .icon-box {
    box-shadow: 0 0 20px rgb(var(--bg-opposite), 10%);
    padding: 40px;
    border-radius: var(--radius-md);
    background-color: rgb(var(--bg));
    width: 90%;
    margin-left: auto;
    border-right: 5px solid rgb(var(--color-secondary));	
	flex-wrap: nowrap;
	align-items: center;
}

.home-why .icon-box + .icon-box {
    margin-top: 22px;
}

.home-why .icon-box h6 {
    opacity: 1;
    text-transform: unset;
    letter-spacing: 0;
    font-size: var(--size-3);
    margin-bottom: 12px;	
}

.home-why .icon-box .icon-box-img {
	width: 61px;
    line-height: 1;
    height: 61px;
    background-color: rgb(var(--color-secondary));
    border-radius: 50%;
    padding: 12px;	
}

.home-why .icon-box:nth-child(even) {
    margin-right: auto;
    margin-left: 0;
    border-color: rgb(var(--color-primary));
}

.home-why .icon-box:nth-child(even) .icon-box-img {
    background-color: rgb(var(--color-primary));
}

.home-why .icon-box:nth-child(3) {
    border-color: rgb(var(--color-process));
}

.home-why .icon-box:nth-child(3) .icon-box-img {
    background-color: rgb(var(--color-process));
}

.home-why .icon-box svg {
	padding: 0;
}

.home-why .icon-box .icon-box-text {
    padding-left: 22px;
}


/* Home - Form ----- */
.home-form {
	overflow: hidden;
}

.home-form .img-left {
    height: 100%;
    min-height: 340px;	
}

.home-form .img-left .img-inner {
	position: static;
}

.home-form .img-left img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;	
	object-position: top;
}

.home-form .el-form-wrap {
    max-width: 720px;
    padding: 80px 80px 20px;	
}

.home-form h5 {
    font-size: var(--size-6);
    margin-bottom: 24px;
    line-height: 1.3;
}

.home-form .img-bg img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: -10;	
	object-position: center right;
}

.home-form .img-bg,
.home-form .img-bg .img-inner {
	position: static;
}

.home-form .from-wrap  .col {
	padding: 0 10px 20px;
}

.home-form  .wpcf7-form-control:not(.wpcf7-submit) {
    margin: 0;
    height: 50px;
    border: 0;
    box-shadow: unset;
    border-radius: var(--radius-sm);
    font-size: 16px;
    padding: 10px 18px;	
	background-color: rgb(var(--bg));
	outline: unset;
	width: 100%;
	text-align: left;
	min-width: 160px;
}



.home-form  .wpcf7-form-control::placeholder {
	font-size: 1rem;
}

.home-form  .wpcf7-submit {
	background-color: rgb(var(--color-secondary));
    text-transform: unset;
    letter-spacing: 0;
    font-size: var(--size-2);
    font-weight: 600;
    border-radius: var(--radius-md);
    padding: 15px 50px;
    transition: 320ms all;
    box-shadow: none;
    border: 0;
    line-height: 1.3;
}

.home-form  .wpcf7-submit:hover {
    box-shadow: none;
    background-color: rgb(var(--color-primary));
}


/* Ux - Portfolio Box ----- */
.portfolio-box.box-overlay  .image-cover {
	padding-top: 100%!important;
}

.portfolio-box.box  .box-text {
	padding: 0;
	text-shadow: none;
}

.portfolio-box .box-text-inner {
	display: flex;
    flex-wrap: wrap;
    padding: 0 40px 30px;	
}

.portfolio-box .portfolio-box-category {
	order: -1;
    opacity: 1;
    width: fit-content;
    display: block;
    font-size: var(--size-small);
    font-weight: 500;
    background-color: rgb(var(--color-primary));
    padding: 6px 14px;
    border-radius: 300px;
    margin-bottom: 14px;
    letter-spacing: 0;
    text-transform: capitalize;
    max-width: 50%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;	
}

.portfolio-box .portfolio-box-category span {
	opacity: 1;
}

.portfolio-box .portfolio-box-title {
	display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 1;
    text-transform: capitalize;
    letter-spacing: 0;
    font-size: var(--size-3);
    line-height: 1.4;	
}

.portfolio-box .overlay  {
    background: linear-gradient(0deg, rgb(var(--color-secondary), 90%), transparent 70%);
    transition: 320ms all;
}

.portfolio-box:hover .overlay  {
    background: linear-gradient(0deg, rgb(var(--color-primary), 90%), transparent 70%);	
}

.slider.slider-nav-circle .flickity-button {
	width: 50px!important;
	height: 50px!important;
	margin: 0;
}

.slider.slider-nav-circle:hover .flickity-button {
	opacity: 1;
}

.slider.slider-nav-circle .flickity-button-icon {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0;
    background-color: rgb(var(--bg));
    padding: 17px!important;	
	box-shadow: 0 0 15px rgb(var(--bg-opposite), 9%);
}

.slider.slider-nav-circle .flickity-button-icon:hover {
    background-color: rgb(var(--color-secondary));
}


.slider.slider-nav-circle .arrow {
	fill: rgb(var(--bg-opposite));
}

.slider.slider-nav-circle .flickity-button-icon:hover .arrow {
	fill: rgb(var(--bg));
}


/* Home - Process ---- */
.home-process {
	overflow: hidden;
}

.home-process .img-line {
    position: absolute;
    top: 10%;
    left: 50%;
    z-index: -10;
    width: 86% !important;
    transform: translateX(-50%);
}

.home-process .col-process > .col-inner {
	display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;	
}

.home-process .col-process h5 {
    font-size: var(--size-3);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;	
}

.home-process .col-process h6 {
	display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(var(--bg));
    opacity: 1;
    letter-spacing: 0;
    font-size: var(--size-2);
    width: 55px;
    height: 55px;
    background-color: rgb(var(--color-secondary));
    border-radius: 50%;
    outline: 7px solid rgb(var(--color-secondary), 20%);
    font-weight: 800;
    left: 18%;
    position: absolute;
    top: 3%;
    margin: 0;	
}

.home-process .el-thumn {
    width: 70% !important;
    background-color: rgb(var(--bg-opposite), 6%);
    padding: 12px;
    border-radius: 50%;
    margin: 0 auto 22px;	
}

.home-process .el-item {
	position: relative;
}


/* Home - */
.home-faq .flickity-viewport {
	overflow: visible;
}

.home-faq .col-testi > .col-inner:before,
.home-faq .col-testi > .col-inner:after {
	content: '';
    display: block;
    position: absolute;
    left: 3%;
    top: 5%;
    background-color: rgb(var(--bg));
    width: 94%;
    height: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 5px 20px rgb(var(--color-secondary), 8%);
    z-index: -10;
}

.home-faq .col-testi > .col-inner:after {
    left: 6%;
    top: 10%;
    width: 88%;
	z-index: -20;
}

.home-faq .col-testi > .col-inner {
    background-color: rgb(var(--bg));
    padding: 40px 60px;
    border-radius: var(--radius-lg);
    border-top: 3px solid rgb(var(--color-secondary));
    box-shadow: 0 5px 20px rgb(var(--color-secondary), 10%);	
	text-align: center;
	position: relative;
}

.home-faq .pt-star-rating {
	margin-bottom: 14px;
    --start-active: rgb(var(--color-primary));	
}

.home-faq .col-testi p {
    font-size: var(--size-2);	
}

.home-faq .col-testi h5 {
    text-transform: capitalize;
    letter-spacing: 0;
    font-size: var(--size-small);
    line-height: 1.5;
    margin-bottom: 4px;	
}

.home-faq .col-testi h6 {
    font-size: var(--size-small);
    text-transform: unset;
    letter-spacing: 0;
    opacity: 1;
    font-weight: normal;
    line-height: 1.5;
    margin: 0;
    color: rgb(var(--color-text-title), 70%);	
}

.home-faq .col-testi .icon-box  {
    align-items: center;
    width: fit-content;
    margin: 20px auto 0;	
	flex-wrap: nowrap;
}

.home-faq .col-testi img {
    padding-top: 0;
    border-radius: 50%;	
}

.ux-faq .accordion-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: rgb(var(--bg));
    border: 0;
    box-shadow: 0 0 18px rgb(var(--bg-opposite), 6%);
    padding: 14px 14px 14px 30px;
}

.ux-faq .accordion-item+.accordion-item {
  margin-top: 16px;
}

.ux-faq .accordion-inner {
  padding: 12px 0 10px;
}

.ux-faq .accordion-inner>*:last-child {
  margin-bottom: 0;
}

.ux-faq .accordion-title {
    background: transparent;
    padding: 0;
    border: 0;
    color: rgb(var(--color-text-title));
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: space-between;
    font-size: var(--size-2);
    line-height: 1.5;
    align-items: center;
    font-weight: 600;
}

.ux-faq .accordion-title .toggle {
	position: relative;
    left: unset;
    right: unset;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 0;
    border-radius: 50%;
    min-height: unset;
    transform: unset;
    opacity: 1;
    order: 5;
    top: unset;
    background-color: rgb(var(--color-primary), 15%);

}


.ux-faq .accordion-title.active  .toggle {
	background-color: rgb(var(--color-secondary), 15%);
}

.ux-faq .accordion-title .toggle:before {
	content: '\e145';
    font-family: var(--ff-material-outline);
    opacity: 1;
    color: rgb(var(--color-primary));
    line-height: 1;
    font-size: 23px;
    font-weight: 500;
}

.ux-faq .accordion-title.active .toggle:before {
	content: '\e5cd';
	color: rgb(var(--color-secondary));
}

.ux-faq .accordion-title i {
  display: none;
}

.ux-faq .accordion-title span {
  flex: 1;
} 


/* Ux - Post Box ---- */
.box-blog-post .post-title {
  margin-bottom: 15px;
}

.box-blog-post .is-divider {
	display: none;
}

.box-blog-post .post-title a {
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    font-weight: 500;
    font-size: var(--size-3);
    margin: 0;
}

.box-blog-post .box-text {
    position: relative;
    padding: 30px 26px ;	
}

.box-blog-post {
    background-color: rgb(var(--bg));
    box-shadow: 0 5px 10px rgb(var(--bg-opposite), 6%);
    border-radius: var(--radius-md);
    overflow: hidden;	
}

.box-blog-post .image-cover {
	padding-top: var(--blog-img-ratio) !important;	
}

.box-blog-post.box .button   {
    padding: 0;
    line-height: 1.4;
    min-height: unset;
    text-transform: unset;
    opacity: 1;
    color: rgb(var(--color-text-title));
    font-weight: 600;
    font-size: var(--size-small);
    margin: 16px 0 0;
    transition: 320ms all;
}

.box-blog-post.box:hover .button   {
    color: rgb(var(--color-primary));	
}


.box-blog-post .post-meta {
	opacity: 1;
    font-size: var(--size-small);
    color: rgb(var(--bg));
    background-color: rgb(var(--color-primary));
    width: fit-content;
    font-weight: 500;
    letter-spacing: 0;
    padding: 5px 13px;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    position: absolute;
    top: 0;
    right: 0;
    transform: translateY(-50%);
}

.box-blog-post .cat-label {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: block;
  width: 100%;
  font-size: var(--size-small-a);
  opacity: 1;
  font-weight: normal;
  text-transform: unset;
  margin-bottom: 12px;
}

.box-blog-post .from_the_blog_excerpt {
    font-size: 1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


.box-blog-post.box-vertical {
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
  align-items: stretch;
}


/* Archive - Post ---Aside */
aside.widget .is-divider {
	height: 3px;
    max-width: unset;
    width: 34px;
    background-color: rgb(var(--color-primary));
    margin: 16px 0 22px;
}

aside.widget .widget-title {
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 1;
    text-transform: unset;
    letter-spacing: 0;
    color: rgb(var(--color-text-title));
    font-size: var(--size-3);
    margin: 0;	
}

aside.widget li+li {
  border-top: 0px;
}

aside.widget .cat-item {
	font-size: 1rem;
    font-weight: 500;
    color: rgb(var(--color-text-title));
    line-height: 1.5;
    margin: 0;
    min-height: unset;
    display: flex;
    flex-wrap: wrap;
    gap: 0 7px;
}

aside.widget .cat-item:hover {
    color: rgb(var(--color-primary));
}

aside.widget ul:not(.children) >.cat-item + .cat-item {
    border-top: 1px dashed rgb(var(--color-border-1), 10%);
	margin-top: 10px;
	padding-top: 10px;
}

aside.widget .cat-item a {
    font-size: inherit;
    color: inherit;
    font-weight: inherit;
    line-height: inherit;
	padding: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
	flex: 1;
}


aside.widget .cat-item .toggle {
	display: none;
}

aside.widget .cat-item .children {
    margin: 0;
    border-left: 0;
    padding: 0 0 0 18px;
    display: block !important;	
}

aside.widget .children .cat-item {
	margin-top: 10px;
}

.blog-wrapper.blog-archive {
	padding-top: 0;
	background-color: rgb(var(--bg-2nd));
}

aside.widget {
	background-color: rgb(var(--bg));
    padding: 36px 30px;
    border-radius: var(--radius-md);
    box-shadow: 0 11px 30px rgb(var(--bg-opposite), 5%);	
}

aside.widget .recent-blog-posts .badge {
    height: 80px;
    width: 132px;	
}

aside.widget .recent-blog-posts {
	align-items: center !important;	
	padding: 0
}

aside.widget .recent-blog-posts .badge-inner {
	background-position: center;	
}

aside.widget .recent-blog-posts .post_comments {
	display: none;
}

aside.widget .recent-blog-posts a {
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    overflow: hidden;
    opacity: 1;
    color: rgb(var(--color-text-title));
    line-height: 1.5;
    font-weight: 500;
    font-size: 1rem;	
	transition: 320ms all;
}

aside.widget .recent-blog-posts a:hover {
    color: rgb(var(--color-primary));
}

aside.widget .recent-blog-posts-li + .recent-blog-posts-li {
    border-top: 1px solid rgb(var(--color-border-1), 10%);
    padding-top: 22px;
    margin-top: 22px;	
}

aside.widget .tagcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: flex-start;	
}

aside.widget .tag-cloud-link {
	font-size: var(--size-small)!important;
    font-weight: 500;
    border: 1px solid rgb(var(--color-secondary));
    color: rgb(var(--color-secondary));
    padding: 5px 12px;
    transition: 320ms all;	
}

aside.widget .tag-cloud-link:hover {
    border: 1px solid rgb(var(--color-primary));
    color: rgb(var(--color-primary));
}

.post-archive-title .page-title {
	font-size: var(--size-6);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 14px;	
}

#theme-breadcrumb {
    font-weight: 600;
    letter-spacing: 0;
    padding: 0;
    font-size: var(--size-2);
    text-transform: uppercase !important;	
}

#theme-breadcrumb .current {
	color: rgb(var(--color-primary))
}

#theme-breadcrumb span {
	font-weight: inherit;
}

#theme-breadcrumb a {
	font-weight: inherit;
	transition: 320ms color;
}

#theme-breadcrumb a:hover {
	opacity: 0.8;
}


/* UX  - Slider infinity */
/* .section-slider-wrap {
  --item-w: calc(100% / 3);
  --item-p: 10px 15px 30px;
}
#wrapper .slider-infinity .slider-item,
#wrapper .slider-infinity .post-item {
  opacity: 1;
  max-width: var(--item-w)!important;
  padding: var(--item-p);
	min-height: 100%;
} */

/* Ux - Content Loadmore --- ---- */
/* .content-box-loadmore {
  position: relative;
  z-index: 20;
  overflow: hidden;
}

.pt_content_btn_loadmore .btn-loadmore {
  background-color: rgb(var(--bg));
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid var(--fs-color-primary);
  padding: 5px 20px;
  border-radius: var(--btn-radus);
  color: var(--fs-color-primary);
  transition: 220ms all;
  cursor: pointer;
}

.pt_content_btn_loadmore .btn-loadmore:hover {
  background-color: var(--fs-color-primary);
  color: white;
}

.pt_content_btn_loadmore {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, rgb(var(--bg)) 10%, transparent);
  padding: 20px 20px 5px;
} */

/* Ux - Pagination */
body .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px 10px;
  margin-top: 25px;
  margin-bottom: 25px;
}

body .page-numbers>li {
  margin: 0;
}

.page-numbers li .page-number {
  color: currentColor;
  min-width: 37px;
  min-height: 37px;
  line-height: 1;
  display: flex;
  height: unset;
  justify-content: center;
  align-items: center;
  border: 0;
  background-color: rgb(var(--bg-2nd));
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 5px;
}


.page-numbers li .page-number.current {
  background-color: rgb(var(--color-primary));
  color: rgb(var(--bg));
}

.page-numbers li .page-number:hover {
  color: rgb(var(--bg));
}

/* Custom scroll bar */
/* .wrap-scroll-bar::-webkit-scrollbar {
  height: 4px;
  width: 4px;
  display: block;
  -webkit-appearance: none;
}

.wrap-scroll-bar::-webkit-scrollbar-thumb {
  background: rgb(var(--color-primary)) !important;
  border-radius: 99px;
}

.wrap-scroll-bar::-webkit-scrollbar-track {
  margin-left: 20vw;
  margin-right: 20vw;
  background: #ececec;
} */

/* Plugin - Easy Table Content */
/* div#ez-toc-container {
  max-width: 600px;
  padding: 20px;
  margin: 15px 0 30px;
}

div#ez-toc-container .ez-toc-title {
  font-size: var(--size-3, 1.4rem);
  font-weight: bold;
}

div#ez-toc-container a {
  line-height: 1.5;
  margin-bottom: 9px;
  font-size: 0.92rem;
}

div#ez-toc-container .ez-toc-heading-level-2 > a {
  font-weight: bold;
  font-size: 1rem;
} */


/* Ux - Video  Button ------- */
/* .col-video .video-button-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.btn-video-wave .button.open-video {
  margin: 0;
  border: 0;
  opacity: 1;
  background-color: rgb(var(--bg));
  color: rgb(var(--color-primary));
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 30px rgb(255 255 255 / 80%);
  position: relative;
  z-index: 10;
  width: 70px;
  height: 70px;
}

.btn-video-wave .button.open-video:after {
	content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: -5;
    background-color: rgb(var(--bg));
}

.btn-video-wave .button.open-video:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  animation: shadown-scale 1.1s infinite;
  border-radius: 50%;
  z-index: -1;
  box-shadow: 0 0 16px #fff;
}


@keyframes shadown-scale {
  0% {
    transform: scale(0.9);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 30px transparent;
  }

  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 transparent;
  }
} */

.sketch-loading {
  background: var(--sketch-loading-bg);
  background-size: var(--sketch-loading-bg-size);
  animation: var(--sketch-loading-animetion);
}

@keyframes sketchloading {
  to {
    background-position-x: -200%;
  }
}

.loader {
  width: 48px;
  height: 48px;
  border: 5px solid #FFF;
  border-bottom-color: rgb(var(--color-primary));
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Single Post -------------- */
.blog-wrapper.blog-single {
	padding-top: 0;	
}

.entry-header .is-divider {
  display: none;
}

.entry-header .entry-header-text {
	padding: 0;
}

.entry-header .entry-category {
    margin-bottom: 5px;
    font-size: var(--size-3);
    line-height: 1.4;
    color: rgb(var(--color-primary));
    letter-spacing: 0;
    opacity: 1;
}

.entry-header .entry-category a,
.entry-header .entry-meta a {
  text-transform: capitalize;
  font-weight: inherit;
  color: inherit;
}

.entry-header .entry-category a:hover,
.entry-header .entry-meta a:hover {
	color: rgb(var(--color-secondary));
}

.entry-header .entry-title {
  font-size: var(--size-5);
  font-weight: 500;
  color: rgb(var(--color-text-title));
  line-height: 1.3;
  margin-bottom: 14px;
}

.entry-header .entry-meta {
  font-size: 1rem;
  text-transform: unset;
  letter-spacing: 0;
  color: rgb(var(--color-text-sub));
}

.blog-share .is-divider {
  display: none;
}

.blog-share .button.icon {
  margin-left: 0;
  margin-right: 0;
  min-width: 36px;
  min-height: 36px;
  padding-left: 0.6em;
  padding-right: 0.6em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  border-width: 1px;

}

.blog-share .social-icons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px 15px;
  flex-wrap: wrap;
  margin: 40px 0 0;
}


.single-post .entry-content {
  padding-bottom: 0;
}

.single-post .post {
  margin-bottom: 0;
}

.single-blog_release h3 {
	font-size: var(--size-5);
    line-height: 1.3;
    margin-bottom: 20px;
    margin-top: 1rem;
}


/* Footer - Email ---- */
.footer-email form {
	margin: 0;
}

.footer-email h6 {
    text-transform: unset;
    letter-spacing: 0;
    opacity: 1;
    font-size: var(--size-3);
    line-height: 1.4;
    margin-bottom: 5px;	
}

.footer-email p{
	font-size: var(--size-2);
    line-height: 1.4;	
}

.footer-email .text {
    border-left: 3px solid rgb(var(--color-primary));
    padding-left: calc(var(--stack-gap) - 5px);	
}

.footer-email .wpcf7-form-control-wrap {
	flex: 1;
}

.form-one-line {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    align-items: center;	
}

.form-one-line .wpcf7-form-control:not(.wpcf7-submit) {
    margin: 0;
    background: rgb(var(--bg));
    font-size: 16px;
    height: 45px;
    border-radius: var(--radius-sm);
    box-shadow: none;
    padding: 5px 18px;	
}

.form-one-line .wpcf7-submit {
	margin: 0;
    font-size: 1rem;
    text-transform: unset;
    font-weight: 500;
    letter-spacing: 0;
    height: 45px;
    border-radius: var(--radius-sm);
    transition: 320ms all;
    padding: 3px 36px;
    min-height: unset;
    line-height: 1.3;
    display: flex;
    align-items: center;	
    background-color: rgb(var(--color-primary));
}

.form-one-line .wpcf7-submit:hover {
    background-color: rgb(var(--color-secondary));	
}

.form-one-line  .wpcf7-not-valid-tip {
    position: absolute;
    top: 100%;	
}


/* Footer - Email ---- */
.footer-info {
	font-size: 14px;
}

.footer-info p {
	line-height: 1.5;
	margin-bottom: 14px;
}

.footer-info h4 {
    font-size: var(--size-2);
    line-height: 1.5;
    margin-bottom: 20px;	
}

.footer-info .ux-menu-link__link  {
    padding: 0;
    min-height: unset;
    line-height: 1.5;
    margin-bottom: 14px;
    display: flex;
    gap: 7px;
    align-items: flex-start;
    font-weight: 500;	
	color: rgb(var(--color-text-title));
}

.footer-info .ux-menu-link__link:hover  {
    color: rgb(var(--color-primary));
}

.footer-info .ux-menu-link__link:before  {
    content: '\e941';
    font-family: var(--ff-material-outline);
    line-height: 18px;
    font-size: 20px;
    color: rgb(var(--color-secondary));
}

.footer-info .ux-menu-link__link:hover:before  {
    color: rgb(var(--color-primary));
}

.footer-info .icon-box-img  {
    width: 31px !important;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(var(--color-secondary), 10%);
    padding: 8px 7px 7px;
    border: 1px solid rgb(var(--color-secondary));
    color: rgb(var(--color-secondary));
    border-radius: 50%;
    line-height: 1;	
}

.footer-info .icon-box-img  svg{
	padding: 0;
	line-height: 1;
}

.footer-info .icon-box {
    align-items: center;
    flex-wrap: nowrap;	
	font-weight: 500;
}

.footer-info .el-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;	
}

.footer-info .el-contact > * + * {
	border-top: 1px solid rgb(var(--color-border-1), 10%);
	padding-top: 15px;
}

footer .absolute-footer {
	display: none;
}







/* Responsive ---------------- */
@media only screen and (min-width: 1025px) and (max-width: 1600px) {}

@media only screen and (max-width: 1024px) {
	.header .social-icons {
		display: none;
	}
}

@media only screen and (max-width: 849px) {
  :root {
	  --logo-sticky-h: 66px;
	  --size-ratio: 1.175;
			  
    font-size: 15px;
  }

  .container-width,
  .ubermenu-nav,
  .container,
  .row:not(.row-full-width) {
    max-width: 650px !important;
  }
	
	#wrapper .btn.icon-rounded:not(.is-link, .is-underline) {
		padding: 6px 6px 6px 20px;
	}
	#wrapper .btn:not(.is-link, .is-underline) {
		padding: 10px 22px;
	}
	
	.header-popup-btn {
		background-color: transparent;
		border-left: 1px solid rgb(var(--bg), 15%);
			width: fit-content;
        margin-left: auto;
	}
	.header-popup-btn:hover {
		background-color: rgb(var(--bg), 8%);
        color: rgb(var(--bg));
	}
	.mobile-nav.nav > li  {
		margin: 0;
	}
	header .header-main {
        height: var(--logo-sticky-h);
    }
	header .header.show-on-scroll,header .stuck .header-main {
		height: var(--logo-sticky-h) !important;
	}
	
	.home-hero .img-bottom,
	.home-hero .img-cirle {
		transform: unset; 
	}
	.home-hero .img-top-wrap {
		left: 10%;
		width: 80%;
	}

	.home-feature .icon-box {
		padding: 32px 40px 32px; 
		background-color: rgb(var(--bg-2nd));
	}
	.home-feature .icon-box:before {
		font-size: 30px;
		width: 40px;
		height: 40px; 
	}
	.home-feature .icon-box-img {
		width: 70px!important;
	}
	
	.home-count .wrap {
		grid-template-columns: repeat(2, 1fr);
		padding: 0;
	}
	.home-count .box-text + .box-text:before {
		display: none;
	}
	.home-count .box-text {
		padding: 25px 20px;
        border: 1px solid rgb(var(--bg), 20%);
        border-top: 0;
        border-right: 0;
	}
	
	.home-service .tabbed-content .nav {
		justify-content: flex-start;
	} 
	.home-service .tab-panels {
		padding: 40px 20px 20px;
	}
	
	.home-form .el-form-wrap {
		margin: auto;
		padding: 40px 40px 0;
	}
	
	.home-process .img-line {
		display: none;
	}
	.home-process .col-process > .col-inner {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.ux-faq .accordion-item {
		padding: 14px 14px 14px 20px;
	}
	.home-faq .col-testi > .col-inner {
		padding: 35px 30px; 
	}

 
	
	
}

@media only screen and (max-width: 549px) {
	.home-service .panel ul {
		grid-template-columns:  1fr;
	}
	
	.home-title p br {
		display: none;
	}
	.home-why .icon-box {
		width: 100%;
		flex-wrap: wrap;
		padding: 32px;
	}
	.home-why .icon-box .icon-box-text {
		flex: 1 1 100%;
		padding-left: 0;
		padding-top: 22px;
	}
	
	.home-process .col-process > .col-inner {
		grid-template-columns: repeat(1, 1fr);
	}
	.home-process .el-thumn {
		width: 55% !important; 
		margin: 0 auto 16px;
	}
	.home-process .col-process h6 {
		left: 24%;
	}
	
	.footer-email .text {
		border-left: 0;
		padding-left: 0;
	}
	.form-one-line .wpcf7-submit {
		padding: 3px 24px; 
	}
	


	
  /* Small space product/post-col with class .row-loop */
  body .row-loop:not(.row-collapse) {
    --m-x: 8px;
    padding-left: var(--m-x);
  }

  body .row .row-loop:not(.row-collapse) {
    margin-left: calc(var(--m-x) * -0.5);
    margin-right: calc(var(--m-x) * -0.5);
    padding-left: 0;
  }

  .row-loop:not(.row-collapse) .col {
    padding-left: var(--m-x);
    padding-right: var(--m-x);
  }
}