@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Modak&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.col-2 {
  flex-basis: 50%;
  min-width: 300px;
}

.col-3 {
  overflow: hidden;
  flex-basis: 30%;
  margin-left: 6px;
  margin-right: 6px;
  margin-bottom: 40px;
  min-width: 280px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  transition: 0.2s ease-in-out;
}

.col-3:hover {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.col-3 img {
  -o-object-fit: fill;
     object-fit: fill;
  width: 100%;
}

.col-2 img {
  padding: 50px;
  height: auto;
  width: 100%;
}

.title {
  text-align: center;
  margin: 0 auto 40px;
  padding-top: 20px;
  position: relative;
  line-height: 60px;
  font-size: 30px;
  color: #222;
}

.title::after {
  content: "";
  background-color: #8400c6;
  width: 60px;
  height: 5px;
  border-radius: 5px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.container {
  margin: auto;
  padding-left: 25px;
  padding-right: 25px;
}

.small-container {
  max-width: 1080px;
  margin: auto;
  padding: 25px;
}

.btn {
  padding: 12px 70px;
  text-decoration: none;
  border: 2px solid #8400c6;
  color: #8400c6;
  font-size: 16px;
  font-weight: 600;
  border-radius: 40px;
  transition: 0.3s ease;
}

.btn:hover {
  background-color: #8400c6;
  color: #fff;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.btn.new-release-btn {
  border: 2px solid #aa0000;
  color: #aa0000;
}

.btn.new-release-btn:hover {
  background-color: #aa0000;
  color: #fff;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

p {
  color: #222;
  font-size: 18px;
  font-weight: 300;
}

a {
  text-decoration: none;
}

.circle {
  position: absolute;
  display: block;
  width: 100vw;
  height: 200vh;
  border-radius: 50%;
  z-index: 0;
}

/* Navigation */
#menu-toggle {
  position: fixed;
  color: #000;
  z-index: 100;
  cursor: pointer;
  margin: 3% 4%;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}

#menu-toggle span {
  font-size: 40px;
}

.navigation {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: left;
  height: 100vh;
  width: 20vw;
  transform: translateX(-100%);
  background-color: #222;
  z-index: 99;
  transition: 0.5s ease;
}

.navigation .muted {
  width: 100%;
  margin-top: 50%;
  display: flex;
  flex-direction: column;
}

.navigation .muted a {
  font-size: 16px;
  font-weight: 300;
}

.navigation.active {
  transform: translateX(0%);
}

.navigation a {
  font-size: 18px;
  color: #eee;
  width: 100%;
  padding: 16px 30px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.082);
  transition: 0.2s ease;
}

.navigation a:hover {
  /* background-color: rgba(255, 255, 255, 0.082); */
  background-color: #fff;
  color: #000;
}

