@font-face {
  font-family: "Arista_Pro_Regular";
  src: local("Arista_Pro_Regular"),
    url("/assets/font/Arista-Pro-Regular.ttf") format("truetype");
  font-weight: regular;
}

/* headers, parahgraphs */
h1 {
  font-size: 88px;
  line-height: 106px;
  color: #fff;
  font-family: "Arista_Pro_Regular";
}
h2 {
  font-size: 80px;
  line-height: 96px;
  color: #000;
  font-family: "Arista_Pro_Regular";
}
h3 {
  font-size: 64px;
  line-height: 77px;
  color: #fff;
  font-family: "Arista_Pro_Regular";
}
h4 {
  font-size: 32px;
  line-height: 38px;
  color: #fff;
  font-family: Montserrat;
}
p {
  font-size: 24px;
  line-height: 29px;
  color: #fff;
  font-family: Montserrat;
}

ul, li{
  font-family: Montserrat;
}

a {
  font-family: Montserrat;
}

.input-long {
  grid-column: span 2;
}

/* dot */
.dot {
  color: #7af292;
  font-family: "Arista_Pro_Regular";
}

/* button */
.button {
  font-family: Montserrat;
  background-color: #326df7;
  border: 1px solid #326df7;
  padding: 15px 60px;
  border-radius: 30px;
  color: #fff;
  transition-duration: 0.3s;
}
.button:hover {
  background-color: #fff;
  border:p 1x solid #fff;
  color: #326df7;
}
.button-transparent {
  background-color: transparent;
  border: 1px solid #fff;
  padding: 15px 32px;
}
.button-transparent:hover {
  padding: 15px 32px;
}
.button-with-border {
  background-color: transparent;
  color: #326df7;
}
.small-button {
  color: #fff;
  background-color: #326df7;
  border: none;
  border-radius: 25px;
  padding: 6px 11px;
  margin-top: 20px;
}

.round-button {
  color: #fff;
  background-color: #326df7;
  border: none;
  border-radius: 25px;
  margin-top: 20px;
  width: 41px;
  height: 41px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-blue-hover:hover{
  background-color: #326df7;
  color: #fff;
  border: 1px solid #326df7;
}

.btn-green-hover:hover{
  background-color: #7af292;
  color: #fff;
  border: 1px solid #7af292;
}

/* Wrapper */
.wrapper {
  padding-top: 40px;
}
.wrapper-with-border {
  max-width: 1480px;
  margin: auto;
  background-color: #f8f9fb;
  border: none;
  border-radius: 25px;
  padding: 40px 55px;
}

/* Input */
.input {
  border-radius: 25px;
  border: 1px solid #707070;
  padding: 20px;
  font-size: 14px;
  line-height: 17px;
  color: #000;
  font-family: Montserrat;
  min-height: 55px;
  width: 100%;
}
select.input {
  background: url("data:image/svg+xml,<svg height='10px' width='10px' viewBox='0 0 16 16' fill='%23000000' xmlns='http://www.w3.org/2000/svg'><path d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/></svg>")
    no-repeat;
  background-position: calc(100% - 0.75rem) center !important;
  -moz-appearance: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}
.input:focus-visible {
  outline: none;
}
.svg-icon {
  width: 64px;
  height: 64px;
}

/* colors */
.wht {
  color: #fff;
}
.grn {
  color: #7af292;
}
.grey {
  color: #707070;
}
.blue {
  color: #326df7 !important;
}
.dark, .dark h3{
  color: #000;
}
.dark p{
  color: #707070;
}
/* Text  */
.uppercase {
  text-transform: uppercase;
}

/* Position */
.center {
  text-align: center;
}

@media (max-width: 1510px) {
  .wrapper-with-border {
    margin: auto 20px;
  }
}

@media (max-width: 1310px) {
  /* headers */
  h1 {
    font-size: 55px;
    line-height: 66px;
  }
  /* .showcase-content h1{
    font-size: 2em;
    line-height: initial;
  } */
  .showcase-content p {
    font-size: 16px;
    line-height: initial;
  }
}

@media (max-width: 500px) {
  /* headers */
  h2 {
    font-size: 40px;
    line-height: 48px;
  }
  h3 {
    font-size: 30px;
    line-height: 36px;
  }
  .wrapper-with-border {
    padding: 40px 20px;
  }
  .button:hover {
    padding: 15px 40px;
  }
}

@media (max-width: 400px) {
  h1 {
    font-size: 45px;
    line-height: 42px;
  }
  h3 {
    /* font-size: 25px; */
    line-height: 30px;
  }
  .button {
    width: 100%;
    padding: 15px 40px;
  }
}
