@font-face {
  font-family: "l39Title";
  src: url("FuturaBold.ttf");
}
@font-face {
  font-family: "l39Text";
  src: url("Georgia.ttf");
}
@font-face {
  font-family: "l39Text2";
  src: url("zin.otf");
}
body {
  background-color: #191917;
  margin: 0;
  padding: 0;
  max-width: 100vw;
  overflow-x: hidden;
}

.centerDiv {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5%;
}
@media (max-width: 767px) {
  .centerDiv {
    width: 90%;
  }
}

.centerFlex {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.centerFlex2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.centerFlexRow {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.centerText {
  text-align: center;
}

.contactImage {
  width: 80%;
  margin: auto;
  min-height: 500px;
  background-image: url("lloyd.jpg");
  background-size: cover;
}

.CTA {
  min-height: 20vh;
  background: radial-gradient(circle at top center, #595c5b, #393c3c, #252827, #1d201f, #131514);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#compName {
  font-family: "l39Title";
  letter-spacing: 0.2rem;
  font-size: 2rem;
  font-weight: bold;
  margin-left: 5%;
}

.dispn {
  display: none;
}

.fixed {
  position: fixed;
  top: 50px;
  left: 50px;
  z-index: 100;
}

.flexEnd {
  margin-top: auto;
}

.flexRow {
  display: flex;
}

.flexAlignCenter {
  align-items: center;
}

.flexCol {
  display: grid;
  grid-template-columns: auto;
  row-gap: 20%;
  width: 30px;
  margin-left: 10%;
}

.flexEnd2 {
  margin-top: 10%;
}

form {
  display: flex;
  flex-direction: column;
}

footer div {
  padding-left: 10%;
}

.grid {
  display: grid;
  grid-template-columns: 50% 50%;
  padding-left: 10%;
  padding-right: 10%;
  min-height: 500px;
}

.grid3 {
  max-width: 100vw;
  display: grid;
  grid-template-columns: auto auto auto;
  -moz-column-gap: 5%;
       column-gap: 5%;
  padding-left: 10%;
  padding-right: 10%;
}
@media (max-width: 767px) {
  .grid3 {
    grid-template-columns: auto;
    -moz-column-gap: 0%;
         column-gap: 0%;
  }
}

.grid3 div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1, h2, h3 {
  font-family: "l39Title";
}

.h100 {
  height: 100%;
}

.hero {
  width: 100vw;
  min-height: 100vh;
  max-width: 100vw;
}

#heroImg2 {
  background-image: url("heroBack2.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center left;
  min-width: 100%;
  min-height: 100vh;
}
@media (max-width: 767px) {
  #heroImg2 {
    background-position: center;
  }
}

#heroImg3 {
  background-image: url("contact3.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  min-width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  #heroImg3 {
    background-position: center;
  }
}

#heroImg4 {
  background-image: url("hosting1.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  min-width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  #heroImg4 {
    background-position: center;
  }
}

#heroTextBox {
  background: radial-gradient(circle at top left, #595c5b, #393c3c, #252827, #1d201f, #131514);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding-right: 15%;
  padding-left: 0%;
  margin-top: 0;
  transition: margin-top 2s ease-in-out;
}
@media (max-width: 767px) {
  #heroTextBox {
    padding-right: 5%;
    padding-left: 5%;
    margin-top: -100vh;
    background: radial-gradient(circle at top left, rgba(89, 92, 91, 0.6039215686), rgba(57, 60, 60, 0.6039215686), rgba(37, 40, 39, 0.6039215686), rgba(29, 32, 31, 0.6039215686), rgba(19, 21, 20, 0.6039215686));
  }
}

.heroL {
  margin-left: -25%;
}
@media (max-width: 767px) {
  .heroL {
    margin-left: 0%;
  }
}

.heroGrid {
  display: grid;
  grid-template-columns: 60% 40%;
  width: 100%;
}
@media (max-width: 767px) {
  .heroGrid {
    grid-template-columns: 100%;
  }
}

.heroBox {
  padding-left: 10%;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#heroContent {
  text-align: right;
}
@media (max-width: 767px) {
  #heroContent {
    text-align: center;
  }
}

.heroImg {
  position: absolute;
  top: 25px;
  right: 100px;
  height: auto;
  max-width: 40%;
}
@media (max-width: 767px) {
  .heroImg {
    right: 0px;
    top: 50px;
    height: auto;
    width: auto;
  }
}

.heroText {
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  text-align: left;
}
@media (max-width: 767px) {
  .heroText {
    text-align: center;
  }
}

.hostingImg {
  max-width: 100vw;
}

.hr {
  border: none;
  background-color: #c6994a;
  width: 100%;
  height: 2px;
  margin-left: -10%;
}
@media (max-width: 767px) {
  .hr {
    margin-left: 0%;
  }
}

.hr2 {
  border: none;
  background-color: #c6994a;
  width: 100%;
  height: 2px;
}

