/*Hero section*/
html{
    width: 100%;
    height: auto;
    overflow-x: hidden;
  }
  
  body {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
  }
  
  *,
  ::before,
  ::after {
    box-sizing: border-box;
  }
  
  .container1 {
      height: 100vh;
    max-width: 1140px;
    margin-top: 80px;
    padding: 50px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }
  
  .row {
    display: flex;
    flex-direction: row;
    padding-right: 12px;
    padding-left: 12px;
  }
  
 
  
  .text-align {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    margin-top: -25px;
    margin-left: 50%;

  }
  
  a {
    text-decoration: none;
  }
  
  pr {
    padding-right: 30px;
  }
  
  #hero {
    width: 100%;
    height: 100vh;
    margin-left: 20px;
    margin-top: 50px;
  }
  
  #hero h1 {
    width: 500px;
    font-size: 60px;
    font-weight: 700;
    line-height: 75px;
    margin: 0px;
    color: rgb(37, 37, 37);
    text-transform: uppercase;

  }
  

  #hero h2 {
    font-size: 18px;
    font-weight: 300;
    margin: 10 0 50px 0;
    color: slategray;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  
  #hero .btn {
    display: flex;
    align-items: center;
    margin-left: -40px;
  }
  
  #hero .btn-get-started {
    font-size: 16px;
    letter-spacing: 1px;
    background-color: rgb(31, 31, 31);
    border: 1px solid rgb(205, 237, 255);
    color: white;
    padding: 10px 30px 12px 30px;
    box-shadow: 0 8px 28px rgb(156, 157, 159);
    border-radius: 5px;
    transition: 0.5s;
  
  }
  
  #hero .btn-get-started:hover {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(31, 48, 73);
    box-shadow: rgb(144, 149, 177);
    color: black;
  }
  
  #hero .btn-learn-more {
    margin: 25px;
    font-size: 15px;
    color: black;
    padding: 8px 20px 8px 20px;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    transition: 0.5s;
  
  }
  
  #hero .btn-learn-more:hover {
    color: cadetblue;
  }
  
  @media(max-width:768px) {

    .container1 {
      max-width: 600px;
      margin-left: -520px;      
    }
    .container2 {
        margin-left: 625px;
        margin-top: -10px;
      }

  .text-align {
    margin-left: -220px;
    margin-top: 350px;

  }
  
    #hero
    row {
      flex-direction: column-reverse;
      margin-left: -10px;
    }
  
    #hero {
      height: 120vh;
      align-items: center;
    }
  
    #hero h1 {
        text-align: center;
        margin-top: 100px;
        font-size: 36px;
        letter-spacing: 0.01px;
        line-height: 1.25em;
    }
  
    #hero h2 {
        font-size: 15px;
        padding: 0px;
        text-align: center;
        margin-left: 79px;
        width: 65%;
    }
  
    #hero .btn {
      flex-direction: column;
      margin-left: 0px;
    }
  
    #hero .btn-learn-more {
      margin-top: 15px;
      margin-bottom: 15px;
    }
  
  
    #hero .btn-get-started:hover {
      background-color: rgb(255, 255, 255);
      border: 1px solid rgb(31, 48, 73);
      box-shadow: rgb(144, 149, 177);
      color: black;
    }
  
    #hero .btn-learn-more:hover {
      color: cadetblue;
    }
  }


  /*pyramid section*/
  .bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../../../../66.media.tumblr.com/697d436417d1e875ef566918c5b2547b/tumblr_n7fg2vYZ741st5lhmo1_1280.jpg);
    background-size: cover;
    background-position: center;
    background-color: black;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.container2 {
    position: sticky;
    width: 350px;
    height: 400px;
    left: 25%;
}

#pyramid-small {
    position: absolute;
    margin-left: -50px;
    height: 0;
    width: 100px;
    z-index: 30;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-animation: rotateSmall 10s ease infinite;
    animation: rotateSmall 10s ease infinite;
}

@-webkit-keyframes rotateSmall {
    0% {
        -webkit-transform: rotateX(-10deg) rotateY(-45deg) translateY(30px);
    }

    25% {
        -webkit-transform: rotateX(-10deg) rotateY(45deg) translateY(20px);
    }

    50% {
        -webkit-transform: rotateX(-10deg) rotateY(135deg) translateY(10px);
    }

    75% {
        -webkit-transform: rotateX(-10deg) rotateY(225deg) translateY(0);
    }

    100% {
        -webkit-transform: rotateX(-10deg) rotateY(-45deg) translateY(30px);
    }
}

@keyframes rotateSmall {
    0% {
        transform: rotateX(-10deg) rotateY(-45deg) translateY(30px);
    }

    25% {
        transform: rotateX(-10deg) rotateY(45deg) translateY(20px);
    }

    50% {
        transform: rotateX(-10deg) rotateY(135deg) translateY(10px);
    }

    75% {
        transform: rotateX(-10deg) rotateY(225deg) translateY(0);
    }

    100% {
        transform: rotateX(-10deg) rotateY(-45deg) translateY(30px);
    }
}

#pyramid-small-shadow {
    position: absolute;
    margin-left: -20px;
    height: 0;
    width: 100px;
    z-index: 20;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-animation: rotateSmall 10s ease infinite;
    animation: rotateSmall 10s ease infinite;
}

@-webkit-keyframes rotateSmall {
    0% {
        -webkit-transform: rotateX(-12deg) rotateY(-45deg) translateY(30px);
    }

    25% {
        -webkit-transform: rotateX(-12deg) rotateY(45deg) translateY(20px);
    }

    50% {
        -webkit-transform: rotateX(-12deg) rotateY(135deg) translateY(10px);
    }

    75% {
        -webkit-transform: rotateX(-12deg) rotateY(225deg) translateY(0);
    }

    100% {
        -webkit-transform: rotateX(-12deg) rotateY(-45deg) translateY(30px);
    }
}

@keyframes rotateSmall {
    0% {
        transform: rotateX(-12deg) rotateY(-45deg) translateY(30px);
    }

    25% {
        transform: rotateX(-12deg) rotateY(45deg) translateY(20px);
    }

    50% {
        transform: rotateX(-12deg) rotateY(135deg) translateY(10px);
    }

    75% {
        transform: rotateX(-12deg) rotateY(225deg) translateY(0);
    }

    100% {
        transform: rotateX(-12deg) rotateY(-45deg) translateY(30px);
    }
}

#pyramid-big {
    position: absolute;
    top: 90px;
    margin-left: -100px;
    height: 200px;
    width: 200px;
    z-index: 10;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-animation: rotateBig 10s ease infinite;
    animation: rotateBig 10s ease infinite;
}

@-webkit-keyframes rotateBig {
    0% {
        -webkit-transform: rotateX(-12deg) rotateY(-45deg) translateY(30px);
    }

    25% {
        -webkit-transform: rotateX(-12deg) rotateY(-225deg) translateY(20px);
    }

    50% {
        -webkit-transform: rotateX(-12deg) rotateY(-405deg) translateY(10px);
    }

    75% {
        -webkit-transform: rotateX(-12deg) rotateY(-585deg) translateY(0px);
    }

    100% {
        -webkit-transform: rotateX(-12deg) rotateY(-45deg) translateY(30px);
    }
}

