@font-face {
  font-family: Montserrat-Regular;
  src: url('../fonts/Montserrat/Montserrat-Regular.ttf');
}

@font-face {
  font-family: Montserrat-Light;
  src: url('../fonts/Montserrat/Montserrat-Light.ttf');
}

@font-face {
  font-family: Montserrat-Black;
  src: url('../fonts/Montserrat/Montserrat-Black.ttf');
}

@font-face {
  font-family: Montserrat-Bold;
  src: url('../fonts/Montserrat/Montserrat-Bold.ttf');
}

.container {
  max-width: 1200px;
}


*,
*:before,
*:after {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body,
html {
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: #666666;

  height: 100%;
  background-color: #000;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  padding-right: 0px !important;
}

.l1-txt1 {
  font-family: Montserrat-Black;
  font-size: 50px;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.08);
}

.l1-txt2 {
  font-family: Montserrat-Light;
  font-size: 30px;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
}

.l1-txt3 {
  font-family: Montserrat-Light;
  font-size: 16px;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
}

.astroicon {
  height: 250px;
}

@media (width <=600px) {
  .l1-txt1 {
    font-size: 40px;
  }

  .l1-txt2 {
    font-size: 22px;
  }

  .l1-txt3 {
    font-size: 14px;
  }

  .astroicon {
    height: 150px;
  }
}

a:link {
  color: white;
}

/* visited link */
a:visited {
  color: white;
}

/* mouse over link */
a:hover {
  color: white;
  text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.35);
  text-decoration: underline;
}

/* selected link */
a:active {
  color: white;
}


.size1 {
  width: 100%;
  min-height: 100vh;
}

.bg-g1 {
  background: #7918f2;
  background: -webkit-linear-gradient(-45deg, rgba(33, 247, 212, 1) 0%, rgba(34, 187, 194, 1) 50%, rgba(199, 140, 58, 1) 100%);
  background: -o-linear-gradient(-45deg, rgba(33, 247, 212, 1) 0%, rgba(34, 187, 194, 1) 50%, rgba(199, 140, 58, 1) 100%);
  background: -moz-linear-gradient(-45deg, rgba(33, 247, 212, 1) 0%, rgba(34, 187, 194, 1) 50%, rgba(199, 140, 58, 1) 100%);
  background: linear-gradient(-45deg, rgba(33, 247, 212, 1) 0%, rgba(34, 187, 194, 1) 50%, rgba(199, 140, 58, 1) 100%);
}

.body-resp {
  height: 100%;
  position: fixed;
}

.footer {
  position: fixed;
  bottom: calc((7.5px));
}

@media (width <=600px) {
  .body-resp {
    padding-bottom: 80px;
  }
}

.p-b-60 {
  padding-bottom: 25px;
}

.p-b-10 {
  padding-bottom: 10px;
}

.p-b-15 {
  padding-bottom: 15px;
}

.p-l-15 {
  padding-left: 15px;
}

.p-r-15 {
  padding-right: 15px;
}

.p-t-50 {
  padding-top: 25px;
}

.p-t-55 {
  padding-top: 55px;
}

.m-b-35 {
  margin-bottom: 35px;
}

.m-b-50 {
  margin-bottom: 50px;
}

.m-b-60 {
  margin-bottom: 60px;
}

.flex-w,
.flex-col-c,
.flex-col-c-sb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.txt-center {
  text-align: center;
}

.flex-w {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-col-c-sb {
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}

.flex-col-c {
  -ms-align-items: center;
  align-items: center;
}


.flex-col-c,
.flex-col-c-sb,
.flex-col {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}