*{
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
}

a{
    text-decoration: none;
    width: fit-content;
    margin: 0 auto;
}

body{
    background: #fff;
}

.unselectable {
    user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

aside#nav-bar{
    display: none;
    text-align: center;
}


/* HERO SECTION */
#hero{
    background: url(images/landscape-services.png) fixed;
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    padding-bottom: 50px;
    box-shadow: 0 0 10px #000;
    padding-top: 230px;
}

div.overlay{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: #000;
    opacity: 0.7;
}


/* HEADER SECTION */
header{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

div.banner-d{
    background: #fafdff;
    color: #243037;
    height: 50px;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    right: 0;
    top: 0;
    z-index: 99999;
    box-shadow: 0 0 5px #000;
}

div.banner{
    padding: 0 50px;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.banner a{
    color: #243037;
    text-decoration: none;
    font-weight: 600;
    font-family: Arial, Helvetica, sans-serif;
}

.banner a:hover{
    text-decoration: underline;
}

div.banner .banner-estimate{
    font-weight: 500;
    color: #fff;
}

div.banner .banner-tel{
    font-weight: 500;
    color: #fff;
    display: flex;
    align-items: center;
}

div.banner .banner-tel span{
    display: none;
}

div.banner .banner-tel img{
    width: 25px;
    margin-right: 5px;
}

div.header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 50px;
    position: absolute;
    left: 0;
    right: 0;
    top: 30px;
}

div.nav-logo{
    display: flex;
    align-items: center;
    z-index: 2;
}

div.nav-logo .small{
    display: none;
}

div.nav-tel{
    z-index: 2;
}

div.nav-tel button{
    font-size: 20px;
    background: #6398ab;
    color: #fff;
    font-weight: 600;
    border: 2px solid #80AFC9;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 100px;
    z-index: 2;
    animation: wobble 1s infinite;
}

div.nav-tel button:hover{
    background: #80AFC9;
    border-color: #6398ab;
    animation: wobble 1.5s infinite;
}

@keyframes wobble {
    0% {
      transform: translateY(0);
    }
    25% {
      transform: translateY(-1.5px) rotate(-5deg);
    }
    50% {
      transform: translateY(1.5px) rotate(5deg);
    }
    75% {
      transform: translateY(-1px) rotate(-3deg);
    }
    100% {
      transform: translateY(0);
    }
}

div.nav-tel button img{
    width: 35px;
    margin-right: 10px;
}


/* MOBILE MENU TOGGLE BUTTON */
#menu{
    width: 55px;
    height: 55px;
    cursor: pointer;
    display: none;
    z-index: 9999;
    box-shadow: 0 0 10px #fff;
    border-radius: 5px;
    position: relative;
}

#menu.active{
    z-index: 999999;
}

.menu .container{
    width: 45px;
    height: 45px;
    margin: 4px;
    position: relative;
    z-index: 99999;
}

#menu span{
    background: #fff;
    width: 80%;
    height: 5px;
    border-radius: 5px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.5s, width 0.5s;
    transition: 0.3s;
    z-index: 99999;
}

#menu .line-1{
    transform: translate(-50%, -14px);
}

#menu .line-3{
    transform: translate(-50%, 9px);
}

#menu.active .line-1{
    transform: translate(-50%, -50%) rotate(-45deg);
}

#menu.active .line-3{
    transform: translate(-50%, -50%) rotate(45deg);
}

#menu.active .line-2{
    width: 0;
}


div.hero{
    display: flex;
    align-items: start;   
    justify-content: center;
    color: #fff;
    z-index: 2;
}

.hero-content{
    z-index: 2;
    width: 50%;
}

.hero h1{
    color: #fff;
    font-size: 60px;
    padding: 20px 0;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    line-height: 70px;
    text-shadow: 0 0 5px #000;
}

.hero h1 span{
    padding: 5px;
    width: 150px;
    background: #80AFC9;
    margin-top: 10px;
}

.hero h2{
    font-weight: 500;
    text-shadow: 0 0 5px #000;
}

.hero-content ul{
    margin: 20px 0;
    background: #0000007f;
    padding: 10px;
    position: relative;
}

ul img.five-star{
    position: absolute;
    width: 135px;
    top: -50px;
    right: -50px;
    transition: 0.3s;
}

ul img.five-star:hover{
    transform: scale(1.1);
}

.hero-content ul li{
    display: flex;
    align-items: start;
    list-style-type: none;
    margin-top: 10px;
    color: #80AFC9;
    font-family: Arial, Helvetica, sans-serif;
}

.hero-content ul li img{
    margin-right: 5px;
    width: 35px;
}

.hero-content p{
    padding: 25px;
    background: #0000006f;
    margin: 15px 0;
}

.hero-content p b{
    line-height: 40px;
}

.hero-buttons{
    display: flex;
    /* flex-direction: column; */
    justify-content: left;
}

.hero-content button{
    background: #CC0004;
    color: #fff;
    margin-top: 10px;
    border: 2px solid #a61114;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 200;
    z-index: 2;
}

.hero-content button:hover{
    background: #a61114;
}

.hero-content button.btn2{
    background: #7CB0C8;
    border-color: #6398ab;
    color: #243037 ;
    margin-left: auto;
}

.hero-content button.btn2:hover{
    background: #6398ab;
    color: #000;
}

