@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-VariableFont_wght.ttf') format('truetype');
  font-weight: 200 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Canela Text Trial';
  src: url('../fonts/Canela-Regular-Trial.woff') format('woff');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
    font-family: 'Canela Text Trial';
    font-style: normal;
    font-weight: 900;
    src:url('../fonts/Canela-Black-Trial.woff') format('woff');
    }
@font-face {
    font-family: 'Canela Deck Trial';
    font-style: normal;
    font-weight: 900;
    src:url('../fonts/CanelaDeck-Medium-Trial.woff') format('woff');
    }
@font-face {
    font-family: 'Canela Deck Trial';
    font-style: normal;
    font-weight: 700;
    src:url('../fonts/Canela-Bold-Trial.woff') format('woff');
    }  
@font-face {
    font-family: 'Canela Deck Trial';
    font-style: normal;
    font-weight: 500;
    src:url('../fonts/CanelaDeck-Regular-Trial.woff') format('woff');
    }      
.desktop-nav, .mobile-header{
  display: none;
}
html {
  box-sizing: border-box;
  margin:0;
  padding:0;
}
body{
  margin: 0;
  padding: 0;
  background: #FCFCFC;
  overflow-x: hidden;

}
*, *:before, *:after {
  box-sizing: inherit;
}
.container {
    max-width: 1292px;
    margin: 0 auto;
    padding: 0 15px;
}
.container-full {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0;
}
h1,h2,h3,h4,p{
  margin:0;
  padding:0;
}
.navbar{
  padding:20px 0;
}
.navbar-wrapper{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar-wrapper-column:nth-child(1){
  flex:0 0 19%;
  min-width: 19%;
}
.navbar-wrapper-column:nth-child(2){
  flex:0 0 45%;
  min-width: 45%;
  display: flex;
  justify-content: center;
}
.navbar-wrapper-column:nth-child(3){
  flex:0 0 34%;
  min-width: 34%;
  display: flex;
}
.navbar-wrapper-column:nth-child(2) ul{
  list-style: none;
  padding:0;
  margin:0;
  display: flex;
}
.navbar-wrapper-column:nth-child(2) ul li a{
  display: inline-block;
  text-decoration: none;
  font-family: Outfit;
font-weight: 400;
font-size: 20px;
line-height: 100%;
letter-spacing: 0%;
color:#666666;
margin:0 10px;
background: transparent;
border-bottom: 2px solid transparent;
}
.navbar-wrapper-column:nth-child(2) ul li a:hover{
  font-weight: 400;
  color:#008A50;
}
.navbar-wrapper-column:nth-child(3) .blog-yellow-btn img{
  margin:0 10px 0 0;
}
.get-quote-header{
  display: inline-block;
  text-decoration: none;
  padding:20px;
  border-radius: 36px;
  color:#1A1A1A;
  font-family: Outfit;
font-weight: 600;
font-size: 16px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
background: #FFD447;
margin:0 0 0 10px;
}
 /* Mobile Navbar */
        .mobile-navbar {
            display: none;
            background: #018A51;
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 15px 20px;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            position: relative;
            z-index: 1000;
            box-shadow: 0 5px 25px rgba(0,0,0,0.3);
        }

        .mobile-logo {
            width: 150px;
        }
        .mobile-logo img{
            display: block;
            width: 100%;
        }
        .hamburger {
            background: transparent;
            border: none;
            width: 40px;
            height: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            position: relative;
            z-index: 1001;
        }

        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: white;
            margin: 3px 0;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* Mobile Menu */
       .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.90);
    z-index: 999;
    display: flex
;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    clip-path: circle(0% at 50% 50%);
    -webkit-clip-path: circle(0% at 50% 50%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 0 30px;
}

        .mobile-menu.active {
            opacity: 1;
            pointer-events: all;
        }

        .mobile-links {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 25px;
        }
        .mobile-buttons .blog-yellow-btn img{
          margin: 0;
        }
        .mobile-links a {
            color: black;
            text-decoration: none;
            font-size: 1.8rem;
            font-weight: 600;
            position: relative;
            opacity: 0;
            transform: translateY(20px);
            font-family: Outfit;
        }

        .mobile-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: #ff8a00;
            transition: width 0.3s ease;
        }

        .mobile-links a:hover::after {
            width: 100%;
        }

        .mobile-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 40px;
            align-items: flex-start;
        }

        .close-btn {
            position: absolute;
            top: 30px;
            right: 30px;
            background: transparent;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            opacity: 0;
            transform: translateY(-20px);
        }
        .mobile-menu .accordion-item {
  margin-bottom: 10px;
}

.mobile-menu .accordion-toggle {
  width: 100%;
  border: none;
  text-align: left;
  cursor: pointer;
  border-radius: 5px;
   color: black;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 600;
  position: relative;
  font-family: Outfit;
  padding: 0;
  background: transparent;
}

.mobile-menu .accordion-toggle::after {
  content: "+";
  float: right;
}

.mobile-menu .accordion-toggle.active::after {
  content: "-";
}

.mobile-menu .accordion-content {
  display: none;
  padding: 10px 15px;
  background-color: transparent;
}

.mobile-menu .accordion-content a {
  display: block;
  padding: 5px 0;
  text-decoration: none;
  color: #333;
}

.banner{
  position: relative;
  z-index: 3;
}
.banner .container{
  position: relative;
  z-index: 4;
}