@keyframes rotateBig {
    0% {
        transform: rotateX(-12deg) rotateY(-45deg) translateY(30px);
    }

    25% {
        transform: rotateX(-12deg) rotateY(-225deg) translateY(20px);
    }

    50% {
        transform: rotateX(-12deg) rotateY(-405deg) translateY(10px);
    }

    75% {
        transform: rotateX(-12deg) rotateY(-585deg) translateY(0px);
    }

    100% {
        transform: rotateX(-12deg) rotateY(-45deg) translateY(30px);
    }
}

.pyram-small {
    width: 100px;
    height: 100px;
    position: absolute;
}

.pyram-big {
    width: 200px;
    height: 200px;
    position: absolute;
}

.pyram-small.shadow {
    width: 80px;
    height: 80px;
    margin: 10px;
    background: black;
    opacity: 0.3;
    -webkit-filter: blur(4px);
    -webkit-transform: rotateX(-90deg) translateZ(88px);
    transform: rotateX(-90deg) translateZ(88px);
}

.pyram-small.one {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 100px solid #e5bba1;
    -webkit-transition: all 2s ease;
    transition: all 2s ease;
    -webkit-transform: rotateX(30deg) rotateY(0deg) translateY(18px) translateZ(18px);
    transform: rotateX(30deg) rotateY(0deg) translateY(18px) translateZ(18px);
}

.pyram-small.two {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 100px solid #e5bba1;
    -webkit-transition: all 2s ease;
    transition: all 2s ease;
    -webkit-transform: rotateX(0deg) rotateY(90deg) rotateX(30deg) translateY(18px) translateZ(18px);
    transform: rotateX(0deg) rotateY(90deg) rotateX(30deg) translateY(18px) translateZ(18px);
}

.pyram-small.three {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 100px solid #e5bba1;
    -webkit-transition: all 2s ease;
    transition: all 2s ease;
    -webkit-transform: rotateX(-30deg) rotateY(180deg) translateY(18px) translateZ(18px);
    transform: rotateX(-30deg) rotateY(180deg) translateY(18px) translateZ(18px);
}

.pyram-small.four {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 100px solid #e5bba1;
    -webkit-transition: all 2s ease;
    transition: all 2s ease;
    -webkit-transform: rotateX(0deg) rotateY(-90deg) rotateX(30deg) translateY(18px) translateZ(18px);
    transform: rotateX(0deg) rotateY(-90deg) rotateX(30deg) translateY(18px) translateZ(18px);
}

.pyram-small.one:after,
.pyram-small.two:after,
.pyram-small.three:after,
.pyram-small.four:after {
    content: '';
    position: absolute;
    top: 50px;
    margin-left: -10px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 20px solid #474c48;
    -webkit-transition: all 2s ease;
    transition: all 2s ease;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
}

.pyram-big.base {
    width: 200px;
    height: 200px;
    background: #3e423f;
    -webkit-transform: rotateX(-90deg) translateZ(-58px);
    transform: rotateX(-90deg) translateZ(-58px);
}

.pyram-big.one {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-top: 200px solid #474c48;
    -webkit-transform: rotateX(-30deg) rotateY(0deg) translateZ(58px);
    transform: rotateX(-30deg) rotateY(0deg) translateZ(58px);
}

.pyram-big.two {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-top: 200px solid #474c48;
    -webkit-transform: rotateX(0deg) rotateY(90deg) rotateX(-30deg) translateZ(58px);
    transform: rotateX(0deg) rotateY(90deg) rotateX(-30deg) translateZ(58px);
}

.pyram-big.three {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-top: 200px solid #474c48;
    -webkit-transform: rotateX(30deg) rotateY(180deg) translateZ(58px);
    transform: rotateX(30deg) rotateY(180deg) translateZ(58px);
}

.pyram-big.four {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-top: 200px solid #474c48;
    -webkit-transform: rotateX(0deg) rotateY(-90deg) rotateX(-30deg) translateZ(58px);
    transform: rotateX(0deg) rotateY(-90deg) rotateX(-30deg) translateZ(58px);
}

/* Pyramid Shadow */

.pyram-small.s1 {
    -webkit-animation: shadowSmallOne 10s linear infinite;
}

@-webkit-keyframes shadowSmallOne {
    0% {
        -webkit-filter: brightness(1);
    }

    25% {
        -webkit-filter: brightness(0.8);
    }

    50% {
        -webkit-filter: brightness(0.6);
    }

    75% {
        -webkit-filter: brightness(1.2);
    }

    83% {
        -webkit-filter: brightness(0.6);
    }

    88% {
        -webkit-filter: brightness(0.8);
    }

    100% {
        -webkit-filter: brightness(1);
    }
}

.pyram-small.s2 {
    -webkit-animation: shadowSmallTwo 10s linear infinite;
}

@-webkit-keyframes shadowSmallTwo {
    0% {
        -webkit-filter: brightness(0.8);
    }

    25% {
        -webkit-filter: brightness(0.6);
    }

    50% {
        -webkit-filter: brightness(1.2);
    }

    75% {
        -webkit-filter: brightness(1);
    }

    83% {
        -webkit-filter: brightness(1.2);
    }

    88% {
        -webkit-filter: brightness(0.6);
    }

    100% {
        -webkit-filter: brightness(0.8);
    }
}

.pyram-small.s3 {
    -webkit-animation: shadowSmallThree 10s linear infinite;
}

@-webkit-keyframes shadowSmallThree {
    0% {
        -webkit-filter: brightness(0.6);
    }

    25% {
        -webkit-filter: brightness(1.2);
    }

    50% {
        -webkit-filter: brightness(1);
    }

    75% {
        -webkit-filter: brightness(0.8);
    }

    83% {
        -webkit-filter: brightness(1);
    }

    88% {
        -webkit-filter: brightness(1.2);
    }

    100% {
        -webkit-filter: brightness(0.6);
    }
}

.pyram-small.s4 {
    -webkit-animation: shadowSmallFour 10s linear infinite;
}

@-webkit-keyframes shadowSmallFour {
    0% {
        -webkit-filter: brightness(1.2);
    }

    25% {
        -webkit-filter: brightness(1);
    }

    50% {
        -webkit-filter: brightness(0.8);
    }

    75% {
        -webkit-filter: brightness(0.6);
    }

    83% {
        -webkit-filter: brightness(0.8);
    }

    88% {
        -webkit-filter: brightness(1);
    }

    100% {
        -webkit-filter: brightness(1.2);
    }
}

.pyram-big.s1 {
    -webkit-animation: shadowBigOne 10s linear infinite;
}

@-webkit-keyframes shadowBigOne {
    0% {
        -webkit-filter: brightness(1);
    }

    12% {
        -webkit-filter: brightness(1.2);
    }

    25% {
        -webkit-filter: brightness(0.6);
    }

    50% {
        -webkit-filter: brightness(1);
    }

    62% {
        -webkit-filter: brightness(1.2);
    }

    75% {
        -webkit-filter: brightness(0.6);
    }

    77% {
        -webkit-filter: brightness(1.2);
    }

    80% {
        -webkit-filter: brightness(1);
    }

    84% {
        -webkit-filter: brightness(0.8);
    }

    88% {
        -webkit-filter: brightness(0.6);
    }

    90% {
        -webkit-filter: brightness(1.2);
    }

    100% {
        -webkit-filter: brightness(1);
    }
}