.hero-content button b{
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
}


/* FORM SECTION */
div.contact-form{
    max-width: 40%;
    transition: 0.3s;
    justify-content: right;
    margin-left: auto;
    background-color: #243037;
    padding: 30px;
    z-index: 2;
}

.contact-form h2{
    font-size: 50px;
    margin-top: 20px;
    text-align: center;
}

.contact-form h3{
    font-size: 28px;
    text-decoration: underline;
    text-align: center;
    font-weight: 500;
}

form {
    transition: 0.3s;
}

form:hover{
    box-shadow: 0 0 10px #2430377d;

}

form button{
    padding: 10px 20px;
    width: 100%;
    background: #80AFC9;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}

form button:hover{
    background: #3F87AE;
}

form span, .heading span{
    color: #3F87AE;
    font-size: 25px;
}

.file{
    padding: 10px;
    border: 1px solid #000;
}

div.consent input{
    width: initial;
    display: inline-block;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 16px;
    border-radius: 0;
    box-sizing: border-box;
    border: 1.5px outset #000;
}



/* ASIDE NAV */
aside#nav-bar{
    position: fixed;
    background: #000;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

aside#nav-bar.active{
    display: flex;
}

div.nav{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.nav a{
    color: #fff;
    margin: 20px 0;
    font-size: 25px;
    font-weight: 600;
    text-decoration: underline;
}


/* OFFER SECTION */
article#offer{
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #243037;
    text-align: center;
}

div.offer-d{
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

div.offer-image{
    width: 50%;
}

.offer-image img{
    height: 600px;
    box-shadow: 0 0 10px #000;
}

div.offer-cta{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    flex-direction: column;
}

div.counter{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    border: 2px dashed #6398ab;
    border-left: none;
    border-right: none;
}

div.offer-cta h2{
    font-size: 65px;
    position: relative;
    display: flex;
    flex-direction: column;
    color: #fff;
}

div.countdown{
    font-size: 60px;
    font-weight: 500;
    color: #fff;
    padding-top: 30px;
}

div.cta-buttons{
    display: flex;
    flex-direction: column;
    margin: 20px 0;
}

div.cta-buttons button{
    display: block;
    background: #CC0004;
    color: #fff;
    margin: 10px auto;
    border: 2px solid #a61114;
    padding: 12px 30px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 200;
}

div.cta-buttons button:hover{
    background: #a61114;
}

div.cta-buttons button.btn2:hover{
    background: #6398ab;
    color: #000;
}

div.cta-buttons button.btn2{
    background: #7CB0C8;
    border: 2px solid #6398ab;
    color: #243037;
}

div.cta-buttons button b{
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
}


/* FEEDBACK SLIDER */
article#reviews{
    padding: 50px 0;
    background-image: url(images/sod.png);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

div.reverlay{
    top: 0;
    left: 0;
    right: 0;
    position: absolute;
    height: 100%;
    backdrop-filter: blur(50px);
}

div.swiper-slide div.profile{
    align-items: center;
    display: flex;
    flex-direction: row;
}

div.profile .profile-d{
    margin-left: 20px;
}

div.profile .name{
    font-size: 30px;
    font-weight: 600;
}

div.profile p{
    font-size: 18px;
}

article#reviews div.reviews-d{
    position: relative;
    margin: 0 auto;
}

article#reviews div.reviews-d h2{
    font-size: 65px;
    text-align: center;
    color: #fff;
    text-shadow: 0 0 10px #000;
}

article#reviews div.reviews-d p.rp{
    font-size: 30px;
    color: #fff;
    text-align: center;
    text-shadow: 0 0 5px #000;
}

article#reviews div.reviews-d a{
    font-size: 25px;
    text-align: center;
    text-decoration: underline;
    display: flex;
    align-items: center;
    margin-top: 30px;
}

/* Style the inactive dots */
.swiper-pagination .swiper-pagination-bullet {
  background-color: #fff;
  width: 20px;
  height: 20px;
  margin: 0 5px !important;
}


/* Adjust position for next button */
.swiper-button-next {
  right: 10px !important; 
  top: 450px !important;
}

/* Adjust position for previous button */
.swiper-button-prev {
  left: 10px !important; 
  top: 450px !important;
}


article#reviews div.swiper-container {
    overflow-x: hidden;
    overflow-y: auto;
    padding: 50px 0;
    color: #000;
}

article#reviews .swiper-container {
    height: fit-content;
    padding: 20px;
    margin: 0 auto;
    box-sizing: border-box;
}

article#reviews .swiper-slide {
    background-color: #fff;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    text-align: left;
    box-shadow: 2px 2px 10px #243037;
    cursor: grab;
    position: relative;
    height: 400px;
}

article#reviews .swiper-slide .sws{
    overflow: auto;
    height: 60%;
    margin-top: 30px;
}

/* Scrollbar Track for .sws */
.sws::-webkit-scrollbar {
  width: 5px;
  border-radius: 6px;
}

/* Scrollbar Thumb (Grip) for .sws */
.sws::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 6px;
}

/* Scrollbar Thumb on Hover for .sws */
.sws::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

/* Scrollbar Track for .sws */
.sws::-webkit-scrollbar-track {
  background-color: #f0f0f0;
}