.banner-wrapper{
  display: flex;
  justify-content: space-between;
  align-items: center;
  background:url('/wp-content/themes/NZCleaning/assets/images/Mask group.svg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 60px;
  padding:30px;
}
.banner-wrapper-column:nth-child(1){
  flex:0 0 49%;
  min-width: 49%;
  background: url('/wp-content/themes/NZCleaning/assets/images/Rectangle 2.svg');
  background-size:cover;
  background-repeat: no-repeat;
  border-radius: 60px;
  padding: 30px;
}
.banner-wrapper-column:nth-child(2){
  flex:0 0 49%;
  min-width: 49%;
}
.banner-wrapper-column h1{
font-family: Canela Text Trial;
font-weight: 500;
font-size: 55px;
line-height: 70px;
letter-spacing: 0%;
}
.banner-wrapper-column h1 span{
display: inline-block;
color:#008A50;
font-weight: 900;
}
.banner-wrapper-column p{
  font-family: Outfit;
font-weight: 400;
font-size: 24px;
line-height: 32px;
letter-spacing: 0%;
padding:10px 0 0 0;
}
.banner-btn-wrapper{
  display: flex;
  align-items: center;
  padding:30px 0 0 0;
}
.banner-btn-wrapper a{
  display: inline-block;
  text-decoration: none;
  font-family: Outfit;
font-weight: 600;
font-size: 16px;
line-height: 100%;
letter-spacing: 0%;
border-radius: 30px;
padding: 15px 20px;
border:1px solid #FFD447;
}
.banner-btn-wrapper a:nth-child(1){
  background: #FFD447;
  color:#1A1A1A;
}
.banner-btn-wrapper a:nth-child(2){
background: #FFF3CC;
color:#1A1A1A;
margin:0 0 0 20px;
}
.banner-list ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
.banner-list ul li{
  display: inline-block;
  font-family: Outfit;
font-weight: 400;
font-size: 20px;
line-height: 32px;
letter-spacing: 0%;
vertical-align: middle;
display: flex;
align-items: center;
padding:30px 0 0 0;
}
.banner ul li img{
  display: inline-block;
  margin:0 10px 0 10px;
}
.home-floating-div{
  background: url('/wp-content/themes/NZCleaning/assets/images/Rectangle 837.svg');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 3;
  right: 1%;
    bottom: -1%;
    padding: 22px 15px;
}
.home-floating-div img{
  display: block;
  width:143px;
}
.home-floating-div span{
  display: block;
  font-family: Canela Deck Trial;
font-weight: 500;
font-size: 20px;
line-height: 40px;
letter-spacing: 0%;
text-align: center;
vertical-align: middle;
color:#1A1A1A;
}
.choose-us{
  padding:50px 0;
  position: relative;
  z-index: 3;
}
.span-holder{
  position: relative;
  z-index: 3;
}
.span-holder span{
  display: block;
  font-family: Outfit;
font-weight: 500;
font-size: 28px;
line-height: 32px;
letter-spacing: 0%;
text-align: center;
vertical-align: middle;
}
.yellow-bar {
    background: #FFD447;
    border-radius: 30px;
    width: 71px;
    margin: 7px auto;
    height: 4px;
}
.choose-us h2, .services h2, .sectors h2, .testimonials h2, .blogs h2, .footer h2, .faq-wrapper-column h2, .team h2, .purpose-wrapper-column h2, .contact-faq h2, .we-offer h2, .process h2, .space-for-success-wrapper-column h2, .sector-info h2, .three-steps h2, .upto-date h2, .blog-tiles h2, .upto-date-wrapper-column h3, .blog-detail h2, .applicant-form h2{
  display: block;
  font-family: Canela Deck Trial;
font-weight: 500;
font-size: 55px;
line-height: 70px;
letter-spacing: 0%;
text-align: center;
color:#008A50;
}
.choose-us p, .services p, .sectors p, .testimonials p, .blogs p, .footer p, .faq-wrapper-column p, .team p, .purpose-wrapper-column p, .contact-faq p, .we-offer p, .process p, .space-for-success-wrapper-column p, .sector-info p, .upto-date p, .blog-tiles p, .blog-detail p{
    display: block;
    color: #666666;
    font-family: Outfit;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    padding: 10px 50px;
}
.choose-us-wrapper{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
}
.choose-us-centered-img {
    position: absolute;
    z-index: 3;
    top: 51%;
    left: 49%;
    transform: translate(-50%, -50%) !important;
    border-radius: 100%;
    width: 43%;
}

.choose-us-wrapper-column{
  flex:0 0 30%;
  min-width: 30%;
  margin:50px 0 0 0;
}
.choose-us-wrapper-column-bg{
  position: relative;
  z-index: 3;
}
.choose-us-wrapper-column:nth-child(1) .choose-us-wrapper-column-bg,.choose-us-wrapper-column:nth-child(3) .choose-us-wrapper-column-bg{
   background: url('/wp-content/themes/NZCleaning/assets/images/Rectangle 837 copy.svg');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 321px;
  height: 192px;
  padding: 40px 30px;
}
.choose-us-wrapper-column:nth-child(4) .choose-us-wrapper-column-bg,.choose-us-wrapper-column:nth-child(6) .choose-us-wrapper-column-bg{
background: url('/wp-content/themes/NZCleaning/assets/images/Rectangle 838.svg');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 321px;
  height: 192px;
  margin:200px 0 0 0;
  padding: 2px 30px;
}
.choose-us-floating-img {
    position: absolute;
    left: 6.3%;
    top: 21%;
    z-index: 2;
    width: 69px;
}
.choose-us-wrapper-column:nth-child(2), .choose-us-wrapper-column:nth-child(5){
  flex:0 0 30%;
  min-width: 30%;
  margin:50px 0 0 0;
}
.choose-us-wrapper-column h3{
  display: block;
  font-family: Canela Text Trial;
font-weight: 600;
font-size: 24px;
line-height: 24px;
padding:20px 0 0 0;
letter-spacing: 0%;
vertical-align: middle;
color:#008A50;
}
.choose-us-wrapper-column p{
  display: block;
  font-family: Outfit;
font-weight: 400;
font-size: 18px;
line-height: 22px;
letter-spacing: 0%;
vertical-align: middle;
color:#1A1A1A;
padding:10px 0 0 0;
text-align: left;
}
.choose-us-floating-left{
  position: absolute;
  z-index: 4;
  width: 102.87px;
  top:0%;
  left:0%;
}
.choose-us-floating-right{
   position: absolute;
  z-index: 4;
  width: 102.87px;
  bottom:0%;
  right:0%;
}
.stats{
  background:url('/wp-content/themes/NZCleaning/assets/images/Mask group (1) copy.svg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 3;
  padding:0 0 50px 0;
}
/*.stats-overlay{
  height:100%;
  width: 100%;
  background: #D1F0C1;
  opacity:0.2;
}*/

.stats-wrapper{
  display: flex;
  justify-content: space-between;
  padding:0 0 50px 0;
  margin:30px 0 0 0;
}
.stats-wrapper-column{
  flex:0 0 19.8%;
  min-width: 19.8%;
  display: flex;
  justify-content: space-between;
}
.yellow-line{
  width: 20px !important;
  display: block !important;
}
.stats-img-column:nth-child(1){
  flex:0 0 10%;
  min-width: 10%;
}
.stats-img-column:nth-child(2){
  flex:0 0 89%;
  min-width: 89%;
}
.stats-wrapper-column:nth-child(1) .stats-img-column:nth-child(2), .stats-wrapper-column:nth-child(3) .stats-img-column:nth-child(2), .stats-wrapper-column:nth-child(5) .stats-img-column:nth-child(2){
  padding:20px 0 0 0;
}
.stats-wrapper-column:nth-child(2) .stats-img-column:nth-child(2), .stats-wrapper-column:nth-child(4) .stats-img-column:nth-child(2){
  padding:70px 0 0 0;
}
.stats-wrapper-column img{
  display: block;
  width: 50px;
}
.stats-wrapper-column span{
  display: block;
  font-family: Canela Deck Trial;
font-weight: 700;
font-size: 60px;
line-height: 100%;
letter-spacing: 0%;
color:#008A50;
margin:20px 0 0 0;
}
.stats-wrapper-column p{
  display: inline-block;
  font-family: Outfit;
font-weight: 600;
font-size: 18px;
line-height: 100%;
letter-spacing: 0%;
vertical-align: bottom;
color:#1A1A1A;
}
.stats-wrapper-column p span{
  display: block;
  font-family: Outfit;
font-weight: 600;
font-size: 18px;
line-height: 141%;
letter-spacing: 0%;
color:#1A1A1A;
margin:0;
}
.stats-floating-left{
    position: absolute;
    z-index: 4;
    bottom: 0%;
    left: 0%;
    transform: rotate(155deg);
}
.stats-floating-right {
    position: absolute;
    z-index: 4;
    top: 0%;
    right: 0%;
    transform: rotate(180deg);
  }

.services{
  padding: 50px 0 100px 0; 
  position: relative;
  z-index: 3;
}
.services-slider-wrapper .glide__slide {
  background: #ddd;
  padding: 20px;
  text-align: center;
  font-size: 24px;
  border: 2px solid #FFD447;
  border-radius: 40px;
background: linear-gradient(152.06deg, #FFD447 -27.66%, #E6F6DE 61.5%);
margin:30px 0 0 0;
}
.services-slider-wrapper .glide__arrow {
  cursor: pointer;
  margin: 0 5px;
  top:113%;
  border-radius: 100%;
}
.services-slider-wrapper .glide__arrow--left{
  background:url('/wp-content/themes/NZCleaning/assets/images/Vector copy 3.svg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 36px;
  height:36px;
  left:10%;
}
.services-slider-wrapper .glide__arrow--right{
  background:url('/wp-content/themes/NZCleaning/assets/images/Vector copy 4.svg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 36px;
  height:36px;
  right:10%;
}
.services-slider-wrapper .glide__bullet {
  background-color: #bbb;
  border: none;
  border-radius: 50%;
  display: inline-block;
  height: 12px;
  width: 12px;
  margin: 4px;
  cursor: pointer;
}
.services-slider-wrapper .glide__arrow--left{
  background: ;
}
.services-slider-wrapper .glide__bullet--active {
  background-color: #008A50;
}
.services-slider-wrapper .glide-bullet{
  background: #DEDEDE;
}

.service-img-wrapper img{
  display: block;
  width: 100%;
}
.services-slider-wrapper h3 {
    display: block;
    font-family: Outfit;
    font-weight: 500;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0%;
    color: #1A1A1A;
    text-align: left;
    padding: 0 150px 20px 0;
}
.services-slider-wrapper a, .blog-yellow-btn{
  text-decoration: none !important;
  border:2px solid #FFD447;
  padding:5px 10px;
  background: #FFF3CC;
  font-family: Outfit;
font-weight: 600;
font-size: 16px;
line-height: 100%;
letter-spacing: 0%;
color:#1A1A1A;
display: flex !important;
justify-content: space-between;
align-items: center;
border-radius: 36px;
}
.services-slider-wrapper a img, .blog-yellow-btn img{
  display: inline-block;
  width: 42px;
}
.glide__bullets {
    position: absolute;
    z-index: 2;
    bottom: -14% !important;
    left: 50%;
    display: inline-flex;
    list-style: none;
    transform: translateX(-50%);
}
.services-floating-right{
  position: absolute;
  right:0%;
  top:0%;
  z-index: 4;
}
/*.glide__bullet glide__bullet--active{
  background: url('/wp-content/themes/NZCleaning/assets/images/Group 27.svg');
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
    border-radius: 50%;
    display: inline-block;
    height: 12px;
    width: 12px;
    margin: 4px;
    cursor: pointer;
}*/
.sectors{
  padding:50px 0 50px 0;
  position: relative;
  z-index: 2;
  background: #D1F0C1;
}
.sectors .container{
  max-width: 1370px;
    margin: 0 auto;
    padding: 0 15px;
}
.sectors-wrapper{
  display: flex;
  justify-content: space-between;
  flex-wrap:wrap;
  padding: 200px 0 0 0;
}
.sectors-wrapper-column{
  flex:0 0 32%;
  min-width: 32%;
  padding: 70px 0 0 0;
}
.sectors-wrapper-column:nth-child(2), .sectors-wrapper-column:nth-child(5), .sectors-wrapper-column:nth-child(8), .sectors-wrapper-column:nth-child(11){
  margin:-85px 0 0 0;
}
.sectors-wrapper-column:nth-child(3), .sectors-wrapper-column:nth-child(6), .sectors-wrapper-column:nth-child(9){
  margin:-170px 0 0 0;
}
.sectors-head-wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
}
.sectors-head-wrapper-column:nth-child(1){
  flex:0 0 79%;
  min-width: 79%;
}
.sectors-head-wrapper-column:nth-child(2){
  flex:0 0 19%;
  min-width: 19%;
}
.sectors-head-wrapper-column:nth-child(2) a{
  border-radius: 10px;
  background: #008A50;
  width:55px;
  height:55px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sectors-head-wrapper-column:nth-child(2) a img{
  display: block;
  width: 24.75px;
}
.sectors-wrapper-column h3{
  display: block;
  font-family: Canela Deck Trial;
font-weight: 500;
font-size: 32px;
line-height: 38px;
letter-spacing: 0%;
vertical-align: middle;
color:#008A50;
}
.sectors-wrapper-column p{
  display: block;
  font-family: Outfit;
font-weight: 400;
font-size: 16px;
line-height: 17px;
letter-spacing: 0px;
text-align: left;
color:#000000;
padding: 10px 0 20px 0;
}
.sector-img-wrapper{
  position: relative;
  z-index: 2;
}
.sector-img-wrapper img:nth-child(1) {
    display: block;
    width: 98%;
    position: relative;
    z-index: 2;
}
.sector-img-shadow {
    position: absolute !important;
    top: 2%;
    right: 0%;
    z-index: 1 !important;
    width: 100%;
}
.testimonials{
  padding:50px 0 80px 0;
  background: #fcfcfc;
  position: relative;
  z-index: 3;
}
.testimonials-slider-wrapper{
padding:70px 0 0 0;
}
.testimonials-slider-wrapper .glide__slide {
    padding: 30px;
    text-align: center;
    margin: 30px 0;
}
.testimonials-slider-wrapper .glide__slide{
    background-image: url("/wp-content/themes/NZCleaning/assets/images/Rectangle 42.svg");
    padding: 25px 45px 45px 45px;
    background-position: center;
    background-size: 87%;
    background-repeat: no-repeat;
    background-color:white;
}
.testimonials-slider-wrapper .glide__slide:hover{
    background: url("/wp-content/themes/NZCleaning/assets/images/Rectangle 44.svg");
    padding: 25px 45px 45px 45px;
    background-position: center;
    background-size: 96%;
    background-repeat: no-repeat;
}
.testimonials-slider-wrapper .glide__slide .profile {
    display: block;
    width: 70px;
    margin: -50px auto 0 auto;
}
.testimonials-slider-wrapper .glide__slide h3 {
    font-family: 'Canela Deck Trial';
    font-weight: 500;
    font-size: 22px;
    line-height: 20px;
    text-align: center;
    text-transform: capitalize;
    color: #292929;
    padding: 20px 0 0 0;
}
.testimonials-slider-wrapper .glide__slide span {
  font-family: 'Outfit';
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  text-transform: capitalize;
  color: #292929;
}
.testimonials-slider-wrapper .glide__slide p {
  font-family: 'Outfit';
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  text-transform: capitalize;
  color: #292929;
  padding:20px 0 0 0;
}
.testimonials-slider-wrapper .glide__slide .rating {
    display: block;
    width: 134px;
    margin: 30px auto 0 auto;
}
.testimonials-slider-wrapper .glide__arrow {
  cursor: pointer;
  margin: 0 5px;
  top:107%;
  border-radius: 100%;
}
.testimonials-slider-wrapper .glide__arrow--left{
  background:url('/wp-content/themes/NZCleaning/assets/images/Vector copy 3.svg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 36px;
  height:36px;
}
.testimonials-slider-wrapper .glide__arrow--right{
  background:url('/wp-content/themes/NZCleaning/assets/images/Vector copy 4.svg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 36px;
  height:36px;
}
.testimonials-slider-wrapper .glide__bullets{
  bottom:-10% !important;
}
.testimonials-slider-wrapper .glide__bullet {
  background-color: #bbb;
  border: none;
  border-radius: 50%;
  display: inline-block;
  height: 12px;
  width: 12px;
  margin: 4px;
  cursor: pointer;
  bottom: -10% !important;
}
.testimonials-slider-wrapper .glide__arrow--left{
  background: ;
}
.testimonials-slider-wrapper .glide__bullet--active {
  background-color: #008A50;
}
.testimonials-slider-wrapper .glide-bullet{
  background: #DEDEDE;
}
.testimonials-floating-right{
  position: absolute;
  z-index: 4;
  top:-80%;
  right:0%;
}
.testimonials-floating-left{
 position: absolute;
  z-index: 4;
  bottom:0%;
  left:0%; 
}
.blogs{
  padding:70px 0 90px 0;
   background:url('/wp-content/themes/NZCleaning/assets/images/Background.svg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 3 ;
}
.blogs-wrapper{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px 0 0 0;

}
.blogs-wrapper-column{
   flex:0 0 32%;
  min-width: 32%;
  border-radius: 32px;
  overflow: hidden;
}
.blogs-wrapper-column:nth-child(odd){
  background: white;
  padding: 0;
}
.blogs-wrapper-column:nth-child(even){
  background: white;
  padding: 0;
}
.blogs-wrapper-column:hover{
  background: transparent;
  border:3px solid #008A50;

}
.blogs-image img{
  display: block;
  width: 100%;
  height:296px;
  object-fit: cover;
  border-radius: 27px;
}
.meta-wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 5px 15px 5px;
}
.meta-wrapper span{
  display: block;
  font-family: Outfit;
font-weight: 400;
font-size: 18px;
line-height: 100%;
letter-spacing: 0%;
color:#666666;
padding:0 8px;
}
.blog-content {
    padding: 20px;
}
.blogs-wrapper-column a{
  display: block;
  text-decoration: none;
  font-family: Canela Deck Trial;
font-weight: 700;
font-size: 22px;
line-height: 120%;
letter-spacing: 0%;
text-align: center;
color:#111D15;
}
.blogs-wrapper-column p{
  display: block;
  font-family: Outfit;
font-weight: 400;
font-size: 18px;
line-height: 150%;
letter-spacing: 0%;
text-align: center;
color:#666666;
padding: 20px;
}
.blog-btn-wrapper{
  padding:20px 0 0px 0;
  border-top:1px solid #D8D8D8;
}
.blog-btn-wrapper a{
  display: block;
  font-family: Outfit;
font-weight: 500;
font-size: 16px;
leading-trim: Cap height;
line-height: 33px;
letter-spacing: 0%;
text-decoration: underline;
text-decoration-style: solid;
text-decoration-offset: 0%;
text-decoration-thickness: 0%;
color:#666666;
}
.blogs-floating-left{
  position: absolute;
  left:0%;
  top:30%;
  z-index: 4;
}
.blogs-floating-right{
  position: absolute;
  right:0%;
  bottom:-10%;
  z-index: 3;
}
.contact{
  padding:50px 0;
  background: #FBFBFB;
  position: relative;
  z-index: 2;
}
.contact-wrapper{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.contact-wrapper-column{
  flex: 0 0 47%;
  min-width: 47%;
}
.contact-wrapper-column span{
  display: block;
  font-family: Outfit;
font-weight: 400;
font-size: 16px;
line-height: 120%;
letter-spacing: 0%;
color:#111D15;
}
.contact-wrapper-column h2{
  font-family: Canela Deck Trial;
font-weight: 700;
font-size: 50px;
line-height: 120%;
letter-spacing: 0%;
color:#008A50;
}
.contact-wrapper-column:nth-child(1) h2{
  margin:0 0 60px 0;
}
.contact-wrapper-column p{
  display: block;
  font-family: Outfit;
font-weight: 400;
font-size: 16px;
line-height: 150%;
letter-spacing: -1%;
color:#666666;
padding: 20px 0 20px 0;
}
.contact-info-btn{
  text-decoration: none;
  display: flex;
  padding: 10px;
  border-radius: 92px;
  border:2px solid #008A50;
  background: white;
  margin:15px 0;
  align-items: center;
}
.contact-info-btn img{
  display: flex;
  width: 64px;
  margin:0 10px 0 0;
}
.contact-info-btn span{
  display: block;
font-family: Outfit;
font-weight: 400;
font-size: 20px;
line-height: 120%;
letter-spacing: 0%;
color: #666666;

}
.contact-info-btn span strong{
  display: block;
  font-family: Outfit;
font-weight: 500;
font-size: 20px;
line-height: 100%;
letter-spacing: 3%;
color:#111D15;
margin:0 0 5px 0;
}
.contact-form-wrapper{

}
.contact-form-wrapper input{
  border:2px solid #008A50;
  border-radius:54px;
  padding:20px;
  width: 100%;
  margin:5px 0;
}
.contact-form-wrapper input::placeholder{
  font-family: Outfit;
font-weight: 400;
font-size: 16px;
line-height: 100%;
letter-spacing: 0%;
color:#666666;
}
.contact-form-wrapper textarea{
  border:2px solid #008A50;
  border-radius:20px;
  padding:20px;
  width: 100%;
  margin:5px 0;
  height:120px;
}
.contact-form-wrapper textarea::placeholder{
  font-family: Outfit;
font-weight: 400;
font-size: 16px;
line-height: 100%;
letter-spacing: 0%;
color:#666666;

}
.submit-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 0 0px 0 0;
    margin: -60px 0 0 0px;
}
.submit-wrapper .wpcf7-submit{
 /* background:url('/wp-content/themes/NZCleaning/assets/images/Background.svg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;*/
  background: #FFD447;
  border:0px solid #008A50 !important;
  border-radius:100% !important;
  padding:0 !important;
  width: 50px !important;
  height: 50px !important;
  margin:-125px 0 0 0 !important;
  position: relative;
  z-index: 3;
  cursor: pointer;
}
.contact-form-wrapper p{
  padding:0 !important;
}
.faq{
  padding: 50px 0;
  background:#D1F0C1;
  margin: 0 0 50px 0;
  position: relative;
  z-index: 3;
}
.faq-wrapper{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-wrapper-column{
  flex:0 0 49%;
  min-width: 49%;
}
.faq .span-holder span{
  text-align: left !important;
}
.faq .yellow-bar{
  margin:7px auto 7px 0;
}
.faq h2 {
    text-align: left !important;
    line-height: 60px !important;
    padding: 0 150px 0 0;
    font-weight: 700;
}
.faq p{
  text-align: left !important;
  padding: 20px 0 0 0 !important;
}
  .panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .accordion.active + .panel {
    /* Optional styling when active */
  }
.accordion {
  background-color: transparent;
  color: #008A50;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  transition: 0.4s;
  font-family: Canela Deck Trial;
font-weight: 500;
font-size: 22px;
line-height: 160%;
letter-spacing: 0%;
border-top:1px solid #FCFCFC;
display: flex;
justify-content: space-between;
}
.accordion:nth-child(1){
  border-top:0px solid white !important;
}
.panel {
  padding: 0 18px;
   background-color: transparent;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
  padding: 0 0 0 20px;
}
.panel p{
  display: block;
  font-family: Outfit;
font-weight: 400;
font-size: 16px;
line-height: 160%;
letter-spacing: 0%;
color:#1A1A1A;
padding: 0 0 10px 0 !important;
}
.faq-floating-img-left{
  position: absolute;
  z-index: 4;
  top:-25%;
  left:0%;
  width: 133px;
}
.faq-floating-img-right{
  position: absolute;
  z-index: 4;
  bottom:-17%;
  right:0%;
  width: 159px;
}
.newsletter{
margin:0 0 -130px 0;
}
.newsletter .container{
  padding:50px;
  border-radius: 50px;
  border:2px solid #FFD447;
  background: #FFF3CC;
  max-width: 987px;
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.newsletter h2{
  display: block;
  font-family: Canela Deck Trial;
font-weight: 500;
font-size: 55px;
line-height: 100%;
letter-spacing: -3%;
text-transform: capitalize;
color:#008A50;
text-align: center;
}
.newsletter p{
  display: block;
  font-family: Outfit;
font-weight: 400;
font-size: 24px;
line-height: 25px;
letter-spacing: -3%;
text-align: center;
text-transform: capitalize;
color:#666666;
}
.newsletter .wpcf7-submit{
  background: #FFD447;
  border:0px solid #008A50 !important;
  border-radius:100% !important;
  padding:0 !important;
  width: 50px !important;
  height: 50px !important;
  position: relative;
  z-index: 3;
}
.newsletter-form-wrapper{
  position: relative;
  z-index: 3;
}
.newsletter-submit-wrapper{
  position: absolute;
  right:4.1%;
  top:24%;
  z-index: 4;
}
.newsletter .wpcf7-spinner{
display: block;
}
.newsletter{
  padding:0 30px;
  
}
.newsletter p{
  padding:10px 0 !important;
}
.newsletter input{
  display: block;
  padding:20px;
  background:white;
  border:1px solid #FFD447;
  border-radius: 135px;
  width: 90%;
  margin:20px auto 0 auto;
}
.newsletter input::placeholder{
  font-family: Outfit;
font-weight: 400;
font-size: 16px;
line-height: 100%;
letter-spacing: -3%;
vertical-align: middle;
text-transform: capitalize;
color:#666666;
}
.newsletter-floating-right{
position: absolute;
top:0%;
right:0%;
z-index: 4;
}
.newsletter-floating-left {
    position: absolute;
    top: 30%;
    left: 2%;
    z-index: 4;
}
.footer{
  padding: 180px 0 50px 0;
  background:url('/wp-content/themes/NZCleaning/assets/images/image32.svg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.footer-wrapper{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px 0 0 0;
}
.footer-wrapper-column:nth-child(1){
  flex:0 0 29%;
  min-width: 29%;
}
.footer-wrapper-column:nth-child(2), .footer-wrapper-column:nth-child(3){
  flex:0 0 16.5%;
  min-width: 16.5%;
}
  
.footer-wrapper-column:nth-child(1) h3, .footer-wrapper-column:nth-child(2) h3, .footer-wrapper-column:nth-child(3) h3, .footer-wrapper-column:nth-child(4) h3{
  display: block;
  font-family: Outfit;
font-weight: 700;
font-size: 24px;
line-height: 100%;
letter-spacing: 0%;
color:#008A50; 
text-transform: uppercase;
}

.footer-wrapper-column ul{
  list-style: none;
  margin: 0;
  padding: 30px 0 0 0;
}
.footer-wrapper-column ul li{
padding:8px 0;
}
.footer-wrapper-column:nth-child(1) ul li a{
text-decoration: none;
display: flex;
font-family: Outfit;
font-weight: 500;
font-size: 17px;
line-height: 100%;
letter-spacing: 0%;
color:#1A1A1A;
margin: 5px 0;
}
.footer-wrapper-column:nth-child(2) ul li a, .footer-wrapper-column:nth-child(3) ul li a{
text-decoration: none;
display: flex;
font-family: Outfit;
font-weight: 500;
font-size: 18px;
line-height: 100%;
letter-spacing: 0%;
color:#1A1A1A;
margin:8px 0;
}
.footer-wrapper-column ul li a img{
display: inline-block;
width: 16px;
margin:0 10px 0 0;
}
.footer-location{
  padding:0 100px 0 0;
}
.footer-wrapper-column:nth-child(4) p{
  display: block;
font-family: Outfit;
font-weight: 400;
font-size: 12px;
line-height: 25px;
letter-spacing: -3%;
text-transform: capitalize;
color:#000000;
padding: 0 !important;
}
.cert-img-wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cert-img-wrapper-column{
  flex:0 0 49%;
  min-width: 49%;
  padding: 20px 0;
}

.cert-img-wrapper-column img{
  display: block;
  width: 60px;
}


.copyrights{
  
}
.copyrights-wrapper{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding:20px;
  border-radius: 110px;
  background: white;
  margin:-40px 0 0 0;
}
.copyrights-wrapper-column:nth-child(1){
  flex:0 0 49%;
  min-width: 49%;
}
.copyrights-wrapper-column:nth-child(2){
  flex:0 0 49%;
  min-width: 49%;
  display: flex;
  justify-content: flex-end;
}
.copyrights-wrapper p{
  display: block;
  font-family: Outfit;
font-weight: 400;
font-size: 16px;
line-height: 120%;
letter-spacing: 0%;
text-align: center;
color:#008A50;
}
.copyrights-wrapper p strong{
  font-weight: 700;
}
.copyrights-wrapper ul{
  list-style: none;
  display: flex;
  margin:0;
  padding: 0;
}
.copyrights-wrapper ul li img{
  display: inline-block;
  width: 36px;
  margin:0 5px;
}


/*ABOUT PAGE STARTS HERE*/
.about-us-banner{
    padding: 50px 0 0 0;
    position: relative;
    z-index: 3;
  }
  .about-us-banner-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .about-us-banner-wrapper-column{
    flex:0 0 40%;
    min-width: 49%;
  }
  .about-us-banner-wrapper-column:nth-child(2){
    display: flex;
    align-items: flex-end;
  }
  .about-us-banner-wrapper-column h1{
    display: block;
  font-family: Canela Deck Trial;
  font-weight: 500;
  font-size: 55px;
  line-height: 130%;
  letter-spacing: 0%;
  color:#008A50;
  }
  .about-us-banner-wrapper-column p{
    display: block;
    font-family: Outfit;
font-weight: 400;
font-size: 26px;
line-height: 120%;
letter-spacing: 0%;
color:#666666;
  }
  .about-us-banner-wrapper-columnn img{
    display: block;
    width: 100%;
  }
  .commitment{
  padding: 50px 0;
  background: url('/wp-content/themes/NZCleaning/assets/images/image 1 (1).svg');
    background-size:cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 3;
  }
  .commitment-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .commitment-wrapper-column{
    flex:0 0 49%;
    min-width: 49%;
  }
  .commitment-wrapper-column img{
    display: block;
    width: 100%;
  }
  .commitment-wrapper-column h2{
    display: block;
    font-family: Canela Deck Trial;
font-weight: 500;
font-size: 67px;
line-height: 130%;
letter-spacing: 0%;
color:#008A50;
  }
  .commitment-wrapper-column p{
    display: block;
    font-family: Outfit;
font-weight: 400;
font-size: 18px;
line-height: 160%;
letter-spacing: 0%;
color:#666666;
  }
  .comittment-floating-left{
    position: absolute;
    top:-17%;
    left: 0%;
    z-index: 4;
  }
  .about-stats{
    padding: 50px 0;
    background: linear-gradient(152.06deg, #FFD447 -27.66%, #E6F6DE 61.5%);
    position: relative;
    z-index: 3;
  }
  .about-stats-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .about-stats-wrapper-column{
    flex:0 0 24%;
    min-width: 24%;
    display: flex;
    justify-content: center;
  }
  .about-stats-wrapper-column img{
    display: inline-block;
    width: 53px;
  }
  .about-stats-wrapper-column span{
    display: block;
    font-family: Canela Deck Trial;
font-weight: 700;
font-size: 36px;
line-height: 100%;
letter-spacing: 0%;
text-align: left;
color:#008A50;
  }
  .about-stats-wrapper-column p{
    display: block;
    font-family: Outfit;
font-weight: 600;
font-size: 18px;
line-height: 100%;
letter-spacing: 0%;
text-align: left;
color:#008A50;
  }
  .stats-text-wrapper{
    display: flex;
    flex-direction: column;
    padding:0 0 0 5px;
  }
  .about-stats-floating-right{
    position: absolute;
    bottom:-100%;
    right: 0%;
    z-index: 4;
  }
  .purpose{
    padding: 50px 0;
  }
  .purpose-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .purpose-wrapper-column{
    flex:0 0 49%;
    min-width: 49%;
  }
  .purpose-wrapper-column h2{
    text-align: left !important;
  }

  .purpose-wrapper:nth-child(1) img{
    display: block;
    width: 100%;
  }
  .purpose-heading-wrapper{
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .purpose-icon-holder{
    padding:5px 20px;
    background: #008A50;
    border-radius: 40px;
  }
  .purpose-heading-wrapper h3{
    display: inline-block;
    font-family: Canela Deck Trial;
font-weight: 500;
font-size: 32px;
line-height: 140%;
letter-spacing: 0%;
color:#020618;
padding: 0 0 0 10px;
  }
  .purpose-para-wrapper{
    background: #D1F0C1;
    padding: 50px;
    border-radius: 20px;
    margin: 20px 0 0 0;
  }
  .purpose-para-wrapper p{
display: block;
font-family: Outfit;
font-weight: 400;
font-size: 18px;
line-height: 160%;
letter-spacing: 0%;
color:#1A1A1A;
text-align: left;
  }
  .vision-wrapper{
    padding:30px 0 0 0;
  }
  .team{
  background: url('/wp-content/themes/NZCleaning/assets/images/Background copy.svg');
    background-size:cover;
    background-repeat: no-repeat;
    padding: 50px 0;  
    position: relative;
    z-index: 3;
  }
  .team-slider-wrapper{
    padding: 30px 0 0 0;
  }
  .team-rating{
    padding: 10px 0 0 0;
  }
  .team .glide__slide{
    border-radius: 33px;
    padding: 0;
    background: white;
    overflow: hidden;
  }
  .team-img-wrapper img{
    display: block;
    width: 100%;
  }
  .team-info-wrapper{
    padding: 20px 110px 20px 20px;
  }
  .team-info-wrapper h3{
    display: block;
    font-family: Canela Deck Trial;
font-weight: 500;
font-size: 24px;
line-height: 120%;
letter-spacing: 0%;
color:#1A1A1A;
  }
  .team-info-wrapper p{
    display: block;
    font-family: Outfit;
font-weight: 400;
font-size: 16px;
line-height: 150%;
letter-spacing: 0%;
color:#666666;
text-align: left;
padding: 10px 0 0 0;
  }
  .team-floating-left{
    position: absolute;
    z-index: 4;
    top:-6%;
    left:0%;
    width: 160px;
  }
  .team-floating-right{
    position: absolute;
    z-index: 4;
    bottom:-20%;
    right:0%;
    width: 263px;
  }
  .service-form{
    padding:0 50px;
    background: url('/wp-content/themes/NZCleaning/assets/images/image 4.svg');
    background-size:cover;
    background-repeat: no-repeat;
    padding: 50px 0;
  }
  .service-form .container{
    border: 2px solid #FFFFFFBF;
    backdrop-filter: blur(14px);
    padding:36px;
    background: #FFFFFF66;
    border-radius: 40px;
    max-width: 1038px;
  }
  .service-form h2{
    display: block;
    font-family: Canela Deck Trial;
font-weight: 700;
font-size: 34px;
line-height: 140%;
letter-spacing: 0%;
text-align: center;
color:#020618;
  }
  .service-form-wrapper{
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .service-form input, .service-form select{
    background:#FFFFFF;
    padding: 15px 30px;
    width: 960px;
    border-radius: 78px;
    margin: 10px auto 0 auto;
    border:none;
        font-family: Outfit;
font-weight: 400;
font-size: 18px;
line-height: 120%;
letter-spacing: 0%;
color:#666666;
  }
  .service-form input::placeholder{
    font-family: Outfit;
font-weight: 400;
font-size: 18px;
line-height: 120%;
letter-spacing: 0%;
color:#666666;

  }
  .service-submit-wrapper{
    padding: 10px 0 0 0;
  }
  .service-form-wrapper .wpcf7-submit{
    margin: 10px auto 0 auto;
    background: #FFF3CC;
    border: 2px solid #FFD447;
  }
  .service-form-wrapper .wpcf7-spinner{
    display: block;
  }
  .career{
    padding:50px 0 100px 0;
    position: relative;
    z-index: 3;
  }
  .career .container{
    max-width: 1143px;
    border:2px solid #008A50;
    background: linear-gradient(152.06deg, #FFD447 -27.66%, #E6F6DE 61.5%);
    border-radius: 60px;
    padding: 30px;
  }
  .career-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .career-wrapper-column:nth-child(1){
    flex:0 0 34%;
    min-width: 34%;
  }
  .career-wrapper-column:nth-child(2){
    flex:0 0 64%;
    min-width: 64%;
  }
  .career-wrapper-column img{
    display: block;
    width: 100%;
  }
  .career-wrapper-column h2{
    display: block;
    font-family: Canela Deck Trial;
font-weight: 700;
font-size: 42px;
line-height: 140%;
letter-spacing: 0%;
color:#008A50;
  }
  .career-wrapper-column p{
    display: block;
    font-family: Outfit;
font-weight: 400;
font-size: 21px;
line-height: 140%;
letter-spacing: 0%;
padding:20px 0 10px 0;
  }
  .career-wrapper-column a {
    display: inline-block;
    font-family: Outfit;
font-weight: 500;
font-size: 16px;
line-height: 100%;
letter-spacing: -3%;
text-align: center;
padding: 18px 50px;
color: #1A1A1A;
background: #FFF3CC;
border: 2px solid #FFD447;
text-decoration: none;
border-radius: 30px;
  }
  .career-floating-left{
    position: absolute;
    z-index: 4;
    top:0%;
    left:0%;
    width: 146px;
  }
  .career-floating-right{
    position: absolute;
    z-index: 4;
    bottom:0%;
    right:0%;
    width: 133px;
  }
/*CONTACT PAGE ENDS HERE*/
/*SERVICES PAGE STARTS HERE*/
.we-offer{
    padding: 50px 0;
    position: relative;
    z-index: 3;
  }
  .we-offer h2{
    padding: 0 30px;
  }
  .we-offer-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .we-offer-wrapper-column{
    flex: 0 0 32%;
    min-width: 32%;
    padding: 20px;
    text-align: center;
    font-size: 24px;
    border: 2px solid #FFD447;
    border-radius: 40px;
    background: linear-gradient(152.06deg, #FFD447 -27.66%, #E6F6DE 61.5%);
    margin: 30px 0 0 0;
    height: 690px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    position: relative;
    z-index: 4;
  }
  .we-offer-wrapper-column:nth-child(8), .we-offer-wrapper-column:nth-child(9){
    display: none;
  }
  .we-offer-wrapper-column h3 {
    display: block;
    font-family: Canela Deck Trial;
font-weight: 500;
font-size: 32px;
line-height: 140%;
letter-spacing: 0%;
color:#008A50;
  }
  .we-offer-wrapper-column p{
    font-family: Outfit;
font-weight: 400;
font-size: 18px;
line-height: 160%;
letter-spacing: 0%;
padding: 0;
  }
  .we-offer-wrapper-column a{
    text-decoration: none !important;
    border: 2px solid #FFD447;
    padding: 5px 10px;
    background: #FFF3CC;
    font-family: Outfit;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #1A1A1A;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    border-radius: 36px;
  }
  .we-offer-wrapper-column a img{
    display: inline-block;
    width: 42px;
  }
  .process{
    padding:50px 0;
    position: relative;
    z-index: 3;
  }
  .process-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 0 120px;
  }
  .process-wrapper-column{
    flex: 0 0 32%;
    min-width: 32%;
    padding: 90px 40px 0 0;
    position: relative;
    z-index: 3;
  }
  .process-icon-wrapper{
    display: inline-block;
    background: #008A50;
    padding: 5px 20px;
    border-radius: 40px;
  }
  .process-wrapper-column h3{
    display: block;
    font-family: Canela Deck Trial;
font-weight: 700 !important;
font-size: 26px !important;
line-height: 140% !important;
letter-spacing: 0%;
color:#008A50 !important;
padding: 10px 0;
  }
  .process-wrapper-column p{
    display: block;
    font-family: Outfit;
font-weight: 400;
font-size: 22px !important;
line-height: 160% !important;
letter-spacing: 0%;
color: #1A1A1A;
text-align: left;
padding: 0;
  }
  .floating-arrow-right{
    position: absolute;
    top:30%;
    right:0%;
    z-index: 2;
    width: 70%;
  }
  .floating-arrow-down {
    position: absolute;
    top: 32%;
    right: 5%;
    z-index: 2;
    width: 52.3%;
    height: 108%;
}
.floating-arrow-left{
    position: absolute;
    top:27%;
    right:0%;
    z-index: 2;
    width: 70%;
  }
  /*SERVICES PAGE ENDS HERE*/
  /*CONTACT PAGE STARTS HERE*/
  .contact-form-grid{
    padding: 0 0 50px 0;
  }
  .contact-form-grid-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .contact-form-grid-wrapper-column{
    flex:0 0 49%;
    min-width: 49%;
  }
  .contact-form-grid-wrapper-column:nth-child(1){
    background:white;
  }
  .contact-form-grid-wrapper-column:nth-child(2){
    background: url('/wp-content/themes/NZCleaning/assets/images/Rectangle 849.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px;
  }
  .contact-form-grid-wrapper-column img{
    display: block;
    width: 100%;
  }
  .contact-form-para-wrapper{
    border: 5px solid #008A50;
    padding: 30px;
    border-radius: 40px;
    margin:20px 0 0 0;
  }
  .contact-form-para-wrapper p{
    display: block;
    font-family: Outfit;
font-weight: 400;
font-size: 18px;
line-height: 160%;
letter-spacing: 0%;
text-align: center;
color:#1A1A1A;
  }
.contact-form-grid-wrapper-column span{
  display: block;
  font-family: Outfit;
font-weight: 600;
font-size: 24px;
line-height: 100%;
letter-spacing: 0%;
color:#1A1A1A;
text-align: center;
}
.contact-form-grid-wrapper-column h2{ 
  display: block;
  font-family: Canela Deck Trial;
font-weight: 500;
font-size: 55px;
line-height: 110.00000000000001%;
letter-spacing: 0%;
text-align: center;
color: #008A50;
}
.contact-form-grid-wrapper-column:nth-child(2) p{
  display: block;
  font-family: Outfit;
font-weight: 400;
font-size: 16px;
line-height: 160%;
letter-spacing: 0%;
text-align: center;
color:#666666;
padding:10px 0;
} 
.submit-wrapper .wpcf7-submit{
    display: flex;
    justify-content: center;
    margin: -15px 0 0 0 !important;
}
.submit-wrapper .wpcf7-submit img{
  width: 60%;
}
.contact-faq{
  padding:50px 0;
}
.contact-faq-wrapper{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px 0 0 0;
}
.contact-faq-wrapper-column{
  flex:0 0 49%;
  min-width: 49%;
}
.contact-faq-wrapper-column:nth-child(1){
  background: #D1F0C1;
  border-radius: 40px;
  padding: 30px;
}
.contact-faq-wrapper-column:nth-child(2){
  background: white;
}
.contact-info-btn {
    padding: 5px !important;
    border: 0px solid #008A50 !important;
}
.contact-info-btn span strong{
  text-align: left !important;
}
.contact-wrapper-column:nth-child(1) h2{
  font-weight: 500 !important;
    font-size: 37px !important;
    line-height: 130% !important;
    margin: 0 0 20px 0 !important;
}
.panel p{
  text-align: left !important;
}
  /*CONTACT PAGE ENDS HERE*/
  /*SECTOR INTERNAL PAGE STARTS HERE*/
  .breadcrumb-banner{
    padding:130px 0;
    background: url('/wp-content/themes/NZCleaning/assets/images/Mask group copy 8.svg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items:center;
    text-align: center;
    position: relative;
    z-index: 3;
  }
  .breadcrumb-banner h1{
    display: block;
    font-family: Canela Deck Trial;
font-weight: 500;
font-size: 55px;
line-height: 130%;
letter-spacing: 0%;
text-align: center;
color:#008A50;
  }
  .breadcrumb-holder{
    display: flex;
    gap:5px;
    justify-content: center;
  }
  .breadcrumb-holder a{
    display: inline-block;
    font-family: Outfit;
font-weight: 600;
font-size: 26px;
line-height: 120%;
letter-spacing: 0%;
text-align: center;
color: #008A50;
text-decoration: none;
  }
  .sector-info{
    padding:50px 0;
    position: relative;
    z-index: 3;
  }
  .sector-stats-container{
     max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
    background: #008A50;
    border-bottom-radius:30px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    padding:50px;
    position: relative;
    z-index: 4;
  }
  .sector-stats .container{
    position: relative;
    z-index: 3;
  }
  .triangle-left{
    position: absolute;
    z-index: 2;
    top: 1.9%;
    left: 4%;
  }
  .triangle-right{
    position: absolute;
    z-index: 2;
    top: 1.9%;
    right: 4%;
  }
  .stats-text-wrapper{
    padding:0 0 0 10px;
  }
  .about-stats-wrapper{

  }
  .sector-stats-img{
    display: block;
    margin:-90px 0 0 0;
    position: relative;
    z-index: 3;
    width: 100%;
  }
  .three-steps{
    padding:50px 0;
    position: relative;
    z-index: 3;
  }
  .three-steps-wrapper{
    display: flex;
    justify-content: space-between;
    align-items:  flex-start;
    padding:50px 0 0 0;
  }
  .three-steps-wrapper-column{
    flex: 0 0 30%;
    min-width: 30%;
    border-radius: 30px;
     border:4px solid #008A50;
     padding: 80px 50px;
     position: relative;
     z-index: 4;
     background: white;
  }
  .three-steps-wrapper-column:nth-child(2){
    margin:180px 0 0 0;
  }
  .three-steps-wrapper-column:nth-child(3){
    margin:360px 0 0 0;
  }
  .three-steps-wrapper-column span{
    display: block;
    font-family: Canela Deck Trial;
font-weight: 500;
font-style: Medium;
font-size: 55px;
leading-trim: NONE;
line-height: 70px;
letter-spacing: 0%;
text-align: center;
color:#008A50;
  }
  .three-steps-wrapper-column  h3{
    display: block;
    font-family: Outfit;
font-weight: 600;
font-style: SemiBold;
font-size: 26px;
leading-trim: NONE;
line-height: 110.00000000000001%;
letter-spacing: 0%;
text-align: center;
color:#1A1A1A;
padding: 30px 0 20px 0;
  }
  .three-steps-wrapper-column p{
    display: block;
    font-family: Outfit;
font-weight: 500;
font-style: Medium;
font-size: 19px;
leading-trim: NONE;
line-height: 110.00000000000001%;
letter-spacing: 0%;
text-align: center;
color:#1A1A1A;
  }
  .three-steps .container{
    position: relative;
    z-index: 2;
  }
  .three-steps-floating-mid{
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%) !important;
    width: 920px;
  }

  /*SECTOR INTERNAL PAGE ENDS HERE*/
  /*SERVICES DETAIL PAGE STARTS HERE*/
  .space-for-success{
    padding: 50px 0;
  }
  .space-for-success-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .space-for-success-wrapper-column{
    flex: 0 0 49%;
    min-width: 49%;
    position: relative;
    z-index: 3;
  }
  .space-for-success-wrapper-column h2{
    display: block;
    font-family: Canela Deck Trial;
font-weight: 500;
font-size: 55px;
line-height: 110.00000000000001%;
letter-spacing: 0%;
color: #008A50;
padding: 10px 0 0 0;
  }
  .space-for-success-wrapper-column p{
    display: block;
    font-family: Outfit;
font-weight: 400;
font-size: 24px;
line-height: 150%;
letter-spacing: 0%;
color:#666666;
  }
  .space-for-success-wrapper-column ul{

  }
  .space-for-success-wrapper-column li{
    font-family: Outfit;
font-weight: 400;
font-size: 26px;
line-height: 150%;
letter-spacing: 0%;
color:#666666;
  }
  .space-for-success-floating{
    position: absolute;
    z-index: 4;
    top:50%;
    left:42%;
    transform: translate(-50%, -50%) !important;
    background: url('/wp-content/themes/NZCleaning/assets/images/Rectangle 866.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 249px;
    height: 213px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .space-for-success-floating h3{
    display: block;
    font-family: Canela Deck Trial;
font-weight: 500;
font-size: 20px;
line-height: 29px;
letter-spacing: 0%;
text-align: center;
vertical-align: middle;
color:#FCFCFC;
  }
  .space-for-success-floating img{
    display: block;
    width: 145px;
    text-align: center;
    margin: 0 auto;
    padding: 10px 0;
  }
  .space-for-success-floating span{
    display: block;
    font-family: Canela Deck Trial;
font-weight: 500;
font-size: 20px;
line-height: 40px;
letter-spacing: 0%;
text-align: center;
vertical-align: middle;
  }
  .service-info{
    background: #D1F0C1;
    padding: 50px 0;
    position: relative;
    z-index: 3;
  }
  .service-info-wrapper{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .service-info-wrapper-column{
    flex: 0 0 50%;
    min-width: 50%;
  }
  .service-info-wrapper-column img{
    display: block;
    width: 90%;
  }
  .service-info-wrapper-column h2{
    display: block;
    font-family: Canela Deck Trial;
font-weight: 500;
font-size: 67px;
line-height: 130%;
letter-spacing: 0%;
color: #008A50;
padding: 10px 0 0 0;
  }
  .service-info-wrapper-column p{
    display: block;
    font-family: Outfit;
font-weight: 400;
font-size: 26px;
line-height: 160%;
letter-spacing: 0%;
color: #666666;
  }
  .service-features-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 20px 0 0 0;
  }
  .service-features-wrapper-column{
    flex: 0 0 49%;
    min-width: 49%;
    background: white;
    border:4px solid #008A50;
    border-radius: 30px;
    margin:10px 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 10px;
    flex-direction: column;
    margin: 20px 0 0 0;
    height:200px;
  }
  .service-features-wrapper-column img{
    display: block;
    width: 45px;
    margin: 0 auto;
  }
  .service-features-wrapper-column p{
    display: block;
    font-family: Outfit;
font-weight: 400;
font-size: 26px;
line-height: 110.00000000000001%;
letter-spacing: 0%;
text-align: center;
color:#1A1A1A;
  }
  /*SERVICES DETAIL PAGE ENDS HERE*/
  /*BLOG PAGE STARTS HERE*/
  .upto-date{
    padding:50px 0;
    background: #D1F0C1;
  }
  .upto-date-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0 0 0;
    border:5px solid #008A50;
    border-radius: 60px;
  }
  .upto-date-wrapper-column{
    flex: 0 0 49%;
    min-width: 49%;
  }
  .upto-date-wrapper-column:nth-child(1){
    padding: 30px;
  }
  .upto-date-wrapper-column:nth-child(2) img{
    display: block;
    width: 100%;
    border-radius: 60px;
  }
  .upto-date-wrapper-column span{
  font-family: Outfit;
font-weight: 600;
font-style: SemiBold;
font-size: 28px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: 0%;
color: #1A1A1A;
  }
  .upto-date-wrapper-column h3{
    text-align: left !important;
  }
  .upto-date-wrapper-column p{
    display: block;
    font-family: Outfit;
font-weight: 400;
font-style: Regular;
font-size: 14px;
leading-trim: NONE;
line-height: 160%;
letter-spacing: 0%;
color:#565965;
text-align: left;
padding: 0;
  }
  .blog-btn-wrapper{
    border:none;
  }
  .blog-yellow-btn img{
    margin: 0 0 0 20px;
  }
  .blogs-wrapper-column{
    border:3px solid #008A50;
    border-radius: 30px;
  }
  .blog-tiles{
    padding:50px 0 0 0;
  }
  .blog-tiles-wrapper{
    display: flex;
    justify-content: space-between;
    padding: 50px 0 80px 0;
    flex-wrap: wrap;
  }
  .blog-tiles-wrapper-column{
    flex:0 0 24%;
    min-width: 24%;
    border:3px solid #008A50;
    border-radius: 30px;
    margin:20px 0 0 0;
  }
  .featured-image{
    display: block;
    width: 100%;
  }
  .blog-tiles-wrapper-column h4{
    display: inline-block;
    font-family: Outfit;
font-weight: 600;
font-style: SemiBold;
font-size: 14px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: 0%;
text-transform: capitalize;
color:#1A1A1A;
padding: 0 0 0 7px;
  }
  .blog-tiles-wrapper-column h4 span{
    display: block;
    font-family: Outfit;
font-weight: 400;
font-style: Regular;
font-size: 12px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: 0%;
text-transform: capitalize;
color:#666666;
  }
  .blog-tiles-wrapper-column:nth-child(2) span{

  }
  .blog-tiles-wrapper-column h3{
    display: block;
    font-family: Canela Deck Trial;
font-weight: 500;
font-style: Medium;
font-size: 18px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: 0%;
color:#008A50;
padding: 10px 0 0 0;
  }
  .blog-tiles-wrapper-column p{
    display: block;
    font-family: Outfit;
font-weight: 400;
font-style: Regular;
font-size: 14px;
leading-trim: NONE;
line-height: 20px;
letter-spacing: 0%;
text-transform: capitalize;
color:#1A1A1A;
  }
  .blog-title{
    text-decoration: none;
    color:#008A50;
  }
  .blog-tiles-meta-wrapper{
    display: flex;
    justify-content: space-between;
    padding: 15px 0 0 0;
  }
  .blog-tiles-meta-wrapper-column:nth-child(1){
    flex:0 0 60%;
    min-width: 0 0 60%;
  }
  .blog-tiles-meta-wrapper-column:nth-child(2){
    flex: 0 0 40%;
    min-width: 0 0 40%;
    display: flex;
    justify-content: flex-end;
    margin: -60px 0 0 0;
  }
  .date-wrapper{
  background: url('/wp-content/themes/NZCleaning/assets/images/Rectangle 47.svg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 90px;
    height: 90px;
    padding: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .featured-img{
    display: block;
    width: 100%;
    height: auto !important;
    border-radius: 27px;
  }
  .date-wrapper span{
    display: block;
    color:white;
    font-family: Canela Deck Trial;
font-weight: 500;
font-style: Medium;
font-size: 20px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: 0%;
text-transform: capitalize;
text-align: center;
color:#FFFFFF;
  }
  .author-image{
    display: inline-block;
    width: 30px;
  }
.blog-tiles-wrapper-column p{
  display: block;
  font-family: Outfit;
font-weight: 400;
font-style: Regular;
font-size: 14px;
leading-trim: NONE;
line-height: 20px;
letter-spacing: 0%;
text-transform: capitalize;
color:#1A1A1A;
padding: 10px 0;
text-align: left;
}
.blog-tiles-content{
  padding:0 10px 20px 10px;
}
  /*BLOG PAGE ENDS HERE*/
@media  only screen and (max-width: 388px){

  .navbar{
    display: none;
  }
.mobile-navbar{
  display: flex;
  margin: 0 0 20px 0;
}
.mobile-buttons .blog-yellow-btn img{
  margin: 0 10px 0 0 ;
}
  .banner-wrapper{
    background: none;
  }
  .banner-wrapper-column{
    flex: 0 0 100%;
    min-width: 100%;
  }
  .banner-wrapper{
    display: flex;
    flex-direction: column;
    padding:0px 0;
  }
  .banner-wrapper-column:nth-child(1) {
        padding: 40px 25px;
    }
  .banner-wrapper-column:nth-child(2){
    display: none;
  }
  .banner-wrapper-column h1{
    font-size:40px;
    line-height: 50px;
  }
  .banner-list{
    padding:20px 0 0 0;
  }
  .banner-list ul{
    flex-direction: row;
    flex-wrap: wrap;
  }
  .banner-list ul li{
    padding:0;
  }
  .home-floating-div{
    display: none;
  }
  .span-holder span{
    font-size:20px;
    line-height: 32px;
  }
  .choose-us h2, .services h2, .sectors h2, .testimonials h2, .blogs h2, .footer h2, .team h2, .purpose-wrapper-column h2, .contact-faq h2,.we-offer h2, .process h2, .space-for-success-wrapper-column h2, .sector-info h2, .three-steps h2, .upto-date h2, .blog-tiles h2, .upto-date-wrapper-column h3, .blog-detail h2, .applicant-form h2{
    font-size: 35px;
    line-height: 40px;
  }
.choose-us p, .services p, .sectors p, .testimonials p, .blogs p, .footer p, .team p, .purpose-wrapper-column p, .contact-faq p, .we-offer p, .process p, .space-for-success-wrapper-column p, .sector-info p, .upto-date p, .blog-tiles p, .blog-detail p{
  font-size:18px;
  line-height: 25px;
  padding: 20px 0 0 0;
}
.choose-us-wrapper{
  display: flex;
  flex-direction: column;
  padding:340px 0 0 0 ;
}
.choose-us-wrapper-column{
  flex:0 0 100%;
  min-width: 100%;
}
.choose-us-centered-img {
        position: absolute;
        z-index: 3;
        border-radius: 100%;
        width: 300px;
        top: 16%;
        left: 49%;
        transform: translate(-50%, -50%) !important;
    }
.choose-us-wrapper-column{
  margin: 0 !important;
}
.choose-us-wrapper-column:nth-child(4) .choose-us-wrapper-column-bg, .choose-us-wrapper-column:nth-child(6) .choose-us-wrapper-column-bg{
  margin:0;
}
.choose-us-wrapper-column:nth-child(2){
  display: none;
}

.choose-us-wrapper-column:nth-child(5){
  display: none;
}
.choose-us-wrapper-column p{
  padding: 10px 0 0 0;
  margin: 0;
}
.choose-us-floating-img {
    position: absolute;
    left: 6.3%;
    top: 27%;
    z-index: 2;
    width: 49px;
}
.choose-us-floating-left {
    width: 63px;
}
.choose-us-floating-right {
    width: 70px;
}
.stats{
  height:auto;
}
.stats-wrapper{
  display: flex;
  flex-direction: column;
}
.stats-wrapper-column{
  flex: 0 0 100%;
  min-width: 100%;
  margin: 10px 0;
}
.stats-floating-right{
  width: 70px;
}
.stats-floating-left{
  width: 70px;  
}
.services-floating-right{
  width: 70px;
}
.services-floating-left{
  width: 70px;
}
.sectors-wrapper{
  display: flex;
  flex-direction: column;
  padding:20px 0 0 0;
}
.sectors-wrapper-column{
  flex:0 0 100%;
  min-width: 100%;
}
.sectors-head-wrapper {
  align-items: flex-start;
}
.sectors-wrapper-column:nth-child(2), .sectors-wrapper-column:nth-child(5), .sectors-wrapper-column:nth-child(8), .sectors-wrapper-column:nth-child(11){
  margin:0;
}
.sectors-wrapper-column:nth-child(3), .sectors-wrapper-column:nth-child(6), .sectors-wrapper-column:nth-child(9){
  margin: 0;
}
 .sectors-wrapper-column:nth-child(10){
  padding: 0;
 }
.sector-img-shadow {
    position: absolute !important;
    top: 14%;
    right: 0%;
    z-index: 1 !important;
    width: 100%;
}
.sector-img-wrapper img:nth-child(1) {
    padding: 30px 10px 0 0;
}

.testimonials-slider-wrapper .glide__slide .profile {
    display: block;
    width: 60px;
    margin: -30px auto 0 auto;
}
.testimonials-slider-wrapper .glide__slide .rating {
    display: block;
    width: 134px;
    margin: 20px auto 0 auto;
}
.testimonials-slider-wrapper .glide__slide:nth-child(odd) {
    background-size: 100%
}
.testimonials-floating-right {
    top: -16%;
    width: 160px;
}
.testimonials-floating-left{
  width: 70px;
}
.glide__bullets {
    bottom: -6% !important;
}
.testimonials-slider-wrapper .glide__arrow {
    top: 102.3%;
  }
  .blogs-wrapper{
    flex-direction: column;
  }
  .blogs-wrapper-column{
    flex:0 0 100%;
    min-width: 100%;
    margin:10px 0;
  }
  .blogs-floating-left {
    top: 7%;
    z-index: 4;
    width: 80px;
}
.blogs-floating-right {
    position: absolute;
    right: 0%;
    bottom: -2%;
    width: 70px;
}
.blogs-wrapper-column p{
  padding:20px 0;
}
  .contact-wrapper{
    display: flex;
    flex-direction: column;
  }
  .contact-wrapper-column{
    flex:0 0 100%;
    min-width: 100%;
  }
  .contact-wrapper-column:nth-child(1) h2, .contact-wrapper-column h2{
    margin: 0 20px 0 0;
    font-size: 35px;
    line-height: 40px;
  }
  .contact-wrapper-column{
    padding:20px 0 0 0;
  }
  .faq-wrapper{
    display: flex;
    flex-direction: column;
  }
  .faq-wrapper-column{
    flex:0 0 100%;
    min-width:100%;
  }
  .faq h2{
    padding: 0;
    font-size: 35px;
    line-height: 40px !important;
  }
  .faq-wrapper-column p{
    font-size: 18px;
  }
  .accordion{
    font-size: 20px;
  }
  .faq-wrapper-column:nth-child(2){
    padding:30px 0 0 0;
  }
  .faq-floating-img-left{
    width: 70px;
    top:-5%;
  }
  .faq-floating-img-right {
    bottom: -3%;
    width: 90px;
}
  .newsletter {
    padding: 0 10px;
}

  .newsletter .container{
    padding: 20px;
  }
  .newsletter h2{
  font-size: 35px;
  position: relative;
  z-index: 5;
}
.newsletter-floating-right {
    position: absolute;
    top: 0%;
    right: 0%;
    z-index: 4;
    width: 30%;
}
.newsletter-floating-left {
    position: absolute;
    top: 19%;
    left: 2%;
    z-index: 4;
}
.newsletter-submit-wrapper {
    position: absolute;
    right: 3.1%;
    top: 6%;
    z-index: 5;
}
.newsletter input{
  margin:0 auto 0 auto;
  position: relative;
  z-index: 4;
}
.newsletter p{
  font-size: 22px;
  position: relative;
  z-index: 5;
}
.contact-info-btn span{
  text-align: left !important;
  line-height: 25px;
}
  .footer-wrapper{
    display: flex;
    flex-direction: column;
  }
  .footer-wrapper-column:nth-child(1){
    flex:0 0 100%;
    min-width: 100%;
  }
  .footer-wrapper-column:nth-child(2), .footer-wrapper-column:nth-child(3){
     flex:0 0 100%;
    min-width: 100%;
  }
  .footer-wrapper-column:nth-child(4){
    flex:0 0 100%;
    min-width: 100%;
  }
  .copyrights-wrapper{
    display: flex;
    flex-direction: column;
  }
  .copyrights-wrapper-column:nth-child(1){
    flex:0 0 100%;
    min-width: 100%;
  }
  .copyrights-wrapper-column:nth-child(2){
    justify-content: center;
    align-items: center;
  }
  .copyrights-wrapper-column:nth-child(2) ul{
    padding:20px 0 0 0;
  }
  .footer-wrapper-column{
    padding:20px 0 0 0;
  }
  .footer-wrapper-column ul{
    padding: 0px;
  }
  .footer h2 {
    text-align: left;
  }
  .footer p{
    text-align: left;
  }
  .cert-img-wrapper-column{
    padding:20px 0;
  }
  .copyrights-wrapper p{
    display: none;
  }
  .copyrights-wrapper-column:nth-child(2) ul{
    padding: 0;
  }
  /*ABOUT PAGE STARTS HERE*/

.about-us-banner-wrapper{
      flex-direction: column;
    }
    .about-us-banner-wrapper-column{
      flex:0 0 100%;
      min-width: 100%;
    }
    .about-us-banner-wrapper-column h1{
      display: block;
      font-size: 35px;
      text-align: center;
    }
    .about-us-banner-wrapper-column p{
    font-size: 20px;
    text-align: center;
        line-height: 30px;
        padding: 20px 0 0 0;
    }
    .commitment-wrapper{
      flex-direction: column;
    }
    .commitment-wrapper-column{
      flex:0 0 100%;
      min-width: 100%;
    }
    .commitment-wrapper-column h2{
      display: block;
      font-size: 35px;
      text-align: left;
      padding:10px 0 10px 0;
    }
    .about-stats-wrapper{
      display: flex;
      flex-direction: column;
    }
    .about-stats-wrapper-column{
      flex:0 0 100%;
      min-width: 100%;
    }
    .about-stats-wrapper-column{
      display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    }
    .about-stats-wrapper-column img{

    }
    .about-stats-wrapper-column span{
      text-align: center;
      padding: 10px 0;
    }
    .purpose{
      padding:30px 0;
    }
    .purpose-wrapper{
      display: flex;
      flex-direction: column;
    }
    .purpose-wrapper-column{
      flex:0 0 100%;
      min-width: 100%;
    }
    .purpose-wrapper-column h2{
      text-align: left !important;
      margin: 10px 0;
    }
    .service-form{
      padding: 30px 10px;
    }
    .service-form h2{
      font-size: 26px;
    }
    .service-form input, .service-form select{
      width: 300px;
    }
    .career-wrapper{
      display: flex;
      flex-direction: column;
    }
    .career-wrapper-column{
      flex:0 0 100%;
      min-width: 100%;
    }
    .career-wrapper-column h2{
      font-size: 30px;
    }
    .career{
      padding: 50px 10px;
    }

/*ABOUT PAGE ENDS HERE*/
/*SERVICE PAGE STARTS HERE*/
  .we-offer-wrapper{
    display: flex;
    flex-direction: column;
  }
  .we-offer-wrapper-column{
    flex:0 0 100%;
    min-width: 100%;
    margin:10px 0;
  }
  .we-offer-wrapper-column p {
    font-size: 16px;
    line-height: 140%;
    padding: 0 0 10px 0;
} 
  .process-wrapper{
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  .process-wrapper-column{
    flex: 0 0 100%;
    min-width: 100%;
  }
  .floating-arrow-right{
    display: none;
  }
  .floating-arrow-left{
    display: none;
  }
  .floating-arrow-down{
    display: none;
  }
  .process-wrapper-column:nth-child(4){
    display: none;
  }
  .process-wrapper-column h3{
    font-size: 22px !important;
  }
  .process-wrapper-column p{
    font-size: 18px !important;
    line-height: 140%;
  }
  /*SERVICE PAGE ENDS HERE*/
  /*CONTACT PAGE STARTS HERE*/
  .contact-form-grid-wrapper  {
    display: flex;
    flex-direction: column;
  }
  .contact-form-grid-wrapper-column{
    flex:0 0 100%;
    min-width: 100%;
  }
  .contact-form-grid{
    padding: 10px;
  }
  .contact-form-grid-wrapper-column:nth-child(2){
    padding: 30px 10px 20px 10px;
    background: #D1F0C1;
    border-radius: 20px;
    margin:30px 0 0 0;
  }
  .contact-form-grid-wrapper-column span{
    font-size: 14px;
    margin: 0 0 10px 0;
  }
  .contact-form-grid-wrapper-column h2{
    font-size: 30px;
  }
  .contact-form-grid-wrapper-column form{
    padding: 10px 0 0 0;
  }
  .contact-form-grid-wrapper-column span{
    margin: 0;
  }
  .submit-wrapper .wpcf7-submit{
    margin: -10px 15px 0 0 !important;
  }
  .contact-faq-wrapper{
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 3;
  }
  .contact-faq-wrapper-column{
    flex:0 0 100%;
    min-width: 100%;
  }
  .contact-faq-wrapper-column:nth-child(1){
    padding: 20px;
    margin: 30px 0 0 0;
  }
  .contact-wrapper-column:nth-child(1) h2{
    font-size: 27px !important;
  }
  .span-holder span{
    
  }
  .faq-wrapper-column{
    padding: 20px 0 0 0;
  }
  /*CONTACT PAGE ENDS HERE*/
  /*SECTOR INTERNAL PAGE STARTS HERE*/
  .breadcrumb-banner h1{
      font-size: 40px;
    }
    .breadcrumb-holder a{
      font-size: 18px;
    }
  .three-steps-wrapper{
    display: flex;
    flex-direction: column;
    padding: 30px;
  }
  .three-steps-wrapper-column{
    flex:0 0 100%;
    min-width: 100%;
    padding: 30px 30px;
  }
  .three-steps-wrapper-column:nth-child(2){
    margin: 30px 0 0 0;
  }
  .three-steps-wrapper-column:nth-child(3){
    margin: 30px 0 0 0;
  }
  .three-steps-wrapper-column span{
    font-size: 45px;
  }
  .three-steps-wrapper-column h3{
    font-size: 22px;
  }
  .three-steps-floating-mid{
    display: none;
  }
  .contact-info-btn span{
    text-align: left !important;
  }
  /*SECTOR INTERNAL PAGE ENDS HERE*/
  /*SERVICES DETAIL PAGE STARTS HERE*/
  .space-for-success-wrapper{
      flex-direction: column;
    }
    .space-for-success-wrapper-column img{
      display: block;
      width: 100%;
    }
    .space-for-success-floating img{
      width: 100px;
    }
    .space-for-success-wrapper-column li{
      font-size: 18px;
    }
    .space-for-success-floating{
      top:50%;
      left:50%;
    }
    .service-info-wrapper{
      display: flex;
      flex-direction: column;
    }
    .service-info-wrapper-column{
      flex:0 0 100%;
      min-width: 100%;
    }
    .service-info-wrapper-column h2{
      font-size: 52px;
    }
    .service-info-wrapper-column p{
      font-size: 22px;
    }
    .service-features-wrapper{
      display: flex;
      flex-direction: column;
    }
    .service-features-wrapper-column{
      flex:0 0 100%;
      min-width: 100%;
    }
  /*SERVICES DETAIL PAGE ENDS HERE*/
  /*BLOG PAGE STARTS HERE*/
  .upto-date-wrapper{
      display: flex;
      flex-direction: column;
      margin:30px 0 0 0;
    }
    .upto-date-wrapper-column{
      flex:0 0 100%;
      min-width: 100%;
    }
    .blog-tiles-wrapper{
    display: flex;
    flex-wrap: wrap;
  }
  .blog-tiles-wrapper-column{
    flex:0 0 100%;
    min-width: 100%;
  }
  .upto-date-wrapper-column span{
    font-size: 18px;
  }
  .upto-date-wrapper-column h3{
    margin:10px 0 0 0;
  }
  .upto-date-wrapper-column:nth-child(1){
    padding: 30px 30px 0 30px;
  }
  .upto-date-wrapper-column:nth-child(2) img{
    padding: 30px 0 0 0;
    border-radius: 30px;
  }
  /*BLOG PAGE ENDS HERE*/

}
@media  only screen and (min-width: 389px) and (max-width: 600px){
      
  .navbar{
    display: none;
  }
  .mobile-navbar{
  display: flex;
}
  .banner-wrapper{
    background: none;
  }
  .banner-wrapper-column{
    flex: 0 0 100%;
    min-width: 100%;
  }
  .banner-wrapper{
    display: flex;
    flex-direction: column;
    padding:0px 0;
  }
  .banner-wrapper-column:nth-child(1) {
        padding: 40px 25px;
    }
  .banner-wrapper-column:nth-child(2){
    display: none;
  }
  .banner-wrapper-column h1{
    font-size:40px;
    line-height: 50px;
  }
  .banner-list{
    padding:20px 0 0 0;
  }
  .banner-list ul{
    flex-direction: row;
    flex-wrap: wrap;
  }
  .banner-list ul li{
    padding:0;
  }
  .home-floating-div{
    display: none;
  }
  .span-holder span{
    font-size:20px;
    line-height: 32px;
  }
  .choose-us h2, .services h2, .sectors h2, .testimonials h2, .blogs h2, .footer h2, .team h2, .purpose-wrapper-column h2, .contact-faq h2, .we-offer h2, .process h2, .space-for-success-wrapper-column h2, .sector-info h2, .three-steps h2, .upto-date h2, .blog-tiles h2, .upto-date-wrapper-column h3, .blog-detail h2, .applicant-form h2{
    font-size: 35px;
    line-height: 40px;
  }
.choose-us p, .services p, .sectors p, .testimonials p, .blogs p, .footer p, .team p, .purpose-wrapper-column p, .contact-faq p, .we-offer p, .process p, .space-for-success-wrapper-column p, .sector-info p, .upto-date p, .blog-tiles p, .upto-date-wrapper-column p, .blog-detail p{
  font-size:18px;
  line-height: 25px;
  padding: 20px 0 0 0;
}
.choose-us-wrapper{
  display: flex;
  flex-direction: column;
  padding:300px 0 0 0 ;
}
.choose-us-wrapper-column{
  flex:0 0 100%;
  min-width: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
}
.choose-us-wrapper-column:nth-child(4) .choose-us-wrapper-column-bg, .choose-us-wrapper-column:nth-child(6) .choose-us-wrapper-column-bg{
  margin:0;
}
.choose-us-centered-img {
        position: absolute;
        z-index: 3;
        border-radius: 100%;
        width: 300px;
        top: 15%;
        left: 49%;
        transform: translate(-50%, -50%) !important;
    }

.choose-us-wrapper-column:nth-child(2){
  display: none;
}

.choose-us-wrapper-column:nth-child(5){
  display: none;
}

.choose-us-wrapper-column p{
  padding: 10px 0 0 0;
  margin: 0;
}
.choose-us-floating-img {
    position: absolute;
    left: 6.3%;
    top: 27%;
    z-index: 2;
    width: 49px;
}
.choose-us-floating-left {
    width: 63px;
}
.choose-us-floating-right {
    width: 70px;
}
.stats{
  height:auto;
}
.stats-wrapper{
  display: flex;
  flex-direction: column;
}
.stats-wrapper-column{
  flex: 0 0 100%;
  min-width: 100%;
  margin: 10px 0;
}
.stats-floating-right{
  width: 70px;
}
.stats-floating-left{
  width: 70px;  
}
.services-floating-right{
  width: 70px;
}
.services-floating-left{
  width: 70px;
}
.sectors-wrapper{
  display: flex;
  flex-direction: column;
  padding:20px 0 0 0;
}
.sectors-wrapper-column{
  flex:0 0 100%;
  min-width: 100%;
}
.sectors-head-wrapper {
  align-items: flex-start;
}
.sectors-wrapper-column:nth-child(2), .sectors-wrapper-column:nth-child(5), .sectors-wrapper-column:nth-child(8), .sectors-wrapper-column:nth-child(11){
  margin:0;
}
.sectors-wrapper-column:nth-child(3), .sectors-wrapper-column:nth-child(6), .sectors-wrapper-column:nth-child(9){
  margin: 0;
}
 .sectors-wrapper-column:nth-child(10){
  padding: 0;
 }
.sector-img-shadow {
    position: absolute !important;
    top: 14%;
    right: 0%;
    z-index: 1 !important;
    width: 100%;
}
.sector-img-wrapper img:nth-child(1) {
    padding: 30px 10px 0 0;
}

.testimonials-slider-wrapper .glide__slide .profile {
    display: block;
    width: 60px;
    margin: -30px auto 0 auto;
}
.testimonials-slider-wrapper .glide__slide .rating {
    display: block;
    width: 134px;
    margin: 20px auto 0 auto;
}
.testimonials-slider-wrapper .glide__slide:nth-child(odd) {
    background-size: 90%
}
.testimonials-floating-right {
    top: -16%;
    width: 160px;
}
.testimonials-floating-left{
  width: 70px;
}
.glide__bullets {
    bottom: -6% !important;
}
.testimonials-slider-wrapper .glide__arrow {
    top: 102.3%;
  }
  .blogs-wrapper{
    flex-direction: column;
  }
  .blogs-wrapper-column{
    flex:0 0 100%;
    min-width: 100%;
    margin:10px 0;
  }
  .blogs-floating-left {
    top: 7%;
    z-index: 4;
    width: 80px;
}
.blogs-floating-right {
    position: absolute;
    right: 0%;
    bottom: -2%;
    width: 70px;
}
.blogs-wrapper-column p{
  padding:20px 0;
}
  .contact-wrapper{
    display: flex;
    flex-direction: column;
  }
  .contact-wrapper-column{
    flex:0 0 100%;
    min-width: 100%;
  }
 .contact-wrapper-column:nth-child(1) h2, .contact-wrapper-column h2{
    margin: 0 20px 0 0;
    font-size: 35px;
    line-height: 40px;
  }
  .contact-wrapper-column{
    padding:20px 0 0 0;
  }

  .newsletter {
    padding: 0 10px;
}

  .newsletter .container{
    padding: 20px;
  }
  .newsletter h2{
  font-size: 35px;
  position: relative;
  z-index: 5;
}
.newsletter-floating-right {
    position: absolute;
    top: 0%;
    right: 0%;
    z-index: 4;
    width: 30%;
}
.newsletter-floating-left {
    position: absolute;
    top: 19%;
    left: 2%;
    z-index: 4;
}
.newsletter-submit-wrapper {
    position: absolute;
    right: 3.1%;
    top: 6%;
    z-index: 5;
}
.newsletter input{
  margin:0 auto 0 auto;
  position: relative;
  z-index: 4;
}
.newsletter p{
  font-size: 22px;
  position: relative;
  z-index: 5;
}
  .faq-wrapper{
    display: flex;
    flex-direction: column;
  }
  .faq-wrapper-column{
    flex:0 0 100%;
    min-width:100%;
  }
  .faq h2{
    padding: 0;
    font-size: 35px;
    line-height: 40px !important;
  }
  .faq-wrapper-column p{
    font-size: 18px;
  }
  .faq-floating-img-left{
    width: 70px;
    top:-5%;
  }
  .faq-floating-img-right {
    bottom: -3%;
    width: 90px;
}
  .accordion{
    font-size: 20px;
  }
  .contact-info-btn span{
  text-align: left !important;
  line-height: 25px;
}
  .footer-wrapper{
    display: flex;
    flex-direction: column;
  }
  .footer-wrapper-column:nth-child(1){
    flex:0 0 100%;
    min-width: 100%;
  }
  .footer-wrapper-column:nth-child(2), .footer-wrapper-column:nth-child(3){
     flex:0 0 100%;
    min-width: 100%;
  }
  .footer-wrapper-column:nth-child(4){
    flex:0 0 100%;
    min-width: 100%;
  }
  .copyrights-wrapper{
    display: flex;
    flex-direction: column;
  }
  .copyrights-wrapper-column:nth-child(1){
    flex:0 0 100%;
    min-width: 100%;
  }
  .copyrights-wrapper-column:nth-child(2){
    justify-content: center;
    align-items: center;
  }
  .copyrights-wrapper-column:nth-child(2) ul{
    padding:20px 0 0 0;
  }
  .footer-wrapper-column{
    padding:20px 0 0 0;
  }
  .footer-wrapper-column ul{
    padding: 0px;
  }
  .footer h2 {
    text-align: left;
  }
  .footer p{
    text-align: left;
  }
  .cert-img-wrapper-column{
    padding:20px 0;
  }
 .copyrights-wrapper p{
    display: none;
  }
  .copyrights-wrapper-column:nth-child(2) ul{
    padding: 0;
  }
  /*ABOUT PAGE STARTS HERE*/
  .about-us-banner-wrapper{
      flex-direction: column;
    }
    .about-us-banner-wrapper-column{
      flex:0 0 100%;
      min-width: 100%;
    }
    .about-us-banner-wrapper-column h1{
      display: block;
      font-size: 35px;
      text-align: center;
    }
    .about-us-banner-wrapper-column p{
    font-size: 20px;
    text-align: center;
        line-height: 30px;
        padding: 20px 0 0 0;
    }
    .commitment-wrapper{
      flex-direction: column;
    }
    .commitment-wrapper-column{
      flex:0 0 100%;
      min-width: 100%;
    }
    .commitment-wrapper-column h2{
      display: block;
      font-size: 35px;
      text-align: left;
      padding:10px 0 10px 0;
    }
    .about-stats-wrapper{
      display: flex;
      flex-direction: column;
    }
    .about-stats-wrapper-column{
      flex:0 0 100%;
      min-width: 100%;
    }
    .about-stats-wrapper-column{
      display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    }
    .about-stats-wrapper-column img{

    }
    .about-stats-wrapper-column span{
      text-align: center;
      padding: 10px 0;
    }
    .purpose{
      padding:30px 0;
    }
    .purpose-wrapper{
      display: flex;
      flex-direction: column;
    }
    .purpose-wrapper-column{
      flex:0 0 100%;
      min-width: 100%;
    }
    .purpose-wrapper-column h2{
      text-align: left !important;
      margin: 10px 0;
    }
    .purpose-para-wrapper{
      padding: 30px;
    }
    .purpose-para-wrapper p{
      font-size: 20px;
    }
    .service-form{
      padding: 30px 10px;
    }
    .service-form h2{
      font-size: 26px;
    }
    .service-form input, .service-form select{
      width: 300px;
    }
    .career-wrapper{
      display: flex;
      flex-direction: column;
    }
    .career-wrapper-column{
      flex:0 0 100%;
      min-width: 100%;
    }
    .career-wrapper-column h2{
      font-size: 30px;
    }
    .career{
      padding: 50px 10px;
    }
    /*ABOUT PAGE ENDS HERE*/
    /*SERVICE PAGE STARTS HERE*/
    .we-offer-wrapper{
    display: flex;
    flex-direction: column;
  }
  .we-offer-wrapper-column{
    flex:0 0 100%;
    min-width: 100%;
    margin:10px 0;
  }
  .we-offer-wrapper-column p {
    font-size: 16px;
    line-height: 140%;
    padding: 0 0 10px 0;
} 
  .process-wrapper{
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  .process-wrapper-column{
    flex: 0 0 100%;
    min-width: 100%;
  }
  .floating-arrow-right{
    display: none;
  }
  .floating-arrow-left{
    display: none;
  }
  .floating-arrow-down{
    display: none;
  }
  .process-wrapper-column:nth-child(4){
    display: none;
  }
  .process-wrapper-column h3{
    font-size: 22px !important;
  }
  .process-wrapper-column p{
    font-size: 18px !important;
    line-height: 140%;
  } 
    /*SERVICE PAGE ENDS HERE*/
    /*CONTACT PAGE STARTS HERE*/
    .contact-form-grid-wrapper  {
    display: flex;
    flex-direction: column;
  }
  .contact-form-grid-wrapper-column{
    flex:0 0 100%;
    min-width: 100%;
  }
  .contact-form-grid{
    padding: 10px;
  }
  .contact-form-grid-wrapper-column:nth-child(2){
    padding: 30px 10px 20px 10px;
    background: #D1F0C1;
    border-radius: 20px;
    margin:30px 0 0 0;
  }
  .contact-form-grid-wrapper-column span{
    font-size: 14px;
    margin: 0 0 10px 0;
  }
  .contact-form-grid-wrapper-column h2{
    font-size: 30px;
  }
  .contact-form-grid-wrapper-column form{
    padding: 10px 0 0 0;
  }
  .contact-form-grid-wrapper-column span{
    margin: 0;
  }
  .submit-wrapper .wpcf7-submit{
    margin: -10px 15px 0 0 !important;
  }
  .contact-faq-wrapper{
    display: flex;
    flex-direction: column;
  }
  .contact-faq-wrapper-column{
    flex:0 0 100%;
    min-width: 100%;
  }
  .contact-faq-wrapper-column:nth-child(1){
    padding: 20px;
    margin: 30px 0 0 0;
  }
  .contact-wrapper-column:nth-child(1) h2{
    font-size: 27px !important;
  }
  .faq-wrapper-column{
    padding: 20px 0 0 0;
  } 
    /*CONTACT PAGE ENDS HERE*/
    /*SECTOR INTERNAL PAGE STARTS HERE*/
    .breadcrumb-banner h1{
      font-size: 40px;
    }
    .breadcrumb-holder a{
      font-size: 18px;
    }
  .sector-stats-img{
    margin:0;
  }
  .sector-stats-container{
    padding: 20px 10px;
  }
  .three-steps-wrapper{
    display: flex;
    flex-direction: column;
    padding: 30px 30px;
  }
  .three-steps-wrapper-column{
    flex:0 0 100%;
    min-width: 100%;
    padding: 30px 30px;
  }
  .three-steps-wrapper-column:nth-child(2){
    margin: 30px 0 0 0;
  }
  .three-steps-wrapper-column:nth-child(3){
    margin: 30px 0 0 0;
  }
  .three-steps-wrapper-column h3{
    padding: 0 0 20px 0;
  }
  .three-steps-floating-mid{
    display: none;
  }
    /*SECTOR INTERNAL PAGE ENDS HERE*/
    /*SERVICES DETAIL PAGE STARTS HERE*/
    .space-for-success-wrapper{
      flex-direction: column;
    }
    .space-for-success-wrapper-column img{
      display: block;
      width: 100%;
    }
    .space-for-success-wrapper-column li{
      font-size: 20px;
    }
    .space-for-success-floating img{
      width: 100px;
    }
    .space-for-success-floating{
      top:50%;
      left:50%;
    }
    .service-info-wrapper{
      display: flex;
      flex-direction: column;
    }
    .service-info-wrapper-column{
      flex:0 0 100%;
      min-width: 100%;
    }
    .service-info-wrapper-column h2{
      font-size: 52px;
    }
    .service-info-wrapper-column p{
      font-size: 22px;
    }
    .service-features-wrapper{
      display: flex;
      flex-direction: column;
    }
    .service-features-wrapper-column{
      flex:0 0 100%;
      min-width: 100%;
    }
    /*SERVICES DETAIL PAGE ENDS HERE*/
    /*BLOG PAGE STARTS HERE*/
    .upto-date-wrapper{
      display: flex;
      flex-direction: column;
      margin:30px 0 0 0;
    }
    .upto-date-wrapper-column{
      flex:0 0 100%;
      min-width: 100%;
    }
    .blog-tiles-wrapper{
    display: flex;
    flex-wrap: wrap;
  }
  .blog-tiles-wrapper-column{
    flex:0 0 100%;
    min-width: 100%;
  }
  .upto-date-wrapper-column span{
    font-size: 18px;
  }
  .upto-date-wrapper-column h3{
    margin:10px 0 0 0;
  }
  .upto-date-wrapper-column:nth-child(1){
    padding: 30px 30px 0 30px;
  }
  .upto-date-wrapper-column:nth-child(2) img{
    padding: 30px 0 0 0;
    border-radius: 30px;
  }
    /*BLOG PAGE ENDS HERE*/
}
@media  only screen and (min-width: 601px) and (max-width: 767px){
  .navbar{
    display: none;
  }
  .mobile-navbar{
  display: flex;
}
  .mobile-navbar {
    display: flex;
            }
  .banner-wrapper{
    background: none;
  }
  .banner-wrapper-column{
    flex: 0 0 100%;
    min-width: 100%;
  }
  .banner-wrapper{
    display: flex;
    flex-direction: column;
    padding:0px 0;
  }
  .banner-wrapper-column:nth-child(1) {
        padding: 40px 25px;
    }
  .banner-wrapper-column:nth-child(2){
    display: none;
  }
  .banner-wrapper-column h1{
    font-size:40px;
    line-height: 50px;
  }
  .banner-list{
    padding:20px 0 0 0;
  }
  .banner-list ul{
    flex-direction: row;
    flex-wrap: wrap;
  }
  .banner-list ul li{
    padding:0;
  }
  .home-floating-div{
    display: none;
  }
  .span-holder span{
    font-size:20px;
    line-height: 32px;
  }
  .choose-us h2, .services h2, .sectors h2, .testimonials h2, .blogs h2, .footer h2, .team h2, .purpose-wrapper-column h2, .contact-faq h2, .we-offer h2, .process h2, .space-for-success-wrapper-column h2, .sector-info h2, .three-steps h2, .upto-date h2, .blog-tiles h2, .upto-date-wrapper-column h3, .blog-detail h2, .applicant-form h2{
    font-size: 35px;
    line-height: 40px;
  }
.choose-us p, .services p, .sectors p, .testimonials p, .blogs p, .footer p, .team p, .purpose-wrapper-column p, .contact-faq p, .we-offer p, .process p, .space-for-success-wrapper-column p, .sector-info p, .upto-date p, .blog-tiles p, .blog-detail p{
  font-size:18px;
  line-height: 25px;
  padding: 20px 0 0 0;
}
.choose-us-wrapper{
  display: flex;
  flex-direction: row;
  padding:320px 0 0 0 ;
}
.choose-us-wrapper-column{
  flex:0 0 100%;
  min-width: 100%;
}
.choose-us-centered-img {
        position: absolute;
        z-index: 3;
        border-radius: 100%;
        width: 300px;
        top: 24%;
        left: 49%;
        transform: translate(-50%, -50%) !important;
    }

.choose-us-wrapper-column:nth-child(2){
  display: none;
}
.choose-us-wrapper-column h3{
  font-size: 19px;
    line-height: 22px;
}
.choose-us-wrapper-column:nth-child(5){
  display: none;
}
.choose-us-wrapper-column{
  flex:0 0 49%;
  min-width: 49%;
  margin: 10px 0 0 0;
}
.choose-us-wrapper-column p{
  padding: 0;
  margin: 0;
  font-size: 16px;
  line-height: 22px;
}
.choose-us-wrapper-column:nth-child(1) .choose-us-wrapper-column-bg, .choose-us-wrapper-column:nth-child(3) .choose-us-wrapper-column-bg{
  width: auto;
  height: 180px;
  padding:10% 10%;
}
.choose-us-wrapper-column:nth-child(4) .choose-us-wrapper-column-bg, .choose-us-wrapper-column:nth-child(6) .choose-us-wrapper-column-bg{
  width: auto;
  height: 180px;
  margin: 0;
  padding: 2% 10%;
}
.choose-us-floating-img {
    position: absolute;
    left: 6.3%;
    top: 27%;
    z-index: 2;
    width: 49px;
}
.choose-us-floating-left{
    width: 82.87px;
}
.choose-us-floating-right{
  width: 82.87px;
}
.stats{
  height:auto;
}
.stats-wrapper{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.stats-wrapper-column{
  flex: 0 0 49%;
  min-width: 49%;
}
.sectors-wrapper{
  display: flex;
  flex-wrap:wrap;
  padding: 30px 0 0 0;
}
.stats-floating-right{
  width: 82px;
}
.stats-floating-left{
  width: 82px;
}
.sectors-wrapper-column{
  flex:0 0 49%;
  min-width: 49%;
}
.sectors-wrapper-column:nth-child(2), .sectors-wrapper-column:nth-child(5), .sectors-wrapper-column:nth-child(8), .sectors-wrapper-column:nth-child(11){
  margin:0;
}
.sectors-wrapper-column:nth-child(3), .sectors-wrapper-column:nth-child(6), .sectors-wrapper-column:nth-child(9){
  margin: 0;
}
.sectors-head-wrapper{
  align-items: flex-start;
}
.sector-img-shadow{
 width: 100%;
 left: 1px;
}
.sectors-wrapper-column h3{
  font-size: 24px;
}
.sectors-wrapper-column p{
  padding: 10px 0 20px 0 !important;
  font-size:16px !important;
}
.sectors-head-wrapper-column:nth-child(2) a{
  width: 35px;
  height: 35px;
  border-radius: 7px;
}
.sectors-head-wrapper-column:nth-child(2) a img{
  width: 20px;
}
.sectors-wrapper-column:nth-child(10){
 display: none;
}

.testimonials-slider-wrapper .glide__slide .profile {
    display: block;
    width: 60px;
    margin: -30px auto 0 auto;
}
.testimonials-slider-wrapper .glide__slide .rating {
    display: block;
    width: 134px;
    margin: 20px auto 0 auto;
}
.testimonials-slider-wrapper .glide__slide:nth-child(odd) {
    background-size: 60%
}
.testimonials-slider-wrapper .glide__slide:nth-child(even) {
    background-size: 60%
}
.testimonials-slider-wrapper .glide__slide p {
    font-family: 'Outfit';
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    text-transform: capitalize;
    color: #292929;
    padding: 20px 90px 0 90px;
  }
.glide__bullets {
    bottom: -21% !important;
}
.testimonials-slider-wrapper .glide__arrow {
    top: 102.3%;
  }
  .testimonials-floating-right {
    top: -15%;
    width: 150px;
}
.testimonials-floating-left {
    width: 82px;
}
  .services-floating-right{
    width: 82px;
  }
  .blogs-wrapper{
     display: flex;
     justify-content: space-between;
     flex-wrap:wrap;
     align-items: flex-start;
  }
  .blogs-wrapper-column:nth-child(even){
    border:none;
    background: white;
  }

  .blogs-wrapper-column{
     flex:0 0 48%;
    min-width: 48%;
  }
  .blog-content{
    padding:20px;
  }
  .meta-wrapper span{
    font-size:13px;
  }
  .blogs-wrapper-column a{
    font-size: 17px;
  }
  .blogs-wrapper-column p{
    font-size: 16px;
    padding:10px 0 20px 0 !important;
  }
  .blogs-floating-left{
    width: 82px;
    top:9%;
  }
  .blogs-floating-right{
    bottom:-4%;
    width: 82px;
  }
  .contact-wrapper{
    display: flex;
    flex-direction: row;
  }
  .contact-wrapper-column{
    flex:0 0 49%;
    min-width: 49%;
  }
  .contact-info-btn{
    padding:0px;
  }
  .contact-info-btn span{
    font-size: 14px;
  }
  .contact-wrapper-column:nth-child(1) h2, .contact-wrapper-column h2{
    margin: 0 20px 0 0;
    font-size: 35px;
    line-height: 40px;
  }
  .contact-wrapper-column{
    padding:20px 0 0 0;
  }
  .contact-wrapper-column p{
    font-size: 14px;
  }
  .contact-form-wrapper input{
    padding: 14px ;
  }
  .faq-wrapper{
    display: flex;
    flex-direction: column;
  }
  .faq-wrapper-column{
    flex:0 0 100%;
    min-width:100%;
  }
  .faq h2{
    padding: 0;
    font-size: 35px;
    line-height: 40px !important;
  }
  .faq-wrapper-column p{
    font-size: 18px;
  }
  .accordion{
    font-size: 20px;
  }

  .newsletter h2{
    font-size: 29px;
  }
  .newsletter p {
    padding: 10px 0 !important;
}
.newsletter input{
  margin:0 auto;
}
.newsletter-submit-wrapper {
    right: 3.1%;
    top: 6%;
    z-index: 4;
}
.newsletter-floating-left{
  left:4%;
}
.newsletter-floating-right {
    width: 102px;
}
  .footer-wrapper{
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }
  .footer-wrapper-column:nth-child(1){    
    flex:0 0 49%;
    min-width: 49%;
  }
  .footer-wrapper-column:nth-child(2), .footer-wrapper-column:nth-child(3){
     flex:0 0 49%;
    min-width: 49%;
  }
  .footer-wrapper-column:nth-child(4){
    flex:0 0 49%;
    min-width: 49%;
  }
  .copyrights-wrapper{
    display: flex;
    flex-direction: column;
  }
  .copyrights-wrapper-column:nth-child(1){
    flex:0 0 100%;
    min-width: 100%;
  }
  .copyrights-wrapper-column:nth-child(2){
    justify-content: center;
    align-items: center;
  }
  .copyrights-wrapper-column:nth-child(2) ul{
    padding:20px 0 0 0;
  }
  .footer-wrapper-column{
    padding:20px 0 0 0;
  }
  .footer-wrapper-column ul{
    padding: 0px;
  }
  .footer h2 {
    text-align: left;
  }
  .footer p{
    text-align: left;
  }
  .footer-wrapper-column:nth-child(4) p{
    text-align: center;
  }
  .footer-location {
    padding: 0 40px 0 0;
}
  .copyrights-wrapper ul li a{
    line-height: 0px;
  }
  .copyrights-wrapper ul li img{
    width: 25px;
  }
  .blogs-wrapper-column a {
    font-size: 15px;
  }
  /*ABOUT PAGE STARTS HERE*/
  .about-us-banner-wrapper, .commitment-wrapper{
      display: flex;
      flex-direction: column;
    }
    .about-us-banner-wrapper-column h1{
      font-size: 40px;
    }
    .about-us-banner-wrapper-column p{
      font-size: 18px;
    }
    .commitment-wrapper-column h2{
      font-size: 40px;
      padding: 10px 0;
    }
    .about-stats-wrapper{
      display: flex;
      flex-wrap:wrap;
      justify-content: space-between;
    }
    .about-stats-wrapper-column{
      flex:0 0 49%;
      min-width: 49%;
      padding: 10px 0 20px 0;
    }
    .about-stats-wrapper-column img{
      padding:0 10px 0 0;
    }
    .purpose-wrapper{
      display: flex;
      flex-direction: column;
    }
    .purpose-wrapper-column{
      flex:0 0 100%;
      min-width: 100%;
    }
    .purpose-wrapper-column h2{
      text-align: left !important;
      padding: 20px 0;
    }
    .purpose-para-wrapper{
      padding: 30px;
    }
    .purpose-para-wrapper p{
      font-size: 20px;
    }
    .service-form{
      padding: 30px 20px;
    }
    .service-form input, .service-form select{
      width: 400px;
    }
    .career{
      padding: 50px 10px;
    }
    .career-wrapper{
      display: flex;
      flex-direction: column;
    }
    .career-wrapper-column:nth-child(1){
      flex:0 0 100%;
      min-width: 100%;
    }
    .career-wrapper-column:nth-child(2){
      flex:0 0 100%;
      min-width: 100%;
    }
    .career-wrapper-column h2{
      font-size: 30px;
      margin: 10px 0 0 0;
    }
    .career-wrapper-column p{
      font-size: 18px;
      padding: 0;
    }
    .career-wrapper-column a{
      margin: 10px 0 0 0;
    }
    /*ABOUT PAGE ENDS HERE*/
    /*SERVICE PAGE STARTS HERE*/
   we-offer-wrapper{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .we-offer-wrapper-column{
    flex:0 0 49%;
    min-width: 49%;
    margin:10px 0;
    padding: 10px;
  }
  .we-offer-wrapper-column p {
    font-size: 16px;
    padding: 10px 0;
  }
  .process-wrapper{
    padding: 0;
  }
  .process-wrapper-column {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .process-wrapper-column{
    flex:0 0 49%;
    min-width: 49%;
    padding: 20px 10px 0 0;
  }
  .floating-arrow-right, .floating-arrow-left, .floating-arrow-down{
    display: none;
  }
  .process-wrapper-column:nth-child(4){
    display: none;
  }
  .process-wrapper-column h3{
    font-size: 22px !important;
  }
  .process-wrapper-column p{
    font-size: 18px !important;
  }
    /*SERVICE PAGE ENDS HERE*/
    /*CONTACT PAGE STARTS HERE*/
    .contact-form-grid-wrapper  {
    display: flex;
    flex-direction: column;
  }
  .contact-form-grid-wrapper-column{
    flex:0 0 100%;
    min-width: 100%;
  }
  .contact-form-grid{
    padding: 10px;
  }
  .contact-form-grid-wrapper-column:nth-child(2){
    padding: 30px 10px 20px 10px;
    background: #D1F0C1;
    border-radius: 20px;
    margin:30px 0 0 0;
  }
  .contact-form-grid-wrapper-column span{
    font-size: 14px;
    margin: 0 0 10px 0;
  }
  .contact-form-grid-wrapper-column h2{
    font-size: 30px;
  }
  .contact-form-grid-wrapper-column form{
    padding: 10px 0 0 0;
  }
  .contact-form-grid-wrapper-column span{
    margin: 0;
  }
  .submit-wrapper .wpcf7-submit{
    margin: -10px 15px 0 0 !important;
  }
  .contact-faq-wrapper{
    display: flex;
    flex-direction: column;
  }
  .contact-faq-wrapper-column{
    flex:0 0 100%;
    min-width: 100%;
  }
  .contact-faq-wrapper-column:nth-child(1){
    padding: 20px;
    margin: 30px 0 0 0;
  }
  .contact-wrapper-column:nth-child(1) h2{
    font-size: 27px !important;
  }
  .span-holder span{
    text-align: left !important;
  }
  .faq-wrapper-column{
    padding: 20px 0 0 0;
  }
  .span-holder span{
    text-align: center !important;
  }
    /*CONTACT PAGE ENDS HERE*/
    /*SECTOR INTERNAL PAGE STARTS HERE*/
    .breadcrumb-banner h1{
      font-size: 40px;
    }
    .breadcrumb-holder a{
      font-size: 18px;
    }
  .sector-stats-img{
    margin:0;
  }
  .sector-stats-container{
    padding: 20px 10px;
  }
  .three-steps-wrapper{
    display: flex;
    flex-direction: row;
  }
  .three-steps-wrapper-column{
    flex:0 0 30%;
    min-width: 30%;
    padding: 30px;
  }
  .three-steps-wrapper-column:nth-child(2){
    margin: 0px 0 0 0;
  }
  .three-steps-wrapper-column:nth-child(3){
    margin: 0px 0 0 0;
  }
  .three-steps-wrapper-column span{
    font-size: 35px;
  }
  .three-steps-wrapper-column h3{
    font-size: 20px;
    padding: 15px 0 10px 0;
  }
  .three-steps-wrapper-column p{
    font-size: 16px;
  }
  .three-steps-floating-mid{
    display: none;
  }
  .contact-info-btn span{
    text-align: left !important;
  }
  .about-stats-wrapper-column{
    flex:0 0 32% !important;
    min-width: 32% !important;
  }
    /*SECTOR INTERNAL PAGE ENDS HERE*/
    /*SERVICES DETAIL PAGE STARTS HERE*/
    .breadcrumb-banner h1{
      font-size: 40px;
    }
    .breadcrumb-holder a{
      font-size: 18px;
    }
    .space-for-success-wrapper{
      flex-direction: column;
    }
    .space-for-success-wrapper-column img{
      display: block;
      width: 100%;
    }
    .space-for-success-wrapper-column li{
      font-size: 20px;
    }
    .space-for-success-floating img{
      width: 100px;
    }
    .space-for-success-floating{
      top:50%;
      left:50%;
    }
    .service-info-wrapper{
      display: flex;
      flex-direction: column;
    }
    .service-info-wrapper-column{
      flex:0 0 100%;
      min-width: 100%;
    }
    .service-info-wrapper-column h2{
      font-size: 52px;
    }
    .service-info-wrapper-column p{
      font-size: 22px;
    }
    .service-features-wrapper{
      display: flex;
      flex-direction: column;
    }
    .service-features-wrapper-column{
      flex:0 0 100%;
      min-width: 100%;
    }
    /*SERVICES DETAIL PAGE ENDS HERE*/
    /*BLOG PAGE STARTS HERE*/
    .blog-tiles-wrapper {
    display: flex;
    flex-direction: row;
  }
  .blog-tiles-wrapper-column{
    flex:0 0 49%;
    min-width: 49%;
  }
    /*BLOG PAGE ENDS HERE*/
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar{
    display: none;
  }
  .mobile-navbar{
  display: flex;
}
  .span-holder span{
    font-size:20px;
  }
  .choose-us h2, .services h2, .sectors h2, .testimonials h2, .blogs h2, .footer h2, .team h2, .purpose-wrapper-column h2, .contact-faq h2, .we-offer h2, .process h2, .space-for-success-wrapper-column h2, .sector-info h2, .three-steps h2, .upto-date h2, .blog-tiles h2, .upto-date-wrapper-column h3, .blog-detail h2, .applicant-form h2{
    font-size: 40px;
    line-height: 52px;
  }
  .choose-us p, .services p, .sectors p, .testimonials p, .blogs p, .footer p, .team p, .purpose-wrapper-column p, .contact-faq p, .we-offer p, .process p, .space-for-success-wrapper-column p, .sector-info p, .upto-date p, .blog-tiles p {
    font-size: 20px;
    line-height: 26px;
  }
  .choose-us-floating-left {
    width: 82.87px;
  }
  .choose-us-floating-right {
    width: 82.87px;
}
  .banner-wrapper{
background: url(/wp-content/themes/NZCleaning/assets/images/Mask group.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .banner-wrapper-column{
    flex: 0 0 100%;
    min-width: 100%;
  }
  .banner-wrapper{
    display: flex;
    flex-direction: column;
    padding:0px 0;
    background: ;
  }
  .banner-wrapper-column:nth-child(1) {
        padding: 40px 25px;
        flex:0 0 69%;
        min-width: 69%;
        background: url(/wp-content/themes/NZCleaning/assets/images/Rectangle 2.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    }
  .banner-wrapper-column:nth-child(2){
    flex:0 0 29%;
        min-width: 29%;
  }
  .home-floating-div{
    display: none;
  }
  .choose-us-wrapper{
    padding:310px 0 0 0 ;
  }
  .choose-us-centered-img{
    top: 23%;
    left: 49%;
    width: 290px;
    transform: translate(-50%, -50%) !important;
  }
  .choose-us-wrapper-column{
    flex:0 0 49%;
    min-width: 49%;
    margin: 10px 0 0 0;
  }
  .choose-us-wrapper-column:nth-child(1) .choose-us-wrapper-column-bg, .choose-us-wrapper-column:nth-child(3) .choose-us-wrapper-column-bg{
  width: auto;
  height: 180px;
  padding:15% 17%;
}
.choose-us-wrapper-column:nth-child(4) .choose-us-wrapper-column-bg, .choose-us-wrapper-column:nth-child(6) .choose-us-wrapper-column-bg{
  width: auto;
  height: 180px;
  margin: 0;
  padding: 2% 17%;
}
.choose-us-wrapper-column:nth-child(5), .choose-us-wrapper-column:nth-child(2){
  display: none;
}
.choose-us-floating-img {
    position: absolute;
    left: 10.3%;
    top: 27%;
    z-index: 2;
    width: 49px;
}
 .choose-us-wrapper-column h3{
  padding:10px 0 0 0;
 } 
    .choose-us-wrapper-column p {
        padding: 2px 0px 0 0;
        font-size: 17px;
    }
  .stats-floating-right{
    width: 52px;
  }
  .stats-floating-left{
    width: 52px;
  }
  .services-slider-wrapper h3 {
    font-size: 28px;
    line-height: 31px;
    padding: 0 20px 20px 0;
}
.sectors-wrapper{
  padding:100px 0 0 0;
}
.sectors-wrapper-column{
  padding: 30px 0 0 0;
}
.sectors-wrapper-column h3 {
    font-size: 21px;
    line-height: 38px;
    color: #008A50;
}
.sectors-wrapper-column p {
    font-size: 16px;
    line-height: 17px;
    padding: 0px 0 20px 0;
}
.sectors-head-wrapper-column:nth-child(2) a {
    border-radius: 7px;
    width: 35px;
    height: 35px;
}
.sectors-head-wrapper-column:nth-child(2) a img {
    width: 18.75px;
}
.sector-img-shadow{
  width: 100%;
}
.testimonials-slider-wrapper .glide__slide .profile {
    display: block;
    width: 60px;
    margin: -34px auto 0 auto;
}
.testimonials-floating-right{
  width: 200px;
  top:-20%;
}
.testimonials-floating-left {
    width: 82px;
}

  .stats-wrapper-column span{
    font-size: 42px;
  }
  .stats-wrapper-column p{
    font-size: 13px;
  }
  .stats-wrapper-column p span{
    font-size: 13px;
  }
  .testimonials-slider-wrapper .glide__slide:nth-child(even){
    background-size: 100%;
    padding: 25px 35px 55px 35px;
  }
  .testimonials-slider-wrapper .glide__slide:nth-child(odd){
    background-size: 90%;
    padding: 25px 35px 55px 35px;
  }
  .testimonials-slider-wrapper .glide__slide .rating{
    margin: 10px auto 0 auto;
  }
  .blogs-wrapper{
     display: flex;
     justify-content: space-between;
     flex-wrap:wrap;
     align-items: flex-start;
  }
  .blogs-wrapper-column:nth-child(even){
    border:none;
    background: white;
  }

  .blogs-wrapper-column{
     flex:0 0 32%;
    min-width: 32%;
  }
  .blog-content{
    padding:10px;
  }
  .meta-wrapper span{
    font-size:12px;
  }
  .blogs-wrapper-column a{
    font-size: 15px;
  }
  .blogs-wrapper-column p{
    font-size: 14px;
    padding:10px 0 20px 0 !important;
  }
  .blog-btn-wrapper{
    padding: 5px 0 0 0;
  }
  .blogs-floating-left {
    top: 17%;
    z-index: 4;
    width: 82px;
}
.blogs-floating-right {
    right: 0%;
    bottom: -7%;
}
.contact-wrapper-column h2{
  font-size: 40px;
}
.contact-wrapper-column:nth-child(1) h2, .contact-wrapper-column h2{
  font-size: 40px;
}
.contact-wrapper-column span{
font-size: 14px;
}
.contact-wrapper-column p{
  font-size: 15px;
}
.contact-info-btn span strong{
  font-size: 18px;
}
.faq h2{
  font-size: 40px;
}
.faq-wrapper-column p{
  font-size: 20px;
}
.newsletter h2{
  font-size: 45px;
  position: relative;
  z-index: 5;
}
.newsletter p{
  font-size: 19px;
}
  .services-slider-wrapper a, .blog-yellow-btn{
    padding:0 10px !important;
    margin:10px 0 0 0 !important;
  }
  .services-floating-right{
    width: 82px;
  }
  .footer-wrapper{
    flex-wrap:wrap;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding:30px 0 0 0;
  }
  .footer-wrapper-column:nth-child(1){
    flex:0 0 29%;
    min-width: 29%;
    padding: 0 0px 0 0;
  }
  .footer-wrapper-column:nth-child(2), .footer-wrapper-column:nth-child(3){
    flex:0 0 23%;
    min-width: 23%;
    padding: 0;
  }
  .footer-wrapper-column:nth-child(4){
    flex:0 0 23%;
    min-width: 23%;
  }
  .footer-location{
    padding: 0;
  }
  .copyrights-wrapper-column:nth-child(1){
    flex:0 0 69%;
    min-width: 69%;
  }
  .copyrights-wrapper-column:nth-child(2){
    flex:0 0 29%;
    min-width: 29%;
  }
  .copyrights-wrapper p{
    font-size: 15px;
  }
  .cert-img-wrapper-column{
    padding:20px 0;
  }
  .footer-wrapper-column:nth-child(1) h3, .footer-wrapper-column:nth-child(2) h3, .footer-wrapper-column:nth-child(3) h3, .footer-wrapper-column:nth-child(4) h3{
  font-size: 21px;
}
/*ABOUT PAGE STARTS HERE*/
.about-us-banner-wrapper-column h1{
      font-size: 35px;
    }
    .about-us-banner-wrapper-column p{
      font-size: 17px;
    }
    .commitment-wrapper-column h2{
      font-size: 37px;
      line-height: 100%;
      margin: 10px 0 0 0;
    }
    .commitment-wrapper-column p{
      font-size: 16px;
    }
    .commitment-wrapper{
      align-items: flex-start;
    }
    .about-stats-wrapper-column span{
      font-size: 26px;
    }
    .about-stats-wrapper-column p{
      font-size: 16px;
    }
    .purpose-wrapper{
      display: flex;
      flex-direction: column;
    }
    .purpose-wrapper-column h2 {
      text-align: left !important;
    }
    .purpose-para-wrapper{
      padding: 40px;
    }
    .service-form{
      padding: 50px 30px;
    }
    .service-form h2{
      font-size: 30pxs;
    }
    .service-form input, .service-form select{
      width: 600px;
    }
    .career{
      padding: 50px 20px;
    }
    .career-wrapper-column h2{
      font-size: 30px;
    }
    .career-wrapper-column p{
      font-size: 16px;
      padding: 10px 0;
    }
    .career-wrapper-column a{
      padding: 18px 30px;
    }
    /*ABOUT PAGE ENDS HERE*/
    /*SERVICE PAGE STARTS HERE*/
    .we-offer-wrapper{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .we-offer-wrapper-column{
    flex:0 0 49%;
    min-width: 49%;
  }
  .we-offer-wrapper-column h3{
    font-size: 26px;
    line-height: 150%;
  } 
  .we-offer-wrapper-column p{
    font-size: 16px;
    line-height: 150%;
    padding: 10px 0 20px 0;
  }
  .process-wrapper{
    padding: 0;
  }
  .process-wrapper-column{
    padding: 30px 40px 0 0;
  }
  .process-wrapper-column h3{
    font-size: 22px !important;
    line-height: 140%;
  }
  .process-wrapper-column p{
    font-size: 15px !important;
    line-height: 160%;
  }
  .floating-arrow-right{
    top:14%;
    right: 15%;
    width: 50%;
  }
  .floating-arrow-down {
        position: absolute;
        top: 18%;
        right: 16%;
        z-index: 2;
        width: 56.4%;
    }
  .floating-arrow-left{
    top:14%;
    right: 10%;
    width: 50%;
  }
    /*SERVICE PAGE ENDS HERE*/
    /*CONTACT PAGE STARTS HERE*/
    .contact-form-grid-wrapper-column span{
      font-size: 18px;
    }
    .contact-form-grid-wrapper-column h2{
      font-size: 35px;
    }
    .contact-form-grid-wrapper-column:nth-child(2){
      background: #D1F0C1;
      border-radius: 30px;
      padding: 20px;
    }
    .contact-form-para-wrapper{
      border: 3px solid #008A50;
      padding: 15px;
    }
    .contact-form-para-wrapper p{
      font-size: 16px;
    }
    .contact-wrapper-column:nth-child(1) h2{
      font-size: 27px !important;
    }
    .contact-faq-wrapper-column:nth-child(1){
      padding: 15px;
    }
    .contact-info-btn{
      margin: 0;
    }
    .accordion{
      font-size: 18px;
      padding: 15px;
    }
    .faq-wrapper-column p {
        font-size: 14px;
        line-height: 18px;
    }
    /*CONTACT PAGE ENDS HERE*/
    /*SECTOR INTERNAL PAGE STARTS HERE*/
    .three-steps-wrapper-column{
    flex:0 0 30%;
    min-width: 30%;
    padding: 30px;
  }
  .three-steps-wrapper-column:nth-child(2){
    margin: 110px 0 0 0;
  }
  .three-steps-wrapper-column:nth-child(3){
    margin: 220px 0 0 0;
  }
  .three-steps-wrapper-column span{
    font-size: 35px;
  }
  .three-steps-wrapper-column h3{
    font-size: 20px;
    padding: 15px 0 10px 0;
  }
  .three-steps-wrapper-column p{
    font-size: 16px;
  }
  .accordion{
      font-size: 18px;
      padding: 15px;
    }
    .faq-wrapper-column p {
        font-size: 14px;
        line-height: 18px;
    }
    .three-steps-floating-mid{
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%) !important;
    width: 70%;
  }
    /*SECTOR INTERNAL PAGE ENDS HERE*/
    /*BLOG PAGE STARTS HERE*/
      .blog-tiles-wrapper {
    display: flex;
    flex-direction: row;
  }
  .blog-tiles-wrapper-column{
    flex:0 0 32%;
    min-width: 32%;
  }
    /*BLOG PAGE ENDS HERE*/
}
@media  only screen and (min-width: 992px) and (max-width: 1200px) {
.navbar{
    display: none;
  }
  .span-holder span{
    font-size:20px;
  }
  .choose-us h2, .services h2, .sectors h2, .testimonials h2, .blogs h2, .footer h2, .team h2, .purpose-wrapper-column h2, .contact-faq h2, .we-offer h2, .process h2, .space-for-success-wrapper-column h2, .sector-info h2, .three-steps h2, .upto-date h2, .blog-tiles h2, .upto-date-wrapper-column h3, .blog-detail h2, .applicant-form h2{
    font-size: 40px;
    line-height: 52px;
  }
  .choose-us p, .services p, .sectors p, .testimonials p, .blogs p, .footer p, .team p, .purpose-wrapper-column p, .contact-faq p, .we-offer p, .process p, .space-for-success-wrapper-column p, .sector-info p, .upto-date p, .blog-tiles p, .blog-detail p{
    font-size: 20px;
    line-height: 26px;
  }
  .choose-us-floating-left {
    width: 82.87px;
  }
  .choose-us-floating-right {
    width: 82.87px;
}
  .banner-wrapper{
background: url(/wp-content/themes/NZCleaning/assets/images/Mask group.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .banner-wrapper-column{
    flex: 0 0 100%;
    min-width: 100%;
  }
  .banner-wrapper{
    display: flex;
    flex-direction: column;
    padding:0px 0;
    background: ;
  }
  .banner-wrapper-column:nth-child(1) {
        padding: 40px 25px;
        flex:0 0 69%;
        min-width: 69%;
        background: url(/wp-content/themes/NZCleaning/assets/images/Rectangle 2.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    }
  .banner-wrapper-column:nth-child(2){
    flex:0 0 29%;
        min-width: 29%;
  }
  .home-floating-div{
    display: none;
  }
  .choose-us-wrapper{
    padding:10px 0 0 0 ;
  }
  .choose-us-centered-img{
    top: 50%;
    left: 50%;
    width: 370px;
    transform: translate(-50%, -50%) !important;
  }
  .choose-us-wrapper-column{
    flex:0 0 30%;
    min-width: 30%;
    margin: 10px 0 0 0;
  }
  .choose-us-wrapper-column:nth-child(1) .choose-us-wrapper-column-bg, .choose-us-wrapper-column:nth-child(3) .choose-us-wrapper-column-bg{
  width: auto;
  height: 180px;
  padding:6% 8%;
}
.choose-us-wrapper-column:nth-child(4) .choose-us-wrapper-column-bg, .choose-us-wrapper-column:nth-child(6) .choose-us-wrapper-column-bg{
  width: auto;
  height: 180px;
  margin: 0;
  padding: 2% 8%;
}
.choose-us-wrapper-column:nth-child(5), .choose-us-wrapper-column:nth-child(2){
  display: block;
}
.choose-us-wrapper-column h3{
  font-size: 20px;
}
  .choose-us-wrapper-column p{
    font-size: 16px;
  }
  .stats-floating-right{
    width: 52px;
  }
  .stats-floating-left{
    width: 52px;
  }
  .services-slider-wrapper h3 {
    font-size: 28px;
    line-height: 31px;
    padding: 0 20px 20px 0;
}
.sectors-wrapper{
  padding:150px 0 0 0;
}
.sectors-wrapper-column{
  padding: 30px 0 0 0;
}
.sectors-wrapper-column h3 {
    font-size: 21px;
    line-height: 38px;
    color: #008A50;
}
.sectors-wrapper-column p {
    font-size: 16px;
    line-height: 17px;
    padding: 0px 0 20px 0;
}
.sectors-head-wrapper-column:nth-child(2) a {
    border-radius: 7px;
    width: 35px;
    height: 35px;
}
.sectors-head-wrapper-column:nth-child(2) a img {
    width: 18.75px;
}
.sector-img-shadow{
  width: 100%;
}
.testimonials-slider-wrapper .glide__slide .profile {
    display: block;
    width: 60px;
    margin: -34px auto 0 auto;
}
.testimonials-floating-right{
  width: 200px;
  top:-20%;
}
.testimonials-floating-left {
    width: 82px;
}
.testimonials-slider-wrapper .glide__slide p {
    padding: 5px 0 0 0;
}
.testimonials-slider-wrapper .glide__slide:nth-child(even) {
        background-size: 80%;
        padding: 35px 75px 65px 75px;
    }
  .testimonials-slider-wrapper .glide__slide:nth-child(odd) {
        background-size: 73%;
        padding: 45px 65px 75px 75px;
    }
  .testimonials-slider-wrapper .glide__slide .rating{
    margin: 10px auto 0 auto;
  }
  .stats-wrapper-column span{
    font-size: 42px;
  }
  .stats-wrapper-column p{
    font-size: 13px;
  }
  .stats-wrapper-column p span{
    font-size: 13px;
  }
  .blogs-wrapper{
     display: flex;
     justify-content: space-between;
     flex-wrap:wrap;
     align-items: flex-start;
  }
  .blogs-wrapper-column:nth-child(even){
    border:none;
    background: white;
  }

  .blogs-wrapper-column{
     flex:0 0 32%;
    min-width: 32%;
  }
  .blog-content{
    padding:10px;
  }
  .meta-wrapper span{
    font-size:12px;
  }
  .blogs-wrapper-column a{
    font-size: 15px;
  }
  .blogs-wrapper-column p{
    font-size: 14px;
    padding:10px 0 20px 0 !important;
  }
  .blog-btn-wrapper{
    padding: 5px 0 0 0;
  }
  .blogs-floating-left {
    top: 17%;
    z-index: 4;
    width: 82px;
}
.blogs-floating-right {
    right: 0%;
    bottom: -7%;
}
.contact-wrapper-column h2{
  font-size: 40px;
}
.contact-wrapper-column:nth-child(1) h2, .contact-wrapper-column h2{
  font-size: 40px;
}
.contact-wrapper-column h2{
  font-size: 40px;
}
.contact-wrapper-column span{
font-size: 14px;
}
.contact-wrapper-column p{
  font-size: 15px;
}
.contact-info-btn span strong{
  font-size: 18px;
}
.newsletter h2{
  font-size: 45px;
  position: relative;
  z-index: 5;
}
.newsletter p{
  font-size: 19px;
}
  .services-slider-wrapper a, .blog-yellow-btn{
    padding:0 0 0 10px !important;
    margin:10px 0 0 0 !important;
  }
  .services-floating-right{
    width: 82px;
  }
  .footer-wrapper{
    flex-wrap:wrap;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding:30px 0 0 0;
  }
  .footer-wrapper-column:nth-child(1){
    flex:0 0 29%;
    min-width: 29%;
    padding: 0 0px 0 0;
  }
  .footer-wrapper-column:nth-child(2), .footer-wrapper-column:nth-child(3){
    flex:0 0 23%;
    min-width: 23%;
    padding: 0;
  }
  .footer-wrapper-column:nth-child(4){
    flex:0 0 23%;
    min-width: 23%;
  }
  .footer-location{
    padding: 0;
  }
  .copyrights-wrapper{
    padding: ;
  }
  .copyrights-wrapper-column:nth-child(1){
    flex:0 0 69%;
    min-width: 69%;
  }
  .copyrights-wrapper-column:nth-child(2){
    flex:0 0 29%;
    min-width: 29%;
  }
  .copyrights-wrapper p{
    font-size: 15px;
  }
  .cert-img-wrapper-column{
    padding:20px 0;
  }
  .footer-wrapper-column:nth-child(1) h3, .footer-wrapper-column:nth-child(2) h3, .footer-wrapper-column:nth-child(3) h3, .footer-wrapper-column:nth-child(4) h3{
  font-size: 21px;
}
/*ABOUT PAGE STARTS HERE*/
.about-us-banner-wrapper-column h1{
      font-size: 40px;
    }
    .about-us-banner-wrapper-column p{
      font-size: 20px;
    }
    .commitment-wrapper-column h2{
      font-size: 40px;
      line-height: 100%;
      margin:10px 0;
    }
    .about-stats-wrapper-column span{
      font-size: 30px;
    }
    .about-stats-wrapper-column p{
      font-size: 16px;
    }
    .purpose-wrapper-column h2 {
        font-size: 30px;
        text-align: left !important;
    }
    .purpose-para-wrapper{
      margin: 20px 0 0 0;
      padding: 10px;
    }
    .team-info-wrapper{
      padding: 20px 50px 20px 20px;
      line-height: 130%;
    }
    .service-form{
      padding: 50px 40px;
    }
    .service-form input, .service-form select{
      width: 700px;
    }
    .service-form h2{
      font-size: 30px;
    }
    .career{
      padding: 50px 30px;
    }
    .career-wrapper-column h2{
      font-size: 35px;
    }
    .career-wrapper-column p{
      font-size: 18px;
      padding: 10px 0;
    }
    /*ABOUT PAGE ENDS HERE*/
    /*SERVICE PAGE STARTS HERE*/
      .we-offer-wrapper-column h3{
      font-size: 25px;
    }
    .we-offer-wrapper-column P{
      font-size: 16px;
      line-height: 140%;
      padding: 10px 0 20px 0;
    }
    .process-wrapper{
      padding: 0;
    }
    .process-wrapper-column h3{
    font-size: 22px !important;
      line-height: 140% !important;
    }
    .process-wrapper-column p{
      font-size: 16px !important;
      line-height: 160%;
    }
        .floating-arrow-right {
        position: absolute;
        top: 20%;
        right: 15%;
        z-index: 2;
        width: 38%;
    }
      .floating-arrow-down {
        position: absolute;
        top: 23%;
        right: 9%;
        z-index: 2;
        width: 38.3%;
    }
      .floating-arrow-left {
        position: absolute;
        top: 20%;
        right: 16%;
        z-index: 2;
        width: 38.3%;
    }
    /*SERVICE PAGE ENDS HERE*/
    /*CONTACT PAGE STARTS HERE*/
    .contact-form-grid-wrapper-column:nth-child(2){
    background: #D1F0C1;
    border-radius: 30px;
    padding: 20px;
  } 
    /*CONTACT PAGE ENDS HERE*/
}