/*
** BASE
*/
main {
    padding: 200px 0 120px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 700px;
    margin: auto;
    overflow: initial;
}
.main_card {
    width: 100%;
}
.presentation-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    animation: fade_up .8s ease;
}
.presentation-container h1 {
   font-size:clamp(2rem,3vw,3.3rem);
    line-height:1.1;
    transition: .4s ease;
    text-align: center;
    margin: auto;
    font-family: "Montserrat_medium";
    max-width: 500px;
}
.content_list {
    width: 100%;
    margin-bottom: 40px;
}
.content_list h2 {
    font-size: 23px;
    font-weight: 550;
    margin-bottom: 10px;
    font-family: "Montserrat_medium";
}
.content_list a {
    display: inline-block;
    text-decoration: underline;
    color: #202020;
    font-weight: 500;
}
.content_list p {
    color: #616161;
    line-height: 23px;
}
.services_list {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}
.services_list p span {
    margin-right: 10px;
    font-size: 28px;
}
.services_list strong {
    margin-right: 5px;
    font-weight: 600;
}


/**
** MEDIA QUERIES
**/
@media screen and (max-width: 1100px) {
    .close_img:hover {
        background: #f5f5f5;
        transform: scale(1);
    }
    main {
        width: 470px;
        padding: 150px 0 50px 0;
    }
    .presentation-container {
        margin-bottom: 50px;
    }
}
@media screen and (max-width: 750px) {
    .presentation-container {
        justify-content: flex-start;
    }
    .presentation-container img {
        margin-bottom: 3px;
    }
    .presentation-container h1 {
        max-width: 350px;
        text-align: start;
        margin: 0;
    }
    main {
        width: 100%;
        padding-left: 2.5%;
        padding-right: 2.5%;
    }
}