*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins, sans-serif;
}
body{
    background: #0169b2;
    min-height: 100vh;
}
.container{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 10vw;
}
.navbar{
    height: 100px;
    display: flex;
    align-items: center;
    margin: 0 10vw;
    display: flex;
    justify-content: space-between;
}
.navbar img{
    width: 200px;
}
.home{
    max-width: 20px;
}
.openings{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.openings img{
    width: 80%;
}
.container h1{
    font-weight: 600;
    font-size: 60px;
    margin-right: 160px;
    color: white;
    line-height: 56px;
}
.posts{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.post{
    margin: 20px 20px 0 0;
    background: #eff1f0;
    padding: 50px;
    border-radius: 20px;
    flex: 1;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s, background 0.2s;
}
.post:hover{
    box-shadow: 0px 20px 15px -5px rgba(255, 255, 255, 0.2);
    /*transform: scale(1.025);*/
    background: #fff;
}
.post-title{
    position: relative;
    z-index: 1;
    font-size: 14px;
}
.post-desc span, .bottom span{
    font-weight: 400;
}

.post img{
	width: 200px;
	align-self: flex-end;
}

a{
    text-decoration: none;
    color: inherit;
}

.bottom{
    color: black;
}

.oldernewsletters{
    margin: 40px 10vw;
}

.oldernewsletters h1,h4{
    color: white;
}

.newsrows{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.newsrows .btn{
    margin: 10px 0;
    padding: 5px 20px;
    background: white;
    color: black;
}

.btn{
	display: flex;
	align-items: center;
	justify-content: space-between;
    margin-top: 20px;
    outline: none;
    border: none;
    background: black;
    padding: 15px 20px;
    color: #eff1f0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.2s;
    cursor: pointer;
}

.btn:hover{
    background: #ddd;
    color: black;
    box-shadow: 0px 10px 15px -5px rgba(0,0,0,0.1);
}

.btn img{
	width: 20px;
	transform: rotate(270deg);
}

.btn:hover img{
	filter: invert(1);
}

.footer {
  bottom: 0;
  width: 90vw;
  margin: 0 5vw;
  background: black;
  padding: 20px 50px;
  color: #eff1f0;
  margin-top: 50px;
  border-radius: 20px 20px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.2s;
  z-index: 2;
}

.footer:hover {
  /*transform: scale(1.025);*/
  box-shadow: 0px 20px 15px -5px rgba(0, 0, 0, 0.1);
}

.footer p {
  font-size: 12px;
}

.social i {
  margin-left: 20px;
  color: #eff1f0;
  text-decoration: none;
}

.subs{
    display: flex;
    flex-direction: column;
    flex-basis: 50%;
}
.subs-heading{
    margin-top: 20px;
    color: white;
}
.subs-input{
    width: 100%;
    margin-top: 10px;
    border: none;
    outline: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    padding: 20px;
}
.subs-button{
    width: 100%;
    margin-top: 20px;
    background: #f7c759;
    border: none;
    outline: none;
    border-radius: 10px;
    padding: 20px;
    font-size: 16px;
    font-weight: bold;
    transition:  all 0.2s;
    cursor: pointer;
}
.subs-button:hover{
    background: #000000;
    color: #f7c759;
}

@media (max-width: 700px){
    .container{
        margin: 0 5vw;
    }
	.posts{
		flex-direction: column;
	}
    .oldernewsletters{
        margin: 40px 5vw;
    }
    .logo{
        width: 50vw;
        max-width: 160px;
    }
    .navbar{
        height: 80px;
        margin: 0 5vw;
    }
    .social i {
        margin-left: 10px;
  }
}

@media (max-width: 1000px){
	.container{
		flex-direction: column;
        align-items: stretch;
        margin-top: 40px;
	}
	.container h1{
		font-size: 36px;
        margin-bottom: 12px;
        line-height: 36px;
	}
    .post{
        margin: 0;
    }
    .oldernewsletters h1{
        font-size: 24px;
    }
}

.noSelect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

hr {
    border-top: 1px dotted #ccc;
    border-bottom: 0;
    border-left: 0;
    border-right: 0;
}