@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@1,400;1,500&display=swap");
@import "./header.css";
@import "./player.css";
@import "./productSection.css";
@import "./features.css";
@import "./templates.css";
@import "./packages.css";
@import "./partners.css";
@import "./footer.css";
@import "./packageModal.css";
@import "./partnerModal.css";
@import "./modalTable.css";
@import "./auth.css";

*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  min-width: 320px;
}

html,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0;
  margin-top: 0;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  overflow-wrap: break-word;
  margin: 0;
  color: #eeeeee;
  line-height: 26px;
}

body,
.wrapper {
  background: #0b1d26 !important;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

p,
ul {
  font-weight: 300;
}

.wrapper .sectionWrapper {
  width: 92%;
}
.wrapper .sectionMarginBottom {
  margin-bottom: 70px;
}
button,
.clickable {
  cursor: pointer;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}
.customButton {
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  color: #eeeeee;
  padding: 16px 15px;
  text-align: center;
  transition: all 0.2s;
  border-radius: 30px;
  width: 180px;
}

.customButton:hover {
  transform: scale(1.03);
}

.customButton.primary {
  border: 1px solid #ffffff;
  background: transparent;
}

.customButton.secondary {
  border: 1px solid rgba(32, 145, 249, 1);
  background: rgba(32, 145, 249, 1);
}
.customButton.tertiary {
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}

.transparentButton {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  height: 100%;
}

.titleContainer {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}

.titleContainer .line {
  height: 2px;
  width: 25%;
  max-width: 65px;
  margin-right: 25px;
  background: var(--color-primary);
}

.titleContainer .title {
  text-transform: uppercase;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 3px;
  width: 75%;
}

@media (max-width: 991.98px) {
  .wrapper .sectionMarginBottom {
    margin-bottom: 50px;
  }
}
@media (max-width: 575.98px) {
  .titleContainer .line {
    max-width: 50px;
  }
}
