/*!***************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/scss/styles.scss ***!
  \***************************************************************************************************************/
@font-face {
  font-family: "Manrope";
  src: url(../js/../fonts/Manrope-Light.ttf) format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url(../js/../fonts/Manrope-Regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url(../js/../fonts/Manrope-Medium.ttf) format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url(../js/../fonts/Manrope-Bold.ttf) format("truetype");
  font-weight: 700;
  font-style: normal;
}
:root {
  --color1: var(--wp--preset--color--color-1);
  --color2: var(--wp--preset--color--color-2);
  --color3: var(--wp--preset--color--color-3);
  --color4: var(--wp--preset--color--color-4);
  --color5: var(--wp--preset--color--color-5);
  --white: #fff;
  --black: #333;
  --gray: #666;
  --lightgray: #f0f0f0;
  --radius: 2px;
  --sm: 576px;
  --md: 768px;
  --lg: 992px;
  --xl: 1200px;
  --xxl: 1400px;
}

html {
  font-size: 16px;
  font-family: "Manrope", sans-serif;
}

body {
  font-size: 1rem;
}

* {
  box-sizing: border-box;
}

main,
section {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 992px) {
  main,
  section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

h1, h2, h3, h4 {
  font-weight: 400;
}

h1 {
  font-size: 2.8rem;
}
@media (min-width: 992px) {
  h1 {
    font-size: 4rem;
  }
}

h2 {
  font-size: 2.4rem;
}
@media (min-width: 992px) {
  h2 {
    font-size: 3.2rem;
  }
}

h3 {
  font-size: 1.9rem;
}
@media (min-width: 992px) {
  h3 {
    font-size: 2.4rem;
  }
}

@media (max-width: 992px) {
  .wp-block-group-is-layout-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
}

.btn {
  cursor: pointer;
  background-color: transparent;
  border: 0;
}
.btn--default {
  font-size: 1.25rem;
  background-color: var(--color1);
  border-radius: var(--radius);
  padding: 10px 30px;
}

.form__wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.form__input {
  color: var(--color5);
  font-size: 1.25rem;
  font-family: "Manrope", sans-serif;
  border: 0;
  border-radius: var(--radius);
  padding: 10px 20px;
  max-width: 320px;
  width: 100%;
}
.form__input::placeholder {
  color: var(--color5);
}
