#home-landing {
    display: flex;
    background-color: #f73602;
    color: white;
}

#home-landing-sub-1 {
    flex: 5;
    flex-basis: 45%;
    margin: auto;
}

#sub-1-cont {
    margin: 0 20px 0 40px;
}

#sub-1-cont h1 {
    margin-top: 0;
    font-size: 56px;
    display: inline-block;
    border-bottom: 4px solid white;
    padding-bottom: 10px;
}

#sub-1-cont h2 {
    font-weight: normal;
    font-size: 36px;
    margin-top: 0;
}

#home-landing-sub-2 {
    flex: 6;
    flex-basis: 55%;
}

#home-landing-sub-2 img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-top-left-radius: 200px;
    border-bottom-left-radius: 200px;
}

.call-to-action-btn i {
    width: 0px;
    opacity: 0;
    transition: all 0.3s ease 0s;
}

.call-to-action-btn {
    background: white;
    border-radius: 10px;
    border: 1px solid white;
    padding: 10px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease 0s;
}

.call-to-action-btn:hover {
    cursor: pointer;
    background-color: #f73602;
    color: white;
}

.call-to-action-btn:hover>i {
    width: 15px;
    opacity: 1;
}
#home-text-about-btn-cont{width: 100%; text-align: center;}
.alt-color-btn{background-color: #f73602;
    color: white;}
.alt-color-btn:hover{background-color: white;
        color: #f73602;
        border: 1px solid #f73602;}
#home-content-cont {
    margin: auto;
    display: inline-block;
}

#home-content {
    margin: 0 100px;
    max-width: 1500px;
}

#home-text-section-img-cont {
    margin: 40px 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    position: relative;
}

#home-text-section {
    display: flex;
    margin: 40px 0;
}

#home-text-section-img-cont {
    flex: 1;
    flex-basis: 50%;
}

#home-text-section-writing {
    flex: 1;
    flex-basis: 50%;
}

.overlap-img {
    width: 400px;
    height: auto;
}

#overlap-top {
    grid-column: 1 / span 8;
    grid-row: 1;
    padding-top: 20%;
    z-index: 1;
}

#overlap-btm {
    grid-column: 4 / -1;
    grid-row: 1;
}

#home-text-section-writing {
    margin: auto;
    text-align: left;
    padding-bottom: 40px;
}

#home-text-section-writing h3,
#why-us-section h3 {
    font-size: 32px;
}

#home-text-section-writing p {
    font-size: 16px;
}

.in-page-seperator {
    color: #f73602;
    height: 3px;
    background: #f73602;
    border: 0px solid white;
}

#three-cards {
    display: flex;
    margin-bottom: 50px;
}

.conv-card h3 {
    border-bottom: 2px solid white;
    display: inline-block;
    padding-bottom: 5px;
}

.conv-card {
    flex-basis: 33%;
    background: #f73602;
    border-radius: 30px;
    margin: 0 25px;
    color: white;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.in-card-img {
    max-width: 80%;
}

@media only screen and (max-width: 1300px) {
    #home-text-section {
        flex-direction: column;
    }
}


@media only screen and (max-width: 800px) {

    #home-landing,
    #home-text-section,
    #three-cards {
        flex-direction: column;
    }

    #home-content {
        margin: 0 20px;
    }

    .overlap-img-cont {
        width: 100%;
    }

    .overlap-img-cont img {
        width: 100%;
    }

    .conv-card {
        margin: 0 10px 60px 10px;
    }

    #three-cards {
        margin-bottom: 0;
    }

    #sub-1-cont h1 {
        margin-top: 40px;
        font-size: 36px;
    }

    #sub-1-cont h2 {
        font-size: 26px;
    }

    #home-landing-sub-2 img {
        width: 80%;
        height: auto;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        margin: 30px 0;
    }

    #sub-1-cont {
        margin: 0 20px 0 20px;
    }

    #home-text-section-img-cont {
        margin: 20px 0;
    }
}