
@import url(https://fonts.googleapis.com/css?family=Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic);
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Rubik&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Patrick+Hand&display=swap');


body{
    margin: 0px;
    padding: 0px;
    height: 100vh;
    width: 100vw;
    justify-content: center;
    overflow-x: hidden;
    background-image: url(../Image/gradient.jpg);
    background-size:cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position:top;
   }


.containering{
    width: 90%;
    height: auto;
    margin: 0 auto 0;
    
}
.topbar{
    position: fixed;
    top:0;
    background-color: rgb(6, 12, 59);
    width: 100vw;
    z-index: 10000;
}


.brand{
    margin: 30px 50px;
}




.nav-item:hover{
    border-bottom: 2px solid rgba(188, 248, 243, 0.7);
}



img{
    padding:0;
    object-fit: cover;


}
.svg{
    width: 50vw;
    height: 400px;
    margin: 0;
    z-index: 1;
    
}

.info{
    margin: 100px 20px;
   height: auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    
}

.box{
   margin: 50px 50%;
   
}

.box span {
	width: 20px;
	height: 20px;
  display: block;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(45deg);
	margin: -10px;
	animation: animate 2s infinite;
}

.box span:nth-child(2) {
	animation-delay: -0.2s;
}

.box span:nth-child(3) {
	animation-delay: -0.4s;
}

@keyframes animate {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 1;
		transform: rotate(45deg) translate(10px, 10px);
	}
	100% {
		opacity: 0;
	}
}
.dream{
    
    height: auto;
    width: 100%;
    margin:40px 20px;
}

.dream-txt{
    font-size: 4rem;
    color:rgba(128, 225, 255, 0.7);
    font-family: Lato;
}
.desc{
    width: 80%;
    height:auto;
    margin: -10 0;
}
.desc-txt{
    font-size: 20px;
    font-weight: 200;
    padding: 0 30px;
    color:rgba(128, 225, 255, 0.7);
}


.action{
    width: 60%;
    height: 100px;
    
    margin: 10px auto;
    text-align: center;
}
.action-txt{
    font-size: 25px;
    font-weight: 300;
    color:thistle;
    font-family: 'Patrick Hand', cursive;
}