/* Scrollbar Corner for .sws */
.sws::-webkit-scrollbar-corner {
  background-color: #f0f0f0;
}

/* Scrollbar Up Button - Removed for .sws */
.sws::-webkit-scrollbar-button:start {
  display: none;
}

/* Scrollbar Down Button - Removed for .sws */
.sws::-webkit-scrollbar-button:end {
  display: none;
}

/* Scrollbar Arrow Icons for .sws */
.sws::-webkit-scrollbar-arrow {
  background-color: #888;
  border-radius: 6px;
}

/* Scrollbar Resizer for .sws */
.sws::-webkit-scrollbar-resizer {
  background-color: #888;
}

/* Scrollbar Track Piece for .sws */
.sws::-webkit-scrollbar-track-piece {
  background-color: #f0f0f0;
}


article#reviews .swiper-button-next,
article#reviews .swiper-button-prev {
    color: #243037 !important;
    font-weight: 600;
    position: absolute;
    z-index: 1;
    /* background: #80AFC9; */
    background: #00000038;
    padding: 5px;
}

article#reviews .swiper-button-next {
    right: 0;

}

article#reviews .swiper-button-prev {
    left: 0;
}

p.review{
    font-size: 22px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 25px;   
}

img.homestars{
    position: absolute;
    top: 20px;
    right: 20px;
}

div.swiper-pagination{
    margin-bottom: 50px;
}


/* CLASSIFICATION ARTICLE */
article#walls{
    padding: 50px 0;
    box-shadow: 0 0 10px #000;
    background: #fafdff;
}

div.walls{
    padding: 0 70px;
}

div.walls h2{
    font-size: 40px;
    color: #243037;
    display: flex;
    flex-direction: column;
}

div.walls h2 span{
    padding: 3.5px;
    width: 100px;
    background: #80AFC9;
}

div.walls p{
    margin-top: 10px;
    color: #243037;
    font-size: 22px;
    font-weight: 500;
}

div.walls .l-l,
div.walls .l-r{
    display: flex;
    padding-bottom: 50px;
}

div.walls .l-r{
    flex-direction: row-reverse;
}

.ct-ct a{
    width: fit-content;
}

.ct-img{
    width: 500px;
    height: 350px;
    margin-left: 50px;
    border: 10px solid #f2f2f2;
}

div.walls .l-r .ct-img{
    margin-left: 0;
    margin-right: 50px;
}

div.walls .l-l h3,
div.walls .l-r h3{
    font-size: 25px;
    color: #3F87AE;
    margin-top: 10px;
}

div.walls .l-l button,
div.walls .l-r button{
    background: #80AFC9;
    color: #fff;
    margin-top: 10px;
    border: 2px solid #3F87AE;
    padding: 15px 20px;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
}

div.walls .l-l button:hover,
div.walls .l-r button:hover{
    background: #6398ab;
}

div.walls .l-l button img,
div.walls .l-r button img{
    width: 30px;
    height: 30px;
    margin-right: 5px;
    border: none
}



/* COPY article */
article#copy{
    padding: 30px 0;
    background: url(images/Reliable-Hardscapes-Driveway-Interlocking-Mississauga.png) fixed;
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    color: #fff;
    position: relative;
}

#copy .overlay{
    opacity: 0.5;
}

div.copy{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70%;
    margin: 0 auto;
    text-align: center;
    height: 100%;
    z-index: 2;
}


div.copy p{
    font-size: 35px;
    font-weight: 500;
    margin:  0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    z-index: 2;
    font-family: Arial, Helvetica, sans-serif;
}


div.copy h3{
    font-size: 60px;
    margin: 20px 0 10px 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.copy a{
    z-index: 2;
}

.copy button{
    background: #CC0004;
    color: #fff;
    margin-top: 10px;
    border: 2px solid #a61114;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 200;
    z-index: 2;
}

.copy button:hover{
    background: #a61114;
}

.copy button b{
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
}



/* GALLERY SECTION */
article#gallery{
    width: 100%;
    padding: 50px 0;
}

div.gallery{
    padding: 0 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 35px;
    font-weight: 600;
    padding-bottom: 50px;
}

div.gallery h2{
    font-size: 45px;
    color: #243037;
    font-weight: 600;
    text-align: center;
}

div.gallery i{
    font-size: 20px;
    color: #6e7578;
    margin-bottom: 50px;
}

div.container{
    display: grid;
    align-items: center;
    justify-content: center;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15px; 
    width: 100%;
}

div.image{
    height: 230px;
    border: 2px solid #243037;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

div.image:hover span.g-overlay{
    opacity: 1;
}

span.g-overlay{
    position: absolute;
    background: linear-gradient(180deg, #00000043, #000);
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

div.image img{
    width: auto;
    height: 100%;
    transition: 0.3s;
}

span.g-overlay img{
    width: 90px;
    height: 90px;
    opacity: 0.9;
}

a.see-more{
    font-size: 23px;
    text-decoration: underline;
    color: #243037;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
}

a.see-more:hover{
    color: #6e7578;
    text-decoration-color: #6e7578;
}


/* CAROUSEL OVERLAY */
#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.897);
    background: #000;
    justify-content: center;
    align-items: center;
    z-index: 9999999999;
    overflow: auto;
}

#carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

#prev, #next {
    font-size: 2em;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

#prev {
    left: 20px;
}

#next {
    right: 20px;
}


