* {
  margin: 0;
  padding: 0;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  text-rendering: optimizeLegibility;
}

html {
  min-height: 100%;
  position: relative;
}

body {
  margin: 0px;
  padding: 0px;
  -webkit-font-smoothing: antialiased;
  word-wrap: break-word;
  color: #fff;
  font-weight: 400;
  font-family: "Montserrat";
  font-size: 14px;
  background: #000;
  line-height: 1.5;
}

.fullSection {
  min-height: 100vh;
  background: url(../images/home_bg.jpg) center center no-repeat;
    background-size: auto;
  background-size: cover;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.flex-wrap {
  flex-wrap: wrap;
}

.bodyWrap {
  min-height: 100vh;
}

.left {
  flex: 0 0 50%;
  max-width: 50%;
  height: 100vh;
}

.leftInner {
  max-width: 600px;
  width: 100%;
  padding: 0 20px;
}

.right {
  flex: 0 0 50%;
  max-width: 50%;
  height: 100vh;
  background-color: #2a2d42;
  border-top-left-radius: 100%;
}

h1 {
  font-size: 4rem;
  color: #00b5c6;
}

h1 span {
  font-size: 1.5rem;
  display: block;
  color: #fac905;
}

h2 {
  font-size: 1.7rem;
}

h2 span {
  display: inline-block;
  color: #2db0e4;
}

.leftInner ul {
  list-style: none;
  margin-top: 30px;
}

.leftInner ul a {
  display: block;
  background-color: #fac905;
  color: #000;
  padding: 12px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
}

.leftInner li:not(:last-child) {
  margin-right: 12px;
}

.leftInner img,
.rightInner img {
  max-width: 100%;
  display: inline-block;
}

.rightInner img {
  border-radius: 30%;
}

@media screen and (max-width: 768px) {
  .leftInner {
    padding: 60px 30px 30px 30px;
  }

  .left,
  .right {
    flex: 0 0 100%;
    max-width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h1 span {
    font-size: 1rem;
  }

  h2 {
    font-size: 1rem;
  }

  .leftInner ul a {
    padding: 10px 20px;
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .leftInner ul a {
    font-size: 0.7rem;
  }
}