.pyram-big.s2 {
    -webkit-animation: shadowBigTwo 10s linear infinite;
}

@-webkit-keyframes shadowBigTwo {
    0% {
        -webkit-filter: brightness(0.8);
    }

    25% {
        -webkit-filter: brightness(1.2);
    }

    37% {
        -webkit-filter: brightness(0.6);
    }

    50% {
        -webkit-filter: brightness(0.8);
    }

    75% {
        -webkit-filter: brightness(1.2);
    }

    77% {
        -webkit-filter: brightness(1);
    }

    80% {
        -webkit-filter: brightness(0.8);
    }

    84% {
        -webkit-filter: brightness(0.6);
    }

    88% {
        -webkit-filter: brightness(1.2);
    }

    90% {
        -webkit-filter: brightness(1);
    }

    100% {
        -webkit-filter: brightness(0.8);
    }
}

.pyram-big.s3 {
    -webkit-animation: shadowBigThree 10s linear infinite;
}

@-webkit-keyframes shadowBigThree {
    0% {
        -webkit-filter: brightness(0.6);
    }

    25% {
        -webkit-filter: brightness(1);
    }

    37% {
        -webkit-filter: brightness(1.2);
    }

    50% {
        -webkit-filter: brightness(0.6);
    }

    75% {
        -webkit-filter: brightness(1);
    }

    77% {
        -webkit-filter: brightness(0.8);
    }

    80% {
        -webkit-filter: brightness(0.6);
    }

    84% {
        -webkit-filter: brightness(1.2);
    }

    88% {
        -webkit-filter: brightness(1);
    }

    90% {
        -webkit-filter: brightness(0.8);
    }

    100% {
        -webkit-filter: brightness(0.6);
    }
}

.pyram-big.s4 {
    -webkit-animation: shadowBigFour 10s linear infinite;
}

@-webkit-keyframes shadowBigFour {
    0% {
        -webkit-filter: brightness(1.2);
    }

    12% {
        -webkit-filter: brightness(0.6);
    }

    25% {
        -webkit-filter: brightness(0.8);
    }

    50% {
        -webkit-filter: brightness(1.2);
    }

    62% {
        -webkit-filter: brightness(0.6);
    }

    75% {
        -webkit-filter: brightness(0.8);
    }

    77% {
        -webkit-filter: brightness(0.6);
    }

    80% {
        -webkit-filter: brightness(1.2);
    }

    84% {
        -webkit-filter: brightness(1);
    }

    88% {
        -webkit-filter: brightness(0.8);
    }

    90% {
        -webkit-filter: brightness(0.6);
    }

    100% {
        -webkit-filter: brightness(1.2);
    }
}

/* Dots Animation */

.circle {
    position: absolute;
    top: 320px;
    left: 0;
    border-radius: 50%;
    background: transparent;
    width: 250px;
    height: 250px;
    margin: -125px 0 0 -125px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-animation: rotateCircle 10s ease infinite;
    animation: rotateCircle 10s ease infinite;
}

@-webkit-keyframes rotateCircle {
    0% {
        -webkit-transform: rotateX(-110deg) rotateZ(0deg);
    }

    12% {
        -webkit-transform: rotateX(-110deg) rotateZ(180deg);
    }

    25% {
        -webkit-transform: rotateX(-110deg) rotateZ(0deg);
    }

    37% {
        -webkit-transform: rotateX(-110deg) rotateZ(180deg);
    }

    50% {
        -webkit-transform: rotateX(-110deg) rotateZ(0deg);
    }

    62% {
        -webkit-transform: rotateX(-110deg) rotateZ(180deg);
    }

    75% {
        -webkit-transform: rotateX(-110deg) rotateZ(0deg);
    }

    100% {
        -webkit-transform: rotateX(-110deg) rotateZ(360deg);
    }
}

