@import url("https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Karla:wght@300;400;500;600;700&family=Spectral:wght@400;500;600;700;800&display=swap");

* {
  box-sizing: border-box;
}
html, body {
  width: 100%;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  /* background-image: url('../image/bg/bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; */
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Spectral", serif;
  font-weight: 700;
  font-style: normal;
}

p,
a,
li,
button {
  font-family: "Karla", sans-serif;
  font-weight: 400;
}

/* button section start here */
.special-button {
  background-color: transparent;
  color: black;
  border: 1px solid black;
  width: 10em;
  height: 3em;
  padding: 12px auto;
  border-radius: 10px;
  transition: all 0.6s ease;
}

.special-button:hover {
  background-color: black;
  color: white;
  cursor: pointer;
}

.special-button svg {
  width: 1.6em;
  margin: -0.2em 0.8em 1em;
  position: absolute;
  display: flex;
  transition: all 0.6s ease;
}

.special-button:hover svg {
  transform: translateX(5px);
}

.text {
  margin: 0 1.5em;
}
/* button section end here */