#landing {
    width: 100%;
    height: 460px;
    position: relative;
    top: 0px;
    background-color: transparent;
    overflow: hidden;
}

.default_container_flex {
    display: flex;
    justify-content: space-between;
}

.person {
    width: 300px;
    height: fit-content;
}

.person_image_container {
    width: 300px;
    height: 300px;
    position: relative;
}

.person_image_container > img.person_img {
    width: 300px;
    position: absolute;
    z-index: 2;
    bottom: 0px;
    margin: 0px auto;
}

.person_bg {
    width: 300px;
    height: 150px;
    background: #3F51B5;
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 1;
    border-radius: 12px;
}

.team_members {
    padding-top: 0px;
}

.person_name {
    font-size: 28px;
    font-weight: 800;
    color: #000;
    text-align: center;
    margin-top: 20px;
}

.person_position {
    font-size: 17px;
    font-weight: 300;
    color: #000;
    font-family: 'Poppins';
    text-align: center;
}

.person_medias {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.person_medias > a {
    color: #3f51b5;
    font-size: 25px;
    text-decoration: none;
}

.person_email {
    font-size: 17px;
    font-weight: 600;
    color: #f15b5b;
    font-family: 'Poppins';
    text-align: center;
    margin-top: 12px;
}

a.button_read_more {
    display: block;
    margin-top: 20px;
    padding: 12px 20px;
    background: #f15b5b;
    width: fit-content;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 13px;
}

a.button_read_more > i {
    margin-right: 7px;
}

.contact_headline {
    text-align: center;
    margin-bottom: -50px;
    font-size: 49px;
    font-family: 'Merriweather';
    color: #f15b5b;
    text-transform: uppercase;
    text-shadow: 0px 0px 9px #adadad59;
    margin-top: 150px;
    width: 80%;
    max-width: 1000px;
    display: block;
    margin: 150px auto 50px auto;
}

@media only screen and (max-width: 1100px) {
    .team_members {
        display: block;
    } 
    
    .team_members > .person {
        margin: 0px auto 80px auto;
    }
    
    .team_container {
        display: block;
    }
    .team_container {
        display: block;
    }
    
    .team_container > .team_description {
        width: 100%;
        margin-bottom: 80px;
    }
    
    .team_container > .team_photo {
        width: 100%;
        margin: 0px auto;
    }
    
    .technologies_spacer_container.defaut_container {
        display: block;
    }
    .technology_item {
        width: 100%;
        display: flex;
        gap: 50px;
        margin: 40px auto;
    }
    
    .technology_description {
        margin: 0px;
    }
    section#products > div.products_container > div.product {
        display: block;
    }
    .product_title {
        width: 100%;
    }
    
    section#products > div.products_container > div.product > div.product_info {
        width: 100%;
        max-width: 100%!important;
    }
    
    section#products > div.products_container > div.product > div.product_info > div.product_description {
        padding-bottom: 30px;
    }
    
    section#products > div.products_container > div.product > div.product_image {
        width: 100%;
        max-width: 100%;
    }
}