@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&display=swap');

:root {
    font-family: "Karla", sans-serif;
    font-optical-sizing: auto;
    line-height: 1.4;
    font-style: normal;
    --prime: #FAB800;
    --primelt: #52A1B8;
    --accentd: #C8C0AB;
    --accent: #E4DECE;
    --text: #2E2E2E;
    --lgr-prime: linear-gradient(90deg, #0C6F96 0%, #CCF4FF 100%);
    scroll-behavior: smooth;
    --base-size: clamp(.9rem, calc(.6rem + .5vw), 1.1rem);
    font-size: var(--base-font);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
	overflow-x: hidden;
}

:where(*:not(.bg-prime *, .hero *, .fancybox-container *)) {
    /*color: var(--text);*/
}

.bg-prime {
    background: var(--prime);
    color: #fff;
}

.bg-prime * {
    color: #fff;
}

.text-prime {
    color: var(--prime);
}

.bg-light {
    background: var(--accent);
}


/* typography */

h1, .h1 {
    font-size: clamp(2rem, calc(1.5rem + 2.5vw), 3rem);
    font-weight: 500;
    line-height: 1.2 !important;
    font-family: "Karla", sans-serif;
}

.h2 {
    font-size: clamp(1.8rem, calc(1.3rem + 2.2vw), 2.8rem);
    font-weight: 500;
    line-height: 1.4 !important;
    font-family: "Karla", sans-serif;
}

.h3 {
    font-size: clamp(1.6rem, calc(1.2rem + 1.8vw), 2.5rem);
    font-weight: 500;
    line-height: 1.4;
    font-family: "Karla", sans-serif;
}

.h4 {
    font-size: clamp(1.4rem, calc(1.1rem + 1.5vw), 2.2rem);
    font-weight: 500;
    line-height: 1.4;
    font-family: "Karla", sans-serif;
}

.h5 {
    font-size: clamp(1rem, calc(.9rem + 1vw), 1.5rem);
    font-weight: 500;
    line-height: 1.3;
    font-family: "Karla", sans-serif;
}

.h6 {
    font-weight: 500;
}

h2:has(span) {
    font-weight:300 !important;
    letter-spacing: -1.5px;
}
h2, h1, h3, h4, h5, h6{font-family: "Karla", sans-serif;}
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
    font-weight: 600 !important;
    color: var(--prime);
    letter-spacing: -1.5px;
}

img {
    width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
}

li,
p {
    margin-bottom: 1rem;
}


/* blocks & sections */

.container {
    max-width: 1376px;
    margin-inline: auto;
    padding-inline: clamp(1rem, calc(1rem + 2.5vw), 3rem);
}

section>.container {
    padding-block: clamp(2rem, calc(1.5rem + 2.5vw), 3rem);
}

section>.container.no-pad {
    padding:0;
}
body p{
    font-size: 15px;
    color: #000;
    font-weight: 400;
}

@media (width > 1024px) {
    .row {
        grid-template-columns: 1fr 1fr;
    }

    .row.reverse {
        direction: rtl;
    }

    .row.reverse>* {
        direction: ltr;
    }
}

.btn-white,
.btn-prime {
    background: var(--prime);
    color: #000;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 400;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: all.3s ease-in-out;
	font-size: 18px;
}

.btn-white {
    background: #fff;
    color: var(--prime);
    transition: all.3s ease-in-out;
}

.btn-prime {
    background: var(--prime);
    color: #000;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 400;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: all.3s ease-in-out;
	font-size: 16px;
}
.btn-prime:hover{
    background: #000;
    color: #fff !important;
}
.site-btn {
    background: var(--prime);
    color: #000;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 400;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: all.3s ease-in-out;
	font-size: 15px;
}
.site-btn:hover{
    background: #000;
    color: #fff;
}

/* .btn-white:hover,
.btn-prime:hover {
   filter: invert(1);
   transition: all.3s ease-in-out;
} */


/* header */
header {
    z-index: 9999;
    position: sticky;
    background: #fff;
    top: 0;
    width: 100%;
    transition: all .3s ease-in-out;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 6px;
}

