* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.overallWrapper {
    width: 100%;
    height: 100vh;
    background: linear-gradient(65deg, #fff 50%, #1fa78f 50%);
    overflow: hidden;
}

.headerContainer {
    width: 100%;
    height: 80px;
    display: flex;
    /* background-color: blueviolet; */
    justify-content: space-around;
    align-items: center;
}

.logoContainer {
    width: 20%;
}

.logoContainer p {
    width: 100%;
    font-size: 30px;
}

.logoContainer p span {
    color: #1fa78f
}

.headerContainer .fa-bars, .headerContainer .fa-times {
    display: none;
}




.navLinksContainer {
    width: 50%;
}

.navLinksContainer ul {
    display: flex;
    justify-content: space-between;
}

.navLinksContainer ul li {
    list-style: none;
}

.navLinksContainer ul li a {
    font-size: 18px;
    text-decoration: none;
    color: #fff;
}

.textWithImageContainer {
    width: 85%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    
}


.textButtonBox {
    width: 50%;
}

.textButtonBox h2 {
    font-size: 25px;
    color: #1fa78f;
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.textButtonBox h1 {
    font-size: 60px;
    margin-bottom: 20px;
}

.textButtonBox  p {
    line-height: 25px;
}

.textButtonBox button {
    margin-top: 30px;
    padding: 10px 20px;
    font-size: 20px;
    cursor: pointer;
    background-color: #1fa78f;
    border: none;
    color: #fff;
}

.imageBox {
    width: 40%;
    /* background-color: bisque; */
    display: flex;
    justify-content: right;
    
}

.imageBox img{
    width: 100%;
    
}

.socialMediaIcon {
    width: 40px;
    height: 220px;
    border-radius: 50px;
    position: absolute;
    left: 20px;
    top: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0px 2px 3px #555;
}

.fa-facebook-f, .fa-twitter, .fa-instagram, .fa-linkedin {
    font-size: 20px;
    color: #666;
    cursor: pointer;
}