.last-news {
  padding: 0 10%;
  background: radial-gradient(#ff512f, #e64a2a);
  display: flex;
  position: absolute;
  width: 100%;
  height: 80px;
  text-align: center;
  align-items: center;
  justify-content: space-evenly;
  z-index: 20;
}

.last-news h1 {
  font-size: 25px;
  color: #fff;
}

.last-news a {
  background-color: #2b3467;
  border: 0;
  color: #fff;
  cursor: pointer;
}

.last-news .btn:hover {
  color: #2b3467;
  background-color: #fff;
}

/* Home */
.home {
  position: relative;
  height: 100vh;
  background: radial-gradient(#aa00ff, #8400c6);
  justify-content: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  z-index: 0;
}

.home .circle {
  background-color: #8400c6;
  box-shadow: #ff8000 0px 0px 60px;
  left: 50%;
}

.home .image-right,
.home .image-left {
  position: absolute;
  width: 20%;
  height: auto;
}

.home .image-right {
  right: -2%;
}

.home .image-left {
  left: -4%;
}

.home .logo {
  width: 40%;
  height: auto;
  z-index: 1;
}

.home h2 {
  color: white;
  font-weight: 200;
  text-align: center;
  margin-top: 40px;
  font-size: 20px;
  z-index: 1;
}

.home .row h1 {
  font-family: "Modak", sans-serif;
  font-weight: 100;
  font-size: 120px;
  z-index: 1;
  color: #fff;
}

.home .row h2 {
  padding: 0px 30px;
}

.home h2 span {
  background-color: white;
  color: #8400c6;
  font-weight: bold;
  padding: 0 6px 0 6px;
}

.home .material-symbols-outlined {
  position: absolute;
  bottom: 0;
  left: 50%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 50px;
  margin-bottom: 40px;
  cursor: pointer;
  color: #fff;
  transition: 0.2s ease-out;
  z-index: 99;
}

.home .material-symbols-outlined:hover {
  color: #222;
}

.fade-in {
  opacity: 0;
  transition: opacity 0.25s ease-in;
}

.fade-in.appear {
  opacity: 1;
}

.from-top {
  transform: translateY(-50%);
}

.from-bottom {
  transform: translateY(50%);
}

.from-left {
  transform: translateX(-50%);
}

.from-right {
  transform: translateX(50%);
}

.from-right,
.from-left,
.from-top,
.from-bottom {
  opacity: 0;
  transition: opacity 0.4s ease-in, transform 0.3s ease-in;
}

.from-left.appear,
.from-right.appear,
.from-top.appear,
.from-bottom.appear {
  transform: translateX(0);
  opacity: 1;
}

.fade-out {
  opacity: 1f;
  transition: opacity 0.2s ease-out;
}

.fade-out.hide {
  opacity: 0f;
}

/* Last release */
.new-release,
.description {
  position: relative;
  height: 100%;
  background-color: rgb(230, 230, 230);
  padding-bottom: 60px;
  overflow: hidden;
  z-index: 0;
}

.new-release .circle {
  background: radial-gradient(#aa00ff, #8400c6);
  left: -55%;
  top: -10%;
  z-index: -1;
}

.new-release .row .col-2,
.description .row .col-2 {
  max-width: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  z-index: 1;
  text-align: center;
}

.new-release .row .col-2 > div,
.description .row .col-2 > div {
  margin: 16px;
}

.new-release .row .col-2 p {
  font-weight: 400;
  padding: 6px;
}

.new-release .row .col-2:first-child img,
.description .row .col-2 img {
  max-height: 550px;
  max-width: 100%;
  height: auto;
  width: auto;
  padding: 0;
}

.new-release .row .col-2 h1 {
  font-size: 50px;
  font-weight: bold;
  color: #222;
}

.new-release .row .col-2:last-child img {
  width: 300px;
  height: auto;
  padding: 0;
}

/* Description */
.description {
  padding: 40px;
}

.description .row .col-2 h1 {
  font-size: 30px;
  color: #333;
  font-weight: bold;
}

.description .row .col-2 p {
  padding: 0 30px;
  font-weight: 300;
}

.description .row .col-2 .get-on {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.description .row .col-2 .get-on div {
  background-color: #8400c6;
  justify-content: center;
  align-items: center;
}

.description .row .col-2 .get-on img {
  width: 220px;
  height: auto;
  padding: 0;
}

.description .row .col-2 .get-on a:hover {
  transform: translateY(4px);
}

.description .row .col-2 .get-on a {
  padding: 0;
  transition: 0.2s ease;
}

/* Explore games */
.explore-games {
  position: relative;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 60px;
  overflow: hidden;
  z-index: 0;
}

.explore-games .row {
  justify-content: center;
  align-items: center;
}

.explore-games .row .col-3 {
  z-index: 1;
  background-color: #fff;
  min-height: 460px;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 20px;
  transition: 0.2s ease;
}

.explore-games .row .col-3:hover {
  transform: translateY(10px);
}

.explore-games .row .col-2 a .status {
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.728);
}

.explore-games .row .col-3 .status h4 {
  color: #fff;
  text-align: center;
  padding: 2px;
  width: 20%;
  border-radius: 0px 0px 6px 0px;
}

.explore-games .row .col-3 .status h4.soon {
  background-color: #ff8000;
}

.explore-games .row .col-3 .status h4.new {
  background-color: #00ba00;
}

.explore-games .row .col-3 .status h4.update {
  background-color: #007cba;
}

.explore-games .row .col-3 a {
  display: block;
  height: 100%;
  width: 100%;
  cursor: pointer;
}

.explore-games .row .col-3 a .game-image {
  height: 260px;
  width: 100%;
  border-radius: 20px;
}

.explore-games .row .col-3 a .game-name {
  font-size: 20px;
  color: #444;
  font-weight: 600;
  padding: 10px 20px 0 20px;
  text-align: center;
}

.explore-games .row .col-3 a .game-type {
  font-size: 16px;
  color: #555;
  font-weight: 500;
  text-align: center;
}

.explore-games .row .col-3 a .game-short-desc {
  font-size: 15px;
  text-align: center;
  padding: 4px 20px;
}

.explore-games .row .col-3 a .platforms {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
}

.explore-games .row .col-3 a .platforms i {
  font-size: 20px;
  color: #555;
  padding: 0 6px;
}

.explore-games .row .col-3 a .game-version {
  margin-bottom: 6px;
  color: #555;
  text-align: center;
  font-size: 12px;
}

/* Contact Us */
.contact-us {
  position: relative;
  height: 460px;
}

.contact-us .contact-us-container {
  background: radial-gradient(#ffe259, #ffa751);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  align-items: center;
  padding: 60px;
}

.contact-us .contact-us-container p {
  width: 70%;
  color: #fff;
  text-align: center;
  margin-top: 40px;
}

.contact-us h1 {
  text-align: center;
  color: #fff;
}

.contact-us .contact-us-container a {
  margin-top: 40px;
}

.contact-us .btn {
  border: 2px solid #fff;
  color: #fff;
}

.contact-us .btn:hover {
  color: #000;
  background: #fff;
}

/* Footer */
.footer {
  position: relative;
  background-color: #29333a;
  height: auto;
  bottom: 0;
}

.footer .row img {
  width: 300px;
}

.footer .row {
  position: relative;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 20px;
}

.footer .row:last-child {
  border-top: 1px solid #fff;
  padding-top: 16px;
  padding-bottom: 0;
}

.footer .row .col-2 {
  display: flex;
  height: 100%;
  width: 100%;
  text-align: left;
  justify-content: center;
  align-items: center;
}

.footer .row .col-2 table {
  width: 100%;
  text-align: center;
}

.footer .row .col-2 table th {
  padding: 10px;
  color: #fff;
  font-size: 18px;
}

.footer .row .col-2 table tr td a {
  text-decoration: none;
  color: #aaa;
  transition: 0.2s ease;
}

.footer .row .col-2 table tr td a:hover {
  color: #fff;
}

.footer .row h4 {
  color: #eee;
  font-weight: 200;
  font-size: 14px;
}

/* Home - About Us */
.about-us {
  display: flex;
  flex-wrap: wrap;
  height: auto;
  align-items: center;
}

.about-us .left,
.about-us .right {
  height: 550px;
  flex-basis: 50%;
}

.about-us .right h1 {
  color: #333;
  font-weight: 800;
}

.about-us .right p {
  padding: 40px 0;
}

.about-us .right {
  text-align: center;
  background-color: #e6e6e6;
  padding: 6%;
}

.about-us .left {
  background: url("../images/about-us.jpg");
  background-position: center;
  background-size: cover;
}

.developers-container .row .people {
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 300px;
  height: 360px;
  padding: 20px;
  margin: 20px;
  border-radius: 20px;
  background-color: #e4e4e4;
}

.developers-container .row .people img {
  width: 120px;
  height: auto;
  border-radius: 50%;
  padding: 0;
}

.developers-container .row .people .name {
  display: flex;
  padding: 16px;
  justify-content: center;
  align-items: center;
}

.developers-container .row .people .name h2 {
  color: #555;
  font-size: 17px;
  font-weight: bolder;
}

.developers-container .row .people .name .material-symbols-outlined {
  padding: 0;
  margin: 0;
  color: #007cba;
  margin: 0 6px;
}

.developers-container .row .people p {
  color: #666;
  font-size: 15px;
  font-weight: 400;
}

/* Oros */
.home.oros {
  position: relative;
  height: 100vh;
  background-position: center;
  background-size: cover;
  justify-content: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  z-index: 0;
}

.home.oros .up-color {
  width: 100%;
  height: 100%;
  position: absolute;
  background: radial-gradient(#ffcb01, #ff9500);
}

.home.the-old-prison {
  position: relative;
  height: 100vh;
  background: url("../images/games/the-old-prison/poster-5.jpg");
  background-position: center;
  background-size: cover;
  justify-content: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  z-index: 0;
}

.home.the-old-prison .up-color {
  width: 100%;
  height: 100%;
  position: absolute;
  background: radial-gradient(rgba(170, 79, 0, 0.6274509804), rgba(82, 26, 0, 0.6274509804));
}

.home.silent {
  position: relative;
  height: 100vh;
  background: url("../images/games/silent/main-poster.png");
  background-position: center;
  background-size: cover;
  justify-content: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  z-index: 0;
}

.home.silent .up-color {
  width: 100%;
  height: 100%;
  position: absolute;
  background: radial-gradient(rgba(170, 79, 0, 0.6274509804), rgba(82, 26, 0, 0.6274509804));
}

.home.water-sort {
  position: relative;
  height: 100vh;
  background: radial-gradient(#8ef6e4, #9896f1);
  justify-content: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  z-index: 0;
}

.home.water-sort .circle {
  background-color: #9896f1;
  left: -50%;
  box-shadow: #9896f1 0px 4px 60px;
}

.home.terrifier {
  position: relative;
  height: 100vh;
  background: url("../images/games/terrifier/main-poster.png");
  background-position: center;
  background-size: cover;
  justify-content: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  z-index: 0;
}

.home.terrifier .up-color {
  width: 100%;
  height: 100%;
  position: absolute;
  background: radial-gradient(rgba(170, 0, 0, 0.2509803922), rgba(88, 0, 0, 0.2509803922));
}

/* Privacy Policy */
.privacy {
  position: relative;
  height: auto;
  text-align: left;
  color: #444;
}

.privacy .container,
.third-party .container {
  padding: 60px 20%;
}

.right-logo {
  width: 140px;
  filter: brightness(30%);
  float: right;
  margin: 60px 8%;
}

.privacy h4 {
  font-weight: 400;
  font-size: 18px;
}

.privacy h1 {
  font-weight: 900;
  font-size: 28px;
}

.privacy h2 {
  font-weight: 700;
  font-size: 20px;
}

.privacy p {
  font-size: 20px;
}

.privacy ul li {
  font-size: 18px;
  margin-bottom: 16px;
}

/* Third Party */
.third-party {
  position: relative;
  color: #444;
  justify-content: center;
  align-items: center;
}

.third-party h1 {
  text-align: left;
  font-weight: 800;
  padding: 30px 0 30px 0;
  font-size: 26px;
}

.third-party table {
  border-collapse: collapse;
  font-size: 18px;
}

.third-party table tr td,
.third-party table tr th {
  padding: 30px 60px 30px 0;
  border-bottom: 1px solid #444;
  text-align: left;
}

.third-party table tr td {
  font-weight: 500;
}

/* Games */
.home.games h1 {
  color: #fff;
  font-family: "Modak", sans-serif;
  font-size: 100px;
}

.home.games {
  background: radial-gradient(#fc6767, #ec008c);
}

.home.games .circle {
  background-color: #ffbd44;
  box-shadow: #ffcc6e 0px 4px 60px;
}

/* Loading */
.loading {
  display: none;
  position: fixed;
  padding: 0;
  margin: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 100;
}

.loading.active {
  display: block;
}

.wrapper {
  width: 200px;
  height: 60px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.circle-l {
  width: 20px;
  height: 20px;
  position: absolute;
  border-radius: 50%;
  background-color: #8400c6;
  left: 15%;
  transform-origin: 50%;
  animation: circle-l 0.5s alternate infinite ease;
}

/* Trailler */
.trailer {
  position: relative;
  width: 100%;
  height: auto;
}

.trailer iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.trailer .row .col-2:last-child {
  padding: 80px;
}

.trailer .row {
  height: 100%;
}

.trailer .row .col-2 {
  height: 100%;
}

.trailer .row .col-2 h1 {
  border-bottom: 1px solid #fff;
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  padding-bottom: 20px;
}

.trailer .row .col-2 p {
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  padding-top: 20px;
}

.trailer .row .col-2:first-child {
  height: 480px;
  width: 100%;
}

.trailer .row .col-2:first-child span {
  font-size: 320px;
  cursor: pointer;
  color: #fff;
  transition: 0.2s ease;
}

.trailer .row .col-2:first-child span:hover {
  font-size: 280px;
}

/* Pictures */
.pictures {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}

.pictures .swiper {
  max-width: 90vw;
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
}

.pictures .swiper .swiper-slide .swiper-container {
  max-width: 100%;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pictures .swiper .swiper-slide .swiper-container img {
  height: 100%;
  width: auto;
  border-radius: 20px;
}

.pictures .swiper .swiper-button-next,
.pictures .swiper .swiper-button-prev {
  color: #ff8000;
  transition: 0.2s ease;
}

.pictures .swiper .swiper-button-next:hover,
.pictures .swiper .swiper-button-prev:hover {
  transform: scale(90%);
  color: #333;
}

.pictures .swiper .swiper-pagination-bullet-active {
  background-color: #ff8000;
}

/* About us */
.home.about-us-1 {
  background: radial-gradient(#00cdac, #02aab0);
}

.home.about-us-1 .row h1 {
  text-align: center;
  line-height: 80px;
  font-size: 100px;
}

.home.about-us-1 .circle {
  background-color: #6e90ff;
  box-shadow: #ffffff 0px 4px 60px;
}

.about-us-container .row .col-2 {
  padding: 0;
  height: 500px;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.about-us-container .row .image {
  width: 100%;
  height: 100%;
  background: url("../images/about-us.jpg");
  background-position: center;
  background-size: cover;
}

.about-us-container .row .col-2 h1 {
  text-align: center;
  padding: 0 30px;
}

.about-us-container .row .col-2 p {
  text-align: center;
  padding: 20px 60px;
}

.reviews {
  height: 100%;
  width: 100vw;
}

.reviews .container {
  height: 100%;
  width: 100%;
  padding: 20px;
}

/* Contact us */
.home.contact-us-1 {
  background: radial-gradient(#ffe259, #ffa751);
}

.home.contact-us-1 .row h1 {
  text-align: center;
  line-height: 80px;
  font-size: 100px;
}

.home.contact-us-1 .circle {
  background-color: #ffaa6e;
  box-shadow: #ffaa6e 0px 4px 60px;
}

.contact-us-container .contact-form h1 {
  text-align: center;
  padding-top: 20px;
  line-height: 60px;
  font-size: 30px;
  color: #444;
}

.contact-us-container {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #ddd;
  background-position: center;
  background-size: cover;
}

.contact-form {
  background-color: #fff;
  height: 100%;
  width: 50%;
  margin: 30px 0;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.contact-form form textarea {
  width: 60%;
  padding: 15px 20px;
  border-radius: 10px;
  border: 0;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px, rgba(0, 0, 0, 0.07) 0px 2px 2px, rgba(0, 0, 0, 0.07) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 8px 8px, rgba(0, 0, 0, 0.07) 0px 16px 16px;
  margin: 6px 0;
  resize: none;
  color: #444;
  font-weight: 700;
  transition: 0.2s ease;
}

.contact-form form input:last-child {
  cursor: pointer;
  margin: 20px 0;
}

.contact-form form .input {
  width: 60%;
  padding: 15px 20px;
  border-radius: 10px;
  border: 0;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px, rgba(0, 0, 0, 0.07) 0px 2px 2px, rgba(0, 0, 0, 0.07) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 8px 8px, rgba(0, 0, 0, 0.07) 0px 16px 16px;
  margin: 6px 0;
  color: #444;
  font-weight: 700;
  transition: 0.2s ease;
}

.contact-form form .input:focus,
.contact-form form textarea:focus {
  outline: none;
  background-color: #fff2d2;
  border-bottom: 2px solid #ffa751;
}

.contact-form form .btn {
  margin: 10px;
  cursor: pointer;
  border-color: #ffa751;
  color: #ffa751;
  background-color: #fff;
}

.contact-form form .btn:hover {
  background-color: #ffa751;
  color: #fff;
}

.newsletter {
  position: relative;
  height: 420px;
}

.newsletter .newsletter-container {
  padding: 20px;
  background: #00b4db; /* fallback for old browsers */ /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to left, #0083b0, #00b4db); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  align-items: center;
  padding: 60px;
}

.newsletter .newsletter-container p {
  width: 70%;
  color: #fff;
  text-align: center;
  margin-top: 40px;
}

.newsletter h1 {
  text-align: center;
  color: #fff;
}

.newsletter .newsletter-container form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
}

.newsletter .newsletter-container input {
  width: 40%;
  padding: 15px 20px;
  border-radius: 40px;
  text-align: center;
  border: 0;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px, rgba(0, 0, 0, 0.07) 0px 2px 2px, rgba(0, 0, 0, 0.07) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 8px 8px, rgba(0, 0, 0, 0.07) 0px 16px 16px;
  margin-top: 40px;
  color: #444;
  font-weight: 700;
  transition: 0.2s ease;
}

.newsletter .newsletter-container input:focus {
  outline: none;
  background-color: #d2f4ff;
}

.newsletter .newsletter-container button {
  width: 40%;
  background: none;
  cursor: pointer;
  margin-top: 16px;
  border: 2px solid #fff;
  color: #fff;
  text-align: center;
}

.newsletter button:hover {
  color: #000;
  background: #fff;
}

@keyframes circle-l {
  0% {
    top: 60px;
    height: 5px;
    border-radius: 50px 50px 25px 25px;
    transform: scaleX(1.7);
  }
  40% {
    height: 20px;
    border-radius: 50%;
    transform: scaleX(1);
  }
  100% {
    top: 0%;
  }
}
.circle-l:nth-child(2) {
  left: 45%;
  animation-delay: 0.2s;
}

.circle-l:nth-child(3) {
  left: auto;
  right: 15%;
  animation-delay: 0.3s;
}

.shadow {
  width: 20px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 62px;
  transform-origin: 50%;
  z-index: -1;
  left: 15%;
  filter: blur(1px);
  animation: shadow 0.5s alternate infinite ease;
}

@keyframes shadow {
  0% {
    transform: scaleX(1.5);
  }
  40% {
    transform: scaleX(1);
    opacity: 0.7;
  }
  100% {
    transform: scaleX(0.2);
    opacity: 0.4;
  }
}
.shadow:nth-child(4) {
  left: 45%;
  animation-delay: 0.2s;
}

.shadow:nth-child(5) {
  left: auto;
  right: 15%;
  animation-delay: 0.3s;
}

.wrapper span {
  position: absolute;
  top: 75px;
  font-family: "Lato";
  font-size: 20px;
  letter-spacing: 12px;
  color: #fff;
  left: 15%;
}

/* footer  */
/* media query */
@media only screen and (max-width: 800px) {
  .title {
    font-size: 24px;
  }
  .navigation {
    width: 50%;
  }
  .privacy .container {
    padding: 60px 15%;
  }
  .about-us .left,
  .about-us .right {
    flex-basis: 100%;
  }
  .third-party .container {
    padding: 60px 10%;
  }
  .third-party .btn {
    font-size: 12px;
    padding: 10px 28px;
  }
  .third-party table {
    font-size: 14px;
  }
  .third-party table tr td,
  .third-party table tr th {
    padding: 30px 8px 30px 0;
  }
  .third-party h1 {
    font-size: 20px;
  }
  .description .row .col-2 p,
  .new-release .row .col-2 p {
    padding: 0px;
  }
  .trailer .row .col-2:last-child {
    padding: 0 0;
  }
  .about-us-container .row .col-2 {
    flex-basis: 100%;
  }
  .home .row h1 {
    font-size: 80px;
  }
  .home .row h2 {
    font-size: 18px;
  }
  .home .logo {
    width: 50%;
  }
  .contact-form {
    width: 100%;
  }
  .contact-form form .input,
  .contact-form form textarea {
    width: 90%;
  }
  .home.contact-us-1 .row h1 {
    font-size: 80px;
    line-height: 70px;
  }
  .trailer .row .col-2 {
    flex-basis: 100%;
  }
  .trailer .row .col-2 {
    text-align: center;
  }
  .trailer .row .col-2:last-child {
    flex-basis: 80%;
    padding: 40px;
  }
  .pictures .gallery img {
    width: 100%;
  }
  .pictures .swiper .swiper-slide .swiper-container {
    height: 360px;
  }
  .new-release .circle {
    left: -55%;
    top: 0;
    transform: scale(130%);
  }
  .new-release .row .col-2:last-child img {
    width: 220px;
  }
  p {
    font-size: 16px;
  }
  .home .image-right,
  .home .image-left {
    display: none;
  }
  .newsletter .newsletter-container input,
  .newsletter .newsletter-container button {
    width: 90%;
  }
  .last-news h1 {
    font-size: 17px;
  }
  .last-news a {
    padding: 10px 25px;
    margin: 0 10px;
    font-size: 13px;
  }
}/*# sourceMappingURL=style.css.map */