@keyframes rotateCircle {
    0% {
        transform: rotateX(-110deg) rotateZ(0deg);
    }

    12% {
        transform: rotateX(-110deg) rotateZ(180deg);
    }

    25% {
        transform: rotateX(-110deg) rotateZ(0deg);
    }

    37% {
        transform: rotateX(-110deg) rotateZ(180deg);
    }

    50% {
        transform: rotateX(-110deg) rotateZ(0deg);
    }

    62% {
        transform: rotateX(-110deg) rotateZ(180deg);
    }

    75% {
        transform: rotateX(-110deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(-110deg) rotateZ(360deg);
    }
}

span.dot {
    position: absolute;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    -webkit-animation: rotateDot 10s ease infinite;
    animation: rotateDot 10s ease infinite;
}

@-webkit-keyframes rotateDot {
    0% {
        -webkit-transform: rotateX(90deg) rotateY(0deg);
    }

    12% {
        -webkit-transform: rotateX(90deg) rotateY(-180deg);
    }

    25% {
        -webkit-transform: rotateX(90deg) rotateY(0deg);
    }

    37% {
        -webkit-transform: rotateX(90deg) rotateY(-180deg);
    }

    50% {
        -webkit-transform: rotateX(90deg) rotateY(0deg);
    }

    62% {
        -webkit-transform: rotateX(90deg) rotateY(-180deg);
    }

    75% {
        -webkit-transform: rotateX(90deg) rotateY(0deg);
    }

    100% {
        -webkit-transform: rotateX(90deg) rotateY(-360deg);
    }
}

@keyframes rotateDot {
    0% {
        transform: rotateX(90deg) rotateY(0deg);
    }

    12% {
        transform: rotateX(90deg) rotateY(-180deg);
    }

    25% {
        transform: rotateX(90deg) rotateY(0deg);
    }

    37% {
        transform: rotateX(90deg) rotateY(-180deg);
    }

    50% {
        transform: rotateX(90deg) rotateY(0deg);
    }

    62% {
        transform: rotateX(90deg) rotateY(-180deg);
    }

    75% {
        transform: rotateX(90deg) rotateY(0deg);
    }

    100% {
        transform: rotateX(90deg) rotateY(-360deg);
    }
}

span.dot.big:before {
    content: '';
    position: absolute;
    top: 0;
    display: block;
    width: 30px;
    height: 30px;
    background-image: -webkit-radial-gradient(5px 7px, circle cover, #ffffff, #d7d7d7);
    background-image: -moz-radial-gradient(5px 7px 45deg, circle cover, #ffffff 0%, #d7d7d7 100%);
    background-color: #bd9a85;
    border-radius: 50%;
    opacity: 0;
    -webkit-transition: all 2s ease 0.5s;
    transition: all 2s ease 0.5s;
}

span.dot.big:after {
    content: '';
    position: absolute;
    top: 0;
    display: block;
    width: 30px;
    height: 30px;
    background-image: -webkit-radial-gradient(5px 7px, circle cover, #ffe1cf, #bd9a85);
    background-image: -moz-radial-gradient(5px 7px 45deg, circle cover, #ffe1cf 0%, #bd9a85 100%);
    background-color: #bd9a85;
    border-radius: 50%;
    opacity: 1;
    -webkit-transition: all 2s ease;
    transition: all 2s ease;
}

span.dot.small:after {
    content: '';
    display: block;
    margin: 5px;
    width: 20px;
    height: 20px;
    background-image: -webkit-radial-gradient(5px 7px, circle cover, #565c57, #313432);
    background-image: -moz-radial-gradient(5px 7px 45deg, circle cover, #565c57 0%, #313432 100%);
    background-color: #313432;
    border-radius: 50%;
}

/* Dots Position */

span.dot.one {
    left: 50%;
    top: 0;
}

span.dot.two {
    left: 76%;
    top: 8%;
}

span.dot.three {
    left: 92%;
    top: 24%;
}

span.dot.four {
    left: 100%;
    top: 50%;
}

span.dot.five {
    left: 92%;
    top: 76%;
}

span.dot.six {
    left: 76%;
    top: 92%;
}

span.dot.seven {
    left: 50%;
    top: 100%;
}

span.dot.eight {
    left: 24%;
    top: 92%;
}

span.dot.nine {
    left: 8%;
    top: 76%;
}

span.dot.ten {
    left: 0;
    top: 50%;
}

span.dot.eleven {
    left: 8%;
    top: 24%;
}

span.dot.twelve {
    left: 24%;
    top: 8%;
}

/* Dots Scale */

span.dot.one:before,
span.dot.two:before,
span.dot.twelve:before,
span.dot.one:after,
span.dot.two:after,
span.dot.twelve:after {
    -webkit-animation: scaleDotsOne 10s ease infinite;
    animation: scaleDotsOne 10s ease infinite;
}

@-webkit-keyframes scaleDotsOne {
    0% {
        -webkit-transform: scale(1);
    }

    12% {
        -webkit-transform: scale(0.76);
    }

    25% {
        -webkit-transform: scale(1);
    }

    37% {
        -webkit-transform: scale(0.76);
    }

    50% {
        -webkit-transform: scale(1);
    }

    62% {
        -webkit-transform: scale(0.76);
    }

    75% {
        -webkit-transform: scale(1);
    }

    84% {
        -webkit-transform: scale(0.76);
    }

    94%,
    100% {
        -webkit-transform: scale(1);
    }
}

@keyframes scaleDotsOne {
    0% {
        transform: scale(1);
    }

    12% {
        transform: scale(0.76);
    }

    25% {
        transform: scale(1);
    }

    37% {
        transform: scale(0.76);
    }

    50% {
        transform: scale(1);
    }

    62% {
        transform: scale(0.76);
    }

    75% {
        transform: scale(1);
    }

    84% {
        transform: scale(0.76);
    }

    94%,
    100% {
        transform: scale(1);
    }
}

span.dot.three:before,
span.dot.four:before,
span.dot.five:before,
span.dot.three:after,
span.dot.four:after,
span.dot.five:after {
    -webkit-animation: scaleDotsTwo 10s ease infinite;
    animation: scaleDotsTwo 10s ease infinite;
}

@-webkit-keyframes scaleDotsTwo {
    0% {
        -webkit-transform: scale(0.88);
    }

    5% {
        -webkit-transform: scale(0.76);
    }

    14% {
        -webkit-transform: scale(0.88);
    }

    18% {
        -webkit-transform: scale(0.76);
    }

    25% {
        -webkit-transform: scale(0.88);
    }

    30% {
        -webkit-transform: scale(0.76);
    }

    39% {
        -webkit-transform: scale(0.88);
    }

    43% {
        -webkit-transform: scale(0.76);
    }

    50% {
        -webkit-transform: scale(0.88);
    }

    55% {
        -webkit-transform: scale(0.76);
    }

    64% {
        -webkit-transform: scale(0.88);
    }

    68% {
        -webkit-transform: scale(0.76);
    }

    75% {
        -webkit-transform: scale(0.88);
    }

    80% {
        -webkit-transform: scale(0.76);
    }

    82% {
        -webkit-transform: scale(0.88);
    }

    85% {
        -webkit-transform: scale(1);
    }

    94%,
    100% {
        -webkit-transform: scale(0.88);
    }
}

@keyframes scaleDotsTwo {
    0% {
        transform: scale(0.88);
    }

    5% {
        transform: scale(0.76);
    }

    14% {
        transform: scale(0.88);
    }

    18% {
        transform: scale(0.76);
    }

    25% {
        transform: scale(0.88);
    }

    30% {
        transform: scale(0.76);
    }

    39% {
        transform: scale(0.88);
    }

    43% {
        transform: scale(0.76);
    }

    50% {
        transform: scale(0.88);
    }

    55% {
        transform: scale(0.76);
    }

    64% {
        transform: scale(0.88);
    }

    68% {
        transform: scale(0.76);
    }

    75% {
        transform: scale(0.88);
    }

    80% {
        transform: scale(0.76);
    }

    82% {
        transform: scale(0.88);
    }

    85% {
        transform: scale(1);
    }

    94%,
    100% {
        transform: scale(0.88);
    }
}

span.dot.six:before,
span.dot.seven:before,
span.dot.eight:before,
span.dot.six:after,
span.dot.seven:after,
span.dot.eight:after {
    -webkit-animation: scaleDotsThree 10s ease infinite;
    animation: scaleDotsThree 10s ease infinite;
}

@-webkit-keyframes scaleDotsThree {
    0% {
        -webkit-transform: scale(0.76);
    }

    12% {
        -webkit-transform: scale(1);
    }

    25% {
        -webkit-transform: scale(0.76);
    }

    37% {
        -webkit-transform: scale(1);
    }

    50% {
        -webkit-transform: scale(0.76);
    }

    62% {
        -webkit-transform: scale(1);
    }

    75% {
        -webkit-transform: scale(0.76);
    }

    84% {
        -webkit-transform: scale(1);
    }

    94%,
    100% {
        -webkit-transform: scale(0.76);
    }
}

@keyframes scaleDotsThree {
    0% {
        transform: scale(0.76);
    }

    12% {
        transform: scale(1);
    }

    25% {
        transform: scale(0.76);
    }

    37% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.76);
    }

    62% {
        transform: scale(1);
    }

    75% {
        transform: scale(0.76);
    }

    84% {
        transform: scale(1);
    }

    94%,
    100% {
        transform: scale(0.76);
    }
}

span.dot.nine:before,
span.dot.ten:before,
span.dot.eleven:before,
span.dot.nine:after,
span.dot.ten:after,
span.dot.eleven:after {
    -webkit-animation: scaleDotsFour 10s ease infinite;
    animation: scaleDotsFour 10s ease infinite;
}

@-webkit-keyframes scaleDotsFour {
    0% {
        -webkit-transform: scale(0.88);
    }

    5% {
        -webkit-transform: scale(1);
    }

    14% {
        -webkit-transform: scale(0.88);
    }

    18% {
        -webkit-transform: scale(1);
    }

    25% {
        -webkit-transform: scale(0.88);
    }

    30% {
        -webkit-transform: scale(1);
    }

    39% {
        -webkit-transform: scale(0.88);
    }

    43% {
        -webkit-transform: scale(1);
    }

    50% {
        -webkit-transform: scale(0.88);
    }

    55% {
        -webkit-transform: scale(1);
    }

    64% {
        -webkit-transform: scale(0.88);
    }

    68% {
        -webkit-transform: scale(1);
    }

    75% {
        -webkit-transform: scale(0.88);
    }

    80% {
        -webkit-transform: scale(1);
    }

    82% {
        -webkit-transform: scale(0.88);
    }

    85% {
        -webkit-transform: scale(0.76);
    }

    94%,
    100% {
        -webkit-transform: scale(0.88);
    }
}

@keyframes scaleDotsFour {
    0% {
        transform: scale(0.88);
    }

    5% {
        transform: scale(1);
    }

    14% {
        transform: scale(0.88);
    }

    18% {
        transform: scale(1);
    }

    25% {
        transform: scale(0.88);
    }

    30% {
        transform: scale(1);
    }

    39% {
        transform: scale(0.88);
    }

    43% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.88);
    }

    55% {
        transform: scale(1);
    }

    64% {
        transform: scale(0.88);
    }

    68% {
        transform: scale(1);
    }

    75% {
        transform: scale(0.88);
    }

    80% {
        transform: scale(1);
    }

    82% {
        transform: scale(0.88);
    }

    85% {
        transform: scale(0.76);
    }

    94%,
    100% {
        transform: scale(0.88);
    }
}

/* Hover Effects */

#pyramid-small:hover .pyram-small {
    border-bottom-color: #fafafa;
    -webkit-transition: all 2s ease;
    transition: all 2s ease;
    cursor: pointer;
}

#pyramid-small:hover .pyram-small:after {
    border-bottom: 20px solid #e56045;
    -webkit-transition: all 2s ease;
    transition: all 2s ease;
}

#pyramid-small:hover~.circle span.dot.big:before {
    opacity: 1;
    -webkit-transition: all 2s ease;
    transition: all 2s ease;
}

