/* CSS VARIABLES FIRST */

:root {
    --plain-green: #7ccd4e;
    --text-green: #28902c;
}

/* STYLES BELOW */
html,
body {
    font-family: 'Open Sans', sans-serif;
    width: 100%;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    background-color: var(--plain-green);
}

.cover {
    height: 820px;
    background: url(../assets/img/capa.jpg) 0 0 no-repeat;
    background-size: cover;
    padding-top: 125px;
    padding-left: 90px;
}

.cover-box {
    background-color: rgba(255,255,255, 0.8);
    color: var(--text-green);
    max-width: 650px;
    padding: 67px 57px;
}

.cover-box h1 {
    font-size: 45px;
    margin-bottom: 67px;
}

.cover-box h1 strong {
    font-size: 48px;
    font-weight: bold;
}

.cover-box p {
    font-size: 24px;
}

.cover-box p strong {
    font-weight: bold;
}

.about {
    padding: 115px 90px;
    color: black;
}

.about p {
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 80px;
    line-height: 55px;
    width: 90%;
}

.about p strong {
    font-weight: bold;
}

.about h3 {
    font-weight: bold;
    color: var(--text-green);
    font-size: 28px;
    margin-bottom: 2rem;
}

.pill-feat {
    display: flex;
    width: 30%;
    background-color: var(--plain-green);
    padding: 1rem;
    border-radius: 20px;
    transform: skewX(-9deg);
    margin-bottom: 2rem;
}

.pill-feat-image  img {
    transform: skewX(9deg);
}

.pill-feat-text {
    display: flex;
    flex-direction: column;
    width: 69%;
    height: 100%;
    margin-left: 1rem;
    align-items: flex-start;
    justify-content: center;
}

.pill-feat h4 {
    font-size: 26px;
    line-height: 28px;
    font-weight: bold;
    margin-bottom: 1rem;
}

.pill-feat p {
    font-size: 18px;
    line-height: 23px;
    font-weight: normal;
    margin-bottom: 0;
}

.pill-feat-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.mvv {
    display: flex;
    height: 913px;
    background: url(../assets/img/mvv-background.jpg) 0 0 no-repeat;
    background-size: cover;
    padding: 137px 175px;
    justify-content: space-between;
}

.mvv-block {
    width: 30%;
    background-color: rgba(124, 205, 78, 0.85);
    color: white;
    padding: 3rem;
}

.mvv-block-title {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    height: 100px;
}

.mvv-block-title h1 {
    font-size: 48px;
    font-weight: bold;
    margin-left: 1rem;
}

.mvv-block-description {
    font-size: 30px;
}

.formation-block {
    background-color: var(--plain-green);
    padding:90px;
}

.formation-box-container {
    display: flex;
    margin-top: 3rem;
    justify-content: space-between;
}

