/*
Theme Name: OverCards by Artemida
Theme URI: https://artemida.it
Author: Artemida [ istinto creativo ]
Author URI: https://artemida.it
Template:   overcard
Version:    1.0
Text Domain: overcards
License: Common
License URI: 
*/
	
html, body {
   width: 100vw;
   height: 100vh;
}

html {
	animation: fadeIn 500ms reverse;
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  
height: 100vh;
	
  background-color: #170d24;
  background-image:
    radial-gradient(ellipse at 10% 90%, #3c2d83 0%, transparent 55%),
    radial-gradient(ellipse at 90% 90%, #c33c65 0%, transparent 55%),
    radial-gradient(ellipse at 90% 10%, #4a74dc 0%, transparent 55%),
    radial-gradient(ellipse at 10% 10%, #35244f 0%, transparent 55%);
	
	background-size: 200% 200%;
	animation: gradient 15s ease infinite;
}
@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
.gooey{
  background-image: linear-gradient(120deg, #c33c65 0%, #b400ff 100%);
	background-size: 100% 100%;
  border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
  width: 150px; height: 144px;
  animation: morph 14s linear infinite; 
  transform-style: preserve-3d;
  outline: 1px solid transparent;
  will-change: border-radius;
	position: absolute;
}

	
.gooey:before,
.gooey:after{
  content: '';
  width: 110%;
  height: 110%;
  display: block;
  position: absolute;
  left: 0; top: 0;
  border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
  box-shadow: 5px 5px 89px rgba(0, 102, 255, 0.21);
  will-change: border-radius, transform, opacity;
  animation-delay: 200ms;
  background-image: linear-gradient(120deg, rgba(0,67,255,.4) 0%, rgba(0,103,255,.79) 100%);
}

.gooey:before{
  animation: morph 16s linear infinite;
  opacity: .21;
  animation-duration: 8s;
	left:-10%;
	top:-10%;
}

.gooey:after{
  animation: morph 20s linear infinite;
  animation-delay: 400ms;
  opacity: .89;
  content: '';
  line-height: 120px;
  text-indent: -21px;
}

@keyframes morph{
  0%,100%{
  border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    transform: translate3d(0,0,0) rotateZ(0.01deg);
  }
  34%{
      border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%;
    transform:  translate3d(0,5px,0) rotateZ(0.01deg);
  }
  50%{
    opacity: .89;
    transform: translate3d(0,0,0) rotateZ(0.01deg);
  }
  67%{
    border-radius: 100% 60% 60% 100% / 100% 100% 60% 60% ;
    transform: translate3d(0,-3px,0) rotateZ(0.01deg);
  }
}

@keyframes fadeIn{
  100%{
    transform: scale(1.03);
    opacity: 0;
  }
}

.thecontent {
	display: flex;
	height: 70vh;
  justify-content: center;
  align-items: center;
  position: relative;
}
.container {
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
}

.card {
  width: 400px;
  min-height: 250px;
  background: rgba( 255, 255, 255, 0.15 );
  box-shadow: 0 0 32px 0 rgba( 0, 0, 0, 0.3 );
  backdrop-filter: blur( 18px );
  -webkit-backdrop-filter: blur( 18px );
  border: 1px solid rgba( 255, 255, 255, 0.18 );
  border-radius: 1rem;
  padding: 1.5rem;
  z-index: 10;
  color: whitesmoke;
}

.title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.btn {
  background: none;
  border: none;
  text-align: center;
  font-size: 1rem;
  color: whitesmoke;
  background-color: #fa709a;
  padding: 0.8rem 1.8rem;
  border-radius: 2rem;
  cursor: pointer;
}


body {
  font-family: "Montserrat", sans-serif;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background-color: #000;
}
@media only screen and (max-width: 800px) {
  body {
    justify-content: left;
    padding-left: 50px;
  }
}

* {
  outline: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

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

.menu {
  position: relative;
  padding: 50px 0;
z-index: 999;
}
.menu > ol {
  display: flex;
}
.menu li {
	white-space: nowrap;
	list-style: none;
}
@media only screen and (max-width: 800px) {
  .menu > ol {
    display: block;
  }
}
.menu > ol > .menu-item {
  display: inline-block;
  position: relative;
	display: flex;
    align-items: center;
	text-transform: uppercase;
	font-weight: 400;
}

.menu > ol > .menu-item.current > a {
	color: #f34ea4;
}
@media only screen and (max-width: 800px) {
  .menu > ol > .menu-item {
    display: block;
  }
}
.menu > ol > .menu-item:hover .sub-menu {
  opacity: 1;
}
.menu > ol > .menu-item:hover .sub-menu li:nth-child(1) {
  animation-name: subMenuAnimation;
  animation-duration: 300ms;
  animation-delay: 100ms;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.menu > ol > .menu-item:hover .sub-menu li:nth-child(2) {
  animation-name: subMenuAnimation;
  animation-duration: 300ms;
  animation-delay: 200ms;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.menu > ol > .menu-item:hover .sub-menu li:nth-child(3) {
  animation-name: subMenuAnimation;
  animation-duration: 300ms;
  animation-delay: 300ms;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.menu > ol > .menu-item > a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2vw;
  font-weight: 400;
  letter-spacing: 1px;
  margin: 0 50px 0 0;
  display: block;
}
	#logosvg {
		width:210px;
		height: auto;
	}
@media only screen and (max-width: 800px) {
  .menu > ol > .menu-item > a {
    margin: 30px 0;
    font-size: 30px;
  }
}
.menu > ol > .menu-item .sub-menu {
  padding: 28px 25px 0;
  position: absolute;
  left: 0;
  opacity: 0;
	top: 45%;
}
@media only screen and (max-width: 800px) {
  .menu > ol > .menu-item .sub-menu {
    left: 100%;
    top: -32px;
  }
}
.menu > ol > .menu-item .sub-menu li {
  opacity: 0;
}
.menu > ol > .menu-item .sub-menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 1vw;
  font-weight: 400;
  letter-spacing: 1px;
  margin: 12px 0;
  display: block;
  white-space: nowrap;
  text-transform: uppercase;
  transition: color 0.3s cubic-bezier(0.13, 1.07, 0.84, 1);
}
@media only screen and (max-width: 1080px) {
  .menu > ol > .menu-item .sub-menu li a {
    font-size: 13px;
  }
}
.menu > ol > .menu-item .sub-menu li a:hover {
  color: #f34ea4;
}
.menu .menu-shape {
  position: absolute;
  left: -62px;
  top: -55px;
  z-index: -1;
}
@media only screen and (max-width: 1440px) {
  .menu .menu-shape {
    left: -32px;
  }
}
@media only screen and (max-width: 1180px) {
  .menu .menu-shape {
    left: -15px;
    top: -62px;
  }
}
@media only screen and (max-width: 800px) {
  .menu .menu-shape {
    left: -35px;
  }
}
.menu .menu-shape svg {
  position: relative;
  display: block;
  width: 10vw;
  height: 10vh;
  min-height: 150px;
  margin: 0 auto;
}
@media only screen and (max-width: 800px) {
  .menu .menu-shape svg {
    width: 80px;
    height: 80px;
  }
}

@keyframes subMenuAnimation {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
.info {
  position: absolute;
  left: 0;
  bottom: 0;
  color: #fff;
  text-align: center;
  width: 100%;
  padding-bottom: 30px;
  font-size: 20px;
  display: none;
}

.link {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 20px;
  z-index: 9999;
}
.link a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
}
.link .fa {
  font-size: 28px;
  margin-right: 8px;
  color: #fff;
}

.swiper-container-vertical>.swiper-pagination-bullets {
    top: 30vh;
}

video {
	max-width: 100%;
    max-height: 100%;
}




    .swiper-container {
      width: 100%;
      height: 100%;
    }

    .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: none;
      /* Center slide text vertically */
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
    }

    .swiper-container-v {
      background: none;
    }
    
    .swiper-container-h
    {
      width:96%;
      margin:0px auto;
    }
    .swiper-container-h .swiper-wrapper
    {
      height:80%;
      margin-top:3%;
    }

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

    .color-1 {
      background-color: #f44336;
    }

    .color-2 {
      background-color: #E91E63;
    }

    .color-3 {
      background-color: #9C27B0;
    }

    .color-4 {
      background-color: #673AB7;
    }

    .color-5 {
      background-color: #3F51B5;
    }

    .color-6 {
      background-color: #2196F3;
    }