header nav a img {
    max-height: 70px;
    transition: all .3s ease-in-out;
}

header.stick nav a img {
    max-height: 50px;
    transition: all .3s ease-in-out;
}

header nav ul {
    list-style: none;
    list-style-type: none;
    display: flex;
    gap:20px;
    align-items: center;
    margin: 0;
}

header nav ul li {
    margin-bottom: 0;
    font-size: 18px;
}
header nav ul li a{
    font-weight:400;
	color:#2E2E2E;
	font-size:15px;
}
header nav ul li a:hover{
    font-weight: 600;
	color: #fab800;
}
header nav ul li a.active{
    font-weight: 600;
	color: #000;
}
header nav ul li:last-child {
    /*display: none;*/
}

header label {
    display: none;
}

@media (width < 1024px) {
    header label {
        display: block;
        height: 40px;
        width: 40px;
        position: relative;
        cursor: pointer;
    }

    header label::before,
    header label::after,
    header label span {
        content: '';
        display: block;
        width: 24px;
        height: 2px;
        background: var(--prime);
        position: absolute;
        left: 8px;
        transition: transform 0.3s ease;
    }

    header label::before {
        top: 12px;
    }

    header label span {
        top: 19px;
    }

    header label::after {
        top: 26px;
    }

    header:has(input:checked) label::before {
        transform: translateY(7px) rotate(45deg);
    }

    header:has(input:checked) label span {
        opacity: 0;
    }

    header:has(input:checked) label::after {
        transform: translateY(-7px) rotate(-45deg);
    }

    header nav ul {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        width: 100%;
        left: -100%;
        background: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        gap: 1rem;
        transition: all 0.3s ease-in-out;
    }

    header:has(input:checked) nav ul {
        left: 0;
        transition: all 0.3s ease-in-out;
    }

    header nav ul li:last-child {
        display: block;
    }

    header a.btn-prime {
        display: none;
    }
}

header .btn-prime {
    padding: 9px 15px;
	font-size: 16px;
}

/* footer */

/* footer * {
    color: #fff !important;
} */
footer .columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    /* grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); */
    gap: 1.4rem;
    padding-block: 1.7rem;
}
footer .columns .linkswarp{
    display: flex;
    padding-block: 1.2rem;
}
footer .columns>div {
    max-width: 370px;
}

footer .columns h3,
footer .columns h4,
footer .columns h5 {
    font-weight: 600;
    font-size: 24px;
    margin-top: 1rem;
}

footer .columns h3 {
    font-size: 36px;
    text-transform: uppercase;
}

footer .columns h5 {
    font-size: 20px;
}

footer .columns p {
    font-weight: 400 !important;
    font-size: 13px !important;
    margin-top: .8rem;
}

footer .columns a {
    font-weight: 400 !important;
    display: block;
    font-size: 14px !important;
    margin-top: 1rem;
	color: #2E2E2E;
}
.contact_info{padding-top:5px;}
.social-media {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
	padding-left: 33px;
}

.social-media a {
    max-width: 50px;
    aspect-ratio: 1;
}

footer .credit-area .flex,
footer .credit-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-block: 1rem;
}

footer .credit-area * {
    font-size: 14px;
}

footer .credit-area img{
    width: 20px;
    height: auto;
    margin-right: 7px;
    margin-left: 20px;
    margin-bottom: -5px;
}


/* Dialog Modal */
dialog {
    padding: 2rem;
    margin: auto;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
}

dialog::backdrop {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
}

.hero {
    background: var(--lgr-prime);
    color: #fff;
}

.hero .container {
    padding-block: var(--base-font);
}

/* Animations - Effective if user has no preferance for reduced motion */

