.text-section{
    width: 50%;
}
.img-section{
    width: 40%;
}


/* HOME - Section 1 */
.home-first-section{
    background-image: url('../img/main-background.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 90vh;
    width: 100%;
    position: relative;
    z-index: 2;
    /* color: rgb(42, 0, 78) */
}

.home-first-section:before{
    content: "";
    height: 100%;
    background-color: black;
    opacity: 0.6;
    position: absolute;
    width: 100%;
    z-index: -1;
}
.home-first-section .container{
    margin: 12rem auto;
    text-align: center;
}

/* HOME - Section 2 */
.home-second-section{
    padding: 5rem 3rem;
    text-align: start;
    display: flex;
    justify-content: space-between;
}

/* HOME - Section 3 */
.home-third-section{
    background-color: #027bde;
	/* background: linear-gradient(to bottom right, #0e395d, #185b93, skyblue); */
    padding: 3rem 5rem;
    text-align: start;
}
/* justify-content-between.align-items-center(style="margin:4.5rem auto") */
.home-third-section-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin:2rem auto
}

#home-third-section-head-para{
    width: 65%;
}

/* HOME - Section 4 */
.home-fourth-section{
    padding: 3rem 0;
    text-align: start;
}
.home-fourth-section h1{
    margin:2rem 0
}
.home-fourth-section-container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
}
.home-fourth-section-container section{
    margin:2rem 0; 
    width:30%; 
}
.svg-size{
    height: 15%;
}
/* MEDIA QUERIES */
@media (max-width: 700px) {
.home-second-section {
    padding: 0;
    flex-direction: column;    
}
.home-second-section section{
    width: 90%;
	margin: 3rem auto;
	text-align: start;
}

.home-third-section {
    padding: 1rem;
}

.home-third-section-container {
    flex-direction: column;
    text-align: start;
}
#home-third-section-head-para{
    width: 90%;
    margin: auto;
}
.home-third-section-container section {
	width: 90%;
    margin: auto;
}

.home-fourth-section-container {
    flex-direction: column;
}
.home-fourth-section-container section{
    width: 95%;
    margin: 1.5rem auto;
}
}