*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.main-container .hide-lg{
    display: none;
}
.main-container .hide-sm{
    display: flex;
}

.main-container a{
    text-decoration: none;
}

.textSize{
    font-size: 4em;
}

.iconSize{
    font-size: 50px;
}

.iconSize2{
    font-size: 20px;
}

.padding{
    padding-left: 150px;
    padding-right: 150px;
    padding-top: 30px;
    padding-bottom: 30px;
}

@media only screen and (max-width:1000px) {
    .main-container .hide-sm{
        display: none;
    }
    .main-container .hide-lg{
        display: flex;
    }
    
    .textSize{
        font-size: 2em;
    }

    .iconSize{
        font-size: 30px;
    }

    .iconSize2{
        font-size: 15px;
    }

    .padding{
        padding-left: 20px;
        padding-right: 20px;
    }
}

.main-container .image{
    background-image: url(../images/aleksandra-kovacic-1_BSbARCjho-unsplash.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
}

.main-container .overlay{
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.487);
    top: 0;
    left: 0;
    z-index: 9;
    position: absolute;
}

.main-container .form{
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 99;
}

.t-blue{
    color: rgb(47, 47, 192);
}

.blue{
    background-color: rgb(47, 47, 192);
}

.fadedBlue{
    background-color: rgba(105, 105, 203, 0.365);
}
.fadedBlueText{
    color: rgba(53, 53, 168, 0.609);
}

.gradientBg{
    background: rgb(33,71,147);
    background: linear-gradient(153deg, rgba(33,71,147,1) 0%, rgba(28,114,189,1) 37%, rgba(152,213,255,1) 97%); 
}