@media (prefers-reduced-motion: no-preference) {
    .animate-this.up {
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.8s ease-in-out;
    }

    .animate-this.up.animated {
        opacity: 1;
        transform: translateY(0);
        transition: all 0.8s ease-in-out;
    }

    .animate-this.swipe {
        opacity: 0;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .animate-this.swipe.animated {
        opacity: 1;
        animation: text-slice-animation 1.2s ease-in-out forwards;
    }

    @keyframes text-slice-animation {
        0% {
            clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
        }

        100% {
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        }
    }

    .animate-this.spin {
        transform: rotate(0deg);
        transition: transform 1s ease-in-out;
    }

    .animate-this.spin.animated {
        transform: rotate(90deg);
        transition: transform 1s ease-in-out;
    }
	
	.animate-this.rtl {
        opacity: 0;
        transform: translateX(50px);
    }
  
    .animate-this.animated.rtl {
        animation: fade-in-right 0.8s ease-in-out forwards;
    }
  
      .animate-this.lft {
          opacity: 0;
          transform: translateX(-20px);
      }
    
      .animate-this.animated.lft {
          animation: fade-in-left 0.8s ease-in-out forwards;
      }
    @keyframes fade-in {
        to {
            opacity: 1;
            transform: translateY(0px);
        }
    }
  
    @keyframes fade-in-right {
        to {
            opacity: 1;
            transform: translateX(0px);
        }
    }
    @keyframes fade-in-left {
          to {
              opacity: 1;
              transform: translateX(0px);
          }
      }
}
img{
	display: block;
}

.top-header {
	background-color: #FAB800;
	padding: 9px 0px;
	text-align: center;
}
.top-header p{
	margin-bottom: 0;
	color: #FFFFFF;
}
.top-header p a{
    color: #FFFFFF;
    font-weight:600;
}
.banner {
	position: relative;
}
.wrapperbanner{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	padding: 50px 0;
}
.bannertext span{
	color: #FAB800;
    font-weight: 800 !important;
	display: block;
	font-size: 26px;
	text-transform: capitalize;
	/*animation: smooth-blink 2s ease-in-out infinite;*/
}
@keyframes smooth-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}
.bannertext h1{
	color: #FFFFFF;	
	margin-bottom: 8px;
}
.bannertext p{
	font-size: 15px;
	color: #FFFFFF;	
	margin-bottom: 24px;
	margin-top: 15px;
}
.bannerform {
	background-color: rgba(46, 46, 46, 0.7);
	padding: 34px 30px;
	border-radius: 20px;
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.7);
	max-width: 478px;
	margin-left: auto;
}
.bannerform h2{
	font-size: 32px;
	color: #FFFFFF;	
	margin-bottom: 8px;
}
.bannerform p{
	font-size: 14px;
	color: #FFFFFF;	
	font-weight: 500;
	margin-bottom: 6px !important;
	display: block;
}
.bannerform input, .bannerform select {
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 20px;
	padding: 10px 15px;
	background-color: transparent;
	width: 100%;
	color: #FFFFFF;
	    font-family: "Karla", sans-serif;
}
.bannerform select option{color:#000;}
.bannerform input:focus-visible, .bannerform select:focus-visible, .bannerform textarea:focus-visible {
	outline: none;
}
body .footer-contact .bannerform .form-num p{
	display: flex !important;
}
body .form-num p{
	display: flex !important;
}
.bannerform .form-num select {
	margin-right: 8px;
	width: 75px;
}
.bannerform textarea{
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 20px;
	padding: 10px 15px;
	background-color: transparent;
	width: 100%;
	color: #FFFFFF;
	font-family: "Karla", sans-serif;
	height: 44px !important;
	resize: none;
}
.bannerform div{
	margin-bottom: 10px;
}
.bannerform input[type="submit"] {
	background: var(--prime);
	margin-top: 5px;
	cursor: pointer;
	font-size: 16px;
	color: #000;
}
.bannerform input[type="submit"]:hover{
	background:#000;
	color: #fff;
}
footer{
	background: url('../images/footer_bg.webp') #FEF1CC no-repeat;
	background-size: 100%;
}
.linkswarp h4 {
	color: #2E2E2E;
	margin-top: 0 !important;
    font-weight: 600 !important;
}
.linkswarp{
	    gap: 30px !important;
    max-width: 732px !important;
}
.credit-area{
	border-top: 1px solid rgba(46, 46, 46, 0.3);
}
.readytodesign_sec, .warranty_sec{
	position: relative;
}
.readytodesign_sec:before, .warranty_sec:before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
/*	background-image: linear-gradient(to right, #000000 , rgba(0, 0, 0, 0));*/
    background: #000000;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.81) 0%, rgba(254, 240, 200, 0) 50%);
}

