@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap");

body {
    font-family: "Open Sans";
    background-color: #FAFAFA;
    margin: 0;
}

a {
    cursor: pointer;
}

 p {
    color: #787878;
    margin-top: 0;
    margin-bottom: 16px;
}

h1 {
    color: #323232;
    margin-top: 0;
    font-size: 30px;
}

h2 {
    color: #323232;
    font-size: 20px;
}

.txt_strong {
    color: #323232;
    font-weight: 600;
    margin-top: 16px;
}

.content {
    display: flex;
    width: 60%;
    min-height: 100vh;
    flex-direction: column;
    margin-right: auto;
    margin-left: auto;
    padding: 0 4%;
    background-color: #FFFFFF;
}

.logo_container {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    padding: 1% 0 5% 0;

}

.logo_tagline {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    padding-right: 24px;
}

.logo_container h1 {
    color: #87CD37;
    text-align: right;
    margin: 0;
}

.logo_container img {
    height: 100px;
}

.content_line {
    background-color: #87CD37;
    height: 2px;
}

.txt_container {
    display: flex;
    padding-top: 16px;
}

.txt_cont_1 {
    display: flex;
    justify-content: space-between;
    flex-basis: 100%;
}

.txt_cont_2 {
    display: flex;
    flex-basis: 28%;
    flex-direction: column;
}
  
@media screen and (max-width: 1440px) {
    .txt_cont_2 {
        flex-basis: 25%;
    }
	h1 {
		font-size: 28px;
	}
    .timeline-vertical h2 {
		font-size: 1.6rem;
	}
    .content {
        width: 70%;
    }
}

/* Tablet */

@media screen and (max-width: 1024px) {
    .txt_cont_1 {
        flex-direction: column;
    }
    .txt_cont_2 {
        flex-basis: 100%;
    }
	h1 {
		font-size: 26px;
	}
    .content {
        width: 80%;
    }
    .logo_container img {
        height: 80px;
    }
    p {
        font-size: 14px;
    }
}

/* Mobile */

@media screen and (max-width: 768px) {
    h1 {
		font-size: 24px;
	}
    .content {
        width: 100%;
        padding: 0 8% 3% 8%;
    }
    .logo_container img {
        height: 60px;
    }
}

@media screen and (max-width: 425px) {
    h1 {
		font-size: 20px;
	}
}