@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins&family=Ubuntu&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Ubuntu", sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: #010E27;
  background-size: cover;
  position: relative;
}

.mxwidth {
  max-width: 1300px;
  padding: 20px;
  width: 100%;
  overflow: hidden;
}

a {
  text-decoration: none;
}

.site-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.site-wrapper .max-bg {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.site-wrapper .max-bg .section-heading {
  font-size: 40px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  margin-top: 40px;
  text-align: center;
}

.site-preloader {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #FCFCFE;
  overflow: hidden;
  z-index: 10000000000000000000000000000000000000000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-preloader img {
  width: 300px;
}