.formation-box {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 19%;
    height: 240px;
    font-weight: bold;
    font-size: 33px;
    color: black;
    background-color: rgba(255,255,255, 0.8);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.formation-box .diamond-corner.top {
    top:-66.5px;
}

.formation-box .diamond-corner.bottom {
    bottom:-66.5px;
}

.formation-box .diamond-corner.left {
    left: -66.5px;
}

.formation-box .diamond-corner.right {
    right: -66.5px;
}

.diamond-corner {
    width: 133px;
    height: 133px;
    position: absolute;
    background: url(../assets/img/diamond-corner.png) 0 0 no-repeat;
}

.process-block {
    height: 1100px;
    background: url(../assets/img/process-background.jpg) 0 0 no-repeat;
    background-size: cover;
    padding: 100px 90px;
}

.process-box {
    display: inline-block;
    background: white;
    padding:60px;   
}

.process-box h1 {
    font-size: 46px;
    font-weight: 300;
    color: black;
    margin-bottom: 3rem;
}

.process-box h1 strong {
    font-weight: bold;	
}

.services-partners-block {
    padding: 95px 85px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.services-partners-block h1 {
    color: var(--text-green);
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 3rem;
}

.services-partners-block ul li {
    font-size: 30px;
    font-weight: bold;
    color:black;
    margin-bottom: 1rem;
}

.services-partners-block ul li::before {
    content: ' ';
    width: 15px;
    height: 15px;
    background-color: var(--plain-green);
    display: inline-block;
    margin-right: 1rem;
}

.services-partners-block h1 strong {
    font-weight: bold;
}

.services-partners-block .separator {
    width: 2px;
    height: 580px;
    background-color: var(--plain-green);
}

.industry-labs-block {
    background-color: var(--plain-green);
    padding: 105px 95px 50px;
}

.industry-labs-block h1 {
    color: black;
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 3rem;
}

.industry-labs-block h1 strong {
    font-weight: bold;
}

.logo-photo-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.logo-photo{
    width: 32%;
    position: relative;
    margin-bottom: 3rem;
}

.lp-logo {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(255,255,255, 0.5);
    border-radius: 50px;
    display: inline-block;
    padding: 1rem 1rem 10rem;
    min-width: 362px;
    text-align: center;
}

.lp-photo {
    position: absolute;
    bottom: 0;
    right: 0;
    overflow: hidden;
    border-radius: 50px;
    display: inline-block;
}

.contact-block {
    background: url(../assets/img/contact-background.jpg) 0 0 no-repeat;
    padding: 130px;
}

.contact-info-box h1 {
    font-size: 60px;
    color: white;
    font-weight: 300;
    margin-bottom: 3rem;
}

.contact-info-box {
    padding: 2rem;
    background: url(../assets/img/henkotech-blurry-logo.png) 838px 50px no-repeat;
    background-color: rgba(124, 205, 78, 0.38);
    color: white;
}

.contact-info {
    line-height: 60px;
}
.contact-info a img {
    margin-right: 1rem;
    margin-bottom: -10px;
}

.contact-info a {
    font-size: 30px;
    font-weight: bold;
}

.adjust-address {
    line-height: 40px;
    display: inline-block;
}

.adjust-address-img {
    margin-bottom: 0 !important;
}

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

.link-qr {
    display: flex;
    align-items: flex-end;
}

.link-qr a {
    margin-right: 1rem;
    margin-bottom: -6px;
}


/* MEDIA QUERIES */

@media only screen and (max-width: 600px) {
    .cover {
        padding: 3rem;
        height: 445px;
        background-position: center;
    }
    .cover-box {
        padding: 2rem;
        max-width: 100%;
        box-sizing: border-box;
    }
    .cover-box h1 {
        font-size: 25px;
        margin-bottom: 20px;
    }

    .cover-box h1 strong {
        font-size: 30px;
    }
    .cover-box p {
        font-size: 16px;
    }

    .about {
        padding: 2rem;
    }
    .about p {
        font-size: 16px;
        line-height: 30px;
    }

    .about h3 {
        font-size: 20px;
    }

    .pill-feat {
        width: 100%;
        padding: 0.6rem 0.4rem;
    }

    .pill-feat-image {
        width: 25%;
    }

    .pill-feat h4 {
        font-size: 20px;
        line-height: 21px;
        font-weight: bold;
        margin-bottom: 0rem;
    }

    .pill-feat p {
        font-size: 12px;
        line-height: 20px;
    }
    
    .mvv {
        padding: 1rem;
        flex-wrap: wrap;
    }

    .mvv-block {
        width: 100%;
        margin-bottom: 1rem;
        padding: 2rem;
    }

    .mvv-block-title {
        height: 50px;
        width: 65px;
    }

    .mvv-block-title h1 {
        font-size: 25px;
    }

    .mvv-block-description {
        font-size: 18px;
    }

    .formation-block {
        padding: 1rem;
        text-align: center;
    }

    .formation-block > img {
        max-width: 65%;
        margin: 1rem;
    }

    .formation-box-container {
        flex-wrap: wrap;
        flex-direction: column;
        margin-top: 1rem;
    }
    .formation-box {
        width: 100%;
        margin-bottom: 1rem;
        font-size: 22px;
        height: 100px;
        border-radius: 10px;
    }

    .formation-box .diamond-corner.top {
        top: -107.5px;
    }

    .formation-box .diamond-corner.bottom {
        bottom: -107.5px;
    }

    .process-block {
        padding: 2rem;
        height: auto;
    }

    .process-box {
        padding: 2rem;
        background-position: center;
    }

    .process-box h1 {
        font-size: 24px;
        margin-bottom: 1rem;
    }

    .services-partners-block {
        padding: 2rem;
        flex-direction: column;
    }
    .services-partners-block .separator {
        width: 100%;
        height: 2px;
        margin: 2rem 0;
    }
    
    .services-partners-block h1 {
        font-size: 26px;
    }
    
    .services-partners-block ul li {
        font-size: 18px;
    }

    .industry-labs-block {
        padding: 1rem;
    }

    .industry-labs-block h1 {
        font-size: 28px;
    }

    .logo-photo-container {
        flex-direction: column;
    }

    .logo-photo {
        margin-bottom: 1rem;
        width: 100%;
    }

    .lp-logo {
        min-width: 240px;
        border-radius: 20px;
        width: 50%;
    }

    .lp-photo {
        border-radius: 35px;
    }

    .contact-block {
        padding: 1rem;
        background-position: center;
    }

    .contact-info-box h1 {
        font-size: 40px;
        margin-bottom: 1rem;
    }

    .contact-info {
        width: 100%;
        line-height: 40px;
    }

    .contact-info a {
        font-size: 15px;
        margin-bottom: 2rem;
    }

    .contact-info a img {
        max-width: 25px;
        max-height: 25px;
        display: block;
    }

    .adjust-address {
        line-height: 20px;
    }

    .mq-contidional {
        display: none;
    }

    .horizontal {
        flex-direction: column;
    }

    .link-qr {
        padding-top: 2rem;
        justify-content: center ;
    }
    
}