* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

@font-face {
  font-family: poppins;
  src: url(../font/Poppins/Poppins-Regular.ttf);
}
@font-face {
  font-family: "Outfit", Sans-serif;
  src: url(../font/Outfit/Outfit-VariableFont_wght.ttf);
}
p {
  font-size: 16px;
  line-height: 1.5;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
}

h1 {
  font-size: 50px;
  font-weight: 700;
  font-family: "Outfit", Sans-serif;
}
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
}

h3 {
  font-size: 44px;
  font-family: "Outfit", Sans-serif;
}
@media (max-width: 500px) {
  h3 {
    font-size: 28px;
  }
}

h4 {
  font-size: 32px;
  font-family: "Outfit", Sans-serif;
}
@media (max-width: 500px) {
  h4 {
    font-size: 24px;
  }
}

body {
  font-family: poppins;
}

.section-padding {
  padding: 100px 0px;
}
@media (max-width: 768px) {
  .section-padding {
    padding: 40px 0px;
  }
}

.primary-btn a {
  padding: 12px 30px;
  background: #24aadf;
  color: #fff;
  display: inline-block;
  border-radius: 4px;
  font-family: "Outfit", Sans-serif;
}

img {
  width: 100%;
  height: auto;
}

.section-tagline {
  position: relative;
  font-size: 18px;
  text-transform: uppercase;
  margin-left: 30px;
}
.section-tagline::before {
  position: absolute;
  content: "";
  top: 45%;
  width: 25px;
  height: 4px;
  background-color: red;
  left: -30px;
}/*# sourceMappingURL=global.css.map */