@import url('https://fonts.googleapis.com/css2?family=Prompt: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=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');
/*@import url(custom.css);*/

:root{
  --c-black: #344767;
  --c-white:  #FFFFFF;
  --c-light: #F8F9FD;
  --c-red: #F3797E;

  --c-primary: #e91e63 ;
  --c-secondary:#7b809a;
  --c-tertiary:#7b809a;

  --bg-white: rgb(255 255 255 / 20%);
  --font-h2: 2.5rem;
  --font-h3: 2rem;
  --font-h4: 1.2rem;
  --font-h5: 1rem;
  --font-h6: 0.8rem;
  --font-p: 1rem;
  --border: rgba(24,107,232,.4);
  --border-white: rgba(250,250,250,0.5);
  --border-radius: 23px;
  --border-color: #eaeaea;
  --shadow: 0px 0px 15px rgba(0,0,0,0.15);
}

.c-primary{
  color: #e91e63;
}
.c-secondary{
  color: #7b809a;
}
.c-tertiary{
  color: #7b809a;
}

.c-bg-primary{
  background-color: var(--c-primary);
}

.c-bg-secondary{
  background-color: var(--c-secondary);
}


body {
  margin: 0;
  font-family: 'Prompt', sans-serif;
  font-size: var(--font-p);
  color: var(--c-black);
  font-weight: 300;
  line-height: 1.2;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

h3, .h3{
  font-size: var(--font-h3);
}

h4, .h4{
  font-size: var(--font-h4);
}

h5, .h5{
  font-size: var(--font-h5);
}

h6, .h6{
  font-size: var(--font-h6);
}

p{
  font-size: var(--font-p);
}

a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  text-decoration: none;
}


.btn {
  color: #222;
  text-align:center;
  padding:10px 35px;
  border-radius: 0px;
  text-transform:uppercase;
  font-size: var(--font-h6);
  font-weight:700;
  border:2px solid transparent;
  border-radius: var(--border-radius);
}
.btn:hover, .btn:focus {
  color:var(--c-white);
  border-color:var(--c-white);
}
.btn:focus {
  box-shadow:none;
  outline:none;
}

.btn-primary {
  background: var(--c-primary);
  border: 1px solid var(--c-primary);
  color: var(--c-white);
  position: relative;
  padding-bottom: 7px;
}

.btn-primary:hover {
  background: var(--c-primary);
  border: 1px solid var(--c-primary);
  box-shadow: 0 14px 26px -12px rgba(233, 30, 99, 0.4), 0 4px 23px 0 rgba(233, 30, 99, 0.15), 0 8px 10px -5px rgba(233, 30, 99, 0.2);
}

.btn-submit{
  width:100%;
  border: 1px solid var(--border);
  background-color: var(--c-white);
}

.btn-submit:hover {
  border: 1px solid var(--c-white);
  background-color: transparent;
  color: var(--c-white);
}





