@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@300;600;800&display=swap");

:root {
  --main-color: #ff5c01;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img {
  max-width: 100%;
}
a {
  text-decoration: none;
  font-weight: 600;
}

header .btn {
  background: var(--main-color);
  border-radius: 50px;
  color: white;
  padding: 5px 15px 5px 5px;
  font-size: 14px;
  transition: 0.3s ease-in-out;
}

header .btn:hover {
  background: #e95401;
}

.hero {
  background: center/cover url("../images/bg.png");
  padding: 130px 0 50px 0;
}

.logo {
  width: 200px;
}

body {
  position: relative;
  overflow-x: hidden;
  font-family: "Mulish", sans-serif;
}

footer {
  min-height: 30vh;
}

.hero h1 {
  font-size: clamp(35px, 4vw, 50px);
  position: relative;
}
.hero .ls-expand {
  letter-spacing: 3px;
}
.hero h1:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 10%;
  height: 2px;
  background: var(--main-color);
}
.new09 {
  padding-bottom: 20px;
  font-size: 25px;
  font-weight: 900;
  color: #c4d0fc;
}
.card h2 {
  color: #383131;
  font-weight: SemiBold;
}
.card p {
  color: #8d929d;
}
.card svg {
  right: 20px;
  top: 20px;
}
.card a {
  background: var(--main-color);
  color: white;
  padding: 20px 40px;
  border-radius: 100px;
  transition: 0.3s ease-in-out;
  font-size:20px
}

.card a:hover {
  background: #e95401;
}

footer {
  color: #8d929d;
}

@media (max-width: 767px) {
  header .btn {
    background: white;
    padding: 0px;
  }
  header .btn path {
    fill: white;
  }
  header .btn path.circle {
    fill: var(--main-color);
  }

  .card-alt {
    background: var(--main-color);
  }
}
