:root {
  --primary1: #004494;
  --primary2: #d31c3f;
  --dark1: #000;
  --light1: #fff;
  --grey1: #555;
}

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.5;
}

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;
}

mark {
  all: unset;
}

button {
  all: unset;
  cursor: pointer;
  box-sizing: border-box;
}

input,
textarea,
select {
  all: unset;
  cursor: text;
  box-sizing: border-box;
  border-radius: 0;
  font-family: inherit;
}

@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-VariableFont_wght.ttf") format("truetype-variations");
  font-stretch: 75% 125%;
  font-weight: 400 800;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Italic-VariableFont_wght.ttf") format("truetype-variations");
  font-stretch: 75% 125%;
  font-weight: 400 800;
  font-display: swap;
  font-style: italic;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  line-height: 1.2;
}

h1 {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  h2 {
    font-size: 1.8rem;
  }
}

h3 {
  font-size: 1.3rem;
}
@media (min-width: 768px) {
  h3 {
    font-size: 1.6rem;
  }
}

h4 {
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  h4 {
    font-size: 1.4rem;
  }
}

h5 {
  font-size: 1.1em;
}
@media (min-width: 768px) {
  h5 {
    font-size: 1.2rem;
  }
}

*, *:after, *:before {
  box-sizing: border-box;
  line-height: 1.5;
}

html {
  font-size: 16px;
  font-family: "Raleway";
  font-weight: 400;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
  interpolate-size: allow-keywords;
}

body {
  color: var(--dark2);
  background: var(--light1);
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

main {
  z-index: 1;
  position: relative;
  flex: 1;
  overflow: hidden;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}

img {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}

strong,
b {
  font-weight: 600;
}

::-moz-selection {
  color: var(--light1);
  background: var(--primary2);
}

::selection {
  color: var(--light1);
  background: var(--primary2);
}

@supports not (-moz-appearance: none) {
  ::-webkit-scrollbar {
    width: 1rem;
    height: 1rem;
  }
  ::-webkit-scrollbar-thumb {
    background: var(--primary1);
    border: 0.3125rem solid var(--light1);
    border-radius: 1rem;
  }
  ::-webkit-scrollbar-track {
    border-radius: 0;
    background: var(--light1);
  }
}
@supports (-moz-appearance: none) {
  html {
    scrollbar-color: var(--primary1) var(--light1);
    scrollbar-width: thin;
  }
}
.header {
  width: 100%;
  max-width: 87rem;
  padding: 0 1rem;
  margin: 0 auto;
  display: block;
}

.logo {
  width: 100%;
  max-width: 12rem;
  height: auto;
  display: block;
  margin: 1.5rem 0;
}
@media (min-width: 992px) {
  .logo {
    max-width: 20rem;
  }
}

.footer {
  width: 100%;
  max-width: 87rem;
  padding: 1rem;
  margin: 0 auto;
  display: block;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 992px) {
  .footer {
    flex-direction: row;
    justify-content: space-between;
  }
}

.btn {
  font-size: 1.125rem;
  display: inline-block;
  background: var(--primary1);
  color: var(--dark2);
  border-radius: 0 1rem;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 2;
  font-weight: 500;
  padding: 0.875rem 3rem;
  line-height: 1.2;
  gap: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  transition: 0.2s;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  box-shadow: var(--shadow1);
}
@media (min-width: 992px) {
  .btn:hover {
    background: var(--dark2);
    color: var(--light1);
  }
}
.btn--light1 {
  background: var(--light1);
  color: var(--dark1);
}
.btn--full {
  width: 100%;
}

.socials {
  display: flex;
  margin-left: -0.625rem;
  gap: 0.25rem;
}

.social-link {
  padding: 1rem 0.75rem;
}
.social-link__icon {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
}
@media (min-width: 992px) {
  .social-link {
    transition: 0.2s;
  }
  .social-link:hover {
    filter: brightness(0);
  }
}

.page {
  background: url("../images/bg.svg") no-repeat center/cover;
}
@media (min-width: 1200px) {
  .page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.page-wrapper {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .page-wrapper {
    padding-left: 4rem;
  }
}

.main {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.page-content {
  width: 100%;
  max-width: 87rem;
  padding: 2rem 1rem;
  margin: 0 auto;
  display: block;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary1);
  padding-bottom: 0.25em;
}
@media (min-width: 1200px) {
  .page-title {
    font-size: 3.5rem;
  }
}

.page-text {
  max-width: 60ch;
  display: flex;
  flex-direction: column;
  gap: 1em;
  font-weight: 500;
}
@media (min-width: 1200px) {
  .page-text {
    font-size: 1.25rem;
  }
}

.photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.25rem;
  padding: 0 1rem;
}
@media (min-width: 992px) {
  .photos-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 1200px) {
  .photos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1rem 1rem 1rem 0;
  }
}
@media (min-width: 1200px) {
  .photos-grid--mobile {
    display: none;
  }
}
.photos-grid--desktop {
  display: none;
}
@media (min-width: 1200px) {
  .photos-grid--desktop {
    display: grid;
  }
}

.photos-grid-item {
  aspect-ratio: 2/1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
}

.ec-v-form-holder {
  background: none !important;
  margin: 2rem 0 0 0 !important;
}

.ec-v-form-input,
.ec-v-form-submit {
  padding: 10px 0 !important;
}

.ec-v-form-input input[type=checkbox] + label:before {
  border-color: var(--primary1) !important;
}/*# sourceMappingURL=style.css.map */