#close {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 20px;
    transition: 0.3s;
    z-index: 999;
}

#close img{
    height: 40px;
    width: 40px;
    transition: 0.3s;
}

#close:hover{
    box-shadow: 2px 2px 8px #000000ba;
}

#close:hover img{
    transform: scale(1.06);
}

#currentImage {
    width: 130%;
    margin-top: 10px;
}

.caption {
    color: white;
    padding: 10px;
    font-size: 15px;
    font-weight: 400;
}

.thumbnails {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
    display: none;
}

.thumbnail {
    width: 50px;
    height: 50px;
    margin: 0 5px;
    cursor: pointer;
    border: 2px solid transparent; /* Initially no border */
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail.active {
    border-color: white; /* Border for the active thumbnail */
}



/* PROCESS SECTION */
article#process{
    padding: 50px 0;
    background: url(images/landscape-mississauga.png) fixed;
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

#process .overlay{
    opacity: 0.5;
}

div.process{
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.process h2{
    font-size: 40px;
    color: #fff;
    z-index: 2;
    text-shadow: 0 0 5px #000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process h2 span{
    padding: 5px;
    width: 200px;
    background: #80AFC9;
    margin-top: 10px;
}

div.process-d{
    display: grid;
    align-items: center;
    justify-content: center;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
    z-index: 2;
    padding: 20px 0;
}

div.step{
    height: 270px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-shadow: 0 0 5px #000;
    background: #f2f2f2;
}

div.step h3{
    font-size: 30px;
}

div.step p{
    font-size: 23px;
    font-weight: 500;
}

div.process-cta{
    margin-top: 30px;
    z-index: 2;   
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.process-cta a{
    display: flex;
    align-items: center;
}

div.process-cta button{
    background: #CC0004;
    color: #fff;
    border: 2px solid #a61114;
    padding: 12px 20px;
    cursor: pointer;
    width: 370px;
    font-size: 14px;
    font-weight: 200;
    margin-right: 50px;
}

div.process-cta button:hover{
    background: #a61114;
}

div.process-cta button.btn2{
    background: #7CB0C8;
    border: 2px solid #6398ab;
    color: #000 ;
    margin: 0;
    margin-left: 50px;
}

div.process-cta button.btn2:hover{
    background: #6398ab;
}

div.process-cta button b{
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
}



/* FEEDBACK SECTION */
article#feedback{
    padding: 50px 0;
    background: #6398ab;
}

div.feedback{
    padding: 0 50px;
    display: grid;
    align-items: center;
    justify-content: center;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15px;
}

div.card{
    background: #f2f2f2;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.card h2{
    font-size: 30px;
}

.card p.card-review{
    padding: 10px 0;
}

.card img{
    width: 150px;
    margin-bottom: 10px;
}

.feedback-photo{
    border: 2px solid #000;
    width: 100%;
    height: 200px;
    margin: 30px 0 20px 0;
}

.feedback-google{
    width: 100px !important;
    margin: 5px 0 !important;
}

.photo1{
    background: url(images/Reliable-Hardscapes-Driveway-Interlocking-Service.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.photo2{
    background: url(images/Reliable-Hardscapes-Driveway-Interlocking-Paving-Mississauga.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.photo3{
    background: url(images/Reliable-Hardscapes-Patio-Interlocking-Service.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}



/* HIRING SECTION */
article#hiring{
    padding: 50px 0;
}

div.hiring{
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.hiring h2{
    font-size: 45px;
    font-weight: 500;
    color: #243037;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hiring h2 span{
    padding: 4px;
    width: 100px;
    background: #80AFC9;
    margin-bottom: 20px;
    margin-top: 10px;
}

.hiring p{
    font-size: 32px;
    font-weight: 400;
    color: #243037;
}

.hiring a{
    text-decoration: underline;
}



/* SERVICES SECTION */
article#services{
    padding: 30px 0;
    background: url(images/Reliable-Hardscapes-Driveway-Interlocking-Paving-Mississauga.png) fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

#services .overlay{
    opacity: 0.4;
}

div.services{
    display: grid;
    align-items: center;
    justify-content: center;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px; 
    grid-row-gap: 20px;
    padding: 0 70px;
    z-index: 2;
}

div.service{
    padding: 20px;
    box-shadow: 0 0 10px #243037a2;
    cursor: pointer;
    width: 320px;    
    background: #ffffffbc;
    transition: 0.3s;
    z-index: 2;
}

div.service:hover{
    background: #fff;
}

div.service-d{
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

div.service span{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transition: 0.3s;
    background: linear-gradient(180deg, #00000000, #0000004c, #000000c5);
    opacity: 0.5;
}

div.service:hover span{
    opacity: 1;
}

div.service:hover img{
    transform: scale(1.1);
}

div.service-d{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

div.service-d1{
    background: url(images/landscape.png);
    background-position: center;
    background-size: cover;
    background-repeat: no;
}

div.service-d2{
    background: url(images/Reliable-Hardscapes-Patio-Interlocking-Service.png);
    background-position: center;
    background-size: cover;
    background-repeat: no;
}

div.service-d3{
    background: url(images/sod.png);
    background-position: center;
    background-size: cover;
    background-repeat: no;
}

div.service-d4{
    background: url(images/fence.png);
    background-position: center;
    background-size: cover;
    background-repeat: no;
}

div.service-d5{
    background: url(images/r-wall.png);
    background-position: bottom;
    background-size: cover;
    background-repeat: no;
}

div.service-d6{
    background: url(images/concrete.png);
    background-position: bottom;
    background-size: cover;
    background-repeat: no;
}

div.service-d7{
    background: url(images/Professional-Paving-Driveway.png);
    background-position: bottom;
    background-size: cover;
    background-repeat: no;
}

div.service-d img{
    position: absolute;
    transition: 0.3s;

}

div.service h3{
    margin-top: 10px;
    z-index: 1;
    color: #243037;
    font-size: 25px;
    display: flex;
    flex-direction: column;
}

div.service h3 span{
    width: 60px;
    height: 6px;
    background: #80AFC9;
    position: initial;
    opacity: 1;
    margin-top: 5px;
}

div.service p{
    font-size: 17px;
    margin-top: 10px;
    display: none;
}



/* NUMBERS SECTION */
article#numbers{
    padding: 50px 0;
}

div.numbers{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 50px;
}

.numbers h2{
    font-size: 40px;
    color: #243037;
    padding: 0 20px 20px 20px;
    text-align: center;
}

div.numbers-d{
    width: 80%;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

.number img{
    width: 120px;
    height: 120px;
    padding: 20px;
    /* border: 2px solid crimson; */
}

.number h3{
    font-size: 50px;
    color: RGB(11, 135, 184);
}

.number h4{
    font-size: 30px;
    font-weight: 500;
    color: RGB(11, 135, 184);
}


/*  */
article#details{
    padding: 50px 0;
    background: #a0d5ee;
    display: flex;
    align-items: center;
    justify-content: center;
}

div.details{
    padding: 0 100px;
    display: flex;
    justify-content: center;
    align-items: start;
}

div.details h2{
    font-size: 40px;
}

div.insta{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 50%;
}

div.insta div{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

div.insta div a{
    width: fit-content;
    margin: 0;
    margin: 10px;
    font-size: 25px;
    align-items: center;
    display: flex;
    justify-content: center;
    color: #000;
    font-weight: 500;
}

div.insta div a:hover{
    text-decoration: underline;
}

div.insta div a img{
    width: 35px;
    margin-right: 5px;
}


div.areas{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
}

div.areas ul{
    display: grid;
    align-items: center;
    justify-content: center;
    grid-template-columns: repeat(2, 1fr);
}

div.areas ul li{
    font-size: 25px;
    list-style: none;
    padding-left: 30px; 
    display: flex;
    align-items: center;
    background-repeat: no-repeat; 
    background-position: left; 
    background-size: 25px;
    color: #000;
    font-weight: 500;
    margin: 10px;
}



/* FOOTER SECTION */
footer{
    background: #243037;
    padding: 30px 0;
    color: #fff;
}

div.footer{
    padding: 0 50px;
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.footer div.snrm{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 33.333%;
    text-align: center;
}

.footer .socials{
    display: flex;
    flex-direction: row;
    align-items: center;
}


.footer .socials a{
    margin: 10px;
}

.footer .socials img{
    width: 30px;
}

.footer h2{
    font-size: 30px;
    color: #fff;
}

.footer a{
    color: #fff;
    font-size: 20px;
    margin-top: 10px;
}

.footer p{
    color: #fff;
    font-size: 20px;
    margin: 10px 0;
}

.footer ul li{
    list-style-type: none;
    font-size: 20px;
    margin-top: 10px;
}

footer p.copyright{
    text-align: center;
    padding-bottom: 0;
    padding: 70px 0 0 0;
}


/* MEDIA QUERY */
@media (min-width: 1250px){
    div.banner{
        width: 1150px;
        margin: 0 auto;
        padding: 0;
    }

    div.header{
        width: 1150px;
        margin: 0 auto;
        padding: 30px 0;
    }
    
    div.hero{
        width: 1150px;
        margin: 0 auto;
        padding: 0;
    }

    div.offer-d{
        width: 1150px;
        margin: 0 auto;
        padding: 0;
    }

    div.walls,
    div.steps{
        padding: 0;
        width: 1150px;
        margin: 0 auto;

    }

    div.gallery{
        width: 1150px;
        margin: 0 auto;
        padding: 0;
    }

    div.copy{
        width: 1150px;
        margin: 0 auto;
        padding: 0;
    }

    div.process{
        width: 1150px;
        margin: 0 auto;
        padding: 0;
    }

    div.revview{
        width: 1150px;
        margin: 0 auto;
    }

    div.feedback{
        width: 1150px;
        margin: 0 auto;
        padding: 0;
        grid-gap: 15px;
    }

    div.hiring{
        width: 1150px;
        margin: 0 auto;
        padding: 0;
    }

    div.services{
        width: 1150px;
        margin: 0 auto;
        padding: 0;
    }

    div.services-d{
        grid-gap: 15px;
    }

    div.numbers{
        width: 1150px;
        margin: 0 auto;
        padding: 0;
    }

    div.details{
        width: 1150px;
        margin: 0 auto;
        padding: 0;
    }

    div.footer{
        width: 1150px;
        margin: 0 auto;
        padding: 50px 0;
    }
}

@media (max-width: 1250px){
    div.details{
        justify-content: space-between;
        padding: 0;
        width: 100%;
    }

    div.details h2{
        font-size: 35px;
        margin-bottom: 10px;
    }

    div.insta div{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    div.areas ul{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    div.areas ul li{
        padding-left: 0;
    }

    div.banner{
        width: 1050px;
        margin: 0 auto;
        padding: 0;
    }

    div.header{
        width: 1050px;
        margin: 0 auto;
        padding: 30px 0;
        top: 40px;
    }
    
    div.hero{
        width: 1050px;
        margin: 0 auto;
        padding: 0;
    }

    .hero h1{
        font-size: 50px;
        line-height: initial;
    }

    .hero h1 span{
        margin-top: 5px;
    }

    ul img.five-star{
        width: 120px;
        top: -40px;
        right: -40px;
    }

    .hero-content ul li{
        font-size: 20px;
    }

    .contact-form h3{
        font-size: 25px;
    }

    .contact-form h2{
        font-size: 45px;
    }

    div.offer-d{
        width: 1050px;
        margin: 0 auto;
        padding: 0;
    }

    .offer-image img{
        height: 500px;
    }

    div.offer-cta h2{
        font-size: 60px;
    }
    
    div.countdown {
        font-size: 55px;
    }

    div.revview{
        width: 1050px;
        margin: 0 auto;
        padding: 0;
    }

    article#reviews div.reviews-d h2{
        font-size: 55px;
    }

    div.walls,
    div.steps{
        padding: 0;
        width: 1050px;
        margin: 0 auto;
    }

    div.walls .l-l h3, div.walls .l-r h3{
        font-size: 25px;
        margin-top: 0;
    }

    div.walls p{
        margin-top: 10px;
        color: #243037;
        font-size: 20px;
        font-weight: 500;
        line-height: initial;
        font-size: 19px;
    }

    div.gallery{
        width: 1050px;
        margin: 0 auto;
        padding: 0;
    }

    div.copy{
        width: 1050px;
        margin: 0 auto;
        padding: 0;
    }

    div.process{
        width: 1050px;
        margin: 0 auto;
        padding: 0;
    }


    .process h2{
        text-align: center;
    }

    div.feedback{
        width: 1050px;
        margin: 0 auto;
        padding: 0;
        grid-gap: 15px;
    }

    div.hiring{
        width: 1050px;
        margin: 0 auto;
        padding: 0;
    }

    div.services{
        width: 1050px;
        margin: 0 auto;
        padding: 0;
    }

    div.services-d{
        grid-gap: 15px;
    }

    div.service{
        background: #fff;
    }

    div.numbers{
        width: 1050px;
        margin: 0 auto;
        padding: 0;
    }

    div.footer{
        width: 1050px;
        margin: 0 auto;
        padding: 50px 0;
    }
}

@media (max-width: 1150px){
    div.header{
        top: 60px;
    }

    .hero-content{
        width: 45%;
        margin: 0 auto;
    }

    div.contact-form{
        width: 45%;
        margin: 0 auto;
    }

    .hero-buttons{
        flex-direction: column;
        justify-content: left;
    }

    .hero-content a{
        width: 100%;
        margin-right: auto;
    }

    .hero-content a button{
        width: 100%;
    }


    div.banner{
        width: 100%;
        padding: 0 20px;
    }

    div.header{
        width: initial;
        padding: 0 20px;
    }
    
    div.hero{
        width: initial;
        padding: 0 20px;
    }

    
    div.revview{
        width: initial;
        margin: 0 auto;
        padding: 0 20px;
    }

    article#reviews div.reviews-d h2{
        font-size: 55px;
    }

    div.walls,
    div.steps{
        width: initial;
        padding: 0 20px;
    }

    div.gallery{
        width: 80%;
        padding: 0 20px;
    }

    div.container{
        grid-template-columns: repeat(2, 1fr);
    }

    div.image{
        height: 270px;
    }

    div.copy{
        width: initial;
        padding: 0 20px;
    }

    div.process{
        width: initial;
        padding: 0 20px;
    }

    div.step img{
        width: 130px;
    }

    div.step h3{
        font-size: 28px;
    }

    div.step p{
        font-size: 20px;
    }

    div.feedback{
        width: initial;
        padding: 0 20px;
    }

    div.hiring{
        width: initial;
        padding: 0 20px;
    }

    div.services{
        width: initial;
        padding: 0 20px;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px; 
    }

    div.service{
        width: initial;    
    }

    div.services-d{
        grid-gap: 15px;
    }

    div.numbers{
        width: initial;
        padding: 0 20px;
    }

    div.numbers-d{
        width: initial;
        flex-direction: column;
    }

    .numbers h2{
        display: none;
    }

    div.footer{
        width: initial;
        padding: 0 20px;
    }

}

@media (max-width: 1050px){
    .hero h1{
        font-size: 45px;
    }

    .contact-form h2{
        font-size: 40px;
    }

    ul img.five-star{
        width: 100px;
    }

    div.feedback{
        display: flex;
        flex-direction: column;
    }

    div.card{
        padding: 40px;
        width: 60%;
        border-radius: 0;
    }

    .feedback-photo{
        height: 300px;
    }

    div.gallery{
        width: 85%;
    }

    div.container{
        grid-gap: 15px;
    }
}

@media (max-width: 1000px){
    div.nav-logo .wide{
        display: none;
    }

    div.nav-logo .small{
        display: initial;
    }
    
    div.nav-tel button{
        display: none;
    }

    #menu{
        display: initial;
    }

    .hero h1{
        text-align: center;
        align-items: center;
    }

    .hero-content a{
        width: 80%;
    }

    .hero-content a button{
        width: 100%;
    }

    div.contact-form {
        margin-top: 50px;
    }

    form{
        text-align: start;
    }

    div.hero{
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 55px;
    }

    .hero-content{
        width: initial;
    }

    div.contact-form{
        max-width: initial;
        width: initial;
    }

    .hero ul li{
        flex-direction: column;
        align-items: center;
    }

    .hero ul li.li-one br{
        display: none;
    }

    .hero ul img{
        margin-right: 0;
    }

    .hero ul img.five-star{
        display: none;
    }

    #currentImage {
        width: 100%;
    }
}


@media (max-width: 950px){
    div.banner .banner-tel img{
        display: none;
    }

    div.offer-d {
        flex-direction: column;
    }

    div.offer-image{
        width: initial;
    }

    .offer-image img{
        height: 600px;
    }

    div.process-d{
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    div.offer-cta{
        width: initial;
    }

    div.walls .l-l,
    div.walls .l-r{
        flex-direction: column-reverse;
    }

    .ct-img{
        width: 400px;
        height: 350px;
        margin-left: 0;
        border: 10px solid #f2f2f2;
    }
    
    div.walls .l-r .ct-img{
        margin-left: 0;
        margin-right: 0;
    }

    div.step{
        height: fit-content;
        width: 100%;
    }

    div.step img{
        width: 150px;
    }

    div.step h3{
        font-size: 30px;
    }
    
    div.step p{
        font-size: 23px;
        font-weight: 500;
    }

    .process-cta{
        justify-content: space-between;
        width: 100%;
    }
    
    div.process-cta button{
        width: 300px;
        margin: 0 !important;
    }

    div.gallery{
        width: 90%;
    }

    div.image{
        height: 250px;
    }

    div.container{
        grid-gap: 15px;
    }
}


@media (max-width: 900px){
    div.banner{
        justify-content: center;
    }

    div.banner .banner-tel.tel-mail{
        display: none;
    }

    div.banner .banner-tel span{
        display: initial;
        padding: 0 5px;
    }

    article#reviews div.reviews-d h2{
        font-size: 50px;
    }

    div.footer {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: initial;
    }

    .footer div.snrm{
        width: initial;
    }
}

@media (max-width: 800px){
    .hero h1{
        font-size: 50px;
    }

    div.card{
        width: 80%;
    }

    div.image{
        height: 220px;
    }

}

@media (max-width: 700px){
    .hero h1{
        font-size: 45px;
    }

    .offer-image img{
        width: 90%;
        height: initial;
    }

    div.services{
        grid-template-columns: repeat(1, 1fr);
    }

    div.image{
        height: 200px;
    }

    div.gallery{
        width: initial;
    }

    div.process-cta{
        flex-direction: column;
    }

    .feedback-photo{
        height: 250px;
    }

    div.details h2{
        font-size: 30px;
    }

    div.areas ul li{
        font-size: 20px;
    }

    div.insta div a{
        font-size: 20px;
    }

    div.insta div a img{
        width: 27px;
        margin-right: 10px;
    }

    
    /* div.details{
        flex-direction: column;
        align-items: center;
    }

    div.insta{
        width: initial;
    }

    div.areas{
        width: initial;
    } */
}

@media (max-width: 600px){
    .hero h1{
        font-size: 40px;
    }

    article#reviews div.reviews-d h2{
        font-size: 45px;
    }

    div.container{
        grid-gap: 10px;
    }

    #currentImage {
        width: 100%;
    }

    #prev {
        left: 20px;
        padding: 10px;
        background: #0000008b;
    }
    
    #next {
        right: 20px;
        padding: 10px;
        background: #0000008b;
    }
}

@media (max-width: 550px){
    .feedback-photo{
        height: 200px;
    }

    article#hero{
        background: url(images/landscape-mobile-service.png) fixed;
        background-position: bottom;
        background-size: cover;
        background-repeat: no-repeat;
    }

    #hero .overlay{
        opacity: 0.5;
    }

    article#copy{
        background: url(images/landscape-services.png);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    #copy .overlay{
        opacity: 0.5;
    }

    div.details{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    div.insta{
        width: initial;
        margin-bottom: 50px;
    }

    div.areas{
        width: initial;
    }

    div.details h2{
        font-size: 35px;
    }

    div.areas ul li{
        font-size: 25px;
    }

    /* div.areas ul li img{
        display: none;
    } */

    div.insta div {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    div.insta div a{
        font-size: 25px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    div.insta div a img{
        margin-right: 0;
        width: 30px;
    }
}

@media (max-width: 500px){
    div.banner .banner-tel{
        font-size: 18px;
    }

    div.image{
        height: 170px;
    }

    div.gallery{
        padding: 0 5px;
    }

    div.joint{
        display: flex;
        flex-direction: column-reverse;
    }

    .ct-img{
        width: 100%;
        height: initial;
        padding: 0;
        border: none;
    }
}

@media (max-width: 450px){
    div.banner .banner-tel{
        font-size: 17px;
        font-weight: 400;
    }

    #hero{
        padding-top: 200px;
    }

    img.small{
        width: 200px;
    }

    #menu{
        transform: scale(0.95);
    }

    .hero h1{
        font-size: 35px;
    }

    .hero-content h2{
        font-size: 20px;
        margin-bottom: 10px;
    }

    .hero-content button{
       border-radius: 100px;
       padding: 10px;
    }

    .hero-content ul{
        margin-bottom: 0;
    }

    .hero ul li{
        font-size: 18px;
        line-height: 23px;
    }

    div.contact-form {
        margin-top: 20px;
    }


    .contact-form h3{
        font-size: 20px;
    }

    .contact-form h2{
        font-size: 30px;
    }

    article#offer{
        padding: 30px 0 10px 0;
    }
    
    article#walls{
        padding: 30px 0;
    }

    article#gallery{
        padding: 30px 0;
    }

    article#feedback{
        padding: 30px 0;
    }

    div.offer-cta h2{
        font-size: 45px;
    }

    div.countdown{
        font-size: 45px;
        font-weight: 600;
        padding-top: 15px;
    }

    article#reviews div.reviews-d h2{
        font-size: 40px;
        text-shadow: 0 0 5px #000;
    }

    div.profile img{
        width: 80px;
    } 

    div.profile-d img{
        width: 100px;
    }

    img.homestars{
        width: 40px;
    }

    article#reviews .swiper-slide{
        height: 450px;
    }

    article#reviews .swiper-slide .sws{
        height: 70%;
    }

    /* Adjust position for next button */
    .swiper-button-next {
        right: 10px !important; 
        bottom: 50px !important;
        top: initial !important;
    }
    
    /* Adjust position for previous button */
    .swiper-button-prev {
        left: 10px !important; 
        bottom: 50px !important;
        top: initial !important;
    }

    div.cta-buttons button{
        border-radius: 100px;
    }

    #copy button{
        border-radius: 100px;
        animation: wobble 2.3s infinite;
    }

    .ct-img{
        width: 100%;
        height: 300px;
    }

    div.walls h2{
        font-size: 35px;
    }

    div.walls .l-l h3, div.walls .l-r h3{
        margin: 15px 0;
        font-size: 22px;
    }

    div.walls p{
        font-size: 17px;
    }

    div.gallery h2{
        font-size: 35px;
    }

    div.container{
        grid-template-columns: repeat(1, 1fr);
    }

    div.image{
        height: 250px;
    }

    .process h2{
        font-size: 35px;
    }

    div.process-cta{
        margin-top: 0;
        height: initial;
        width: initial;
    }

    div.process-cta a{
        margin-top: 15px;
    }

    div.process-cta button{
        border-radius: 100px;
    }

    div.process-cta button.btn2{
        margin-top: 20px;
    }

    article#hiring{
        padding: 30px 0;
    }

    .hiring h2{
        font-size: 35px;
        font-weight: 600;
    }

    .hiring p{
        font-size: 20px;
        font-weight: 600;
    }

    .feedback-photo{
        height: 170px;
    }

    article#numbers{
        padding: 10px 0;
    }

    .number{
        margin-bottom: 20px;
    }

    div.card{
        padding: 20px;
        width: 90%;
    }

    div.step img{
        width: 130px;
    }
    
    div.copy h3{
        font-size: 50px;
    }

    div.copy p{
        font-size: 25px;
        font-weight: 600;
        line-height: 35px;
    }

    div.details h2{
        font-size: 30px;
    }

    div.insta div a img{
        margin-right: 0;
        width: 30px;
    }
}

