@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@1,400;1,500&display=swap");
@import "./header.css";
@import "./solutions.css";
@import "./program.css";
@import "./statistics.css";
@import "./speakers.css";
@import "./subscribe.css";
@import "./partners.css";
@import "./modalTable.css";
@import "./footer.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;
}

body,
#content > div > .wrapper {
  background: #0b1d26;
}

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

p,
ul {
  font-weight: 300;
}

button,
.clickable {
  cursor: pointer;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}
/* Buttons start */
.customButton {
  font-weight: 700;
  line-height: 19px;
  text-align: center;
  transition: all 0.2s;
  border-radius: 30px;
}

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

.customButton.primary {
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
  color: #eeeeee;
}

.customButton.secondary {
  background: transparent;
}
.customButton.black {
  border: 1px solid black;
  color: black;
}
.customButton.white {
  border: 1px solid white;
  color: white;
}

.customButton.sm {
  font-size: 14px;
  padding: 10px 15px;
  width: 146px;
}

.customButton.md {
  font-size: 18px;
  padding: 14px 15px;
  width: 220px;
}

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

/*Title start*/
.titleContainer .title {
  font-size: 38px;
  margin-bottom: 8px;
}

.subTitle {
  font-size: 22px;
  line-height: 52px;
  color: var(--color-secondary-300);
  font-weight: 500;
}
/*Title end*/

.sectionPadding {
  padding: 90px 0;
}

.modalBody p,
.modalBody h2 {
  margin-bottom: 20px;
}

@media (max-width: 767.98px) {
  .sectionPadding {
    padding: 52px 0;
  }
  .titleContainer .title {
    font-size: 28px;
  }

  .subTitle {
    font-size: 22px;
    line-height: 32px;
  }
}
