@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


:root {
    --color-orange: #f1662d;
    --color-light: #FFFFFF;
    --color-light-grey: #F8F9F9;
    --color-grey: #C2C2C2;
    --color-dark: #111111;
    --color-dark-shadow:#010101;
    --color-dark-line: #222222;
}

*,
*:after,
*:before {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    color: var(--color-dark);
}

h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 50px;
    font-weight: 700;
}

h2 {
    font-family: "Montserrat", sans-serif;
    color: var(--color-orange);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.6em;
}

h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 600;
}

p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4em;
}

a {
    font-family: "Montserrat", sans-serif;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

section {
    padding: 80px 0;
    object-fit: cover;
}

img {
    border: 0;
    overflow: cover;
}

li {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4em;
    list-style: none;
}

/* Responsive design for general ********************/
@media screen and (max-width: 820px) {
    section {
        padding: 60px 0;
    }

    h1 {
        font-size: 44px;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 22px;
    }

    p, 
    a, 
    li {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    section {
        padding: 40px 0;
    }

    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 18px;
    }

    p,
    a,
    li {
        font-size: 14px;
    }
}


/* Hero ***************************************************/
.hero {
    width: 100%;
    height: 90vh;
    background-color: var(--color-dark);
    color: var(--color-light);
    position: relative;
    padding: 0;
}

.hero-montreal,
.hero-quebec {
    width: 100%;
    height: 100vh;
    background-image: url(../images/hero-bg.jpg);
    background-size: auto 100%;
    background-position: center right;
    background-repeat: no-repeat;
    background-color: var(--color-dark);
    color: var(--color-light);
    position: relative;
    padding: 0;
}

.hero-quebec {
    background-image: url(../images/hero-bg-2.jpg);
}

.hero-montreal .hero-bg-montreal,
.hero-quebec .hero-bg-quebec {
    position: absolute;
    top: 85%;
    left: 120px;
    color: var(--color-light);
    opacity: 0.1;
    font-size: 100px;
    font-weight: 700;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    padding-top: 40px;
}

.header-flex .logo img {
    width: 150px;
    margin-left: 120px;
    z-index: 100;
}

.contact-info {
    padding: 15px 20px;
    margin-right: 25px;
    background-color: var(--color-orange);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.contact-info p {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: var(--color-light);
}

.contact-info span {
    height: 1px;
    width: 100%;
    background-color: var(--color-light-grey);
}

.hero-flex {
    display: flex;
}

.hero-left {
    width: 40%;
}

.hero-left img {
    position: absolute;
    bottom: 0%;
    left: -2%;
}

.hero-right {
    width: 60%;
}

.hero-right img {
    position: absolute;
    top: 0;
    right: 0;
}

.hero-title {
    width: 500px;
    position: absolute;
    top: 50%;
    left: 120px;
    transform: translateY(-50%);
    z-index: 100;
}

.hero-title h1 {
    color: var(--color-orange);
    margin-bottom: 20px;
}

.hero-title h2 {
    text-transform: uppercase;
    color: var(--color-light);
    margin-bottom: 60px;
}

.cta-link-btn {
    padding: 15px 25px;
    border-radius: 10px;
    border: 1px solid var(--color-orange);
    color: var(--color-orange);
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.cta-link-btn:hover {
    background-color: var(--color-orange);
    color: var(--color-light);
    font-weight: 600;
}

/* Responsive design for hero ************/
@media screen and (max-width: 820px) {
    .header-flex {
        padding-top: 30px;
    }

    .header-flex .logo {
        z-index: 300;
    }

    .header-flex .logo img {
        width: 120px;
        margin-left: 100px;
    }

    .contact-info {
        padding: 10px 8px;
        margin-right: 25px;
        gap: 8px;
    }

    .contact-info p {
        font-size: 18px;
        margin: 0 10px;
    }

    .contact-info span {
        height: 0.5px;
    }

    .hero-title {
        left: 100px;
    }

    .hero-title h1 {
        margin-bottom: 20px;
    }

    .hero-title h2 {
        margin-bottom: 40px;
    }

    .cta-link-btn {
        padding: 12px 22px;
    }

    .hero-montreal .hero-bg-montreal,
    .hero-quebec .hero-bg-quebec {
        left: 80px;
        font-size: 80px;
    }
}

@media screen and (max-width: 480px) {
    .header-flex {
        padding-top: 25px;
    }

    .header-flex .logo img {
        width: 80px;
        margin-left: 50px;
    }

    .contact-info {
        padding: 8px;
        margin-right: 15px;
        gap: 5px;
    }

    .contact-info p {
        font-size: 14px;
        margin: 0 5px;
    }

    .hero-title-box {
        height: 100vh;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        background-blend-mode: multiply;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .hero-title {
        width: 300px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .hero-title h2 {
        margin-bottom: 50px;
    }

    .cta-link-btn {
        padding: 10px 20px;
        font-size: 15px;
    }

    .hero-montreal .hero-bg-montreal,
    .hero-quebec .hero-bg-quebec {
        font-size: 50px;
        top: 90%;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* About ***************************************************/
.about {
    background-color: var(--color-light);
}

.about-title {
    text-align: center;
    margin-bottom: 20px;
}

.about-title h2 {
    color: var(--color-dark);
    margin-bottom: 18px;
}

.about-title span {
    font-size: 38px;
    font-weight: 700;
    color: var(--color-orange);
}

.about-card h3 {
    font-size: 18px;
    font-weight: 500;
}

.card-flex {
    display: flex;
    gap: 20px;
}

.about-card {
    width: calc((100% - 40px) / 3);
    background-color: var(--color-light);
    position: relative;
    margin-bottom: 30px;
}

.about-card img {
    width: 390px;
    height: 300px;
    object-fit: fill;
    border-radius: 10px;
}

.card-img-info {
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border: none;
    border-radius: 5px;
    background-color: var(--color-orange);
    color: var(--color-light);
    padding: 15px 20px;
    transition: 0.5s;
}

.card-img-info i {
    font-size: 24px;
    transition: 0.5s;
}

.card-img-info:hover {
    transform: translateX(-50%) translateY(-15px);
    background-color: var(--color-dark);
}

.card-img-info i:hover {
    transform: rotate(360deg);
}

/* Responsive design for about ************/
@media screen and (max-width: 1024px) {
    .card-flex {
        flex-shrink: grow;
        gap: 20px;
    }

    .about-card img {
        width: 300px;
        height: 240px;
    }

    .card-img-info {
        width: 90%;
        height: 70px;
        gap: 30px;
    }
}

@media screen and (max-width: 820px) {
    .about-title span {
        font-size: 36px;
    }

    .about-title h2 {
        margin-bottom: 18px;
    }

    .about-title img {
        height: 35px;
    }

    .about-card h3 {
        font-size: 15px;
    }

    .about-card img {
        width: 100%;
        height: 180px;
    }

    .card-img-info {
        width: 90%;
        height: 60px;
        gap: 10px;
        padding: 5px 10px;
    }

    .card-img-info i {
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    .about-title span {
        font-size: 32px;
    }

    .about-title img {
        height: 28px;
    }

    .card-flex {
        flex-direction: column;
        justify-content: center;
        gap: 25px;
    }

    .about-card {
        width: 100%;
    }

    .about-card img {
        width: 100%;
        height: 250px;
    }

    .card-img-info {
        width: 80%;
        gap: 30px;
        padding: 8px 20px;
    }

    .card-img-info i {
        font-size: 18px;
    }
}


/* Products ***************************************************/
.products {
    background-color: var(--color-dark);
}

.product-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.product-img,
.product-img-1 {
    width: 60%;
}

.product-img img {
    height: 500px;
    border-radius: 5px;
}

.product-img-1 img {
    height: 400px;
    border-radius: 5px;
    box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.2);
}

.product-img a {
    cursor: url(../images/expand-img.png), auto;
}

.product-info,
.product-info-1 {
    width: 40%;
    padding: 20px;
}

.product-info h2,
.product-info-1 h2 {
    color: var(--color-orange);
    margin-bottom: 30px;
}

.product-info p {
    color: var(--color-grey);
    line-height: 1.8em;
    margin-bottom: 40px;
}

.product-info-1 p {
    color: var(--color-grey);
    line-height: 1.8em;
}

.product-info-1 .product-info-p {
    margin-top: 40px;
}

.product-link-btn,
.plan-link-btn {
    width: 50%;
    border-radius: 10px;
    border: 1px solid var(--color-orange);
    color: var(--color-orange);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.5s ease;
}

.product-link-btn:hover,
.plan-link-btn:hover {
    background-color: var(--color-orange);
    color: var(--color-light);
    transform: translateX(5px);
}

/* Responsive design for products ************/
@media screen and (max-width: 1024px) {
    .product-flex {
        gap: 40px;
    }

    .product-img img {
        height: 400px;
    }

    .product-img-1 img {
        height: 300px;
    }

    .product-link-btn,
    .plan-link-btn {
        width: 65%;
        padding: 10px 18px;
    }
}

@media screen and (max-width: 820px) {
    .product-flex {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }

    .product-img,
    .product-img-1,
    .product-info,
    .product-info-1 {
        width: 100%;
        text-align: center;
    }

    .product-img-1 img {
        width: 100%;
    }

    .product-info,
    .product-info-1 {
        padding: 20px 40px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .product-info p {
        margin-bottom: 25px;
    }

    .product-info-1 p {
        line-height: 1.8em;
    }

    .product-info-1 .product-info-p {
        margin: 20px 0;
    }

    .product-link-btn,
    .plan-link-btn {
        width: 35%;
    }
}

@media screen and (max-width: 480px) {
    .product-flex {
        gap: 10px;
    }

    .product-img img {
        width: 100%;
        height: 280px;
    }

    .product-img-1 img {
        width: 100%;
        height: 250px;
    }

    .product-info h2,
    .product-info-1 h2 {
        margin-bottom: 20px;
    }

    .product-info p,
    .product-info-1 p {
        line-height: 1.4em;
        margin-bottom: 20px;
    }

    .product-info-1 .product-info-p {
        margin: 20px 0 0;
    }

    .product-link-btn,
    .plan-link-btn {
        width: 55%;
        font-size: 12px;
        padding: 8px 10px;
    }
}


/* Services ***************************************************/
.services,
.services-analyse,
.services-technology {
    position: relative;
}

.services-technology {
    background-color: var(--color-light-grey);
}

.services .bg-silhouette-grey,
.services-analyse .bg-silhouette-grey {
    position: absolute;
    top: -10px;
    left: -8px;
    z-index: -1;
}

.service-technology-flex {
    display: flex;
    gap: 10px;
}

.service-flex,
.service-analyse-flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.service-analyse-flex img {
    width: 100%;
    border-radius: 5px;
}

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

.service-video-1 {
    width: 50%;
    position: relative;
}

.service-video-1 iframe {
    position: absolute;
    top: 40px;
}

.service-info,
.service-analyse-info,
.service-technology-info {
    border: 1px solid var(--color-orange);
    border-radius: 20px;
    padding: 40px 30px 40px 45px;
    position: relative;
}

.service-info,
.service-analyse-info {
    width: 95%;
    transform: translateX(5%);
}

.service-technology-info {
    width: 50%;
}

.service-info-title,
.service-analyse-info-title,
.service-technology-info-title {
    position: absolute;
    left: -10%;
    background-color: var(--color-orange);
    color: var(--color-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 15px 30px 15px 40px;
    margin-bottom: 50px;
}

.service-info-title,
.service-analyse-info-title {
    left: -5%;
}

.service-analyse-info-title img {
    width: 40px;
}

.service-technology-info-title {
    width: 88%;
}

.service-info h3,
.service-analyse-info h3,
.service-technology-info h3 {
    font-size: 24px;
    font-weight: 600;
}

.service-info .info-list,
.service-analyse-info .analyse-info-list {
    margin-top: 100px;
}

.service-info .info-list,
.service-analyse-info .analyse-info-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-technology-info .technology-info-list {
    margin-top: 110px;
    margin-bottom: 45px;
}

.service-info .info-list li,
.service-analyse-info .analyse-info-list li,
.service-technology-info .technology-info-list li {
    line-height: 1.6em;
    margin-bottom: 8px;
}

.service-info .info-list li i,
.service-analyse-info .analyse-info-list li i,
.service-technology-info .technology-info-list li i {
    color: var(--color-orange);
    margin-right: 10px;
}

/* Responsive design for services ************/
@media screen and (max-width: 1024px) {
    .service-technology-flex {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 400px;
    }

    .service-video-1 {
        width: 100%;
        position: none;
        text-align: center;
    }

    .service-video iframe ,
    .service-video-1 iframe{
        width: 550px;
        height: 350px;
    }

    .service-video-1 iframe {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .service-technology-info {
        width: 95%;
        transform: translateX(5%);
    }

    .service-technology-info-title {
        width: 75%;
        left: -5%;
        margin-bottom: 20px;
        padding: 15px 25px 15px 30px;
    }

    .service-technology-info .technology-info-list {
        margin-top: 120px;
        margin-bottom: 30px;
    }

    .service-technology-info .plan-link-btn {
        width: 30%;
    }
}

@media screen and (max-width: 820px) {
    .services .bg-silhouette-grey,
    .services-analyse .bg-silhouette-grey {
        top: -10px;
        left: -10%;
        z-index: -1;
    }

    .service-technology-flex {
        gap: 360px;
    }

    .service-flex,
    .service-analyse-flex {
        gap: 30px;
    }

    .service-video iframe,
    .service-video-1 iframe{
        width: 500px;
        height: 320px;
    }

    .service-info,
    .service-analyse-info,
    .service-technology-info {
        width: 95%;
        padding: 35px 30px 35px 40px;
        transform: translateX(5%);
    }

    .service-analyse-info {
        padding: 35px 20px 35px 30px;
    }

    .service-info-title,
    .service-analyse-info-title,
    .service-technology-info-title {
        left: -5%;
        gap: 15px;
        padding: 8px 25px 8px 20px;
        margin-bottom: 20px;
    }

    .service-technology-info-title {
        width: 60%;
    }

    .service-info h3,
    .service-analyse-info h3,
    .service-technology-info h3 {
        font-size: 20px;
    }

    .service-info .info-list,
    .service-analyse-info .analyse-info-list {
        margin-top: 70px;
    }

    .service-analyse-info .analyse-info-list {
        gap: 20px;
    }

    .service-technology-info .technology-info-list {
        margin-top: 100px;
        margin-bottom: 30px;
    }

    .service-info-title img,
    .service-analyse-info-title img,
    .service-technology-info-title img {
        width: 30px;
    }
    
    .service-technology-info .plan-link-btn {
        width: 35%;
    }
}

@media screen and (max-width: 480px) {
    .services .bg-silhouette-grey,
    .services-analyse .bg-silhouette-grey {
        top: -10px;
        left: -10%;
        z-index: -1;
        display: none;
    }

    .service-flex,
    .service-analyse-flex {
        gap: 20px;
    }

    .service-technology-flex {
        gap: 230px;
    }

    .service-video iframe,
    .service-video-1 iframe {
        width: 100%;
        height: 200px;
    }

    .service-info,
    .service-analyse-info,
    .service-technology-info {
        width: 90%;
        padding: 25px 20px 25px 30px;
        transform: translateX(10%);
    }

    .service-info-title,
    .service-analyse-info-title,
    .service-technology-info-title {
        left: -10%;
    }

    .service-technology-info-title {
        width: 95%;
    }

    .service-info h3,
    .service-analyse-info h3,
    .service-technology-info h3 {
        font-size: 18px;
    }

    .service-info .info-list,
    .service-analyse-info .analyse-info-list {
        margin-top: 60px;
    }


    .service-info .info-list,
    .service-analyse-info .analyse-info-list {
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
    }

    .service-technology-info .technology-info-list {
        margin-bottom: 25px;
    }

    .service-technology-info .plan-link-btn {
        width: 55%;
    }
}


/* Services-plan ***************************************************/
.services-plan {
    background-color: var(--color-light-grey);
    position: relative;
}

.services-technology .triangle-white,
.services-plan .triangle-white {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.plan-flex {
    display: flex;
    gap: 80px;
}

.plan-info {
    width: 45%;
    /* border: 1px solid var(--color-orange); */
    border-radius: 20px;
    padding: 40px;
}

.plan-info h2 {
    margin-bottom: 30px;
}

.plan-info h3 {
    color: var(--color-orange);
    margin-bottom: 40px;
}

.plan-info p {
    line-height: 1.8em;
    margin-bottom: 40px;
}

.plan-img {
    width: 55%;
}

.plan-img img {
    height: 500px;
    border-radius: 10px;
    box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.2);
}

/* Responsive design for services-plan ************/
@media screen and (max-width: 1024px) {
    .plan-flex {
        align-items: center;
        gap: 30px;
    }

    .plan-img img {
        height: 400px;
    }
}

@media screen and (max-width: 820px) {
    .plan-flex {
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        text-align: center;
    }

    .plan-info,
    .plan-img {
        width: 100%;
    }

    .plan-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .plan-info p {
        margin-bottom: 25px;
    }

    .plan-img img {
        height: 460px;
    }
}

@media screen and (max-width: 480px) {
    .plan-img img {
        height: 260px;
    }

    .plan-info {
        padding: 25px 40px 20px;
    }

    .plan-info h2 {
        margin-bottom: 20px;
    }

    .plan-info h3 {
        margin-bottom: 20px;
    }

    .plan-info p {
        line-height: 1.6em;
        margin-bottom: 20px;
    }
}


/* Projects ***************************************************/
.projects {
    position: relative;
}

.projects .bg-symbol-grey {
    position: absolute;
    top: -15%;
    left: -20%;
    z-index: -1;
}

.project-flex {
    display: flex;
    gap: 30px;
}

.project-title {
    width: 357px;
    height: 240px;
    background-image: url('../images/choisir-bg.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 30px;
    width: 35%;
    position: relative;
}

.project-title h3 {
    position: absolute;
    left: 45%;
    color: var(--color-light);
    font-size: 26px;
    font-weight: 600;
    line-height: 1.4em;
}

.project-grid {
    width: 65%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: row;
    grid-gap: 1rem;
    position: relative;
}

.project-grid p {
    border-radius: 20px;
    font-weight: 400;
    line-height: 1.4em;
    padding: 25px;
}

.project-info:nth-child(1),
.project-info:nth-child(4),
.project-info:nth-child(5) {
    border: 1px solid var(--color-orange);
}

.project-info:nth-child(2),
.project-info:nth-child(3),
.project-info:nth-child(6) {
    border: 1px solid var(--color-dark-line);
}

.project-grid a {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 25%;
}

.project-info span {
    color: var(--color-orange);
    font-weight: 700;
}

/* Responsive design for projects ************/
@media screen and (max-width: 820px) {
    .projects .bg-symbol-grey {
        top: -15%;
        left: -40%;
    }

    .project-flex {
        gap: 20px;
    }

    .project-title {
        width: 35%;
        height: 250px;
        padding: 20px;
    }

    .project-title h3 {
        left: 35%;
        font-size: 20px;
    }

    .project-grid a {
        width: 35%;
    }
}

@media screen and (max-width: 480px) {
    .projects .bg-symbol-grey {
        top: -15%;
        left: -70%;
        display: none;
    }

    .project-flex {
        flex-direction: column;
        gap: 20px;
    }

    .project-title {
        width: 100%;
        height: 160px;
        padding: 20px;
        border-radius: 10px;
    }

    .project-title h3 {
        left: 50%;
        font-size: 20px;
    }

    .project-grid {
        width: 100%;
        grid-template-columns: repeat(1, 1fr);
        padding: 0 0 10px;
    }

    .project-grid p {
        border-radius: 10px;
        line-height: 1.4em;
        padding: 15px;
    }

    .project-grid a {
        left: 50%;
        transform: translateX(-50%);
    }
}


/* Testimonial ***************************************************/
.testimonial {
    background-color: var(--color-light-grey);
    position: relative;
    padding-bottom: 120px;
}

.testimonial .container-1 {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.testimonial .slider-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.testimonial .slider-flex-left {
    width: 40%;
}

.testimonial .slider-flex-right {
    width: 60%;
}

.google-reviews{
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 370px;
    height: 140px;
    border-radius: 20px;
    background-image: url('../images/google-review.png');
    background-position: center;
    background-size: 180px;
    background-repeat: no-repeat;
    box-shadow: 4px 8px 8px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 50px;
}

.google-reviews-1 {
    height: 450px;
    background-image: url('../images/google-review-1.png');
    background-position: center;
    background-size: fit;
    background-repeat: no-repeat;
}

.slider-holder {
    margin-top: 200px;
}

.slider-flex-right .slider-holder {
    margin-top: 0;
}

.testimonial .slick-slide {
    margin: 0 5px;
}

.testimonial .slick-list {
    margin: 0 -5px;
}

.slider-holder .item {
    height: 400px;
    position: relative;
    padding: 40px;
    border: .8px solid var(--color-grey);
    border-radius: 20px;
    margin-bottom: 30px;
}

.slider-flex-right .slider-holder .item {
    height: 380px;
    position: relative;
    padding: 38px;
    border: .8px solid var(--color-grey);
    border-radius: 20px;
    margin-bottom: 0;
}

.slider-flex-right .slider-holder .item p {
    font-size: 16px;
}

.slider-holder .quotation {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: -1;
}

.item .person-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    margin-bottom: 20px;
    z-index: 50;
}

.star-date {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.slider-flex-right .slider-holder .star-date p {
    font-size: 13px;
}

.testimonial .slick-arrow {
    background-image: url('../images/carousel-next.png');
    background-position: center;
    background-size: 50%;
    background-repeat: no-repeat;
    position: absolute;
    z-index: 50;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    font-size: 0;
    background-color: transparent;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: .4s;
}

.testimonial .slick-arrow:before {
    content: url('../images/carousel-next.png');
    transform: translate(-50%, -50%) scale(0.04);
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
}

.testimonial .slick-prev {
    right: calc(100% + 10px);
    transform: translateY(-50%) scaleX(-1);
}

.testimonial .slick-next {
    left: calc(100% + 10px);
}

.testimonial .slick-dots {
    display: flex;
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%);
    gap: 8px;
}

.testimonial .slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    font-size: 0;
    border: none;
    background-color: var(--color-grey);
}

.testimonial .slick-dots li.slick-active button {
    background-color: var(--color-orange);
}

/* Responsive design for testimonials ************/
@media screen and (max-width:1024px) {
    .testimonial .slick-prev {
        right: calc(100% + 5px);
    }

    .testimonial .slick-next {
        left: calc(100% + 5px);
    }

    .google-reviews {
        width: 350px;
        height: 140px;
    }

    .google-reviews-1 {
        background-size: 350px;
    }

    .slider-holder .item {
        height: 450px;
        padding: 35px 30px;
    }

    .slider-flex-right .slider-holder .item {
        height: 420px;
        padding: 35px 30px;
    }

    .slider-holder .quotation {
        top: 25px;
        left: 25px;
    }
}

@media screen and (max-width: 820px) {
    .testimonial {
        padding-bottom: 80px;
    }

    .testimonial .container {
        width: 80%;
        margin: 0 auto;
    }

    .testimonial .slider-flex {
        gap: 20px;
    }

    .testimonial .slider-flex-left {
        width: 50%;
    }

    .testimonial .slider-flex-right {
        width: 50%;
    }

    .google-reviews {
        top: 60px;
        width: 320px;
        height: 120px;
        background-position: center;
        background-size: 150px;
    }
    
    .google-reviews-1 {
        background-size: 320px;
    }

    .slider-holder {
        margin-top: 160px;
    }

    .testimonial .slick-slide {
        margin: 0 5px;
    }

    .testimonial .slick-list {
        margin: 0 -5px;
    }

    .slider-holder .item {
        height: 360px;
        padding: 30px 25px 30px 30px;
        border-radius: 15px;
    }

    .slider-flex-right .slider-holder .item {
        width: 100%;
        height: 320px;
        padding: 30px;
        border-radius: 10px;
    }

    .slider-holder .item p,
    .slider-flex-right .slider-holder .item p {
        font-size: 15px;
    }

    .slider-holder .quotation {
        top: 20px;
        left: 20px;
        width: 28px;
    }

    .item .person-img {
        width: 50px;
        height: 50px;
    }

    .star-date {
        margin: 0 auto;
        gap: 10px;
        margin-top: 10px;
        margin-bottom: 15px;
    }

    .star-date img {
        width: 80px;
    }

    .star-date p {
        font-size: 13px;
    }

    .testimonial .slick-arrow {
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 480px) {
    .testimonial {
        padding-bottom: 60px;
    }

    .testimonial .container {
        width: 90%;
        margin: 0 auto;
    }

    .testimonial .slider-flex {
        flex-direction: column;
        justify-content: center;
        gap: 20px;
    }

    .testimonial .slider-flex-left,
    .testimonial .slider-flex-right {
        width: 100%;
    }

    .google-reviews {
        top: 40px;
        width: 250px;
        height: 90px;
        background-position: center;
        background-size: 120px;
    }

    .google-reviews-1 {
        width: 280px;
        height: 250px;
        background-size: fit;
        margin: 0 auto;
    }

    .slider-holder {
        margin-top: 125px;
    }

    .slider-holder .item
    .slider-flex-right .slider-holder .item {
        height: 300px;
        padding: 30px 25px 25px 30px;
        border-radius: 10px;
    }

    .slider-holder .item p {
        font-size: 14px;
    }

    .slider-holder .quotation {
        width: 25px;
    }

    .item .person-img {
        width: 50px;
        height: 50px;
    }

    .star-date {
        margin: 0 auto;
        gap: 10px;
        margin-top: 10px;
        margin-bottom: 15px;
    }

    .star-date img {
        width: 80px;
    }

    .star-date p {
        font-size: 13px;
    }

    .testimonial .slick-arrow {
        width: 40px;
        height: 40px;
    }
}


/* Contact ***************************************************/

.contact,
.contact-2 {
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
}

.contact {
    background-image: url('../images/cta-bg-1.jpg');
}

.contact-2 {
    background-image: url('../images/cta-bg-2.jpg');
}

.cta-flex {
    display: flex;
    gap: 30px;
}

.cta-title {
    width: 60%;
}

.cta-title h2 {
    color: var(--color-light);
}

.cta-form {
    width: 40%;
    background-color: rgba(241, 102, 45, 0.8);
    background-blend-mode: multiply;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 50px;
}

.cta-form .cta-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 100;
}

.cta-form input,
.cta-form textarea {
    font-size: 14px;
    line-height: 1.4em;
    padding: 15px;
    border: 0.5px solid var(--color-dark-line);
    background-color: var(--color-light);
    border-radius: 5px;
    outline: none;
}

.accept {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.accept input {
    width: 20px;
    height: 20px;
}

.accept label {
    font-size: 14px;
    color: var(--color-light);
}

.cta-btn {
    border: none;
    width: 50%;
    border-radius: 10px;
    background-color: var(--color-dark);
    color: var(--color-orange);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 20px;
    text-align: center;
    transition: 0.5s;
}

.cta-btn:hover {
    background-color: var(--color-light);
}

/* Responsive design for contact ************/
@media screen and (max-width: 820px) {
    .contact,
    .contact-2 {
        padding: 60px 0;
    }

    .cta-flex {
        flex-direction: column;
        gap: 40px;
    }

    .cta-title,
    .cta-form {
        width: 70%;
        margin: 0 auto;
    }

    .cta-form {
        padding: 20px;
        border-radius: 15px;
    }

    .cta-form input,
    .cta-form textarea {
        line-height: 1.4em;
        padding: 10px;
    }

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

    .accept {
        margin: 10px 0;
    }

    .accept input {
        width: 16px;
        height: 16px;
    }
}

@media screen and (max-width: 480px) {
    .contact,
    .contact-2 {
        padding: 40px 0;
    }

    .cta-title,
    .cta-form {
        width: 90%;
    }

    .cta-form {
        padding: 15px;
        border-radius: 10px;
    }

    .cta-form input,
    .cta-form textarea {
        line-height: 1.2em;
    }

    .cta-btn {
        width: 45%;
        font-size: 14px;
        padding: 10px 15px;
    }

    .accept {
        margin: 5px 0;
    }
}


/* Footer ***************************************************/

footer {
    height: 28vh;
    background-color: var(--color-dark);
    padding: 0 0 80px;
    position: relative;
}

footer .container {
    max-width: 1280px;
    position: absolute;
    top: -6%;
    left: 50%;
    transform: translateX(-50%);
}

.social-media {
    width: 224px;
    height: 42px;
    background-image: url(../images/socialmedia-bar.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 10px 15px 10px 25px;
    margin-bottom: 40px;
}

.social-media p {
    font-size: 16px;
}

.media-icons {
    display: flex;
    gap: 5px;
}

.media-icons a {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid var(--color-dark);
    color: var(--color-dark);
    padding: 5px;
    font-size: 14px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 60px;
    color: var(--color-light);
}

.footer-grid h3 {
    font-size: 16px;
    font-weight: 500;
    margin-left: 10px;
    margin-bottom: 20px;
    line-height: 1.8em;
}

.footer-logo {
    width: 184px;
}

.address-info {
    display: flex;
    gap: 15px;
}

.address-info i{
    color: var(--color-orange);
    font-size: 16px;
}

.address-info p,
.phone-info p {
    color: var(--color-light);
    line-height: 1.4em;
    margin-bottom: 10px;
}

.phone-info i {
    color: var(--color-orange);
    margin-right: 15px;
}

/* Responsive design for footer ************/
@media screen and (max-width: 820px) {
    footer {
        height: 35vh;
        padding: 60px 0 0;
    }

    footer .container {
        top: -3%;
    }

    .footer-logo {
        width: 140px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-content: space-between;
        grid-gap: 80px;
    }
}

@media screen and (max-width: 480px) {
    footer {
        height: 60vh;
        margin: 0 auto;
    }

    .footer-grid {
        width: 100%;
        grid-template-columns: repeat(1, 1fr);
        justify-content: center;
        align-items: center;
        grid-gap: 20px;
        padding: 0 20px 0;
    }

    .footer-grid .footer-logo {
        width: 120px;
        margin-bottom: 20px;
    }

    .address-info {
        gap: 10px;
    }

    .address-info i,
    .phone-info i {
        font-size: 14px;
    }
}