﻿@font-face {
  font-family: "Poppins";
  src: url("/Fonts/Poppins-Light.woff2") format("woff2");
  font-weight: 300;
}
@font-face {
  font-family: "Poppins";
  src: url("/Fonts/Poppins-Medium.woff2") format("woff2");
  font-weight: 500;
}
@font-face {
  font-family: "Poppins";
  src: url("/Fonts/Poppins-ExtraBold.woff2") format("woff2");
  font-weight: 800;
}
html, body {
  width: 100%;
  height: 100%;
  position: relative;
  font-family: Poppins, Arial, Helvetica, sans-serif;
  font-weight: 500;
}

body {
  background-color: #1b0673;
  color: #fff;
}

.desktop-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/Images/DesktopBG.png") center center no-repeat;
  background-position: center right;
  background-size: cover;
  background-attachment: fixed;
  z-index: -100;
}

.content-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.content-wrapper .heading {
  margin-bottom: 40px;
}
.content-wrapper .heading h1 {
  font-weight: 800;
  font-size: 82px;
}
.content-wrapper .content p {
  font-size: 14px;
  text-align: center;
  font-weight: 300;
  line-height: 22px;
}
.content-wrapper .logos-wrapper {
  width: 100%;
}
.content-wrapper .logos-wrapper img {
  width: 100%;
}
.content-wrapper .button-wrapper {
  margin-top: 40px;
  text-align: center;
}
.content-wrapper .button-wrapper a {
  display: inline-block;
  width: 200px;
  background-color: #05edcf;
  text-decoration: none;
  color: #1b0673;
  font-size: 14px;
  padding: 10px 0;
  border: 1px #1b0673 solid;
  border-radius: 30px;
  margin-right: 20px;
}
.content-wrapper .button-wrapper a:last-of-type {
  margin-right: 0;
}
.content-wrapper .button-wrapper a i {
  font-size: 14px;
}
.content-wrapper .button-wrapper a:hover {
  border-color: #05edcf;
  background-color: #1b0673;
  color: #05edcf;
}

.light-green {
  color: #05edcf;
}

@media screen and (max-width: 768px) {
  .desktop-bg {
    display: none;
  }
  .content-wrapper .heading {
    padding-top: 60px;
    text-align: center;
    margin-bottom: 26px;
  }
  .content-wrapper .heading h1 {
    line-height: 66px;
  }
  .content-wrapper .down-arrow {
    text-align: center;
    font-size: 32px;
  }
  .content-wrapper .button-wrapper {
    padding-bottom: 20px;
  }
  .content-wrapper .button-wrapper a {
    margin-right: 0;
    margin-top: 15px;
  }
  .content-wrapper .button-wrapper a:first-of-type {
    margin-top: 0;
  }
}