#pyramid-small:hover~.circle span.dot.big:after {
    opacity: 0;
    -webkit-transition: all 2s ease 0.5s;
    transition: all 2s ease 0.5s;
}








  /*services*/

.doc-loader 
{
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 99999;	
    background-color: #fff;
}

.doc-loader td 
{       
    text-align: center;
    vertical-align: middle;
}

.doc-loader img
{
    width: 90px;
    height: 90px;        
}

.content-1170
{
    width: 1170px;    
}

.content-1170 img
{
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}





/* GENERAL SECTION */

.section
{    
    position: relative;
    z-index: 1;
}

.section-num
{   
    overflow: hidden;    
    margin-top: 50px;
}

.section-title-holder
{
    background-color: #000000;
    width: 370px;
    height: 370px;    
    z-index: 2;
}

.section-num span
{    
    margin-left: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 100%;
    letter-spacing: 0px;
    color: #B0B0B0;
}

.section-title-holder h2
{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 50px;
    width: 350px;
    word-break: break-all;
    line-height: 83px;
    color: rgb(255, 255, 255);
    margin-left: 10px;
    text-transform: uppercase;
    letter-spacing: -3px;
    padding: 0;
}

.section-content-holder
{   
    background: #fff;
    width: 800px;
    padding: 60px 0;
}

.section-content-holder .content-wrapper
{
    padding: 0 60px;
}

.section-content-holder.right
{
    margin-left: 370px;
}

.section-content-holder.left
{
    margin-top: 370px;
}

.section-content-holder .content-title-holder
{
    overflow: hidden;
    height: 100px;
    margin-top: -60px;
    padding-bottom: 50px;
}

.section-content-holder .content-title
{
    font-family: 'Montserrat';
    font-weight: 700;
    text-align: center;
    font-size: 180px;
    line-height: 100%;
    text-transform: uppercase;
    margin-top: -75px;
    color: #221c5a;    
}

.extra-content-left
{
    width: 800px;
    color: #fff;    
    padding: 100px 0;
}

.extra-content-right
{
    width: 800px;   
    margin-left: 370px;
    color: #fff;
    padding: 100px 0;
}

.extra-content-full-width
{
    padding: 100px 0;
}

.section:last-of-type .extra-content-left, .section:last-of-type .extra-content-right, .section:last-of-type .extra-content-full-width
{
    padding-bottom: 0;
}

/* END GENERAL SECTION */




/* SERVICE SECTION */

#services
{
    background-color: #000000;
    z-index: 9;
}

#services .section-title-holder
{
    background-color: #000000
}

#services .section-title-holder span
{
    color: #B0B0B0;;
}

.service-holder 
{
    display: inline-block;
    width: 335px;
}

.service-holder img 
{
    display: inline-block;
    width: 50px !important;
    vertical-align: top;
}

.service-content-holder 
{
    display: inline-block;
    width: 240px;
    margin-top: 55px;
    margin-left: 5px;
}

.service-title 
{
    font-family: 'Montserrat', sans-serif; 
    font-size: 24px;
    padding-bottom: 10px;
}

/* END SERVICE SECTION */



/* PORTFOLIO SECTION */

#portfolio
{
    background-color: #221C5A; 
    background-image: url("http://www.codewaretech.com/error.html"); 
    background-repeat: no-repeat; 
    background-position: center top; 
    background-size: auto;
    z-index: 8;
}

#portfolio .section-title-holder
{
    background-color: rgb(255, 186, 66);
}

#portfolio .section-title-holder span
{
    color: #4f4432;
}

.page-template-page-portfolio .section
{
    padding-top: 100px;
}

.section-content-holder.portfolio-holder
{
    background-color: transparent;
    width: 800px;
    padding: 0;
}

.portfolio-holder .portfolio-load-more-holder
{
    font-family: 'Montserrat', sans-serif;    
    font-weight: 700;
    font-size: 20px;
    width: 430px;
    background-color: #E74C78;
    text-align: center;
}

.portfolio-holder .portfolio-load-more-holder img 
{
    padding-bottom: 15px;
}

.portfolio-holder .portfolio-load-more-holder a
{
    color: #fff;
    padding-top: 30px;
    padding-bottom: 15px;
}

.portfolio-holder .portfolio-load-more-holder
{    
    margin-right: 0;
    margin-left: auto;
}

.more-posts
{ 
    display: block;
}

.more-posts:hover
{
    cursor: pointer;
}

.grid 
{
    width: auto;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    display: block;
}

.grid-item 
{
    float: left;
    font-size: 0;
    line-height: 0;
    box-sizing:border-box;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box; 
}

.grid-item img 
{
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    max-width: none;    
}

.grid-sizer, .grid-item 
{
    width: 400px;
}

.grid-item.p_one_half
{
    width: 400px;
}

.grid-item.p_one
{
    width: 800px;
}

.portfolio-text-holder
{
    position: absolute;
    top: 30px;
    left: 30px;
    bottom: 30px;
    right: 30px;
    z-index: 1;
    font-size: 20px;
    background-color: white;
    text-align: center;   
    display: none;    
}

