/*================ Hero Section ================*/
.main{
	width: 100%;
	height: fit-content;
    background-image: url(../img/hero-secton.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.main-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-info{
    width: 60rem;
    height: fit-content;
	padding: 4rem 0;
}

/*Titles of Hero Section*/

.main-info h1{
    font-weight: 700;
    color: #fff;
}

.main-info h2{
    font-weight: 500;
    color: var(--secondary-color);
	margin-top: 2rem;
	font-weight: 700;
	font-style: italic;
}

.main-info h3{
    font-weight: 300;
	color: #ffff;
	margin-top: 2rem;
}

.main-info h4{
    font-weight: 700;
    color: #fff;
    margin-top: 2rem;
}

.main-info-line{
    width: 20rem;
    height: 0.2rem;
    background-color: var(--secondary-color);
    margin-top: 2rem;
}

/*Rating Boxes of Hero Section*/
.main-info-ratings{
    width: fit-content;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
	column-gap: 2rem;
    margin-top: 3rem;
}

/*Google Ratings*/
.main-info-ratings-google{
    width: 23rem;
    height: 6.5rem;
    background-color: #21292f;
    border: 0.1rem solid #ffff;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 1.5rem;
}

.main-info-ratings-google-icon{
    width: 3.5rem;
    height: 3.5rem;
    background-image: url(../img/icons/google-original.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.main-info-ratings-google-info p{
    font-size: 1.6rem;
    color: #ffff;
}

.rating{
    display: flex;
    justify-content: start;
    align-items: center;
    column-gap: 0.8rem;
}

.rating-stars{
    width: 5rem;
    height: 1rem;
    background-image: url(../img/icons/stars.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*Facebook Ratings*/
.main-info-ratings-facebook{
    width: 23rem;
    height: 6.5rem;
    background-color: #21292f;
    border: 0.1rem solid #ffff;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 1.5rem;
}

.main-info-ratings-facebook-icon{
    width: 3.5rem;
    height: 3.5rem;
    background-image: url(../img/icons/facebook-original.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.main-info-ratings-facebook-info p{
    font-size: 1.6rem;
    color: #ffff;
}

/*Hero Section Video*/
.hero-video{
	width: 60rem;
	height: 100%;
}


/*=========================== Container below Hero Section ===========================*/

.container-awards{
    width: 100%;
    height: fit-content;
    padding: 5rem 0;
}

.container-awards-flex{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 6rem;
}

.container-awards img{
    width: 18rem;
    height: 18rem;
    object-fit: center;
}

/*=========================== Get To Know us ===========================*/

.about-us-container{
    width: 100%;
    height: fit-content;
}

.about-us-container-flex{
    display: flex;
    justify-content: center;
}

.about-us-img{
    width: 50rem;
    height: 60rem;
    background-image: url(../img/owner.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-us-info{
    width: 80rem;
    height: 60rem;
    background-color: #ffff;
    filter: drop-shadow(1rem 1rem 1.5rem var(--primary-color));
    padding: 0 5rem;
    padding-bottom: 5rem;
}

.title{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 1rem;
    margin-top: 3rem;
}

.title h3{
    font-size: 2rem;
    color: var(--text-color);
    font-weight: 500;
}

.title-line{
    width: 5rem;
    height: 0.1rem;
    background-color: var(--secondary-color);
}

.about-us-info h4{
   font-size: 2.3rem;
   font-weight: 500;
   color: var(--text-color);
   text-align: center;
   margin-top: 2rem;
}

.about-us-info h4 span{
    color: var(--secondary-color);
 }

 .about-us-info p{
    font-weight: 300;
    color: var(--text-color);
    text-align: justify;
    margin-top: 2rem;
 }

 /*About Us Section Button*/

.about-us-button{
    width: fit-content;
    display: flex;
    justify-content: start;
    align-items: center;
    column-gap: 1rem;
    margin-top: 3rem;
}

.button-icon{
    width: 7rem;
    height: 7rem;
    background-image: url(../img/icons/youtube-hover.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 40px;
}

.about-us-info a{
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--text-color);
    transition: ease-in 100ms;
}

.about-us-info a:hover{
    color: var(--secondary-color);
}

/*========================= Testimonials Section =========================*/
.testimonials-container{
    width: 100%;
    height: fit-content;
    padding: 5rem 0;
}

.testimonials-container h4{
    font-size: 3rem;
    font-weight: 500;
    color: var(--text-color);
    text-align: center;
    margin-top: 2rem;
}

.testimonials-container h4 span{
    color: var(--secondary-color);
}

/*Reviews Box*/
.reviews{
    width: 100%;
    height: fit-content;
    padding: 3rem;
    background-color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 1rem;
    margin: 2rem 0;
}

.reviews-box{
    width: 30rem;
    height: 25rem;
    padding: 2rem;
    background-color: #fff;
    border: 0.2rem solid var(--text-color);
}

.reviews-box p{
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-color);
    margin-top: 2rem;
}

.reviews-flex{
	width: 100%;
    display: flex;
    align-items: center;
    padding: 0 5rem;
    column-gap: 1rem;
}

.reviews-icon{
    width: 4rem;
    height: 4rem;
    border-radius: 5rem;
    background-color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.reviews-icon h5{
    font-size: 3rem;
    font-weight: 500;
    color: #ffff;
    text-align: center;
}

.reviews-name{
    width: 100%;
	height: fit-content;
}

.reviews-name span{
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--text-color);
    text-align: center;
}

.reviews-icon-google{
    width: 2rem;
    height: 2rem;
    background-image: url(../img/icons/google-original.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-left: 10rem;
}

.reviews-rating{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 1rem;
}

.reviews-rating h5{
    font-size: 1.5rem;
    font-family: 'Roboto', sans-serif;
    color: #283949;
}

.reviews-stars{
    width: 8rem;
    height: 3rem;
    background-image: url(../img/icons/stars.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*Testimonials Button*/
.testimonials-btn{
	width: fit-content;
	height: fit-content;
	padding: 1rem 1.5rem;
	background-color: var(--primary-color);
	margin: 0 auto;
	font-size: 2rem;
	color: #ffff;
	transition: ease-in 100ms;
}

.testimonials-btn:hover{
	background-color: var(--secondary-color);
}


/*================================ Services Section ================================*/
 /*Title*/
.services-container{
    height: fit-content;
    margin-top: 3rem;
}

.services-container h4{
    font-size: 3rem;
    font-weight: 500;
    color: var(--text-color);
    text-align: center;
    margin-top: 2rem;
    padding: 0 5rem;
}

.services-container h4 span{
    color: var(--secondary-color);
 }

 /*Services Boxes*/

.services-boxes{
    margin-top: 4rem;
    width: 100%;
    height: fit-content;
}

.services-boxes-flex{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 3rem;
}

.box{
    width: 64rem;
    height: fit-content;
    background-color: #ffff;
    border: 0.1rem solid #283949;
    padding-bottom: 3rem;
}

.residential-img{
    width: 100%;
    height: 50rem;
    background-image: url(../img/residential.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.commercial-img{
    width: 100%;
    height: 50rem;
    background-image: url(../img/commercial.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/*Residential Decor*/
.res-title-box{
    position: absolute;
    top: 35rem;
    left: -1.5rem;
    width: 25rem;
    height: 6rem;
    background-color: #3e9cd4;
    border-top-left-radius: 3rem;
    border-bottom-left-radius: 0;
}

.res-title-box::before{
    content: "";
    position: absolute;
    top: 6rem;
    width: 1.5rem;
    height: 3rem;
    background-color: #216d99;
    border-top-left-radius: 2rem;
    border-bottom-left-radius: 2rem;
    z-index: 2;
}

.res-title-box::after{
    content: "";
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #3e9cd4;
    top: 6rem;
}

.res-title-box h3{
    font-size: 2.6rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    color: #ffff;
    padding: 1rem 0;
    margin-left: 6rem;
}

/*Commercial Decor*/
.com-title-box{
    position: absolute;
    top: 35rem;
    right: -1.5rem;
    width: 25rem;
    height: 6rem;
    background-color: #3e9cd4;
    border-top-right-radius: 3rem;
    border-bottom-right-radius: 0;
}

.com-title-box::before{
    content: "";
    position: absolute;
    top: 6rem;
    width: 1.5rem;
    height: 3rem;
    right: 0;
    background-color: #216d99;
    border-top-right-radius: 2rem;
    border-bottom-right-radius: 2rem;
    z-index: 2;
}

.com-title-box::after{
    content: "";
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #3e9cd4;
    right: 0;
    top: 6rem;
}

.com-title-box h3{
    font-size: 2.6rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    color: #ffff;
    padding: 1rem 0;
    margin-left: 5rem;
}

/*Services Title And Info*/
.box h4{
    font-size: 2.5rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    color: #283949;
    margin-top: 3rem;
    text-align: start;
}

/*Services And Icons*/

.service{
    width: fit-content;
    height: fit-content;
    display: flex;
    align-items: center;
    margin-left: 5rem;
    column-gap: 1rem;
    margin-top: 3rem;
}

.service h2{
    font-size: 2.2rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    color: #283949;
    text-align: center;
    margin-top: 2rem;
    transition: ease-in-out 100ms;
    cursor: pointer;
}

.service h2:hover{
    color: #3e9cd4;
}

.service img{
    width: 5rem;
    height: 5rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*Button*/
.book-free-quote-btn2{
	width: fit-content;
	height: fit-content;
    background-color: var(--secondary-color);
    padding: 1rem 1.5rem;
    color: #fff;
    font-size: 2rem;
    font-weight: 500;
    transition: ease-in 100ms;
    margin: 0 auto;
	margin-top: 3rem;
}

.book-free-quote-btn2:hover{
    background-color: var(--primary-color);
    color: #fff;
}


/*========================== Projects Section ==========================*/
.projects-container{
    width: 100%;
    height: fit-content;
    background-image: url(../img/hero-secton.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 4rem 0;
    margin-top: 3rem;
}

.projects-container .title h3{
    font-size: 2rem;
    color: #ffff;
    font-weight: 500;
}

.projects-container h4{
    font-size: 3rem;
    font-weight: 550;
    color: #ffff;
    margin-top: 3rem;
    text-align: center;
}

.projects-container h4 span{
    color: var(--secondary-color);
}

.projects-container p{
    font-size: 2rem;
    font-weight: 500;
    color: #ffff;
    margin-top: 2rem;
    text-align: center;
}


/*Box 1*/
.projects-box{
    width: 100%;
    height: fit-content;
}

.projects-box-flex{
    display: flex;
    justify-content: center;
    column-gap: 4rem;
}

.projects-img{
    width: 39rem;
    height: 24.7rem;
    background-image: url(../img/projects/BUR-membrane.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin-top: 4rem;
}

.projects-img:nth-child(1){
    background-image: url(../img/projects/black\ roof\ house.jpg);
}

.projects-img:nth-child(2){
    background-image: url(../img/projects/gabled-roof.jpg);
}

.projects-img:nth-child(3){
    background-image: url(../img/projects/concrete-tiles.png);
}

.projects-img .projects-img-overlay{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1d2731;
    opacity: 0;
    transition: 0.3s;
}

.projects-img:hover .projects-img-overlay{
    opacity: 0.88;
}

.projects-img h3{
    color: #ffff;
    font-size: 2.6rem;
    font-weight: 300;
    text-align: center;
}

.projects-img h3 span{
    color: #3c9cd6;
}

.projects-img a{
    font-size: 1.8rem;
    font-weight: 500;
    background-color: var(--secondary-color);
    color: #fff;
    text-align: center;
    margin-top: 1.2rem;
    padding: 0.8rem;
}

.projects-img .btn:hover{
    background-color: var(--secondary-color);
}

.projects-img .btn, .projects-img h3{
    transition: 0.3s;
    transform: translateY(-2rem);
}

.projects-img:hover .btn, .projects-img:hover h3{
    transform: translateY(0);
}

/*Box 2*/
.projects-box1{
    width: 100%;
    height: fit-content;
}

.projects-box1 .projects-img1{
    width: 39rem;
    height: 24.7rem;
    background-image: url(../img/projects/BUR-membrane.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin-top: 4rem;
}


.projects-img1:nth-child(1){
    background-image: url(../img/projects/storm-damage-roof.jpg);
}

.projects-img1:nth-child(2){
    background-image: url(../img/projects/wooden-frame.png);
}

.projects-img1:nth-child(3){
    background-image: url(../img/projects/brown\ roof.jpg);
}

.projects-img1 .projects-img-overlay{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1d2731;
    opacity: 0;
    transition: 0.3s;
}

.projects-img1:hover .projects-img-overlay{
    opacity: 0.88;
}

.projects-img1 h3{
    color: #ffff;
    font-size: 2.6rem;
    font-weight: 300;
    text-align: center;
}

.projects-img1 h3 span{
    color: #3c9cd6;
}

.projects-img1 a{
    font-size: 1.8rem;
    font-weight: 500;
    background-color: var(--secondary-color);
    color: #fff;
    text-align: center;
    margin-top: 1.2rem;
    padding: 0.8rem;
}

.projects-img1 .btn:hover{
    background-color: var(--secondary-color);
}

.projects-img1 .btn, .projects-img1 h3{
    transition: 0.3s;
    transform: translateY(-2rem);
}

.projects-img1:hover .btn, .projects-img1:hover h3{
    transform: translateY(0);
}

/*Box 3*/
.projects-box2{
    width: 100%;
    height: fit-content;
}

.projects-box2 .projects-img2{
    width: 39rem;
    height: 24.7rem;
    background-image: url(../img/projects/BUR-membrane.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin-top: 4rem;
}


.projects-img2:nth-child(1){
    background-image: url(../img/projects/Commercial-Roof-Replacement.jpg);
}

.projects-img2:nth-child(2){
    background-image: url(../img/projects/orange\ house\ with\ VW.jpg);
}

.projects-img2:nth-child(3){
    background-image: url(../img/projects/curved-roof.png);
}

.projects-img2 .projects-img-overlay{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1d2731;
    opacity: 0;
    transition: 0.3s;
}

.projects-img2:hover .projects-img-overlay{
    opacity: 0.88;
}

.projects-img2 h3{
    color: #ffff;
    font-size: 2.6rem;
    font-weight: 300;
    text-align: center;
}

.projects-img2 h3 span{
    color: #3c9cd6;
}

.projects-img2 a{
    font-size: 1.8rem;
    font-weight: 500;
    background-color: var(--secondary-color);
    color: #fff;
    text-align: center;
    margin-top: 1.2rem;
    padding: 0.8rem;
}

.projects-img2 .btn:hover{
    background-color: var(--secondary-color);
}

.projects-img2 .btn, .projects-img2 h3{
    transition: 0.3s;
    transform: translateY(-2rem);
}

.projects-img2:hover .btn, .projects-img2:hover h3{
    transform: translateY(0);
}

/*============================== Why Choose Us ==============================*/

.choose-us-container{
    width: 100%;
    height: fit-content;
    padding: 5rem 0;
}

.choose-us-box-content{
    margin-top: 3rem;
    width: 100%;
    height: fit-content;
}

.choose-us-box-content-flex{
    display: flex;
    justify-content: center;
    align-items: center;
}

/*Image*/
.choose-us-img{
    width: 50rem;
    height: 58rem;
    background-image: url(../img/team.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.choose-us-img .img-box{
    width: fit-content;
    height: fit-content;
	padding: 2rem;
    background-color: var(--secondary-color);
    opacity: 0.95;
    margin-top: 40rem;
    left: -3rem;
    position: relative;
}

.choose-us-img .img-box h5{
    font-size: 4.5rem;
    color: #fff;
    font-weight: 600;
    text-align: center;
}

.choose-us-img .img-box P{
    color: #fff;
    font-weight: 600;
    text-align: center;
}

/*Info Content*/
.choose-us-info{
    width: 80rem;
    height: 58rem;
    background-color: #ffff;
    filter: drop-shadow(1rem 1rem 1.5rem var(--primary-color));
}

.choose-us-container .choose-us-info .title h3{
    color: #283949;
}

.choose-us-info h4{
    font-size: 2.3rem;
    font-weight: 500;
    color: #283949;
    text-align: center;
    margin-top: 3rem;
    padding: 0 5rem;
}

.choose-us-info h4 span{
    color: var(--secondary-color);
}

.choose-us-info p{
    font-weight: 300;
    color: #283949;
    margin-top: 2rem;
    padding: 0 5rem;
	line-height: 3rem;
}

.choose-us-info-boxes{
    width: 100%;
    height: 15rem;
    position: relative;
    bottom: -7.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 1.5rem;
}

.choose-us-info-boxes .box-img{
    width: 15rem;
    height: 15rem;
    background-color: var(--secondary-color);
}

.choose-us-info-boxes .box-img img{
    width: 7rem;
    height: 7rem;
    margin-left: 4rem;
    margin-top: 2rem;
}

.choose-us-info-boxes .box-img h5{
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
    text-align: center;
    margin-top: 1rem;
}

/*Line Between Sections*/
.line-between{
    width: 100%;
    height: 0.2rem;
    background-color: var(--secondary-color);
}

/*============================== Core Values ==============================*/

.core-values-container{
    width: 100%;
    height: fit-content;
    padding: 5rem 0;
    margin-bottom: 3rem;
}

.core-values-container .title h3{
    color: #283949;
}

.core-values-container h5{
    font-size: 2.7rem;
    color: #283949;
    font-weight: 500;
    text-align: center;
    margin-top: 2rem;
}

.core-values-container h5 span{
    color: #3c9cd6;
}

/*Boxes*/
.core-values-container-for-boxes{
    width: 100%;
    height: fit-content;
    margin-top: 3rem;
}

.core-values-container-for-boxes-flex{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 2rem;
}

.core-values-box{
    width: 30rem;
    height: 30rem;
    padding: 2rem 0;
    background-color: #283949;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.core-values-box::before{
    content: "";
    position: absolute;
    width: 15rem;
    height: 140%;
    background: linear-gradient(#3c9cd6, #3c9cd6);
    animation: animate 4s linear infinite;
    border-radius: 1rem;
}

.core-values-box::after{
    content: "";
    position: absolute;
    background: #283949;
    inset: 0.4rem;
}

@keyframes animate{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

/*Box Info and Content*/
.core-values-inner-box{
    width: 100%;
    height: 100%;
}

.core-values-inner-box img{
    width: 8rem;
    height: 8rem;
    align-self: center;
    position: relative;
    z-index: 10;
    margin-left: 11rem;
}

.core-values-inner-box h4{
    font-size: 2.5rem;
    font-family: 'Oswald', sans-serif;
    color: #ffff;
    font-weight: 500;
    margin-top: 1rem;
    position: relative;
    z-index: 10;
    text-align: center;
}

.core-values-inner-box p{
    font-size: 1.8rem;
    font-family: 'Roboto', sans-serif;
    color: #ffff;
    font-weight: 300;
    margin-top: 1rem;
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 3rem;
}

/*============================= Our Process =============================*/
.our-process-container{
    width: 100%;
    height: fit-content;
    padding: 3rem 0;
    margin-top: 10rem;
    background-image: url(../img/roofs-Copy.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.our-process-container-flex{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 8rem;
}

.our-process-info{
    width: 60rem;
    height: fit-content;
}

.our-process-info .title{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.our-process-info .title h3{
    color: #ffff;
}

.our-process-info h5{
    font-size: 3rem;
    color: #ffff;
    font-weight: 500;
    margin-top: 3rem;
}

.our-process-info p{
    color: #ffff;
    font-weight: 300;
    margin-top: 3rem;
    line-height: 3rem;
    margin-bottom: 7rem;
}

/*Button*/
.our-process-info .our-process-button{
    width: fit-content;
    padding: 2rem;
    background-color: var(--secondary-color);
    color: #fff;
    font-size: 2rem;
    font-weight: 500;
    transition: ease-in 100ms;
}

.our-process-info .our-process-button:hover{
    background-color: #000;
}

/*Steps*/
.our-process-info-steps{
    width: 60rem;
    height: fit-content;
}

.step{
    width: 100%;
    height: fit-content;
    padding: 3rem 0;
    background-color: #000;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    padding: 3rem;
    opacity: 0.85;
}

/*Box With Number*/
.step-number{
    width: 10rem;
    height: 10rem;
    background-color: var(--secondary-color);
	display: flex;
    justify-content: center;
    align-items: center;
}

.step-number p{
    font-size: 5rem;
    color: #ffff;
    font-weight: 800;
}

/*Box With Info*/
.step-info{
    width: fit-content;
    height: fit-content;
}

.step-info h6{
    font-size: 2rem;
    color: #ffff;
    font-weight: 500;
    padding: 0 3rem;
    position: relative;
    z-index: 10000
}

.step-info p{
    color: #ffff; 
    font-weight: 300;
    margin-top: 2rem;
    line-height: 2.5rem;
    padding: 0 3rem;
}

/*========================= Blog Section =========================*/
.blog-container{
    width: 100%;
    height: fit-content;
    padding: 5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-box{
    width: fit-content;
    height: 80rem;
    background-color: #ffff;
    filter: drop-shadow(1rem 1rem 1.5rem #283949);
}

.blog-box-flex{
    display: flex;
    justify-content: center;
    align-items: center;
}

/*Blog Content*/
.blog-content{
    width: 80rem;
    height: 80rem;
    background-color: #fff;
    border-right: 0.2rem solid #3c9cd6;
}

.blog-content .title-line{
    width: 5rem;
    height: 0.1rem;
    background-color: #283949;
}

.blog-content .title h3{
    color: #283949;
}

.blog-content h4{
    font-size: 1.8rem;
    color: #283949; 
    font-weight: 500;
    margin-top: 2rem;
    text-align: center;
    padding: 0 10rem;
}

.blog-content h4 span{
    color: #3c9cd6;
}

/*Blog Slide Show*/
.blog-container-2{
    width: 70rem;
    height: 60rem;
    padding: 2rem;
}

.swiper {
    width: 100%;
    height: 100%;
    margin-top: 2rem;
  }

  .swiper-slide {
    padding: 0 10rem 18rem 18rem;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .autoplay-progress {
    position: absolute;
    right: 1.6rem;
    bottom: 0.1rem;
    z-index: 10;
    width: 4.8rem;
    height: 4.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--swiper-theme-color);
  }

  .autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 0.4remx;
    stroke: var(--swiper-theme-color);
    fill: none;
    stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
  }

  /*Article*/
.box-of-blog-content{
    width: 35rem;
    height: fit-content;
    padding-bottom: 1.3rem;
    border: 0.1rem solid #283949;
}

.box-of-blog-content img{
    width: 100%;
    height: 20rem;
    object-fit: cover;
    object-position: center;
} 

.blog-des{
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.blog-des span{
    color: #3c9cd6;
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.blog-des a{
    color: #2d3f4e;
    font-size: 2rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    margin: 0;
    padding: 0;
    background-color: #ffff;
}

.blog-des a:hover{
    color: #3c9cd6;
    margin: 0;
    padding: 0;
    background-color: #ffff;
}

.blog-des p{
    color: rgb(128, 128, 128);
    font-size: 1.4rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 2rem 0;
}

/*Blog Banner Image*/
.blog-banner{
    width: 60rem;
    height: 80rem;
    background-image: url(../img/roofer-blog-img2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*Blog Button*/
.btn-container{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30rem;
}

.btn-container button{
    background-color: #3c9cd6;
    padding: 2rem 3rem;
    border-radius: 5rem;
    letter-spacing: 0.4rem;
    font-size: 2rem;
    font-family: 'Roboto', sans-serif;
    color: #ffff;
    border: 0.1rem solid #3c9cd6;
    position: relative;
}

.btn-container button:hover{
    background-color: #283949;
    border: 0.1rem solid #283949;
}

.btn-container button::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    outline: 0.2rem solid #3c9cd6;
    border-radius: 5rem;
    outline-offset: 0.2rem;
    outline-width: 0.2rem;
    animation: animate 1s linear infinite;
}

@keyframes animate{
    0%{
        outline-offset: 0.2rem;
        opacity: 1;
    }
    100%{
        outline-offset: 2rem;
        opacity: 0;
    }
}

/*================ MOBILE VERSION ================*/
@media (max-width: 1300px){
	/*========================= Testimonials Section =========================*/
    .testimonials-container{
        width: 100%;
        height: fit-content;
        padding: 5rem 0;
    }


/*Reviews Box*/
.reviews{
    width: 100%;
    height: fit-content;
    padding: 3rem;
    background-color: var(--secondary-color);
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    column-gap: 1rem;
    margin: 2rem 0;
}

.reviews-box{
    width: 30rem;
    height: 25rem;
    padding: 2rem;
    background-color: #fff;
    border: 0.2rem solid var(--text-color);
}

.reviews-box p{
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-color);
    margin-top: 2rem;
}

.reviews-flex{
	width: 100%;
    display: flex;
    align-items: center;
    padding: 0 5rem;
    column-gap: 1rem;
}
	
	/*========================= Blog Section =========================*/
    .blog-container{
        height: fit-content;
        padding: 5rem 0;
    }

    .blog-box{
        width: fit-content;
        height: fit-content;
    }

    .blog-box-flex{
        flex-wrap: wrap;
    }

    /*Blog Content*/
    .blog-content{
        border-right: 0;
    }
	
	.blog-banner{
		display: none;
	}
}

@media (max-width: 1265px){
	/*=========================== Get To Know us ===========================*/
	
    .about-us-img{
        width: 50rem;
        height: 65rem;
    }

    .about-us-info{
        width: 80rem;
        height: fit-content;
        padding: 0 3rem;
    }


}

@media (max-width: 1255px){
	
	.main{
	    padding: 2rem 0;
    }
	
	.main-flex{
        flex-wrap: wrap;
        justify-content: center;
    }
	
	.main-info{
        width: 100%;
        height: fit-content;
	    padding: 4rem 0;
    }

    /*Titles of Hero Section*/

    .main-info h1{
	    font-size: 4rem;
        text-align: center;
    }

    .main-info h2{
        font-size: 3.5rem;
	    text-align: center;
    }

    .main-info h3{
        text-align: center;
    }

    .main-info h4{
        text-align: center;
    }

    .main-info-line{
        margin: 0 auto;
		margin-top: 2rem;
    }

    /*Rating Boxes of Hero Section*/
    .main-info-ratings{
        width: 100%;
    }

    /*Hero Section Video*/
    .hero-video{
	    width: 100%;
	    height: 100%;
	    display: flex;
	    justify-content: center;
    }
}

@media (max-width: 900px){
	
	/*================ Hero Section ================*/
	.main{
	    padding: 2rem 0;
    }
	
    .main-flex{
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .main-info{
        width: 100%;
    }
	
	/*Titles of Hero Section*/

    .main-info h1{
        text-align: center;
    }

    .main-info h2{
        text-align: center;
    }

    .main-info h3{
        text-align: center;
    }

    .main-info h4{
        text-align: center;
    }

    .main-info-line{
		margin: 0 auto;
        margin-top: 2rem;
    }
	
	/*Rating Boxes of Hero Section*/
    .main-info-ratings{
        width: 100%;
        flex-wrap: wrap;
	    row-gap: 2rem;
    }

    /*Hero Section Video*/
    .hero-video{
	    display: none;
    }
	
	/*=========================== Container below Hero Section ===========================*/

    .container-awards img{
        width: 12rem;
        height: 12rem;
    }
	
	/*=========================== Get To Know us ===========================*/

    .about-us-container{
        margin-top: 5rem;
    }
	
    .about-us-container-flex{
        flex-wrap: wrap;
        justify-content: center;
    }

    .about-us-img{
        width: 100%;
        height: 50rem;
    }

    .about-us-info{
        width: 100%;
        height: fit-content;
        padding: 0 4rem;
		padding-bottom: 3rem;
    }
	
	/*========================= Testimonials Section =========================*/
    .testimonials-container{
        padding: 2rem 0;
    }

    /*Reviews Box*/
    .reviews{
        padding: 2rem;
        flex-wrap: wrap;
	    row-gap: 1rem;
    }

    /*================================ Services Section ================================*/
    /*Title*/
    .services-container{
        height: fit-content;
        margin-top: 3rem;
    }
	
	/*Services Boxes*/

    .services-boxes-flex{
        flex-wrap: wrap;
        row-gap: 2rem;
    }

    .box{
        width: 100%;
        height: fit-content;
    }
	
	/*========================== Projects Section ==========================*/



/*Box 1*/

    .projects-box-flex{
        flex-wrap: wrap;
        row-gap: 2rem;
    }

    .projects-img{
        height: 20rem;
    }

    .projects-img h3{
        font-size: 2.2rem;
    }

    /*Box 2*/

    .projects-box1 .projects-img1{
        height: 20rem;
    }


    .projects-box2 .projects-img2{
        height: 20rem;
    }
	
	/*============================== Why Choose Us ==============================*/



    .choose-us-box-content-flex{
        flex-wrap: wrap;
    }

    /*Image*/
    .choose-us-img{
        width: 100%;
        height: 55rem;
    }


    .choose-us-img .img-box h5{
        font-size: 4rem;
    }

    /*Info Content*/
    .choose-us-info{
        width: 100%;
        height: fit-content;
    }

    .choose-us-info-boxes{
        width: 100%;
        height: fit-content;
        position: relative;
        bottom: -7.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        column-gap: 1.5rem;
    }

    .choose-us-info-boxes .box-img{
        width: 12rem;
        height: 12rem;
    }

    .choose-us-info-boxes .box-img img{
        width: 5rem;
        height: 5rem;
	    top: 30%;
	    left: 50%;
    }

    .choose-us-info-boxes .box-img h5{
        font-size: 1.2rem;
    }
	
	/*============================== Core Values ==============================*/

    .core-values-container h5{
        font-size: 2.5rem;
    }

    .core-values-container-for-boxes-flex{
        flex-wrap: wrap;
        row-gap: 2rem;
    }

    .core-values-box{
        width: 28rem;
        height: fit-content;
    }
	
	/*============================= Our Process =============================*/


    .our-process-container-flex{
        flex-wrap: wrap;
        row-gap: 3rem;
    }

    .our-process-info{
        width: 100%;
    }

    /*Button*/
    .our-process-info .our-process-button{
	    margin: 0 auto;
    }

    /*Steps*/
    .our-process-info-steps{
        width: 100%;
    }

    .step{
        width: 100%;
    }

    /*Box With Number*/
    .step-number{
        width: 8rem;
        height: 8rem;
    }

    /*========================= Blog Section =========================*/
    .blog-container{
        padding: 0;
		margin: 5rem 0;
    }

    .blog-box{
        width: 90%;
        height: fit-content;
    }

    .blog-box-flex{
        flex-wrap: wrap;
    }

    /*Blog Content*/
    .blog-content{
        width: 100%;
        height: fit-content;
        border-right: 0;
    }

    /*Blog Slide Show*/
    .blog-container-2{
        width: 100%;
    }

    .swiper {
        width: 100%;
        height: 100%;
    }

    .swiper-slide {
        padding: 0;
    }

    /*Article*/
    .box-of-blog-content{
        width: 100%;
        height: fit-content;
        padding-bottom: 1.3rem;
        border: 0.1rem solid #283949;
    }

    .blog-banner{
        display: none;
    }

}

@media (max-width: 680px){
	/*=========================== Container below Hero Section ===========================*/

    .container-awards{
        display: none;
    }
}

@media (max-width: 400px){
	
	.choose-us-info-boxes .box-img{
        display: none;
    }
}
