:root {
  --font-main: "Montserrat", sans-serif;
  --font-title: "Open Sans", sans-serif;
  --color-black: #000000;
  --color-ocean: #44C6FE;
  --color-primary: #96BF4D;
  --color-primary-light: #ceec9a;
  --color-secondary: #FFF7CD;
  --color-secondary-dark: #f7df6c;
  --color-grey: #C1C1C1;
  --color-grey-dark: #484848;
  --color-red: #E42A1E;
  --color-white: #ffffff;
  --color-green: #0dd149;
  --color-error: #b06363;
  --color-border: #e5ded6;
  --color-alt: #818181;
  --color-title: #386482;
}

* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

:focus,
:active {
  /*outline: none;*/
}

a:focus,
a:active {
  /* outline: none;*/
}

/* Links */
a, a:link, a:visited {
  /* color: inherit; */
  text-decoration: none;
  /* display: inline-block; */
}

a:hover {
  /* color: inherit; */
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

*,
html {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*::before,
*::after {
  box-sizing: inherit;
}

html,
body {
  height: 100%;
}

body.noscroll {
  position: fixed;
  left: 0;
  right: 0;
}

body {
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
  min-width: 320px;
  min-height: 100vh;
  height: auto;
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  color: var(--color-black);
  font-size: 16px;
  text-rendering: optimizespeed;
  position: relative;
  font-weight: 400;
}
body.no-scroll {
  height: 100vh;
  overflow: hidden;
}
body.bg-dark {
  background-color: var(--color-black);
  color: var(--color-white);
}

main {
  display: block;
  width: 100%;
  flex-grow: 1;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

ol {
  margin: 0;
  padding: 0;
  list-style-position: inside;
}
ol li:not(:last-child) {
  margin-bottom: 16px;
}

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  background-color: transparent;
  border: none;
}

img,
iframe {
  display: block;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

section {
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

.container {
  max-width: 1470px;
  padding: 0 20px;
  width: 100%;
  margin: 0 auto;
}
.container--sm {
  max-width: 1060px;
}
@media (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
}

.color-green {
  color: var(--color-green);
}

.section {
  padding: 80px 0;
}
@media (max-width: 1023px) {
  .section {
    padding: 40px 0;
  }
}

h1,
h2,
h3,
p {
  margin: 0;
}

.h1, .h2 {
  font-size: 50px;
  line-height: 1.3;
  text-transform: uppercase;
  font-family: var(--font-title);
  color: var(--color-black);
  font-weight: 700;
}
@media (max-width: 1023px) {
  .h1, .h2 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .h1, .h2 {
    font-size: 24px;
  }
}

.form-group {
  position: relative;
}
.form-group--required {
  padding-bottom: 18px;
  margin-bottom: 6px;
}
@media (max-width: 767px) {
  .form-group--required {
    padding-bottom: 16px;
  }
}
.form-group.is-error .form-control {
  border-color: var(--color-red);
}
.form-group.is-error .form-error {
  opacity: 1;
  bottom: -15px;
  color: var(--color-red);
}

.form-control {
  display: inline-block;
  width: 100%;
  height: 60px;
  padding: 12px 16px;
  border: 1px solid var(--color-primary-light);
  background-color: var(--color-primary-light);
  color: var(--color-black);
  font-size: 16px;
  line-height: 1.3;
  -webkit-appearance: none;
}
.form-control--round {
  border-radius: 30px;
}
@media (max-width: 767px) {
  .form-control {
    height: 52px;
    padding: 12px 15px;
  }
}

.form-error {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 10px;
  line-height: 1.3;
  color: var(--color-white);
  opacity: 0;
}

.form-checkbox {
  text-align: left;
  width: 100%;
  margin-top: 32px;
}
.form-checkbox.is-error label::before {
  border-color: var(--color-error);
}
.form-checkbox input {
  position: fixed;
  transform: scale(0);
}
.form-checkbox input:checked + label::after {
  opacity: 1;
}
.form-checkbox label {
  display: block;
  text-align: left;
  padding-left: 32px;
  position: relative;
  font-size: 12px;
  line-height: 24px;
  color: var(--color-black);
}
.form-checkbox label span {
  line-height: 1.2;
  display: block;
  max-width: 470px;
}
.form-checkbox label a {
  text-decoration: underline;
}
@media (max-width: 495px) {
  .form-checkbox label {
    line-height: 18px;
  }
}
.form-checkbox label::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 1px solid var(--color-primary-light);
  background-color: var(--color-primary-light);
}
.form-checkbox label::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 5px;
  border-left: 1px solid var(--color-black);
  border-bottom: 1px solid var(--color-black);
  left: 5px;
  top: 6px;
  transform: rotate(-45deg);
  opacity: 0;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 16px;
  line-height: 1.3;
  font-style: normal;
  background-color: var(--color-primary);
  text-align: center;
  color: var(--color-white);
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .btn:hover {
    background-color: var(--color-primary-light);
  }
}
.btn--white {
  background-color: var(--color-white);
  color: var(--color-black);
}
.btn--wide {
  width: 100%;
}

.header {
  position: absolute;
  inset: 0 0 auto;
  padding: 32px 0;
  width: 100%;
  inset: 0 0 auto;
  z-index: 2;
}
@media (max-width: 767px) {
  .header {
    padding: 24px 0 16px;
  }
}
.header__logo {
  width: 200px;
}
@media (max-width: 767px) {
  .header__logo {
    width: 160px;
  }
}

.footer {
  padding: 80px 0 40px;
}
@media (max-width: 1023px) {
  .footer {
    padding: 40px 0;
  }
}
.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer__desc {
  max-width: 800px;
  margin: 0 auto;
}
.footer__logo {
  display: block;
  width: 200px;
}
@media (max-width: 767px) {
  .footer__logo {
    width: 160px;
  }
}

.main {
  padding: 100px 0 100px;
  background: url("/sites/worldoftoys/img/banner.png") top center/cover no-repeat;
}
@media (max-width: 767px) {
  .main {
    padding: 50px 0 40px;
  }
}
.main .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.main__banner {
  display: block;
  margin-bottom: 40px;
  width: 100%;
  height: 150px;
}
.main__banner img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main__logo {
  display: block;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .main__logo {
    width: 140px;
  }
}
.main__title {
  margin-bottom: 0px;
  max-width: 800px;
  margin: 0 auto 24px;
}
@media (max-width: 767px) {
  .main__title {
    margin-bottom: 40px;
  }
}

.news__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 767px) {
  .news__list {
    grid-template-columns: 1fr;
  }
}

.news-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.news-card__img {
  display: block;
  width: 100%;
  margin-bottom: 24px;
}
.news-card__img img {
  display: block;
  width: 100%;
}
.news-card__type {
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 16px;
}
.news-card__title {
  font-size: 30px;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .news-card__title {
    font-size: 20px;
  }
}
.news-card__date {
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}
.news-card__desc {
  padding: 24px 20px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .news-card__desc {
    font-size: 14px;
    margin-top: 0;
    padding: 0;
  }
}
.news-card__link {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .news-card__link {
    margin-top: 32px;
  }
}

.feedback__inner {
  padding: 64px 0;
  background-color: var(--color-secondary);
}
@media (max-width: 767px) {
  .feedback__inner {
    padding: 40px 0;
  }
}
.feedback__title {
  text-align: center;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .feedback__title {
    margin-bottom: 24px;
  }
}
.feedback__desc {
  max-width: 800px;
  text-align: center;
  font-size: 24px;
  margin: 0 auto 64px;
}
@media (max-width: 767px) {
  .feedback__desc {
    font-size: 16px;
    margin-bottom: 40px;
  }
}
.feedback__form {
  max-width: 890px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.feedback__form-row {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
}
@media (max-width: 767px) {
  .feedback__form-row {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=main.css.map */