*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
img,
svg {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

button {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

input {
  outline: none;
  border: none;
  background-color: transparent;
}

input::-moz-placeholder {
  color: inherit;
}

input::placeholder {
  color: inherit;
}

a {
  display: inline-block;
  color: inherit;
  font-family: inherit;
}

@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Light.ttf");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Regular.ttf");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Medium.ttf");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-SemiBold.ttf");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Bold.ttf");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-ExtraBold.ttf");
  font-weight: 800;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Black.ttf");
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Caveat";
  src: url("../fonts/Caveat-Regular.ttf");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Caveat";
  src: url("../fonts/Caveat-Medium.ttf");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Caveat";
  src: url("../fonts/Caveat-SemiBold.ttf");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Caveat";
  src: url("../fonts/Caveat-Bold.ttf");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

html {
  font-size: 10px;
}

body {
  font-family: "Raleway";
  color: #FFFFFF;
  line-height: 1.2;
  background-color: #0c0d12;
}

body.is-menu {
  overflow: hidden;
}

.container {
  max-width: 113rem;
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {
  .container {
    max-width: 69rem;
  }
}

@media screen and (max-width: 767px) {
  .container {
    max-width: 32rem;
  }
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  background-color: #0c0d12;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header__logo {
  background-color: #FFFFFF;
  border-radius: 0.7rem;
  border: 0.1rem solid #FFFFFF;
}

@media screen and (max-width: 1200px) {
  .header__logo img {
    width: 6rem;
    height: 6rem;
  }
}

@media screen and (max-width: 767px) {
  .header__navigation {
    display: none;
  }
}

.header__list {
  display: flex;
  align-items: center;
  gap: 3.5rem;
}

.header__link {
  position: relative;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 600;
}

.header__link::before {
  content: "";
  position: absolute;
  bottom: -0.4rem;
  left: 0;
  width: 100%;
  height: 0.2rem;
  background-color: #FFFFFF;
  transition-duration: 300ms;
  opacity: 0;
}

.header__link:hover::before {
  opacity: 1;
}

.header__link.active::before {
  opacity: 1;
}

.header__burger {
  display: none;
}

@media screen and (max-width: 767px) {
  .header__burger {
    display: block;
  }
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero__video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.hero .container {
  width: 113rem;
}

@media screen and (max-width: 1200px) {
  .hero .container {
    width: 69rem;
  }
}

@media screen and (max-width: 767px) {
  .hero .container {
    width: 32rem;
  }
}

.hero__title {
  font-family: "Caveat";
  font-size: 10rem;
  line-height: 1;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

@media screen and (max-width: 1200px) {
  .hero__title {
    font-size: 5rem;
    text-align: center;
  }
}

.hero__desc {
  font-size: 1.6rem;
  color: #c4c4c4;
  line-height: 1.5;
  max-width: 80rem;
}

@media screen and (max-width: 1200px) {
  .hero__desc {
    text-align: center;
    margin: 0 auto;
  }
}

.hero__link {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translate(-50%, 0);
}

@media screen and (max-width: 1200px) {
  .hero__link img {
    width: 3.6rem;
    height: 3.6rem;
  }
}

.works {
  padding-bottom: 3rem;
  background-color: #FFFFFF;
}

.works .page__title {
  color: #0c0d12;
}

.example {
  padding: 7rem 0;
  /* background-color: #0c0d12; */
  background-color: #FFFFFF;
}

@media screen and (max-width: 1200px) {
  .example {
    padding-top: 5rem;
  }
}

.example__title {
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 3rem;
  color: #0c0d12;
}

@media screen and (max-width: 1200px) {
  .example__title {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .example__title {
    font-size: 3.2rem;
  }
}

.example__list {
  display: flex;
  align-items: stretch;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}

@media screen and (max-width: 1200px) {
  .example__list {
    margin-bottom: 4rem;
  }
}

@media screen and (max-width: 767px) {
  .example__list {
    gap: 2rem;
  }
}

.example__item {
  position: relative;
  width: calc((100% - 3rem) / 2);
  height: 31rem;
  overflow: hidden;
  border-radius: 1rem;
  cursor: pointer;
}

.example__item iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1200px) {
  .example__item {
    height: 18.5rem;
  }
}

@media screen and (max-width: 767px) {
  .example__item {
    width: 100%;
    height: 18rem;
  }
}

.example__item:hover .example__name {
  opacity: 1;
  visibility: visible;
}

.example__item:hover .example__poster::before {
  background-color: rgba(12, 13, 18, 0.7294117647);
}

.example__item:hover .example__play {
  opacity: 1;
  visibility: visible;
}

.example__poster {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.example__poster::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 1rem 3rem #0c0d12;
  z-index: 1;
  transition-duration: 300ms;
}

.example__poster.is-video {
  opacity: 0;
  visibility: hidden;
  display: none;
}

.example__poster img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.example__name {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 2;
  font-size: 2.4rem;
  transition-duration: 300ms;
  opacity: 0;
  visibility: hidden;
}

.example__play {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 2;
  width: 3.6rem !important;
  height: 3.6rem !important;
  transition-duration: 300ms;
  opacity: 0;
  visibility: hidden;
}

.example__all {
  margin: 0 auto;
  width: 24rem;
  height: 6rem;
  background-color: #0c0d12;
  border-radius: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 2.8rem;
  text-decoration: none;
  font-weight: 700;
  border: 0.2rem solid #0c0d12;
  transition-duration: 300ms;
}

.example__all:hover {
  background-color: transparent;
  color: #0c0d12;
}

@media screen and (max-width: 1200px) {
  .example__all {
    font-size: 2.4rem;
    font-weight: 500;
    width: 20rem;
    height: 5.4rem;
  }
}

@media screen and (max-width: 767px) {
  .example__all {
    width: 100%;
  }
}

.menu {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #0c0d12;
  z-index: 5;
  padding-top: 14rem;
  transition-duration: 300ms;
  opacity: 0;
  visibility: hidden;
}

.menu.active {
  opacity: 1;
  visibility: visible;
}

.menu__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.menu__link {
  position: relative;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 300;
}

.menu__link::before {
  content: "";
  position: absolute;
  bottom: -0.4rem;
  left: 0;
  width: 100%;
  height: 0.2rem;
  background-color: #FFFFFF;
  transition-duration: 300ms;
  opacity: 0;
}

.menu__link.active::before {
  opacity: 1;
}

.page__main {
  padding-top: 15rem;
}

@media screen and (max-width: 1200px) {
  .page__main {
    padding-top: 13rem;
  }
}

.page__title {
  font-size: 6rem;
  font-weight: 500;
  margin-bottom: 5rem;
}

@media screen and (max-width: 1200px) {
  .page__title {
    font-size: 4.6rem;
    margin-bottom: 3rem;
  }
}

@media screen and (max-width: 1200px) {
  .page__title {
    text-align: center;
  }
}

.contact {
  padding-bottom: 8rem;
}

.contact__title {
  text-align: center;
  margin-bottom: 3rem;
}

@media screen and (max-width: 1200px) {
  .contact__title {
    margin-bottom: 2rem;
  }
}

.contact__subtitle {
  font-size: 2.2rem;
  max-width: 70rem;
  line-height: 1.4;
  text-align: center;
  margin: 0 auto 4rem auto;
}

@media screen and (max-width: 1200px) {
  .contact__subtitle {
    max-width: 60rem;
  }
}

.contact form {
  max-width: 60rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact label {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 1.4rem;
}

.form__label span {
  font-size: 1.4rem;
  padding-left: 1rem;
}

.contact input {
  width: 100%;
  height: 5rem;
  padding: 0 1.6rem;
  border: 0.1rem solid #FFFFFF;
  border-radius: 0.5rem;
  font-size: 1.6rem;
  color: #FFFFFF;
  line-height: 1;
}

.contact textarea {
  outline: none;
  width: 100%;
  height: 12rem;
  padding: 1.6rem;
  border: 0.1rem solid #FFFFFF;
  border-radius: 0.5rem;
  background-color: transparent;
  resize: none;
  font-size: 1.6rem;
  color: #FFFFFF;
  line-height: 1;
}

.contact .wpcf7-submit {
  width: 20rem;
  height: 5rem;
  background-color: #FFFFFF;
  border-radius: 0.5rem;
  border: 0.1rem solid #FFFFFF;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  transition-duration: 300ms;
  color: #000000;
  cursor: pointer;
}

.contact .wpcf7-submit:hover {
  background-color: transparent;
  color: #FFFFFF;
}

@media screen and (max-width: 767px) {
  .contact .wpcf7-submit {
    width: 100%;
  }
}

.contact .wpcf7-not-valid-tip {
  margin-top: .7rem;
  padding-left: 1rem;
}

.contact .wpcf7-response-output {
  display: none;
}

.send {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  max-height: 100vh;
  padding-top: 0;
}

.send__title {
  text-align: center;
  margin-bottom: 2rem;
}

.send__desc {
  font-size: 2rem;
  text-align: center;
  line-height: 1.4;
}

.about__text {
  font-size: 1.6rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.about__image {
  display: block;
  margin: 0 auto 3rem auto;
  height: auto;
}

@media screen and (max-width:1200px) {
  .about__image {
    max-width: 100%;
  }
}

/*# sourceMappingURL=index.css.map */