.readytodesign_sec .container, .warranty_sec .container{ 
	position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
}
.readytodesign_inn, .warranty_inn {
	max-width: 501px;
	position: absolute;
    top: 48%;
    transform: translateY(-50%);
}
.warranty_inn {
    max-width: 455px;
}
.readytodesign_inn h2, .warranty_inn h2{
	color: #FFFFFF;
	font-weight:600;
	margin-bottom: 20px;
}
.home-about {
	/*background: url('../images/why_choose_us_bg.webp') #fff8e6 no-repeat;*/
	background-size: 100%;
}
.home-about .row{
    align-items: center;
}
.home-about-img img {
	border-radius: 20px;
}
.home-about-txt{
	padding-left: 51px;
}
.home-about-txt .desc p{
	font-size: 16px;
	font-weight: 400;
    line-height: 27px;
}
.home-about-txt h2{
	color: #000;
	font-weight:300 !important;
	margin-bottom: 8px;
}
.home-about-txt h2 span{
	color: #FAB800;
	font-weight: 600 !important;
}
.home-about-txt p{
	font-size: 15px;
	font-weight: 400;
}
.whyusitems{
	margin: 50px 0 30px;
    display: flex;
    flex-wrap: wrap;
    row-gap:45px;
    justify-content: space-between;
}
.whyusitems .item {
	width: 48%;
	/*display: flex;
	align-items: center;*/
}