.portfolio-text-wrapper
{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-type
{
    line-height: 100%;
    font-size: 11px;
    color: #9a9a9a;    
    padding-bottom: 20px;
}

.portfolio-type img 
{
    width: auto;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-text
{
    font-family: 'Montserrat', sans-serif;    
    font-weight: 700;
    font-size: 20px;
    line-height: 18px;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.portfolio-sec-text
{
    font-family: 'Montserrat', sans-serif;    
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    color: #8e8da9;
}

.grid-item a:hover
{
    color: #191919;
}

.more-posts-portfolio img
{
    transition: all .2s linear;
    width: 100px;
    height: 100px;
}

.more-posts-portfolio img:hover
{
    cursor: pointer;  
    transform: scale(0.9);
}

div.pp_default .pp_loaderIcon
{
    display: none !important;
}

/* END PORTFOLIO SECTION*/



/* ABOUT SECTION */

#about
{
    background-color: rgb(34, 28, 90); 
    background-image: url("http://www.codewaretech.com/error.html"); 
    background-repeat: no-repeat; 
    background-position: center top; 
    background-size: cover; 
    z-index: 7;
}

#about .section-title-holder
{
    background-color: #e64b77;
}

#about .section-title-holder span
{
    color: #b24564;
}

#about .section-content-holder
{
    padding-bottom: 0;
}

.member-content-holder 
{
    width: 330px;
    padding: 90px 50px 50px 50px;
    float: left;
}

.member-image-holder 
{
    width: 370px;
    float: right;
}

.member-image-holder img
{
    width: 100% !important;
}

.member-name
{
    line-height: 26px;
    font-size: 16px;
    font-weight: 700;
    padding: 0;
}

.member-position
{
    line-height: 16px;
    font-size: 14px;
    padding-bottom: 50px;
    color: #ee87a4;
    letter-spacing: 4px;
}

.member-content
{
    line-height: 26px;    
}

.image-slider-wrapper.img .image-slider li img
{
    width: 100%;
}

/* END ABOUT SECTION */


/* NEWS SECTION */

#news
{
    background-color: rgb(0, 0, 0); 
    background-image: url("http://www.codewaretech.com/error.html"); 
    background-repeat: no-repeat; 
    background-position: center center; 
    background-size: cover; 
    z-index: 6;
}

.blog-item-holder
{    
    padding: 35px 0;
    border-bottom: 2px solid #f4f4f4;
}

.blog-item-holder:last-of-type 
{
    border: none;
}

.blog-item-holder .num 
{
    display: inline-block;
    width: 110px;
    font-size: 48px;
    font-weight: 900;
    color: #ffa9c9;
}

.blog-item-holder .info 
{
    display: inline-block;
    width: 235px;
    font-size: 40px;
font-weight: 700;
}

.blog-item-holder .info .cat-links a 
{
    color: #ee87a4;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
}

.blog-item-holder .entry-title 
{
    display: inline-block;
    width: 325px;
    padding: 0;
    vertical-align: top;
    line-height: 0;
}

.blog-holder .entry-title a
{    
    -webkit-transition: color 0.5s ease;
    -moz-transition: color 0.5s ease;
    -ms-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
    font-size: 15px;
    line-height: 100%;
    font-weight: 400;
    display: block;
    line-height: 20px;
}

.latest-post-bottom-text
{
    text-align: center;
    margin-top: 25px;
}

.latest-post-bottom-text a 
{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;    
    font-size: 16px;
    line-height: 100%;    
    color: #32db89;
    letter-spacing: 5px;
    border-bottom: 2px solid;
    padding-left: 5px;
    padding-bottom: 5px; 
}

.testimonial-slider-holder
{
    max-width: 500px;
    padding-left: 50px;
}

.testimonial-text
{
    font-size: 22px;
    line-height: 40px;    
}

.testimonial-author
{
    padding-top: 90px;
    font-size: 16px;
    letter-spacing: 3px;    
}

/* END NEWS SECTION */



/* VIDEO SECTION */

#video
{
    background-color: rgb(34, 28, 90); 
    background-image: url("http://www.codewaretech.com/error.html"); 
    background-repeat: repeat-x; 
    background-position: center center; 
    background-size: auto; 
    z-index: 5;
}

#video .section-title-holder
{
    background-color: rgb(255, 186, 66);
}

#video .section-title-holder span
{
    color: #e3a436;
}

#video .section-content-holder
{
    padding-bottom: 0;
}

a.video-popup-holder 
{
    position: relative;
    display: block;
}

a.video-popup-holder .thumb
{
    width: 100%;
}

img.popup-play 
{
    position: absolute;
    top: 50%;
    left: 50%;
    top: calc(50% - 60px);
    left: calc(50% - 60px);
    opacity: 0.7;
    transition: opacity .2s linear;
}

a.video-popup-holder:hover img.popup-play
{
    opacity: 1;
}
/* END VIDEO SECTION */





/* SKILLS SECTION */


#skills
{
    background-color: rgb(34, 28, 90); 
    background-image: url("http://www.codewaretech.com/error.html"); 
    background-repeat: no-repeat; 
    background-position: left top; 
    background-size: 100%; 
    z-index: 4;
}

.progress_bar 
{
    margin-bottom: 15px;
}

.progress_bar_field_holder 
{
    height: 59px;
    position: relative;
    width: 100%;
    vertical-align: middle;
    overflow: hidden;
}

.progress_bar_field_holder:hover .progress_bar_title
{
    left: 10px;
    color: #fff !important;
}

.progress_bar_field_holder:hover .progress_bar_percent_text
{
    right: 10px;
    color: #fff !important;
}

.progress_bar_title
{
    position: absolute;
    top: 8px;
    z-index: 2;
    left: -11px;
    font-weight: bold;
    color: white;
    font-size: 45px;
    line-height: 100%;
    transition: color .2s linear, left .2s linear;
}

.progress_bar_percent_text
{
    position: absolute;
    right: -35px;
    top: 15px;
    z-index: 2;
    font-weight: bold;
    color: white;
    font-size: 35px;
    line-height: 100%;
    transition: color .2s linear, right .2s linear;
}

.progress_bar_field_perecent 
{
    height: 59px;    
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

/* END SKILLS SECTION */







/* RESPONSIVE PART */

@media screen and (max-width: 1270px) {   

    .content-1170 
    {
        width: 960px;
    }

    .one_half
    {
        margin-right: 8%;
        float: left;
        position: relative;
        margin-bottom: 37px;
    }

    .one_half
    {
        width: 46%;
    }      

    .section-title-holder 
    {    
        width: 250px;
        height: 250px;
    }

    .section-num
    {
        margin-top: 20px;
    }

    .section-num span 
    {
        margin-left: -35px;    
        font-size: 100px;
    }

    .section-title-holder h2
    {
        font-size: 80px;
        width: 177px;        
        line-height: 66px;
        margin-top: 25px;        
        margin-left: 75px; 
    }

    .section-content-holder.right 
    {
        margin-left: 250px;
    }

    .section-content-holder.left 
    {
        margin-top: 250px;
    }

    .section-content-holder 
    {
        width: 710px;
    }

    .extra-content-left, .extra-content-right
    {
        width: 710px;
    }

    .extra-content-right
    {
        margin-left: 250px;
    }

    .service-holder 
    {    
        width: 290px;
    }

    .section-content-holder.portfolio-holder 
    {    
        width: 710px;
    }

    .grid-item.p_one, .grid
    {
        width: 710px;       
    }    

    .grid-sizer, .grid-item, .grid-item.p_one_half
    {
        width: 355px;
    }  

    .portfolio-holder .portfolio-load-more-holder 
    {
        width: 460px;
    }

    .section-content-holder .content-title 
    {    
        font-size: 140px;    
        margin-top: -56px;
    }

    .member-content-holder 
    {
        width: 275px;
        padding: 50px;
    }

    .member-image-holder 
    {
        width: 335px;
    }

    .image-slider-wrapper.team .image_slider_next
    {
        right: 260px;
    }

    .blog-item-holder .entry-title 
    {   
        width: 240px;
    } 

    .single-portfolio .entry-content .one
    {
        padding-left: 5%;
        padding-right: 5%;
    }

    .single-portfolio .entry-content .one_half 
    {
        width: 40%;
        padding-left: 5%;
        margin-right: 10%;
    }

    .single-portfolio .entry-content .one_half.last
    {        
        padding-left: 0;
        padding-right: 5%;
    }

}

@media screen and (max-width: 1100px) {    

    .single-portfolio .x-close
    {
        right: 50%;
        right: calc(50% - 30px);    
    }    

}

@media screen and (max-width: 1020px) {    

    .content-1170 
    {
        width: 100%;
    }    

    .extra-content-left, .extra-content-right
    {
        width: 100%;
        margin-left: 0;
    }    

    .single-portfolio article 
    {
        padding-top: 140px;
    }

    .one_half
    {
        width: 100%;
        float: none;
        margin-right: 0;
        margin-left: 0;
    }   

    .single-portfolio .entry-content .one_half 
    {    
        width: 90%;
        padding-left: 5%;
        padding-right: 5%;
        margin-right: 0;
    }

    .single-portfolio .entry-content .one_half.last
    {        
        padding-left: 5%;
        padding-right: 5%;
    }

    .site-content .one_half, .single-portfolio .entry-content div 
    {
        text-align: left;
    }

    .image-slider-wrapper.service a.image_slider_next 
    {
        top: -89px;
        right: 0;
    }

    .section
    {
        padding-bottom: 150px;
    }  

    .section-content-holder.right 
    {
        margin-left: 0;
    }

    .section-content-holder.left 
    {
        margin-top: 0;
    }

    .section-num
    {
        display: inline-block;
        margin-top: 10px;
    }    

    .section-num span
    {
        font-size: 50px;
        margin-left: -15px;
    }          

    .section-title-holder
    {
        width: 100%;
        height: auto;
        position: relative !important;
        top: 0 !important;
    }

    .section-title-holder h2
    {
        display: inline-block;
        width: auto;
        margin: 0;
        vertical-align: top;
        margin-top: 10px;
        font-size: 50px;
        line-height: 100%;
    }

    .section-content-holder 
    {
        width: 100%;
        padding: 30px 0;    
    }

    .section-content-holder .content-wrapper
    {
        padding: 0 5%;
    }       

    .service-holder 
    {    
        width: 100%;
        display: block;
    }

    .service-content-holder 
    {
        width: 100%;
        width: calc(100% - 75px);
        margin-bottom: 30px;
    }    

    .section-content-holder.portfolio-holder 
    {    
        width: 100%;
    }

    .grid-item.p_one, .grid
    {
        width: 100%;       
    }    

    .grid-sizer, .grid-item, .grid-item.p_one_half
    {
        width: 50%;
    }  

    .portfolio-holder .portfolio-load-more-holder 
    {
        width: 100%;
    }  

    .member-content-holder 
    {
        width: 40%;
        padding: 10% 5% 5% 5%;
    }

    .member-image-holder 
    {
        width: 50%;
    }

    .image-slider-wrapper.team .image_slider_next
    {
        right: 40%;
    }

    .blog-item-holder .entry-title 
    {
        width: 100%;
        display: block;
        padding-top: 20px;
    }

    .blog-item-holder .info
    {
        width: auto;
    }

    .section-content-holder .content-title-holder 
    {
        overflow: visible;
        height: auto;
        margin: 0;
        padding: 0;
    }

    .section-content-holder .content-title 
    {
        font-size: 19vw;
        margin-top: 0;
    }

    .testimonial-slider-holder 
    {
        width: 90%;
        padding-left: 5%;
    }    
}

@media screen and (max-width: 925px) {  

    .intro-page
    {
        min-height: 0;
    }

    .section
    {
        position: static !important;
        z-index: 0 !important;
    }

    h1.big-title
    {
        font-size: 40px;
        padding-top: 0;
    }

    h1.big-title span 
    {
        display: inline;
    }

    .title-desc 
    {    
        font-size: 19px;
        line-height: 23px;
    }
    .carousel_fw_next
    {
        display: block !important;
    }

    .fw_carousel_pagination
    {
        display: none !important;
    }


}

@media screen and (max-width: 805px) {       

    .contact-form input[type=text], .contact-form input[type=email], .contact-form textarea, p.custom-field-class, #commentform #email, #commentform #author, #commentform #comment
    {
        width: 100% !important;
    }        

}

@media screen and (max-width: 768px) {    

    .content-1170 
    {
        width: 100%;
    }    

    .extra-content-left, .extra-content-right
    {
        width: 100%;
        margin-left: 0;
    }    

    .single-portfolio article 
    {
        padding-top: 140px;
    }

    .one_half
    {
        width: 100%;
        float: none;
        margin-right: 0;
        margin-left: 0;
    }   

    .single-portfolio .entry-content .one_half 
    {    
        width: 90%;
        padding-left: 5%;
        padding-right: 5%;
        margin-right: 0;
    }

    .single-portfolio .entry-content .one_half.last
    {        
        padding-left: 5%;
        padding-right: 5%;
    }

    .site-content .one_half, .single-portfolio .entry-content div 
    {
        text-align: left;
    }

    .image-slider-wrapper.service a.image_slider_next 
    {
        top: -89px;
        right: 0;
    }

    .section
    {
        padding-bottom: 50px;
    }  

    .section-content-holder.right 
    {
        margin-left: 0;
    }

    .section-content-holder.left 
    {
        margin-top: 0;
    }

    .section-num
    {
        display: inline-block;
        margin-top: 10px;
    }    

    .section-num span
    {
        font-size: 50px;
        margin-left: 5px;
    }          

    .section-title-holder
    {
        width: 100%;
        height: auto;
        position: relative !important;
        top: 0 !important;
    }

    .section-title-holder h2
    {
        display: inline-block;
        width: auto;
        letter-spacing: 3px;
        vertical-align: top;
        margin-top: 10px;
        margin-left: 10px;
        font-size: 50px;
        line-height: 100%;
    }

    .section-content-holder 
    {
        width: 100%;
        padding: 30px 0;    
    }

    .section-content-holder .content-wrapper
    {
        padding: 0 5%;
    }       

    .service-holder 
    {    
        width: 100%;
        display: block;
    }

    .service-content-holder 
    {
        width: 100%;
        width: calc(100% - 75px);
        margin-bottom: 30px;
    }    

    .section-content-holder.portfolio-holder 
    {    
        width: 100%;
    }

    .grid-item.p_one, .grid
    {
        width: 100%;       
    }    

    .grid-sizer, .grid-item, .grid-item.p_one_half
    {
        width: 50%;
    }  

    .portfolio-holder .portfolio-load-more-holder 
    {
        width: 100%;
    }  

    .member-content-holder 
    {
        width: 40%;
        padding: 10% 5% 5% 5%;
    }

    .member-image-holder 
    {
        width: 50%;
    }

    .image-slider-wrapper.team .image_slider_next
    {
        right: 40%;
    }

    .blog-item-holder .entry-title 
    {
        width: 100%;
        display: block;
        padding-top: 20px;
    }

    .blog-item-holder .info
    {
        width: auto;
    }

    .section-content-holder .content-title-holder 
    {
        overflow: visible;
        height: auto;
        margin: 0;
        padding: 0;
    }

    .section-content-holder .content-title 
    {
        font-size: 19vw;
        margin-top: 0;
    }

    .testimonial-slider-holder 
    {
        width: 90%;
        padding-left: 5%;
    }    
}

@media screen and (max-width: 650px) { 


    .member-content-holder
    {
        width: 90%;
        float: none;
    }

    .member-image-holder
    {
        width: 100%;
        float: none;
    }

    .image-slider-wrapper.team .image_slider_next
    {
        right: auto;
        left: 30px;
    }    
}


@media screen and (max-width: 350px) { 

    .section-num 
    {
        margin-top: 9px;
    }

    .section-num span 
    {
        font-size: 35px;
        margin-left: -10px;
    }

    .section-title-holder h2
    {
        margin-top: 9px;
        font-size: 35px;
    }

    .image-slider-wrapper.service a.image_slider_next 
    {
        top: -84px;
    }
}


/* AI Apple Scroll*/
.apple-scroll {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #000;
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -0.015em;
    font-family: "SF Pro Display", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  }

.intro-section {
    text-align: center;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    justify-content: center;
  }
  .code-heading img {
    max-width: 120px;
    float: left;
  }

  .content-section {
    position: relative;
    --scroll-length: 1.5;
    height: calc(var(--scroll-length) * 100vh);
    width: 100%;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  }

.content-section .content .subheading,
.content-section .content .paragraph {
  opacity: 1;
  opacity: calc(1 + var(--viewport-y));
}

.figure {
  width: 100%;
  height: 100vh;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.figure>img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.content1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 35em;
  display: grid;
  grid-template-rows: 1fr 1fr;
  color: white;
  padding: 2em;
  font-size: 3.5vmin;
}

.content1 * {
  text-shadow: 0 0 4vmin rgba(0, 0, 0, 0.25);
}

.content1>.header {
  grid-row: 1/2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.content1>.paragraph {
  grid-row: 2/3;
  line-height: 1.5;
  margin-top: 25px;
}

.heading {
  font-size: 2.75em;
  margin: 0;
}

.subheading {
  font-size: 1.25em;
  font-weight: 600;
  margin-bottom: 1.5em;
}

/* ---------------------------------- */
.figure {
  --scale: calc(.6 + (.4 * var(--scroll-length) * var(--visible-y)));
  position: sticky;
  top: 0;
  left: 0;
  margin: 0;
  display: block;
  overflow: hidden;
  will-change: transform;
  transform: scale(var(--scale));
}

.figure:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: black;
  opacity: calc(var(--visible-y));
}

.figure>img {
  display: block;
  will-change: transform;
  transform: scale(calc(1 / var(--scale)));
}
/* ---------------------------------- */
.char {
  display: inline-block;
  opacity: calc(1 + ((var(--viewport-y) * 1.5) - var(--char-percent)));
}
.heading {
  font-weight: 700;
}
.code-heading{
  font-size: 100px;
  font-weight: 900;
}
@media (max-width:768px) {
  .code-heading {
    margin-top: 3em;
  }
 
.content1 {
  max-width: 40em;
  padding: 2.5em;
  font-size: 3.5vmin;
}

.content1 * {
  text-shadow: 0 0 4vmin rgba(0, 0, 0, 0.25);
}

.content1>.header {
  grid-row: 1/2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.content1>.paragraph {
font-size: 14px;
}

.heading {
  font-size: 3em;
}

.subheading {
  font-size: 1.25em;
  font-weight: 600;
}
}




/*subscribe newsletter*/

.u-section-7 {
    background-image: none;
  }
  
  .u-section-7 .u-sheet-1 {
    min-height: 315px;
  }
  
  .u-section-7 .u-layout-wrap-1 {
    margin-top: 60px;
    margin-bottom: 0;
  }
  
  .u-section-7 .u-layout-cell-1 {
    min-height: 195px;
    animation-duration: 1000ms;
  }
  
  .u-section-7 .u-container-layout-1 {
    padding: 30px;
  }
  
  .u-section-7 .u-text-1 {
    font-weight: 700;
    font-size: 2.25rem;
    margin: 0 140px 20px 0;
  }
  
  .u-section-7 .u-layout-cell-2 {
    min-height: 195px;
  }
  
  .u-section-7 .u-container-layout-2 {
    padding: 30px;
  }
  
  .u-section-7 .u-text-2 {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-family: 'Russo One', sans-serif;
    font-size: 1.25rem;
    margin: 0;
  }
  
  .u-section-7 .u-form-1 {
    height: 49px;
    margin: -64px 457px 60px 12px;
  }
  
  .u-section-7 .u-btn-1 {
    text-transform: uppercase;
    background-image: none;
    border-style: solid;
  }
  
  @media (max-width: 1199px) {
    .u-section-7 .u-sheet-1 {
      min-height: 336px;
    }
  
    .u-section-7 .u-layout-wrap-1 {
      position: relative;
    }
  
    .u-section-7 .u-layout-cell-1 {
      min-height: 216px;
    }
  
    .u-section-7 .u-text-1 {
      width: auto;
      margin-right: 20px;
    }
  
    .u-section-7 .u-layout-cell-2 {
      min-height: 216px;
    }
  
    .u-section-7 .u-text-2 {
      width: auto;
    }
  
    .u-section-7 .u-form-1 {
      margin-right: 269px;
      margin-left: 0;
    }
  }
  
  @media (max-width: 991px) {
    .u-section-7 .u-sheet-1 {
      min-height: 162px;
    }
  
    .u-section-7 .u-layout-cell-1 {
      min-height: 100px;
    }
  
    .u-section-7 .u-text-1 {
      margin-right: 0;
    }
  
    .u-section-7 .u-layout-cell-2 {
      min-height: 100px;
    }
  
    .u-section-7 .u-form-1 {
      margin-right: 49px;
    }
  }
  
  @media (max-width: 767px) {
    .u-section-7 .u-sheet-1 {
      min-height: 262px;
    }
  
    .u-section-7 .u-container-layout-1 {
      padding-left: 10px;
      padding-right: 10px;
    }
  
    .u-section-7 .u-layout-cell-2 {
      min-height: 165px;
    }
  
    .u-section-7 .u-container-layout-2 {
      padding-left: 10px;
      padding-right: 10px;
    }
  
    .u-section-7 .u-text-2 {
      margin-top: 57px;
      margin-left: 170px;
      margin-bottom: 25px;
    }
  
    .u-section-7 .u-form-1 {
      margin-right: 0;
    }
  }
  
  @media (max-width: 575px) {
    .u-section-7 .u-layout-cell-2 {
      min-height: 100px;
    }
  
    .u-section-7 .u-text-2 {
      margin-left: 0;
    }
  }