/* css that's being used globally */

body
{
    background-color:#004455;
    height: 100%;
    
    font-family: 'Poppins';
    font-size: 0.8vw;
    font-weight: 400;
}

#app
{
    height: 100%;
}

.py-0
{
    min-height: 82%;
    background-size: 82% 82%;
    background-position: center center;
}

.container--white
{
    background-color: #f0f0f0 !important;
    height: 100%;
    display: flex;
	flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 5%;
}


.title
{
    display: flex;
	flex-wrap: wrap;
    margin-top: 4%;
    font-weight: bold;
    font-size: 2vw;
	justify-content: center;
}

.title p
{
    color: #1a99d6;
}

.break 
{
  flex-basis: 100%;
  height: 0;
}

.light-blue
{
    color: #1a99d6;
}

.white
{
	color: #FFFFFF;
}

.button--blue-animated:link,
.button--blue-animated:visited 
{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1vw;
    text-transform: uppercase;
    text-decoration: none;
    background-color: #1a99d6;
    padding: 0.5vw 1vw;
    border-radius: 64px;
    border: none;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.button--blue-animated::before
{
  	background: #fff;
  	content: "";
  	height: 155px;
  	opacity: 0;
 	position: absolute;
 	top: -50px;
 	transform: rotate(20deg);
 	width: 50px;
 	transition: all 3000ms cubic-bezier(0.19, 1, 0.22, 1);
}
.button--blue-animated::after 
{
	background: #fff;
	content: "";
	height: 20rem;
	opacity: 0;
	position: absolute;
	top: -50px;
	transform: rotate(20deg);
	transition: all 3000ms cubic-bezier(0.19, 1, 0.22, 1);
	width: 8rem;
}

.button--blue-animated::before 
{
 	left: -50%;
}

.button--blue-animated::after 
{
 	left: -100%;
}

.button--blue-animated:hover,
.button--blue-animated:active 
{
  	transform: translateY(-3px);
  	color: #fff;
  	box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.3);
}

.button--blue-animated:hover::before
{
	left: 120%;
	opacity: 0.5s;
}

.button--blue-animated:hover::after 
{
	left: 200%;
	opacity: 0.6;
}

.button--static-blue
{
    border-radius: 20px;
    background-color: #1a99d6;
    padding: 9px 14px 9px 14px;
    text-transform: uppercase;
    font-weight: 600;
    width: fit-content;
    margin-left: 4px;
    color: #FFFFFF;
    text-decoration: none;
    border: unset;
}

.alert__container
{
    width: 100%;
    display: flex;
    justify-content: center;
}

.alert__body
{
    background-color: #0b1a2d;
    position: fixed;
    z-index: 98;
    color: white;
    top: 0vw;
    padding: 2vw;
    font-family: 'Poppins';
    font-size: 1vw;
    margin-bottom: unset;
    opacity: 95%;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}

.alert__body-animation
{
    top: 9.5vw;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}

.alert--error
{
    background-color: #b14141;
}

.alert--success
{
    background-color: #41b154;
}

.background-image
{
  	/* Make fulll background images padding-top relative to the size of the image */
  	/* ( ImageHeight * ImageWidth ) / Width of Container = padding-top */
    z-index: -1;
    height: 0;
    background: no-repeat;
    padding-top: 42.96%;
}

.title-text
{
    color: #FFFFFF;
    font-size: 2vw;
    font-weight: 700;
    font-family: Poppins;
    position: absolute;
    top: 18vw;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    align-content: center;
    justify-content: center;
}

.title
{
    display: flex;
    flex-wrap: wrap;
    margin-top: 0;
    font-family: Poppins;
    font-weight: bold;
    font-size: 2vw;
    padding-top: 4vw;
}

.title-text--small
{
    line-height: 0.5vw;
    font-size: 1.3vw;
}