.icon-chevron-left {
  box-sizing: border-box;
  display: block;
  transform: scale(var(--ggs, 1));
  width: 22px;
  height: 22px;
  border: 2px solid transparent;
  border-radius: 100px;
  color: #fff;
}

.icon-chevron-left::after {
  content: "";
  display: block;
  box-sizing: border-box;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid;
  border-left: 2px solid;
  transform: rotate(45deg);
  left: 6px;
  top: 4px;
}

#image1 {
  background-image: url("websites.png");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 33vh;
}

#image2 {
  background-image: url("apps.png");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 33vh;
}

#image3 {
  background-image: url("electronics.png");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 33vh;
}

input {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #c6994a;
  color: #fff;
  max-width: 100%;
  margin: 2.5%;
  font-family: "l39Text";
  letter-spacing: 0.175rem;
}

input:focus {
  border: 2px solid #c6994a;
  outline: none;
  border-radius: 5px;
  padding: 1.5%;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
input:-internal-autofill-selected,
input:-internal-autofill-previewed {
  background-color: #191917 !important;
  -webkit-text-fill-color: #fff !important;
  -webkit-box-shadow: 0 0 0 30px #191917 inset !important;
}

::-moz-placeholder {
  color: #fff;
  font-family: "l39Text";
}

::placeholder {
  color: #fff;
  font-family: "l39Text";
}

input[type=radio] {
  width: 1.5em;
  height: 1.5em;
}

input[type=checkbox] {
  width: 1.5em;
  height: 1.5em;
}

label {
  color: #c6994a;
  font-family: "l39Title";
}

textarea {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #c6994a;
  color: #fff;
  max-width: 100%;
  margin: 2.5%;
  font-family: "l39Text";
  letter-spacing: 0.175rem;
}

textarea:focus {
  border: 2px solid #c6994a;
  outline: none;
  border-radius: 5px;
  padding: 1.5%;
}

.logoDiv {
  display: flex;
  align-items: center;
  padding-left: 5%;
}

.listU {
  color: #fff;
  font-family: "l39Title";
  list-style: none;
}

.listU li {
  margin: 2.5%;
  font-size: 1.2rem;
}

.slanted {
  background: linear-gradient(to right, #3b153b, #7b4344, #a3764e, #bc9358, #b9a066, #2db2a3, #20a59e);
  height: 80vh;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
  display: flex;
  justify-content: left;
  align-items: center;
}

.marginTop {
  margin-top: 5%;
}

.marginBtm {
  margin-bottom: 5%;
}

.menuBar {
  display: flex;
  width: 30%;
  justify-content: space-around;
}

.menuBar li {
  list-style: none;
  color: #fff;
}

.menuBar a {
  color: #fff;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 99;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.newGrid3 {
  display: grid;
  grid-template-columns: 33% 33% 33%;
  margin-bottom: 5%;
  margin-top: 0%;
  min-height: 100vh;
}
@media (max-width: 767px) {
  .newGrid3 {
    grid-template-columns: 100%;
  }
}

.notFound {
  width: 70vh;
  height: 70vh;
  background-image: url("./404Image.png");
  background-size: cover;
  background-position: center;
  margin: auto;
}

p {
  letter-spacing: 0.125rem;
  color: #fff;
  font-family: "l39Text";
  line-height: 1.5rem;
}

.padding {
  padding: 10%;
}

.padL {
  padding-left: 5%;
}

.padS {
  padding-left: 2.5%;
}

.padding2 {
  padding: 5%;
}

.padding3 {
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 5%;
}

.priceForm {
  width: 60%;
  margin: auto;
}

.priceGrid {
  display: grid;
  width: 100%;
  grid-template-columns: auto auto auto auto auto auto;
}

.priceGrid3 {
  display: grid;
  width: 100%;
  grid-template-columns: auto auto auto;
  row-gap: 2.5vh;
}

.pricingTop {
  margin-top: 20vh;
  width: 100%;
  text-align: center;
}

.pricingTop h1 {
  padding-left: 5vw;
}

.list li {
  list-style: none;
}

.spacer {
  min-height: 5vh;
}

.textLarge {
  font-size: 1.5rem;
}

.textLarger {
  font-size: 2.4rem;
}

.textCenter {
  text-align: center;
}

.textRight {
  text-align: right;
}

.toast {
  max-height: 0%;
  position: fixed;
  z-index: 102;
  bottom: 0;
  width: 100%;
  height: -moz-max-content;
  height: max-content;
  background-color: #191917;
  transition: 0.3s ease-in-out;
  overflow: hidden;
}

.whiteButton {
  background-color: #c6994a;
  color: #000;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  padding: 2.5% 10%;
  border-radius: 15px;
  font-family: "l39Title";
  font-weight: bold;
  font-size: 1.2rem;
  text-transform: uppercase;
  cursor: pointer;
}

.whiteText {
  color: #fff;
}

.yellowText {
  color: #c6994a;
  text-transform: uppercase;
}/*# sourceMappingURL=l39.css.map */