@import url('https://fonts.googleapis.com/css2?family=Anton&family=Antonio:wght@100;300;700&family=Concert+One&display=swap');
@import url('https://fonts.googleapis.com/css?family=Fjalla+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

@font-face {
  font-family: bold;
  src: url(boldFont.ttf);
}

@import url(https://fonts.googleapis.com/css?family=Fjalla+One);

:root {
  --Red: #d22d16;
  --Blue: #6ea7dd;
  --DarkBlur: #376ffe;
  --Orange: #ff9356;
  --Yellow: #fecf3e;
  --BackgroundBlue: #180830;
  --MenuoOrange: #f1c241;
  --ButtonForOrange: #fe7798;
  --Text: #7d808b;
  --Green: #1bd793;
  --DrarkGreen: #13887e;
  --Box: #312345;
  --BigText: 'Anton', sans-serif;
  --Font: 'Antonio', sans-serif;
  --BoldFont: 'Concert One', cursive;
  --background: linear-gradient(to bottom, #405166 0%, #656f6f 100%);
  --red: #e55643;
  --green: #2b9f5e;
  --yellow: #f1c83c;
  --shadow: #533d4a;
}

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

*::selection {
  background-color: #fff;
  color: #c24c87;
}

*::-webkit-scrollbar {
  height: 0.5rem;
  max-width: 1rem;
}

*::-webkit-scrollbar-track {
  background-color: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: #c24c87;
}

html {
  scroll-behavior: smooth;
}

input:focus {
  outline: none !important;
}

label:focus {
  outline: none !important;
}

textarea:focus {
  outline: none !important;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

ul li a {
  display: block;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

img {
  width: 100%;
}
section {
  height: 100vh;
}
.web-background {
  background: var(--BackgroundBlue);
}

.d-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.container {
  width: 90%;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  color: var(--Green);
  font-family: 'Fjalla One', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.logo span {
  color: var(--Yellow);
}

html {
  height: 100%;
}

body {
  font-family: 'Fjalla One', sans-serif;
  background: linear-gradient(to bottom, #405166 0%, #656f6f 100%);
}

img {
  width: 100%;
}

/* NAVBAR */
header {
  z-index: 1;
  position: fixed;
  top: 0;
  width: 100%;
  display: block;
  transition: top 0.3s;
  background: var(--BackgroundBlue);
}

nav {
  padding: 20px;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  gap: 5rem;
  font-size: 1.2rem;
}

.nav-links a {
  color: #fff;
}

.nav-item {
  position: relative;
}

.nav-item::after {
  content: '';
  height: 3px;
  width: 100%;
  background-color: var(--MenuoOrange);
  border-radius: 1rem;
  position: absolute;
  left: 0;
  bottom: -8px;
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
}

.nav-item:hover::after {
  opacity: 1;
}

/* MAIN */
main {
  margin: 3rem 0;
}

.showcase {
  position: relative;
  align-items: flex-start;
  overflow: hidden;
  padding: 50px 0;
}


.showcase img {
  position: absolute;
  top: -9rem;
  left: -20rem;
  z-index: -1;
  width: 40%;
  opacity: 20%;
}

.animated-text {
  padding: 20px;
  flex: 1;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 57px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.button {
  transform: rotate(-10deg);
  color: #e55643;
  text-transform: uppercase;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  font-size: 1rem;
  padding: 20px;
}

h1 {
  color: #fff;
  text-transform: uppercase;
  font-size: 3rem;
  transform: rotate(-10deg);
  letter-spacing: 2px;
}

.title span {
  transform: skew(-10deg);
  display: block;
  float: left;
  position: relative;
}

.title:nth-child(1) {
  color: #e55643;
}

.title:nth-child(3) {
  color: #2b9f5e;
}

.title:nth-child(5) {
  color: #f1c83c;
}

.slider {
  flex: 1;
  background: #ffffffd7;
  height: 40rem;
  border-radius: 20px;
}

.description {
  line-height: 45px;
}

.description,
h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  text-transform: none;
  font-size: 1rem;
  color: #ffffff93;
}

.description h3 a {
  color: var(--ButtonForOrange);
  font-weight: 500;
}

.description h3 a i {
  color: var(--ButtonForOrange);
}

.description p {
  font-weight: 600;
  color: var(--ButtonForOrange);
}

.description ul li {
  font-size: 1rem;
  font-weight: 400;
}

.description ul li span {
  color: var(--ButtonForOrange);
}

.description small {
  font-size: 0.7rem;
  line-height: 0.1rem;
}

.beginners {
  overflow: hidden;
  height: 100vh;
  padding-top: 5rem;
  position: relative;
  font-family: var(--Font);
  position: relative;
  border-bottom: 1px solid #fff;
  border-top: 1px solid #fff;
  text-align: center;
}

.beginners .container h2 {
  padding-bottom: 3rem;
}
.beginners .container h2,
.web-design .container h2,
.mobile-design {
  
  color: var(--yellow);
}
.beginners .card  h4 {
  color: var(--BackgroundBlue);
}
.beginners .card p {
  font-weight: bolder;
}

.beginners .card strong {
  padding: 5px;
  display: inline-block;
 
}

.beginners .card span {
  background: var(--BackgroundBlue);
  color: var(--ButtonForOrange);
  border-radius: 0.6em;
  -moz-border-radius: 0.6em;
  -webkit-border-radius: 0.6em;
  display: inline-block;
  font-weight: bold;
  line-height: 1.4em;
  margin-right: 5px;
  text-align: center;
  width: 1.3em;
  font-size: 14px;
}


.video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.video video {
  opacity: 0.3;
}

.overlay {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 3rem;

  z-index: 999;
}

.card {
  height: 15rem;
  border-radius: 1rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--ButtonForOrange);
  grid-column: span 3;
  font-size: 1.2rem;
  padding: 2rem;
  box-shadow: 0.7rem 0.7rem 0rem #180830;
  border: 4px solid #180830;
  gap: 2rem;
}
.background {
  background: #18083032;
  border-radius: 10px;
  padding: 5px;
}

.card .list {
  color: var(--BackgroundBlue);
  font-family: var(--Font);
  line-height: 2rem;
  display: none;

}

.card.active .list {
  display: flex;
 justify-content: space-between;
}
.card .list ul {
  display: inline-block;
  text-align: left;
  padding: 0 20px;
}

.card.active {
  grid-column: 1 / span 6;
  grid-row: 1;
  order: 0;
  height: auto;
}

.card.is-inactive {
  grid-column: span 2;
}

.beginners small {
  display: block;
margin-top: 8rem;
  font-family: var(--Font);
  font-size: 1.2rem;
  letter-spacing: 1px;
}
.web-design,
.mobile-design {
  text-align: center;
  padding: 2rem 0;

}

.slick-slide {
  color: var(--MenuoOrange);
  padding: 80px 50px 10px 50px;
  text-align: center;
  pointer-events: none;
  opacity: 0.3;
  transition: all 0.3s ease;
  overflow: hidden;
 
}

.slick-slider, .slick-list, .slick-track {
  height: 100%;
}
.slick-prev {
  left: -25px;
  top: 50px;
}
.slick-next {
  top: 50px;
}
.slick-slide .img-text {
  opacity: 0;
}
.slick-slide img {
  width: 100%;
  
}

.slick-dots {
  display: none !important;
}
.slick-dots li.slick-active {
  background: var(--ButtonForOrange);
}
.slick-current {
  opacity: 1;
  transform: scale(1.2);
}
.slick-current .img-text {
  opacity: 1;
}
.slide {
  height: 100%;
}
.slick-slide {
  margin-bottom: 0;
  object-fit: cover;
}
.slick-track {
  display: flex !important;
}

.slick-slide {
  height: inherit !important;
}
.img-text {
  margin: 0 0 20px 0;
}
.img-text h3 {
  padding: 20px;
  position: relative;
}
.img-text h3 span {
  font-size: 0.8rem;
  margin-left: 10px;
  font-weight: bold;
  background: var(--MenuoOrange);
  color: var(--BackgroundBlue);
  text-transform: uppercase;
  padding: 3px 5px;
  border-radius: 5px;
}
.img-text h3 .advanced {
  font-size: 0.8rem;
  margin-left: 10px;
  font-weight: bold;
  background: var(--Green);
  color: var(--BackgroundBlue);
  text-transform: uppercase;
  padding: 3px 5px;
  border-radius: 5px;
}
.btn {
  border-radius: 30px;
  padding: 10px 20px;
  border: 2px solid var(--MenuoOrange);
  text-decoration: none;
  color: var(--Green);
  font-size: 0.7em;
  text-transform: uppercase;
  display: inline-block;
  margin: 10px;
  font-family: var(--Font);
  max-width: 100px;
  width: 100%;
  font-weight: bold;
  pointer-events: initial;
}



/* mobile design */
:root {
  --slides: 9;
  --slide-duration: 2000ms;
}
 
/* Slideshow Images START */
  .phone-slideshow-list li:nth-child(1) {
    background-image: url('https://www.goodwall.io/sandbox/wp-content/uploads/sites/5/2021/06/slideshow-slide-01.png'); /* PNG */
    background-color: pink;
  }
  .phone-slideshow-list li:nth-child(2) {
    background-image: url('https://www.goodwall.io/sandbox/wp-content/uploads/sites/5/2021/06/slideshow-slide-02.jpg'); /* JPG */
  }
  .phone-slideshow-list li:nth-child(3) {
    background-image: url('https://www.goodwall.io/sandbox/wp-content/uploads/sites/5/2021/06/slideshow-slide-03.jpg'); /* JPG */
  }
  .phone-slideshow-list li:nth-child(4) {
    background-image: url('https://www.goodwall.io/sandbox/wp-content/uploads/sites/5/2021/06/slideshow-slide-04.jpg'); /* JPG */
  }
  .phone-slideshow-list li:nth-child(5) {
    background-image: url('https://www.goodwall.io/sandbox/wp-content/uploads/sites/5/2021/06/slideshow-slide-05.png'); /* PNG */
  }
  .phone-slideshow-list li:nth-child(6) {
    background-image: url('https://www.goodwall.io/sandbox/wp-content/uploads/sites/5/2021/06/slideshow-slide-06.jpg'); /* JPG */
  }
  .phone-slideshow-list li:nth-child(7) {
    background-image: url('https://www.goodwall.io/sandbox/wp-content/uploads/sites/5/2021/06/slideshow-slide-07.png'); /* PNG */
  }
  .phone-slideshow-list li:nth-child(8) {
    background-image: url('https://www.goodwall.io/sandbox/wp-content/uploads/sites/5/2021/06/slideshow-slide-08.png'); /* PNG */
  }
  .phone-slideshow-list li:nth-child(9) {
    background-image: url('https://www.goodwall.io/sandbox/wp-content/uploads/sites/5/2021/06/slideshow-slide-09.png'); /* PNG */
  }

/* Slideshow Images END */
.mobile-content {
  padding: 4rem 0;
}
.phone-slideshow {
  
  width: 100%;
  height: auto;
  max-width: 264px;
  margin: auto;
  position: relative;
  display: table;
  transform: rotate3d(0, 0, 1, -5deg);
}
    .phone-slideshow:before { /* Phone Template */
      content: "";
      display: block;
      width: 100%;
      height:0;
      padding-bottom: 206.13%;
      background: #0002;
      background: transparent url('https://www.goodwall.io/sandbox/wp-content/uploads/sites/5/2021/05/iphonex-black.png') no-repeat 50% 50%;
      background-size: contain;
      position:absolute;
      top:0;
      left:0;
      z-index: 2;
    }

.phone-slideshow .screen-mask {
    display: block;
    border: 1px solid purple;
    width: auto;
    height: 100%;
    margin: 3%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    padding-bottom: 199%;
    border-radius: 7%;
}

.phone-slideshow-list {
  list-style: none;
  position: absolute;
  top: 0;
  left: 0;
  display:block;
  width: calc(100% * var(--slides) );
  height: 100%;
  margin: 0;
  padding:0;
  display: flex;
  flex-direction: row;
    animation-name: phone-slideshow;
    animation-duration: calc(var(--slide-duration) * var(--slides));
    animation-iteration-count: infinite;
    animation-delay: 1s;
}

  .phone-slideshow-list li {
    display: block;
    width: calc(100% * var(--slides));
    width: 100%;
    height: 0%;
    padding-bottom: 23.75%;
    font-size: 5em;
    position: relative;
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
  }

    .phone-slideshow-list li:first-child {
      z-index:-1;
      animation-name: first-loop;
      animation-duration: calc(var(--slide-duration) * var(--slides));
      animation-iteration-count: infinite;
      animation-delay: 1s;
    }


@keyframes phone-slideshow {
  0%   {left: 0;}
  5.5%  {left: calc( -100% ); }
  11%  {left: calc( -100% ); }
  16.5%  {left: calc( -100%*2 ); }
  22%  {left: calc( -100%*2 ); }
  27.5%  {left: calc( -100%*3 ); }
  33%  {left: calc( -100%*3 ); }
  38.5%  {left: calc( -100%*4 ); }
  44%  {left: calc( -100%*4 ); }
  49.5%  {left: calc( -100%*5 ); }
  55%  {left: calc( -100%*5 ); }
  60.5%  {left: calc( -100%*6 ); }
  66%  {left: calc( -100%*6 ); }
  71.5%  {left: calc( -100%*7 ); }
  77%  {left: calc( -100%*7 ); }
  82.5%  {left: calc( -100%*8 ); }
  88%  {left: calc( -100%*8 ); }
  93.5%  {left: calc( -100%*9 ); }
  99.99%  {left: calc( -100%*9 ); }
  100% {left: 0;}
}

@keyframes first-loop {
  0%   {left: 0;}
  47.99%  {left: 0; }
  48%  {left: calc( 100% ); }
  99.99%  {left: calc( 100% ); }
  100% {left: 0;}
}
/* MEDIA QUERY */
@media (max-width: 1600px) {
  .showcase {
    margin: 65px 0;
  }

  .showcase img {
    top: -5rem;
    left: -16rem;
  }

  .beginners {
    padding-top: 2rem;
  }

  .beginners small {
    margin-top: 2rem;
  }
}
@media (max-width: 1280px) {
.showcase {
    margin: 10px 0 40px 0;
    padding: 10px 0 50px 0;
}
h1 {
 font-size: 2rem;
}

.animated-text {

    line-height: 38px;
   
}
.description {

    line-height: 40px;
}
.description h3 {

  
    font-size: .9rem;
 
}
.slider {

  height: 30rem;
  
}
.card {
  height: 10rem;


}
.beginners small {
  margin-top: 4.5rem;
}
.slick-slide {
  padding: 36px;
}
.slick-slider h3 {
  font-size: .9rem;
}
}