/*
Theme Name: Hinza
Author URI: https://hinza.agency
Version: 1.0
*/
/* ---------- add font -----------------*/


:root {
    --primary-color: #d2a272;
    --secondary-color: #4B4B4A;
    --accent-color: #917552;
    --text-color: #7a7a7a;
    --text-color-dark: #000000;
    --text-color-light: #e6e6e6;
    --border-color: #e6e6e6;
    --border-color-dark: #b7b7b7;
    --background-color: #f1f1f1;
    --text-font-family: Roboto;
    --digits-font-family: var(--text-font-family);
}

input,
input::-webkit-input-placeholder {
    font-size: 14px !important;
    font-family: var(--text-font-family) !important;
}

body * {
    font-size: 14px;
    font-family: var(--text-font-family);
    font-weight: 400;
    line-height: 1.8;
}

/* ------------- reset css ----------------*/
*, *::before, *::after {
    box-sizing: border-box;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.5s;
}

a:hover {
    color: var(--text-color-dark);
}

html {
    scroll-behaviour: smooth;
}

body {
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 0;
    background: #000;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

h1 {
    font-size: 20px;
}

h2 {
    font-size: 19px;
}

h3 {
    font-size: 18px;
}

h4 {
    font-size: 17px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 15px;
}

ul {
    list-style-type: none;
    padding: 0;
}

/* -------------- General / Start ------------- */
.button,
.btn .elementor-button {
    position: relative;
    background: var(--primary-color) !important;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 0 20px;
    line-height: 48px;
    height: auto;
    display: inline-block;
    outline: none;
    cursor: pointer;
    overflow: hidden;
    border: 1px solid var(--primary-color);
    border-radius: 25px;
    transition: all .2s ease-in-out;
	display:inline-flex;
}

.btn .elementor-button * {
    font-size: 14px;
    line-height: 48px;
    font-weight: bold;
}

.button:hover,
.btn .elementor-button:hover {
    color: var(--primary-color);
    background: var(--text-color-dark);
}

.btn-border .elementor-button {
    position: relative;
    background: transparent !important;
    color: var(--text-color-dark);
    font-size: 14px;
    font-weight: bold;
    padding: 0 20px;
    line-height: 48px;
    height: auto;
    display: inline-block;
    outline: none;
    cursor: pointer;
    overflow: hidden;
    border: 1px solid var(--text-color-dark);
    border-radius: 25px;
    transition: all .2s ease-in-out;
}

.btn-border .elementor-button * {
    font-size: 14px;
    line-height: 48px;
    font-weight: bold;
}

.btn-border .elementor-button svg{
    fill:var(--text-color-dark)
}

.btn-border .elementor-button:hover {
    color: var(--primary-color);
    background: var(--text-color-dark);
}
.btn-border .elementor-button:hover svg{
    fill: var(--primary-color);
}

.btn-advanced .elementor-icon-box-icon * {
    font-size: inherit;
}

.btn-advanced .elementor-icon-box-icon {
    font-size: 42px;
}

.btn-advanced .elementor-icon-box-icon svg path {
    fill: var(--primary-color) !important
}

.btn-advanced .elementor-icon-box-content .elementor-icon-box-title,
.btn-advanced .elementor-icon-box-content .elementor-icon-box-title * {
    font-size: 16px;
    font-weight: bold;
    color: var(--text-color);
    line-height: 1;
}

.btn-advanced .elementor-icon-box-content .elementor-icon-box-description {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-color-dark);
}


.btn-advanced-filled {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 5px 30px 5px 15px;
    border-radius: 35px;
}

.btn-advanced-filled .elementor-icon-box-icon {
    font-size: 24px;
    width: 44px;
    height: 44px;
    padding: 10px;
    text-align: center;
    background: #fff;
    border-radius: 50%;
}

.btn-advanced-filled .elementor-icon-box-icon * {
    font-size: inherit;
}

