*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

html, body{
    font-family: "futura-pt", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
}

img{
    width: 100%;
    height: auto;
}

ul{
    list-style: none;
}
ul li{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}

.ies_temp{
    width: 100%;
    min-height: 100vh;
    background-image: url('./../images/background.png');
    background-size: cover;
    background-position: center center;
    padding-bottom: 1rem;
}

.ies_temp__container{
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}
@media only screen and (max-width: 1281px) {
    .ies_temp__container{
        max-width: 1024px;
    }
}
@media only screen and (max-width: 1024px) {
    .ies_temp__container{
        max-width: 100%;
        padding: 0 2rem;
    }
}

.ies_temp__logo{
    width: 100%;
    text-align: left;
    margin-bottom: 3rem;
}
.ies_temp__logo img{
    max-width: 500px;
    max-height: 70vh;
    object-fit: contain;
    object-position: center;
}
@media only screen and (max-width: 1024px) {
    .ies_temp__logo{
        margin-bottom: 1rem;
        display: flex;
        justify-content: center;
        align-items: center;

        img{
            max-width: 80%;
        }
    }
}

.ies_temp__content{
    width: 100%;
    height: 90vh;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding-top: 2rem;
}
.ies_temp__content__text{
    width: 40%;
    height: 100%;
}
.ies_temp__content__text h1{
    color: #5478D9;
    font-size: 3rem;
    line-height: 4rem;
    font-family: "futura-pt-bold", sans-serif;
    font-weight: 700;
}
.ies_temp__content__text p{
    color: #FFFFFF;
    font-size: 1.6rem;
    line-height: 2rem;
    margin-bottom: 1rem;
}
.ies_temp__content__text ul li{
    font-size: 1.4rem;
    line-height: 1.6rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
}
.ies_temp__content__text ul li img{
    max-width: 48px;
}
.ies_temp__content__image{
    width: 60%;
    height: 100%;
}
.ies_temp__content__image img{
    max-width: 900px;
    height: 100%;
    object-fit: contain;
}
@media only screen and (max-width: 980px) {
    .ies_temp__content{
        flex-direction: column;
    }
    .ies_temp__content__text,
    .ies_temp__content__image{
        width: 100%;
        text-align: center;

        img{
            max-width: 80%;
            transform: translateY(-10%);
        }
    }
    .ies_temp__content__text h1{
        font-size: 2rem;
        line-height: 2.6rem;
    }
    .ies_temp__content__text p{
        color: #FFFFFF;
        font-size: 1.4rem;
        line-height: 1.8rem;
        padding: 0 2rem;
    }
    .ies_temp__content__text ul{
        width: 100%;
        padding-left: 10%;
    }
    .ies_temp__content__text ul li{
        font-size: 1rem;
    }
}

.ies_temp__links{
    width: 100%;
    max-width: 60%;
    border-radius: 24px;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 2rem;
}
.ies_temp__links li{
    color: #FFFFFF;
    width: calc(92% / 3);
}
.ies_temp__links li img{
    width: 100%;
    height: auto;
    margin-right: 1rem;
    max-width: 120px;
    max-height: 120px;
}
.ies_temp__links li a{
    color: #FFFFFF;
    text-decoration: none;
}
@media only screen and (min-width: 980px) {
    .ies_temp__links{
        max-width: 34%;
        position: absolute;
        bottom: 8%;
    }
    .ies_temp__links__item{
        width: calc(90% / 3);
    }
}
@media only screen and (max-width: 980px) {
    .ies_temp__links{
        max-width: 100%;
        transform: translateY(-50%);
        padding: 1rem;
        margin-top: 2rem;
    }
    .ies_temp__links li{
        width: calc(84% / 3);
        flex-direction: column;
        text-align: center;
    }
    .ies_temp__links li img{
        margin-bottom: 1rem;
        object-fit: cover;
    }
}