@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
  -webkit-text-size-adjust: 100%;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 15px;
}

a {
  text-decoration: none;
}

ul,
ol,
li {
  list-style: none;
  margin: 0;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

html,
body {
  height: 100%;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}

* {
  font-family: "Montserrat", sans-serif;
}

input:focus {
  outline: none;
}

button {
  background: transparent;
  cursor: pointer;
}

/* =================================== */

.wrapper {
  min-height: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.page {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  background: linear-gradient(180deg, rgba(155, 188, 254, 0.2) 0%, rgba(155, 188, 254, 0.2) 50%, rgba(155, 188, 254, 0.2) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

/* =================================== */
[class*="__container"] {
  max-width: 1340px;
  margin: 0 auto;
  /* padding: 0 10px; */
}

@media (max-width: 1499.98px) {
  [class*="__container"] {
    max-width: 1199px;
    margin: 0 auto;
  }
}

@media (max-width: 1199.98px) {
  [class*="__container"] {
    max-width: 970px;
  }
}

@media (max-width: 990.98px) {
  [class*="__container"] {
    max-width: 750px;
  }
}

@media (max-width: 767.98px) {
  [class*="__container"] {
    max-width: none;
    margin: 0px 20px;
  }
}

@media (max-width: 350px) {
  [class*="__container"] {
    max-width: none;
    margin: 0px 10px;
  }
}