html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Source+Serif+Pro:wght@200;300;400;700&display=swap");

:root {
  --body: rgb(238, 224, 211);
  --background: #fefaf8;
  --aqua: #90d9e9;
  --forest: #479c5c;
  --first: #eade80;
  --second: #d2b936;
  --background-1: #f8f8f8;
  --text: #13254e;
  --gray: #a0a0a0;
  --light-gray: #d1d1d1;
  --white: #ffffff;
  --black: black;
}

/* 
font-family: "Playfair Display", serif;
font-family: "Source Serif Pro", serif; 
*/

body {
  background: var(--background-1);
  font-family: "Roboto";
  color: var(--text);
}

.main_wrapper {
  display: block;
  max-width: 1280px;
  margin: auto;
  overflow: hidden;
  border-left: 1px solid #f1f1f1;
  border-right: 1px solid #f1f1f1;
}
/* .main_wrapper::before {
  content: "123";
  width: 100%;
  height: 100%;
  opacity: 0.6;
  background: red;
  background-image: url(/v2//images/back.webp); 
} */

section {
  display: flex;
  padding-top: 3rem;
  padding-bottom: 3rem;
  justify-content: space-between;
  overflow: hidden;
}

h1 {
  font-size: 2rem;
  line-height: 2rem;
}

.footer {
  text-align: center;
  padding-bottom: 2rem;
  padding-top: 2rem;
}

.footer span {
  margin-left: 1rem;
  margin-right: 1rem;
}

input:focus:required:invalid {
  border-color: #fa541c;
  color: #fa541c;
}

input:focus:required:invalid + span::after {
  content: "ter";
}

input:required:valid {
  border-color: #13254e;
  color: #13254e;
}

form:invalid button {
  opacity: 0.5;
  pointer-events: none;
}

a {
  text-decoration: none;
  color: inherit;
}

@media only screen and (max-width: 768px) {
  section {
    flex-direction: column;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
}
