@font-face {
  font-family: "Manrope";
  src: url("../font/Manrope.ttf"), format("truetype");
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
  text-decoration: none;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  font-synthesis: none !important;
  -webkit-text-size-adjust: none;
  -webkit-tap-highlight-color: #ccc;
}

:root {
  --base-color: #000000;
  --primary-color: #5C666F;
  --secondary-color: #838EA3;
  --totalwhite-color: #FFFFFF;
  --lightgray-color: #FAFAFB;
  --silver-color: #EEEDED;
  --accent-color: linear-gradient(90deg, #A4A8EA 0%, #79DDE4 50%, #C0C6F2 100%);
  --green-color: #14AE5C;
}

button svg path {
  stroke: var(--secondary-color);
}
button:hover svg path, button:active svg path {
  stroke: var(--primary-color);
}

section {
  position: relative;
  padding: 70px 0;
  background-color: var(--totalwhite-color);
  z-index: 2;
}

.content {
  width: calc(100% - 100px);
  max-width: 1340px;
  margin: auto;
  height: -moz-fit-content !important;
  height: fit-content !important;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

h1 {
  font-size: clamp(38px, 3vw, 46px);
  font-weight: 700;
  line-height: 54px;
  color: var(--base-color);
}

h2 {
  font-weight: 500;
  font-size: 40px;
  line-height: 54px;
  color: var(--base-color);
}

h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  color: var(--secondary-color);
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: var(--base-color);
}
p span {
  font-weight: 700;
}

.btn {
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  border: none;
  outline: none;
  background-color: var(--secondary-color);
  color: var(--totalwhite-color);
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
}

.btn:active {
  background-color: var(--primary-color);
}

.btnBorder {
  background: var(--accent-color);
  padding-bottom: 5px;
  border-radius: 10px;
  min-width: 284px;
}
.btnBorder a {
  background-color: var(--lightgray-color);
  border: none;
  outline: none;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 50px;
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  align-items: center;
}
.btnBorder a span {
  color: var(--base-color);
  font-weight: 700;
}

.subBtn {
  width: 80px;
  height: 80px;
  background-color: var(--green-color);
  padding: 20px;
  border-radius: 50%;
  position: fixed;
  top: auto;
  bottom: 50px;
  left: -160px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--totalwhite-color);
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  transition-duration: 0.5s;
  z-index: 999;
}
.subBtn.show {
  left: 50px;
}

@media (max-width: 800px) {
  section {
    padding: 30px 0;
  }
  .content {
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    margin: auto;
    gap: 30px;
  }
  h1 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
  }
  h2 {
    font-weight: 500;
    font-size: 28px;
    line-height: 34px;
  }
  h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
  }
  .btn {
    width: 100%;
    padding: 20px 0;
    text-align: center;
  }
  .subBtn {
    width: 80px;
    height: 80px;
    padding: 10px;
    bottom: 20px;
    left: -100px;
  }
  .subBtn.show {
    left: 20px;
  }
}/*# sourceMappingURL=style.css.map */