.whyusitem-img{
	width: 58px;
	height: 58px;
	margin-bottom: 10px;
}
.whyusitem-img img{
	width: 100%;
}
.whyusitem-txt{
	/*width: calc(100% - 58px);*/
	padding-left:0px;
}
.whyusitem-txt h5{
	font-size: 15px;
	font-weight:400;
	color:#000;
}
.steps_inn {
	max-width: 1003px;
	margin: 0 auto;
}
.steps_sec h2{
	color: #2E2E2E;
	font-weight:300 !important;
	margin-bottom: 8px;
	text-align: center;
	margin-bottom: 44px;
}
.steps_sec h2 span{
	color: #FAB800;
	font-weight:600 !important;
	/*display: block;*/
}
.steps{
	max-width: 888px;
	margin: 0 auto;
}
.steps .item img{
	width: 64px;
}
.step-box .step-inn{
	width: 50%;
	display: flex;
	align-items: center;
	padding-bottom: 40px;
	position: relative;
}
.step-box:nth-child(odd) .step-inn{
	margin-left: auto;
	padding-left: 50px;
	flex-direction: row-reverse;
	justify-content: flex-end;
}
.step-box:nth-child(odd) .step-inn img{
	margin-right: 24px;
}
.step-box:nth-child(even) .step-inn{
	padding-right: 50px;
	    justify-content: flex-end;
	    margin-left: 4px;
}
.step-box:nth-child(even) .step-inn img{
	margin-left: 24px;
}
.step-box:nth-child(even) .step-inn .step-text {
	text-align: right;
}
.step-text p{
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 0;
}
.step-text h5{
	font-size: 24px;
	font-weight: 600;
}
.step-box:nth-child(odd) .step-inn:before {
    content: '';
    position: absolute;
    width: 34px;
    height: 34px;
    background: url('../images/sparkle.svg') no-repeat;
        left: -16px;
    top: -2px;
    z-index: 9;
}
.step-box:nth-child(even) .step-inn:before {
    content: '';
    position: absolute;
    width: 34px;
    height: 34px;
    background: url('../images/sparkle.svg') no-repeat;
    right: -14px;
    top: 0px;
    z-index: 1;
}
.step-box .step-inn:after {
    content: '';
    position: absolute;
    height: 100%;
    left: 0px;
    width: 4px;
    top: 0px;
    background: #FCDB80;
}
.step-box:nth-child(even) .step-inn:after {
    right: 0px;
    left: auto;
}
.step-box:last-child .step-inn:after {
	display: none;
}
.main_work{
/*	background: url('../images/simple_steps_bg.webp') #fff8e6 no-repeat;*/
    background: #ffffff;
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(254, 240, 200, 1) 100%);
	background-size: cover;
    padding: 30px 0px;
    background-position: bottom;
}
.work_sec{
	padding-bottom: 80px;
}
.work_sec h2{
	color: #2E2E2E;
	font-weight: 300 !important;
	margin-bottom: 8px;
	text-align: center;
	margin-bottom: 24px;
	font-size:2.5rem;
}
.work_sec h2 span{
	color: #FAB800;
	font-weight: 600 !important;
}
.tabwrap label{
	font-size: 20px; 
	color: #2E2E2E;
}
.tab-nav{
	justify-content: center;
}
.testimonial_sec{
/*	background: url('../images/testimonials_bg.webp') #fff8e6 no-repeat;*/
    background: #fff;
	background-size: cover;	
	padding-bottom: 20px;
}
.testimonial_sec h2{
	color: #2E2E2E;
	font-weight:300 !important;
	margin-bottom: 8px;
	text-align: center;
	margin-bottom: 40px;
}
.testimonial_sec h2 span{
	color: #FAB800;
	font-weight:600 !important;
}
.testimonial .item{
	background: #FFFFFF;
	padding:20px 10px;
	transition: all .3s ease-in-out;

}
.testimonial .item > div{	box-shadow: 0 0 10px 0px #ccc;padding:14px 20px;border-radius: 20px;}
.testimonial .item img{
	border-radius: 10px;
	margin-bottom: 14px;
	transition: all .3s ease-in-out;
}
.rating{
	width: 136px;
}
.rating img{
	margin-bottom: 0 !important;
}
.testimonial_txt{
	/*display: flex;
	margin-bottom: 10px;*/
	justify-content:left;
	align-items: center;
}
.testimonial_name{
	padding-right: 10px;
	padding-top: 15px;
}
.testimonial_name h5{
	font-weight: 600;
	font-size: 20px;
	transition: all .3s ease-in-out;
}
.testimonial_name p{
	margin-bottom: 0px;
	transition: all .3s ease-in-out;
}
.testimonial-desc{
	margin-bottom: 14px;
	/*display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
	transition: all .3s ease-in-out;*/
}
.testimonial button.owl-prev{
	background: url('../images/arrow-left.svg') center no-repeat !important;
	left: auto;
	right: 75px;
	top: auto;
	position: absolute;
	transform: inherit;
	width: 60px;
	height: 60px;
	border-radius: 50% !important;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	display: flex !important;
	align-items: center;
	justify-content: center;
}
.testimonial button.owl-next{
	background: url('../images/arrow-right.svg') center no-repeat !important;
	left: auto;
	right: 0px;
	top: auto;
	position: absolute;
	transform: inherit;
	width: 60px;
	height: 60px;
	border-radius: 50% !important;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	display: flex !important;
	align-items: center;
	justify-content: center;
}
.testimonial .owl-nav.disabled, .testimonial .owl-nav{
	display: block !important;
    height: 64px;
    margin-top: 20px;
}

.testimonial .owl-nav span{
	display: none;
}
.testimonial .item:hover .testimonial-img{
	width: 84px;
	height: 84px;
	transition: all .3s ease-in-out;
	margin-bottom: 10px;
}
.testimonial .item:hover .testimonial-img img{
	width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100px;
	transition: all .3s ease-in-out;
}
.testimonial .item:hover .testimonial-desc {
    -webkit-line-clamp: inherit;
	transition: all .3s ease-in-out;
}

.tabwrap .item img{
	border-radius: 20px;
}

.tabwrap .item img{
	border-radius: 20px;
}
.tab .item{
	display: flex;
    flex-wrap: wrap;
    gap: 24px;
} 
.tab_box{
	position: relative;
	width: 31.9%;
}
.tab_box .tab_img a:before{
	content:'';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(rgba(0, 0, 0, .0), rgba(0, 0, 0, .5));
	border-radius: 20px;
	z-index: 9;
}
.tab_box .tab_img a:after{
	content:'↗';
	position: absolute;
	right: 20px;
	bottom: 20px;
	width:30px;
	height:30px;
	background:#fff;
	border-radius:50%;
	z-index: 9;
	font-size: 22px;
  text-align: center;
  line-height: 26px;
}
.title-link{
	position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    width: 80%;
	align-items: center;
	z-index: 9;
}
.title-link h5{
	font-size: 26px;
	color: #FFFFFF;
}
.tabbtn{
	 border-bottom: 1px solid transparent;
}
.tabbtn.active{
	color: #FAB800;
	    border-bottom: 1px solid;
}
.title-link a{
	width: 44px;
}
.title-link a img{
	width: 100%;
}
.social-media a{
	background: #FFFFFF;
	width: 34px;
	height: 34px;
	display: flex !important;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
	margin: 0 !important;
}
.social-media a img{
	width: 16px;
	margin: 0 !important;
}
.info p {
	display: flex;
	align-items: flex-start;
}
.info p img{
	width: 24px;
	margin-right: 15px;
}
.info p em{
	width: calc(100% - 24px);
	margin: 0;
	font-style: normal;
}
.contact_info p a{
	margin-top: 0;
	display: inline-block;
}
.whatsup-icon{
	background: #33d951;
    width: 50px;
    height: 50px;
    display: flex;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
}
.whatsup-icon img{
	width: 30px;
}
.footer-p{
	margin-bottom: 0;
}
.tab_img > a{
	width: 100%;
    display: block;
    height: 100%;
    position: absolute;
	z-index: 9;
}
.tab_img {
    position: relative;
    width: 100%;
    padding-bottom: 66%;
    border: 0;
}
.tab_img img{
	border-radius: 10px;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* Slide-in from left */
@keyframes slideInLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Slide-in from right */
@keyframes slideInRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Apply animation to elements */
.animate-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

.animate-right {
  animation: slideInRight 0.8s ease-out forwards;
}
.pos-rel { position: relative; }
.top-scroll { position: absolute; top: -61px; left: 0; }

#backtop {position:fixed;right: 20px;bottom: 15px;cursor:pointer;width: 50px;height: 50px;background-color:#ffffff;text-indent:-9999px;display:none;-webkit-border-radius:60px;-moz-border-radius:60px;border-radius:60px;z-index: 9;border: 2px solid #FAB800}
#backtop span { position:absolute; top:50%; left:50%; margin-left:-8px; margin-top:-12px; height:0; width:0; border:8px solid transparent;
border-bottom-color:#FAB800; }
.info-address p{
	display: flex;
	align-items: flex-start;
}

.info-address p img {
	width: 24px;
	    margin-right: 15px;
}
.info-address p span {
	width: calc(100% - 24px);
}
.linkswarp .quick-links {
	/*width: 33%;*/
}
.linkswarp .info {
	width: 42%;
}
.linkswarp .info-address {
	    width: 54%;
    padding-top: 31px;
}
.steps_btn ul{
	    display: flex;
    justify-content: center;
    gap: 16px;
}
.steps_btn ul li{
	list-style: none;
}
.steps_btn ul li a{
	display: flex;
	    text-transform: capitalize;
	    width: 190px;
}
.steps_btn ul li a img{
	width: 21px; 
	margin-right: 10px;
}
a.conect-call{
	 text-transform: capitalize;
}

@media (max-width: 1439px) {
.whyusitems {
    margin-top: 22px;
}
.whyusitem-txt h5 {
    font-size: 17px;
}	
}
@media (max-width: 1365px) {
.bannerform {
    padding: 25px 60px;
}
.banner .bannerimg {
    height: 950px;
}
.title-link h5{
	font-size: 24px;
}
.testimonial_name h5 {
    font-size: 19px;
}


}

@media (max-width: 1279px) {
.home-about-txt {
    padding-left: 20px;
}
.tab_box {
    width: 31.8%;
}
.title-link h5 {
    font-size: 22px;
}
.home-about-txt p {
    font-size: 17px;
}
.step-text h5 {
    font-size: 20px;
}
footer .columns>div {
    max-width: 320px;
}
header nav ul li {
    font-size: 16px;
}
.bannertext span {
    font-size: 22px;
}
}
@media (max-width: 1179px) {
.tab_box {
    width: 31.7%;
}
.tab .item {
    gap: 22px;
}
footer .columns>div {
    max-width: 290px;
}
footer .columns h4 {
    font-size: 20px;
}
.linkswarp {
    gap: 20px !important;
    max-width: 650px !important;
}
h1, .h1 {
    font-size: clamp(2rem, calc(1.1rem + 2.5vw), 3rem);
}
footer {
    background-size: cover;
}
}
@media (max-width: 1079px) {
	footer .columns>div {
        max-width: 237px;
    }
	footer .columns h4 {
        font-size: 18px;
    }
	.home-about .row {
    align-items: flex-start;
}
}
@media (max-width: 1024px) {
.row {
    grid-template-columns: 1fr 1fr;
}

h1, .h1 {
    font-size: clamp(1rem, calc(1rem + 2.5vw), 3rem);
}

.whyusitem-txt h5 {
    font-size: 15px;
}
.whyusitems {
    row-gap: 25px;
    margin-top: 25px;
}
.home-about-txt {
    padding-left: 0;
}
.title-link h5 {
    font-size: 20px;
}
.tab .item {
    gap: 22px;
}
.testimonial_name h5 {
    font-size: 18px;
}
}
@media (max-width: 991px) {
.home-about-img{
	width: 100%;
}
h1, .h1 {
        font-size: clamp(1rem, calc(0.7rem + 2.5vw), 3rem);
    }
.home-about-txt p {
    font-size: 16px;
}
.bannerform {
        padding: 25px 30px;
    }
.bannerform h2 {
    font-size: 26px;
}
.bannertext p {
    font-size: 16px;
}
.h2 {
    font-size: clamp(1.8rem, calc(1.12rem + 2.2vw), 2.8rem);
}
.title-link a {
    width: 35px;
}
.title-link {
    padding: 12px 15px;
}
.tab .item {
        gap: 17px;
    }
.work_sec {
    padding-bottom: 50px;
}
.step-text h5 {
    font-size: 18px;
}
footer .columns>div {
    max-width: 260px;
}
.linkswarp {
    max-width: 100% !important;
}
footer .columns h3, footer .columns h4, footer .columns h5 {
    font-size: 20px;
}
.tab_box {
        width: 48.7%;
    }
}
@media (max-width: 767px) {
.row {
    display: block;
}
.wrapperbanner {
    padding: 35px 0;
}
.bannertext {
	margin-bottom: 25px;
}
.readytodesign_sec img, .warranty_sec img {
    height: 250px;
}
footer {
    background-size: cover;
}
    .tab_box {
        width: 48.5%;
    }
.testimonial .item {
    padding: 16px 16px;
}
.testimonial-desc {
    font-size: 15px;
}
.bannerform {
    margin: 0;
 }
.banner .bannerimg {
    height: 980px;
}
.tabwrap label {
    font-size: 18px;
}
.testimonial button.owl-prev{
	width: 45px;
	height: 45px;    right: 60px;
}
.testimonial button.owl-next{
	width: 45px;
	height: 45px;
}

.home-about-img{
	margin-bottom: 20px;
}
html{
	overflow-x: hidden;
}
h1, .h1 { font-size: clamp(1rem, calc(1rem + 2.5vw), 3rem); }

.btn-prime, .bannerform input[type="submit"]{ font-size: 15px; }

.steps_inn {
	margin-bottom: 20px;
}
.steps_btn ul li {
    margin-bottom: 0;
}
.social-media {
    padding-left: 0;
}
.testimonial_sec{
	padding-bottom: 0;
}
.bannertext span {
        font-size: 20px;
    }
}
@media (max-width: 639px) {
.tab .item {
    gap: 15px;
}
.tab-nav {
	flex-wrap: wrap;
	gap: 14px !important;
}
.step-box:nth-child(even) .step-inn img {
    margin-left: 20px;
}
.step-box:nth-child(odd) .step-inn img {
    margin-right: 20px;
}
footer .columns .linkswarp{
	flex-wrap: wrap;
}
.linkswarp .quick-links, .linkswarp .info, .linkswarp .info-address {
    width: 100%;
}
.linkswarp .info-address {
    padding-top: 0;
}
footer .columns{
	padding-bottom: 0px;
}
.linkswarp .info p:last-child{
    margin-bottom: 0;
}
.info-address p{
    margin-top: 0 !important;
}
}
@media (max-width: 575px) {
	.tab_box {
        width: 48%;
    }
	.step-box .step-inn {
    width: 100%;
	        padding-left: 30px;
	}
	.step-box:nth-child(even) .step-inn {
    padding-right: 0;
    justify-content: flex-end;
    margin-left: 0;
    flex-direction: row-reverse;
}
.step-box:nth-child(even) .step-inn .step-text {
    text-align: left;
}
.step-box:nth-child(odd) .step-inn {
    padding-left: 30px;
}
.step-box:nth-child(odd) .step-inn img {
        margin-right: 20px;
        margin-left: 20px;
    }
	.step-box:nth-child(even) .step-inn img {
        margin-right: 20px;
        margin-left: 20px;
    }
.step-box:nth-child(even) .step-inn:after {
        right: 0;
        left: 14px;
    }
.step-box:nth-child(even) .step-inn:before {
	right: auto;
    left: 1px;
	width: 28px;
    height: 28px;
    background-size: 28px;
}
.step-box:nth-child(odd) .step-inn:before {
    left: 2px;
	width: 28px;
    height: 28px;
    background-size: 28px;
}
.step-box .step-inn:after {
    left: 14px;
}
.whyusitems .item {
    width: 100%;
    flex-wrap: wrap;
}
.whyusitems {
        row-gap: 18px;
}
}
@media (max-width: 479px) {
	    .tab_box {
        width: 100%;
    }
	footer .columns>div {
        max-width: 210px;
    }
	footer .columns .linkswarp, footer .columns {
    padding-block: 10px;
}
.linkswarp {
        gap: 20px !important;
}
.testimonial_sec h2 {
    margin-bottom: 20px;
}
.steps .item img {
    width: 45px;
}
.step-text h5 {
        font-size: 16px;
    }
.work_sec {
    padding-bottom: 30px;
    }
.steps_sec h2 {
    margin-bottom: 30px;
}
.step-box .step-inn {
    padding-bottom: 30px;
}
.step-box:last-child .step-inn {
    padding-bottom: 10px;
}
.title-link h5 {
        font-size: 16px;
    }
.bannerform {
	padding: 25px 20px;
   }
.top-header p {
    font-size: 14px;
}

.banner .bannerimg {
   height: 1080px;
}
.warranty_inn, .readytodesign_inn {
    max-width: 86%;
}
.home-about-txt h2 {
    font-size: 21px;
}
.steps_btn ul {
    gap: 10px;
}
.steps_btn ul li a {
    width: 140px;
    font-size: 14px;
    padding: 10px 10px;
}
.steps_btn ul li a img {
    width: 19px;
    margin-right: 5px;
}
.bannertext span {
        font-size: 18px;
        margin-bottom: 5px;
    }
}
@media (max-width: 374px) {
.top-header p {
    font-size: 12px;
}
.container {
    padding-inline: clamp(1rem, calc(0.6rem + 2.5vw), 3rem);
}
.tabwrap label {
        font-size: 16px;
    }

}