.btn-advanced-filled .elementor-icon-box-icon svg * {
    fill: #fff;
    stroke: var(--primary-color);
    stroke-width: 30px;
}

.btn-advanced-filled .elementor-icon-box-content .elementor-icon-box-title,
.btn-advanced-filled .elementor-icon-box-content .elementor-icon-box-title * {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

.btn-advanced-filled .elementor-icon-box-content .elementor-icon-box-description {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}

.btn-advanced-filled:hover {
    background: #fff;
}

.btn-advanced-filled:hover .elementor-icon-box-icon {
    background: var(--primary-color);
}

.btn-advanced-filled:hover .elementor-icon-box-content .elementor-icon-box-title,
.btn-advanced-filled:hover .elementor-icon-box-content .elementor-icon-box-title * {
    color: var(--text-color-dark);
}

.btn-advanced-filled:hover .elementor-icon-box-content .elementor-icon-box-description {
    color: var(--text-color);
}


.section {
    padding: 80px 15px;
}

.section .section-subtitle .elementor-heading-title {
    font-family: var(--text-font-family);
    color: var(--primary-color);
    font-size: 14px;
    line-height: 30px;
    font-weight: bold;
    position: relative;
    display: flex;
    gap: 10px;
    align-items: center;
}

.section .section-subtitle .elementor-heading-title:before {
    content: '';
    width: 15px;
    height: 2px;
    background: var(--primary-color);
    display: inline-block;
    vertical-align: middle;
}

.section .section-title .elementor-heading-title {
    font-family: var(--text-font-family);
    font-size: 48px;
    line-height: 1.1;
    font-weight: bold;
    color: var(--text-color-dark);
    position: relative;
}

.section .section-title.light .elementor-heading-title {
    color: #fff;
}

.section .subsection-title .elementor-heading-title {
    font-family: var(--text-font-family);
    font-size: 18px;
    line-height: 30px;
    font-weight: bold;
    color: var(--secondary-color);
    position: relative;
}

p {
    margin: 0;
}

.section .desc p:not(:last-child) {
    margin-bottom: 15px;
}

.section .desc * {
    font-size: 16px;
    font-family: var(--text-font-family);
    text-align: justify;
    color: var(--text-color);
}

.section .desc.light * {
    color: #fff;
}

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

.section .desc ul,
.section .desc ol {
    padding-right: 20px;
    margin-right: 0;
}

.section .desc ul li:not(:last-child),
.section .desc ol li:not(:last-child) {
    margin-bottom: 5px;
}

.section .desc ul {
    list-style: disc;
}

.section .desc ol {
    list-style: indic;
}

.absolute-link {
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 30px;
    right: 0;
    z-index: 1;
    opacity: 0.5;
}

.swiper {
    position: relative;
}

.swiper .swiper-pagination {
    z-index: 1 !important;
}

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

.form-control {
    padding: 0 15px;
    line-height: 40px;
    border: 1px solid var(--border-color-dark);
    width: 100%;
    border-radius: 5px;
    font-size: 14px;
    font-family: var(--text-font-family);
    color: var(--secondary-color);
    text-align: right;
}

textarea.form-control {
    padding: 10px 15px;
    line-height: 26px;
    height: 98px;
}

label.resume-upload {
    display: inline-block;
    text-align: center;
    width: 92px;
    padding: 0 5px;
    line-height: 33px;
    border-radius: 5px;
    border: 1px solid var(--text-color-dark);
    background: #fff;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.wpcf7-form-control-wrap[data-name="resume"] {
    margin-right: -92px;
}

.wpcf7-spinner {
    position: absolute;
    transform: translateX(250%);
    margin: 0;
}

@media (max-width: 991.98px) {
    .section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .section .section-title .elementor-heading-title {
        font-size: 26px;
    }
}

@media (max-width: 767.98px) {
    .section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .section .section-title .elementor-heading-title {
        font-size: 22px;
        margin-bottom: 30px;
    }
}

@media (max-width: 575.98px) {
    .section {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .section .section-title .elementor-heading-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

/* --------------General/End------------- */
/* -----------Header /Start--------------- */

.header .logo {
    width: 150px;
	transition: transform 0.4s ease, height 0.4s ease;
}

.header{
  position: fixed !important;
  top: 0;
  width: 100%;
  background: white;
  transition: all 0.3s ease;
  z-index: 1000;
}

.btn-border{
	    justify-content: center;
    align-items: center;
    display: flex;
}
.btn-border.btn-tel .elementor-button{
	background: var(--primary-color) !important;
    border: 1px solid var(--primary-color);
	color:#000;
	padding-left:10px;
}
.btn-border.btn-tel:hover .elementor-button {
		background: transparent !important;
    border: 1px solid #000;
}
.btn-border.btn-tel .elementor-button .elementor-button-content-wrapper{
	    align-items: center;
}
.btn-border.btn-tel .elementor-button .elementor-button-content-wrapper .elementor-button-icon{
	font-size: 21px;
    width: 36px;
    height: 36px;
    padding: 10px;
    text-align: center;
    background: #fff;
    border-radius: 50%;
}
.btn-border.btn-tel:hover .elementor-button .elementor-button-content-wrapper .elementor-button-icon{
	  background:  var(--primary-color);
}
.btn-border.btn-tel:hover .elementor-button .elementor-button-content-wrapper .elementor-button-icon svg{
	fill:#fff ;
}
.header.sticky {
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
	height:70px;
}
.header.sticky .logo {
 transform: scale(0.7);
}
/* -----------Header /End--------------- */
/* -----------Footer /Start--------------- */


/* -----------Footer /End--------------- */
/* ----------- Home page /Start--------------- */
.hero-section {
}

.hero-section .section-title .elementor-heading-title {
    font-size: 80px;
}

.hero-section .desc,
.hero-section .desc * {
    color: var(--text-color-dark);
}

.hero-section .hero-img {
    aspect-ratio: 1/1;
    width: 500px;
    max-width: 100%;
    border: 15px solid var(--primary-color);
    border-radius: 50%;
    overflow: hidden;
}

.hero-section .hero-img img {
    width: 100%;
    height: 100%;
    max-width: inherit !important;
    max-height: inherit !important;
    object-fit: cover;
}

.section-statistics {
    background: var(--secondary-color);
}

.section-statistics .section-title .elementor-heading-title {
    color: #fff;
}

.section-statistics .testimonial {
}

.section-statistics .testimonial .test-img {
    width: 115px;
    aspect-ratio: 1/1;
    overflow: hidden;
    border: 5px solid var(--primary-color);
    border-radius: 50%;
}

.section-statistics .testimonial .test-img img {
    width: 100%;
    height: 100%;
    max-width: inherit !important;
    max-height: inherit !important;
    object-fit: cover;
}

.section-statistics .testimonial .desc * {
    color: var(--text-color-light);
}

.section-statistics .testimonial .desc p {
    margin: 0;
}

.section-statistics .testimonial .test-title .elementor-heading-title {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
}


.section-appliance .service-item {
    flex: 0 0 25%;
    max-width: calc(25% - 23px);
    gap: 0 !important;;
    position: relative;
    padding: 0;
    border-radius: 6px;
    overflow: hidden;
    filter: drop-shadow(4px 4px 8px #00000026);
}

.section-appliance .service-item .elementor-widget-image-box {
    clip-path: polygon(100% 0, 100% 81%, 76% 100%, 0 100%, 0 0);
    background-color: #fff;
    padding-bottom: 90px;
    height: 100%;
    border-radius: 6px;
}

.section-appliance .service-item .elementor-image-box-img {
    width: 100% !important;
    aspect-ratio: 4/3;
    display: block;
}

.section-appliance .service-item .elementor-image-box-img a {
    display: block;
    width: 100%;
    height: 100%;
}

.section-appliance .service-item .elementor-image-box-img img {
    width: 100%;
    height: 100%;
    max-width: inherit !important;
    max-height: inherit !important;
    object-fit: cover;
}

.section-appliance .service-item .elementor-image-box-content {
    padding: 20px 25px 0;
}

.section-appliance .service-item .elementor-image-box-content .elementor-image-box-title {
    margin: 0 0 10px;
}

.section-appliance .service-item .elementor-image-box-content .elementor-image-box-title,
.section-appliance .service-item .elementor-image-box-content .elementor-image-box-title a {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-color-dark);
}

.section-appliance .service-item .elementor-image-box-content .elementor-image-box-description {
    font-size: 15px;
    color: var(--text-color);
}

.section-appliance .service-item .btn {
    position: absolute;
    left: 25px;
    bottom: 10px;
    height: 48px;
}

.section-appliance .service-item .btn .elementor-button {
    padding: 0;
    color: var(--primary-color);
    fill: var(--primary-color);
    background: transparent !important;
    border: 0;
}

.section-appliance .service-item .btn:hover .elementor-button {
    text-decoration: underline;
}

.section-appliance .service-item .icon .elementor-icon {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    padding: 10px;
    background: var(--secondary-color);
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 60px;
}

.section-appliance .service-item .icon .elementor-icon svg {
    font-size: inherit;
}


.section-cta {
    background: var(--primary-color);
    padding-top: 40px;
    padding-bottom: 40px;
}

.section-cta.dark {
    background: var(--secondary-color);
}

.section-cta .section-title .elementor-heading-title {
    color: #fff;
}

.section-cta .desc,
.section-cta .desc * {
    color: #fff;
}

.section-cta .desc p {
    margin-bottom: 0;
}

.section-cta .btn .elementor-button {
    background: var(--secondary-color) !important;
	    padding-left: 10px;
}
.section-cta .btn .elementor-button .elementor-button-content-wrapper{
	    align-items: center;
}
.section-cta .btn .elementor-button .elementor-button-content-wrapper .elementor-button-icon{
	font-size: 21px;
    width: 36px;
    height: 36px;
    padding: 10px;
    text-align: center;
    background: #fff;
    border-radius: 50%;
}
.section-cta .btn .elementor-button .elementor-button-content-wrapper .elementor-button-icon svg{
	fill:var(--secondary-color) ;
}
.section-cta .btn:hover .elementor-button{
	background-color:transparent !important;
	color:#000;
}
.section-cta  .popup-btn:hover .elementor-button{
	background-color:transparent;
	color:#fff;
	border-color:#fff;
}
.section-cta  .btn:hover .elementor-button-icon svg{
    color:#000 !important;
	fill:#000 !important;
}
.section-about .why-us .item {
	background-color: #fff;
    padding: 20px;
    filter: drop-shadow(4px 4px 8px #00000026);
    border-radius: 6px;
}
.section-about .why-us .item .elementor-icon-box-wrapper .elementor-icon-box-title *{
	font-size: 20px;
    font-weight: bold;
    color: var(--text-color-dark);
	 line-height: 24px;
}
.section-about .why-us .item .elementor-icon-box-wrapper .elementor-icon-box-title{
	    line-height: 24px;
}
.section-about .img-wrapper {
    aspect-ratio: 1/1;
    width: 500px;
    max-width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.section-about .img-wrapper img {
    width: 100%;
    height: 100%;
    max-width: inherit !important;
    max-height: inherit !important;
    object-fit: cover;
}


.section-brands .brands-list {
    margin-top: 30px;
}

.section-brands .brands-list .item {
    flex: 0 0 10%;
    max-width: calc(10% - 13px) !important;
}

.section-brands .brands-list .item img {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.5s;
}

.section-brands .brands-list .item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}


.section-reviews .review-item {
    max-width: calc(50% - 20px);
    background-image: url(assets/img/qoute.svg);
    background-position: 96% 20px;
    background-repeat: no-repeat;
    background-size: auto;
    border: 1px solid var(--secondary-color);
    border-radius: 20px;
    padding: 30px;
    position: relative;
}

.section-reviews .review-item .elementor-testimonial-wrapper {
    display: flex;
    flex-direction: column-reverse;
    padding-left: 150px;
    position: relative;
}

.section-reviews .review-item .elementor-testimonial-wrapper .elementor-testimonial-content {
    padding-left: 30px;
    font-size: 16px;
    margin-bottom: 0;
    color: var(--secondary-color);
}

.section-reviews .review-item .elementor-testimonial-wrapper .elementor-testimonial-meta {
    padding-left: 30px;
}

.section-reviews .review-item .elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-name {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-color-dark);
    margin-bottom: 5px;
}

.section-reviews .review-item .elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-job {
    font-family: var(--text-font-family);
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 15px;
}

.section-reviews .review-item .elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image {
    padding-right: 0;
    width: 150px;
    position: absolute;
    left: 0;
    top: 0;
}

.section-reviews .review-item .elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img {
    border-radius: 15px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.section-reviews .review-item .rating {
    width: 150px;
    position: absolute;
    left: 30px;
    top: 195px;
}
#custom-popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(5px);
}

.popup-overlay  .popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  animation: popupIn 0.3s ease;
}

.popup-overlay  .popup-content .close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 25px;
  color: #333;
  cursor: pointer;
}

@keyframes popupIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.form-wrapper .row{
	gap:10px;
}
.form-wrapper .row span{
	width:100%;
	
}
.form-wrapper .row span input{
	width:100%;
    border: 1px solid #917552;
    padding: 5px 10px;
    border-radius: 20px;
	
}
.form-wrapper .row textarea{
		width:100%;
	    border: 1px solid #917552;
    padding:10px;
    border-radius: 25px;
}
.Rect-btn-wrapper {
	    display: flex;
    justify-content: center;
}
.Rect-btn-wrapper .wpcf7-submit{
	    background: var(--secondary-color) !important;
	color: #fff;
	padding: 0 20px;
    line-height: 48px;
    height: auto;
    display: inline-block;
    outline: none;
    cursor: pointer;
    overflow: hidden;
    border: 1px solid var(--secondary-color);
    border-radius: 25px;
    transition: all .2s 
ease-in-out;
}
.logo-customer .item{
	height: 100px;
    background-color: #f1f1f1;
    align-items: center;
    justify-content: center;
    display: inline-flex;
    border-radius: 10px;
}
.logo-customer .item img{
	    filter: grayscale(100%);
	transition:all 0.4s;
}
.logo-customer .item:hover img{
	   filter: grayscale(0%);
}

 .section-reviews .wp-gr .grw-row-s .grw-review, .section-reviews .wp-gr .grw-row-m .grw-header+.grw-content .grw-review{
    --col: 2 !important;
}
/* ------------------ Home page /End ------------------- */
/*----------------------404 page / Start --------------------*/
.txt-404 * {
    font-family: var(--text-font-family) !important;
}

.img-404 {
    transform: scale(1.2);
    animation: scale 3s infinite;
}

@keyframes scale {
    50% {
        transform: scale(.5);
    }
    100% {
        transform: scale(1.2);
    }
}

/*----------------------404 page / End--------------------*/
/*----------------------thank you page / Start--------------------*/

.thank-icon .elementor-icon svg{
	font-size:40px;
}
.thank-section .text p{
	font-size:18px;
}


/*----------------------responsive/ Start--------------------*/
@media (max-width: 1200px){
	.hero-section .section-title .elementor-heading-title {
    font-size: 60px;
}
}
@media (max-width: 1023.98px){
.section-appliance .service-item {
    flex: 0 0 33%;
	max-width: calc(33% - 8px);}
	 .section-reviews .wp-gr .grw-row-s .grw-review, .section-reviews .wp-gr .grw-row-m .grw-header+.grw-content .grw-review{
    --col: 1 !important;
}
}
@media(max-width:991.98px){
	
	.hero-section .hero-img{
		height: 300px;
        width: 300px;
	}	
	    .hero-section .section-title .elementor-heading-title {
        font-size: 50px;
    }
	.section-brands .brands-list .item {
    flex: 0 0 15%;
    max-width: calc(15% - 3px) !important;
}
	}

@media(max-width:767.98px){
	.thank-section .btn-card  .btn-advanced-filled .elementor-icon-box-content .elementor-icon-box-title *{
	font-size:17px;
}
	.btn-advanced-filled .elementor-icon-box-content .elementor-icon-box-description{
		font-size:13px;
	}
	.btn-advanced-filled .elementor-icon-box-icon {
    font-size: 14px;
    width: 34px;
		height: 34px;}
	    .section-appliance .service-item {
        flex: 0 0 50%;
        max-width: calc(50% - 8px);
    }
	.section-appliance .service-item .elementor-image-box-content .elementor-image-box-title a{
		font-size:18px;
		line-height: 24px;
	}
	.section-appliance .service-item .elementor-image-box-content .elementor-image-box-title{
		font-size:18px;
		line-height: 24px;
	}
	.section-brands .brands-list {
    margin-top: 0px;
}
	 .section-reviews  .wp-gr .grw-row{
		flex-wrap:wrap !important;
	}
	 .section-reviews  .wp-gr .grw-row-x .grw-header, .section-reviews   .wp-gr .grw-row-x .grw-header+.grw-content{
		--col:1 !important;
	}
}
@media(max-width:575.98px){
	.btn-card{
		width:100%;
	}
	.btn-card .btn-advanced-filled{
		    width: fit-content !important;
    min-width: 245px !important;
	}
	    .section-appliance .service-item {
        flex: 0 0 100%;
        max-width: calc(100% - 0px);
	
	}
	.section-appliance .service-item .elementor-image-box-wrapper{
		flex-direction: row;
    display: flex;
    }
	.section-appliance .service-item .icon .elementor-icon{
		    width: 60px;
            height: 60px;
		    font-size: 40px;
	}
	.section-appliance .service-item .elementor-image-box-content{
		padding: 15px 15px 50px;
	}
	.section-appliance .service-item .elementor-widget-image-box{
		padding-bottom: 0px;
	}
	    .section-brands .brands-list .item {
        flex: 0 0 20%;
        max-width: calc(20% - 12px) !important;
    }
	 .section-reviews  .wp-gr .grw-row-xs .grw-header{
		display:none !important;
	}
}
@media (max-width: 480px){
    .hero-section .section-title .elementor-heading-title {
        font-size: 44px;
    }	
	.header .btn-border .elementor-button{
		    padding: 0 10px;
	}
	.btn-border .elementor-button *, .btn .elementor-button * {
		font-size: 13px;
	    line-height: 40px;
	}
	.header .logo {
		width: 90px !important;
	}
	.section .desc * {
		font-size: 14px;}
	.section-about .why-us .item .elementor-icon-box-wrapper .elementor-icon-box-title * {
    font-size: 18px;
	}
	    .section-brands .brands-list .item {
        flex: 0 0 25%;
        max-width: calc(25% - 8px) !important;
    }
	.footer .section-title{
		 width: 100% !important;
	}
	.footer .section-title .elementor-heading-title{
		text-align: center;
	}
	.footer .e-con-inner{
		    justify-content: center !important;
	}
	.btn-border.btn-tel .elementor-button .elementor-button-content-wrapper .elementor-button-icon{
		display:none;
	}
}
@media (max-width: 379.98px){
	.col-btn .btn-tel{
		display:none;
	}
.header.sticky .logo {
    transform: scale(0.9);
}
	    .section-appliance .service-item .elementor-image-box-wrapper {
			flex-direction: column;}
	.section-cta .btn-border .elementor-button, .section-cta .btn .elementor-button{
		width:100%
	}
}