/* Truck icon */
.truck_clock_icon{
    width: 35px;
    height: 35px;
}

/* Storage icon */
.storage_icon{
    width: 38px;
    height: 25px;
}

/* Box icon */
.box_icon{
    width: 28px;
    height: 28px;
}

/* "Why us" container */
.why_us_container{
    background-color: var(--grey2);
}

/* Image */
.why_us_img{
    width: 100%;
    height: auto;
}

/* "Why us" section container */
.why_us_container > .container{
    padding: 80px 100px;
    display: flex;
    gap: 80px;
    align-items: center;
}

/* "Why us?" informational text*/
.why_us_informational{
    display: flex;
    gap: 25px;
}

/* "Why us?" informational text */
.why_us_div, .why_us_text, .why_us_explanation{
    display: flex;
    flex-direction: column;
}

/* Informational text*/
.why_us_informational{
    gap: 30px;
    margin-top: 45px;
}

/* Informational text */
.why_us_text{
    gap: 10px;
}

/* Informational text */
.why_us_text > span{
    color: var(--grey1);
}

/* Colored text in title */
.why_us_colored_text{
    margin-bottom: 7px;
    color: var(--purple1);
}

/* Purple container */
.why_us_purple_container{
    position: absolute;
    right: -20px;
    bottom: -20px;
    background-color: var(--purple1);
    content: "";
    width: 533px;
    height: 431px;
    border-radius: 30px;
    z-index: 1;
}

/* Image div */
.why_us_image_div{
    width: 77%;
}

/*  Informational text + icons */
.why_us_div_mobile{
    display: none;
}

@media screen and (max-width:1200px) {

    /* Main section container */
    .why_us_container .container{
        align-items: start;
    }

    /* Image div */
    .why_us_image_div{
        width: 100%;
    }
}

@media screen and (max-width:1100px) {

    /* "Why us" section container */
    .why_us_container > .container{
        padding: 80px 50px;
    }
}

@media screen and (max-width:1000px) {

    /* Informational text + icons */
    .why_us_div_mobile{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Section title + text beneath */
    .why_us_div .why_us_colored_text,  .why_us_div .h2{
        display: none;
    }

    /* "Why us" section container */
    .why_us_container > .container{
        padding: 50px 20px;
        gap: 0px;
        align-items: center;
        flex-direction: column;
    }

    /* Section title + text */
    .why_us_container > .container .why_us_div_mobile{
        order: 1;
    }
    
    /* Image */
    .why_us_container > .container .why_us_image_div{
        order: 2;
    }

    /* Informational text + icons */
    .why_us_container > .container .why_us_div{
        order: 3;
    }

    /* Image div */
    .why_us_image_div{
        width: 40%;
        margin-top: 30px;
        margin-bottom: 40px;
    }

    /* Informational text */
    .why_us_informational{
        flex-direction: column;
        align-items: center;
        gap: 14px;
        margin: 0px;
    }

    /* Informational text title + text beneath  */
    .why_us_text{
        align-items: center;
        gap:7px;
        text-align: center;
        width: 80%;
    }

    /* Informational text */
    .why_us_text span{
        text-wrap: balance;
        text-align: center;
        line-height: 21px;
    }

    /* Whole informational text container */
    .why_us_explanation{
        gap: 30px;
    }

    /* Section title + informational text */
    .why_us_colored_text, .why_us_text span, .why_us_informational span{
        font-size: 16px;
        text-wrap: balance;
    }

    /* Section title */
    .why_us_div_mobile .h2{
        font-size: 22px;
        line-height: 20px;
        text-align: center;
    }

    /* Informational text title */
    .why_us_text .h3{
        font-size: 18px;
        line-height: 24px;
    }

    /* Section title */
    .why_us_colored_text{
        margin-bottom: 10px;
    }
}

@media screen and (max-width:767px) {

    /* Image div */
    .why_us_image_div{
        width: 300px;
        height: 270px;
    }

    /* Informational text div */
    .why_us_text{
        width: 100%;
    }

    /* Section title + informational text */
    .why_us_colored_text, .why_us_text span, .why_us_informational span{
        font-size: 14px;
    }

    /* Section title */
    .why_us_div_mobile .h2{
        font-size: 18px;
    }

    /* Informational text title */
    .why_us_text .h3{
        font-size: 16px;
    }
}