@media (max-width: 420px){
    div.copy h3{
        font-size: 45px;
    }
}

@media (max-width: 400px){
    div.banner{
        padding: 0;
    }

    div.banner .banner-tel{
        font-size: 16px;
        font-weight: 400;
    }
}

@media (max-width: 386px){
    .hero h1{
        font-size: 32px;
    }

    .hero-content h2{
        font-size: 18px;
    }

    .hero ul li{
        font-size: 17px;
    }

    div.nav-logo .small{
        width: 180px;
    }

    #menu{
        transform: scale(0.9);
    }

    div.copy h3{
        font-size: 40px;
    }
}

@media (max-width: 350px){
    div.banner .banner-tel{
        font-size: 15px;
    }

    .hero h1{
        font-size: 30px;
    }

    div.contact-form{
        padding: 15px;
    }

    div.offer-cta h2{
        font-size: 40px;
    }
    
    div.countdown{
        font-size: 40px;
    }

    div.copy h3{
        font-size: 38px;
    }
}

@media (max-width: 335px){
    .hero h1{
        font-size: 28px;
    }

    div.offer-cta h2{
        font-size: 35px;
    }

    div.countdown{
        font-size: 35px;
    }

    div.copy h3{
        font-size: 35px;
    }

    div.copy p{
        font-size: 20px;
        line-height: 30px;
    }
}

@media (max-width: 312px){
    div.banner .banner-tel{
        font-size: 13px;
    }  

    div.header{
        padding: 0 5px ;
    }

    div.hero{
        padding: 0 5px;
    }

    div.walls, div.steps {
        padding: 0 5px;
    }
}