@import url('https://fonts.googleapis.com/css2?family=Hedvig+Letters+Sans&family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');
body {
    margin: 0;
    padding: 0;
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    color: #282f3e;
    background-color: #ffffff;
    font-family: 'Inter Tight', sans-serif;
}

.under-construction{
   height: 100vh;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
}
.under-construction h1{
    font-size: 60px;
    color: #1a8c44;
    line-height: 70px;
    font-weight: 800;
    text-transform: uppercase;
}
.under-construction p{
    width: 60%;
    margin: 0 auto 25px;
}
.under-construction p a{  
    color: #1a8c44; 
    text-decoration: none;
}
.under-construction p a:hover{
    text-decoration: underline;
}
/***/
.logo {
 position: relative;
  margin: 0 auto; 
  width: 240px; 
}
.helicopter{
  position:absolute;
  top:-8px;
  margin:0px;
  padding:0px;
  width:100px;
  left: 39px;
  transform: translate(-50%, -5%);
  animation:helicopter-move 4s infinite alternate;
}
.top-wing {
  height: 15px;
  width: 17px;
  margin: 0px;
  padding: 0px;
  position: relative;
  left: 161px;
  top: -8px;
  transform: rotate3d(0, 1, 0, 0deg);
  animation: top-wing 0.5s linear 0.5s infinite;
  background: url(../images/center-point.png) no-repeat center center;
  background-size: contain;
}
.top-wing:after{
   content:"";
  height:7px;
  width:87px;
  margin:0px;
  padding:0px;
  position:absolute;
left: 12px;
  top: 4px;
  border-radius:20px;
  background: url(../images/right-wing.png) no-repeat center center;
  background-size: contain;
}
.top-wing:before{
   content:"";
  height:7px;
  width:87px;
  margin:0px;
  padding:0px;
  position:absolute;
  right: 14px;
  top: 5px;
  border-radius:20px;
  background: url(../images/left-wing.png) no-repeat center center;
  background-size: contain;
}
@keyframes helicopter-move{
	0%{
		bottom:5%;
		transform: translate(-0%, -0%);
	}
	100%{
		bottom:50%;
		transform: translate(-0%, -0%);
	}
}
@keyframes top-wing{
	0%{
	transform:rotate3d(0, 1, 0, 0deg);
	}
	100%{
	transform:rotate3d(0, 1, 0, 360deg);	
	}
	
}
@media screen and (max-width: 767px) {
    .under-construction h1{
        font-size: 40px;
        line-height: 50px;
    }
    .under-construction p{
        width: 80%;
    }
    body {
    font-size: 20px;
    line-height: 26px;
}
.under-construction{
  padding: 0 4%;
}
}
@media screen and (max-width: 575px) {
    .under-construction h1{
        font-size: 34px;
        line-height: 40px;
    }
    .under-construction p{
        width: 100%;
    }
}